From d104b751168fdea758303751c19c2adff5db4e9a Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 14 May 2008 11:42:09 +0000 Subject: From: Kurt Taylor More scipt engine cleanup - removed not needed or improper use of NotImplemented and Console.WriteLine --- .../ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 42 ++-------------------- 1 file changed, 2 insertions(+), 40 deletions(-) (limited to 'OpenSim') diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index a061788..78ae587 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs @@ -849,7 +849,7 @@ namespace OpenSim.Region.ScriptEngine.Common public LSL_Types.LSLInteger llGetStatus(int status) { m_host.AddScriptLPS(1); - Console.WriteLine(m_host.UUID.ToString() + " status is " + m_host.GetEffectiveObjectFlags().ToString()); + // Console.WriteLine(m_host.UUID.ToString() + " status is " + m_host.GetEffectiveObjectFlags().ToString()); switch (status) { case BuiltIn_Commands_BaseClass.STATUS_PHYSICS: @@ -896,7 +896,6 @@ namespace OpenSim.Region.ScriptEngine.Common NotImplemented("llGetStatus - STATUS_SANDBOX"); return 0; } - NotImplemented("llGetStatus - Unknown Status parameter"); return 0; } @@ -965,10 +964,6 @@ namespace OpenSim.Region.ScriptEngine.Common part.UpdateTexture(tex); return; } - else - { - NotImplemented("llSetColor"); - } } public double llGetAlpha(int face) @@ -1022,10 +1017,6 @@ namespace OpenSim.Region.ScriptEngine.Common part.UpdateTexture(tex); return; } - else - { - NotImplemented("llSetAlpha"); - } } public LSL_Types.Vector3 llGetColor(int face) @@ -1052,7 +1043,6 @@ namespace OpenSim.Region.ScriptEngine.Common } else { - NotImplemented("llGetColor"); return new LSL_Types.Vector3(); } } @@ -1098,10 +1088,6 @@ namespace OpenSim.Region.ScriptEngine.Common part.UpdateTexture(tex); return; } - else - { - NotImplemented("llSetTexture"); - } } public void llScaleTexture(double u, double v, int face) @@ -1138,10 +1124,6 @@ namespace OpenSim.Region.ScriptEngine.Common part.UpdateTexture(tex); return; } - else - { - NotImplemented("llScaleTexture"); - } } public void llOffsetTexture(double u, double v, int face) @@ -1177,10 +1159,6 @@ namespace OpenSim.Region.ScriptEngine.Common part.UpdateTexture(tex); return; } - else - { - NotImplemented("llOffsetTexture"); - } } public void llRotateTexture(double rotation, int face) @@ -1213,10 +1191,6 @@ namespace OpenSim.Region.ScriptEngine.Common part.UpdateTexture(tex); return; } - else - { - NotImplemented("llRotateTexture"); - } } public string llGetTexture(int face) @@ -1235,7 +1209,6 @@ namespace OpenSim.Region.ScriptEngine.Common } else { - NotImplemented("llGetTexture"); return String.Empty; } } @@ -2452,10 +2425,6 @@ namespace OpenSim.Region.ScriptEngine.Common } return; } - else - { - NotImplemented("llSetLinkColor"); - } } public void llCreateLink(string target, int parent) @@ -2642,10 +2611,7 @@ namespace OpenSim.Region.ScriptEngine.Common public void llModifyLand(int action, int brush) { m_host.AddScriptLPS(1); - if (World.ExternalChecks.ExternalChecksCanTerraformLand(m_host.OwnerID, new LLVector3(m_host.AbsolutePosition.X, m_host.AbsolutePosition.Y, 0))) - { - NotImplemented("llModifyLand"); - } + World.ExternalChecks.ExternalChecksCanTerraformLand(m_host.OwnerID, new LLVector3(m_host.AbsolutePosition.X, m_host.AbsolutePosition.Y, 0)); } public void llCollisionSound(string impact_sound, double impact_volume) @@ -4793,10 +4759,6 @@ namespace OpenSim.Region.ScriptEngine.Common } return; } - else - { - NotImplemented("llSetLinkAlpha"); - } } public LSL_Types.LSLInteger llGetNumberOfPrims() -- cgit v1.1