aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Implement basic region filtering as described in ↵Justin Clarke Casey2008-11-112-0/+2
| | | | | | | | | | | | https://lists.berlios.de/pipermail/opensim-dev/2008-November/003468.html * This is done by sending a 'major interface version' number on sim registration. Developers must increment this every time they make a change that would make the previous OpenSim revision failure incompatible with the new one (non-fatal incompatibilities are fine). * This number resides in OpenSim.Framework.Servers.VersionInfo.MajorInterfaceVersion * This allows the grid service to stop older, incompatible regions from connecting
* Mantis#2604. Thank you kindly, Diva for a patch that:Charles Krinke2008-11-111-4/+10
| | | | | | | | | | This patch changes a couple of methods in Scene.Inventory to virtual, so they can be overridden in subclasses. DeleteToInventory now returns the UUID of the newly created asset, so that further actions on it can be pursued in subclasses. This will make my life easier for making inventory accessible in the hypergrid.
* If the proxy is on, we need to ignore the extra 6 bytes in the packet.Mike Mazur2008-11-111-0/+1
|
* Add ClampPrimSize option to ensure no prim can exceed the set size. ThisMelanie Thielker2008-11-111-0/+2
| | | | | | | | will allow people who don't want megaprims in their sim to prevent them from being created. Any prim rezzed or pulled across the border will be clamped to the size specified in OpenSim.ini if this option is set.
* Fix a nullref in attachment packingMelanie Thielker2008-11-111-0/+7
|
* Allow gods to terraform without limits. Respect the Allow Others ToMelanie Thielker2008-11-114-9/+11
| | | | | | Terraform flag in land.
* Fix llList2Integer to have the same semantics as an (integer) cast. HandleMelanie Thielker2008-11-111-4/+2
| | | | | | mixed number/letter content properly.
* Update svn properties, minor formatting cleanup.Jeff Ames2008-11-112-6/+7
|
* * Commit allows downloading of the .raw terrain from the estate tools.Teravus Ovares2008-11-105-6/+70
| | | | | | | * Implements the SendInitiateDownload method in IClientAPI * Uses the ITerrainModule Interface to write a terrain file to disk then uses a FileStream to read the binary file from the disk and put it in a byte array. and save to the xFer list. * It then tells the client to download the file and the client initiates an Xfer request.
* * Remove mono warningsJustin Clarke Casey2008-11-101-32/+9
| | | | | | * Remove duplicate test part
* * refactor: clean up SOG xml2 reloading to reuse more codeJustin Clarke Casey2008-11-102-13/+4
|
* Restore the independent LocalID numbering for avatars. Fixes an issue whereMelanie Thielker2008-11-102-1/+12
| | | | | | | it becomes impossible to cross back into a region you came from, or freeze several seconds after region crossings.
* * refactor: Make xml (orig format) loading method reuse existing set root ↵Justin Clarke Casey2008-11-101-9/+15
| | | | | | | | part method * miscellaneous doc/log message changes
* fix unit tests use SetRootPart nowSean Dague2008-11-101-3/+3
| | | | | From: Sean Dague <sdague@gmail.com>
* make things compile, but the test still fails because of the root partSean Dague2008-11-101-3/+0
| | | | | changes
* Lock tests on EntityList.cs, multithreaded object additionSean Dague2008-11-102-1/+290
| | | | | | | and removal. From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* * minor: remove useless exception catchJustin Clarke Casey2008-11-102-10/+2
|
* * refactor: Expose SOG.SetRootPart for outsiders to use rather than setting ↵Justin Clarke Casey2008-11-104-13/+8
| | | | | | | | RootPart and adding the part separately * Make RootPart read only
* Removed some debug output I forgot to remove...Homer Horwitz2008-11-101-13/+0
|
* * Take out the 1 second sleep debugging line in ScenePresenceJustin Clarke Casey2008-11-101-1/+0
|
* * Refactor the callers of SOG.SetPartAsRoot() to use common codeJustin Clarke Casey2008-11-101-31/+18
|
* * minor: Remove old dead and buried datastore codeJustin Clarke Casey2008-11-103-1288/+0
|
* minor: remove mono compiler warningsJustin Clarke Casey2008-11-101-1/+0
|
* * Extend basic scene test to retrieve the object from the scene and match uuidsJustin Clarke Casey2008-11-106-72/+37
| | | | | | | * Decouple sog and sop by removing the need to pass the sog to the sop when it is created - most of the code was doing this operation (and hence duplicating it) anyway * Remove unused constructors
* Keep dropped prims from being temp-on-rez and getting cleaned upMelanie Thielker2008-11-101-0/+1
|
* another small bit of startup refactoringMW2008-11-101-0/+5
|
* From: Christopher Yeoh <cyeoh@au1.ibm.com>Sean Dague2008-11-101-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch addresses mantis bug 2576. http://opensimulator.org/mantis/view.php?id=2576 Briefly, if you call llDie from many scripts at the same time (say a build is cleaning up excess objects) then OpenSim deadlocks. Avatars are unable to move, and whilst the console is active you can't do much without it also locking up. This only occurs with the XEngine script engine enabled. I have attached a patch which works, but I'm not sure its the right way to address the problem. The fundamental problem is that a lock on a SceneObjectGroup's m_parts is taken when the object is deleted, a callback to the script engine occurs and a fair way down the callchain, potentially there are locks taken on several other SceneObjectGroup's m_parts. Deadlock then occurs if you get unlucky enough to get in the situation where with several llDie's are called and SceneObjectGroups have taken a lock on their own m_parts, and end up waiting on each other's locks to become available. The patch adds a lock at a high level so that that the removal of script instances from an object only occurs once per scene at a time. This avoids the potential of deadlock. Theoretically there could be some performance hit but AFAICT the path taken is not a common occurrence. Would welcome any suggestions for a better solution, otherwise feel free to apply :-) Note this patch was built against the 0.6.0 freeze as trunk was rather broken for me this morning (creating a script killed the client connection).
* The region proxy for the load balancer module works again. The incoming ↵Johan Berntsson2008-11-101-10/+20
| | | | proxy messages were not properly decoded.
* Prevent AO from crashing the sim if the user logs out before the script Melanie Thielker2008-11-101-0/+3
| | | | | | stops
* Add a MinTimerInterval, defaulted at 0.5s, to the scripting configurationMelanie Thielker2008-11-101-0/+5
|
* Stop attachments from causing an update to be sent on every frame in whichMelanie Thielker2008-11-104-7/+13
| | | | | | an avatar moves.
* Thank you, idb, for a patch that fixes avatar height calculationMelanie Thielker2008-11-101-3/+4
| | | | | | Our feet will now be above ground
* Prevent updates about other people's HUD objects being sentMelanie Thielker2008-11-091-0/+3
|
* Enabled SoftERP for the contact structure but not SoftCFM.Charles Krinke2008-11-091-1/+6
| | | | | | A tube on a pole is a bit less "flubbery" so maybe this is the right direction.
* Script region crossing. This has not user functionality, but lays all theMelanie Thielker2008-11-0912-31/+156
| | | | | | groundwork.
* Cause llGetInventoryType to return the asset type, which corresponds withMelanie Thielker2008-11-091-1/+1
| | | | | | the LSL constants.
* Clean up a few comments.Charles Krinke2008-11-091-11/+3
|
* Clean up the mass < 0 logic a tiny bit whenCharles Krinke2008-11-091-2/+1
| | | | | calculating mass.
* * Applying EventQueueGetModule patch to try debug the case of the missing EQG.Adam Frisby2008-11-091-1/+2
|
* * Enabled GTCache for AssetCache Adam Frisby2008-11-092-12/+22
| | | | | | * Items will now be locally cached for only 24 hours from last access. (Rather than until restart) * Caveat: Implementing the new caching mechanism means statistics gathering on AssetCache is no longer functional. (Justin - you might want to take a look and see if you can somehow get that back and running if you still need it)
* Update svn properties. Add copyright headers. Minor formatting cleanup.Jeff Ames2008-11-094-4/+4
|
* Reintroduce transactionID to the parameter list for SendInstantMessage.Melanie Thielker2008-11-095-10/+16
| | | | | | | It is required by group IM and also for a proper implementation of item give, group notice attachments and offline IM.
* Refactor the detectparams variable from 'd' to Charles Krinke2008-11-081-30/+30
| | | | | a more meaningful name of 'detectedParams'.
* * Quick test for Dahlia, returns Packet Processing Loop to Infinite Loop.Adam Frisby2008-11-081-1/+1
|
* Mantis#2590. Thank you kindly, Diva for a patch that solves:Charles Krinke2008-11-081-1/+10
| | | | | | When the given address to CheckRegion is wrong, it crashes the whole server. Patch included.
* Mantis#2583. Thank you kindly, Idb for a patch that solves:Charles Krinke2008-11-081-16/+31
| | | | | | | | | | PRIM_TEMP_ON_REZ and PRIM_MATERIAL are not implemented in llSetPrimitiveParams so support for these is in the patch. Also two deprecated functions throw errors. They are changed to behave as in SL: llSetPrimURL - Does nothing except the sleep (currently commented out) & llRefreshPrimURL shouts "llRefreshPrimURL - not yet supported" on the error channel
* * Fixed issue where incorrect braces nesting resulted in a section of ↵Adam Frisby2008-11-081-24/+22
| | | | | | | PacketQueue getting disabled. * This means the recent memory fix should now be working correctly - so the current largest memory leak should be fixed. AssetCache still needs to be addressed however.
* * Fixed a major memory leak in packet processing - PacketQueue.Close is ↵Adam Frisby2008-11-082-27/+55
| | | | | | | never called, causing the PacketQueue for dead clients to be preserved (including it's contents). * This patch is highly experimental and may cause clients to not be able to connect, if this is the case, it will be rolled back in approximately 5 minutes.
* Mantis #2553: Thank you, idb, for a fix that helps to persist changes in ↵Homer Horwitz2008-11-081-0/+8
| | | | prim attributes.
* * Added IClientChat to IClientCoreAdam Frisby2008-11-081-16/+3
| | | | | | * Updated LLClientView * Removed defunct SendChatMessage(bytes[]...) method, see http://opensimulator.org/wiki/OpenSim_0.6_IClientAPI#Porting_Guide