aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IAvatarService.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-7/+8
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-9/+37
|
* Exclude temp attachemnts from being sent to the avatar serviceMelanie2012-08-141-1/+2
|
* In SetAttachment, if the existing attachment has no asset id then carry on ↵Justin Clark-Casey (justincc)2011-09-061-3/+1
| | | | | | | | | | | rather than abort. When a user logs in, the attachment item ids are pulled from persistence in the Avatars table. However, the asset ids are not saved. When the avatar enters a simulator the attachments are set again. If we simply perform an item check then the asset ids (which are now present) are never set, and NPC attachments later fail unless the attachment is detached and reattached. Hopefully resolves part of http://opensimulator.org/mantis/view.php?id=5653
* Get rid of AvatarAppearance.Owner to simplify the code.Justin Clark-Casey (justincc)2011-08-021-2/+2
| | | | This is not used for anything - appearances are always properties of objects with ids (ScenePresence, AgentCircuitData) and just has the potential to get out of sync when the appearance is cloned.
* Fixed: ToAvatarAppearance wasn't retrieving the AvatarHeight.Diva Canto2010-10-301-0/+3
|
* Fix logins and avatar appearance. Contains a Migration. May contain nuts.Melanie2010-10-301-28/+77
| | | | | | This will cause visual params to be persisted along with worn items. With this, alpha and tattoo laters will be saved. Multiple layers MAY work, but not tested because I don't use Viewer 2.
* This commit fixes all the appearance related null refs. Still can't log in,Melanie2010-10-301-51/+66
| | | | client displays a blank error box.
* READ CAREFULLY!!! This is a BROKEN commit. It is UNTESTED and INCOMPLETE.Melanie2010-10-301-54/+78
| | | | | | | | | It contains a major interface version bump and will NOT work with earlier grid services. This is preliminary work that will lead to layers support. Rest appearance services are commented out completely, they will have to be adapted by someone who actually uses them. Remote admin is working, but has no layers support. There is no layers support in the database. Login likely won't work. You have been warned.
* First attempt to get multiple attachments working to support viewer2.Master ScienceSim2010-10-211-11/+5
| | | | | | | The attachment code appears to work correctly for 1.23 viewers so, in spite of some big changes in the internal representation, there don't appear to be regressions. That being said, I still can't get a viewer2 avatar to show correctly.
* Major refactoring of appearance handling.Master ScienceSim2010-10-201-7/+25
| | | | | | | | | | | | | | | | | | | 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.
* Fixed more appearance woes that showed up using remote connectors. ↵Diva Canto2010-01-121-1/+1
| | | | Appearance is now being passed with AgentCircuitData, as it should be.
* Fixed a couple of bugs with Appearance. Appearance is all good now.Diva Canto2010-01-111-43/+80
|
* Some work on avatar service. Retrieval and storage doneMelanie2010-01-041-0/+4
|
* * Converters from new AvatarData to old AvatarAppearance and vice-versaDiva Canto2010-01-021-1/+94
| | | | * Login now retrieves AvatarData from AvatarService and sends it off with the agent data
* Changed the rest of references to IAvatarData to AvatarDataDiva Canto2010-01-021-2/+7
|
* Change to a classMelanie2010-01-021-5/+7
|
* Strip the lindenisms from the interfaceMelanie2010-01-021-8/+2
|
* Clarifying comments.Diva Canto2010-01-021-1/+7
|
* First stab at avatar data. Very genericMelanie2010-01-021-7/+16
|
* Minor interface changesMelanie2010-01-021-8/+5
|
* * Forgotten ILibraryService from yesterdayDiva Canto2010-01-021-0/+94
* New IAvatarService -- first pass