aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/SimStats.cs
diff options
context:
space:
mode:
authorTeravus Ovares2009-01-03 03:30:03 +0000
committerTeravus Ovares2009-01-03 03:30:03 +0000
commite9cef70f892bfbf4aad0e4471a958367766d849a (patch)
tree397e078977b430526a2f04041e0dfb9a5fb99156 /OpenSim/Framework/SimStats.cs
parentSplit agent updates into two messages: full update and position+camera update... (diff)
downloadopensim-SC_OLD-e9cef70f892bfbf4aad0e4471a958367766d849a.zip
opensim-SC_OLD-e9cef70f892bfbf4aad0e4471a958367766d849a.tar.gz
opensim-SC_OLD-e9cef70f892bfbf4aad0e4471a958367766d849a.tar.bz2
opensim-SC_OLD-e9cef70f892bfbf4aad0e4471a958367766d849a.tar.xz
* Updates the sim stats module. Cleans out some of the rot.
* Adds a prototype web stats module which is disabled by default. It's functional with one report right now, however, the database structure may change, so I don't recommend enabling this to keep actual stats right now. I'll let you know when it's safe. * Adds Prototype for ajaxy web content * removed a warning or two.
Diffstat (limited to 'OpenSim/Framework/SimStats.cs')
-rw-r--r--OpenSim/Framework/SimStats.cs9
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Framework/SimStats.cs b/OpenSim/Framework/SimStats.cs
index c77d0d4..865dee2 100644
--- a/OpenSim/Framework/SimStats.cs
+++ b/OpenSim/Framework/SimStats.cs
@@ -72,11 +72,18 @@ namespace OpenSim.Framework
72 get { return m_objectCapacity; } 72 get { return m_objectCapacity; }
73 } 73 }
74 private uint m_objectCapacity; 74 private uint m_objectCapacity;
75
76 public OpenMetaverse.UUID RegionUUID
77 {
78 get { return regionUUID;}
79 }
80 private OpenMetaverse.UUID regionUUID;
75 81
76 public SimStats( 82 public SimStats(
77 uint regionX, uint regionY, uint regionFlags, uint objectCapacity, 83 uint regionX, uint regionY, uint regionFlags, uint objectCapacity,
78 SimStatsPacket.RegionBlock regionBlock, SimStatsPacket.StatBlock[] statsBlock) 84 SimStatsPacket.RegionBlock regionBlock, SimStatsPacket.StatBlock[] statsBlock, OpenMetaverse.UUID pRUUID)
79 { 85 {
86 regionUUID = pRUUID;
80 m_regionX = regionX; 87 m_regionX = regionX;
81 m_regionY = regionY; 88 m_regionY = regionY;
82 m_regionFlags = regionFlags; 89 m_regionFlags = regionFlags;