aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
diff options
context:
space:
mode:
authorMW2008-03-15 13:52:57 +0000
committerMW2008-03-15 13:52:57 +0000
commit58ce8f3818ec07267a62b7731d206549c10e4ca8 (patch)
treeabc4b8db62e0d69487077060ca181b5e69c6fd04 /OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
parentPart 2 of fixing inventory for client 1.19.1 (RC), inventory items should now... (diff)
downloadopensim-SC_OLD-58ce8f3818ec07267a62b7731d206549c10e4ca8.zip
opensim-SC_OLD-58ce8f3818ec07267a62b7731d206549c10e4ca8.tar.gz
opensim-SC_OLD-58ce8f3818ec07267a62b7731d206549c10e4ca8.tar.bz2
opensim-SC_OLD-58ce8f3818ec07267a62b7731d206549c10e4ca8.tar.xz
added some os helper functions for the texture drawing module. see http://opensimulator.org/wiki/OSSL_TextureDrawing for function prototypes and example script. Will expand that page later.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs67
1 files changed, 67 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
index ab7519e..daf5e21 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
@@ -4425,6 +4425,73 @@ namespace OpenSim.Region.ScriptEngine.Common
4425 } 4425 }
4426 } 4426 }
4427 4427
4428 //Texture draw functions
4429 public string osMovePen(string drawList, int x, int y)
4430 {
4431 drawList += "MoveTo " + x + "," + y + ";";
4432 return drawList;
4433 }
4434
4435 public string osDrawLine(string drawList, int startX, int startY, int endX, int endY)
4436 {
4437 drawList += "MoveTo "+ startX+","+ startY +"; LineTo "+endX +","+endY +"; ";
4438 return drawList;
4439 }
4440
4441 public string osDrawLine(string drawList, int endX, int endY)
4442 {
4443 drawList += "LineTo " + endX + "," + endY + "; ";
4444 return drawList;
4445 }
4446
4447 public string osDrawText(string drawList, string text)
4448 {
4449 drawList += "Text " + text + "; ";
4450 return drawList;
4451 }
4452
4453 public string osDrawEllipse(string drawList, int width, int height)
4454 {
4455 drawList += "Ellipse " + width + "," + height + "; ";
4456 return drawList;
4457 }
4458
4459 public string osDrawRectangle(string drawList, int width, int height)
4460 {
4461 drawList += "Rectangle " + width + "," + height + "; ";
4462 return drawList;
4463 }
4464
4465 public string osDrawFilledRectangle(string drawList, int width, int height)
4466 {
4467 drawList += "FillRectangle " + width + "," + height + "; ";
4468 return drawList;
4469 }
4470
4471 public string osSetFontSize(string drawList, int fontSize)
4472 {
4473 drawList += "FontSize "+ fontSize +"; ";
4474 return drawList;
4475 }
4476
4477 public string osSetPenSize(string drawList, int penSize)
4478 {
4479 drawList += "PenSize " + penSize + "; ";
4480 return drawList;
4481 }
4482
4483 public string osSetPenColour(string drawList, string colour)
4484 {
4485 drawList += "PenColour " + colour + "; ";
4486 return drawList;
4487 }
4488
4489 public string osDrawImage(string drawList, int width, int height, string imageUrl)
4490 {
4491 drawList +="Image " +width + "," + height+ ","+ imageUrl +"; " ;
4492 return drawList;
4493 }
4494
4428 private void NotImplemented(string command) 4495 private void NotImplemented(string command)
4429 { 4496 {
4430 m_host.AddScriptLPS(1); 4497 m_host.AddScriptLPS(1);