diff options
author | Tedd Hansen | 2008-02-01 23:36:36 +0000 |
---|---|---|
committer | Tedd Hansen | 2008-02-01 23:36:36 +0000 |
commit | d02a90823f2873f1b4de63062e3909d03a5a91fa (patch) | |
tree | cb0d8f79fd36bec98bbac39c1185ee40c75e7c6d /OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |
parent | SCRIPT SUPPORT IS STILL BROKEN. (diff) | |
download | opensim-SC-d02a90823f2873f1b4de63062e3909d03a5a91fa.zip opensim-SC-d02a90823f2873f1b4de63062e3909d03a5a91fa.tar.gz opensim-SC-d02a90823f2873f1b4de63062e3909d03a5a91fa.tar.bz2 opensim-SC-d02a90823f2873f1b4de63062e3909d03a5a91fa.tar.xz |
SCRIPTING STILL BROKEN
Added comments and regions, restructured code
Changed a lot of AppDomain junk from console from using Console.Write to Log.Verbose and set it to #if DEBUG
All modules should now refresh their configuration runtime
Made all logging in ScriptEngine.Common get script name from actual engine
Renamed LSLLongCmdHandler to AsyncLSLCommandManager
Added auto-recover with 5 sec throttle for new MaintenanceThread
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index df049d8..bbf301d 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |||
@@ -61,7 +61,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
61 | m_localID = localID; | 61 | m_localID = localID; |
62 | m_itemID = itemID; | 62 | m_itemID = itemID; |
63 | 63 | ||
64 | //MainLog.Instance.Notice("ScriptEngine", "LSL_BaseClass.Start() called. Hosted by [" + m_host.Name + ":" + m_host.UUID + "@" + m_host.AbsolutePosition + "]"); | 64 | //MainLog.Instance.Notice(ScriptEngineName, "LSL_BaseClass.Start() called. Hosted by [" + m_host.Name + ":" + m_host.UUID + "@" + m_host.AbsolutePosition + "]"); |
65 | } | 65 | } |
66 | 66 | ||
67 | private DateTime m_timer = DateTime.Now; | 67 | private DateTime m_timer = DateTime.Now; |
@@ -1038,7 +1038,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1038 | public void llSetTimerEvent(double sec) | 1038 | public void llSetTimerEvent(double sec) |
1039 | { | 1039 | { |
1040 | // Setting timer repeat | 1040 | // Setting timer repeat |
1041 | m_ScriptEngine.m_LSLLongCmdHandler.SetTimerEvent(m_localID, m_itemID, sec); | 1041 | m_ScriptEngine.m_ASYNCLSLCommandManager.SetTimerEvent(m_localID, m_itemID, sec); |
1042 | } | 1042 | } |
1043 | 1043 | ||
1044 | public void llSleep(double sec) | 1044 | public void llSleep(double sec) |