diff options
3 files changed, 15 insertions, 15 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs b/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs index ad64b55..b9d38d0 100644 --- a/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs +++ b/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs | |||
@@ -78,6 +78,19 @@ namespace OpenSim.Region.Framework.Scenes | |||
78 | UnAckedBytes = 24, | 78 | UnAckedBytes = 24, |
79 | } | 79 | } |
80 | 80 | ||
81 | /// <summary> | ||
82 | /// This is for llGetRegionFPS | ||
83 | /// </summary> | ||
84 | public float LastReportedSimFPS | ||
85 | { | ||
86 | get { return lastReportedSimFPS; } | ||
87 | } | ||
88 | |||
89 | public float[] LastReportedSimStats | ||
90 | { | ||
91 | get { return lastReportedSimStats; } | ||
92 | } | ||
93 | |||
81 | // Sending a stats update every 3 seconds- | 94 | // Sending a stats update every 3 seconds- |
82 | private int statsUpdatesEveryMS = 3000; | 95 | private int statsUpdatesEveryMS = 3000; |
83 | private float statsUpdateFactor = 0; | 96 | private float statsUpdateFactor = 0; |
@@ -437,19 +450,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
437 | m_activeScripts = count; | 450 | m_activeScripts = count; |
438 | } | 451 | } |
439 | 452 | ||
440 | /// <summary> | ||
441 | /// This is for llGetRegionFPS | ||
442 | /// </summary> | ||
443 | public float getLastReportedSimFPS() | ||
444 | { | ||
445 | return lastReportedSimFPS; | ||
446 | } | ||
447 | |||
448 | public float[] getLastReportedSimStats() | ||
449 | { | ||
450 | return lastReportedSimStats; | ||
451 | } | ||
452 | |||
453 | public void AddPacketsStats(int inPackets, int outPackets, int unAckedBytes) | 453 | public void AddPacketsStats(int inPackets, int outPackets, int unAckedBytes) |
454 | { | 454 | { |
455 | AddInPackets(inPackets); | 455 | AddInPackets(inPackets); |
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index d7581cc..db3d403 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -6383,7 +6383,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
6383 | public LSL_Float llGetRegionFPS() | 6383 | public LSL_Float llGetRegionFPS() |
6384 | { | 6384 | { |
6385 | m_host.AddScriptLPS(1); | 6385 | m_host.AddScriptLPS(1); |
6386 | return World.StatsReporter.getLastReportedSimFPS(); | 6386 | return World.StatsReporter.LastReportedSimFPS; |
6387 | } | 6387 | } |
6388 | 6388 | ||
6389 | 6389 | ||
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs index 9aeb98e..bd97f76 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | |||
@@ -2470,7 +2470,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
2470 | CheckThreatLevel(ThreatLevel.Moderate, "osGetRegionStats"); | 2470 | CheckThreatLevel(ThreatLevel.Moderate, "osGetRegionStats"); |
2471 | m_host.AddScriptLPS(1); | 2471 | m_host.AddScriptLPS(1); |
2472 | LSL_List ret = new LSL_List(); | 2472 | LSL_List ret = new LSL_List(); |
2473 | float[] stats = World.StatsReporter.getLastReportedSimStats(); | 2473 | float[] stats = World.StatsReporter.LastReportedSimStats; |
2474 | 2474 | ||
2475 | for (int i = 0; i < 21; i++) | 2475 | for (int i = 0; i < 21; i++) |
2476 | { | 2476 | { |