Complete Help Docs

Laser Show Technology for Lighting Professionals

User Tools

Site Tools


beyond:pangoscript

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
beyond:pangoscript [2020/05/26 16:23]
Bob Varkevisser [Special characters (separators)]
— (current)
Line 1: Line 1:
-====== PangoScript ====== 
  
-The main purpose of "scripting" is ability to add custom relation on various events, like a MIDI, DMX, ArtNet, Channels. The script typically has a few lines, and a line has one Command. Command may have a parameters. Typically parameter is a number (constant). 
- 
- 
-===== Numbers ===== 
- 
-Supported float point , integer and hexadecimal numbers. Example: 
- 
-  * 100 
-  * -20 
-  * 1.01 
-  * 0xBF 
- 
-All hexadecimal numbers much have 0x prefix, similar to C language, but without ending H.\\ 
-There is not strict separation on integer and float point numbers.\\ 
-Separator between command parameter could be space (" ") or a comma (",")\\ 
- 
- 
-===== Special characters (separators) ===== 
- 
-. ; ' : ! � ^ + - * \ [ ] ( ) { } ? % | & = 
- 
-===== Predefined constants ===== 
-There are a few constants mostly for readability of the code. Each constant will be transformed to a number 
-  * **TRUE** - numeric analog 1 
-  * **FALSE** - numeric analog 0 
-  * **ANY** - equal to numeric -1. Used in a few WaitFor command 
-  * **OFF** - equal to numeric 0 
-  * **ON** - equal to numeric 1 
-  * **TOGGLE** - equal to numeric 2 
-  * **AsIs** - equal to -2.  
-This is required for commands like "MasterPause". 
- 
-A few examples of using commands: 
-  VirtualLJ off 
- 
-  MasterPause Toggle 
- 
-  WaitForMidi 0x90, 10, Any 
- 
-===== Math operations (expressions) ===== 
- 
-  * Standard : + , - , / , * , %  
-  * Inversion : !  
-  * bit OR : | 
-  * bit AND : &  
-  * bit XOR : ^  
-  * bit right shift : >>  
-  * |bit left shift :  <<  
- 
- 
-===== Operators ===== 
-  
- 
-==== IF operator ==== 
- 
- 
-Syntax: if ( expression )  operator 
- 
-expression - covered with brackets. Must be an expression with 
-numerical result that gives "0" or not a "0". So, for numerical 
-variable it's possible to write "if (variable) ...". 
- 
-Compare operators are: >, >=, <, <=, =, <>. They produces numerical result 0 or 1. 
- 
-You can combine comparing operations with "&" and "|" bit-wise operators (but be sure that left and right side are "0" or "1"). It's recommended to cover complex operations into brackets - like "if ((1>2) & ((3+2)>1))" 
- 
-operator will be executed if condition gets non-zero result. If you want to place other operator after "if (condition) operator" - it must be divided with ";" - but it's better to place next operator on the next line ;-) 
- 
-GOTO operator 
- 
-Syntax:  goto label 
- 
-"label" is  a name of position for a jump. The label can be placed before any operator and separated by ":"  character. As example: 
- 
-mylabel: WaitForBeat 4 
-... do something... 
-goto mylabel 
- 
- 
-Operator GOTO can work with the labels inside the string variables. It means that you declare string variable, assign a label name to variable, and then you a variable in GOTO. 
-Example: 
- 
-var s 
-s="mylabel" 
-goto s 
- 
-DisplayPopup "It does not work" 
-exit 
- 
-mylabel: 
-DisplayPopup "It works" 
- 
- 
- 
- 
-VAR operator 
- 
-PangoScript allow define local variables. The lifetime for the local variable defined by lifetime of the Scripter that execute PangoScript. As soon as the Scripter freed, all its local variables are removed as well. 
- 
-All variables must be declared before the using. No need to specify the type of variable. The variable automatically adjust the type depending on value. Internally supported integer, float and string variables.  
-The declaration start from VAR operation and the follow one or more variable names. As example: 
- 
-var MyVariable 
-var a,b,c 
- 
-Before using the variable must be initialized by some value. Otherwise BEYOND will generate error and stop script execution. Example: 
-var MyInteger, MyString 
-MyInteger = 10 
-MyString = "Hello!" 
- 
-All variables declared as VAR are local. 
- 
- 
-GLOBALVAR operator 
-The variable can be declared as global. In this case, it visible in ALL scripts of BEYOND.  
beyond/pangoscript.1590503015.txt · Last modified: 2020/06/11 19:23 (external edit)