diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneBase.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneBase.cs | 71 |
1 files changed, 34 insertions, 37 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneBase.cs b/OpenSim/Region/Environment/Scenes/SceneBase.cs index 435dc8b..d9dc1da 100644 --- a/OpenSim/Region/Environment/Scenes/SceneBase.cs +++ b/OpenSim/Region/Environment/Scenes/SceneBase.cs | |||
@@ -40,11 +40,6 @@ namespace OpenSim.Region.Environment.Scenes | |||
40 | { | 40 | { |
41 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 41 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
42 | 42 | ||
43 | /// <summary> | ||
44 | /// XXX These two methods are very temporary | ||
45 | /// </summary> | ||
46 | protected Dictionary<LLUUID, string> capsPaths = new Dictionary<LLUUID, string>(); | ||
47 | |||
48 | #region Events | 43 | #region Events |
49 | 44 | ||
50 | public event restart OnRestart; | 45 | public event restart OnRestart; |
@@ -55,38 +50,41 @@ namespace OpenSim.Region.Environment.Scenes | |||
55 | 50 | ||
56 | private readonly ClientManager m_clientManager = new ClientManager(); | 51 | private readonly ClientManager m_clientManager = new ClientManager(); |
57 | 52 | ||
53 | public ClientManager ClientManager | ||
54 | { | ||
55 | get { return m_clientManager; } | ||
56 | } | ||
57 | |||
58 | protected ulong m_regionHandle; | ||
59 | protected string m_regionName; | ||
60 | protected RegionInfo m_regInfo; | ||
61 | |||
58 | //public TerrainEngine Terrain; | 62 | //public TerrainEngine Terrain; |
59 | public ITerrainChannel Heightmap; | 63 | public ITerrainChannel Heightmap; |
60 | 64 | ||
61 | public ILandChannel LandChannel; | 65 | public ILandChannel LandChannel; |
62 | private AssetCache m_assetCache; | ||
63 | 66 | ||
64 | |||
65 | protected string m_datastore; | ||
66 | protected EventManager m_eventManager; | 67 | protected EventManager m_eventManager; |
67 | 68 | ||
68 | private uint m_nextLocalId = 8880000; | ||
69 | protected RegionInfo m_regInfo; | ||
70 | protected ulong m_regionHandle; | ||
71 | protected string m_regionName; | ||
72 | |||
73 | protected RegionStatus m_regStatus; | ||
74 | |||
75 | public EventManager EventManager | 69 | public EventManager EventManager |
76 | { | 70 | { |
77 | get { return m_eventManager; } | 71 | get { return m_eventManager; } |
78 | } | 72 | } |
79 | 73 | ||
74 | |||
75 | protected string m_datastore; | ||
76 | |||
77 | private uint m_nextLocalId = 8880000; | ||
78 | |||
79 | private AssetCache m_assetCache; | ||
80 | |||
80 | public AssetCache AssetCache | 81 | public AssetCache AssetCache |
81 | { | 82 | { |
82 | get { return m_assetCache; } | 83 | get { return m_assetCache; } |
83 | set { m_assetCache = value; } | 84 | set { m_assetCache = value; } |
84 | } | 85 | } |
85 | 86 | ||
86 | public ClientManager ClientManager | 87 | protected RegionStatus m_regStatus; |
87 | { | ||
88 | get { return m_clientManager; } | ||
89 | } | ||
90 | 88 | ||
91 | public RegionStatus Region_Status | 89 | public RegionStatus Region_Status |
92 | { | 90 | { |
@@ -143,8 +141,6 @@ namespace OpenSim.Region.Environment.Scenes | |||
143 | 141 | ||
144 | #endregion | 142 | #endregion |
145 | 143 | ||
146 | #region IScene Members | ||
147 | |||
148 | /// <summary> | 144 | /// <summary> |
149 | /// | 145 | /// |
150 | /// </summary> | 146 | /// </summary> |
@@ -159,18 +155,6 @@ namespace OpenSim.Region.Environment.Scenes | |||
159 | get { return m_nextLocalId++; } | 155 | get { return m_nextLocalId++; } |
160 | } | 156 | } |
161 | 157 | ||
162 | public string GetCapsPath(LLUUID agentId) | ||
163 | { | ||
164 | if (capsPaths.ContainsKey(agentId)) | ||
165 | { | ||
166 | return capsPaths[agentId]; | ||
167 | } | ||
168 | |||
169 | return null; | ||
170 | } | ||
171 | |||
172 | #endregion | ||
173 | |||
174 | #region admin stuff | 158 | #region admin stuff |
175 | 159 | ||
176 | /// <summary> | 160 | /// <summary> |
@@ -189,7 +173,6 @@ namespace OpenSim.Region.Environment.Scenes | |||
189 | { | 173 | { |
190 | return false; | 174 | return false; |
191 | } | 175 | } |
192 | |||
193 | public abstract bool OtherRegionUp(RegionInfo thisRegion); | 176 | public abstract bool OtherRegionUp(RegionInfo thisRegion); |
194 | 177 | ||
195 | public virtual string GetSimulatorVersion() | 178 | public virtual string GetSimulatorVersion() |
@@ -212,10 +195,24 @@ namespace OpenSim.Region.Environment.Scenes | |||
212 | } | 195 | } |
213 | catch (Exception e) | 196 | catch (Exception e) |
214 | { | 197 | { |
215 | m_log.Error("[SCENE]: SceneBase.cs: Close() - Failed with exception " + e); | 198 | m_log.Error("[SCENE]: SceneBase.cs: Close() - Failed with exception " + e.ToString()); |
216 | } | 199 | } |
217 | } | 200 | } |
218 | 201 | ||
219 | #endregion | 202 | #endregion |
203 | |||
204 | /// <summary> | ||
205 | /// XXX These two methods are very temporary | ||
206 | /// </summary> | ||
207 | protected Dictionary<LLUUID, string> capsPaths = new Dictionary<LLUUID, string>(); | ||
208 | public string GetCapsPath(LLUUID agentId) | ||
209 | { | ||
210 | if (capsPaths.ContainsKey(agentId)) | ||
211 | { | ||
212 | return capsPaths[agentId]; | ||
213 | } | ||
214 | |||
215 | return null; | ||
216 | } | ||
220 | } | 217 | } |
221 | } \ No newline at end of file | 218 | } |