aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * DEV: Remove client's CAPS handlers object when they log outJustin Clarke Casey2008-03-171-1/+6
|
* Fix a few mono compiler warnings. Minor cleanup.Jeff Ames2008-03-171-2/+2
|
* Replaced some magic PCode numbers with enum values.Jeff Ames2008-03-172-2/+2
|
* From: Alan M Webb <awebb@vnet.ibm.com>Sean Dague2008-03-172-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Here's a diff of the changes I have made in support of the following LSL script functions. llSetScriptState llGetScriptState llCSV2List llListRandomize llList2ListStrided llListFindList llResetOtherScript llGetScriptName It was necessary to modify ExecutorBase in support of the ScriptState implementations. I also modified SceneObjectPart and SceneObjectPart.Inventory to corrects a quoting mismatch in the commentary that through off live parsing of the files. I also simplified the State definition at the start of BuiltinCommands.
* * Fixed prim creation in basic physics mode. ( BasicPhysics returns null ↵Teravus Ovares2008-03-161-3/+7
| | | | probably a lot more then it should? )
* Part 2 of fixing inventory for client 1.19.1 (RC), inventory items should ↵MW2008-03-151-0/+1
| | | | | | | now show up. Most likely still some problems and most like needs some more work (and still a couple of things to finish off).
* * Remove stupid bug I just introduced where delinking would only delink one ↵Justin Clarke Casey2008-03-141-12/+1
| | | | | | | | prim at a time. * Teaches me not to say stuff like 'this is now working'
* * Minor - error message should be a warning. SpellingJustin Clarke Casey2008-03-142-2/+2
|
* * The rest of the fix necessary for mantis #766 - terse updates brokenJustin Clarke Casey2008-03-143-16/+43
| | | | | | | * Even very rapid linking/delinking should now behave normally. Terse updates still occur as before * Hopefully this ends the recent linking problems - please let us know if there are more
* * As yet incomplete fix for mantis #766 - terse updates brokenJustin Clarke Casey2008-03-143-3/+27
| | | | | | | * Currently, terse updates are back, and extremely rapid linking and delinking will only break occasionally * More work to do here
* * You can leave godmode if you want now.Teravus Ovares2008-03-143-5/+16
| | | | | * Fixed a compile error.
* * Added null root part guardlbsa712008-03-144-22/+18
| | | | | | * Normalized some UUID handling * Compacted a few Contains/Add into Set
* Attempt to fix mantis #741, could not replicate it myself. But the error ↵MW2008-03-141-130/+137
| | | | was suggesting that the SceneObjectPart was null, so added a null check, to make sure the sceneobject to be attached is found before attempting the attachment.
* * Added proper handling of llSetStatus(STATUS_PHYSICS,BOOL)Teravus Ovares2008-03-142-1/+61
|
* * Preliminary work with the ODEPlugin to collect collision data.Teravus Ovares2008-03-144-1/+10
|
* * Put back a comment I just inexplicably zappedJustin Clarke Casey2008-03-131-1/+1
|
* Just a few commentsJustin Clarke Casey2008-03-131-1/+5
|
* * Very minor comment change to reflect the fact that eliminating spurious ↵Justin Clarke Casey2008-03-131-2/+4
| | | | delink prim updates is low priority
* * Fix Mantis 761 (linking and delinking prims rapidly caused prims to ↵Justin Clarke Casey2008-03-135-19/+55
| | | | | | | | | 'disappear') * Root cause was that if two updates occurred in the same second of time, the second one was never sent * Linking/delinking appears to be okay now
* * Fix mantis 757.Justin Clarke Casey2008-03-124-26/+32
| | | | | | | | * DelinkFromGroup was removing the parts from the delinked group, which later upset the update thread when it tried to do a queued update for that object * Temporary fix is to stop deleting the parts, though it would be good later to stop sending out the now spurious updates * This fix actually reveals another bug, where rapid linking and delinking will cause the non root prims to disappear (though they're actually still there if you relog). This is the next bug to tackle.
* * Don't abort (and keep failing) the update if one Entity gives us an ↵Justin Clarke Casey2008-03-122-31/+44
| | | | | | | | exception when we try to update it * This doesn't remove bug 757, but does largely remove the worst consequences
* Applied patch from mantis #749, Grass now stays to set type when moved. ↵MW2008-03-121-2/+2
| | | | thanks Grumly57.
* ODEPluginTeravus Ovares2008-03-101-0/+16
| | | | | | | | | * Added osSetPrimFloatOnWater(BOOL) to make Physical prim float at the water level. * osSetPrimFloatOnWater(TRUE); or osSetPrimFloatOnWater(FALSE); * By default, prim do not float at the water level. * More work is needed on the floating, but it's a start.
* * Added ODEPlugin Support for llSetBuoyancy. Set Buoyancy to 1 for space prim.Teravus Ovares2008-03-101-0/+8
| | | | | * Added WaterLevel support to the ODEPlugin. More on this later.
* Thank you kindly, Ldviopeng for:Charles Krinke2008-03-082-3/+21
| | | | | | | Patch to implement the following LSL / OS functions llParcelPrimCount(60%) osSetParcelMediaURL
* More spelling corrections in the spirit of r3771.Jeff Ames2008-03-072-9/+9
|
* * Minor spelling corrections as per mantis 712Justin Clarke Casey2008-03-071-2/+2
|
* * Temporary resolution for mantis #711Justin Clarke Casey2008-03-071-10/+19
| | | | | | | * Trying to store items other than textures, sounds and scripts in a prim's inventory should no longer cause an exception. * Temporary solution is to ignore storage requests for these assets - actually implementing this requires changes to TaskInventoryItem, at least
* * Disabled ancient TerrainEngine.Adam Frisby2008-03-065-131/+27
| | | | | | | * Enabled new TerrainModule. (The king is dead, long live the king!) * Use the console command: "script terrain save file.r32" / "script terrain load file.r32" to load/save terrain. Now uses the extension to determine file format. * MANY of the old terrain features do not have a replacement function in the new module yet, this needs to be corrected, but has not been done so far. This being said, the new module is faster and more efficient and should be a good replacement.
* * Removed more compiler warnings, dead code, etc.Adam Frisby2008-03-052-6/+0
|
* Change SceneObjectPart.LocalID to .LocalId to be case matchingSean Dague2008-03-057-37/+37
| | | | | | with SceneObjectGroup.LocalId (and hence reduce confusion).
* * New Terrain Module (disabled, search for 'usingTerrainModule = false' to ↵Adam Frisby2008-03-052-2/+2
| | | | | | | | | | | reenable) * *Much* faster terraforming (woot!) * New "Brushes" design, so you can create custom terraforming brushes then apply those inplace of the standard tools. (ie an Erode Brush for example) * New specialised "Flood Brushes" to do large area effects, ie, raise-area, now takes a bitmap rather than repeats the ordinary raise brush a thousand times. * New modular file Load/Save systems -- write importers/exporters for multiple formats without having to hard code the whole thing in. * Coming soon - effects system, ie the old Erosion functions, etc. for one-shot effects.
* this is probably just a band aid, but should at leastSean Dague2008-03-041-3/+9
| | | | | | | help figure out where my last crash came from by being extra careful arround Add for scene object group.
* * One line fix to get everything working again. Essentially set the ↵Teravus Ovares2008-03-041-1/+0
| | | | originRegionID = RegionID in RegionInfo.cs on line 375
* Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson2008-03-046-19/+754
| | | | support for region move/split/merge. See ThirdParty/3Di/README.txt. Unless the new modules are used there should be no noticeable changes when running OpenSim.
* * Applied patch 708 from devalnor. Thanks devalnor!Teravus Ovares2008-03-032-8/+39
| | | | | | * ODE: Added support for larger box stacks. (they're slow, but they work) * ODEPlugin no longer tries to 'catch up' with the simulator frame rate if it gets behind. Catching up was causing a lot of problems with larger box stacks and other things that stall the simulator (like saving prim in the datastore)
* * Removed a bunch of compiler warnings.Adam Frisby2008-03-031-1/+1
|
* * Removed and sorted using clauses in a number of files.Adam Frisby2008-03-032-3/+12
| | | | | | | | | | * Cleaned up ITerrainChannel * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Paint Brushes * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Fill Brushes * Implemented Export functionality for RAW32 terrain loader * Implemented Import/Export for SLRAW terrain loader * Implemented Export for JPEG terrain loader
* Change handler001 through handler009 to moreCharles Krinke2008-03-027-87/+87
| | | | | | | | appropriate names consisten with their use. All done with all 94 handlers from handler001 through handler094. Hopefully we can move forward without numbered handlers.
* Update names of handler010 through handler019Charles Krinke2008-03-021-36/+36
| | | | | | to more appropriate names consistent with use.
* * This is a very icky implementation of physical linkset prim using fixed ↵Teravus Ovares2008-03-023-4/+18
| | | | | | | | | joints. This will change quite drastically, however it's fun to play with. * To play with this you must link your prim before setting it physical, otherwise they won't link in the physics engine properly. This will also be fixed. * Currently the linked prim are extremely unstable because I have yet to implement combining of forces with the same normal. This will also be fixed. In fact, the whole PhysicsActor, ODEPrim relationship will be reworked to consider groups from the get-go. * This implementation is better then it crashing your sim, so I'm commiting it for now.
* Rename handler020 through handler029 with moreCharles Krinke2008-03-021-28/+28
| | | | | appropriate names consistent with their use.
* * Added a way for the friends module to definitively know if an avatar's ↵Teravus Ovares2008-02-282-1/+15
| | | | root agent is on the instance and if so, which region the avatar's root agent is in.
* * OnSignificantClientMovement was never being called. So we got no land ↵Teravus Ovares2008-02-281-1/+1
| | | | updates (fixed)
* * Turned Friends Module into a shared module (to comply with ↵Teravus Ovares2008-02-271-1/+6
| | | | | | | Scene.AddXmlRPCHandler being shared). * Fixed a null ref issue in Scene.Close()
* UserService.ClearAgent call is no longer made when a childagent connection ↵MW2008-02-271-6/+5
| | | | | | | is being closed. DisableSimulatorPacket now skips the packet throttles
* * Caught HttpListenerException and swallowed if with outputlbsa712008-02-251-2/+2
| | | | | | | | * Moved Flush into Close since it's always done in that order. * Minor renamings * Reversed if for clarity
* * Added Support within the ODEPlugin for Selected. Which means that;Teravus Ovares2008-02-232-6/+22
| | | | | | | | * When you select a physical prim, it stops while you've got it selected. * When you move or alter a prim in some manner, it doesn't become collidable until you de-select it * When you select a prim, it doesn't become temporarily 'phantom' until you make some change to it while it's selected. (this prevents accidental selections in prim floor from causing it to go phantom on you(but don't move it or you'll fall)) * There's one major difference, and that's a physical object won't stop if you don't have permission to edit it. This prevents people who don't have edit permissions on a prim from stopping it while it's moving.
* * Converted the last of the events to the private delegate instance method ↵Teravus Ovares2008-02-221-18/+32
| | | | to avoid race conditions.
* * Moved all events except gridcomms and regioncomms over to Event Delegate ↵Teravus Ovares2008-02-225-9/+21
| | | | instances to prevent event race conditions