aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-04-23* Applying Mantis #1022 - Thanks Melanie!Adam Frisby1-2/+11
2008-04-23* Applying Mantis #1021 (llStartAnimation/llStopAnimation) - Thanks Melanie!Adam Frisby1-1/+1
2008-04-23* Applying Mantis #1020 (Animations) - Thanks Melanie.Adam Frisby3-66/+129
2008-04-23From: Dr Schofield <hud@zurich.ibm.com>Justin Clarke Casey1-5/+15
the attached patch fixes http://opensimulator.org/mantis/view.php?id=936 aka load-xml/load-xml2 crashing. problem lies with basic physics not creating physics actors. the solution was already present in SceneObjectPart.cs.
2008-04-22* Implements llScriptDangerTeravus Ovares1-5/+30
* Made the scene's scriptDanger method more generic so both the llScriptDanger method and the Script engine method use the same private method.
2008-04-22* Implemented NoScript areas (without loosing script state).Teravus Ovares1-0/+59
2008-04-21* Added missing reference to OpenSim.Framework.Communications to ↵Adam Frisby1-602/+602
RemoteAdminPlugin to fix a compile error introduced by the Radmin patch.
2008-04-21* Various compiler warning cleanups.Adam Frisby2-2/+2
2008-04-21From: Dr Scofield <hud@zurich.ibm.com>Sean Dague1-0/+16
the attached patch set is centered around RemoteAdminPlugin and focuses mainly on making it more robust (i.e. more parameter checking and better error reporting) but also we've re-implemented the LoadTerrain stuff that got disabled during the terrain code reworking: * missing PostInitialize() calls on region modules that were loaded for regions created via RemoteAdmin's CreateRegion XmlRpc call * re-implements RemoteAdmin's LoadTerrain XmlRpc call (probably lost during the TerrainModule rework) * adds lots more parameter checking and error reporting to RemoteAdmin * adds a read-only property to RegionApplicationBase so that we can access the CommsManager * adds Exceptions to TerrainModule so that we get better error case feedback (and can report more meaningful errors in turn) * adds a CheckForTerrainUpdate() call to TerrainModule.LoadFromFile() to make terrain changes effective * adds TryGetCurrentScene(LLUUID) to SceneManager so that we can retrieve Scenes not only by name but also by LLUUID cheers, dr scofield
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby18-86/+71
(this took a while to run).
2008-04-20* Remove user profile from cache when they log out from a region.Justin Clarke Casey1-0/+2
* A much more significant fix is required to clean up the cache when a user moves out of a region, but really better handling of delayed inventory cache updates needs to be written first, and possibly better affinity to cut down agent inventory requests when the move is between two regions hosted on the same server.
2008-04-20* Updates LSL2CS converterTeravus Ovares4-3/+149
* All objects are not touchable by default now * When a script listens for one of the touch events in the state, an object becomes touchable. * All LSL scripts report which events they consume now ** This uses semi-complicated Regex to discover the events, stick them in a dictionary, and then write a method call into each script state's state_entry() event. ** Tedd may figure out a better way to do this in the future. For now, this works for LSL.
2008-04-19Thank you kindly krtaylor for a patch to solve:Charles Krinke3-1/+55
Linked objects won't scale together properly, only the root object scales. This happens with scaling both up and down or inputting numbers in the edit dialog.
2008-04-19* Fix build break in previous revisionJustin Clarke Casey1-1/+1
2008-04-18* Fixed two compiler warnings dealing with IPAddress equality.Adam Frisby1-3/+1
2008-04-18* Added lock persistenceTeravus Ovares1-3/+4
* Temporarily disabling click+drag+move for non physical things until more experimenting is done to figure out how to get a sideways hand cursor in the client.
2008-04-17* Re-Fixed caps Teravus Ovares4-40/+15
* This fixes chi11ken's/OpenViewer's libsl cap issue.
2008-04-17* Implements 'Set Home to Here' Teravus Ovares2-2/+48
* Implements 'Teleport Home' * User Server has to be updated for it to save your home in grid mode * home position accuracy is in int because the grid comms ExpectUser method tries to convert to Uint and crashes if it gets a float. Added a convert to decimal in ExpectUser but to avoid a breaking change with old revisions, kept the save value in int for now. Eventually it needs to be a float, but lets release another incremental version before doing that.
2008-04-16* Applying melanie's Landmark patch. Thanks Melanie!Teravus Ovares3-1/+34
* To make a landmark, you currently have to enable admin options in the advanced menu first. We're working on this.. however use the admin options solution in the mean time.
2008-04-16After reading Timer.cs in the mono source, I'm notSean Dague1-116/+118
convinced that timer.Enabled modification is thread safe. I suspect the statsHeartBeat call to be one of our hot spots because is tries to synchronize not with a lock, but by disabling and enabling itself. I've replaced that with a lock in the hopes that this affects either the 100% bug, or the invoke_void bugs.
2008-04-16Thank you very much, Kmeisthax for:Charles Krinke2-0/+46
This patch makes the "Show in Search" checkbox on the viewer work. Additionally, I also discovered that show-in-search objects use the JointWheel flag, so this patch currently uses that flag. LibSL needs to add a flag to enum LLObject.ObjectFlags, "IncludeSearch = 32768" so we aren't using a legacy flag. Additionally this patch also contains a small fix to BaseHTTPServer that lets the response content-type to be something other than text/html. For some reason this didn't get submitted with the DataSnapshot merge.
2008-04-15* A tweak of the caps system so that new caps have random paths instead of a ↵Teravus Ovares2-2/+31
fixed path * This allows caps requests to be routed to regions where the agent is currently a root agent instead of the region that they logged into as it did previously. * This fixes a wide variety of bugs related to 'can't do X once i've crossed a border'. * The first seed cap request fails, the second one works. (this generates an error message on the console) * Experimental.
2008-04-15From: dirk husemann <hud@zurich.ibm.com>Sean Dague1-2/+4
attached is a patch set that * adds further robustness checks for the CreateUser and CreateRegion XmlRpc * fixes SceneManager.TryGetScene(IPEndPoint, Scene) --- contrary to my expectation IPEndPoint.Address is not sufficient for a comparision, IPEndPoint.Address.Address (the long representation) does work however. * add [RemoteAdmin] section to OpenSim.ini.example * fixes XML doc comments good night, dirk
2008-04-15* Quick patch before I start on a bigger projectAdam Frisby1-46/+47
* Renamed ITerrainTemp to IMapImageGenerator * Renamed WriteJpegImage to WriteJpeg2000Image to better reflect it's function.
2008-04-14* Working towards notifying the client if the inventory service has failed, ↵Justin Clarke Casey2-6/+29
rather than simply returning 0 items. * This is very early support which would only be triggered in a rather unlikely case (if the user server correctly received an inventory skeleton, but later on failed to return the whole inventory in a timely manner. Also, this only applies to the 1.19.1.4 client onwards * Code cleanup and support for other failure cases (failure of inventory caching on region crossing, failure to actually add a folder/item, etc, should follow.
2008-04-14* Fixed a few warnings.Teravus Ovares3-3/+71
* Added license info to a few files it was missing from. * Fleshed out the landbuy interfaces * If you add '-helperuri http://127.0.0.1:9000/' to your list of parameters you tell the client to use when you start it up you can transfer ownership of parcels now in standalone. Structured gridmode requires a lot more work, see the documentation in the example money module. The example money module is not secure especially in standalone mode.
2008-04-11* Fix bug 934Teravus Ovares1-1/+7
2008-04-11refactor: eliminate method in UserProfileCacheServiceJustin Clarke Casey1-1/+1
2008-04-11* From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey1-0/+32
* This patch adds support for saving a dynamically generated region to the filesystem (as a region xml file) * Also adds some error checknig to make sure the dynamically generated region name, id or location are not already taken. * Thanks Dr Scofield
2008-04-10* With Grid Comms up in the air.. I decided have the friends module update ↵Teravus Ovares1-0/+7
you when your friends come online if they're at least a child agent on the sim. offline status works the same also. So does Instant Message. * This is until Grid Comms matures a bit more on this. * This should also work in Standalone as it uses the IUserData interface.
2008-04-10* Slightly smoother transition between land, shallow water and deep water in ↵Teravus Ovares1-2/+11
map tile generation.
2008-04-10* Brings back map tile generation based on the terrain. The algorithm ↵Teravus Ovares1-0/+108
produces a graphic that is a bit Dazzle-ish. A Dazzle-ish map tile is better then a grey map tile IMHO.
2008-04-10* Updates BetaGridLikeMoneyModuleTeravus Ovares4-1/+47
* Several people have asked for a way to limit uploads, so I've decided to show people how to do this in the BetaGridLikeMoneyModule. * Configure it in OpenSim.ini using the [Economy] header. See the bottom of the OpenSim.ini.example for more information. * This also fleshes out the Economy API a bit more.
2008-04-10* Adds twist support for Cubes, Cylinders, and Prisms in the MeshmerizerTeravus Ovares1-1/+1
* A tweak of the SimStatsReporter so it would report the prim capacity to be 45000.
2008-04-08* Update code to use patched libsecondlife.dll which removes the problem ↵Justin Clarke Casey1-1/+1
where the AssetType enum was 'Primitive' rather than 'Object' * The libsecondlife patch was also applied to libsecondlife itself in r1714 * Many, many thanks to Dr Schofield (IBM) for his help on this :)
2008-04-07more refactoring, this time on InventoryFolderBaseSean Dague1-1/+1
* wrap attributes in properties * clean up names a little bit * clean up name styles
2008-04-07Refactor InventoryItemBase to do the following:Sean Dague2-69/+69
* wrap fields as Properties * rename some fields/properties to more sensible names * set style to PropName to match more standard C# approach
2008-04-07* Objects which have their name or description changed while within ↵Justin Clarke Casey1-40/+59
inventory will now retain those details when rezzed to a scene
2008-04-07* Preserve original creator's name when an object is givenJustin Clarke Casey1-2/+2
2008-04-07* Nasty hack to reduce the incidence of spurious exceptions where a user ↵Justin Clarke Casey3-5/+22
deletes a newly rezzed object before the persistence thread gets to it from its queue. * This should greatly reduce but not eliminate the problem - elimination probably requires a redesign of the prim persistence processes
2008-04-07* Okay you can put down your pitchforks - this patch should fix rezzing of ↵Justin Clarke Casey2-27/+36
items (with inventory) on Windows * Now properly dealing with prims which don't contain items - thanks to thomas for the patch which gave insight into this situation * Also, an xml exception no longer crahes the client session * Leaving in debugging lines in case there are further problems * Not yet tested on Linux, though I'm just about to.
2008-04-07* I XmlIgnored the TaskInventory Property as a temporary measure. Taking ↵Teravus Ovares2-1/+2
things and rezzing them works again. (though, I suggest waiting on taking things until justincc has an opportunity to look at the TaskInventory property causing the XML Serialization to overrun.) It's MinOccurs is 0 in the XML Schema, so it should work fine when he adds it back.
2008-04-07* EXPERIMENTAL ROUGH DRAFT: First rough implementation of avatar to avatar ↵Justin Clarke Casey1-4/+83
item giving * Now you can drag an object from your inventory and give it to another avatar * !!! Use at your own risk !!! Many things are unimplemented as of yet, including permissions (the person receiving your item can probably do absolutely everything with it) * Also, items for the receiving end up in their root folder rather than the objects folder
2008-04-05* The simulator now checks the parcel at the position that you get put by ↵Teravus Ovares1-0/+10
the grid server to see if you set it's landing point to a specified landing point. If you did, and the landing point isn't LLVector3.Zero, it puts you at the configured landing point. * Currently the grid server sticks you at 128x128x128.. so that means it'll use whatever parcel is at that location to get this information. This allows greater customization of where people log-into and teleport-to if done right.
2008-04-04From: Kurt Taylor <krtaylor@us.ibm.com>Justin Clarke Casey1-3/+7
Patch to remove commented NotImpemented calls from within implemented script functions
2008-04-04* Removing debugging goo for mantis 854 since the fix is reported to work.Justin Clarke Casey1-1/+1
2008-04-03* Attempted resolution for mantis 854Justin Clarke Casey1-0/+3
* Also adds more temporary debugging goo in case the fix didn't work
2008-04-03* From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2-2/+38
* This patch removes voice code into a region module. This required the implementation of events and other code to allow region modules to register their own caps handlers, and should allow different voice module implementations. * CAVEAT: This does not provide complete voice support, it merely provides the hooks so that it can be plugged in.
2008-04-03* Resolve mantis 849Justin Clarke Casey5-8/+19
* Scripts in prims within linksets can now be properly edited using the 'edit linked parts' linden ui option
2008-04-02Minor: just some method commentsJustin Clarke Casey2-3/+11