Add "scripts stop" and "scripts start" console commands.
These will stop all running scripts and start all stopped scripts respectively. A stopped script does not save any events for later processing.0.7.2-post-fixes
parent
7d4e224620
commit
c404760731
|
@ -276,17 +276,25 @@ namespace OpenSim.Region.ScriptEngine.XEngine
|
||||||
"Synonym for scripts show command", HandleShowScripts);
|
"Synonym for scripts show command", HandleShowScripts);
|
||||||
|
|
||||||
MainConsole.Instance.Commands.AddCommand(
|
MainConsole.Instance.Commands.AddCommand(
|
||||||
"scripts", false, "scripts suspend", "scripts suspend", "Suspend all scripts",
|
"scripts", false, "scripts suspend", "scripts suspend", "Suspends all running scripts",
|
||||||
"Suspends all currently running scripts. This only suspends event delivery, it will not suspend a"
|
"Suspends all currently running scripts. This only suspends event delivery, it will not suspend a"
|
||||||
+ " script that is currently processing an event.\n"
|
+ " script that is currently processing an event.\n"
|
||||||
+ "Suspended scripts will continue to accumulate events but won't process them.",
|
+ "Suspended scripts will continue to accumulate events but won't process them.",
|
||||||
HandleSuspendScripts);
|
HandleSuspendScripts);
|
||||||
|
|
||||||
MainConsole.Instance.Commands.AddCommand(
|
MainConsole.Instance.Commands.AddCommand(
|
||||||
"scripts", false, "scripts resume", "scripts resume", "Resume all scripts",
|
"scripts", false, "scripts resume", "scripts resume", "Resumes all suspended scripts",
|
||||||
"Resumes all currently suspended scripts.\n"
|
"Resumes all currently suspended scripts.\n"
|
||||||
+ "Resumed scripts will process all events accumulated whilst suspended.",
|
+ "Resumed scripts will process all events accumulated whilst suspended.",
|
||||||
HandleResumeScripts);
|
HandleResumeScripts);
|
||||||
|
|
||||||
|
MainConsole.Instance.Commands.AddCommand(
|
||||||
|
"scripts", false, "scripts stop", "scripts stop", "Stops all running scripts",
|
||||||
|
HandleStopScripts);
|
||||||
|
|
||||||
|
MainConsole.Instance.Commands.AddCommand(
|
||||||
|
"scripts", false, "scripts start", "scripts start", "Starts all stopped scripts",
|
||||||
|
HandleStartScripts);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void HandleShowScripts(string module, string[] cmdparams)
|
public void HandleShowScripts(string module, string[] cmdparams)
|
||||||
|
@ -364,6 +372,44 @@ namespace OpenSim.Region.ScriptEngine.XEngine
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void HandleStartScripts(string module, string[] cmdparams)
|
||||||
|
{
|
||||||
|
lock (m_Scripts)
|
||||||
|
{
|
||||||
|
foreach (IScriptInstance instance in m_Scripts.Values)
|
||||||
|
{
|
||||||
|
if (!instance.Running)
|
||||||
|
{
|
||||||
|
instance.Start();
|
||||||
|
|
||||||
|
SceneObjectPart sop = m_Scene.GetSceneObjectPart(instance.ObjectID);
|
||||||
|
MainConsole.Instance.OutputFormat(
|
||||||
|
"Started {0}.{1}, item UUID {2}, prim UUID {3} @ {4}",
|
||||||
|
instance.PrimName, instance.ScriptName, instance.ItemID, instance.ObjectID, sop.AbsolutePosition);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void HandleStopScripts(string module, string[] cmdparams)
|
||||||
|
{
|
||||||
|
lock (m_Scripts)
|
||||||
|
{
|
||||||
|
foreach (IScriptInstance instance in m_Scripts.Values)
|
||||||
|
{
|
||||||
|
if (instance.Running)
|
||||||
|
{
|
||||||
|
instance.Stop(0);
|
||||||
|
|
||||||
|
SceneObjectPart sop = m_Scene.GetSceneObjectPart(instance.ObjectID);
|
||||||
|
MainConsole.Instance.OutputFormat(
|
||||||
|
"Stopped {0}.{1}, item UUID {2}, prim UUID {3} @ {4}",
|
||||||
|
instance.PrimName, instance.ScriptName, instance.ItemID, instance.ObjectID, sop.AbsolutePosition);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public void RemoveRegion(Scene scene)
|
public void RemoveRegion(Scene scene)
|
||||||
{
|
{
|
||||||
if (!m_Enabled)
|
if (!m_Enabled)
|
||||||
|
|
Loading…
Reference in New Issue