aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* implement osNpcStopMoveTo() to cancel any current move targetJustin Clark-Casey (justincc)2011-08-101-2/+2
|
* If object is an attachment, make llGetVel() return the avatar's speed rather ↵Justin Clark-Casey (justincc)2011-07-151-1/+0
| | | | | | than the object's own zero speed. As per http://opensimulator.org/mantis/view.php?id=5575
* Fatpack message on agent transfers: 1 message only (UpdateAgent) containing ↵Diva Canto2011-04-281-7/+6
| | | | 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.
* Removed a few more spurious appearance saves. When an avatarMic Bowman2011-01-251-12/+10
| | | | | | | enters a region the attachments module tries to update the appearance with attachments that are already part of the appearance. Just added a check to only save if the attachments weren't there before.
* reinstate IAttachmentsModule.UpdateAttachmentPosition() since this is being ↵Justin Clark-Casey (justincc)2010-12-141-0/+16
| | | | | | used by a 3rd party region module and contains non-obvious attachment specific code There are no functional changes. UpdateAttachmentPosition() is adapted to the new approach of only saving attachment state on logout
* Only perform the take object permissions check if an object is being ↵Justin Clark-Casey (justincc)2010-11-231-55/+50
| | | | attached directly from the scene, not from existing inventory
* Change the way attachments are persisted. Editing a worn attachment will nowMelanie2010-11-161-22/+12
| | | | | | | 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.
* Formatting cleanup.Jeff Ames2010-11-081-1/+1
|
* Detach attachments displaced by other attachmentsMelanie2010-11-081-4/+8
|
* Bunch of fixes that reduce the number of times appearanceMaster ScienceSim2010-10-291-19/+13
| | | | | and avatar data are sent. And the number of times they are stored.
* Major refactoring of appearance handling.Master ScienceSim2010-10-201-8/+8
| | | | | | | | | | | | | | | | | | | AvatarService -- add two new methods, GetAppearance and SetAppearance to get around the lossy encoding in AvatarData. Preseve the old functions to avoid changing the behavior for ROBUST services. AvatarAppearance -- major refactor, moved the various encoding methods used by AgentCircuitData, ClientAgentUpdate and ScenePresence into one location. Changed initialization. AvatarAttachments -- added a class specifically to handle attachments in preparation for additional functionality that will be needed for viewer 2. AvatarFactory -- removed a number of unused or methods duplicated in other locations. Moved in all appearance event handling from ScenePresence. Required a change to IClientAPI that propogated throughout all the IClientAPI implementations.
* A couple of more ways attachment point is sentLatif Khalifa2010-10-151-0/+8
| | | | Signed-off-by: Teravus Ovares (Dan Olivares) <teravus@gmail.com>
* Don't distroy attachments when using viewer 2.1+, strip multiple attachment dataLatif Khalifa2010-10-141-0/+4
|
* Formatting cleanup.Jeff Ames2010-10-041-1/+1
|
* Prevent dropping someone else's attachmentsMelanie2010-09-301-0/+3
|
* Changed SceneObjectGroup to store parts with the fast and thread-safe ↵John Hurliman2010-09-161-7/+3
| | | | MapAndArray collection
* Rename now protected method SetAttachmentInventoryStatus() to ↵Justin Clark-Casey (justincc)2010-09-131-4/+4
| | | | ShowAttachInUserInventory() to match ShowDetachInUserInventory()
* Remove IAttachmentsModule.SetAttachmentInventoryStatus() from public interfaceJustin Clark-Casey (justincc)2010-09-131-5/+13
| | | | No core module is calling and it makes more sense to call methods such as AttachObject() which attach both to the avatar and update inventory appropriately
* If attachment fails (e.g. because asset wasn't found) then don't try to set ↵Justin Clark-Casey (justincc)2010-09-131-4/+2
| | | | | | attachment as shown in inventory Doing this results in a null reference exception
* minor: Clean up log messages generated when an item is attachedJustin Clark-Casey (justincc)2010-09-131-2/+4
|
* Formatting cleanup.Jeff Ames2010-09-121-12/+12
|
* First pass at cleaning up thread safety in EntityManager and SceneGraphJohn Hurliman2010-09-101-1/+1
|
* Fix yet another cause of "Ghost attachments"Melanie Thielker2010-09-061-3/+12
|
* refactor: move SOG.AttachToAgent() into AttachmentsModuleJustin Clark-Casey (justincc)2010-09-011-7/+74
|
* refactor: change AttachmentsModule.AttachObject to use sp.GetAttachments ↵Justin Clark-Casey (justincc)2010-08-311-9/+5
| | | | rather than filter sp.Attachments list directly
* refactor: Move Scene.Inventory.UpdateKnownItem() into Attachments module ↵Justin Clark-Casey (justincc)2010-08-261-2/+58
| | | | since this appears to relate solely to attachments
* refactor: break out attachment position change code in ↵Justin Clark-Casey (justincc)2010-08-261-1/+20
| | | | | | Scene.UpdatePrimPosition() and move into AttachmentsModule This allows region modules to change attachment positions.
* Improve consistency of locking for SOG.m_parts in order to avoid race ↵Justin Clark-Casey (justincc)2010-08-261-1/+1
| | | | conditions in linking and unlinking
* Change the (hackish) constant to match the changed enum for attachsMelanie Thielker2010-08-071-2/+2
|
* move attachment subscription events into AttachmentsModule from scene.Justin Clark-Casey (justincc)2010-07-301-1/+22
| | | | restored to some heavy casting in order to preserve RegionCombinerModule semantics, pending better events.
* convert attachments module from old region module style to newJustin Clark-Casey (justincc)2010-07-301-19/+25
|
* Detach attachments displaced by other attachmentsMelanie Thielker2010-07-141-5/+19
|
* Major attachments cleanup. Remove unused AttachObject ClientView methodMelanie2010-07-141-54/+47
| | | | | Clean up use of AttachObject throughout, reduce number of overloads and number of parameters
* Remove useless quaternion parameter from AttachObject sigMelanie Thielker2010-07-141-4/+4
|
* Fixes the long-standing RegionUp bug! Plus lots of other cleanups related to ↵Diva Canto2010-06-131-1/+1
| | | | neighbours.
* Bug fix on attachments: attach->drop->attach works now.Diva Canto2010-06-091-21/+29
|
* Reverting that last permissions check upon drop. Looks like all dropped ↵Diva Canto2010-06-091-10/+5
| | | | attachments are deleted from inventory.
* Bug fix on attachments: don't delete the item from inventory when it's ↵Diva Canto2010-06-091-4/+9
| | | | dropped on the ground.
* Avoid duplicate script resumes. Move resume calls to more logical placesMelanie Thielker2010-04-191-1/+1
|
* All scripts are now created suspended and are only unsuspended when the objectMelanie2010-04-191-1/+2
| | | | | | is fully rezzed and all scripts in it are instantiated. This ensures that link messages will not be lost on rez/region crossing and makes heavily scripted objects reliable.
* refactor: move DeatchObject() into the AttachmentsModuleJustin Clark-Casey (justincc)2010-04-171-0/+10
|
* refactor: crudely move DetachSingleAttachmentToGround() over to the ↵Justin Clark-Casey (justincc)2010-04-161-0/+32
| | | | AttachmentsModule
* refactor: crudely move the RezMultipleAttachments() method into the ↵Justin Clark-Casey (justincc)2010-04-161-0/+12
| | | | AttachmentsModule
* Renamed TryGetAvatar to TryGetScenePresence on SceneManager, SceneBase, ↵Dan Lake2010-03-191-4/+4
| | | | Scene and SceneGraph. This was the only change in this patch to keep it isolated from other recent changes to the same set of files.
* refactor: Move another RezSingleAttachment() from Scene.Inventory to ↵Justin Clark-Casey (justincc)2010-03-121-1/+30
| | | | AttachmentsModule
* refactor: move RezSingleAttachmentFromInventory() from SceneGraph to ↵Justin Clark-Casey (justincc)2010-03-121-0/+46
| | | | AttachmentsModule
* refactor: move client invoked AttachObject from SceneGraph to AttachmentsModuleJustin Clark-Casey (justincc)2010-03-121-1/+31
|
* Formatting cleanup. Add copyright notices.Jeff Ames2010-03-101-4/+4
|
* refactor: Move DetachSingleAttachmentToInv to region moduleJustin Clark-Casey (justincc)2010-03-061-15/+56
| | | | need to rationalize method names later
* refactor: move another AttachObject methodJustin Clark-Casey (justincc)2010-03-051-1/+46
|