aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Fixed a whole bunch of console messages.Adam Frisby2007-12-044-7/+7
|
* * Removed 12 compiler warnings.Adam Frisby2007-12-044-5/+1
|
* From Justin Casey (IBM)Sean Dague2007-12-032-33/+88
| | | | | | | | | | | | | | | | | | | | | | | While exploring what it would take to get the 'new script' button working, I encountered the fact, some way down in the rabbit hole, that if a user renamed an item in their inventory and logged out (without a restart of the simulator), on log in the new name was not preserved. As far as I can see, this was because any updates which didn't occur inside a transaction were ignored by opensim. This patch pays attention to those changes. It generates a new asset when an item is updated and changes the user's inventory properties appropriately. I believe this behaviour is in line with the copy-on-write semantics used in the Second Life protocol - perhaps it could be optimized if we knew for sure that the only copy of the object was in the user's inventory. This also means that if you rename an item (e.g. a script) before you drag it into an object's inventory, the inventory will receive the item's most recent name and description.
* This is a simple patch which just renames an IClientAPI method toSean Dague2007-12-031-4/+4
| | | | | | | | | SendInventoryItemCreateUpdate() in order to reflect the actual packet it sends (UpdateCreateInventoryItem). From Justin Casey (IBM)
* Added a flag to load-xml console command, that will generate new uuids for ↵MW2007-12-033-5/+9
| | | | | | | | the loaded Sceneobjects (as per mantis request #53). To use append "-newUID" to the end of the command, so new format is : "load-xml <filename> -newUID". If you don't add the "-newUID", then the uuids in the xml file will be kept.
* Fixed bug in Appearance update in AvatarFactoryModule.MW2007-12-031-15/+18
|
* Some refactoringMW2007-12-031-7/+9
|
* minor meaningless changesJeff Ames2007-12-033-49/+32
|
* Just for Cfk!MW2007-12-021-1/+1
|
* Attempt to fix mantis issue #82, taking prims into inventory and then ↵MW2007-12-021-0/+2
| | | | rezzing them in another region.
* Added some error handling (and console output) to BaseHttpServer.MW2007-12-023-15/+11
| | | | | a few other bits of refactoring.
* Very partial Avatar Appearance (ie, clothes/body parts) "storage". In ↵MW2007-12-023-30/+97
| | | | | | | | standalone mode it will mean that when you log off and log back on ,as long as the region server hasn't been restarted , your avatar will start with wearing the clothes that it wore on log off. In grid mode its even more limited in that wearing/removing clothes/body parts are only stored in the region server instance you are one. so if you are in a different region to your login region (which are on different region server instances), and then change clothes, those changes won't be remembered. So as said, its very limited but is a small step towards having proper appearance persist. Just need to store this data out to a database.
* Rezzing multiple copies of a inventory prim should now work.MW2007-12-012-0/+12
|
* attempt to fix sitting-related bugs #3 and #67Jeff Ames2007-12-011-14/+17
|
* Due to popular demand, a rezzed prim should no longer delete the original ↵MW2007-12-011-2/+2
| | | | inventory item. (hasn't been tested to make sure no conflicts happen if that new rezzed object is then taken back into inventory but don't think there will be any)
* Attempted fix for mantis issue# 66MW2007-12-011-2/+11
|
* small bit of refactoringMW2007-12-011-1/+11
|
* the fix, so that trunk works againMW2007-12-011-5/+0
|
* Part 1 of a commit. This revision will not compile, part 2 will be added in ↵MW2007-12-013-22/+58
| | | | | | | | | | | a couple of minutes that should fix that. Some work towards persisting Avatar Appearance (what is being worn). Added OnAvatarNowWearing event to IClientAPI that is triggered by AgentIsNowWearing packets. stub code to subscribe to this event in AvatarFactoryModule. Todo: code needs to be added to AvatarFactoryModule to save the uuids to a database and then read them back when that modules TryGetIntialAvatarAppearance() method is called. Done some changes to Scene to make it easier to subclass it: including changed some private fields to protected and made some methods virtual.
* *Refactored the initial raytracer so it doesn't use the Parent reference.Teravus Ovares2007-11-303-23/+48
| | | | | *Fixed a 'statement out of order' error in the setting of the permissions that are sent to the client.
* small change to OnSceneGroupMove event (in SceneEvents.cs)MW2007-11-302-10/+14
|
* * Refactored away permissions and physics flag duplicationslbsa712007-11-301-31/+5
|
* * Removed permissions flag appliance from Xml deserializationlbsa712007-11-305-48/+66
| | | | | * Various code convention compliance
* * Extended our semi-stupid implementation of in world object permissions to ↵Teravus Ovares2007-11-303-9/+201
| | | | | | | show a user's client that it can't edit a prim if it doesn't have permission. * Permissions is due for a big revamp. The current way it's done is a hack at best.
* * Temporary fix for 'User already online' issue in standalone mode.Teravus Ovares2007-11-302-1/+12
| | | | | * Revert this once we get a working logoff.
* * Fixed neighbour range buglbsa712007-11-298-56/+55
| | | | | * Various refactorings
* * Thanks to _SomeOne_, Server side permissions on object editing. Be aware, ↵Teravus Ovares2007-11-292-7/+20
| | | | that if you're editing an object on your client that you're not allowed to, it'll appear that it's moving to you, but won't actually be moving on the sim.
* * Added a 50 second restart notify timer that gets reset when new regions ↵Teravus Ovares2007-11-292-28/+32
| | | | come up to give servers that host a lot of sims a long time to start listening.
* * minor refactoringslbsa712007-11-292-7/+7
|
* * Locking on local scope variable does not make sense - every thread will ↵lbsa712007-11-291-28/+22
| | | | | | | | have its own * Locking on value, then changing it does not make sense - lock will happen on old reference * Taking a local copy of the shared resource then locking on the copy does not make sense - lock will happen on copy
* Changed to doing only 1 request to the grid server from main map. Hopefully ↵Brian McBee2007-11-291-9/+1
| | | | we are not requesting too much in one gulp.
* * Fixed about 7 issues with restarting sims and resolved interRegion comms ↵Teravus Ovares2007-11-292-31/+85
| | | | | | | issues. This includes the issue that MW described this morning. There's a lot of little nit picky changes that make a world of difference.
* Moved the m_sceneGridService.RegisterRegion(RegionInfo); call out of ↵MW2007-11-281-29/+22
| | | | | | | LoadWorldMap and into its own public method (which is called during region creation). We shouldn't have things like that in methods like LoadWorldMap as some regions might not being having a worldmap loaded via the LoadWorldMap method (like in custom applications). Deleted the CreateTerrainTextureInitial Method which was a 99% duplicate of CreateTerrainTexture, with just a bool field setting difference. That bool is now passed to CreateTerrainTexture as a param.
* * Disambiguation in the 'sim is restarting message' that tells you 'which' ↵Teravus Ovares2007-11-281-2/+2
| | | | sim is restarting in the area.
* * Restaring the sim works fine in grid mode now. Sims announce themselves ↵Teravus Ovares2007-11-284-10/+80
| | | | | | | to their neighbors when they start up. Neighbors get this message and tell their agents that there's a new sim up. * Certain unrecoverable physics based crashes in ODE are now hooked up to the 'restart the sim' routine.
* Fixed bug, where the clients in a region weren't told to kill a user's ↵MW2007-11-272-0/+12
| | | | avatar when that user teleported to a different region.
* Fixed an event in the events chain in inter-region communications.Teravus Ovares2007-11-273-20/+90
| | | | | As a consequence, restarting sims in the same process instance now shows them when they come back up in grid mode and standalone mode.
* MainMap workaround. Map still does not fill in automatically, but one click ↵Brian McBee2007-11-261-1/+9
| | | | on map should return a decent portion of it.
* * Disabled primitive count updates on Parcels for the moment, until we can ↵Adam Frisby2007-11-261-0/+4
| | | | move parcels into a module.
* * Restarting regions with the estate tools works in sandbox mode. I'm still ↵Teravus Ovares2007-11-264-22/+77
| | | | working on grid mode, however. It doesn't break anything, but that feature doesn't work in grid mode yet either.
* Added Region name to the terrain texture description that gets sent to the ↵Brian McBee2007-11-251-0/+2
| | | | asset server
* Rez new prims ON the ground, not halfway buried. Mantis 33.Brian McBee2007-11-251-4/+10
|
* * Added the ability to restart your individual sims from within them using ↵Teravus Ovares2007-11-256-4/+228
| | | | | | | the estate tools. * The sims properly restart, however they don't yet notify the existing avatars that they are up. To see the sim again, you'll need to log-out and back in until I can figure out how to get the proper data to the sims and to the avatar so they reconnect again.
* Ignore nullreferenceexception in removeclient. The avatar is already gone.Brian McBee2007-11-251-0/+5
|
* * Removed references to "new LLUUID()", replaced with LLUUID.Zero.Adam Frisby2007-11-242-2/+2
|
* * Added some bounds checks to the sendLandUpdate packet to deal with agents ↵Adam Frisby2007-11-241-4/+4
| | | | | | | coming in from foreign regions. * Updated bounds-check of getLandObject to check for >= 256 rather than > 256.
* * Changed reference to NullReferenceException to ↵Teravus Ovares2007-11-241-1/+1
| | | | System.NullReferenceException for Linux
* Test storing terrain texture to grid assetserver on startup. Needed for main ↵Brian McBee2007-11-241-1/+14
| | | | map functionality.
* * Added a way for the Region master user to kick individual users from their ↵Teravus Ovares2007-11-242-16/+66
| | | | | | | sim with a custom message. Their client says, "You've been logged off of secondlife, <Your custom message here> and logs them off. * Added a way for the Region master user to kick *ALL* users from *ALL* their regions in the estate with a custom message.
* * Hanling RequestGodlikePowers. On Request.. sends the sim owner's client ↵Teravus Ovares2007-11-242-0/+51
| | | | the appropriate messages to make it think it's got god status. Will be used for finding more unimplemented packets....