aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs
diff options
context:
space:
mode:
authorTedd Hansen2008-04-20 10:40:39 +0000
committerTedd Hansen2008-04-20 10:40:39 +0000
commit8a13edb115788949af437879532297dbefa6495e (patch)
tree785720395a1931403a888758cb3d359092f78a81 /OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs
parent* Fixed up event discovery regexes to work with a specific string format m#1012 (diff)
downloadopensim-SC_OLD-8a13edb115788949af437879532297dbefa6495e.zip
opensim-SC_OLD-8a13edb115788949af437879532297dbefa6495e.tar.gz
opensim-SC_OLD-8a13edb115788949af437879532297dbefa6495e.tar.bz2
opensim-SC_OLD-8a13edb115788949af437879532297dbefa6495e.tar.xz
Moved script engine os* commands to OSSL_BuilIn_Commands.cs and OSSL_BuilIn_Commands_Interface.cs where they belong.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs
index 205e908..8d8e0bc 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands_Interface.cs
@@ -638,37 +638,6 @@ namespace OpenSim.Region.ScriptEngine.Common
638 LSL_Types.list llGetParcelDetails(LSL_Types.Vector3 pos, LSL_Types.list param); 638 LSL_Types.list llGetParcelDetails(LSL_Types.Vector3 pos, LSL_Types.list param);
639 string llStringTrim(string src, int type); 639 string llStringTrim(string src, int type);
640 LSL_Types.list llGetObjectDetails(string id, LSL_Types.list args); 640 LSL_Types.list llGetObjectDetails(string id, LSL_Types.list args);
641 //OpenSim functions
642 string osSetDynamicTextureURL(string dynamicID, string contentType, string url, string extraParams, int timer);
643 string osSetDynamicTextureURLBlend(string dynamicID, string contentType, string url, string extraParams,
644 int timer, int alpha);
645 string osSetDynamicTextureData(string dynamicID, string contentType, string data, string extraParams, int timer);
646 string osSetDynamicTextureDataBlend(string dynamicID, string contentType, string data, string extraParams,
647 int timer, int alpha);
648 double osTerrainGetHeight(int x, int y);
649 int osTerrainSetHeight(int x, int y, double val);
650 int osRegionRestart(double seconds);
651 void osRegionNotice(string msg);
652 bool osConsoleCommand(string Command);
653 void osSetParcelMediaURL(string url);
654 void osSetPrimFloatOnWater(int floatYN);
655 641
656 // Animation commands
657 void osAvatarPlayAnimation(string avatar, string animation);
658 void osAvatarStopAnimation(string avatar, string animation);
659
660 //texture draw functions
661 string osMovePen(string drawList, int x, int y);
662 string osDrawLine(string drawList, int startX, int startY, int endX, int endY);
663 string osDrawLine(string drawList, int endX, int endY);
664 string osDrawText(string drawList, string text);
665 string osDrawEllipse(string drawList, int width, int height);
666 string osDrawRectangle(string drawList, int width, int height);
667 string osDrawFilledRectangle(string drawList, int width, int height);
668 string osSetFontSize(string drawList, int fontSize);
669 string osSetPenSize(string drawList, int penSize);
670 string osSetPenColour(string drawList, string colour);
671 string osDrawImage(string drawList, int width, int height, string imageUrl);
672 void osSetStateEvents(int events);
673 } 642 }
674} 643}