aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-07-16Add very basic test for resizing a scene object with one primJustin Clark-Casey (justincc)1-1/+2
2011-07-16If resized shape is a mesh/sculpt, leave it to the mesh asset callback to ↵Justin Clark-Casey (justincc)1-2/+8
trigger the physics actor taint. In the last commit, the fix was made by updating all the child prim physics actors with the new size rather than just the root part.
2011-07-16Fix physics proxy regeneration when a mesh with more than one submesh is resizedJustin Clark-Casey (justincc)1-0/+12
Addresses http://opensimulator.org/mantis/view.php?id=5584
2011-07-15Fix some local id issues in physics glueroot1-2/+2
2011-07-15fix duplication of physical objects for physics engines that care about the ↵Robert Adams1-6/+6
initial value of localID
2011-07-12When a mesh object is added to a scene, delay adding the physics actor until ↵Justin Clark-Casey (justincc)1-1/+1
the sculpt data has been added to the shape (possibly via an async asset service request) This prevents spurious 'no asset data' for meshes added on startup.
2011-07-11refactor: push the part of SceneObjectGroup.CheckSculptAndLoad() that ↵Justin Clark-Casey (justincc)1-17/+15
actually deals with the part into a SceneObjectPart.CheckSculptAndLoad() method
2011-07-11When a sculpt/mesh texture is received by a part on a callback request, ↵Justin Clark-Casey (justincc)1-0/+3
don't do the unnecessary work of copying the base shape. Just setting the new base shape is enough to reinsert the sculpt data and set the taint. Also cleans up a few more left-in debugging messages.
2011-07-11refactor: Make arguments for SceneObjectGroup.UpdatePrimFlags() more readableJustin Clark-Casey (justincc)1-6/+8
2011-06-15Add localID to physical object creation functions.Mic Bowman1-1/+1
2011-06-15Add the PhysActor to the correct SOP when duplicating a physicalMic Bowman1-4/+9
prim. Thanks, MisterBlue
2011-06-10minor: Add some commented out destructor logging messages for potential ↵Justin Clark-Casey (justincc)1-0/+5
future use. At the moment, client and scene objects are being garbage collected as expected, at least in simple scenarios.
2011-05-24Allow disabling the legacy backup mechanism to avoid the object clone ifMelanie1-1/+1
backup is not used.
2011-04-29Minor correction to yesterday's changes. Make normal prim crossing (no ↵Diva Canto1-2/+0
attach) work well again.
2011-04-28Fatpack message on agent transfers: 1 message only (UpdateAgent) containing ↵Diva Canto1-0/+2
the agent and all attachments. Preserves backwards compatibility -- older sims get passed attachments one by one. Meaning that I finally introduced versioning in the simulation service.
2011-04-14simplify coalesced object tests by using existing scene object set up utilsJustin Clark-Casey (justincc)1-7/+14
this change makes it possible to set an absolute position on a group before it is put into a scene.
2011-04-13First pass at moving object property requests into a queue similarMic Bowman1-4/+6
to the entity update queue. The number of property packets can become significant when selecting/deselecting large numbers of objects. This is experimental code.
2011-04-12First pass at moving object property requests into a queue similarMic Bowman1-4/+6
to the entity update queue. The number of property packets can become significant when selecting/deselecting large numbers of objects. This is experimental code.
2011-04-12First pass at moving object property requests into a queue similarMic Bowman1-4/+6
to the entity update queue. The number of property packets can become significant when selecting/deselecting large numbers of objects. This is experimental code.
2011-04-06Signal prim count taint if the AbsolutePosition of a scene object changes.Justin Clark-Casey (justincc)1-0/+2
This updates prim counts correctly if an object is moved by something other than an avatar (e.g. scripts, region modules) Create TestMoveOwnerObject() regression test for this case.
2011-04-05Change some text to make the autoreturn mechanism more obvious, and align ↵Justin Clark-Casey (justincc)1-2/+4
with the fact that it's one word rather than two.
2010-12-03Only force prim persistence before delete if the prim is the result of an ↵Justin Clark-Casey (justincc)1-2/+13
unpersisted delink This considerably improves delete performance for objects with large linksets
2010-11-22Let CHANGED_SCALE also trigger when editing prims and linksets with the ↵Marck1-0/+2
viewer's edit tools. This event used to trigger only when the scale was changed with a script.
2010-11-16Change the way attachments are persisted. Editing a worn attachment will nowMelanie1-2/+4
save properly, as will the results of a resizer script working. Attachment positions are no longer saved on each move, but instead are saved once on logout. Attachment script states are saved as part of the attachment now when detaching.
2010-10-07Fix autoreturn to not return zero objectsMelanie1-6/+2
2010-10-06Plumb the path for multiple object deletesMelanie1-2/+6
2010-09-25Add UUID to physics prim name parameter so that diagnostic messages can be ↵Justin Clark-Casey (justincc)1-1/+1
made more useful. If a separate UUID parameter is better for the future then this can be added later on.
2010-09-21If the uuid of a SceneObjectGroup (RootPart) is changed before adding to the ↵Justin Clark-Casey (justincc)1-2/+6
scene, remove the old uuid reference from m_parts as well as adding the new one. The separate remove and set operations is SOG.set_UUID() are both locked under m_parts.SyncRoot since they are logically atomic (though this isn't such an issue if the SOG isn't part of a scene) Added unit test for this behaviour. Also changed the second m_parts.AddOrReplace() to m_parts.Add(). As the old reference is now removed we never end up replacing an identical uuid. And if we replace a uuid that's already there (from a child part) then this is an error.
2010-09-16Fixed a regression in SOG.Copy()John Hurliman1-1/+1
2010-09-16Changed SceneObjectGroup to store parts with the fast and thread-safe ↵John Hurliman1-818/+591
MapAndArray collection
2010-09-16Removing debugroot1-1/+0
2010-09-16JustinCC is evil. f7b28dd3 broke script persistence. This fixes it.root1-0/+1
2010-09-15rename SceneObjectGroup.DeleteGroup() to DeleteGroupFromScene() to improve ↵Justin Clark-Casey (justincc)1-1/+1
code readability
2010-09-15Instead of locking SOG.Children when a group is being removed from the ↵Justin Clark-Casey (justincc)1-15/+17
scene, iterate over an unlocked list instead Previously, deadlock was possible because deleting a group took a SOG.Children lock then an m_entityUpdates.SyncRoot lock in LLClientView At the same time, a thread starting from LLClientView.ProcessEntityUpdates() could take an m_entityUpdates.SyncRoot lock then later attempt to take a SOG.Children lock in PermissionsModule.GenerateClientFlags() and later on Taking a children list in SOG appears to be a better solution than changing PermissionsModule to not relook up the prim. Going the permission modules root would require that all downstream modules not take a SOG.Children lock either
2010-09-14Comment out SOG storing debug log messageJustin Clark-Casey (justincc)1-3/+3
This can get very spammy with regularly changing objects. Please uncomment if required.
2010-09-12* Added ISimulationDataService and IEstateDataServiceJohn Hurliman1-1/+1
* Removed StorageManager * CONFIG CHANGE: There are no more database settings in OpenSim.ini. Check the config-include configuration files for region store and estate store database settings
2010-09-12Formatting cleanup.Jeff Ames1-9/+9
2010-09-11Fixed the naming mess around data connectors for simulation dataJohn Hurliman1-1/+1
2010-09-10Second pass at cleaning up thread safety in EntityManager and SceneGraphJohn Hurliman1-9/+2
2010-09-07Fix deletion persistence when freshly delinked prims are removedJustin Clark-Casey (justincc)1-17/+25
Previously, Scene.Inventory.DeRezObjects() forced the persistence of prims before deletion. This is necessary so that freshly delinked prims can be deleted (otherwise they remain as parts of their old group and reappear on server restart). However, DeRezObjects() deleted to user inventory, which is not required by llDie() or direct region module unlink and deletion. Therefore, forced persistence has been pushed down into Scene.UnlinkSceneObject() to be more general, this is still on the DeRezObjects() path. Uncommented TestDelinkPersistence() since this now passes. Tests required considerable elaboration of MockRegionDataPlugin to reflect underlying storing of parts.
2010-09-07Fix deletion persistence when freshly delinked prims are removedJustin Clark-Casey (justincc)1-17/+25
Previously, Scene.Inventory.DeRezObjects() forced the persistence of prims before deletion. This is necessary so that freshly delinked prims can be deleted (otherwise they remain as parts of their old group and reappear on server restart). However, DeRezObjects() deleted to user inventory, which is required by llDie() or direct region module unlink and deletion. Therefore, forced persistence has been pushed down into Scene.UnlinkSceneObject() to be more general, this is still on the DeRezObjects() path. Uncommented TestDelinkPersistence() since this now passes. Tests required considerable elaboration of MockRegionDataPlugin to reflect underlying storing of parts.
2010-09-06Add test to check persistence of newly added pre-linked objectsJustin Clark-Casey (justincc)1-3/+2
Added a MockRegionDataPlugin to do in-memory persistence for tests since adding this to OpenSim.Data.Null.NullDataStore doesn't seem appropriate NullDataStore can do nothing because OpenSim only ever retrieve region objects from the database on startup. Adding an in-memory store here would be unecessary overhead.
2010-09-01refactor: move SOG.AttachToAgent() into AttachmentsModuleJustin Clark-Casey (justincc)1-71/+0
2010-08-28Improve liveness by operating on list copies of SOG.Children where appropriateJustin Clark-Casey (justincc)1-23/+27
2010-08-26replace m_parts.Count linknum with 0 in CopyRootPart since m_parts.Count is ↵Justin Clark-Casey (justincc)1-1/+1
always 0 (and any other number would cause an error anyway)
2010-08-26Improve consistency of locking for SOG.m_parts in order to avoid race ↵Justin Clark-Casey (justincc)1-52/+79
conditions in linking and unlinking
2010-08-25If setting SOG.UUID, update the SOG.m_parts index as well as the root part UUIDJustin Clark-Casey (justincc)1-1/+10
Being able to change a SOG.UUID is useful for region modules that want to supply their own UUID, before the object is rezzed
2010-08-13refactor: Use SOP.Flags rather than SOP.ObjectFlagsJustin Clark-Casey (justincc)1-3/+3
2010-08-10Removed abstract SetText method from EntityBase to make cleaner API.Mikko Pallari1-1/+1
Signed-off-by: Melanie <melanie@t-data.com>
2010-08-10On shift-copy of an object, set up a new physics actor (as appropriate) for ↵Justin Clark-Casey (justincc)1-19/+19
every copied prim, not just the root This addresses http://opensimulator.org/mantis/view.php?id=4295