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!0.6.0-stable
parent
5861084e0b
commit
f512502e51
|
@ -1213,7 +1213,7 @@ namespace OpenSim.Region.ScriptEngine.Common
|
||||||
m_host.AddScriptLPS(1);
|
m_host.AddScriptLPS(1);
|
||||||
// This function has been deprecated
|
// This function has been deprecated
|
||||||
// see http://www.lslwiki.net/lslwiki/wakka.php?wakka=llSound
|
// see http://www.lslwiki.net/lslwiki/wakka.php?wakka=llSound
|
||||||
NotImplemented("llSound");
|
Deprecated("llSound");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void llPlaySound(string sound, double volume)
|
public void llPlaySound(string sound, double volume)
|
||||||
|
@ -3449,7 +3449,7 @@ namespace OpenSim.Region.ScriptEngine.Common
|
||||||
public void llRemoteLoadScript()
|
public void llRemoteLoadScript()
|
||||||
{
|
{
|
||||||
m_host.AddScriptLPS(1);
|
m_host.AddScriptLPS(1);
|
||||||
ShoutError("llRemoteLoadScript: deprecated");
|
Deprecated("llRemoteLoadScript");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void llSetRemoteScriptAccessPin(int pin)
|
public void llSetRemoteScriptAccessPin(int pin)
|
||||||
|
@ -3559,7 +3559,7 @@ namespace OpenSim.Region.ScriptEngine.Common
|
||||||
public void llXorBase64Strings()
|
public void llXorBase64Strings()
|
||||||
{
|
{
|
||||||
m_host.AddScriptLPS(1);
|
m_host.AddScriptLPS(1);
|
||||||
throw new Exception("Command deprecated! Use llXorBase64StringsCorrect instead.");
|
Deprecated("llXorBase64Strings");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void llRemoteDataSetRegion()
|
public void llRemoteDataSetRegion()
|
||||||
|
@ -5212,6 +5212,12 @@ namespace OpenSim.Region.ScriptEngine.Common
|
||||||
throw new NotImplementedException("Command not implemented: " + command);
|
throw new NotImplementedException("Command not implemented: " + command);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void Deprecated(string command)
|
||||||
|
{
|
||||||
|
m_host.AddScriptLPS(1);
|
||||||
|
throw new Exception("Command deprecated: " + command);
|
||||||
|
}
|
||||||
|
|
||||||
private void LSLError(string msg)
|
private void LSLError(string msg)
|
||||||
{
|
{
|
||||||
m_host.AddScriptLPS(1);
|
m_host.AddScriptLPS(1);
|
||||||
|
|
Loading…
Reference in New Issue