diff options
author | MW | 2008-02-04 12:04:02 +0000 |
---|---|---|
committer | MW | 2008-02-04 12:04:02 +0000 |
commit | 755ad9e3e0447b60299b08a18624064d1d64141b (patch) | |
tree | 89859180b5ba7ef47defbf6a1d6640177ecb1326 /OpenSim/Region/Environment/Scenes/AvatarAppearance.cs | |
parent | * Whole buncha stuff. (diff) | |
download | opensim-SC_OLD-755ad9e3e0447b60299b08a18624064d1d64141b.zip opensim-SC_OLD-755ad9e3e0447b60299b08a18624064d1d64141b.tar.gz opensim-SC_OLD-755ad9e3e0447b60299b08a18624064d1d64141b.tar.bz2 opensim-SC_OLD-755ad9e3e0447b60299b08a18624064d1d64141b.tar.xz |
First part of avatar persistence, currently only really works in standalone mode (with accounts_authenticate set to true), it also only currently has a mysql database connector. (sqlite one will follow soon). It also uses the tribalmedia database system, so this needs checking to see if the old problems with mono have been fixed.
To use, see the appearance section in opensim.ini.example, set "persist = true", then add the correct connection string for your database.(see mysql-AvatarAppearance.sql in share folder for a example of the table mysql table structure).
This could possible be used in a very small grid, but would mean each region server would need to connect to the same mysql database.
But the work to move the code to one of the grid servers shouldn't be too much.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/AvatarAppearance.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/AvatarAppearance.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/AvatarAppearance.cs b/OpenSim/Region/Environment/Scenes/AvatarAppearance.cs index 1583124..b54f777 100644 --- a/OpenSim/Region/Environment/Scenes/AvatarAppearance.cs +++ b/OpenSim/Region/Environment/Scenes/AvatarAppearance.cs | |||
@@ -35,8 +35,20 @@ namespace OpenSim.Region.Environment.Scenes | |||
35 | public class AvatarAppearance | 35 | public class AvatarAppearance |
36 | { | 36 | { |
37 | protected LLUUID m_scenePresenceID; | 37 | protected LLUUID m_scenePresenceID; |
38 | |||
39 | public LLUUID ScenePresenceID | ||
40 | { | ||
41 | get { return m_scenePresenceID; } | ||
42 | set { m_scenePresenceID = value; } | ||
43 | } | ||
38 | protected int m_wearablesSerial = 1; | 44 | protected int m_wearablesSerial = 1; |
39 | 45 | ||
46 | public int WearablesSerial | ||
47 | { | ||
48 | get { return m_wearablesSerial; } | ||
49 | set { m_wearablesSerial = value; } | ||
50 | } | ||
51 | |||
40 | protected byte[] m_visualParams; | 52 | protected byte[] m_visualParams; |
41 | 53 | ||
42 | public byte[] VisualParams | 54 | public byte[] VisualParams |