aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-01-29* Implemented grab and throw in ODE. It's a little strong still so toss ↵Teravus Ovares1-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.
2008-01-22* changed nonsensical PermissionMask and ObjectFlags mixup; if this causes ↵lbsa711-2/+2
perms weirdness, let's all work together to find the real cause.
2008-01-21* Make object persistence more granular by separating prim and prim ↵Justin Clarke Casey1-2/+7
inventory persistence
2008-01-18On reflection, HasGroupChanged is more appropriateJustin Clarke Casey1-10/+10
2008-01-18Change SOP.HasChanged to HasPrimChanged in preparation for further changesJustin Clarke Casey1-8/+12
2008-01-17* Added llApplyImpulse in the global frame. The object must be physical ↵Teravus Ovares1-0/+10
before this'll do anything. Be careful with this function as it's easy to loose prim.
2008-01-17* added ForEachPart helperlbsa711-2/+16
* added SetOwnerId that... sets.. OwnerId... on all parts.
2008-01-16* Fix mantis 345 - it is now possible to duplicate prims directly in the ↵Justin Clarke Casey1-4/+2
region again without breakage * This includes their inventories * Also, this revision properly synchronizes prim inventory crud.
2008-01-16* Store task inventory when an object is taken into agent inventoryJustin Clarke Casey1-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
2008-01-15* Delinking doesn't leave invisible physical objects behind anymoreTeravus Ovares1-0/+6
2008-01-15* Pass 2 of collidable (non physical) linksetsTeravus Ovares1-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)
2008-01-15* Mother of all commits:Adam Frisby1-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.
2008-01-14* First pass at collidable linksetsTeravus Ovares1-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.
2008-01-14Remove unused SOG constructorJustin Clarke Casey1-8/+0
2008-01-10Fix r2959 - last letter was being sliced off region prim renamesJustin Clarke Casey1-2/+2
2008-01-09Prim inventory script saving phase 2.Justin Clarke Casey1-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.
2008-01-06Factor out inventory code in SceneObjectGroup into seperate class. Justin Clarke Casey1-96/+1
As was true for the previous update, this might require nant users to re-run prebuild.[sh|bat]
2008-01-06Factor out TaskInventoryItemJustin Clarke Casey1-6/+6
2008-01-06Prim inventory phase 4. Properly recover the prim folder ID from storage. ↵Justin Clarke Casey1-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.
2008-01-03I have fixed the ZeroDecodeCommand bug, and restored my packet recycling ↵Johan Berntsson1-2/+2
code. Let me know by IRC if there are other problems
2007-12-30* This update rolls back the packetpool and LibSL changes. Please retest ↵Teravus Ovares1-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
2007-12-28* Patch from Melanie provides Util.CleanString and uses it on the prim name ↵Teravus Ovares1-1/+0
and description. Thanks Melanie.
2007-12-28* Made a copy of parts before updating to avoid dictionary updated ↵lbsa711-3/+9
exceptions on big updates * The part now uses the byte[] TextureEntry instead of the object
2007-12-28Patch from Johan: LibSL updated to the latest revision (1568) and all ↵Adam Johnson1-5/+8
packets are now recycled to improve performance and memory usage.
2007-12-27* Optimized usingslbsa711-52/+41
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-26If a prim is persisted in the region, scripts dragged into its inventory ↵Justin Clarke Casey1-0/+7
after a server restart would not appear (though the script they contain would still be invoked). This change fixes that problem.
2007-12-17Again, thanks to Alondria for:Charles Krinke1-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)
2007-12-13* Debugging Shapelbsa711-0/+1
* Adding namesetting to Create
2007-12-12couple of small fixes.MW1-2/+2
2007-12-11Couple of more small changesMW1-1/+4
2007-12-07Updates to LibSL revision 1498. Thanks Johan!Adam Johnson1-1/+1
2007-12-06* Removed lots of scurrilous uses of ASCII/UTF8.GetBytes for making packet ↵Adam Frisby1-4/+4
strings. BAD PROGRAMMER BAD. Use Helpers.StringToField instead. >_>
2007-12-05* Refactored Permissions into ScenePresence as requested by MWTeravus Ovares1-7/+26
* Un-hackerized generating the client_flags * Now handling the ObjectPermissions Update packet * Warning: Backup your prim before updating. If you fail to do so and something goes wrong then, All Yr prim are belong to us!
2007-12-04keeping opensim safe for children -- made some namespace references less ↵Jeff Ames1-1/+2
explicit
2007-12-04* Some more ApplyPhysics voodoolbsa711-82/+87
2007-12-04* ApplyPhysics now creates the PhysActor as well.lbsa711-1/+1
2007-12-04* Added ApplyPhysics helper on group.lbsa711-0/+8
2007-12-04* Fixed a whole bunch of console messages.Adam Frisby1-1/+1
2007-12-01Rezzing multiple copies of a inventory prim should now work.MW1-0/+11
2007-11-30*Refactored the initial raytracer so it doesn't use the Parent reference.Teravus Ovares1-5/+14
*Fixed a 'statement out of order' error in the setting of the permissions that are sent to the client.
2007-11-30small change to OnSceneGroupMove event (in SceneEvents.cs)MW1-7/+10
2007-11-30* Removed permissions flag appliance from Xml deserializationlbsa711-9/+14
* Various code convention compliance
2007-11-30* Temporary fix for 'User already online' issue in standalone mode.Teravus Ovares1-1/+1
* Revert this once we get a working logoff.
2007-11-29* Fixed neighbour range buglbsa711-10/+10
* Various refactorings
2007-11-29* minor refactoringslbsa711-1/+1
2007-11-23* added some functions for use in raytracing. They're kind of crappy now, ↵Teravus Ovares1-0/+38
so they only display 'guesses' on the console when you rez a prim. * any math gurus who'd like to improve rezzing need only to make the raytracer in SceneObjectPart work :D
2007-11-21Fixed bug that can lead to infinitive loopsMW1-0/+6
2007-11-20fix for mantis #2 from Justin Casey (IBM)Sean Dague1-0/+5
2007-11-20*Huge* structural changes in ODE/OdePrim to get all of the calls in ↵Teravus Ovares1-3/+9
threadlocked code. ODEPrim was almost completely re-written. Copy/Space test needed.
2007-11-18* Refactored IClientAPI.OutPacket to require a second mandatory parameter. ↵Teravus Ovares1-2/+2
This parameter has an enum:int ThrottleOutPacketType and contains types; Resend, Land, Wind, Cloud, Task, Texture, and Asset.