diff options
author | UbitUmarov | 2017-06-24 21:42:11 +0100 |
---|---|---|
committer | UbitUmarov | 2017-06-24 21:42:11 +0100 |
commit | 5d776fca3a6c52f79f3fd33229492b26b03ca238 (patch) | |
tree | 3c775a9ecd8efabf147cf3317e00dcd9145b3263 /OpenSim/Region/CoreModules/Scripting | |
parent | revert the thread level change; remove unused dynamic texture timer from inte... (diff) | |
download | opensim-SC-5d776fca3a6c52f79f3fd33229492b26b03ca238.zip opensim-SC-5d776fca3a6c52f79f3fd33229492b26b03ca238.tar.gz opensim-SC-5d776fca3a6c52f79f3fd33229492b26b03ca238.tar.bz2 opensim-SC-5d776fca3a6c52f79f3fd33229492b26b03ca238.tar.xz |
add dyn textures vectorrender comands ''ResetTransf;'', ''TransTransf x,y;'' and ''RotTransf x'' string only, no ossl helper api still
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs b/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs index a3b53be..fc4ccfe 100644 --- a/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs | |||
@@ -511,8 +511,25 @@ namespace OpenSim.Region.CoreModules.Scripting.VectorRender | |||
511 | 511 | ||
512 | // m_log.DebugFormat("[VECTOR RENDER MODULE]: Processing line '{0}'", nextLine); | 512 | // m_log.DebugFormat("[VECTOR RENDER MODULE]: Processing line '{0}'", nextLine); |
513 | 513 | ||
514 | if (nextLine.StartsWith("ResetTransf")) | ||
515 | { | ||
516 | graph.ResetTransform(); | ||
517 | } | ||
518 | else if (nextLine.StartsWith("TransTransf")) | ||
519 | { | ||
520 | float x = 0; | ||
521 | float y = 0; | ||
522 | GetParams(partsDelimiter, ref nextLine, 11, ref x, ref y); | ||
523 | graph.TranslateTransform(x, y); | ||
524 | } | ||
525 | else if (nextLine.StartsWith("RotTransf")) | ||
526 | { | ||
527 | float x = 0; | ||
528 | GetParams(partsDelimiter, ref nextLine, 9, ref x); | ||
529 | graph.RotateTransform(x); | ||
530 | } | ||
514 | //replace with switch, or even better, do some proper parsing | 531 | //replace with switch, or even better, do some proper parsing |
515 | if (nextLine.StartsWith("MoveTo")) | 532 | else if (nextLine.StartsWith("MoveTo")) |
516 | { | 533 | { |
517 | float x = 0; | 534 | float x = 0; |
518 | float y = 0; | 535 | float y = 0; |
@@ -793,6 +810,17 @@ namespace OpenSim.Region.CoreModules.Scripting.VectorRender | |||
793 | } | 810 | } |
794 | } | 811 | } |
795 | 812 | ||
813 | private static void GetParams(char[] partsDelimiter, ref string line, int startLength, ref float x) | ||
814 | { | ||
815 | line = line.Remove(0, startLength); | ||
816 | string[] parts = line.Split(partsDelimiter); | ||
817 | if (parts.Length > 0) | ||
818 | { | ||
819 | string xVal = parts[0].Trim(); | ||
820 | x = Convert.ToSingle(xVal, CultureInfo.InvariantCulture); | ||
821 | } | ||
822 | } | ||
823 | |||
796 | private static void GetParams(char[] partsDelimiter, ref string line, int startLength, ref float x, ref float y) | 824 | private static void GetParams(char[] partsDelimiter, ref string line, int startLength, ref float x, ref float y) |
797 | { | 825 | { |
798 | line = line.Remove(0, startLength); | 826 | line = line.Remove(0, startLength); |