49 lines
1.3 KiB
C#
49 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.IO;
|
|
using OpenSim.Framework.Console;
|
|
using OpenSim.Framework.Utilities;
|
|
|
|
namespace OpenSim.Grid.ScriptServer
|
|
{
|
|
public class ScriptServerMain : conscmd_callback
|
|
{
|
|
private readonly string m_logFilename = ("region-console.log");
|
|
internal RegionCommManager RegionScriptDaemon; // Listen for incoming from region
|
|
internal ScriptEngineManager ScriptEngines; // Loads scriptengines
|
|
private LogBase m_log;
|
|
|
|
public ScriptServerMain()
|
|
{
|
|
m_log = CreateLog();
|
|
|
|
RegionScriptDaemon = new RegionCommManager(this, m_log);
|
|
ScriptEngines = new ScriptEngineManager(this, m_log);
|
|
|
|
}
|
|
|
|
~ScriptServerMain()
|
|
{
|
|
}
|
|
|
|
protected LogBase CreateLog()
|
|
{
|
|
if (!Directory.Exists(Util.logDir()))
|
|
{
|
|
Directory.CreateDirectory(Util.logDir());
|
|
}
|
|
|
|
return new LogBase((Path.Combine(Util.logDir(), m_logFilename)), "Region", this, false);
|
|
}
|
|
|
|
public void RunCmd(string command, string[] cmdparams)
|
|
{
|
|
}
|
|
public void Show(string ShowWhat)
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|