aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-04-09 15:28:51 +0000
committerJustin Clarke Casey2008-04-09 15:28:51 +0000
commitf512502e51477d361e85e461ea5e53f26dfc8cd4 (patch)
treeefafbc72b771d5511fa9af3ea10d731da5f81194 /OpenSim/Region/ScriptEngine
parentmake this a class (diff)
downloadopensim-SC_OLD-f512502e51477d361e85e461ea5e53f26dfc8cd4.zip
opensim-SC_OLD-f512502e51477d361e85e461ea5e53f26dfc8cd4.tar.gz
opensim-SC_OLD-f512502e51477d361e85e461ea5e53f26dfc8cd4.tar.bz2
opensim-SC_OLD-f512502e51477d361e85e461ea5e53f26dfc8cd4.tar.xz
From: Kurt Taylor <krtaylor@us.ibm.com>
"a patch to add a deprecated call to throw an LSL deprecated specific exception, and the associated code cleanup in the functions." Thanks!
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs12
1 files changed, 9 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
index 9567d80..1968f8e 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
@@ -1213,7 +1213,7 @@ namespace OpenSim.Region.ScriptEngine.Common
1213 m_host.AddScriptLPS(1); 1213 m_host.AddScriptLPS(1);
1214 // This function has been deprecated 1214 // This function has been deprecated
1215 // see http://www.lslwiki.net/lslwiki/wakka.php?wakka=llSound 1215 // see http://www.lslwiki.net/lslwiki/wakka.php?wakka=llSound
1216 NotImplemented("llSound"); 1216 Deprecated("llSound");
1217 } 1217 }
1218 1218
1219 public void llPlaySound(string sound, double volume) 1219 public void llPlaySound(string sound, double volume)
@@ -3449,7 +3449,7 @@ namespace OpenSim.Region.ScriptEngine.Common
3449 public void llRemoteLoadScript() 3449 public void llRemoteLoadScript()
3450 { 3450 {
3451 m_host.AddScriptLPS(1); 3451 m_host.AddScriptLPS(1);
3452 ShoutError("llRemoteLoadScript: deprecated"); 3452 Deprecated("llRemoteLoadScript");
3453 } 3453 }
3454 3454
3455 public void llSetRemoteScriptAccessPin(int pin) 3455 public void llSetRemoteScriptAccessPin(int pin)
@@ -3559,7 +3559,7 @@ namespace OpenSim.Region.ScriptEngine.Common
3559 public void llXorBase64Strings() 3559 public void llXorBase64Strings()
3560 { 3560 {
3561 m_host.AddScriptLPS(1); 3561 m_host.AddScriptLPS(1);
3562 throw new Exception("Command deprecated! Use llXorBase64StringsCorrect instead."); 3562 Deprecated("llXorBase64Strings");
3563 } 3563 }
3564 3564
3565 public void llRemoteDataSetRegion() 3565 public void llRemoteDataSetRegion()
@@ -5212,6 +5212,12 @@ namespace OpenSim.Region.ScriptEngine.Common
5212 throw new NotImplementedException("Command not implemented: " + command); 5212 throw new NotImplementedException("Command not implemented: " + command);
5213 } 5213 }
5214 5214
5215 private void Deprecated(string command)
5216 {
5217 m_host.AddScriptLPS(1);
5218 throw new Exception("Command deprecated: " + command);
5219 }
5220
5215 private void LSLError(string msg) 5221 private void LSLError(string msg)
5216 { 5222 {
5217 m_host.AddScriptLPS(1); 5223 m_host.AddScriptLPS(1);