aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Modules/AvatarFactory (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-05-28Formatting cleanup.Jeff Ames1-2/+2
2008-05-25Update svn properties. Formatting cleanup.Jeff Ames1-5/+5
2008-05-22don't trust appearance assetid, instead do an inventorySean Dague1-31/+52
lookup any time we get it from the server. This should preventent unwearable appearance.
2008-05-22catch case where avatar might have been child agentSean Dague1-1/+6
2008-05-21Clean out some crufty in AvatarFactoryModule Sean Dague1-180/+6
Fix RequestUpdateInventoryItem so that asset changes generate a new asset, which is needed for editing appearance to do the right thing. Persistant appearance seems to work after this, except you need to rebake textures some times.
2008-05-21this removes use of the mapper for wearables, and I can confirm thingsSean Dague1-0/+5
get saved to the database. There are still issues on wearing things after a cleared cache that I'm looking at now.
2008-05-20attempt to fix mysql mapper usageSean Dague1-1/+7
2008-05-19fix crash in standalone mode for initial appearance setupSean Dague1-1/+4
2008-05-19i can haz pantz?Sean Dague1-101/+103
You sure can. This change set restores pants (and the rest of the default appearance) in grid mode. The root issue had to do with serializing multi-faced textures to the grid server. This also restores the lookup path through the avatar factory module, as that seems the reasonable place to have it live. Some clean up patches are coming later as well, plus testing on standalone, but this should be in a good kicking around state for grid users.
2008-05-18Formatting cleanup, minor refactoring. Fixed some comparisons of value ↵Jeff Ames1-4/+4
types and null.
2008-05-17while this doesn't fix the initial no pants issue in grid (which still ↵Sean Dague1-28/+41
baffles me) it does make setting appearance in grid stick.
2008-05-16move AppearanceTableMapper to OpenSim.Data.Base. The mapperSean Dague1-241/+0
stuff should probably be collapsed soon, as it takes up 4 assemblies now.
2008-05-16Formatting cleanup.Jeff Ames2-9/+9
2008-05-16appearance now survives logout. Tommorrow will involve movingSean Dague1-29/+19
the MSSQL and MYSQL mappers back in under datastores and looking at doing gid bits for this
2008-05-15minor refactor of some properties for readabilitySean Dague2-6/+6
2008-05-08* Reduced sleep durations in a number of files.Adam Frisby1-1/+2
2008-05-03* Refactor: Renaming item and folder tree search methods to have Find*() ↵Justin Clarke Casey1-1/+2
prefixes
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby3-35/+33
(this took a while to run).
2008-04-17Update svn properties. Add copyright info to some source files.Jeff Ames1-2/+29
2008-04-07Refactor InventoryItemBase to do the following:Sean Dague1-1/+1
* wrap fields as Properties * rename some fields/properties to more sensible names * set style to PropName to match more standard C# approach
2008-04-02changing more references to OpenSim.DataSean Dague2-3/+3
2008-04-01a few small changesMW1-2/+2
2008-03-31Fixed typo in AvatarFactoryModule.csJeff Ames1-1/+1
2008-03-30* Added competely untested MSSQLMapperlbsa711-2/+10
* Added the new mapper to the mapper factory * Made choice of mapper configurable * This means, in hteory, that we can persist avatar appearance on MSSQL as well
2008-03-26Committed patch from Lulurun to fix Mantis 817. Thanks LulurunJohan Berntsson1-2/+2
2008-03-25Moved Avatar appearance Factory to its own project so that the reference to ↵MW3-0/+615
MySQLDatabaseMapper could be removed from Region.Environment. Added a using OpenSim.Framework.Data statement to MySQLDatabaseMapper , to try to fix the build problem that has been reported on the mailing list.