mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 14:16:07 +08:00
Create a method to force the script engine to save state from outside
This commit is contained in:
@@ -50,5 +50,7 @@ namespace OpenSim.Region.Framework.Interfaces
|
||||
void ResumeScript(UUID itemID);
|
||||
|
||||
ArrayList GetScriptErrors(UUID itemID);
|
||||
|
||||
void SaveAllState();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -393,11 +393,8 @@ namespace OpenSim.Region.ScriptEngine.XEngine
|
||||
return 0;
|
||||
}
|
||||
|
||||
public object DoMaintenance(object p)
|
||||
public void SaveAllState()
|
||||
{
|
||||
object[] parms = (object[])p;
|
||||
int sleepTime = (int)parms[0];
|
||||
|
||||
foreach (IScriptInstance inst in m_Scripts.Values)
|
||||
{
|
||||
if (inst.EventTime() > m_EventLimit)
|
||||
@@ -407,6 +404,14 @@ namespace OpenSim.Region.ScriptEngine.XEngine
|
||||
inst.Start();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public object DoMaintenance(object p)
|
||||
{
|
||||
object[] parms = (object[])p;
|
||||
int sleepTime = (int)parms[0];
|
||||
|
||||
SaveAllState();
|
||||
|
||||
System.Threading.Thread.Sleep(sleepTime);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user