aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* * Added Support within the ODEPlugin for Selected. Which means that;Teravus Ovares2008-02-231-0/+8
| | | | | | | | * 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.
* * Moved all events except gridcomms and regioncomms over to Event Delegate ↵Teravus Ovares2008-02-221-2/+4
| | | | instances to prevent event race conditions
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* * Fixed xml loading bug (the xml was scheduled for update before added to a ↵lbsa712008-02-201-2/+0
| | | | | | | | scene) * Fixed ClickAction situation on the same note (properties shouldn't cause big changes) * Added some more debug output to AssetCache
* * Made a quickupdate method to run through only entities that have scheduled ↵Teravus Ovares2008-02-201-0/+5
| | | | | | | | | themselves for updates looking for changes. This runs 10 times a second. * Set the massively slow UpdateEntities method to run every 2 seconds instead of 10 times a second. This method runs through *all* of the entities can calls the virtual update(). * Documented some of the code in the scene.Update method.
* * ODE Stability update 4 :D Teravus Ovares2008-02-151-22/+19
| | | | | | * Changed the way meshing requests get sent to the ODEPlugin * Numerous other fixes
* * Made new Framework.Constants class, added RegionSize member.Adam Frisby2008-02-141-1/+1
| | | | | | * Converted all instances of "256" spotted to use RegionSize instead. Some approximations used for border crossings (ie 255.9f) are still using that value, but should be updated to use something based on RegionSize. * Moving Terrain to a RegionModule, implemented ITerrainChannel and TerrainModule - nonfunctional, but will be soon.
* * Make code fix to address prim rotation unlink issues (mantis 383, 454. 369)Justin Clarke Casey2008-02-131-5/+16
| | | | | | * Many thanks to alex_carnell for the necessary information for this
* * Physical prim cross borders and continue from where the left off on the ↵Teravus Ovares2008-02-121-1/+1
| | | | other side now, assuming the region on the other side has physical prim enabled.
* * A bunch of updates to make things more smooth.Teravus Ovares2008-02-121-1/+4
| | | | | | | | | | | ** Sending the actual TimeDilation to the client now instead of the 62455 constant. The client is *supposed* to use that value to sync with the simulator. (actually sending ushort.maxvalue * TimeDilation) ** Disabling prim that inter-penetrate instead of just not attaching a joint ** Reduced prim spin a 'little' bit, but not *enough* ** Tweaked the TimeDilation algorithm to be closer to 1.0 by default and various changes to the sim stats reporter ** Created a .SetValues method to PhysicsVector so we can simply call the setvalues function instead of .x, .y, .z sets. ** Experimented with a .GetBytes Method on PhysicsActor to be able to use the LLVector3.FromBytes() method. ** Upped the Inter-penetration depth to 0.25 instead of .08.
* * This resolves the null exceptions when a script is manipulating a physical ↵Teravus Ovares2008-02-121-3/+9
| | | | object in ODE and you delete the object. The script is still running and trying to add force, but the object reference is null.
* * Added some connection debugginglbsa712008-02-111-1/+1
|
* * some refactoring on permissionslbsa712008-02-111-1/+1
| | | | | * temporary re-introduced the weird 'flip-back' behaviour, but debugging it; will remove it if I don't find anything.
* * Changed child_get_tasks to see_into_this_sim_from_neighbor.Teravus Ovares2008-02-111-6/+9
| | | | | | * Turned on see_into_this_sim_from_neighbor by default. * Fix Race Condition with parts being added to a group while the simulator is starting up.
* * um, Prim crossings? Experimental.Teravus Ovares2008-02-111-15/+8
| | | | | * Backup your database just in case.
* * This updates adds locking capability. Thanks, lbsa71 for pointing out my ↵Teravus Ovares2008-02-101-10/+2
| | | | bitmasking error of the objectflags! It's still a little bit wonky when you check the checkbox, however it 'takes' and doesn't break anything.
* * Added support for delinking individual prim from a linkset.Teravus Ovares2008-02-101-0/+7
|
* * A lot of ugly permissions updates.Teravus Ovares2008-02-101-0/+9
| | | | | | | | | | ** Created SendFullUpdateToAllClientsExcept(LLUUID) so that permission updates /appear/ to apply immediately ** Separated out the ObjectFlags and the Permission Flags. They're related but not the same ** Added a hack routine to add *back* the objectflags to the client flags because the client hates the way we're doing object permissions ** Updated the clientflags routine to properly tell the client when they can't edit admin objects (objects owned by the sim administrator) even when they're an estate manager(why? >.< argh!) ** Fixed a null sim administrator/estate manager/user from causing permissions to return false even when it should return true. ** Re-added ObjectModify hack to allow collaboration with the allow anyone to move checkbox until we get group permissions done.
* Clean up logging calls using String.Format explicitlyJeff Ames2008-02-101-3/+3
|
* refactor - remove unused m_children from EntityBaseJustin Clarke Casey2008-02-081-2/+0
|
* * Added Active Scripts to report the number of scripts running to Sim Stats Teravus Ovares2008-02-061-0/+12
| | | | | | | * Added Script Performance to report the number of functions run per second to Sim Stats. * Removed a few warnings (@.@ up to 50 now)
* Converted logging to use log4net.Jeff Ames2008-02-051-2/+2
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* * Implemented grab and throw in ODE. It's a little strong still so toss ↵Teravus Ovares2008-01-291-6/+38
| | | | gently at first to test the waters or you'll lose prim to the pit at the edge of the sim. Make sure the object is physical before trying to toss it or it'll just move to the new location.
* * changed nonsensical PermissionMask and ObjectFlags mixup; if this causes ↵lbsa712008-01-221-2/+2
| | | | perms weirdness, let's all work together to find the real cause.
* * Make object persistence more granular by separating prim and prim ↵Justin Clarke Casey2008-01-211-2/+7
| | | | inventory persistence
* On reflection, HasGroupChanged is more appropriateJustin Clarke Casey2008-01-181-10/+10
|
* Change SOP.HasChanged to HasPrimChanged in preparation for further changesJustin Clarke Casey2008-01-181-8/+12
|
* * Added llApplyImpulse in the global frame. The object must be physical ↵Teravus Ovares2008-01-171-0/+10
| | | | before this'll do anything. Be careful with this function as it's easy to loose prim.
* * added ForEachPart helperlbsa712008-01-171-2/+16
| | | | | * added SetOwnerId that... sets.. OwnerId... on all parts.
* * Fix mantis 345 - it is now possible to duplicate prims directly in the ↵Justin Clarke Casey2008-01-161-4/+2
| | | | | | | | | region again without breakage * This includes their inventories * Also, this revision properly synchronizes prim inventory crud.
* * Store task inventory when an object is taken into agent inventoryJustin Clarke Casey2008-01-161-4/+8
| | | | | | | | * This means that you can take an object from a region and rez it somewhere else, with its inventory intact. * As for earlier, at this stage only scripts can be placed in inventory * This isn't an efficient implementation, a better one will probably need to come along soonish
* * Delinking doesn't leave invisible physical objects behind anymoreTeravus Ovares2008-01-151-0/+6
|
* * Pass 2 of collidable (non physical) linksetsTeravus Ovares2008-01-151-6/+16
| | | | | | | | * Linkset status is now persistent * Tweaked a physics child prim positioning hack to generate less database saves * Re-factored physics object creation calls into ApplyPhysics. To create a new physics representation of an object or linkset, it's only necessary to call *group*.ApplyPhysics(bool m_physicalPrim). *lbsa has been waiting for this refactoring* * We have collidable linksets now. (they don't become phantom anymore)
* * Mother of all commits:Adam Frisby2008-01-151-2/+2
| | | | | | | * Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
* * First pass at collidable linksetsTeravus Ovares2008-01-141-29/+51
| | | | | | | | | * There will be bugs, you can count on that. To avoid them, set the linksets phantom * After region restart, the linksets restore in a non collidable state. * Linksets can but shouldn't be made physical with the physical checkbox or when you unlink them, they tend to explode. * After creating a linkset, you have to move the linkset or set it phantom and not phantom for it to become collidable. * There's a few ParentGroup references that need to be refactored.
* Remove unused SOG constructorJustin Clarke Casey2008-01-141-8/+0
|
* Fix r2959 - last letter was being sliced off region prim renamesJustin Clarke Casey2008-01-101-2/+2
|
* Prim inventory script saving phase 2.Justin Clarke Casey2008-01-091-4/+3
| | | | | | | | * It is now possible to edit and save scripts directly from prim inventories * On saving, the script will be restarted in the region * Doesn't appear that it's yet possible to drag inventory contents back to agent inventory. Not quite sure why this is yet - the perms all look very permissive.
* Factor out inventory code in SceneObjectGroup into seperate class. Justin Clarke Casey2008-01-061-96/+1
| | | | | | As was true for the previous update, this might require nant users to re-run prebuild.[sh|bat]
* Factor out TaskInventoryItemJustin Clarke Casey2008-01-061-6/+6
|
* Prim inventory phase 4. Properly recover the prim folder ID from storage. ↵Justin Clarke Casey2008-01-061-5/+11
| | | | | | | | | Scripts now show up in prim inventories after region restart. Probably doesn't yet work for any items other than scripts. Still some work to do. No user functionality exposed. Not yet user tieable into normal code.
* I have fixed the ZeroDecodeCommand bug, and restored my packet recycling ↵Johan Berntsson2008-01-031-2/+2
| | | | code. Let me know by IRC if there are other problems
* * This update rolls back the packetpool and LibSL changes. Please retest ↵Teravus Ovares2007-12-301-11/+6
| | | | | | | and then patch these changes back in. Currently it's not quite ready for 0.5. The down side to this action, is that we loose some performance to the garbage collector for now. Given that the target date for 0.5 is *Two days* from now, I'm taking the initiative to work towards a real stable version. * This update also fixes scripting and some weird physics reactions
* * Patch from Melanie provides Util.CleanString and uses it on the prim name ↵Teravus Ovares2007-12-281-1/+0
| | | | and description. Thanks Melanie.
* * Made a copy of parts before updating to avoid dictionary updated ↵lbsa712007-12-281-3/+9
| | | | | | | | exceptions on big updates * The part now uses the byte[] TextureEntry instead of the object
* Patch from Johan: LibSL updated to the latest revision (1568) and all ↵Adam Johnson2007-12-281-5/+8
| | | | | | | packets are now recycled to improve performance and memory usage.
* * Optimized usingslbsa712007-12-271-52/+41
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* If a prim is persisted in the region, scripts dragged into its inventory ↵Justin Clarke Casey2007-12-261-0/+7
| | | | | | | | after a server restart would not appear (though the script they contain would still be invoked). This change fixes that problem.
* Again, thanks to Alondria for:Charles Krinke2007-12-171-7/+34
| | | | | | | | | | Added: LinkNum to SceneObjectPart Added: Bunch-o settings of LinkNum in SceneObjectGroup Added: llGetNumberOfPrims() Added: llGetLinkNumber() Added: llGetLinkKey() Added: llGetLinkName() (and change to string return type)
* * Debugging Shapelbsa712007-12-131-0/+1
| | | | | * Adding namesetting to Create