Difference between revisions of "SCM language"

From GTAMods Wiki
Jump to navigation Jump to search
(Time to publish the reworked article in its current state for historical reasons.)
 
(19 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Test link (please, submit changes with "Show preview"): http://www.gtamodding.com/index.php?title=SCM_language&action=edit (login required)
+
{{Cleanup-rewrite}}
 
+
{{This|This article deals with the native scripting language syntax of GTA 3 series, nothing other than [[GTA 3|III]], [[GTA VC|VC]], [[GTA SA|SA]], [[GTA LCS|LCS]] and [[GTA VCS|VCS]].<br/>
{{This|This section deals with the native script language syntax of GTA 3 series, nothing other than [[GTA 3|III]], [[GTA VC|VC]], [[GTA SA|SA]], [[GTA LCS|LCS]] and [[GTA VCS|VCS]].<br/>
 
 
It may incorporate nonstandard specifications due to the fact R* hasn't published enough documentation about yet.}}
 
It may incorporate nonstandard specifications due to the fact R* hasn't published enough documentation about yet.}}
{{TocRight}}On the occasion of the ''Grand Theft Auto III's 10th Anniversary'', after a long period of darkness where we fell about the real scripting language syntax, R* finally treated us (or was it, as it seems, a ''War Drum Studios'' sloppy oversight?) by attaching part of its own original source code into the mobile release, available for ''iOS'' and ''Android'' devices. As far back as 2001, a snip of some debugging scripts has been already provided with ''main.sc'' and ''debug.sc'' files that were allegedly meaningful for a sort of script version checker uncut on debug builds. Nonetheless, many secrets are still unrevealed, thus some things cannot be fully documented and so they can be merely guessed. The .scm format abbreviation is one of countless proofs of this inconvenience, which may stand for '''Script Multifile'''; .scc, in turn, might be the short form of '''Script Compiled''' though we would better predilige the '''Combinedfile''' wording. No doubt come with source files, whose .sc extension is the contraction of '''Mission Script'''. Although we have enough information to suppose the currently unknown mysteries of the used language, we still have no safe clue about what was its original denomination. Furthermore, it is a matter of fact that R* developers have been left untouched the '''miss2''' executable filename of the third generation compiler since the chapter 2. In this connection, we could imagine the newer scripting language is a variant or an evolution of the '''GTA2script''' (sometimes referred to as '''GBHscript'''), which label expressly popped up in the ancient documentation by ''DMA Design Ltd'' (at present ''Rockstar North''). Therefore, we are almost sure to say the language name is most likely '''GTA3script''' (as-is casing). However, it is definitely based on [[Wikipedia:BASIC|BASIC]].
+
{{TocRight}}On the occasion of the "Grand Theft Auto III 10th Anniversary", after a long period of darkness where we fell about the real scripting language syntax, R* finally treated us (or was it, as it seems, a [[Wikipedia:War Drum Studios|War Drum Studios]] sloppy oversight?) by attaching part of its own original source code into the Mobile release, available for iOS and Android devices. A year later, the so-called official compiler, somewhat customized for the sake of convenience, was shipped via the remastered edition of Vice City. As far back as 2001, a snip of some debugging scripts has been already provided with ''main.sc'' and ''debug.sc'' script files that were allegedly meaningful for a sort of script version checker uncut on debug builds. Nonetheless, many secrets are still unrevealed, thus some stuff cannot be fully documented at the moment, hopefully, and so they can be merely guessed. The .scm format abbreviation is one of countless proofs of such a downside which probably stands for '''Script Multifile''', while .scc might be in turn the short form of '''Compiled Script'''. No doubt comes with source files, whose .sc extension is the contraction of '''Mission Script'''. Although we have enough information to suppose the currently unknown mysteries of the used language, we still have no safe clue about what was its original denomination. Furthermore, it is a matter of fact that R* developers have been left intact the '''miss2''' executable filename of third generation compilers since the chapter 2. In this connection, we could imagine the newer language is a variant or an evolution of the '''GTA2script''' which label, initially referred to as '''GBHscript''', expressly popped up in the ancient documentation by [[Wikipedia:DMA Design|DMA Design Ltd.]] (at present [[Wikipedia:Rockstar North|Rockstar North]]). On those grounds, we are almost sure to say the name of the scripting language targeting each game with all peculiar but minimal enhancements or regressions is most likely '''GTA3script''' (as-is casing) for III, '''GTAVCscript''' for Vice City, '''GTASAscript''' for San Andreas, '''GTALCSscript''' for Liberty City Stories and lastly '''GTAVCSscript''' for Vice City Stories. However, it is definitely based on [[Wikipedia:BASIC|BASIC]].
  
 
=Fundamentals=
 
=Fundamentals=
Line 10: Line 9:
 
Codes are usually self-explanatory for the author but large sources can compromise everyone's management capability, that means some annotation can save much time on the long-term particularly when being stuck trying to understand old stuff which should never happen in the first place, not to mention team mates would certainly blame the original writer on each revision and slow down the completion of cooperative projects. Sometimes, it is also required to temporarily/permanently disable code lines for testing purposes. Fortunately, the language supports the following typologies of comments:
 
Codes are usually self-explanatory for the author but large sources can compromise everyone's management capability, that means some annotation can save much time on the long-term particularly when being stuck trying to understand old stuff which should never happen in the first place, not to mention team mates would certainly blame the original writer on each revision and slow down the completion of cooperative projects. Sometimes, it is also required to temporarily/permanently disable code lines for testing purposes. Fortunately, the language supports the following typologies of comments:
  
* ''Single-line'' comment, prefixed with // (two forward slashes), which extends till the end of the line. Everything is ignored inside: <code>// Some comment.</code>;
+
* ''Line'' comment, prefixed with // (two forward slashes), which extends till the end of the line. Everything is ignored inside: <code>// Some comment.</code>;
* ''Multi-line'' comment, enclosed with a pair of /* (a slash plus an asterisk) and */ (the other way around), which covers a cricumscribed text area. Several blocks can be nested together: <code>/* Some /* comment */ . */</code>.
+
* ''Block'' comment, enclosed with a pair of /* (a slash plus an asterisk) and */ (the other way around), which embodies a circumscribed text area. Several blocks can be nested together: <code>/* Some /* comment */ . */</code>.
  
 
==Delimiters==
 
==Delimiters==
Conventionally, lines can be splitted into various regions in order to enhance the code legibility through bracket-delimited and/or comma-separated elements. As being pure white-spaces, the opening parenthesis delimiter doesn't necessarily need to match the closing counterpart and viceversa. The only tangible use of separators carried out in public sources is related to inline declaration of multiple variables, text keys of print-commands and '''SETUP_ZONE_PED_INFO''' but codes can be organized to one's liking. Here are some demonstrations:
+
Conventionally, lines can be splitted into various regions in order to enhance the code legibility through bracket-delimited and/or comma-separated elements. As being pure whitespaces, the opening parenthesis delimiter doesn't necessarily need to match the closing counterpart and viceversa. The only tangible use of separators carried out in public sources is related to inline declaration of multiple variables, text keys of print-commands and <code>SETUP_ZONE_PED_INFO</code> but codes can be organized to one's liking. Here are some demonstrations:
  
 
  VAR_INT joeys_buggy, swank_taxi
 
  VAR_INT joeys_buggy, swank_taxi
Line 21: Line 20:
  
 
==Integers and Floating-points==
 
==Integers and Floating-points==
 +
Numeric values are used extensively throughout the whole script following no particular notation besides the decimal one. The specializing number representation tells whether a literal is an integer or a floating-point value: an appending <code>f</code> or <code>F</code> floatifies a number, whose suffix becomes superfluous if a radix point, discerning decimals from integral digits, is supplied. Float parts are alternatively omissible hence a 0 digit is implied if one and only one of them is missing. Literal parsing starts from the minus sign, radix point or number digit and stops at the first non number character after a series of digits, leading and/or trailing an eventual radix point, or float suffix. To sum things up, these values are valid numbers: <code>1</code>, <code>-0</code>, <code>1f</code>, <code>-0f</code>, <code>1.0</code>, <code>1.0f</code>, <code>1.</code>, <code>1.f</code>, <code>.0</code>, <code>.0f</code> and also <code>1-2</code> (ill-formed on basic or compound assignments), <code>1..2</code>, <code>1f2</code>, producing <code>1</code> (<code>1f-2</code> is ill-formed a priori). In the first Trilogy chapter, the fixed-point format was chosen meaning precision was guaranteed to not get lost if the decimal part wasn't lesser than just one-tenth.
  
 
==Labels, Text labels and Strings==
 
==Labels, Text labels and Strings==
Thanks to the beneficial code fragmentation, the source is subject to external file inclusions and variegated in-file unconditional branches involving embedded code blocks diversification. Both kinds of partitioning are accomplished respectively through the specification of:
+
Thanks to the beneficial code fragmentation, the source is subject to script file inclusions, favouring modularity, and sparse goto branches, involving embedded code blocks diversification. Both kinds of partitioning are accomplished respectively through the specification of:
  
 
* ''Filenames'', that is special labels which somehow resemble legit pathnames, starting with any valid pathname character but not containing whitespaces. They are relative to the root path deriving from the .sc extension removal of the main script full path where files are searched in by default: <code>X:\folder\main</code>. Subfolders are scanned as well:
 
* ''Filenames'', that is special labels which somehow resemble legit pathnames, starting with any valid pathname character but not containing whitespaces. They are relative to the root path deriving from the .sc extension removal of the main script full path where files are searched in by default: <code>X:\folder\main</code>. Subfolders are scanned as well:
Line 29: Line 29:
 
** Till the second tree level if inside one of the parent directories: <code>X:\parent</code> or <code>X:\parent\main</code>;
 
** Till the second tree level if inside one of the parent directories: <code>X:\parent</code> or <code>X:\parent\main</code>;
 
** Indefinitely (unlimited recursion till the maximum path length allowed).
 
** Indefinitely (unlimited recursion till the maximum path length allowed).
:The .sc extension at the end of filenames is mandatory else an argument mismatch is warned, by contrast the main script can have any extension to which ''m'' (multifile) or ''c'' (combinedfile) is appended in the target pathname. Due to a [[Cd image]] system limitation, all sorts of filename must be shorter than 20 characters and conventionally they must be free of extra dots for streamed scripts.
+
:The .sc extension at the end of filenames is mandatory else an argument mismatch is warned, by contrast the main script can have any extension to which ''m'' (multifile) or ''c'' (compiled) is appended in the target pathname. Due to a [[Cd image]] system limitation, all sorts of filename must be shorter than 20 characters and conventionally they must be free of extra dots for streamed scripts;
* ''Label references'', that is unique string identifiers suffixed by a colon which identify a precise location within the common (main script, main extensions and subscripts) or the actual (mission scripts and streamed scripts) script space. Basically, they represent the target position of either goto-like, script starter or function caller commands: <code>my_label_ref:</code> (on a new line). Weirdly enough, label references may begin with any character alike filenames despite they are susceptible to the same restrictions of string identifiers whenever passed as arguments but must not exceed 38 characters, colon excluded, either way. Whereas these are not commands, anything else can follow next to and being inlined so long as a splitting character is inserted.
+
* ''Labels'', that is unique identifiers suffixed by a colon which identify a precise location of the source code representing the target position of goto-like, script starter, subroutine or function caller commands: <code>my_label:</code> (on a new line). Weirdly enough, they may begin with any character alike filenames or be empty despite being susceptible to the same restrictions of string identifiers whenever passed as arguments but, regardless, must not exceed 39 characters (colon included, yet blanked out) and whereas these are not commands, anything else can follow next to and be inlined so long as a splitting character is inserted.
 +
:Labels store a reference depicting either an absolute address falling within the main script space (including main extensions and generic subscripts) or a relative and negative address pointing to a place of the mission script space or that of a particular streamed script. Albeit addresses are zero-based anyway, it is discouraged to use a <code>WHILE</code> construct at or branch by hand to the almost very top of a mission/streamed script file or even communicate between different script spaces with gotos.
  
That said, labels are essentially user-supplied string identifiers whose existence is verified. Text label identifiers are not fully bound to this rule (except script names) since they are massively employed as main/mission text keys or whatever referring to an internal resource, which the game handles according to a well-defined associative scheme. Notoriously, identifiers length is anything but expensive for readability reasons, in addition they do not even offer the ability to insert white-spaces or other inadmissible characters owing to the by-design absence of delimiting tokens. <incorrect>At this matter, variable-length strings and debugging texts sent as 128-byte string literals are enclosed by " " (double quotes):
+
That said, labels are basically user-supplied identifiers whose existence is verified. The text label or text [[Wikipedia:String (computer science)|string]] counterpart is not fully compliant to this standard (script names are exempt, for instance) since string identifiers are massively employed as main/mission text keys or whatever referring to an internal resource, which the game handles according to a well-defined associative scheme. As a general rule, these are primarily supposed to be at most 7 characters long and must begin with a letter and never end with a colon or either begin with an underscore or an alphanumeric character in the last Trilogy and Stories chapter where text label variables are supported, provided that here their literals are not valid integer or floating-point numbers taking the precedence over string identifiers on parsing:
  
  CUSTOM_PLATE_FOR_NEXT_CAR CAR_TAMPA "_FELTCH_"</incorrect>
+
LOAD_SPECIAL_CHARACTER 1 eight
  SAVE_STRING_TO_DEBUG_FILE "CURRENT_WANTED_LIST = "
+
  CUSTOM_PLATE_FOR_NEXT_CAR CAR_TAMPA _FELTCH_
 +
  SCRIPT_NAME 99red
  
Empty text labels are impracticable, though '''NIL''' compiles a <code>NUL</code>-string in the last Stories chapter<sup>[no source]</sup><s> &ndash; as reported by some indiscreet sources, the rearrangement of crucial commands signals a syntax enhancement the language has undergone which sees delimited strings superseding text labels, lowly probable because string constants are still disallowed for multi-type parameters; as previously assumed, instead, '''DUMMY''' could have been the placeholder keyword but a text key exists actually, while a single _ (underscore) is more Python-oriented (used as a throwaway variable)</s>. It's worth noting string literals and text labels are not interchangeable because of their syntactic differences even if they present semantic similarities, moreover text labels do not ever interfere with command names and string constants. A final quirk to note concerning labels as a whole is they are automatically converted to upper case: this obvious evidence proves identifiers and whatnot are all case insensitive with the exception that 128-byte strings are left as-is for remastered game builds.
+
In the last Trilogy chapter and nowhere else, longer text labels were introduced, some sort of [[Wikipedia:String (computer_science)#Length-prefixed|Pascal strings]] having a variable length of maximum 40 characters for literals or a fixed length of 16 bytes for variables, twice as big as the shorter text label ones. Speaking of which, it is prohibited to get or handle a longer text label using a variable of shorter length but this one is rather passable to those text label parameters also permitting long-lengthed literals. Notoriously, identifiers length is anything but expensive for readability reasons, in addition they do not even offer the ability to insert whitespaces or other inadmissible characters owing to the by-design absence of delimiting tokens. At this matter, debug texts are sent as 127-character string literals enclosed by double quotes:
 +
 
 +
SAVE_STRING_TO_DEBUG_FILE "current_wanted_list = "
 +
 
 +
These quoted strings are, in essence, made up of four text labels aligned to 32 bytes (at the highest power of two possible per parameter) individually accessible as a result of a compiler bug, cause the first character of each literal-only argument is trimmed out as a quotemark &ndash; during the line reconstruction phase, the opening and closing quotemarks along with <code>&nbsp;</code> <code>/</code> <code>,</code> <code>(</code> <code>)</code ><code>\t</code> are swapped to <code>A</code> <code>\0</code> <code>\xD1</code>-<code>\xD6</code> and back again on code generation (the <code>NUL</code>-terminator at the end of string literals makes them rightmost arguments, ignoring the rest).<br/>
 +
Unlike string literals, empty text labels are impracticable though <code>$</code> alone compiles a <code>NUL</code>-string identifier in the last Stories chapter<sup>[no source]</sup> &ndash; as reported by some indiscreet speculations, the rearrangement of crucial commands signals a syntax enhancement the language has undergone which sees delimited strings superseding text labels, lowly probable because string constants are still disallowed for multi-type parameters. In San Andreas, text labels are implicitly comparable against <code>NUL</code>-string identifiers but no syntactical facility accommodates an explicit use.<br/>
 +
It's worth noting text labels and string literals are not interchangeable because of their syntactic differences even if they present semantic similarities, moreover text labels do not ever interfere with command names and string constants. A final quirk to note concerning labels as a whole is they are automatically converted to upper case: this obvious evidence proves identifiers and whatnot are all case insensitive with the exemption that string literals are left as-is for remastered game builds.
  
 
==Data types==
 
==Data types==
Line 48: Line 56:
 
!Size
 
!Size
 
!Range
 
!Range
!width=64px|Game<br/>support
+
!width=36px|Is<br/>main
!width=64px|Variable<br/>support
+
!width=36px|Is<br/>basic
!Is<br/>basic
+
!Derivative data types
 +
!width=70px|Immediate<br/>support
 +
!width=70px|Variable<br/>support
 
|-
 
|-
!colspan=7|Single-typed
+
|colspan=9|'''NONE'''
 +
|-
 +
|rowspan=2 align=left|'''LABEL'''||String identifier<br/><span style="font-size: 0.75em">(translated to address)</span>||rowspan=3|1, 2 or 4||1 to 38||rowspan=2|
 +
|rowspan=2|
 +
|rowspan=2|
 +
|rowspan=2|Since {{icon|3}}||rowspan=2|
 
|-
 
|-
|align=left|'''LABEL'''||String identifier<br/><span style="font-size: 0.75em">(translated to offset/index)</span>||rowspan=2|4||rowspan=2|-2<sup>31</sup> to 2<sup>31</sup>-1||rowspan=2|Since {{icon|3}}||None||
+
|Filename<br/><span style="font-size: 0.75em">(translated to address or index)</span>||1 to 19
 
|-
 
|-
|align=left|'''INT'''||Signed integer||rowspan=3|Since {{icon|3}}||&#x2713;
+
|align=left|'''INT'''||Signed integer||{{hint|-2<sup>n-1</sup> to 2<sup>n-1</sup>-1|-128 to 127&#10;-32,768 to 32,767&#10;-2,147,483,648 to 2,147,483,647}}<br/><span style="font-size: 0.75em">(where n is 8, 16 or 32)</span>||&#x2713;||&#x2713;||'''VAR_INT''', '''VAR_INT_OPT''',<br/>'''LVAR_INT''', '''LVAR_INT_OPT''',<br/><span style="font-size: 0.75em">(Vice City Stories apart)</span><br/>'''INPUT_INT''', '''OUTPUT_INT'''||rowspan=3 colspan=2|Since {{icon|3}}
 
|-
 
|-
|rowspan=2 align=left|'''FLOAT'''||[[Wikipedia:Q (number format)|Q11.4 fixed-point]]||2||-2<sup>11</sup> to 2<sup>11</sup>-2<sup>-4</sup>||{{icon|3}} only||rowspan=2|&#x2713;
+
|rowspan=2 align=left|'''FLOAT'''||[[Wikipedia:Q (number format)|Q11.4 fixed-point]]<br/><span style="font-size: 0.75em">(III only)</span>||2||{{hint|-2<sup>11</sup> to 2<sup>11</sup>-2<sup>-4</sup>|-2,048 to 2,047.9375}}||rowspan=2|&#x2713;||rowspan=2|&#x2713;||rowspan=2|'''VAR_FLOAT''', '''VAR_FLOAT_OPT''',<br/>'''LVAR_FLOAT''', '''LVAR_FLOAT_OPT''',<br/><span style="font-size: 0.75em">(Vice City Stories apart)</span><br/>'''INPUT_FLOAT''', '''OUTPUT_FLOAT'''
 
|-
 
|-
|[[Wikipedia:Floating point|IEEE-754 floating-point]]||4||&plusmn;3.4&times;10<sup>&plusmn;38</sup>||Since {{icon|vc}}
+
|[[Wikipedia:Floating point|IEEE-754 floating-point]]<br/><span style="font-size: 0.75em">(packed in Stories)</span>||1-4||{{hint|&plusmn;2<sup>-126</sup> to &plusmn;2<sup>127</sup>(2-2<sup>-23</sup>)|&plusmn;1.1754942e-38 to &plusmn;3.4028235e+38}}
 
|-
 
|-
|align=left|'''TEXT_LABEL'''||rowspan=2|UTF-8 null-terminated<br/>[[Wikipedia:String (computer science)|string]] identifier||8||1 to 7||Since {{icon|3}}||{{icon|sa}} and {{icon|vcs}}||&#x2713;
+
|align=left|'''TEXT_LABEL'''||String identifier<br/><span style="font-size: 0.75em">(NUL-terminated)</span>||8||1 to 7||
 +
|&#x2713;||'''VAR_TEXT_LABEL''', '''VAR_TEXT_LABEL_OPT''',<br/>'''LVAR_TEXT_LABEL''', '''LVAR_TEXT_LABEL_OPT''',<br/><span style="font-size: 0.75em">(Vice City Stories apart)</span><br/>'''INPUT_TEXT_LABEL''', '''OUTPUT_TEXT_LABEL'''<br/><span style="font-size: 0.75em">(Vice City Stories only)</span>||Since {{icon|3}}||{{icon|sa}} and {{icon|vcs}}
 
|-
 
|-
|align=left|'''TEXT_LABEL16'''||16||1 to 15||rowspan=2|{{icon|sa}} only||{{icon|sa}} only||&#x2713;
+
|rowspan=2 align=left|'''TEXT_LABEL16'''||rowspan=2|String identifier<br/><span style="font-size: 0.75em">(if non variable-only, accepts<br/>'''TEXT_LABEL''' variables)</span>||9-41<br/><span style="font-size: 0.75em">(Pascal string)</span>||8 to n<br/><span style="font-size: 0.75em">(where n is <= 40)</span>||rowspan=2|
 +
|rowspan=2|&#x2713;||rowspan=2|'''VAR_TEXT_LABEL16''', '''VAR_TEXT_LABEL16_OPT''',<br/>'''LVAR_TEXT_LABEL16''', '''LVAR_TEXT_LABEL16_OPT'''||rowspan=2 colspan=2|{{icon|sa}} only
 
|-
 
|-
|align=left|'''TEXT_LABEL32'''||UTF-8 null-terminated<br/>string identifier<br/><span style="font-size: 0.75em">(4 contiguous blocks)</span>||32&times;4||1 to 127||None||
+
|16||1 to 15
 
|-
 
|-
!colspan=7|Multi-typed
+
|rowspan=2|'''TEXT_LABEL32'''<span style="font-size: 0.75em">||String identifier<br/><span style="font-size: 0.75em">(NUL-terminated)</span>||32||1 to 39<br/><span style="font-size: 0.75em">(bugged)</span>||rowspan=2|
 +
|rowspan=2|
 +
|rowspan=2|
 +
|rowspan=2|{{icon|sa}} only||rowspan=2|
 
|-
 
|-
|rowspan=2 align=left|'''PARAM'''||colspan=3|Same as '''INT''' and '''FLOAT'''||colspan=2|Since {{icon|3}}||rowspan=4|
+
|String literal<br/><span style="font-size: 0.75em">(NUL-terminated)</span>||32&times;4||1 to 127
 
|-
 
|-
|colspan=3|Same as '''TEXT_LABEL'''||colspan=2|Since {{icon|vcs}}
+
|rowspan=2 align=left|'''INPUT'''<br/><span style="font-size: 0.75em">(optional)</span>||colspan=3|Includes '''INT''' and '''FLOAT'''||rowspan=2|
 +
|rowspan=2|
 +
|rowspan=2|
 +
|rowspan=2 colspan=2|
 
|-
 
|-
|rowspan=2 align=left|'''STRING'''||UTF-8 string<br/><span style="font-size: 0.75em">(non null-terminated)</span>||1..127||1 to N-1||rowspan=2|{{icon|sa}} only||None
+
|colspan=3|Includes '''TEXT_LABEL'''<br/><span style="font-size: 0.75em">(Vice City Stories only)</span>
 
|-
 
|-
|colspan=3|Same as '''TEXT_LABEL/16'''<br/><span style="font-size: 0.75em">(variable-only)</span>||{{icon|sa}} only
+
|align=left|'''STRING'''<br/><span style="font-size: 0.75em">(internal only)</span>||Label,<br/>Variable name,<br/>String constant{{ref|strconst|[*]}},<br/>Text labels,<br/>Quoted string||
 +
|
 +
|&#x2713;||
 +
|
 +
|colspan=2|
 +
|-
 +
|colspan=9|'''UNKNOWN'''
 
|}
 
|}
  
Some tiny caveats about immediate numeric fields:
+
{{note|strconst}} String constants are only compatible with '''INPUT_INT''' data type but default constants favour '''INT''' regardless.
 
 
* String constants are compatible with integer parameters;
 
* Literals must begin with a number or - (minus sign) or rather . (decimal point, for float values);
 
* Integers allow only the decimal notation;
 
* Floats disallow scientific notation and such;
 
* Integral and fractional parts are singularly omissible;
 
* F or f suffix can be appended next to (quite unused/useless).
 
  
 
==Immediates and Variables==
 
==Immediates and Variables==
Data can take the appearance of a few expressions varying from numeric, text label and string literals each of which occupies a certain area of storage with unfixed size. Immediates can also be preserved for later use and therefore reserve space over the private script memory corresponding to a variable. The strongly-typed language property imposes to explicitly declare variables anywhere in the current scope, namely the context inside which they are visible for usage. Sensibly, declarations should figure beforehand but likewise it is allowed for accessing backward declarations. Variables accessible from any location are marked as globals (starting from offset 8, occupying lots of space in the script multifile, up to 64 kibibytes) and their declaration is achieved by prepending the '''VAR''' prefix followed by one of the basic data types (multiple declarations of the same type can be inlined), both separated by an in-between underscore:
+
Data can take the appearance of a few expressions varying from numeric, text label and string literals each of which occupies a certain area of storage with unfixed size. Immediates can also be preserved for later use and therefore reserve space over the private script memory corresponding to a variable. The strongly-typed language property imposes to explicitly declare variables anywhere in the current scope, namely the context inside which they are visible for usage. Sensibly, declarations should figure beforehand but likewise it is allowed for accessing backward declarations. Variables accessible from any location are marked as globals (starting from offset 8 or more, occupying lots of space in the script multifile, up to 64 kibibytes) and their declaration is achieved by prepending the <code>VAR</code> wording followed by one of the basic data types (multiple declarations of the same type can be inlined), both separated by an in-between underscore:
  
 
  VAR_INT player scplayer
 
  VAR_INT player scplayer
Line 96: Line 118:
 
  VAR_TEXT_LABEL16 shop_item
 
  VAR_TEXT_LABEL16 shop_item
  
Globals are capable of being selectively marked as saveable using the '''SAVE_VAR''' prefix, in order to restore their value on savegame loading and free generic variables. In Trilogy chapters, if enabled properly in a hacky manner, these are solely common variable declarations with no additional purpose, a plan not gone through. On the other hand, globals declared within the mission context are not visible outside in Stories chapters since they overlap the same space, making a discernment among true and al-most globals. However, there's no exact rule for variable naming apart they must begin with a letter and never end with a colon, just like text labels. It's preferable definitions shall not contain operator tokens to prevent any parsing ambiguity plus, most importantly, they must not conflict with string constants and local timers. Nevertheless, text labels and variable names semantics may collide: in this case, the formers have priority over the latters unless a preceding dollar sign) is added:
+
Globals are capable of being selectively marked as saveable using the <code>SAVE_VAR</code> prefix, in order to restore their value on savegame loading and free generic variables. In Trilogy chapters, if enabled properly in a hacky manner, these are solely common variable declarations with no additional purpose, a plan not gone through. On the other hand, globals declared within the mission context are not visible outside in Stories chapters since they overlap the same space, making a discernment among true and al-most globals. However, there's no exact rule for variable naming apart they must begin with a specific character and never end with a colon just like string identifiers, expanding till a maximum of 39 characters. It's preferable definitions shall not contain operator tokens to prevent any parsing ambiguity plus, most importantly, they must not conflict with string constants and local timers. Nevertheless, text labels and variable names semantics may collide: in this case, the formers have priority over the latters unless a preceding dollar sign is added:
  
 
  PRINT_BIG TEXTKEY 5000 2  // Compiles a text label literal.
 
  PRINT_BIG TEXTKEY 5000 2  // Compiles a text label literal.
 
  PRINT_BIG $textkey 5000 2 // Compiles a text label variable.
 
  PRINT_BIG $textkey 5000 2 // Compiles a text label variable.
  
Despite variables are freed and zero-initialized at runtime on new/load game or script allocation in broad terms, statistical information are still gathered whenever they are read before being written, besides if they are never read or never written (passing a variable as reference has no effect onto the content). Furthermore, if a variable is set to hold an entity handle (alias unique index) returned by a specific create-command it cannot be assigned to any other entity-command of different kind or none, including the forseeable assignment operations. This restriction propagates on script and function callings as well: starting/streaming the same script or calling the same function multiple times with variables of dissimilar entity types is forbidden if triggers are encountered prior the script or function local scope is fetched, in which case entities are explicitly initialized in the form of unreachable code:
+
Despite variables are freed and zero-initialized at runtime on new/load game or script allocation in broad terms, statistical information are still gathered whenever they are read before being written, besides if they are never read or never written (passing a variable as reference has no effect onto the content). Furthermore, if a variable is set to hold an entity handle (alias unique index) returned by a specific create-command it cannot be assigned to any other entity-command of different kind or none, including the forseeable assignment operations. This restriction propagates on script and function callings as well: starting/streaming the same script or calling the same function multiple times with variables of dissimilar entity types is forbidden if triggers are encountered prior the script or function lexical scope is fetched, in which case entities are explicitly initialized in the form of unreachable code:
  
 
  {
 
  {
     LVAR_INT test_char sanity
+
     LVAR_INT fellow_char robbery_car money_bag sanity
 
   
 
   
 
     sanity = 0
 
     sanity = 0
 
     IF sanity = -1
 
     IF sanity = -1
         CREATE_CHAR PEDTYPE_CIVMALE male01 0.0 0.0 0.0 test_char
+
         CREATE_CHAR PEDTYPE_CIVMALE male01 0f 0f 0f fellow_char
 +
        CREATE_CAR admiral 0f 0f 0f robbery_car
 +
        CREATE_OBJECT woodenbox 0f 0f 0f money_bag
 
     ENDIF
 
     ENDIF
 
  }
 
  }
  
==Local scope==
+
==Lexical scope==
Once a script is started/streamed or a subscript/mission is launched, a local variable space of 72 (16+2 &times; 4, III/Vice City), 136 (32+2 &times; 4, San Andreas) or 424 (96+8+2 &times; 4, Stories) bytes is also reserved. As opposed to global variables, locals have visibility only inside a particular region of the source code and are preceded by the '''LVAR''' prefix at declaration within an unnestable block embraced by curly brackets:
+
Once a script is launched, a local storage space consisting of a context-dependent set of variables (16+2 in III/Vice City, 32+2 in San Andreas and 40+2 on Mobile, 96+8+2 in Stories) ready for use is also reserved. As opposed to global variables, locals have visibility only inside a particular region of the source code and are preceded by the <code>LVAR</code> wording at declaration within a nonnestable block embraced by <code>{</code> and <code>}</code>:
  
 
  {
 
  {
Line 119: Line 143:
 
  }
 
  }
  
Local names do not override global definitions, they must not collide together otherwise a warn is issued. In the last Trilogy chapter, locals are mainly static variables whose space (having a size of 4096 bytes, 1024&times;4) is shared among each mission thus they are reasonably more abundant in this context. Beyond user-defined locals, predefined '''TIMERA''' and '''TIMERB''' variables are provided: these timers measures the playing time milliseconds passed since the script beginning but they can be reset just fine. As deducible, any script file inclusion within a local scope does inherit no local variable even for the unassuming foreign gosub.
+
Local names do not override global definitions, they must not collide together otherwise a warn is issued. Beyond user-defined locals, predefined <code>TIMERA</code> and <code>TIMERB</code> variables are provided: these timers measures the playing time milliseconds passed since the script beginning but they can be reset just fine. In the last Trilogy chapter, mission locals are mainly static variables starting from index 34 or 42 on Mobile whose space (having a size of 4 kibibytes) is shared among each mission thus being reasonably more abundant in this scenario but, as a side effect, local timers are unavailable. Transferring the control over and above the lexical scope boundaries or to another multiscript leaves the active context and hides local definitions, thereby switching across lexical scopes is bad practice and can lead to unpredictable results if contexts are not strictly equivalent in the variable declarations.
  
 
==Arrays==
 
==Arrays==
Since the last Trilogy chapter, instead of declaring multiple scalar variables of same type, an unidimensional, numeric (unassociative) array can be defined. Each element is accessed through either a positive, zero-based<sup>[no source]</sup>, 8-bit unsigned number or a variable index embraced by a pair of square brackets on assignment or argument passing. On declaration, the said brackets enclose the array size which mustn't be bigger than 255 units:
+
Since the last Trilogy chapter, instead of declaring multiple scalar variables of same type, a one-dimensional indexed array can be defined. Each element is accessed through either a zero-based<sup>[no source]</sup> positive number or a variable index (local-only in Stories) in a subscript expression on assignment or argument passing. On declaration, a pair of square brackets enclose the array size which mustn't be bigger than 255 units:
  
 
  VAR_INT prop_assets[32]
 
  VAR_INT prop_assets[32]
 
  CREATE_FORSALE_PROPERTY_PICKUP -1969.27 282.47 34.6 50000 PROP_3 prop_assets[0]
 
  CREATE_FORSALE_PROPERTY_PICKUP -1969.27 282.47 34.6 50000 PROP_3 prop_assets[0]
  
In sooth, one-based arrays were already supported in the second Trilogy chapter but they missed the intrinsic data type, giving no reference point on how to interpret the compiled operands, producing corrupted intermediate code because of fall-through reading. There is no precedent to safely assert that arrays became zero-based later on the language evolution but what is certain is this sort of indexing lines up immediate with variable indices. Oddly, as a result of the unidimensionality constraint implementation, a complementary yet nonfactual identifier can follow the closing bracket immediately afterwards with no redundancy notice (i.e. <code>prop_assets[0]anything</code>). Moreover, scalar variables have an implicit array size of one element which is needlessly accessible and plus the index part of the first element of an array is in turn omissible, everything notwithstanding the misleading declaration. Granted that brackets do not encompass any separator character, array indices reject string constants but admit local timers.
+
In sooth, one-based arrays were already supported in the second Trilogy chapter but in a manner which is defective and incomplete: they missed the intrinsic data type, giving no reference point on how to interpret the compiled operands, producing corrupted intermediate code because of fall-through reading. There is no precedent to safely assert that arrays became zero-based later on the language evolution but what is certain is this sort of indexing lines up immediate with variable indices. Oddly, as a result of the uni-dimensionality constraint implementation, a complementary yet nonfactual identifier can follow the closing bracket immediately afterwards with no redundancy notice (i.e. <code>prop_assets[0]anything</code>). Moreover, scalar variables have an implicit array size of one element which is needlessly accessible and plus the index part of the first element of an array is in turn omissible, everything notwithstanding the misleading declaration. Granted that brackets do not encompass any separator character or identifiers wider than 39 characters, array indices reject string constants but admit local timers.
  
 
==String constants==
 
==String constants==
Very often, numeric literals express arbitrary values which are far from being self-documenting without descriptive labels belonging to a list of predefined names. These strings or enumerations are guaranteed to store an immutable constant and must forcibly pertain to the required namespace if passed as arguments unless, if and only if no namespace is set, the default constants '''TRUE'''/'''FALSE''', '''ON'''/'''OFF''', '''DAY'''/'''NIGHT''' or '''KILLFRENZY''' statuses are supplied:
+
Very often, numeric literals express arbitrary values which are far from being self-documenting without descriptive labels belonging to a list of predefined names. These strings or enumerators are guaranteed to store an immutable constant and must forcibly pertain to the required enumeration if passed as arguments unless, if and only if no enumeration is set, the enumeration-free default constants <code>TRUE</code>/<code>FALSE</code>, <code>ON</code>/<code>OFF</code>, <code>DAY</code>/<code>NIGHT</code> or <code>KILLFRENZY</code> enumerators are supplied:
  
 
  CHANGE_BLIP_DISPLAY blip1_jm1 BLIP_ONLY
 
  CHANGE_BLIP_DISPLAY blip1_jm1 BLIP_ONLY
 
  flag_car_blip_displayed_jm1 = TRUE
 
  flag_car_blip_displayed_jm1 = TRUE
  
Assignments and comparisons do not suffer such a restriction and, what's more, in case of too long lines (wider than 255 characters) immediates can safely replace string constants to shorten the exceeding length and fall within the limits. During the development stage, the game's map experiences lots of continuous changes that make the management of objects, as a result of having a fixed indexing, pretty awkward without taking into account their bulk amount. In this respect, parameters expecting level objects are able to define the used objects (no more longer than 23 characters) under the hood, bringing them together in a sorted array whose criteria depends on the order of their appearance, something other than the default models which are hardcoded (for peds, cars, weapons, wheels, cutscene objects and the like). A blank, unavailable object is always reserved, shifting ahead each next negated position becoming one-based. Negative indices assure models fit in the used objects array, according to which the runtime matches the right index through a lookup table:
+
Assignments and comparisons do not suffer such a restriction and, what's more, in case of too long lines (wider than 255 characters) immediates can safely replace string constants to shorten the exceeding length and fall within the limits. Of course, string constants are bound to the same parsing rules as string identifiers but, as being mainly hardcoded, they are just as limitless in length.<br/>
 +
During the development stage, the game's map experiences lots of continuous changes that make the management of objects, as a result of having a fixed indexing, pretty awkward without taking into account their bulk amount. In this respect, parameters expecting level objects are able to define the used objects (no more longer than 23 characters) under the hood, bringing them together in a sorted array whose criteria depends on the order of their appearance, something other than the default models which are hardcoded (for peds, cars, weapons, wheels, cutscene objects and the like). A blank, unavailable object is always reserved, shifting ahead each next negated position becoming one-based. Negative indices assure models fit in the used objects array, according to which the runtime matches the right index through a lookup table:
  
 
  REQUEST_MODEL bridgefuka // First use ever. It compiles -1 from now on.
 
  REQUEST_MODEL bridgefuka // First use ever. It compiles -1 from now on.
Line 143: Line 168:
 
  CREATE_OBJECT_NO_OFFSET bridgefukb 787.835 -939.24 38.971 damageb
 
  CREATE_OBJECT_NO_OFFSET bridgefukb 787.835 -939.24 38.971 damageb
  
The lack of error-checking requires a meticulous handwriting to avoid script deadlocks at runtime, the reason why both default models and level objects are loaded straight from [[Item Definition|IDE]] files for Vice City's remastered build. Nonetheless, iterating among several objects can be very expensive for a poorly optimised, rough compiler even on fast machines, not to mention namespaced constants are likely to collide without specializing prefixes (i.e. '''SNIPER''' camera mode and weapon name, formerly '''WEAPON_SNIPER'''), enough to revert back thereafter. Assignments and comparisons have no clue about used objects and are therefore not designed to accommodate or implicitly define one on their own, because they are supposed to be strict with the identifier existence as being more prone to work out with variables. This concept somehow extends to those parameters not featuring used objects as a general rule. If an unusual application needs to take place, making use of non-inlined '''CONSTANT_INT''' declarations would hint the compiler to treat unequivocally the specified string constants as used objects, truly defining a new one on the first practical usage wherever it occurs and not yielding an undefined variable error:
+
The lack of error-checking requires a meticulous handwriting to avoid script deadlocks at runtime, the reason why default models of which undefined names follow the format <code>NOT_USED%d</code> (where <code>%d</code> is a model index from 0 to 299) and level objects are loaded straight from [[Item Definition|IDE]] files for Vice City's remastered build. Nonetheless, iterating among several objects can be very expensive for a poorly optimized, rough compiler even on fast machines, not to mention enumerators are likely to collide without specializing prefixes (i.e. <code>SNIPER</code> camera mode and weapon name, formerly <code>WEAPON_SNIPER</code>), enough to revert back thereafter.<br/>
 +
Assignments and comparisons have no clue about used objects and are therefore not designed to accommodate or implicitly define one on their own, because they are supposed to be strict with the identifier existence as being more prone to work out with variables. This concept somehow extends to those parameters not featuring used objects as a general rule. If an unusual application needs to take place, making use of non-inlined <code>CONSTANT_INT</code> declarations would hint the compiler to treat unequivocally the specified string constants as used objects, truly defining a new one on the first practical usage wherever it occurs and not yielding an undefined variable error:
  
 
  CONSTANT_INT cj_pizza_1
 
  CONSTANT_INT cj_pizza_1
 
  CONSTANT_INT cj_pizza_2
 
  CONSTANT_INT cj_pizza_2
  VAR_INT test_model1 test_model2
+
  VAR_INT food_model1 food_model2
 
   
 
   
 
  REQUEST_MODEL pizzahigh  // -1
 
  REQUEST_MODEL pizzahigh  // -1
  test_model1 = cj_pizza_1 // -2
+
  food_model1 = cj_pizza_1 // -2
  test_model2 = cj_pizza_2 // -3
+
  food_model2 = cj_pizza_2 // -3
  REQUEST_MODEL test_model1
+
  REQUEST_MODEL food_model1
  REQUEST_MODEL test_model2
+
  REQUEST_MODEL food_model2
  
Any string constant passed in place of an object model compiles a used object indiscriminately assuming no '''CONSTANT_INT''' declaration, preventing redefinitions (whether default or namespaced), does exist. Messing around with frequent compiler tool recompilations can be tedious solely to establish broad, same-indexed or math-related string constants but fortunately, in the last Trilogy chapter, the language offers the opportunity to settle user-supplied default constants for numeric literals using '''CONST'''-prefixed declarations which, alike for variables and '''CONSTANT_INT'''s, are backward accessible:
+
Any string constant passed in place of an object model compiles a used object indiscriminately assuming no <code>CONSTANT_INT</code> declaration, also preventing redefinitions towards default constants, enumerators and variable names, does exist. Messing around with frequent compiler tool recompilations can be tedious solely to establish broad, same-indexed or math-related string constants but fortunately, in the last Trilogy chapter, the language offers the opportunity to settle user-supplied default constants for numeric literals using <code>CONST</code>-prefixed declarations (maximum 39 characters long) which, alike for variables and <code>CONSTANT_INT</code>s, are backwards accessible:
  
 
  CONST_INT gf_date_active 1
 
  CONST_INT gf_date_active 1
Line 164: Line 190:
 
  rad_angle /= 180.0
 
  rad_angle /= 180.0
  
Given that default models are also default constants in Stories chapters<sup>[no source]</sup>, default constants and used objects count as pseudoconstants: contrary to what namespaced constants entail, generic alternatives are favoured on assignment or comparison command pairing. It should be pointed out that, due to a critical compiler bug, the high 16 bits of the value held by a namespaced constant are unexpectedly discarded on assignment or comparison and that, if set, the 16th bit yields a nonexistent variable error (i.e. '''THREAT_GANG9''' flag) prior Stories chapters, where a default constant is compiled only if the low 16 bits represent a value lesser than -1<sup>[no source]</sup>:
+
Given that default models are also default constants in Stories chapters<sup>[no source]</sup>, default constants and used objects count as pseudoconstants: contrary to what non-default enumerators entail, generic alternatives are favoured on assignment or comparison command matching. It should be pointed out that, due to a critical compiler bug, the high-order word of the value held by any enumerator is unexpectedly discarded on assignment or comparison and that, if set, the 16th bit yields a nonexistent variable error (i.e. <code>THREAT_GANG9</code> flag) prior Stories chapters, after which a default constant is compiled instead (buggy behaviour) and recognized only if the low-order word represents a value not equal to -1<sup>[no source]</sup>:
  
 
{|style="table-layout: fixed; margin-bottom: -8px" width=100% cellspacing=0 cellpadding=0
 
{|style="table-layout: fixed; margin-bottom: -8px" width=100% cellspacing=0 cellpadding=0
Line 171: Line 197:
 
|width=50%|'''Script multifile'''
 
|width=50%|'''Script multifile'''
 
|-
 
|-
|<pre style="white-space: pre; overflow-x: scroll">
+
|style="vertical-align: top"|
SET_CHAR_THREAT_SEARCH test_char THREAT_GANG_GOLFER
+
<pre style="white-space: pre; overflow-x: scroll">
SET_CHAR_THREAT_SEARCH test_char THREAT_GANG9
+
SET_CHAR_THREAT_SEARCH npc_char THREAT_GANG_GOLFER
SET_CHAR_THREAT_SEARCH test_char THREAT_EMERGENCY
+
SET_CHAR_THREAT_SEARCH npc_char THREAT_GANG9
 +
SET_CHAR_THREAT_SEARCH npc_char THREAT_EMERGENCY
 
threat_flag = THREAT_GANG_GOLFER
 
threat_flag = THREAT_GANG_GOLFER
 
threat_flag = THREAT_GANG9 // Ill-formed in Trilogy.
 
threat_flag = THREAT_GANG9 // Ill-formed in Trilogy.
 
threat_flag = THREAT_EMERGENCY
 
threat_flag = THREAT_EMERGENCY
 
</pre>
 
</pre>
|<pre style="white-space: pre; overflow-x: scroll">
+
|style="vertical-align: top"|
SET_CHAR_THREAT_SEARCH test_char 16384
+
<pre style="white-space: pre; overflow-x: scroll">
SET_CHAR_THREAT_SEARCH test_char 32768
+
SET_CHAR_THREAT_SEARCH npc_char 16384
SET_CHAR_THREAT_SEARCH test_char 65536
+
SET_CHAR_THREAT_SEARCH npc_char 32768
 +
SET_CHAR_THREAT_SEARCH npc_char 65536
 
SET_VAR_INT_TO_CONSTANT threat_flag 16384
 
SET_VAR_INT_TO_CONSTANT threat_flag 16384
 
SET_VAR_INT threat_flag 32768
 
SET_VAR_INT threat_flag 32768
Line 189: Line 217:
 
|}
 
|}
  
This inconvenient unwittingly affects real code in Liberty City Stories in one circumstance. On a final note, string constants are incompatible with optional arguments and thus taking advantage of a temporary variable would overcome this syntactic limitation.
+
This drawback unwittingly affects real code in Liberty City Stories in one circumstance. On a final note, string constants are incompatible with optional arguments and thus taking advantage of a temporary variable would overcome this syntactic limitation.
  
 
==Operators==
 
==Operators==
As soon as a numeric or text label variable is declared, it can be subjected to algebric operations and/or logical comparisons by virtue of several operators. Their support is sadly very primitive, in fact the ability to establish complex expressions with parentheses and such is not featured albeit one and only binary operation is enabled to follow the basic assignment. In this regard, the variable being assigned to the lvalue cannot be the same as the outer rvalue for non-commutative operations: <code>VAR1 = THING - VAR1</code>, <code>VAR1 = THING / VAR1</code>, <code>VAR1 = THING +@ VAR1</code> and <code>VAR1 = THING -@ VAR1</code> are all ill-formed. This issue arises because the explicit usage of a temporary variable is needed which would be harmful for the compiler to waste by itself under the hood, thus here expressions are necessarily made up of distinct two-operand instructions, that is the lvalue content is initialized prior encoding any supplementary rvalue arithmetic:
+
As soon as a numeric or text label variable is declared, it can be subjected to algebric operations and/or logical comparisons by virtue of several operators. Their support is sadly very primitive, in fact the ability to establish complex expressions with parentheses and such is not featured albeit one and only binary operation is enabled to follow the basic assignment. In this regard, the variable being assigned to the lvalue cannot be the same as the outer rvalue for non-commutative operations: <code>VAR1 = THING - VAR1</code>, <code>VAR1 = THING / VAR1</code>, <code>VAR1 = THING +@ VAR1</code> and <code>VAR1 = THING -@ VAR1</code> are all ill-formed (where <code>THING</code> &ne; <code>VAR1</code>). This issue arises because the explicit usage of a temporary variable is needed which would be harmful for the compiler to waste by itself under the hood, thus here expressions are necessarily made up of distinct two-operand instructions, that is the lvalue content is initialized prior encoding any supplementary rvalue arithmetic:
  
//VAR1 = 1 - VAR1 // Invalid, cause VAR1 = 1; VAR1 -= VAR1 doesn't make sense. It would perform 1 - 1 = 0.
+
{|style="table-layout: fixed; margin-bottom: -8px" width=100% cellspacing=0 cellpadding=0
VAR1 = 1 - VAR2   // Valid, cause VAR1 = 1; VAR1 -= VAR2 doesn't null itself like above.
+
|width=50%|'''Mission script'''
VAR1 = 1 + VAR1   // Valid, addition (as well as multiplication) is commutative so this is compiled to VAR1 += 1.
+
|width=16px rowspan=2|
 +
|width=50%|'''Script multifile'''
 +
|-
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
VAR1 = 1 - VAR1 // Invalid, cause VAR1 = 1; VAR1 -= VAR1 doesn't make sense.
 +
                // It would perform 1 - 1 = 0. Workaround needed.
 +
VAR1 = 1 / VAR1 // Invalid, cause VAR1 = 1; VAR1 /= VAR1 does no effect.
 +
                // It would perform 1 / 1 = 1. Workaround needed.
 +
VAR1 = 1 - VAR2 // Valid, cause VAR1 = 1; VAR1 -= VAR2 doesn't null itself like above.
 +
                // It performs x = 1 - y.
 +
VAR1 = 1 + VAR1 // Valid, addition (as well as multiplication) is commutative so VAR1 += 1.
 +
                // It performs x = x + 1.
 +
</pre>
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
NEGATE VAR1 // Unknown command (speculative). It would do x = -x.
 +
ADD_THING_TO_THING VAR1 1
 +
ONEOVER VAR1 // Unknown command (speculative). It would do x = 1 / x.
 +
MULT_THING_BY_THING VAR1 1
 +
SET VAR1 1
 +
SUB_THING_FROM_THING VAR1 VAR2
 +
ADD_THING_TO_THING VAR1 1
  
The subtraction of positive or negative rvalues necessitates a splitting character in order to discern the infix operator unambiguously, which would be treated as part of the literal or a variable decrement otherwise (i.e. <code>VAR1 = VAR1 -1</code> or <code>VAR1 = VAR1 --1</code>). Typically, string constants are not suitable for math calculations because of the lack of pairable command alternatives but even so they are semantically contemplated as long as a namespaced constant is provided as the inner rvalue of a compound assignment or a default constant is passed to any rvalue. Another clear limitation is prefix and postfix operators do not apply onto arguments, hence there's no concrete differentiation. However, the language introduces the timed addition/subtraction to looply update a variable in a frame-rate independent way, the cast assignment to do a mutual conversion between integers and floats but it doesn't give support for the modulo operation as its predecessor. The inequality comparison was planned but quickly gone obsolete<sup>[no source]</sup> &ndash; availing of the negated form of the equality operator would have sounded more intuitive but one should be aware the not-flag is not bundled with the command index when pairing command alternatives. Due to a programmers' negligence, the local-global in/equality comparison between integer or float variables is not feasible except in the last chapter of Trilogy and Stories series.
+
</pre>
 +
|}
  
<span style="display: block; margin: 1em 0; font-size: 1.17em; color: black">'''Arithmetic operators'''</span>
+
The subtraction of positive or negative rvalues necessitates a splitting character in order to discern the infix operator unambiguously, which would be treated as part of the literal or a variable decrement otherwise (i.e. <code>VAR1 = VAR1 -1</code> or <code>VAR1 = VAR1 --1</code>). Typically, string constants are not suitable for math calculations because of the lack of matchable alternative commands but even so they are semantically contemplated as long as a non-default enumerator is provided as the inner rvalue of a ternary operation or a default constant or enumerator is passed to any rvalue (i.e. <code>VAR1 = PAD1 + 1</code>, <code>VAR1 = DAY + 1</code> or <code>VAR1 = 1 + KILLFRENZY_INITIALLY</code>). Another clear limitation is prefix and postfix operators do not apply onto arguments, hence there's no concrete differentiation. However, the language introduces the timed addition/subtraction to looply update a variable in a frame-rate independent way, the cast assignment to do a mutual conversion between integers and floats but it doesn't give support for the modulo operation as its predecessor. The inequality comparison was planned but quickly gone obsolete<sup>[no source]</sup> &ndash; availing of the negated form of the equality operator would have sounded more intuitive but one should be aware the not-flag is not bundled with the command index when matching alternative commands. Due to a negligence of the programmers in charge, liable for forgetting some assets of the scripting environment, the local-global in/equality comparison between integer or float variables is not feasible except in the last chapter of Trilogy and Stories series. Surprisingly enough, the basic assignment may prepend <code>ABS</code> which in so doing would be capable of receiving numeric literals because of the pre-empted rvalue assigning (i.e. <code>VAR = ABS THING</code>). In principle, <code>SET</code> is not compiled only if both lvalue and rvalue (whether inner or outer) of a ternary operation or <code>ABS</code> assignment collide (identity).
 +
 
 +
<span style="display: block; margin: 1em 0; font-size: 1.17em; font-weight: bold; color: black" id="Arithmetic_operators">Arithmetic operators</span>
  
 
{|class=wikitable
 
{|class=wikitable
Line 235: Line 288:
 
|}
 
|}
  
<span style="display: block; margin: 1em 0; font-size: 1.17em; color: black">'''Compound assignment operators'''</span>
+
<span style="display: block; margin: 1em 0; font-size: 1.17em; font-weight: bold; color: black" id="Compound_assignment_operators">Compound assignment operators</span>
  
 
{|class=wikitable
 
{|class=wikitable
Line 260: Line 313:
 
|}
 
|}
  
<span style="display: block; margin: 1em 0; font-size: 1.17em; color: black">'''Comparison operators/relational operators'''</span>
+
<span style="display: block; margin: 1em 0; font-size: 1.17em; font-weight: bold; color: black" id="Comparison_operators.2Frelational_operators">Comparison operators/relational operators</span>
  
 
{|class=wikitable
 
{|class=wikitable
Line 272: Line 325:
 
|Equal to||align=center|<pre style="margin: 0">VAR = THING</pre>||align=center|&#x2713;||align=center|&#x2713;||align=center|&#x2713;
 
|Equal to||align=center|<pre style="margin: 0">VAR = THING</pre>||align=center|&#x2713;||align=center|&#x2713;||align=center|&#x2713;
 
|-
 
|-
|Not equal to||align=center|<pre style="margin: 0">VAR <> THING</pre>||align=center|&#x2713;||align=center|&#x2713;||
+
|Not equal to<sup>[no source]</sup>||align=center|<pre style="margin: 0">VAR <> THING</pre>||align=center|&#x2713;||align=center|&#x2713;||
 
|-
 
|-
 
|Greater than||align=center|<pre style="margin: 0">THING > THING</pre>||align=center|&#x2713;||align=center|&#x2713;||
 
|Greater than||align=center|<pre style="margin: 0">THING > THING</pre>||align=center|&#x2713;||align=center|&#x2713;||
Line 283: Line 336:
 
|}
 
|}
  
<span style="display: block; margin: 1em 0; font-size: 1.17em; color: black">'''Logical operators'''</span>
+
<span style="display: block; margin: 1em 0; font-size: 1.17em; font-weight: bold; color: black" id="Logical_operators">Logical operators</span>
  
 
{|class=wikitable
 
{|class=wikitable
Line 298: Line 351:
  
 
==Commands==
 
==Commands==
The [[Wikipedia:Imperative programming|imperative programming]] paradigm provides for a conglomerate of commands the script is filled up of and structured in, which are seen as orders to instruct the execution of the relative built-in portion of game code at runtime. Their invocation is faithful to [[Wikipedia:Functional programming|procedure]] calls: they may feature zero or more parameters of any type or indefinite, depending on whether or not qualified as optional, and receive as much as arguments either by-value or by-reference affecting the read/written access accordingly (do note a pure reference does not initialize anything). Alike procedures, no assignable result is returned but a boolean state is catched anyway on conditional evaluation. One major peculiarity is command names are usually identified by a verb in its imperative form:
+
The [[Wikipedia:Imperative programming|imperative programming]] paradigm provides for a conglomerate of commands the script is filled up of and structured in, which are seen as orders to instruct the execution of the relative built-in portion of game code at runtime. Their invocation is faithful to [[Wikipedia:Functional programming|procedure]] calls: they may feature zero or more parameters (up to 16+ in III\Vice City, 32+ in San Andreas and Stories) of any type or indefinite, depending on whether or not qualified as optional, and receive as much as arguments either by-value or by-reference affecting the read/written access accordingly (do note a pure reference does not initialize anything). Alike procedures, no assignable result is returned but a boolean state is caught anyway on conditional evaluation. One major peculiarity is command names are usually identified by a verb in its imperative form:
  
 
  GIVE_WEAPON_TO_CHAR mafia_1X WEAPONTYPE_UZI 999
 
  GIVE_WEAPON_TO_CHAR mafia_1X WEAPONTYPE_UZI 999
  
Historically, complex commands stand out over the simple counterpart in the way they are implemented compiler-wise:
+
Command names are leftmost identifiers not ending with a colon (not a label) and not preceded or followed by an operator token (not a variable). On code generation, their definition is turned into a 15-bit index reflecting the position the name is matched at in a list of command descriptors and packed with the not-flag stored in the most significant bit, accompained by a known or indeterminate number of typified, somewhat typified or thorougly nontypified operands completing several [[Wikipedia:Opcode|instructions]] which are arranged in order to bring forth the intermediate script [[Wikipedia:Bytecode|bytecode]]. At every command corresponds an output except for variable, string constant and lexical scope declarators or for the classic <code>NOP</code> ([[Wikipedia:NOP|no operation]]). Operand immediates mainly use the shortest representation for size optimization, yet label references always yield 32-bit addresses.<br/>
 +
Game progress rely on many countable stuff to determine the percentage acquired at any given time which are extremely time spending and easily error-prone to quantize manually. Counter-commands come to aid, sort of adaptive counters featuring a possibly zero-valued argument updated automatically during the compilation process that keeps track of the times a few commands are used or of the total sum of some argument value of certain commands, discarding nonimmediates:
  
* Variable and local scope declarators are true, non-compilable commands;
+
{|class=wikitable style="text-align: left"
* File includers assemble multiple files in a single source and require the rightmost argument to be a filename if inside the main script or main extension, otherwise '''START_NEW_SCRIPT''' is expected (this behaviour is originally buggy);
 
* Script starters/streamers and function callers involve a type-checking of the optional parameters passed basing on the variables declared in the local scope, whose opening brace must precede the script label reference even few lines earlier since the second Trilogy chapter (the first one needs it right after instead but it's likely it is merely due to good style programming);
 
* '''SCRIPT_NAME''' defines an univocal script name immune to redefinitions but not among mission scripts because they can only run one at a time;
 
* '''SKIP_CUTSCENE_START''' and '''SKIP_CUTSCENE_END''' mark a specific region of code (mostly inside mission scripts). Several blocks cannot be nested together;
 
* Dynamic counters expect one argument to be a zero-value which gets updated automatically/internally on compilation, keeping track of the times few commands are used (unless, if applicable, the only acceptable argument is a variable, then the command is not taken into account) or the total sum of the first argument values (of course, non-immediates are discarded):
 
 
 
:{|class=wikitable style="text-align: left"
 
 
|-
 
|-
 
!Initializer
 
!Initializer
!Dependency/ies
+
!Dependency
!width=50px|Check<br/>arg.
 
 
!width=50px|Is<br/>addend
 
!width=50px|Is<br/>addend
 
|-
 
|-
|'''SET_COLLECTABLE1_TOTAL'''||'''CREATE_COLLECTABLE1'''||||
+
|<code>SET_COLLECTABLE1_TOTAL</code>||<code>CREATE_COLLECTABLE1</code>||
 
|-
 
|-
|'''SET_PROGRESS_TOTAL'''||'''PLAYER_MADE_PROGRESS'''||align=center|&#x2713;||align=center|&#x2713;
+
|<code>SET_PROGRESS_TOTAL</code>||<code>PLAYER_MADE_PROGRESS</code>||align=center|&#x2713;
 
|-
 
|-
|rowspan=2|'''SET_TOTAL_NUMBER_OF_MISSIONS'''||'''REGISTER_MISSION_PASSED'''||align=center|&#x2713;||
+
|rowspan=2|<code>SET_TOTAL_NUMBER_OF_MISSIONS</code>||<code>REGISTER_MISSION_PASSED</code>||
 
|-
 
|-
|'''REGISTER_ODDJOB_MISSION_PASSED'''||||
+
|<code>REGISTER_ODDJOB_MISSION_PASSED</code>||
 
|-
 
|-
|'''SET_MISSION_RESPECT_TOTAL'''||'''AWARD_PLAYER_MISSION_RESPECT'''||align=center|&#x2713;||align=center|&#x2713;
+
|<code>SET_MISSION_RESPECT_TOTAL</code>||<code>AWARD_PLAYER_MISSION_RESPECT</code>||align=center|&#x2713;
 
|}
 
|}
  
A third category consisting of special commands or command pairs, is able to look for the matching signature into a list of akin commands on the basis of the data type of the passed arguments and choose, accordingly, the equivalent alternative in a direct and effortless way. Although the alternative commands are also accessible by and can share the same definition, the selection process is not entirely conform to [[Wikipedia:Function overloading|function overloading]] because these still maintain their own unique name, they are just smartly resolved through common aliases. The complete lists are reported below:
+
Condition-based statements and counter-commands along with the file includers outside of the main script or main extensions, where labels are expected instead of filenames, are mostly parameterized regardless of their own descriptor (the type-check is still done though), while another category consisting of multicommands is able to look for the matching prototype into a list of akin commands on the basis of the data type of the passed arguments and choose, accordingly, the equivalent alternative in a direct and effortless way. Although the alternative commands are also accessible by and can share the same definition, the selection process is not entirely conform to [[Wikipedia:Function overloading|function overloading]] because these still retain their exclusive name as being plainly resolved through weak aliases. A complete listing is shown below:
  
 
{|width=100% cellspacing=0 cellpadding=0
 
{|width=100% cellspacing=0 cellpadding=0
 
|-
 
|-
|width=50%|<span style="display: block; margin: 0; font-size: 1.17em; color: black">'''Trilogy and first Stories chapters'''</span>||width=50%|<span style="display: block; margin: 0; font-size: 1.17em; color: black">'''Second Stories chapter'''</span>
+
|width=50%|<span style="display: block; margin: 0; font-size: 1.17em; font-weight: bold; color: black">Trilogy and first Stories chapters</span>||width=50%|<span style="display: block; margin: 0; font-size: 1.17em; font-weight: bold; color: black">Second Stories chapter</span>
 
|-
 
|-
 
|valign=top|<div style="overflow: auto; float: left" width=auto>
 
|valign=top|<div style="overflow: auto; float: left" width=auto>
{|class="wikitable" style="margin-bottom: 0" width=100%
+
{|class=wikitable style="margin-bottom: 0" width=100%
 
|-
 
|-
!colspan=2 style="text-align: left"|Command
+
!colspan=2 width=420px style="text-align: left"|Command
 
!rowspan=2 width=64px|Game<br/>support
 
!rowspan=2 width=64px|Game<br/>support
 
|-
 
|-
|width=20px|
+
!width=16px|
 
!style="text-align: left"|Alternative
 
!style="text-align: left"|Alternative
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|SET (<code>=</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>SET</code> (<code>=</code>)
 
|width=64px align=center|Since {{icon|3}}
 
|width=64px align=center|Since {{icon|3}}
 
|-
 
|-
|rowspan=18 width=20px|
+
|rowspan=18 width=16px|
|'''SET_VAR_INT'''||rowspan=12|
+
|<code>SET_VAR_INT</code>||rowspan=12|
 
|-
 
|-
|'''SET_VAR_FLOAT'''
+
|<code>SET_VAR_FLOAT</code>
 
|-
 
|-
|'''SET_LVAR_INT'''
+
|<code>SET_LVAR_INT</code>
 
|-
 
|-
|'''SET_LVAR_FLOAT'''
+
|<code>SET_LVAR_FLOAT</code>
 
|-
 
|-
|'''SET_VAR_INT_TO_VAR_INT'''
+
|<code>SET_VAR_INT_TO_VAR_INT</code>
 
|-
 
|-
|'''SET_LVAR_INT_TO_LVAR_INT'''
+
|<code>SET_LVAR_INT_TO_LVAR_INT</code>
 
|-
 
|-
|'''SET_VAR_FLOAT_TO_VAR_FLOAT'''
+
|<code>SET_VAR_FLOAT_TO_VAR_FLOAT</code>
 
|-
 
|-
|'''SET_LVAR_FLOAT_TO_LVAR_FLOAT'''
+
|<code>SET_LVAR_FLOAT_TO_LVAR_FLOAT</code>
 
|-
 
|-
|'''SET_VAR_FLOAT_TO_LVAR_FLOAT'''
+
|<code>SET_VAR_FLOAT_TO_LVAR_FLOAT</code>
 
|-
 
|-
|'''SET_LVAR_FLOAT_TO_VAR_FLOAT'''
+
|<code>SET_LVAR_FLOAT_TO_VAR_FLOAT</code>
 
|-
 
|-
|'''SET_VAR_INT_TO_LVAR_INT'''
+
|<code>SET_VAR_INT_TO_LVAR_INT</code>
 
|-
 
|-
|'''SET_LVAR_INT_TO_VAR_INT'''
+
|<code>SET_LVAR_INT_TO_VAR_INT</code>
 
|-
 
|-
|'''SET_VAR_INT_TO_CONSTANT'''||rowspan=2 align=center|Since {{icon|vc}}
+
|<code>SET_VAR_INT_TO_CONSTANT</code>||rowspan=2 align=center|Since {{icon|vc}}
 
|-
 
|-
|'''SET_LVAR_INT_TO_CONSTANT'''
+
|<code>SET_LVAR_INT_TO_CONSTANT</code>
 
|-
 
|-
|'''SET_VAR_TEXT_LABEL'''||rowspan=4 align=center|{{icon|sa}} only
+
|<code>SET_VAR_TEXT_LABEL</code>||rowspan=4 align=center|{{icon|sa}} only
 
|-
 
|-
|'''SET_LVAR_TEXT_LABEL'''
+
|<code>SET_LVAR_TEXT_LABEL</code>
 
|-
 
|-
|'''SET_VAR_TEXT_LABEL16'''
+
|<code>SET_VAR_TEXT_LABEL16</code>
 
|-
 
|-
|'''SET_LVAR_TEXT_LABEL16'''
+
|<code>SET_LVAR_TEXT_LABEL16</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|CSET (<code>=#</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>CSET</code> (<code>=#</code>)
 
|width=64px align=center|Since {{icon|3}}
 
|width=64px align=center|Since {{icon|3}}
 
|-
 
|-
|rowspan=8 width=20px|
+
|rowspan=8 width=16px|
|'''CSET_VAR_INT_TO_VAR_FLOAT||rowspan=8|
+
|<code>CSET_VAR_INT_TO_VAR_FLOAT</code>||rowspan=8|
 
|-
 
|-
|'''CSET_VAR_FLOAT_TO_VAR_INT
+
|<code>CSET_VAR_FLOAT_TO_VAR_INT</code>
 
|-
 
|-
|'''CSET_LVAR_INT_TO_VAR_FLOAT
+
|<code>CSET_LVAR_INT_TO_VAR_FLOAT</code>
 
|-
 
|-
|'''CSET_LVAR_FLOAT_TO_VAR_INT
+
|<code>CSET_LVAR_FLOAT_TO_VAR_INT</code>
 
|-
 
|-
|'''CSET_VAR_INT_TO_LVAR_FLOAT
+
|<code>CSET_VAR_INT_TO_LVAR_FLOAT</code>
 
|-
 
|-
|'''CSET_VAR_FLOAT_TO_LVAR_INT
+
|<code>CSET_VAR_FLOAT_TO_LVAR_INT</code>
 
|-
 
|-
|'''CSET_LVAR_INT_TO_LVAR_FLOAT
+
|<code>CSET_LVAR_INT_TO_LVAR_FLOAT</code>
 
|-
 
|-
|'''CSET_LVAR_FLOAT_TO_LVAR_INT
+
|<code>CSET_LVAR_FLOAT_TO_LVAR_INT</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|ADD_THING_TO_THING (<code>+=</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>ADD_THING_TO_THING</code> (<code>+=</code>)
 
|width=64px align=center|Since {{icon|3}}
 
|width=64px align=center|Since {{icon|3}}
 
|-
 
|-
|rowspan=12 width=20px|
+
|rowspan=12 width=16px|
|'''ADD_VAL_TO_INT_VAR'''||rowspan=12|
+
|<code>ADD_VAL_TO_INT_VAR</code>||rowspan=12|
 
|-
 
|-
|'''ADD_VAL_TO_FLOAT_VAR'''
+
|<code>ADD_VAL_TO_FLOAT_VAR</code>
 
|-
 
|-
|'''ADD_VAL_TO_INT_LVAR'''
+
|<code>ADD_VAL_TO_INT_LVAR</code>
 
|-
 
|-
|'''ADD_VAL_TO_FLOAT_LVAR'''
+
|<code>ADD_VAL_TO_FLOAT_LVAR</code>
 
|-
 
|-
|'''ADD_INT_VAR_TO_INT_VAR'''
+
|<code>ADD_INT_VAR_TO_INT_VAR</code>
 
|-
 
|-
|'''ADD_FLOAT_VAR_TO_FLOAT_VAR'''
+
|<code>ADD_FLOAT_VAR_TO_FLOAT_VAR</code>
 
|-
 
|-
|'''ADD_INT_LVAR_TO_INT_LVAR'''
+
|<code>ADD_INT_LVAR_TO_INT_LVAR</code>
 
|-
 
|-
|'''ADD_FLOAT_LVAR_TO_FLOAT_LVAR'''
+
|<code>ADD_FLOAT_LVAR_TO_FLOAT_LVAR</code>
 
|-
 
|-
|'''ADD_INT_VAR_TO_INT_LVAR'''
+
|<code>ADD_INT_VAR_TO_INT_LVAR</code>
 
|-
 
|-
|'''ADD_FLOAT_VAR_TO_FLOAT_LVAR'''
+
|<code>ADD_FLOAT_VAR_TO_FLOAT_LVAR</code>
 
|-
 
|-
|'''ADD_INT_LVAR_TO_INT_VAR'''
+
|<code>ADD_INT_LVAR_TO_INT_VAR</code>
 
|-
 
|-
|'''ADD_FLOAT_LVAR_TO_FLOAT_VAR'''
+
|<code>ADD_FLOAT_LVAR_TO_FLOAT_VAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|SUB_THING_FROM_THING (<code>-=</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>SUB_THING_FROM_THING</code> (<code>-=</code>)
 
|width=64px align=center|Since {{icon|3}}
 
|width=64px align=center|Since {{icon|3}}
 
|-
 
|-
|rowspan=12 width=20px|
+
|rowspan=12 width=16px|
|'''SUB_VAL_FROM_INT_VAR'''||rowspan=12|
+
|<code>SUB_VAL_FROM_INT_VAR</code>||rowspan=12|
 
|-
 
|-
|'''SUB_VAL_FROM_FLOAT_VAR'''
+
|<code>SUB_VAL_FROM_FLOAT_VAR</code>
 
|-
 
|-
|'''SUB_VAL_FROM_INT_LVAR'''
+
|<code>SUB_VAL_FROM_INT_LVAR</code>
 
|-
 
|-
|'''SUB_VAL_FROM_FLOAT_LVAR'''
+
|<code>SUB_VAL_FROM_FLOAT_LVAR</code>
 
|-
 
|-
|'''SUB_INT_VAR_FROM_INT_VAR'''
+
|<code>SUB_INT_VAR_FROM_INT_VAR</code>
 
|-
 
|-
|'''SUB_FLOAT_VAR_FROM_FLOAT_VAR'''
+
|<code>SUB_FLOAT_VAR_FROM_FLOAT_VAR</code>
 
|-
 
|-
|'''SUB_INT_LVAR_FROM_INT_LVAR'''
+
|<code>SUB_INT_LVAR_FROM_INT_LVAR</code>
 
|-
 
|-
|'''SUB_FLOAT_LVAR_FROM_FLOAT_LVAR'''
+
|<code>SUB_FLOAT_LVAR_FROM_FLOAT_LVAR</code>
 
|-
 
|-
|'''SUB_INT_VAR_FROM_INT_LVAR'''
+
|<code>SUB_INT_VAR_FROM_INT_LVAR</code>
 
|-
 
|-
|'''SUB_FLOAT_VAR_FROM_FLOAT_LVAR'''
+
|<code>SUB_FLOAT_VAR_FROM_FLOAT_LVAR</code>
 
|-
 
|-
|'''SUB_INT_LVAR_FROM_INT_VAR'''
+
|<code>SUB_INT_LVAR_FROM_INT_VAR</code>
 
|-
 
|-
|'''SUB_FLOAT_LVAR_FROM_FLOAT_VAR'''
+
|<code>SUB_FLOAT_LVAR_FROM_FLOAT_VAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|MULT_THING_BY_THING (<code>*=</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>MULT_THING_BY_THING</code> (<code>*=</code>)
 
|width=64px align=center|Since {{icon|3}}
 
|width=64px align=center|Since {{icon|3}}
 
|-
 
|-
|rowspan=12 width=20px|
+
|rowspan=12 width=16px|
|'''MULT_INT_VAR_BY_VAL'''||rowspan=12|
+
|<code>MULT_INT_VAR_BY_VAL</code>||rowspan=12|
 
|-
 
|-
|'''MULT_FLOAT_VAR_BY_VAL'''
+
|<code>MULT_FLOAT_VAR_BY_VAL</code>
 
|-
 
|-
|'''MULT_INT_LVAR_BY_VAL'''
+
|<code>MULT_INT_LVAR_BY_VAL</code>
 
|-
 
|-
|'''MULT_FLOAT_LVAR_BY_VAL'''
+
|<code>MULT_FLOAT_LVAR_BY_VAL</code>
 
|-
 
|-
|'''MULT_INT_VAR_BY_INT_VAR'''
+
|<code>MULT_INT_VAR_BY_INT_VAR</code>
 
|-
 
|-
|'''MULT_FLOAT_VAR_BY_FLOAT_VAR'''
+
|<code>MULT_FLOAT_VAR_BY_FLOAT_VAR</code>
 
|-
 
|-
|'''MULT_INT_LVAR_BY_INT_LVAR'''
+
|<code>MULT_INT_LVAR_BY_INT_LVAR</code>
 
|-
 
|-
|'''MULT_FLOAT_LVAR_BY_FLOAT_LVAR'''
+
|<code>MULT_FLOAT_LVAR_BY_FLOAT_LVAR</code>
 
|-
 
|-
|'''MULT_INT_VAR_BY_INT_LVAR'''
+
|<code>MULT_INT_VAR_BY_INT_LVAR</code>
 
|-
 
|-
|'''MULT_FLOAT_VAR_BY_FLOAT_LVAR'''
+
|<code>MULT_FLOAT_VAR_BY_FLOAT_LVAR</code>
 
|-
 
|-
|'''MULT_INT_LVAR_BY_INT_VAR'''
+
|<code>MULT_INT_LVAR_BY_INT_VAR</code>
 
|-
 
|-
|'''MULT_FLOAT_LVAR_BY_FLOAT_VAR'''
+
|<code>MULT_FLOAT_LVAR_BY_FLOAT_VAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|DIV_THING_BY_THING (<code>/=</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>DIV_THING_BY_THING</code> (<code>/=</code>)
 
|width=64px align=center|Since {{icon|3}}
 
|width=64px align=center|Since {{icon|3}}
 
|-
 
|-
|rowspan=12 width=20px|
+
|rowspan=12 width=16px|
|'''DIV_INT_VAR_BY_VAL'''||rowspan=12|
+
|<code>DIV_INT_VAR_BY_VAL</code>||rowspan=12|
 
|-
 
|-
|'''DIV_FLOAT_VAR_BY_VAL'''
+
|<code>DIV_FLOAT_VAR_BY_VAL</code>
 
|-
 
|-
|'''DIV_INT_LVAR_BY_VAL'''
+
|<code>DIV_INT_LVAR_BY_VAL</code>
 
|-
 
|-
|'''DIV_FLOAT_LVAR_BY_VAL'''
+
|<code>DIV_FLOAT_LVAR_BY_VAL</code>
 
|-
 
|-
|'''DIV_INT_VAR_BY_INT_VAR'''
+
|<code>DIV_INT_VAR_BY_INT_VAR</code>
 
|-
 
|-
|'''DIV_FLOAT_VAR_BY_FLOAT_VAR'''
+
|<code>DIV_FLOAT_VAR_BY_FLOAT_VAR</code>
 
|-
 
|-
|'''DIV_INT_LVAR_BY_INT_LVAR'''
+
|<code>DIV_INT_LVAR_BY_INT_LVAR</code>
 
|-
 
|-
|'''DIV_FLOAT_LVAR_BY_FLOAT_LVAR'''
+
|<code>DIV_FLOAT_LVAR_BY_FLOAT_LVAR</code>
 
|-
 
|-
|'''DIV_INT_VAR_BY_INT_LVAR'''
+
|<code>DIV_INT_VAR_BY_INT_LVAR</code>
 
|-
 
|-
|'''DIV_FLOAT_VAR_BY_FLOAT_LVAR'''
+
|<code>DIV_FLOAT_VAR_BY_FLOAT_LVAR</code>
 
|-
 
|-
|'''DIV_INT_LVAR_BY_INT_VAR'''
+
|<code>DIV_INT_LVAR_BY_INT_VAR</code>
 
|-
 
|-
|'''DIV_FLOAT_LVAR_BY_FLOAT_VAR'''
+
|<code>DIV_FLOAT_LVAR_BY_FLOAT_VAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|IS_THING_EQUAL_TO_THING (<code>=</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>IS_THING_EQUAL_TO_THING</code> (<code>=</code>)
 
|width=64px align=center|Since {{icon|3}}
 
|width=64px align=center|Since {{icon|3}}
 
|-
 
|-
|rowspan=18 width=20px|
+
|rowspan=18 width=16px|
|'''IS_INT_VAR_EQUAL_TO_NUMBER'''||rowspan=5|
+
|<code>IS_INT_VAR_EQUAL_TO_NUMBER</code>||rowspan=5|
 
|-
 
|-
|'''IS_INT_LVAR_EQUAL_TO_NUMBER'''
+
|<code>IS_INT_LVAR_EQUAL_TO_NUMBER</code>
 
|-
 
|-
|'''IS_INT_VAR_EQUAL_TO_INT_VAR'''
+
|<code>IS_INT_VAR_EQUAL_TO_INT_VAR</code>
 
|-
 
|-
|'''IS_INT_LVAR_EQUAL_TO_INT_LVAR'''
+
|<code>IS_INT_LVAR_EQUAL_TO_INT_LVAR</code>
 
|-
 
|-
|'''IS_INT_VAR_EQUAL_TO_INT_LVAR'''
+
|<code>IS_INT_VAR_EQUAL_TO_INT_LVAR</code>
 
|-
 
|-
|'''IS_INT_LVAR_EQUAL_TO_INT_VAR'''||align=center|{{icon|sa}} only
+
|<code>IS_INT_LVAR_EQUAL_TO_INT_VAR</code>||align=center|{{icon|sa}} only
 
|-
 
|-
|'''IS_FLOAT_VAR_EQUAL_TO_NUMBER'''||rowspan=5|
+
|<code>IS_FLOAT_VAR_EQUAL_TO_NUMBER</code>||rowspan=5|
 
|-
 
|-
|'''IS_FLOAT_LVAR_EQUAL_TO_NUMBER'''
+
|<code>IS_FLOAT_LVAR_EQUAL_TO_NUMBER</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_EQUAL_TO_FLOAT_VAR'''
+
|<code>IS_FLOAT_VAR_EQUAL_TO_FLOAT_VAR</code>
 
|-
 
|-
|'''IS_FLOAT_LVAR_EQUAL_TO_FLOAT_LVAR'''
+
|<code>IS_FLOAT_LVAR_EQUAL_TO_FLOAT_LVAR</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_EQUAL_TO_FLOAT_LVAR'''
+
|<code>IS_FLOAT_VAR_EQUAL_TO_FLOAT_LVAR</code>
 
|-
 
|-
|'''IS_FLOAT_LVAR_EQUAL_TO_FLOAT_VAR'''||align=center|{{icon|sa}} only
+
|<code>IS_FLOAT_LVAR_EQUAL_TO_FLOAT_VAR</code>||align=center|{{icon|sa}} only
 
|-
 
|-
|'''IS_INT_VAR_EQUAL_TO_CONSTANT'''||rowspan=2 align=center|Since {{icon|vc}}
+
|<code>IS_INT_VAR_EQUAL_TO_CONSTANT</code>||rowspan=2 align=center|Since {{icon|vc}}
 
|-
 
|-
|'''IS_INT_LVAR_EQUAL_TO_CONSTANT'''
+
|<code>IS_INT_LVAR_EQUAL_TO_CONSTANT</code>
 
|-
 
|-
|'''IS_VAR_TEXT_LABEL_EQUAL_TO_TEXT_LABEL'''||rowspan=4 align=center|{{icon|sa}} only
+
|<code>IS_VAR_TEXT_LABEL_EQUAL_TO_TEXT_LABEL</code>||rowspan=4 align=center|{{icon|sa}} only
 
|-
 
|-
|'''IS_LVAR_TEXT_LABEL_EQUAL_TO_TEXT_LABEL'''
+
|<code>IS_LVAR_TEXT_LABEL_EQUAL_TO_TEXT_LABEL</code>
 
|-
 
|-
|'''IS_VAR_TEXT_LABEL16_EQUAL_TO_TEXT_LABEL'''
+
|<code>IS_VAR_TEXT_LABEL16_EQUAL_TO_TEXT_LABEL</code>
 
|-
 
|-
|'''IS_LVAR_TEXT_LABEL16_EQUAL_TO_TEXT_LABEL'''
+
|<code>IS_LVAR_TEXT_LABEL16_EQUAL_TO_TEXT_LABEL</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|IS_THING_NOT_EQUAL_TO_THING (<code><></code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>IS_THING_NOT_EQUAL_TO_THING</code> (<code><></code>)
 
|width=64px align=center|Since {{icon|3}}
 
|width=64px align=center|Since {{icon|3}}
 
|-
 
|-
|rowspan=12 width=20px|
+
|rowspan=12 width=16px|
|'''IS_INT_VAR_NOT_EQUAL_TO_NUMBER'''||rowspan=5|
+
|<code>IS_INT_VAR_NOT_EQUAL_TO_NUMBER</code>||rowspan=5|
 
|-
 
|-
|'''IS_INT_LVAR_NOT_EQUAL_TO_NUMBER'''
+
|<code>IS_INT_LVAR_NOT_EQUAL_TO_NUMBER</code>
 
|-
 
|-
|'''IS_INT_VAR_NOT_EQUAL_TO_INT_VAR'''
+
|<code>IS_INT_VAR_NOT_EQUAL_TO_INT_VAR</code>
 
|-
 
|-
|'''IS_INT_LVAR_NOT_EQUAL_TO_INT_LVAR'''
+
|<code>IS_INT_LVAR_NOT_EQUAL_TO_INT_LVAR</code>
 
|-
 
|-
|'''IS_INT_VAR_NOT_EQUAL_TO_INT_LVAR'''
+
|<code>IS_INT_VAR_NOT_EQUAL_TO_INT_LVAR</code>
 
|-
 
|-
|'''IS_INT_LVAR_NOT_EQUAL_TO_INT_VAR'''||align=center|{{icon|sa}} only
+
|<code>IS_INT_LVAR_NOT_EQUAL_TO_INT_VAR</code>||align=center|{{icon|sa}} only
 
|-
 
|-
|'''IS_FLOAT_VAR_NOT_EQUAL_TO_NUMBER'''||rowspan=5|
+
|<code>IS_FLOAT_VAR_NOT_EQUAL_TO_NUMBER</code>||rowspan=5|
 
|-
 
|-
|'''IS_FLOAT_LVAR_NOT_EQUAL_TO_NUMBER'''
+
|<code>IS_FLOAT_LVAR_NOT_EQUAL_TO_NUMBER</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_NOT_EQUAL_TO_FLOAT_VAR'''
+
|<code>IS_FLOAT_VAR_NOT_EQUAL_TO_FLOAT_VAR</code>
 
|-
 
|-
|'''IS_FLOAT_LVAR_NOT_EQUAL_TO_FLOAT_LVAR'''
+
|<code>IS_FLOAT_LVAR_NOT_EQUAL_TO_FLOAT_LVAR</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_NOT_EQUAL_TO_FLOAT_LVAR'''
+
|<code>IS_FLOAT_VAR_NOT_EQUAL_TO_FLOAT_LVAR</code>
 
|-
 
|-
|'''IS_FLOAT_LVAR_NOT_EQUAL_TO_FLOAT_VAR'''||align=center|{{icon|sa}} only
+
|<code>IS_FLOAT_LVAR_NOT_EQUAL_TO_FLOAT_VAR</code>||align=center|{{icon|sa}} only
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|IS_THING_GREATER_THAN_THING (<code>></code>, <code><=</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>IS_THING_GREATER_THAN_THING</code> (<code>></code>, <code><=</code>)
 
|width=64px align=center|Since {{icon|3}}
 
|width=64px align=center|Since {{icon|3}}
 
|-
 
|-
|rowspan=20 width=20px|
+
|rowspan=20 width=16px|
|'''IS_INT_VAR_GREATER_THAN_NUMBER'''||rowspan=16|
+
|<code>IS_INT_VAR_GREATER_THAN_NUMBER</code>||rowspan=16|
 
|-
 
|-
|'''IS_INT_LVAR_GREATER_THAN_NUMBER'''
+
|<code>IS_INT_LVAR_GREATER_THAN_NUMBER</code>
 
|-
 
|-
|'''IS_NUMBER_GREATER_THAN_INT_VAR'''
+
|<code>IS_NUMBER_GREATER_THAN_INT_VAR</code>
 
|-
 
|-
|'''IS_NUMBER_GREATER_THAN_INT_LVAR'''
+
|<code>IS_NUMBER_GREATER_THAN_INT_LVAR</code>
 
|-
 
|-
|'''IS_INT_VAR_GREATER_THAN_INT_VAR'''
+
|<code>IS_INT_VAR_GREATER_THAN_INT_VAR</code>
 
|-
 
|-
|'''IS_INT_LVAR_GREATER_THAN_INT_LVAR'''
+
|<code>IS_INT_LVAR_GREATER_THAN_INT_LVAR</code>
 
|-
 
|-
|'''IS_INT_VAR_GREATER_THAN_INT_LVAR'''
+
|<code>IS_INT_VAR_GREATER_THAN_INT_LVAR</code>
 
|-
 
|-
|'''IS_INT_LVAR_GREATER_THAN_INT_VAR'''
+
|<code>IS_INT_LVAR_GREATER_THAN_INT_VAR</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_GREATER_THAN_NUMBER'''
+
|<code>IS_FLOAT_VAR_GREATER_THAN_NUMBER</code>
 
|-
 
|-
|'''IS_FLOAT_LVAR_GREATER_THAN_NUMBER'''
+
|<code>IS_FLOAT_LVAR_GREATER_THAN_NUMBER</code>
 
|-
 
|-
|'''IS_NUMBER_GREATER_THAN_FLOAT_VAR'''
+
|<code>IS_NUMBER_GREATER_THAN_FLOAT_VAR</code>
 
|-
 
|-
|'''IS_NUMBER_GREATER_THAN_FLOAT_LVAR'''
+
|<code>IS_NUMBER_GREATER_THAN_FLOAT_LVAR</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_GREATER_THAN_FLOAT_VAR'''
+
|<code>IS_FLOAT_VAR_GREATER_THAN_FLOAT_VAR</code>
 
|-
 
|-
|'''IS_FLOAT_LVAR_GREATER_THAN_FLOAT_LVAR'''
+
|<code>IS_FLOAT_LVAR_GREATER_THAN_FLOAT_LVAR</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_GREATER_THAN_FLOAT_LVAR'''
+
|<code>IS_FLOAT_VAR_GREATER_THAN_FLOAT_LVAR</code>
 
|-
 
|-
|'''IS_FLOAT_LVAR_GREATER_THAN_FLOAT_VAR'''
+
|<code>IS_FLOAT_LVAR_GREATER_THAN_FLOAT_VAR</code>
 
|-
 
|-
|'''IS_INT_VAR_GREATER_THAN_CONSTANT'''||rowspan=4 align=center|Since {{icon|vc}}
+
|<code>IS_INT_VAR_GREATER_THAN_CONSTANT</code>||rowspan=4 align=center|Since {{icon|vc}}
 
|-
 
|-
|'''IS_INT_LVAR_GREATER_THAN_CONSTANT'''
+
|<code>IS_INT_LVAR_GREATER_THAN_CONSTANT</code>
 
|-
 
|-
|'''IS_CONSTANT_GREATER_THAN_INT_VAR'''
+
|<code>IS_CONSTANT_GREATER_THAN_INT_VAR</code>
 
|-
 
|-
|'''IS_CONSTANT_GREATER_THAN_INT_LVAR'''
+
|<code>IS_CONSTANT_GREATER_THAN_INT_LVAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|IS_THING_GREATER_OR_EQUAL_TO_THING (<code>>=</code>, <code><</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>IS_THING_GREATER_OR_EQUAL_TO_THING</code> (<code>>=</code>, <code><</code>)
 
|width=64px align=center|Since {{icon|3}}
 
|width=64px align=center|Since {{icon|3}}
 
|-
 
|-
|rowspan=20 width=20px|
+
|rowspan=20 width=16px|
|'''IS_INT_VAR_GREATER_OR_EQUAL_TO_NUMBER'''||rowspan=16|
+
|<code>IS_INT_VAR_GREATER_OR_EQUAL_TO_NUMBER</code>||rowspan=16|
 
|-
 
|-
|'''IS_INT_LVAR_GREATER_OR_EQUAL_TO_NUMBER'''
+
|<code>IS_INT_LVAR_GREATER_OR_EQUAL_TO_NUMBER</code>
 
|-
 
|-
|'''IS_NUMBER_GREATER_OR_EQUAL_TO_INT_VAR'''
+
|<code>IS_NUMBER_GREATER_OR_EQUAL_TO_INT_VAR</code>
 
|-
 
|-
|'''IS_NUMBER_GREATER_OR_EQUAL_TO_INT_LVAR'''
+
|<code>IS_NUMBER_GREATER_OR_EQUAL_TO_INT_LVAR</code>
 
|-
 
|-
|'''IS_INT_VAR_GREATER_OR_EQUAL_TO_INT_VAR'''
+
|<code>IS_INT_VAR_GREATER_OR_EQUAL_TO_INT_VAR</code>
 
|-
 
|-
|'''IS_INT_LVAR_GREATER_OR_EQUAL_TO_INT_LVAR'''
+
|<code>IS_INT_LVAR_GREATER_OR_EQUAL_TO_INT_LVAR</code>
 
|-
 
|-
|'''IS_INT_VAR_GREATER_OR_EQUAL_TO_INT_LVAR'''
+
|<code>IS_INT_VAR_GREATER_OR_EQUAL_TO_INT_LVAR</code>
 
|-
 
|-
|'''IS_INT_LVAR_GREATER_OR_EQUAL_TO_INT_VAR'''
+
|<code>IS_INT_LVAR_GREATER_OR_EQUAL_TO_INT_VAR</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_NUMBER'''
+
|<code>IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_NUMBER</code>
 
|-
 
|-
|'''IS_FLOAT_LVAR_GREATER_OR_EQUAL_TO_NUMBER'''
+
|<code>IS_FLOAT_LVAR_GREATER_OR_EQUAL_TO_NUMBER</code>
 
|-
 
|-
|'''IS_NUMBER_GREATER_OR_EQUAL_TO_FLOAT_VAR'''
+
|<code>IS_NUMBER_GREATER_OR_EQUAL_TO_FLOAT_VAR</code>
 
|-
 
|-
|'''IS_NUMBER_GREATER_OR_EQUAL_TO_FLOAT_LVAR'''
+
|<code>IS_NUMBER_GREATER_OR_EQUAL_TO_FLOAT_LVAR</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_FLOAT_VAR'''
+
|<code>IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_FLOAT_VAR</code>
 
|-
 
|-
|'''IS_FLOAT_LVAR_GREATER_OR_EQUAL_TO_FLOAT_LVAR'''
+
|<code>IS_FLOAT_LVAR_GREATER_OR_EQUAL_TO_FLOAT_LVAR</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_FLOAT_LVAR'''
+
|<code>IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_FLOAT_LVAR</code>
 
|-
 
|-
|'''IS_FLOAT_LVAR_GREATER_OR_EQUAL_TO_FLOAT_VAR'''
+
|<code>IS_FLOAT_LVAR_GREATER_OR_EQUAL_TO_FLOAT_VAR</code>
 
|-
 
|-
|'''IS_INT_VAR_GREATER_OR_EQUAL_TO_CONSTANT'''||rowspan=4 align=center|Since {{icon|vc}}
+
|<code>IS_INT_VAR_GREATER_OR_EQUAL_TO_CONSTANT</code>||rowspan=4 align=center|Since {{icon|vc}}
 
|-
 
|-
|'''IS_INT_LVAR_GREATER_OR_EQUAL_TO_CONSTANT'''
+
|<code>IS_INT_LVAR_GREATER_OR_EQUAL_TO_CONSTANT</code>
 
|-
 
|-
|'''IS_CONSTANT_GREATER_OR_EQUAL_TO_INT_VAR'''
+
|<code>IS_CONSTANT_GREATER_OR_EQUAL_TO_INT_VAR</code>
 
|-
 
|-
|'''IS_CONSTANT_GREATER_OR_EQUAL_TO_INT_LVAR'''
+
|<code>IS_CONSTANT_GREATER_OR_EQUAL_TO_INT_LVAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|ADD_THING_TO_THING_TIMED (<code>+=@</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>ADD_THING_TO_THING_TIMED</code> (<code>+=@</code>)
 
|width=64px align=center|Since {{icon|3}}
 
|width=64px align=center|Since {{icon|3}}
 
|-
 
|-
|rowspan=6 width=20px|
+
|rowspan=6 width=16px|
|'''ADD_TIMED_VAL_TO_FLOAT_VAR'''||rowspan=6|
+
|<code>ADD_TIMED_VAL_TO_FLOAT_VAR</code>||rowspan=6|
 
|-
 
|-
|'''ADD_TIMED_VAL_TO_FLOAT_LVAR'''
+
|<code>ADD_TIMED_VAL_TO_FLOAT_LVAR</code>
 
|-
 
|-
|'''ADD_TIMED_FLOAT_VAR_TO_FLOAT_VAR'''
+
|<code>ADD_TIMED_FLOAT_VAR_TO_FLOAT_VAR</code>
 
|-
 
|-
|'''ADD_TIMED_FLOAT_LVAR_TO_FLOAT_LVAR'''
+
|<code>ADD_TIMED_FLOAT_LVAR_TO_FLOAT_LVAR</code>
 
|-
 
|-
|'''ADD_TIMED_FLOAT_LVAR_TO_FLOAT_VAR'''
+
|<code>ADD_TIMED_FLOAT_LVAR_TO_FLOAT_VAR</code>
 
|-
 
|-
|'''ADD_TIMED_FLOAT_VAR_TO_FLOAT_LVAR'''
+
|<code>ADD_TIMED_FLOAT_VAR_TO_FLOAT_LVAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|SUB_THING_FROM_THING_TIMED (<code>-=@</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>SUB_THING_FROM_THING_TIMED</code> (<code>-=@</code>)
 
|width=64px align=center|Since {{icon|3}}
 
|width=64px align=center|Since {{icon|3}}
 
|-
 
|-
|rowspan=6 width=20px|
+
|rowspan=6 width=16px|
|'''SUB_TIMED_VAL_FROM_FLOAT_VAR'''||rowspan=6|
+
|<code>SUB_TIMED_VAL_FROM_FLOAT_VAR</code>||rowspan=6|
 
|-
 
|-
|'''SUB_TIMED_VAL_FROM_FLOAT_LVAR'''
+
|<code>SUB_TIMED_VAL_FROM_FLOAT_LVAR</code>
 
|-
 
|-
|'''SUB_TIMED_FLOAT_VAR_FROM_FLOAT_VAR'''
+
|<code>SUB_TIMED_FLOAT_VAR_FROM_FLOAT_VAR</code>
 
|-
 
|-
|'''SUB_TIMED_FLOAT_LVAR_FROM_FLOAT_LVAR'''
+
|<code>SUB_TIMED_FLOAT_LVAR_FROM_FLOAT_LVAR</code>
 
|-
 
|-
|'''SUB_TIMED_FLOAT_LVAR_FROM_FLOAT_VAR'''
+
|<code>SUB_TIMED_FLOAT_LVAR_FROM_FLOAT_VAR</code>
 
|-
 
|-
|'''SUB_TIMED_FLOAT_VAR_FROM_FLOAT_LVAR'''
+
|<code>SUB_TIMED_FLOAT_VAR_FROM_FLOAT_LVAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|ABS
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>ABS</code>
 
|width=64px align=center|Since {{icon|3}}
 
|width=64px align=center|Since {{icon|3}}
 
|-
 
|-
|rowspan=4 width=20px|
+
|rowspan=4 width=16px|
|'''ABS_VAR_INT'''||rowspan=4|
+
|<code>ABS_VAR_INT</code>||rowspan=4|
 
|-
 
|-
|'''ABS_LVAR_INT'''
+
|<code>ABS_LVAR_INT</code>
 
|-
 
|-
|'''ABS_VAR_FLOAT'''
+
|<code>ABS_VAR_FLOAT</code>
 
|-
 
|-
|'''ABS_LVAR_FLOAT'''
+
|<code>ABS_LVAR_FLOAT</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|IS_EMPTY
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>IS_EMPTY</code>
 
|width=64px align=center|{{icon|sa}} only
 
|width=64px align=center|{{icon|sa}} only
 
|-
 
|-
|rowspan=4 width=20px|
+
|rowspan=4 width=16px|
|'''IS_VAR_TEXT_LABEL_EMPTY'''||rowspan=4|
+
|<code>IS_VAR_TEXT_LABEL_EMPTY</code>||rowspan=4|
 
|-
 
|-
|'''IS_LVAR_TEXT_LABEL_EMPTY'''
+
|<code>IS_LVAR_TEXT_LABEL_EMPTY</code>
 
|-
 
|-
|'''IS_VAR_TEXT_LABEL16_EMPTY'''
+
|<code>IS_VAR_TEXT_LABEL16_EMPTY</code>
 
|-
 
|-
|'''IS_LVAR_TEXT_LABEL16_EMPTY'''
+
|<code>IS_LVAR_TEXT_LABEL16_EMPTY</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|IS_BIT_SET
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>IS_BIT_SET</code>
 
|width=64px align=center|{{icon|sa}} only
 
|width=64px align=center|{{icon|sa}} only
 
|-
 
|-
|rowspan=6 width=20px|
+
|rowspan=6 width=16px|
|'''IS_GLOBAL_VAR_BIT_SET_CONST'''||rowspan=6|
+
|<code>IS_GLOBAL_VAR_BIT_SET_CONST</code>||rowspan=6|
 
|-
 
|-
|'''IS_GLOBAL_VAR_BIT_SET_VAR'''
+
|<code>IS_GLOBAL_VAR_BIT_SET_VAR</code>
 
|-
 
|-
|'''IS_GLOBAL_VAR_BIT_SET_LVAR'''
+
|<code>IS_GLOBAL_VAR_BIT_SET_LVAR</code>
 
|-
 
|-
|'''IS_LOCAL_VAR_BIT_SET_CONST'''
+
|<code>IS_LOCAL_VAR_BIT_SET_CONST</code>
 
|-
 
|-
|'''IS_LOCAL_VAR_BIT_SET_VAR'''
+
|<code>IS_LOCAL_VAR_BIT_SET_VAR</code>
 
|-
 
|-
|'''IS_LOCAL_VAR_BIT_SET_LVAR'''
+
|<code>IS_LOCAL_VAR_BIT_SET_LVAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|SET_BIT
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>SET_BIT</code>
 
|width=64px align=center|{{icon|sa}} only
 
|width=64px align=center|{{icon|sa}} only
 
|-
 
|-
|rowspan=6 width=20px|
+
|rowspan=6 width=16px|
|'''SET_GLOBAL_VAR_BIT_CONST'''||rowspan=6|
+
|<code>SET_GLOBAL_VAR_BIT_CONST</code>||rowspan=6|
 
|-
 
|-
|'''SET_GLOBAL_VAR_BIT_VAR'''
+
|<code>SET_GLOBAL_VAR_BIT_VAR</code>
 
|-
 
|-
|'''SET_GLOBAL_VAR_BIT_LVAR'''
+
|<code>SET_GLOBAL_VAR_BIT_LVAR</code>
 
|-
 
|-
|'''SET_LOCAL_VAR_BIT_CONST'''
+
|<code>SET_LOCAL_VAR_BIT_CONST</code>
 
|-
 
|-
|'''SET_LOCAL_VAR_BIT_VAR'''
+
|<code>SET_LOCAL_VAR_BIT_VAR</code>
 
|-
 
|-
|'''SET_LOCAL_VAR_BIT_LVAR'''
+
|<code>SET_LOCAL_VAR_BIT_LVAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|CLEAR_BIT
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>CLEAR_BIT</code>
 
|width=64px align=center|{{icon|sa}} only
 
|width=64px align=center|{{icon|sa}} only
 
|-
 
|-
|rowspan=6 width=20px|
+
|rowspan=6 width=16px|
|'''CLEAR_GLOBAL_VAR_BIT_CONST'''||rowspan=6|
+
|<code>CLEAR_GLOBAL_VAR_BIT_CONST</code>||rowspan=6|
 
|-
 
|-
|'''CLEAR_GLOBAL_VAR_BIT_VAR'''
+
|<code>CLEAR_GLOBAL_VAR_BIT_VAR</code>
 
|-
 
|-
|'''CLEAR_GLOBAL_VAR_BIT_LVAR'''
+
|<code>CLEAR_GLOBAL_VAR_BIT_LVAR</code>
 
|-
 
|-
|'''CLEAR_LOCAL_VAR_BIT_CONST'''
+
|<code>CLEAR_LOCAL_VAR_BIT_CONST</code>
 
|-
 
|-
|'''CLEAR_LOCAL_VAR_BIT_VAR'''
+
|<code>CLEAR_LOCAL_VAR_BIT_VAR</code>
 
|-
 
|-
|'''CLEAR_LOCAL_VAR_BIT_LVAR'''
+
|<code>CLEAR_LOCAL_VAR_BIT_LVAR</code>
 
|}
 
|}
 
</div>
 
</div>
 
|valign=top|<div style="overflow: auto; float: left" width=auto>
 
|valign=top|<div style="overflow: auto; float: left" width=auto>
{|class="wikitable" style="margin-bottom: 0" width=100%
+
{|class=wikitable style="margin-bottom: 0" width=100%
 
|-
 
|-
!colspan=2 style="text-align: left"|Command
+
!colspan=2 width=420px style="text-align: left"|Command
 
|-
 
|-
|width=20px|
+
!width=16px|
 
!style="text-align: left"|Alternative
 
!style="text-align: left"|Alternative
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|SET (<code>=</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>SET</code> (<code>=</code>)
 
|-
 
|-
|rowspan=7 width=20px|
+
|rowspan=7 width=16px|
|'''SET_VAR_INT'''
+
|<code>SET_VAR_INT</code>
 
|-
 
|-
|'''SET_VAR_FLOAT'''
+
|<code>SET_VAR_FLOAT</code>
 
|-
 
|-
|'''SET_VAR_TEXT_LABEL'''
+
|<code>SET_VAR_TEXT_LABEL</code>
 
|-
 
|-
|'''SET_VAR_INT_TO_VAR_INT'''
+
|<code>SET_VAR_INT_TO_VAR_INT</code>
 
|-
 
|-
|'''SET_VAR_FLOAT_TO_VAR_FLOAT'''
+
|<code>SET_VAR_FLOAT_TO_VAR_FLOAT</code>
 
|-
 
|-
|'''SET_VAR_TEXT_LABEL_TO_VAR_TEXT_LABEL'''
+
|<code>SET_VAR_TEXT_LABEL_TO_VAR_TEXT_LABEL</code>
 
|-
 
|-
|'''SET_VAR_INT_TO_CONSTANT'''
+
|<code>SET_VAR_INT_TO_CONSTANT</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|CSET (<code>=#</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>CSET</code> (<code>=#</code>)
 
|-
 
|-
|rowspan=2 width=20px|
+
|rowspan=2 width=16px|
|'''CSET_VAR_INT_TO_VAR_FLOAT'''
+
|<code>CSET_VAR_INT_TO_VAR_FLOAT</code>
 
|-
 
|-
|'''CSET_VAR_FLOAT_TO_VAR_INT'''
+
|<code>CSET_VAR_FLOAT_TO_VAR_INT</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|ADD_THING_TO_THING (<code>+=</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>ADD_THING_TO_THING</code> (<code>+=</code>)
 
|-
 
|-
|rowspan=4 width=20px|
+
|rowspan=4 width=16px|
|'''ADD_VAL_TO_INT_VAR'''
+
|<code>ADD_VAL_TO_INT_VAR</code>
 
|-
 
|-
|'''ADD_VAL_TO_FLOAT_VAR'''
+
|<code>ADD_VAL_TO_FLOAT_VAR</code>
 
|-
 
|-
|'''ADD_INT_VAR_TO_INT_VAR'''
+
|<code>ADD_INT_VAR_TO_INT_VAR</code>
 
|-
 
|-
|'''ADD_FLOAT_VAR_TO_FLOAT_VAR'''
+
|<code>ADD_FLOAT_VAR_TO_FLOAT_VAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|SUB_THING_FROM_THING (<code>-=</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>SUB_THING_FROM_THING</code> (<code>-=</code>)
 
|-
 
|-
|rowspan=4 width=20px|
+
|rowspan=4 width=16px|
|'''SUB_VAL_FROM_INT_VAR'''
+
|<code>SUB_VAL_FROM_INT_VAR</code>
 
|-
 
|-
|'''SUB_VAL_FROM_FLOAT_VAR'''
+
|<code>SUB_VAL_FROM_FLOAT_VAR</code>
 
|-
 
|-
|'''SUB_INT_VAR_FROM_INT_VAR'''
+
|<code>SUB_INT_VAR_FROM_INT_VAR</code>
 
|-
 
|-
|'''SUB_FLOAT_VAR_FROM_FLOAT_VAR'''
+
|<code>SUB_FLOAT_VAR_FROM_FLOAT_VAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|MULT_THING_BY_THING (<code>*=</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>MULT_THING_BY_THING</code> (<code>*=</code>)
 
|-
 
|-
|rowspan=4 width=20px|
+
|rowspan=4 width=16px|
|'''MULT_INT_VAR_BY_VAL'''
+
|<code>MULT_INT_VAR_BY_VAL</code>
 
|-
 
|-
|'''MULT_FLOAT_VAR_BY_VAL'''
+
|<code>MULT_FLOAT_VAR_BY_VAL</code>
 
|-
 
|-
|'''MULT_INT_VAR_BY_INT_VAR'''
+
|<code>MULT_INT_VAR_BY_INT_VAR</code>
 
|-
 
|-
|'''MULT_FLOAT_VAR_BY_FLOAT_VAR'''
+
|<code>MULT_FLOAT_VAR_BY_FLOAT_VAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|DIV_THING_BY_THING (<code>/=</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>DIV_THING_BY_THING</code> (<code>/=</code>)
 
|-
 
|-
|rowspan=4 width=20px|
+
|rowspan=4 width=16px|
|'''DIV_INT_VAR_BY_VAL'''
+
|<code>DIV_INT_VAR_BY_VAL</code>
 
|-
 
|-
|'''DIV_FLOAT_VAR_BY_VAL'''
+
|<code>DIV_FLOAT_VAR_BY_VAL</code>
 
|-
 
|-
|'''DIV_INT_VAR_BY_INT_VAR'''
+
|<code>DIV_INT_VAR_BY_INT_VAR</code>
 
|-
 
|-
|'''DIV_FLOAT_VAR_BY_FLOAT_VAR'''
+
|<code>DIV_FLOAT_VAR_BY_FLOAT_VAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|IS_THING_EQUAL_TO_THING (<code>=</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>IS_THING_EQUAL_TO_THING</code> (<code>=</code>)
 
|-
 
|-
|rowspan=7 width=20px|
+
|rowspan=7 width=16px|
|'''IS_INT_VAR_EQUAL_TO_NUMBER'''
+
|<code>IS_INT_VAR_EQUAL_TO_NUMBER</code>
 
|-
 
|-
|'''IS_INT_VAR_EQUAL_TO_INT_VAR'''
+
|<code>IS_INT_VAR_EQUAL_TO_INT_VAR</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_EQUAL_TO_NUMBER'''
+
|<code>IS_FLOAT_VAR_EQUAL_TO_NUMBER</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_EQUAL_TO_FLOAT_VAR'''
+
|<code>IS_FLOAT_VAR_EQUAL_TO_FLOAT_VAR</code>
 
|-
 
|-
|'''IS_TEXT_LABEL_VAR_EQUAL_TO_TEXT_LABEL'''
+
|<code>IS_TEXT_LABEL_VAR_EQUAL_TO_TEXT_LABEL</code>
 
|-
 
|-
|'''IS_TEXT_LABEL_VAR_EQUAL_TO_TEXT_LABEL_VAR'''
+
|<code>IS_TEXT_LABEL_VAR_EQUAL_TO_TEXT_LABEL_VAR</code>
 
|-
 
|-
|'''IS_INT_VAR_EQUAL_TO_CONSTANT'''
+
|<code>IS_INT_VAR_EQUAL_TO_CONSTANT</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|IS_THING_GREATER_THAN_THING (<code>></code>, <code><=</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>IS_THING_GREATER_THAN_THING</code> (<code>></code>, <code><=</code>)
 
|-
 
|-
|rowspan=8 width=20px|
+
|rowspan=8 width=16px|
|'''IS_INT_VAR_GREATER_THAN_NUMBER'''
+
|<code>IS_INT_VAR_GREATER_THAN_NUMBER</code>
 
|-
 
|-
|'''IS_NUMBER_GREATER_THAN_INT_VAR'''
+
|<code>IS_NUMBER_GREATER_THAN_INT_VAR</code>
 
|-
 
|-
|'''IS_INT_VAR_GREATER_THAN_INT_VAR'''
+
|<code>IS_INT_VAR_GREATER_THAN_INT_VAR</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_GREATER_THAN_NUMBER'''
+
|<code>IS_FLOAT_VAR_GREATER_THAN_NUMBER</code>
 
|-
 
|-
|'''IS_NUMBER_GREATER_THAN_FLOAT_VAR'''
+
|<code>IS_NUMBER_GREATER_THAN_FLOAT_VAR</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_GREATER_THAN_FLOAT_VAR'''
+
|<code>IS_FLOAT_VAR_GREATER_THAN_FLOAT_VAR</code>
 
|-
 
|-
|'''IS_INT_VAR_GREATER_THAN_CONSTANT'''
+
|<code>IS_INT_VAR_GREATER_THAN_CONSTANT</code>
 
|-
 
|-
|'''IS_CONSTANT_GREATER_THAN_INT_VAR'''
+
|<code>IS_CONSTANT_GREATER_THAN_INT_VAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|IS_THING_GREATER_OR_EQUAL_TO_THING (<code>>=</code>, <code><</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>IS_THING_GREATER_OR_EQUAL_TO_THING</code> (<code>>=</code>, <code><</code>)
 
|-
 
|-
|rowspan=8 width=20px|
+
|rowspan=8 width=16px|
|'''IS_INT_VAR_GREATER_OR_EQUAL_TO_NUMBER'''
+
|<code>IS_INT_VAR_GREATER_OR_EQUAL_TO_NUMBER</code>
 
|-
 
|-
|'''IS_NUMBER_GREATER_OR_EQUAL_TO_INT_VAR'''
+
|<code>IS_NUMBER_GREATER_OR_EQUAL_TO_INT_VAR</code>
 
|-
 
|-
|'''IS_INT_VAR_GREATER_OR_EQUAL_TO_INT_VAR'''
+
|<code>IS_INT_VAR_GREATER_OR_EQUAL_TO_INT_VAR</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_NUMBER'''
+
|<code>IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_NUMBER</code>
 
|-
 
|-
|'''IS_NUMBER_GREATER_OR_EQUAL_TO_FLOAT_VAR'''
+
|<code>IS_NUMBER_GREATER_OR_EQUAL_TO_FLOAT_VAR</code>
 
|-
 
|-
|'''IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_FLOAT_VAR'''
+
|<code>IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_FLOAT_VAR</code>
 
|-
 
|-
|'''IS_INT_VAR_GREATER_OR_EQUAL_TO_CONSTANT'''
+
|<code>IS_INT_VAR_GREATER_OR_EQUAL_TO_CONSTANT</code>
 
|-
 
|-
|'''IS_CONSTANT_GREATER_OR_EQUAL_TO_INT_VAR'''
+
|<code>IS_CONSTANT_GREATER_OR_EQUAL_TO_INT_VAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|ADD_THING_TO_THING_TIMED (<code>+=@</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>ADD_THING_TO_THING_TIMED</code> (<code>+=@</code>)
 
|-
 
|-
|rowspan=2 width=20px|
+
|rowspan=2 width=16px|
|'''ADD_TIMED_VAL_TO_FLOAT_VAR'''
+
|<code>ADD_TIMED_VAL_TO_FLOAT_VAR</code>
 
|-
 
|-
|'''ADD_TIMED_FLOAT_VAR_TO_FLOAT_VAR'''
+
|<code>ADD_TIMED_FLOAT_VAR_TO_FLOAT_VAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|SUB_THING_FROM_THING_TIMED (<code>-=@</code>)
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>SUB_THING_FROM_THING_TIMED</code> (<code>-=@</code>)
 
|-
 
|-
|rowspan=2 width=20px|
+
|rowspan=2 width=16px|
|'''SUB_TIMED_VAL_FROM_FLOAT_VAR'''
+
|<code>SUB_TIMED_VAL_FROM_FLOAT_VAR</code>
 
|-
 
|-
|'''SUB_TIMED_FLOAT_VAR_FROM_FLOAT_VAR'''
+
|<code>SUB_TIMED_FLOAT_VAR_FROM_FLOAT_VAR</code>
 
|}
 
|}
{|class="wikitable collapsible collapsed" style="margin: -1px auto 0" width=100%
+
{|class="wikitable mw-collapsible mw-collapsed" style="margin: -1px auto 0" width=100%
 
|-
 
|-
!colspan=2 style="background-color: inherit; text-align: left"|ABS
+
!colspan=2 style="background-color: inherit; text-align: left; font-weight: normal"|<code>ABS</code>
 
|-
 
|-
|rowspan=2 width=20px|
+
|rowspan=2 width=16px|
|'''ABS_VAR_INT'''
+
|<code>ABS_VAR_INT</code>
 
|-
 
|-
|'''ABS_VAR_FLOAT'''
+
|<code>ABS_VAR_FLOAT</code>
 
|}
 
|}
 
</div>
 
</div>
Line 991: Line 1,037:
  
 
==Control flows==
 
==Control flows==
Insofar as subprograms, scripts are organized in a systematic arrangement through which goto branches, subroutine branches, function calls and returns are executed to form control flow statements and structures. These alter the [[Wikipedia:Program Counter|program counter]] most of the time affecting the top-down order all commands are fetched by. Facing off code duplication is quite recurring especially when the tasks to perform vary only in the input data, the case where a piece of code or subroutine, built once in the source, is invoked many times from various different places and returns back, as if the '''GOSUB''' statement is substituted in-place by the subroutine's body without '''RETURN''' during the control transferring, shrinking long codes and reducing the script overall size. The flow of execution can also be broken up conditionally by means of:
+
Insofar as subprograms, scripts are organized in a systematic arrangement through which goto branches, subroutine branches, function calls and returns or cutscene area markers are executed to form control flow statements and structures. These alter the [[Wikipedia:Program Counter|program counter]] most of the time affecting the top-down order all commands are fetched by. Facing off code duplication is quite recurring especially when the tasks to perform vary only in the input data, the case where a piece of code or subroutine, built once in the source, is invoked many times from various different places and returns back, as if the <code>GOSUB</code> statement is substituted in-place by the subroutine's body without <code>RETURN</code> during the control transferring, to shrink long codes and reduce the script overall size. In the last Trilogy chapter, a region of code can be marked as a nonnestable cutscene area wherein the rest of commands within <code>SKIP_CUTSCENE_START..SKIP_CUTSCENE_END</code> is skipped to the pressure of some key/button at the next script tick. The flow of execution can also be broken up conditionally by means of:
 +
 
 +
* ''Decision-making structures'' (<code>IF</code>, <code>IFNOT</code>, <code>SWITCH</code>), which evaluate the result of one or more conditions and choose what path to follow based off the trueness or falseness of the check being tested. Been deemed the most basic tool of [[Wikipedia:Structured programming|structured programming]], <code>IF</code> is a bidirectional statement that proceeds with the execution of the underneath code only if the test carried out evaluates to true otherwise it transfers the control next to <code>ENDIF</code> instantly, unless a preceding and optional <code>ELSE</code> clause, establishing an alternative path, is specified. In the first Trilogy and both Stories chapters where <code>GOTO_IF_TRUE</code> is handled by game code, the barely used <code>IFNOT</code> can be deployed as a placeholder to easily invert the compare-flag, a boolean state which is set or cleared as a result of the bitwise [[Wikipedia:Bitwise operation#AND|conjunction]] or [[Wikipedia:Bitwise operation#OR|disjunction]] with the true/false state caught by a condition, applying the inversion according to the presence of the not-flag before accumulating. Logical operators make possible the connection among multiple conditions via the <code>AND</code> [[Wikipedia:Logical conjunction|conjunction]] and <code>OR</code> [[Wikipedia:Logical disjunction|disjunction]] giving the chance to verify if conditions are all true or if just one of them is satisfied bearing in mind that the <code>NOT</code> [[Wikipedia:Logical negation|negation]], inverting the boolean state of a single condition, may be supplied. Connectivity information are held by <code>ANDOR</code>, whose argument depicts a value in the range <code>[1,8)</code> or <code>[21,28)</code> (end-inclusive in Stories) for logical conjunction and disjunction respectively, limiting the amount of total conditions to provide to a maximum of 8 per check (the prominent intervals discrepancy also suggests <code>NAND</code> and <code>NOR</code> operators might have been a plan at some point). A value of 0 does nothing relevant functional-wise at runtime, what led developers to not compile said command in such a situation for Stories chapters and also make the argument one-based so that it effectively counts the number of commands used in a multi-condition check. The inability to create subexpressions enforces not to combine <code>AND</code> with <code>OR</code> in a check, plus evaluations are eager and therefore not short-circuited meaning all conditions are executed prior potentially branching through <code>GOTO_IF_FALSE</code> in the common case after the compare-flag gets processed. <code>IF-GOTO</code> and <code>IFNOT-GOTO</code> constructs are also viable to inline a bogus one-way control transferer, targeting an arbitrary location, nearby a one-condition check with no end-ing statement.
 +
:Nesting lots of <code>IF-ELSE-ENDIF</code> structures of one-condition checks testing the equality of the same variable against a few integer literals or string constants can add a ridiculous code redundancy and performance overhead, sorted out in the last Trilogy chapter thanks to the introduction of the <code>SWITCH</code> statement, a multiway statement either branching to the switch section labelled by fall-through <code>CASE</code> statements of which one passses a value that shall match the variable content to compare or optionally branching to <code>DEFAULT</code> in the worst-case scenario, each ending with a nonmandatory <code>BREAK</code> statement goto-ing past <code>ENDSWITCH</code>. On compilation, the implementation somehow mimics the pattern of a [[Wikipedia:Jump table|jump table]] sorting case label references by value to fulfil the runtime's [[Wikipedia:Binary search|binary search]] among at least 1 of 75 entries (default case aside);
 +
* ''Looping structures'' (<code>WHILE</code>, <code>WHILENOT</code>, <code>REPEAT</code>), which repeatedly execute a block of code certain number of times or by constantly and successfully evaluating a check. The only condition-controlled loop statement featured is the widespread <code>WHILE</code>, a cyclical <code>IF</code> statement as well as <code>IFNOT</code> is for <code>WHILENOT</code>, repeating the embedded code over and over again if the verified check is true or till it becomes false when reaching <code>ENDWHILE</code>. Alongside well-known constructs the language supports a singular count-controlled structure, <code>REPEAT-ENDREPEAT</code>, looping some code at least once by advancing an integer variable at each iteration until the times specified (literal-only). Despite [[Wikipedia:Considered harmful|considered harmful]] in the programming literature for [[Wikipedia:High-level programming language|high-level programming languages]], an unconditional branch is the only way to go for breaking loops beforehand and enhance paradoxically the simplistic code logic or for creating infinite loops with a backward <code>GOTO</code>.
 +
 
 +
Control flows intersection is, arguably, trouble-free and it's up to the writer to not ruin the code integrity, but still substatements must match the closest opening statement they belong to. Optimization is not of compiler concern meaning control flows are encapsulated as-is with no code reduction even for empty blocks, resulting in goto-es branching right after or piled up in sequence.
 +
 
 +
<span style="display: block; margin: 1em 0; font-size: 1.17em; font-weight: bold; color: black" id="GOSUB">Subroutine structure: GOSUB</span>
 +
 
 +
GOSUB subroutine
 +
COMMAND
 +
GOTO somewhere
 +
 +
subroutine:
 +
COMMAND
 +
RETURN
 +
 
 +
<span style="display: block; margin: 1em 0; font-size: 1.17em; font-weight: bold; color: black" id="SKIP_CUTSCENE_START_and_SKIP_CUTSCENE_END">Cutscene area structure: SKIP_CUTSCENE_START and SKIP_CUTSCENE_END</span>
 +
 
 +
{|style="table-layout: fixed" width=100% cellspacing=0 cellpadding=0
 +
|width=50%|'''Mission script'''
 +
|width=16px rowspan=2|
 +
|width=50%|'''Script multifile'''
 +
|-
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
// Formerly thought as MARK_CUTSCENE_START.
 +
SKIP_CUTSCENE_START
 +
    COMMAND
 +
    WAIT 0
 +
    COMMAND
 +
// Formerly thought as MARK_CUTSCENE_END.
 +
SKIP_CUTSCENE_END
 +
</pre>
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
// Formerly thought as CUTSCENE_SCROLL?
 +
SKIP_CUTSCENE_START_INTERNAL SPECIAL_LABEL_SKIP_CUTSCENE_STARTS_0
 +
    COMMAND
 +
    WAIT 0
 +
    COMMAND
 +
SPECIAL_LABEL_SKIP_CUTSCENE_STARTS_0:
 +
SKIP_CUTSCENE_END
 +
</pre>
 +
|}
 +
 
 +
<span style="display: block; margin: 1em 0; font-size: 1.17em; font-weight: bold; color: black" id="IF_and_IFNOT">Decision-making structures: IF and IFNOT</span>
  
* Decision-making structures ('''IF''', '''IFNOT''', '''SWITCH'''), which evaluate the result of one or more conditions and choose what path to follow based off the trueness or falseness of the check being tested. Been deemed the most basic tool of [[Wikipedia:Structured programming|structured programming]], '''IF''' is a bidirectional statement that proceeds with the execution of the underneath code only if the test carried out evaluates to true otherwise it transfers the control next to '''ENDIF''', unless a preceding and optional '''ELSE''' clause, establishing an alternative path, is specified. In the first Trilogy and both Stories chapters where '''GOTO_IF_TRUE''' is handled by game code, the barely used '''IFNOT''' can be deployed as a placeholder to easily invert the compare-flag, a boolean state which is set or cleared as a result of the bitwise [[Wikipedia:Bitwise operation#AND|conjunction]] or [[Wikipedia:Bitwise operation#OR|disjunction]] with the true/false state caught by a condition, applying the inversion according to the presence of the not-flag before updating. Logical operators make possible the connection among multiple conditions via the '''AND''' [[Wikipedia:Logical conjunction|conjunction]] and '''OR''' [[Wikipedia:Logical disjunction|disjunction]] giving the chance to verify if conditions are all true or if just one of them is satisfied bearing in mind that the '''NOT''' [[Wikipedia:Logical negation|negation]], inverting the boolean state of a single condition, may be supplied. Connectivity information are held by '''ANDOR''', whose argument depicts a value in the range <code>[1,8)</code> or <code>[21,28)</code> for logical conjunction and disjunction respectively, limiting the amount of total conditions to provide to a maximum of 8 per check (the prominent intervals discrepancy also suggests '''NAND''' and '''NOR''' operators might have been a plan). A value of 0 does nothing relevant functional-wise at runtime, what led programmers to not compile said command in such a situation for Stories chapters. The inability to create subexpressions enforces to not combine '''AND''' with '''OR''' in a check, plus evaluations are eager and therefore not short-circuited meaning all conditions are executed prior potentially branching through '''GOTO_IF_FALSE''' in the common case after the compare-flag gets processed. Nesting lots of '''IF-ELSE-ENDIF''' structures of one-condition checks testing the equality of the same variable against a few integer literals or string constants can add a ridiculous code redundancy and performance overhead, sorted out in the last Trilogy chapter thanks to the introduction of the '''SWITCH''' statement, a multiway statement either branching to the switch section labelled by fall-through '''CASE''' statements of which one passses a value that shall match the variable content to compare or optionally branching to '''DEFAULT''' in the worst-case scenario, each ending with a nonmandatory '''BREAK''' statement goto-ing past '''ENDSWITCH'''. On compilation, the implementation somehow mimics the pattern of a [[Wikipedia:Jump table|jump table]] sorting case label references by value to fulfil the runtime's [[Wikipedia:Binary search|binary search]] among at least 1 of 75 entries (default case aside);
+
{|style="table-layout: fixed" width=100% cellspacing=0 cellpadding=0
* Looping structures ('''REPEAT''', '''WHILE''', '''WHILENOT'''), which repeatedly execute a block of code certain number of times (count-controlled) or by constantly and successfully evaluating a check (condition-controlled).
+
|width=50%|'''Mission script'''
 +
|width=16px rowspan=2|
 +
|width=50%|'''Script multifile'''
 +
|-
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
IF COMMAND
 +
    COMMAND
 +
ELSE
 +
    COMMAND
 +
ENDIF
 +
</pre>
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
ANDOR 0
 +
COMMAND
 +
GOTO_IF_FALSE SPECIAL_LABEL_IFS_ELSE_0
 +
    COMMAND
 +
    GOTO SPECIAL_LABEL_IFS_0
 +
SPECIAL_LABEL_IFS_ELSE_0:
 +
    COMMAND
 +
SPECIAL_LABEL_IFS_0:
 +
</pre>
 +
|}
  
IF/IFNOT-ELSE-ENDIF
+
{|style="table-layout: fixed" width=100% cellspacing=0 cellpadding=0
SWITCH-CASE/DEFAULT-BREAK-ENDSWITCH
+
|width=50%|'''Mission script'''
 +
|width=16px rowspan=2|
 +
|width=50%|'''Script multifile'''
 +
|-
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
IF COMMAND
 +
AND NOT COMMAND
 +
    COMMAND
 +
ENDIF
 +
</pre>
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
ANDOR 1
 +
COMMAND
 +
NOT COMMAND
 +
GOTO_IF_FALSE SPECIAL_LABEL_IFS_1
 +
    COMMAND
 +
SPECIAL_LABEL_IFS_1:
 +
</pre>
 +
|}
  
WHILE/WHILENOT-ENDWHILE
+
{|style="table-layout: fixed" width=100% cellspacing=0 cellpadding=0
REPEAT-ENDREPEAT
+
|width=50%|'''Mission script'''
 +
|width=16px rowspan=2|
 +
|width=50%|'''Script multifile'''
 +
|-
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
IFNOT COMMAND
 +
OR NOT COMMAND
 +
    COMMAND
 +
ENDIF
 +
</pre>
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
ANDOR 21
 +
COMMAND
 +
NOT COMMAND
 +
GOTO_IF_TRUE SPECIAL_LABEL_IFS_2
 +
    COMMAND
 +
SPECIAL_LABEL_IFS_2:
 +
</pre>
 +
|}
 +
 
 +
{|style="table-layout: fixed" width=100% cellspacing=0 cellpadding=0
 +
|width=50%|'''Mission script'''
 +
|width=16px rowspan=2|
 +
|width=50%|'''Script multifile'''
 +
|-
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
IF COMMAND GOTO somewhere
 +
</pre>
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
ANDOR 0
 +
COMMAND
 +
GOTO_IF_TRUE somewhere
 +
</pre>
 +
|}
  
=Code layout=
+
{|style="table-layout: fixed" width=100% cellspacing=0 cellpadding=0
 +
|width=50%|'''Mission script'''
 +
|width=16px rowspan=2|
 +
|width=50%|'''Script multifile'''
 +
|-
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
IFNOT COMMAND GOTO somewhere
 +
</pre>
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
ANDOR 0
 +
COMMAND
 +
GOTO_IF_FALSE somewhere
 +
</pre>
 +
|}
  
==Main script and Main extensions==
+
<span style="display: block; margin: 1em 0; font-size: 1.17em; font-weight: bold; color: black" id="SWITCH">Decision-making structure: SWITCH</span>
 +
 
 +
{|style="table-layout: fixed" width=100% cellspacing=0 cellpadding=0
 +
|width=50%|'''Mission script'''
 +
|width=16px rowspan=2|
 +
|width=50%|'''Script multifile'''
 +
|-
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
VAR_INT check
 +
SWITCH check
 +
    CASE 0
 +
        COMMAND
 +
        BREAK
 +
    CASE 1
 +
    CASE 3
 +
        COMMAND
 +
        BREAK
 +
    CASE 2
 +
        COMMAND
 +
        BREAK
 +
    CASE 4
 +
    CASE 6
 +
    CASE 5
 +
    CASE 7
 +
        COMMAND
 +
        //BREAK
 +
ENDSWITCH
 +
</pre>
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
SWITCH_START check 8 FALSE SPECIAL_LABEL_SWITCHES_0 0 SPECIAL_LABEL_SWITCHES_CASE_0_0 1 SPECIAL_LABEL_SWITCHES_CASE_1_0 2 SPECIAL_LABEL_SWITCHES_CASE_2_0 3 SPECIAL_LABEL_SWITCHES_CASE_1_0 4 SPECIAL_LABEL_SWITCHES_CASE_3_0 5 SPECIAL_LABEL_SWITCHES_CASE_3_0 6 SPECIAL_LABEL_SWITCHES_CASE_3_0
 +
SWITCH_CONTINUED 7 SPECIAL_LABEL_SWITCHES_CASE_3_0 -1 SPECIAL_LABEL_SWITCHES_0 -1 SPECIAL_LABEL_SWITCHES_0 -1 SPECIAL_LABEL_SWITCHES_0 -1 SPECIAL_LABEL_SWITCHES_0 -1 SPECIAL_LABEL_SWITCHES_0 -1 SPECIAL_LABEL_SWITCHES_0 -1 SPECIAL_LABEL_SWITCHES_0 -1 SPECIAL_LABEL_SWITCHES_0
 +
SPECIAL_LABEL_SWITCHES_CASE_0_0:
 +
    COMMAND
 +
    GOTO SPECIAL_LABEL_SWITCHES_0
 +
SPECIAL_LABEL_SWITCHES_CASE_1_0:
 +
    COMMAND
 +
    GOTO SPECIAL_LABEL_SWITCHES_0
 +
SPECIAL_LABEL_SWITCHES_CASE_2_0:
 +
    COMMAND
 +
    GOTO SPECIAL_LABEL_SWITCHES_0
 +
SPECIAL_LABEL_SWITCHES_CASE_3_0:
 +
    COMMAND
 +
    //GOTO SPECIAL_LABEL_SWITCHES_0
 +
SPECIAL_LABEL_SWITCHES_0:
 +
</pre>
 +
|}
 +
 
 +
{|style="table-layout: fixed" width=100% cellspacing=0 cellpadding=0
 +
|width=50%|'''Mission script'''
 +
|width=16px rowspan=2|
 +
|width=50%|'''Script multifile'''
 +
|-
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
{
 +
    LVAR_INT check
 +
    SWITCH check
 +
        CASE -2
 +
        CASE -1
 +
            COMMAND
 +
            BREAK
 +
        CASE 1
 +
        CASE 2
 +
            COMMAND
 +
            BREAK
 +
        CASE 0
 +
        DEFAULT
 +
            COMMAND
 +
            //BREAK
 +
    ENDSWITCH
 +
}
 +
</pre>
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
SWITCH_START check 5 TRUE SPECIAL_LABEL_SWITCHES_DEFAULT_1 -2 SPECIAL_LABEL_SWITCHES_CASE_0_1 -1 SPECIAL_LABEL_SWITCHES_CASE_0_1 0 SPECIAL_LABEL_SWITCHES_DEFAULT_1 1 SPECIAL_LABEL_SWITCHES_CASE_1_1 2 SPECIAL_LABEL_SWITCHES_CASE_1_1 -1 SPECIAL_LABEL_SWITCHES_1 -1 SPECIAL_LABEL_SWITCHES_1
 +
SPECIAL_LABEL_SWITCHES_CASE_0_1:
 +
    COMMAND
 +
    GOTO SPECIAL_LABEL_SWITCHES_1
 +
SPECIAL_LABEL_SWITCHES_CASE_1_1:
 +
    COMMAND
 +
    GOTO SPECIAL_LABEL_SWITCHES_1
 +
SPECIAL_LABEL_SWITCHES_DEFAULT_1:
 +
    COMMAND
 +
    //GOTO SPECIAL_LABEL_SWITCHES_1
 +
SPECIAL_LABEL_SWITCHES_1:
 +
</pre>
 +
|}
 +
 
 +
<span style="display: block; margin: 1em 0; font-size: 1.17em; font-weight: bold; color: black" id="WHILE_and_WHILENOT">Looping structures: WHILE and WHILENOT</span>
 +
 
 +
{|style="table-layout: fixed" width=100% cellspacing=0 cellpadding=0
 +
|width=50%|'''Mission script'''
 +
|width=16px rowspan=2|
 +
|width=50%|'''Script multifile'''
 +
|-
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
WHILE COMMAND
 +
    COMMAND
 +
ENDWHILE
 +
</pre>
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
SPECIAL_LABEL_WHILES_A_0:
 +
ANDOR 0
 +
COMMAND
 +
GOTO_IF_FALSE SPECIAL_LABEL_WHILES_B_0
 +
    COMMAND
 +
    GOTO SPECIAL_LABEL_WHILES_A_0
 +
SPECIAL_LABEL_WHILES_B_0:
 +
</pre>
 +
|}
 +
 
 +
{|style="table-layout: fixed" width=100% cellspacing=0 cellpadding=0
 +
|width=50%|'''Mission script'''
 +
|width=16px rowspan=2|
 +
|width=50%|'''Script multifile'''
 +
|-
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
WHILE COMMAND
 +
AND NOT COMMAND
 +
    COMMAND
 +
ENDWHILE
 +
</pre>
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
SPECIAL_LABEL_WHILES_A_1:
 +
ANDOR 1
 +
COMMAND
 +
NOT COMMAND
 +
GOTO_IF_FALSE SPECIAL_LABEL_WHILES_B_1
 +
    COMMAND
 +
    GOTO SPECIAL_LABEL_WHILES_A_1
 +
SPECIAL_LABEL_WHILES_B_1:
 +
</pre>
 +
|}
 +
 
 +
{|style="table-layout: fixed" width=100% cellspacing=0 cellpadding=0
 +
|width=50%|'''Mission script'''
 +
|width=16px rowspan=2|
 +
|width=50%|'''Script multifile'''
 +
|-
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
WHILENOT COMMAND
 +
OR NOT COMMAND
 +
    COMMAND
 +
ENDWHILE
 +
</pre>
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
SPECIAL_LABEL_WHILES_A_2:
 +
ANDOR 21
 +
COMMAND
 +
NOT COMMAND
 +
GOTO_IF_TRUE SPECIAL_LABEL_WHILES_B_2
 +
    COMMAND
 +
    GOTO SPECIAL_LABEL_WHILES_A_2
 +
SPECIAL_LABEL_WHILES_B_2:
 +
</pre>
 +
|}
 +
 
 +
<span style="display: block; margin: 1em 0; font-size: 1.17em; font-weight: bold; color: black" id="REPEAT">Looping structure: REPEAT</span>
 +
 
 +
{|style="table-layout: fixed" width=100% cellspacing=0 cellpadding=0
 +
|width=50%|'''Mission script'''
 +
|width=16px rowspan=2|
 +
|width=50%|'''Script multifile'''
 +
|-
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
VAR_INT steps
 +
REPEAT 4 steps // 0 or lesser still implies 1 step.
 +
    COMMAND
 +
ENDREPEAT
 +
</pre>
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
SET_VAR_INT steps 0
 +
SPECIAL_LABEL_REPEATS_0:
 +
    COMMAND
 +
    ADD_VAL_TO_INT_VAR steps 1
 +
// Here ANDOR is accidentally missing in Trilogy.
 +
IS_INT_VAR_GREATER_OR_EQUAL_TO_NUMBER steps 4
 +
GOTO_IF_FALSE SPECIAL_LABEL_REPEATS_0
 +
</pre>
 +
|}
 +
 
 +
{|style="table-layout: fixed" width=100% cellspacing=0 cellpadding=0
 +
|width=50%|'''Mission script'''
 +
|width=16px rowspan=2|
 +
|width=50%|'''Script multifile'''
 +
|-
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
{
 +
    LVAR_INT steps
 +
    REPEAT 8 steps
 +
        COMMAND
 +
    ENDREPEAT
 +
}
 +
</pre>
 +
|style="vertical-align: top"|
 +
<pre style="white-space: pre; overflow-x: scroll">
 +
SET_LVAR_INT steps 0
 +
SPECIAL_LABEL_REPEATS_1:
 +
    COMMAND
 +
    ADD_VAL_TO_INT_LVAR steps 1
 +
IS_INT_LVAR_GREATER_OR_EQUAL_TO_NUMBER steps 8
 +
GOTO_IF_FALSE SPECIAL_LABEL_REPEATS_1
 +
</pre>
 +
|}
 +
 
 +
<span style="display: block; margin: 1em 0; font-size: 1.17em; font-weight: bold; color: black" id="Backward_GOTO">Infinite looping structure: backward GOTO</span>
 +
 
 +
loopstart:
 +
WAIT 0
 +
COMMAND
 +
GOTO loopstart
 +
 
 +
=Multiscripts=
 +
 
 +
The whole GTA series started as a world subdivided into several levels, each one per urban area spread across fewer cities, albeit 3D era titles has got a single-leveled design covering the entire game scene. Every level is shipped with a main script and a number of ancillary script files, simply called multiscripts, which are bundled inside a folder bearing the same name as the main script filename without extension. The robust scripting engine allows more scripts to cooperate simultaneously at runtime to let writing codes in a multithreading fashion but with no actual concurrency. A script is a unit of execution which, upon starting, is enqueued to a list of active scripts as long as an explicit termination, moving the script back to a list of idle scripts, occurs with <code>TERMINATE_THIS_SCRIPT</code> while <code>TERMINATE_ALL_SCRIPTS_NAMED</code> halts all instances of a script if the specified name, definitely unique to avert compiler complains, was ever set by <code>SCRIPT_NAME</code>. Running scripts are processed sequentially in a non-prioritized order and are paused pending one of the next script ticks using <code>WAIT</code> to delay the script execution of an instance some milliseconds ahead or at the earliest opportunity if 0.
  
==Scripts and Streamed scripts==
+
{{Incomplete}}
  
==Subscripts and Mission scripts==
+
==Main script and Main extensions==
  
[...] The so-called official compiler is custom by ''War Drum Studios''.
+
{{Incomplete}}
  
<del>[...] '''LOAD_SPRITE''' expects a variable-length text label of 14 characters but then the game code enforces an useless uppercase conversion of a fixed-length 15 character identifier, incorrectly including the null-terminator at 15th position during the process.</del>
+
==Scripts and Streamed scripts==
[...] Variable and text label identifiers are limited to 40 characters, the reason why 4 '''TEXT_LABEL32''' parameters are needed to store 128-byte strings. They can be passed individually as 32-byte aligned blocks but the first character is trimmed out.
 
[...] In the last Trilogy and Stories chapter, text labels must begin with an alphanumeric character or an underscore, provided that they aren't valid integer or floating-point literals.
 
[...] It is prohibited to fetch or handle a long text label using a variable of shorter length but this one is rather passable to those text label parameters also permitting long-lengthed literals.
 
[...] Variable-length text labels are kind of Pascal strings. Reference: https://en.wikipedia.org/wiki/String_(computer_science)#Length-prefixed.
 
  
[...] In the last Trilogy chapter, local variables start at index 34 in mission scripts so local timers are also ignored.
+
{{Incomplete}}
  
[...] Some commands have non-typified arguments which are referred to as parameters.
+
==Subscripts and Mission scripts==
  
[*] No more than 8 conditions are allowed per check
+
{{Incomplete}}
[*] Checks are not short-circuited at runtime meaning all conditions are executed before branching
 
[*] NAND and NOR might have been planned considering ANDOR values (0, 1 to 7, 21 to 27). Hint: mention the compare flag.
 
[*] ANDOR is not compiled in Stories games for one condition checks
 
[*] IFNOT and WHILENOT are not supported in VC and SA because GOTO_IF_TRUE is not handled by game code there.
 
[*] REPEAT is supported since VC
 
[*] REPEAT cycles at least one-time
 
[*] REPEAT wrongly accepts a value lesser than 1 for the times argument
 
[*] SWITCH is supported only in SA
 
[*] SWITCH allows fall-through CASEs so BREAK is not mandatory
 
[*] SWITCH handles up to 75 CASEs chosen as a result of a binary search which requires CASEs to be sorted on compilation
 
[*] In contrast to scope-free subroutines which feature no argument...
 
[*] Boolean-valued gosub and function
 
[*] Recursion is allegedly not supported albeit gosubs and functions have 8 global levels of nesting in Trilogy chapters and 16 in Stories'.
 
[*] Decision-making statement (IF, IFNOT, SWITCH)
 
[*] Count-controlled loop (REPEAT)
 
[*] Condition-controlled loop (WHILE, WHILENOT)
 
[*] An unconditional branch, despite considered harmful in the programming literature, is the only way to go for breaking loops prematurely and enhance the simplistic code logic.
 
[*] Infinite loops are achieved by means of a backward GOTO
 
  
[...] Although it is able to infer nothing regarding the aim exclusive mission scripts were planned for which swings among testing, mission pack and multiplayer purposes, there are bunch of irrefutable evidences implementation-wise. The functionality is analoguous to usual mission scripts but, on the other hand, the opposing kind of them is totally superseded and completely overlooked during the compilation phase. Their coexistence is perfectly legal, though leftover launchers are bad style and dangerous in so far as noncompilable unless an exclusive variation is also provided. Additionally, they are a lot limited in quantity: the first Trilogy chapter expects in theory only an intro mission ('''INTRO''', shame not at runtime), the second chapter an auxiliary initialization mission ('''INITIAL'''), the third one an extra initialization mission ('''INITIL2''') and whereas Stories chapters have game provision for such feature along the lines of Vice City, their compilers have allegedly no support because of deprecation (the trigger command is still there, however the too many initialization missions seen in the script binary might speak from themselves). Hints: one's complement
+
=Tools=
  
[...] Early in development, '''STREAM_SCRIPT''' was compiled to '''STREAM_SCRIPT_INTERNAL'''.
+
{{GTAF|566450|SCRambl}}, first ever attempt for a now discontinued third-party compiler by {{U|Deji}}<br/>
 +
{{GTAF|876530|GTA3script Toolchain}}, second and still work-in-progress attempt for an unofficial compiler by {{U|Link2012}}
  
Despite streamed scripts may receive an entity handle as input parameter, they are not necessarily callable and so an on-top, unreachable, explicit entity's creation is due:
+
=External links=
  
{
+
{{GTAF|876461|Learn GTA3script in Y minutes}}, tutorial for deep diving into the language in a short time by {{U|Link2012}}<br/>
    VAR_INT test_char sanity
+
[https://gtamodding.github.io/gta3script-specs/ GTA3script Language Specifications], community-based specifications of the language led and maintained by {{U|Link2012}}
 
    sanity = 0
 
    IF sanity = -1
 
        CREATE_CHAR PEDTYPE_CIVMALE male01 0.0 0.0 0.0 test_char
 
    ENDIF
 
}
 
  
This scenario also extends to any embedded script or script file
+
=See also=
  
Originally, explicit entity creations are conventionally put on top of any sort of script by mean of unreachable code to confer specific entity types to declared variables for better error-checking:
+
[[SCM language III/VC definitions]]

Latest revision as of 01:25, 14 November 2021

40px-Ambox rewrite orange.svg.png This article may need to be rewritten.
Please help improve this article. The discussion page may contain suggestions.
This article deals with the native scripting language syntax of GTA 3 series, nothing other than III, VC, SA, LCS and VCS.
It may incorporate nonstandard specifications due to the fact R* hasn't published enough documentation about yet.

On the occasion of the "Grand Theft Auto III 10th Anniversary", after a long period of darkness where we fell about the real scripting language syntax, R* finally treated us (or was it, as it seems, a War Drum Studios sloppy oversight?) by attaching part of its own original source code into the Mobile release, available for iOS and Android devices. A year later, the so-called official compiler, somewhat customized for the sake of convenience, was shipped via the remastered edition of Vice City. As far back as 2001, a snip of some debugging scripts has been already provided with main.sc and debug.sc script files that were allegedly meaningful for a sort of script version checker uncut on debug builds. Nonetheless, many secrets are still unrevealed, thus some stuff cannot be fully documented at the moment, hopefully, and so they can be merely guessed. The .scm format abbreviation is one of countless proofs of such a downside which probably stands for Script Multifile, while .scc might be in turn the short form of Compiled Script. No doubt comes with source files, whose .sc extension is the contraction of Mission Script. Although we have enough information to suppose the currently unknown mysteries of the used language, we still have no safe clue about what was its original denomination. Furthermore, it is a matter of fact that R* developers have been left intact the miss2 executable filename of third generation compilers since the chapter 2. In this connection, we could imagine the newer language is a variant or an evolution of the GTA2script which label, initially referred to as GBHscript, expressly popped up in the ancient documentation by DMA Design Ltd. (at present Rockstar North). On those grounds, we are almost sure to say the name of the scripting language targeting each game with all peculiar but minimal enhancements or regressions is most likely GTA3script (as-is casing) for III, GTAVCscript for Vice City, GTASAscript for San Andreas, GTALCSscript for Liberty City Stories and lastly GTAVCSscript for Vice City Stories. However, it is definitely based on BASIC.

Fundamentals

Comments

Codes are usually self-explanatory for the author but large sources can compromise everyone's management capability, that means some annotation can save much time on the long-term particularly when being stuck trying to understand old stuff which should never happen in the first place, not to mention team mates would certainly blame the original writer on each revision and slow down the completion of cooperative projects. Sometimes, it is also required to temporarily/permanently disable code lines for testing purposes. Fortunately, the language supports the following typologies of comments:

  • Line comment, prefixed with // (two forward slashes), which extends till the end of the line. Everything is ignored inside: // Some comment.;
  • Block comment, enclosed with a pair of /* (a slash plus an asterisk) and */ (the other way around), which embodies a circumscribed text area. Several blocks can be nested together: /* Some /* comment */ . */.

Delimiters

Conventionally, lines can be splitted into various regions in order to enhance the code legibility through bracket-delimited and/or comma-separated elements. As being pure whitespaces, the opening parenthesis delimiter doesn't necessarily need to match the closing counterpart and viceversa. The only tangible use of separators carried out in public sources is related to inline declaration of multiple variables, text keys of print-commands and SETUP_ZONE_PED_INFO but codes can be organized to one's liking. Here are some demonstrations:

VAR_INT joeys_buggy, swank_taxi
PRINT_NOW (ASUKA) 2000 1
SETUP_ZONE_PED_INFO CHINA DAY (30) 350 600 0 (0 0 0 0) 0

Integers and Floating-points

Numeric values are used extensively throughout the whole script following no particular notation besides the decimal one. The specializing number representation tells whether a literal is an integer or a floating-point value: an appending f or F floatifies a number, whose suffix becomes superfluous if a radix point, discerning decimals from integral digits, is supplied. Float parts are alternatively omissible hence a 0 digit is implied if one and only one of them is missing. Literal parsing starts from the minus sign, radix point or number digit and stops at the first non number character after a series of digits, leading and/or trailing an eventual radix point, or float suffix. To sum things up, these values are valid numbers: 1, -0, 1f, -0f, 1.0, 1.0f, 1., 1.f, .0, .0f and also 1-2 (ill-formed on basic or compound assignments), 1..2, 1f2, producing 1 (1f-2 is ill-formed a priori). In the first Trilogy chapter, the fixed-point format was chosen meaning precision was guaranteed to not get lost if the decimal part wasn't lesser than just one-tenth.

Labels, Text labels and Strings

Thanks to the beneficial code fragmentation, the source is subject to script file inclusions, favouring modularity, and sparse goto branches, involving embedded code blocks diversification. Both kinds of partitioning are accomplished respectively through the specification of:

  • Filenames, that is special labels which somehow resemble legit pathnames, starting with any valid pathname character but not containing whitespaces. They are relative to the root path deriving from the .sc extension removal of the main script full path where files are searched in by default: X:\folder\main. Subfolders are scanned as well:
    • Till the first tree level if inside one of the subdirectories: X:\parent\main\child;
    • Till the second tree level if inside one of the parent directories: X:\parent or X:\parent\main;
    • Indefinitely (unlimited recursion till the maximum path length allowed).
The .sc extension at the end of filenames is mandatory else an argument mismatch is warned, by contrast the main script can have any extension to which m (multifile) or c (compiled) is appended in the target pathname. Due to a Cd image system limitation, all sorts of filename must be shorter than 20 characters and conventionally they must be free of extra dots for streamed scripts;
  • Labels, that is unique identifiers suffixed by a colon which identify a precise location of the source code representing the target position of goto-like, script starter, subroutine or function caller commands: my_label: (on a new line). Weirdly enough, they may begin with any character alike filenames or be empty despite being susceptible to the same restrictions of string identifiers whenever passed as arguments but, regardless, must not exceed 39 characters (colon included, yet blanked out) and whereas these are not commands, anything else can follow next to and be inlined so long as a splitting character is inserted.
Labels store a reference depicting either an absolute address falling within the main script space (including main extensions and generic subscripts) or a relative and negative address pointing to a place of the mission script space or that of a particular streamed script. Albeit addresses are zero-based anyway, it is discouraged to use a WHILE construct at or branch by hand to the almost very top of a mission/streamed script file or even communicate between different script spaces with gotos.

That said, labels are basically user-supplied identifiers whose existence is verified. The text label or text string counterpart is not fully compliant to this standard (script names are exempt, for instance) since string identifiers are massively employed as main/mission text keys or whatever referring to an internal resource, which the game handles according to a well-defined associative scheme. As a general rule, these are primarily supposed to be at most 7 characters long and must begin with a letter and never end with a colon or either begin with an underscore or an alphanumeric character in the last Trilogy and Stories chapter where text label variables are supported, provided that here their literals are not valid integer or floating-point numbers taking the precedence over string identifiers on parsing:

LOAD_SPECIAL_CHARACTER 1 eight
CUSTOM_PLATE_FOR_NEXT_CAR CAR_TAMPA _FELTCH_
SCRIPT_NAME 99red

In the last Trilogy chapter and nowhere else, longer text labels were introduced, some sort of Pascal strings having a variable length of maximum 40 characters for literals or a fixed length of 16 bytes for variables, twice as big as the shorter text label ones. Speaking of which, it is prohibited to get or handle a longer text label using a variable of shorter length but this one is rather passable to those text label parameters also permitting long-lengthed literals. Notoriously, identifiers length is anything but expensive for readability reasons, in addition they do not even offer the ability to insert whitespaces or other inadmissible characters owing to the by-design absence of delimiting tokens. At this matter, debug texts are sent as 127-character string literals enclosed by double quotes:

SAVE_STRING_TO_DEBUG_FILE "current_wanted_list = "

These quoted strings are, in essence, made up of four text labels aligned to 32 bytes (at the highest power of two possible per parameter) individually accessible as a result of a compiler bug, cause the first character of each literal-only argument is trimmed out as a quotemark – during the line reconstruction phase, the opening and closing quotemarks along with   / , ( )\t are swapped to A \0 \xD1-\xD6 and back again on code generation (the NUL-terminator at the end of string literals makes them rightmost arguments, ignoring the rest).
Unlike string literals, empty text labels are impracticable though $ alone compiles a NUL-string identifier in the last Stories chapter[no source] – as reported by some indiscreet speculations, the rearrangement of crucial commands signals a syntax enhancement the language has undergone which sees delimited strings superseding text labels, lowly probable because string constants are still disallowed for multi-type parameters. In San Andreas, text labels are implicitly comparable against NUL-string identifiers but no syntactical facility accommodates an explicit use.
It's worth noting text labels and string literals are not interchangeable because of their syntactic differences even if they present semantic similarities, moreover text labels do not ever interfere with command names and string constants. A final quirk to note concerning labels as a whole is they are automatically converted to upper case: this obvious evidence proves identifiers and whatnot are all case insensitive with the exemption that string literals are left as-is for remastered game builds.

Data types

Forasmuch as the language obeys the strong typing paradigm, the syntactic elements that denote a value during execution do have fixed data types, most of which are appended as a suffix at variable declaration. Their conspicuous assortment is listed below:

Name Format Size Range Is
main
Is
basic
Derivative data types Immediate
support
Variable
support
NONE
LABEL String identifier
(translated to address)
1, 2 or 4 1 to 38 Since GTA III
Filename
(translated to address or index)
1 to 19
INT Signed integer -2n-1 to 2n-1-1
(where n is 8, 16 or 32)
VAR_INT, VAR_INT_OPT,
LVAR_INT, LVAR_INT_OPT,
(Vice City Stories apart)
INPUT_INT, OUTPUT_INT
Since GTA III
FLOAT Q11.4 fixed-point
(III only)
2 -211 to 211-2-4 VAR_FLOAT, VAR_FLOAT_OPT,
LVAR_FLOAT, LVAR_FLOAT_OPT,
(Vice City Stories apart)
INPUT_FLOAT, OUTPUT_FLOAT
IEEE-754 floating-point
(packed in Stories)
1-4 ±2-126 to ±2127(2-2-23)
TEXT_LABEL String identifier
(NUL-terminated)
8 1 to 7 VAR_TEXT_LABEL, VAR_TEXT_LABEL_OPT,
LVAR_TEXT_LABEL, LVAR_TEXT_LABEL_OPT,
(Vice City Stories apart)
INPUT_TEXT_LABEL, OUTPUT_TEXT_LABEL
(Vice City Stories only)
Since GTA III San Andreas and Vice City Stories
TEXT_LABEL16 String identifier
(if non variable-only, accepts
TEXT_LABEL variables)
9-41
(Pascal string)
8 to n
(where n is <= 40)
VAR_TEXT_LABEL16, VAR_TEXT_LABEL16_OPT,
LVAR_TEXT_LABEL16, LVAR_TEXT_LABEL16_OPT
San Andreas only
16 1 to 15
TEXT_LABEL32 String identifier
(NUL-terminated)
32 1 to 39
(bugged)
San Andreas only
String literal
(NUL-terminated)
32×4 1 to 127
INPUT
(optional)
Includes INT and FLOAT
Includes TEXT_LABEL
(Vice City Stories only)
STRING
(internal only)
Label,
Variable name,
String constant[*],
Text labels,
Quoted string
UNKNOWN

^ String constants are only compatible with INPUT_INT data type but default constants favour INT regardless.

Immediates and Variables

Data can take the appearance of a few expressions varying from numeric, text label and string literals each of which occupies a certain area of storage with unfixed size. Immediates can also be preserved for later use and therefore reserve space over the private script memory corresponding to a variable. The strongly-typed language property imposes to explicitly declare variables anywhere in the current scope, namely the context inside which they are visible for usage. Sensibly, declarations should figure beforehand but likewise it is allowed for accessing backward declarations. Variables accessible from any location are marked as globals (starting from offset 8 or more, occupying lots of space in the script multifile, up to 64 kibibytes) and their declaration is achieved by prepending the VAR wording followed by one of the basic data types (multiple declarations of the same type can be inlined), both separated by an in-between underscore:

VAR_INT player scplayer
VAR_FLOAT x_float, y_float, z_float
VAR_TEXT_LABEL interior_name
VAR_TEXT_LABEL16 shop_item

Globals are capable of being selectively marked as saveable using the SAVE_VAR prefix, in order to restore their value on savegame loading and free generic variables. In Trilogy chapters, if enabled properly in a hacky manner, these are solely common variable declarations with no additional purpose, a plan not gone through. On the other hand, globals declared within the mission context are not visible outside in Stories chapters since they overlap the same space, making a discernment among true and al-most globals. However, there's no exact rule for variable naming apart they must begin with a specific character and never end with a colon just like string identifiers, expanding till a maximum of 39 characters. It's preferable definitions shall not contain operator tokens to prevent any parsing ambiguity plus, most importantly, they must not conflict with string constants and local timers. Nevertheless, text labels and variable names semantics may collide: in this case, the formers have priority over the latters unless a preceding dollar sign is added:

PRINT_BIG TEXTKEY 5000 2  // Compiles a text label literal.
PRINT_BIG $textkey 5000 2 // Compiles a text label variable.

Despite variables are freed and zero-initialized at runtime on new/load game or script allocation in broad terms, statistical information are still gathered whenever they are read before being written, besides if they are never read or never written (passing a variable as reference has no effect onto the content). Furthermore, if a variable is set to hold an entity handle (alias unique index) returned by a specific create-command it cannot be assigned to any other entity-command of different kind or none, including the forseeable assignment operations. This restriction propagates on script and function callings as well: starting/streaming the same script or calling the same function multiple times with variables of dissimilar entity types is forbidden if triggers are encountered prior the script or function lexical scope is fetched, in which case entities are explicitly initialized in the form of unreachable code:

{
    LVAR_INT fellow_char robbery_car money_bag sanity

    sanity = 0
    IF sanity = -1
        CREATE_CHAR PEDTYPE_CIVMALE male01 0f 0f 0f fellow_char
        CREATE_CAR admiral 0f 0f 0f robbery_car
        CREATE_OBJECT woodenbox 0f 0f 0f money_bag
    ENDIF
}

Lexical scope

Once a script is launched, a local storage space consisting of a context-dependent set of variables (16+2 in III/Vice City, 32+2 in San Andreas and 40+2 on Mobile, 96+8+2 in Stories) ready for use is also reserved. As opposed to global variables, locals have visibility only inside a particular region of the source code and are preceded by the LVAR wording at declaration within a nonnestable block embraced by { and }:

{
    LVAR_INT pickup message_num
}

Local names do not override global definitions, they must not collide together otherwise a warn is issued. Beyond user-defined locals, predefined TIMERA and TIMERB variables are provided: these timers measures the playing time milliseconds passed since the script beginning but they can be reset just fine. In the last Trilogy chapter, mission locals are mainly static variables starting from index 34 or 42 on Mobile whose space (having a size of 4 kibibytes) is shared among each mission thus being reasonably more abundant in this scenario but, as a side effect, local timers are unavailable. Transferring the control over and above the lexical scope boundaries or to another multiscript leaves the active context and hides local definitions, thereby switching across lexical scopes is bad practice and can lead to unpredictable results if contexts are not strictly equivalent in the variable declarations.

Arrays

Since the last Trilogy chapter, instead of declaring multiple scalar variables of same type, a one-dimensional indexed array can be defined. Each element is accessed through either a zero-based[no source] positive number or a variable index (local-only in Stories) in a subscript expression on assignment or argument passing. On declaration, a pair of square brackets enclose the array size which mustn't be bigger than 255 units:

VAR_INT prop_assets[32]
CREATE_FORSALE_PROPERTY_PICKUP -1969.27 282.47 34.6 50000 PROP_3 prop_assets[0]

In sooth, one-based arrays were already supported in the second Trilogy chapter but in a manner which is defective and incomplete: they missed the intrinsic data type, giving no reference point on how to interpret the compiled operands, producing corrupted intermediate code because of fall-through reading. There is no precedent to safely assert that arrays became zero-based later on the language evolution but what is certain is this sort of indexing lines up immediate with variable indices. Oddly, as a result of the uni-dimensionality constraint implementation, a complementary yet nonfactual identifier can follow the closing bracket immediately afterwards with no redundancy notice (i.e. prop_assets[0]anything). Moreover, scalar variables have an implicit array size of one element which is needlessly accessible and plus the index part of the first element of an array is in turn omissible, everything notwithstanding the misleading declaration. Granted that brackets do not encompass any separator character or identifiers wider than 39 characters, array indices reject string constants but admit local timers.

String constants

Very often, numeric literals express arbitrary values which are far from being self-documenting without descriptive labels belonging to a list of predefined names. These strings or enumerators are guaranteed to store an immutable constant and must forcibly pertain to the required enumeration if passed as arguments unless, if and only if no enumeration is set, the enumeration-free default constants TRUE/FALSE, ON/OFF, DAY/NIGHT or KILLFRENZY enumerators are supplied:

CHANGE_BLIP_DISPLAY blip1_jm1 BLIP_ONLY
flag_car_blip_displayed_jm1 = TRUE

Assignments and comparisons do not suffer such a restriction and, what's more, in case of too long lines (wider than 255 characters) immediates can safely replace string constants to shorten the exceeding length and fall within the limits. Of course, string constants are bound to the same parsing rules as string identifiers but, as being mainly hardcoded, they are just as limitless in length.
During the development stage, the game's map experiences lots of continuous changes that make the management of objects, as a result of having a fixed indexing, pretty awkward without taking into account their bulk amount. In this respect, parameters expecting level objects are able to define the used objects (no more longer than 23 characters) under the hood, bringing them together in a sorted array whose criteria depends on the order of their appearance, something other than the default models which are hardcoded (for peds, cars, weapons, wheels, cutscene objects and the like). A blank, unavailable object is always reserved, shifting ahead each next negated position becoming one-based. Negative indices assure models fit in the used objects array, according to which the runtime matches the right index through a lookup table:

REQUEST_MODEL bridgefuka // First use ever. It compiles -1 from now on.
REQUEST_MODEL bridgefukb // First use again. This time it compiles -2.
LOAD_ALL_MODELS_NOW
CREATE_OBJECT_NO_OFFSET bridgefuka 715.746 -937.908 40.194 damagea
CREATE_OBJECT_NO_OFFSET bridgefukb 787.835 -939.24 38.971 damageb

The lack of error-checking requires a meticulous handwriting to avoid script deadlocks at runtime, the reason why default models of which undefined names follow the format NOT_USED%d (where %d is a model index from 0 to 299) and level objects are loaded straight from IDE files for Vice City's remastered build. Nonetheless, iterating among several objects can be very expensive for a poorly optimized, rough compiler even on fast machines, not to mention enumerators are likely to collide without specializing prefixes (i.e. SNIPER camera mode and weapon name, formerly WEAPON_SNIPER), enough to revert back thereafter.
Assignments and comparisons have no clue about used objects and are therefore not designed to accommodate or implicitly define one on their own, because they are supposed to be strict with the identifier existence as being more prone to work out with variables. This concept somehow extends to those parameters not featuring used objects as a general rule. If an unusual application needs to take place, making use of non-inlined CONSTANT_INT declarations would hint the compiler to treat unequivocally the specified string constants as used objects, truly defining a new one on the first practical usage wherever it occurs and not yielding an undefined variable error:

CONSTANT_INT cj_pizza_1
CONSTANT_INT cj_pizza_2
VAR_INT food_model1 food_model2

REQUEST_MODEL pizzahigh  // -1
food_model1 = cj_pizza_1 // -2
food_model2 = cj_pizza_2 // -3
REQUEST_MODEL food_model1
REQUEST_MODEL food_model2

Any string constant passed in place of an object model compiles a used object indiscriminately assuming no CONSTANT_INT declaration, also preventing redefinitions towards default constants, enumerators and variable names, does exist. Messing around with frequent compiler tool recompilations can be tedious solely to establish broad, same-indexed or math-related string constants but fortunately, in the last Trilogy chapter, the language offers the opportunity to settle user-supplied default constants for numeric literals using CONST-prefixed declarations (maximum 39 characters long) which, alike for variables and CONSTANT_INTs, are backwards accessible:

CONST_INT gf_date_active 1
CONST_FLOAT math_pi 3.1415927

SET_BIT gf_date_flags gf_date_active
rad_angle = deg_angle * math_pi
rad_angle /= 180.0

Given that default models are also default constants in Stories chapters[no source], default constants and used objects count as pseudoconstants: contrary to what non-default enumerators entail, generic alternatives are favoured on assignment or comparison command matching. It should be pointed out that, due to a critical compiler bug, the high-order word of the value held by any enumerator is unexpectedly discarded on assignment or comparison and that, if set, the 16th bit yields a nonexistent variable error (i.e. THREAT_GANG9 flag) prior Stories chapters, after which a default constant is compiled instead (buggy behaviour) and recognized only if the low-order word represents a value not equal to -1[no source]:

Mission script Script multifile
SET_CHAR_THREAT_SEARCH npc_char THREAT_GANG_GOLFER
SET_CHAR_THREAT_SEARCH npc_char THREAT_GANG9
SET_CHAR_THREAT_SEARCH npc_char THREAT_EMERGENCY
threat_flag = THREAT_GANG_GOLFER
threat_flag = THREAT_GANG9 // Ill-formed in Trilogy.
threat_flag = THREAT_EMERGENCY
SET_CHAR_THREAT_SEARCH npc_char 16384
SET_CHAR_THREAT_SEARCH npc_char 32768
SET_CHAR_THREAT_SEARCH npc_char 65536
SET_VAR_INT_TO_CONSTANT threat_flag 16384
SET_VAR_INT threat_flag 32768
SET_VAR_INT_TO_CONSTANT threat_flag 0

This drawback unwittingly affects real code in Liberty City Stories in one circumstance. On a final note, string constants are incompatible with optional arguments and thus taking advantage of a temporary variable would overcome this syntactic limitation.

Operators

As soon as a numeric or text label variable is declared, it can be subjected to algebric operations and/or logical comparisons by virtue of several operators. Their support is sadly very primitive, in fact the ability to establish complex expressions with parentheses and such is not featured albeit one and only binary operation is enabled to follow the basic assignment. In this regard, the variable being assigned to the lvalue cannot be the same as the outer rvalue for non-commutative operations: VAR1 = THING - VAR1, VAR1 = THING / VAR1, VAR1 = THING +@ VAR1 and VAR1 = THING -@ VAR1 are all ill-formed (where THINGVAR1). This issue arises because the explicit usage of a temporary variable is needed which would be harmful for the compiler to waste by itself under the hood, thus here expressions are necessarily made up of distinct two-operand instructions, that is the lvalue content is initialized prior encoding any supplementary rvalue arithmetic:

Mission script Script multifile
VAR1 = 1 - VAR1 // Invalid, cause VAR1 = 1; VAR1 -= VAR1 doesn't make sense.
                // It would perform 1 - 1 = 0. Workaround needed.
VAR1 = 1 / VAR1 // Invalid, cause VAR1 = 1; VAR1 /= VAR1 does no effect.
                // It would perform 1 / 1 = 1. Workaround needed.
VAR1 = 1 - VAR2 // Valid, cause VAR1 = 1; VAR1 -= VAR2 doesn't null itself like above.
                // It performs x = 1 - y.
VAR1 = 1 + VAR1 // Valid, addition (as well as multiplication) is commutative so VAR1 += 1.
                // It performs x = x + 1.
NEGATE VAR1 // Unknown command (speculative). It would do x = -x.
ADD_THING_TO_THING VAR1 1
ONEOVER VAR1 // Unknown command (speculative). It would do x = 1 / x.
MULT_THING_BY_THING VAR1 1
SET VAR1 1
SUB_THING_FROM_THING VAR1 VAR2
ADD_THING_TO_THING VAR1 1

The subtraction of positive or negative rvalues necessitates a splitting character in order to discern the infix operator unambiguously, which would be treated as part of the literal or a variable decrement otherwise (i.e. VAR1 = VAR1 -1 or VAR1 = VAR1 --1). Typically, string constants are not suitable for math calculations because of the lack of matchable alternative commands but even so they are semantically contemplated as long as a non-default enumerator is provided as the inner rvalue of a ternary operation or a default constant or enumerator is passed to any rvalue (i.e. VAR1 = PAD1 + 1, VAR1 = DAY + 1 or VAR1 = 1 + KILLFRENZY_INITIALLY). Another clear limitation is prefix and postfix operators do not apply onto arguments, hence there's no concrete differentiation. However, the language introduces the timed addition/subtraction to looply update a variable in a frame-rate independent way, the cast assignment to do a mutual conversion between integers and floats but it doesn't give support for the modulo operation as its predecessor. The inequality comparison was planned but quickly gone obsolete[no source] – availing of the negated form of the equality operator would have sounded more intuitive but one should be aware the not-flag is not bundled with the command index when matching alternative commands. Due to a negligence of the programmers in charge, liable for forgetting some assets of the scripting environment, the local-global in/equality comparison between integer or float variables is not feasible except in the last chapter of Trilogy and Stories series. Surprisingly enough, the basic assignment may prepend ABS which in so doing would be capable of receiving numeric literals because of the pre-empted rvalue assigning (i.e. VAR = ABS THING). In principle, SET is not compiled only if both lvalue and rvalue (whether inner or outer) of a ternary operation or ABS assignment collide (identity).

Arithmetic operators

Name Syntax INT FLOAT TEXT_LABEL/16
Basic assignment
VAR = THING
Addition
THING + THING
Subtraction
THING - THING
Multiplication
THING * THING
Division
THING / THING
Timed addition
THING +@ THING
Timed subtraction
THING -@ THING
Increment Prefix
++ VAR
Postfix
VAR ++
Decrement Prefix
-- VAR
Postfix
VAR --

Compound assignment operators

Name Syntax Meaning INT FLOAT
Addition assignment
VAR += THING
VAR1 = VAR1 + THING
Subtraction assignment
VAR -= THING
VAR1 = VAR1 - THING
Multiplication assignment
VAR *= THING
VAR1 = VAR1 * THING
Division assignment
VAR /= THING
VAR1 = VAR1 / THING
Timed addition assignment
VAR +=@ THING
VAR1 = VAR1 +@ THING
 
Timed subtraction assignment
VAR -=@ THING
VAR1 = VAR1 -@ THING
Cast assignment
VAR =# THING
AS IS

Comparison operators/relational operators

Name Syntax INT FLOAT TEXT_LABEL/16
Equal to
VAR = THING
Not equal to[no source]
VAR <> THING
Greater than
THING > THING
Less than
THING < THING
Greater than or equal to
THING >= THING
Less than or equal to
THING <= THING

Logical operators

Name Syntax
Logical negation
NOT
Logical conjunction
AND
Logical disjunction
OR

Commands

The imperative programming paradigm provides for a conglomerate of commands the script is filled up of and structured in, which are seen as orders to instruct the execution of the relative built-in portion of game code at runtime. Their invocation is faithful to procedure calls: they may feature zero or more parameters (up to 16+ in III\Vice City, 32+ in San Andreas and Stories) of any type or indefinite, depending on whether or not qualified as optional, and receive as much as arguments either by-value or by-reference affecting the read/written access accordingly (do note a pure reference does not initialize anything). Alike procedures, no assignable result is returned but a boolean state is caught anyway on conditional evaluation. One major peculiarity is command names are usually identified by a verb in its imperative form:

GIVE_WEAPON_TO_CHAR mafia_1X WEAPONTYPE_UZI 999

Command names are leftmost identifiers not ending with a colon (not a label) and not preceded or followed by an operator token (not a variable). On code generation, their definition is turned into a 15-bit index reflecting the position the name is matched at in a list of command descriptors and packed with the not-flag stored in the most significant bit, accompained by a known or indeterminate number of typified, somewhat typified or thorougly nontypified operands completing several instructions which are arranged in order to bring forth the intermediate script bytecode. At every command corresponds an output except for variable, string constant and lexical scope declarators or for the classic NOP (no operation). Operand immediates mainly use the shortest representation for size optimization, yet label references always yield 32-bit addresses.
Game progress rely on many countable stuff to determine the percentage acquired at any given time which are extremely time spending and easily error-prone to quantize manually. Counter-commands come to aid, sort of adaptive counters featuring a possibly zero-valued argument updated automatically during the compilation process that keeps track of the times a few commands are used or of the total sum of some argument value of certain commands, discarding nonimmediates:

Initializer Dependency Is
addend
SET_COLLECTABLE1_TOTAL CREATE_COLLECTABLE1
SET_PROGRESS_TOTAL PLAYER_MADE_PROGRESS
SET_TOTAL_NUMBER_OF_MISSIONS REGISTER_MISSION_PASSED
REGISTER_ODDJOB_MISSION_PASSED
SET_MISSION_RESPECT_TOTAL AWARD_PLAYER_MISSION_RESPECT

Condition-based statements and counter-commands along with the file includers outside of the main script or main extensions, where labels are expected instead of filenames, are mostly parameterized regardless of their own descriptor (the type-check is still done though), while another category consisting of multicommands is able to look for the matching prototype into a list of akin commands on the basis of the data type of the passed arguments and choose, accordingly, the equivalent alternative in a direct and effortless way. Although the alternative commands are also accessible by and can share the same definition, the selection process is not entirely conform to function overloading because these still retain their exclusive name as being plainly resolved through weak aliases. A complete listing is shown below:

Trilogy and first Stories chapters Second Stories chapter
Command Game
support
Alternative
SET (=) Since GTA III
SET_VAR_INT
SET_VAR_FLOAT
SET_LVAR_INT
SET_LVAR_FLOAT
SET_VAR_INT_TO_VAR_INT
SET_LVAR_INT_TO_LVAR_INT
SET_VAR_FLOAT_TO_VAR_FLOAT
SET_LVAR_FLOAT_TO_LVAR_FLOAT
SET_VAR_FLOAT_TO_LVAR_FLOAT
SET_LVAR_FLOAT_TO_VAR_FLOAT
SET_VAR_INT_TO_LVAR_INT
SET_LVAR_INT_TO_VAR_INT
SET_VAR_INT_TO_CONSTANT Since Vice City
SET_LVAR_INT_TO_CONSTANT
SET_VAR_TEXT_LABEL San Andreas only
SET_LVAR_TEXT_LABEL
SET_VAR_TEXT_LABEL16
SET_LVAR_TEXT_LABEL16
CSET (=#) Since GTA III
CSET_VAR_INT_TO_VAR_FLOAT
CSET_VAR_FLOAT_TO_VAR_INT
CSET_LVAR_INT_TO_VAR_FLOAT
CSET_LVAR_FLOAT_TO_VAR_INT
CSET_VAR_INT_TO_LVAR_FLOAT
CSET_VAR_FLOAT_TO_LVAR_INT
CSET_LVAR_INT_TO_LVAR_FLOAT
CSET_LVAR_FLOAT_TO_LVAR_INT
ADD_THING_TO_THING (+=) Since GTA III
ADD_VAL_TO_INT_VAR
ADD_VAL_TO_FLOAT_VAR
ADD_VAL_TO_INT_LVAR
ADD_VAL_TO_FLOAT_LVAR
ADD_INT_VAR_TO_INT_VAR
ADD_FLOAT_VAR_TO_FLOAT_VAR
ADD_INT_LVAR_TO_INT_LVAR
ADD_FLOAT_LVAR_TO_FLOAT_LVAR
ADD_INT_VAR_TO_INT_LVAR
ADD_FLOAT_VAR_TO_FLOAT_LVAR
ADD_INT_LVAR_TO_INT_VAR
ADD_FLOAT_LVAR_TO_FLOAT_VAR
SUB_THING_FROM_THING (-=) Since GTA III
SUB_VAL_FROM_INT_VAR
SUB_VAL_FROM_FLOAT_VAR
SUB_VAL_FROM_INT_LVAR
SUB_VAL_FROM_FLOAT_LVAR
SUB_INT_VAR_FROM_INT_VAR
SUB_FLOAT_VAR_FROM_FLOAT_VAR
SUB_INT_LVAR_FROM_INT_LVAR
SUB_FLOAT_LVAR_FROM_FLOAT_LVAR
SUB_INT_VAR_FROM_INT_LVAR
SUB_FLOAT_VAR_FROM_FLOAT_LVAR
SUB_INT_LVAR_FROM_INT_VAR
SUB_FLOAT_LVAR_FROM_FLOAT_VAR
MULT_THING_BY_THING (*=) Since GTA III
MULT_INT_VAR_BY_VAL
MULT_FLOAT_VAR_BY_VAL
MULT_INT_LVAR_BY_VAL
MULT_FLOAT_LVAR_BY_VAL
MULT_INT_VAR_BY_INT_VAR
MULT_FLOAT_VAR_BY_FLOAT_VAR
MULT_INT_LVAR_BY_INT_LVAR
MULT_FLOAT_LVAR_BY_FLOAT_LVAR
MULT_INT_VAR_BY_INT_LVAR
MULT_FLOAT_VAR_BY_FLOAT_LVAR
MULT_INT_LVAR_BY_INT_VAR
MULT_FLOAT_LVAR_BY_FLOAT_VAR
DIV_THING_BY_THING (/=) Since GTA III
DIV_INT_VAR_BY_VAL
DIV_FLOAT_VAR_BY_VAL
DIV_INT_LVAR_BY_VAL
DIV_FLOAT_LVAR_BY_VAL
DIV_INT_VAR_BY_INT_VAR
DIV_FLOAT_VAR_BY_FLOAT_VAR
DIV_INT_LVAR_BY_INT_LVAR
DIV_FLOAT_LVAR_BY_FLOAT_LVAR
DIV_INT_VAR_BY_INT_LVAR
DIV_FLOAT_VAR_BY_FLOAT_LVAR
DIV_INT_LVAR_BY_INT_VAR
DIV_FLOAT_LVAR_BY_FLOAT_VAR
IS_THING_EQUAL_TO_THING (=) Since GTA III
IS_INT_VAR_EQUAL_TO_NUMBER
IS_INT_LVAR_EQUAL_TO_NUMBER
IS_INT_VAR_EQUAL_TO_INT_VAR
IS_INT_LVAR_EQUAL_TO_INT_LVAR
IS_INT_VAR_EQUAL_TO_INT_LVAR
IS_INT_LVAR_EQUAL_TO_INT_VAR San Andreas only
IS_FLOAT_VAR_EQUAL_TO_NUMBER
IS_FLOAT_LVAR_EQUAL_TO_NUMBER
IS_FLOAT_VAR_EQUAL_TO_FLOAT_VAR
IS_FLOAT_LVAR_EQUAL_TO_FLOAT_LVAR
IS_FLOAT_VAR_EQUAL_TO_FLOAT_LVAR
IS_FLOAT_LVAR_EQUAL_TO_FLOAT_VAR San Andreas only
IS_INT_VAR_EQUAL_TO_CONSTANT Since Vice City
IS_INT_LVAR_EQUAL_TO_CONSTANT
IS_VAR_TEXT_LABEL_EQUAL_TO_TEXT_LABEL San Andreas only
IS_LVAR_TEXT_LABEL_EQUAL_TO_TEXT_LABEL
IS_VAR_TEXT_LABEL16_EQUAL_TO_TEXT_LABEL
IS_LVAR_TEXT_LABEL16_EQUAL_TO_TEXT_LABEL
IS_THING_NOT_EQUAL_TO_THING (<>) Since GTA III
IS_INT_VAR_NOT_EQUAL_TO_NUMBER
IS_INT_LVAR_NOT_EQUAL_TO_NUMBER
IS_INT_VAR_NOT_EQUAL_TO_INT_VAR
IS_INT_LVAR_NOT_EQUAL_TO_INT_LVAR
IS_INT_VAR_NOT_EQUAL_TO_INT_LVAR
IS_INT_LVAR_NOT_EQUAL_TO_INT_VAR San Andreas only
IS_FLOAT_VAR_NOT_EQUAL_TO_NUMBER
IS_FLOAT_LVAR_NOT_EQUAL_TO_NUMBER
IS_FLOAT_VAR_NOT_EQUAL_TO_FLOAT_VAR
IS_FLOAT_LVAR_NOT_EQUAL_TO_FLOAT_LVAR
IS_FLOAT_VAR_NOT_EQUAL_TO_FLOAT_LVAR
IS_FLOAT_LVAR_NOT_EQUAL_TO_FLOAT_VAR San Andreas only
IS_THING_GREATER_THAN_THING (>, <=) Since GTA III
IS_INT_VAR_GREATER_THAN_NUMBER
IS_INT_LVAR_GREATER_THAN_NUMBER
IS_NUMBER_GREATER_THAN_INT_VAR
IS_NUMBER_GREATER_THAN_INT_LVAR
IS_INT_VAR_GREATER_THAN_INT_VAR
IS_INT_LVAR_GREATER_THAN_INT_LVAR
IS_INT_VAR_GREATER_THAN_INT_LVAR
IS_INT_LVAR_GREATER_THAN_INT_VAR
IS_FLOAT_VAR_GREATER_THAN_NUMBER
IS_FLOAT_LVAR_GREATER_THAN_NUMBER
IS_NUMBER_GREATER_THAN_FLOAT_VAR
IS_NUMBER_GREATER_THAN_FLOAT_LVAR
IS_FLOAT_VAR_GREATER_THAN_FLOAT_VAR
IS_FLOAT_LVAR_GREATER_THAN_FLOAT_LVAR
IS_FLOAT_VAR_GREATER_THAN_FLOAT_LVAR
IS_FLOAT_LVAR_GREATER_THAN_FLOAT_VAR
IS_INT_VAR_GREATER_THAN_CONSTANT Since Vice City
IS_INT_LVAR_GREATER_THAN_CONSTANT
IS_CONSTANT_GREATER_THAN_INT_VAR
IS_CONSTANT_GREATER_THAN_INT_LVAR
IS_THING_GREATER_OR_EQUAL_TO_THING (>=, <) Since GTA III
IS_INT_VAR_GREATER_OR_EQUAL_TO_NUMBER
IS_INT_LVAR_GREATER_OR_EQUAL_TO_NUMBER
IS_NUMBER_GREATER_OR_EQUAL_TO_INT_VAR
IS_NUMBER_GREATER_OR_EQUAL_TO_INT_LVAR
IS_INT_VAR_GREATER_OR_EQUAL_TO_INT_VAR
IS_INT_LVAR_GREATER_OR_EQUAL_TO_INT_LVAR
IS_INT_VAR_GREATER_OR_EQUAL_TO_INT_LVAR
IS_INT_LVAR_GREATER_OR_EQUAL_TO_INT_VAR
IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_NUMBER
IS_FLOAT_LVAR_GREATER_OR_EQUAL_TO_NUMBER
IS_NUMBER_GREATER_OR_EQUAL_TO_FLOAT_VAR
IS_NUMBER_GREATER_OR_EQUAL_TO_FLOAT_LVAR
IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_FLOAT_VAR
IS_FLOAT_LVAR_GREATER_OR_EQUAL_TO_FLOAT_LVAR
IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_FLOAT_LVAR
IS_FLOAT_LVAR_GREATER_OR_EQUAL_TO_FLOAT_VAR
IS_INT_VAR_GREATER_OR_EQUAL_TO_CONSTANT Since Vice City
IS_INT_LVAR_GREATER_OR_EQUAL_TO_CONSTANT
IS_CONSTANT_GREATER_OR_EQUAL_TO_INT_VAR
IS_CONSTANT_GREATER_OR_EQUAL_TO_INT_LVAR
ADD_THING_TO_THING_TIMED (+=@) Since GTA III
ADD_TIMED_VAL_TO_FLOAT_VAR
ADD_TIMED_VAL_TO_FLOAT_LVAR
ADD_TIMED_FLOAT_VAR_TO_FLOAT_VAR
ADD_TIMED_FLOAT_LVAR_TO_FLOAT_LVAR
ADD_TIMED_FLOAT_LVAR_TO_FLOAT_VAR
ADD_TIMED_FLOAT_VAR_TO_FLOAT_LVAR
SUB_THING_FROM_THING_TIMED (-=@) Since GTA III
SUB_TIMED_VAL_FROM_FLOAT_VAR
SUB_TIMED_VAL_FROM_FLOAT_LVAR
SUB_TIMED_FLOAT_VAR_FROM_FLOAT_VAR
SUB_TIMED_FLOAT_LVAR_FROM_FLOAT_LVAR
SUB_TIMED_FLOAT_LVAR_FROM_FLOAT_VAR
SUB_TIMED_FLOAT_VAR_FROM_FLOAT_LVAR
ABS Since GTA III
ABS_VAR_INT
ABS_LVAR_INT
ABS_VAR_FLOAT
ABS_LVAR_FLOAT
IS_EMPTY San Andreas only
IS_VAR_TEXT_LABEL_EMPTY
IS_LVAR_TEXT_LABEL_EMPTY
IS_VAR_TEXT_LABEL16_EMPTY
IS_LVAR_TEXT_LABEL16_EMPTY
IS_BIT_SET San Andreas only
IS_GLOBAL_VAR_BIT_SET_CONST
IS_GLOBAL_VAR_BIT_SET_VAR
IS_GLOBAL_VAR_BIT_SET_LVAR
IS_LOCAL_VAR_BIT_SET_CONST
IS_LOCAL_VAR_BIT_SET_VAR
IS_LOCAL_VAR_BIT_SET_LVAR
SET_BIT San Andreas only
SET_GLOBAL_VAR_BIT_CONST
SET_GLOBAL_VAR_BIT_VAR
SET_GLOBAL_VAR_BIT_LVAR
SET_LOCAL_VAR_BIT_CONST
SET_LOCAL_VAR_BIT_VAR
SET_LOCAL_VAR_BIT_LVAR
CLEAR_BIT San Andreas only
CLEAR_GLOBAL_VAR_BIT_CONST
CLEAR_GLOBAL_VAR_BIT_VAR
CLEAR_GLOBAL_VAR_BIT_LVAR
CLEAR_LOCAL_VAR_BIT_CONST
CLEAR_LOCAL_VAR_BIT_VAR
CLEAR_LOCAL_VAR_BIT_LVAR
Command
Alternative
SET (=)
SET_VAR_INT
SET_VAR_FLOAT
SET_VAR_TEXT_LABEL
SET_VAR_INT_TO_VAR_INT
SET_VAR_FLOAT_TO_VAR_FLOAT
SET_VAR_TEXT_LABEL_TO_VAR_TEXT_LABEL
SET_VAR_INT_TO_CONSTANT
CSET (=#)
CSET_VAR_INT_TO_VAR_FLOAT
CSET_VAR_FLOAT_TO_VAR_INT
ADD_THING_TO_THING (+=)
ADD_VAL_TO_INT_VAR
ADD_VAL_TO_FLOAT_VAR
ADD_INT_VAR_TO_INT_VAR
ADD_FLOAT_VAR_TO_FLOAT_VAR
SUB_THING_FROM_THING (-=)
SUB_VAL_FROM_INT_VAR
SUB_VAL_FROM_FLOAT_VAR
SUB_INT_VAR_FROM_INT_VAR
SUB_FLOAT_VAR_FROM_FLOAT_VAR
MULT_THING_BY_THING (*=)
MULT_INT_VAR_BY_VAL
MULT_FLOAT_VAR_BY_VAL
MULT_INT_VAR_BY_INT_VAR
MULT_FLOAT_VAR_BY_FLOAT_VAR
DIV_THING_BY_THING (/=)
DIV_INT_VAR_BY_VAL
DIV_FLOAT_VAR_BY_VAL
DIV_INT_VAR_BY_INT_VAR
DIV_FLOAT_VAR_BY_FLOAT_VAR
IS_THING_EQUAL_TO_THING (=)
IS_INT_VAR_EQUAL_TO_NUMBER
IS_INT_VAR_EQUAL_TO_INT_VAR
IS_FLOAT_VAR_EQUAL_TO_NUMBER
IS_FLOAT_VAR_EQUAL_TO_FLOAT_VAR
IS_TEXT_LABEL_VAR_EQUAL_TO_TEXT_LABEL
IS_TEXT_LABEL_VAR_EQUAL_TO_TEXT_LABEL_VAR
IS_INT_VAR_EQUAL_TO_CONSTANT
IS_THING_GREATER_THAN_THING (>, <=)
IS_INT_VAR_GREATER_THAN_NUMBER
IS_NUMBER_GREATER_THAN_INT_VAR
IS_INT_VAR_GREATER_THAN_INT_VAR
IS_FLOAT_VAR_GREATER_THAN_NUMBER
IS_NUMBER_GREATER_THAN_FLOAT_VAR
IS_FLOAT_VAR_GREATER_THAN_FLOAT_VAR
IS_INT_VAR_GREATER_THAN_CONSTANT
IS_CONSTANT_GREATER_THAN_INT_VAR
IS_THING_GREATER_OR_EQUAL_TO_THING (>=, <)
IS_INT_VAR_GREATER_OR_EQUAL_TO_NUMBER
IS_NUMBER_GREATER_OR_EQUAL_TO_INT_VAR
IS_INT_VAR_GREATER_OR_EQUAL_TO_INT_VAR
IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_NUMBER
IS_NUMBER_GREATER_OR_EQUAL_TO_FLOAT_VAR
IS_FLOAT_VAR_GREATER_OR_EQUAL_TO_FLOAT_VAR
IS_INT_VAR_GREATER_OR_EQUAL_TO_CONSTANT
IS_CONSTANT_GREATER_OR_EQUAL_TO_INT_VAR
ADD_THING_TO_THING_TIMED (+=@)
ADD_TIMED_VAL_TO_FLOAT_VAR
ADD_TIMED_FLOAT_VAR_TO_FLOAT_VAR
SUB_THING_FROM_THING_TIMED (-=@)
SUB_TIMED_VAL_FROM_FLOAT_VAR
SUB_TIMED_FLOAT_VAR_FROM_FLOAT_VAR
ABS
ABS_VAR_INT
ABS_VAR_FLOAT

Control flows

Insofar as subprograms, scripts are organized in a systematic arrangement through which goto branches, subroutine branches, function calls and returns or cutscene area markers are executed to form control flow statements and structures. These alter the program counter most of the time affecting the top-down order all commands are fetched by. Facing off code duplication is quite recurring especially when the tasks to perform vary only in the input data, the case where a piece of code or subroutine, built once in the source, is invoked many times from various different places and returns back, as if the GOSUB statement is substituted in-place by the subroutine's body without RETURN during the control transferring, to shrink long codes and reduce the script overall size. In the last Trilogy chapter, a region of code can be marked as a nonnestable cutscene area wherein the rest of commands within SKIP_CUTSCENE_START..SKIP_CUTSCENE_END is skipped to the pressure of some key/button at the next script tick. The flow of execution can also be broken up conditionally by means of:

  • Decision-making structures (IF, IFNOT, SWITCH), which evaluate the result of one or more conditions and choose what path to follow based off the trueness or falseness of the check being tested. Been deemed the most basic tool of structured programming, IF is a bidirectional statement that proceeds with the execution of the underneath code only if the test carried out evaluates to true otherwise it transfers the control next to ENDIF instantly, unless a preceding and optional ELSE clause, establishing an alternative path, is specified. In the first Trilogy and both Stories chapters where GOTO_IF_TRUE is handled by game code, the barely used IFNOT can be deployed as a placeholder to easily invert the compare-flag, a boolean state which is set or cleared as a result of the bitwise conjunction or disjunction with the true/false state caught by a condition, applying the inversion according to the presence of the not-flag before accumulating. Logical operators make possible the connection among multiple conditions via the AND conjunction and OR disjunction giving the chance to verify if conditions are all true or if just one of them is satisfied bearing in mind that the NOT negation, inverting the boolean state of a single condition, may be supplied. Connectivity information are held by ANDOR, whose argument depicts a value in the range [1,8) or [21,28) (end-inclusive in Stories) for logical conjunction and disjunction respectively, limiting the amount of total conditions to provide to a maximum of 8 per check (the prominent intervals discrepancy also suggests NAND and NOR operators might have been a plan at some point). A value of 0 does nothing relevant functional-wise at runtime, what led developers to not compile said command in such a situation for Stories chapters and also make the argument one-based so that it effectively counts the number of commands used in a multi-condition check. The inability to create subexpressions enforces not to combine AND with OR in a check, plus evaluations are eager and therefore not short-circuited meaning all conditions are executed prior potentially branching through GOTO_IF_FALSE in the common case after the compare-flag gets processed. IF-GOTO and IFNOT-GOTO constructs are also viable to inline a bogus one-way control transferer, targeting an arbitrary location, nearby a one-condition check with no end-ing statement.
Nesting lots of IF-ELSE-ENDIF structures of one-condition checks testing the equality of the same variable against a few integer literals or string constants can add a ridiculous code redundancy and performance overhead, sorted out in the last Trilogy chapter thanks to the introduction of the SWITCH statement, a multiway statement either branching to the switch section labelled by fall-through CASE statements of which one passses a value that shall match the variable content to compare or optionally branching to DEFAULT in the worst-case scenario, each ending with a nonmandatory BREAK statement goto-ing past ENDSWITCH. On compilation, the implementation somehow mimics the pattern of a jump table sorting case label references by value to fulfil the runtime's binary search among at least 1 of 75 entries (default case aside);
  • Looping structures (WHILE, WHILENOT, REPEAT), which repeatedly execute a block of code certain number of times or by constantly and successfully evaluating a check. The only condition-controlled loop statement featured is the widespread WHILE, a cyclical IF statement as well as IFNOT is for WHILENOT, repeating the embedded code over and over again if the verified check is true or till it becomes false when reaching ENDWHILE. Alongside well-known constructs the language supports a singular count-controlled structure, REPEAT-ENDREPEAT, looping some code at least once by advancing an integer variable at each iteration until the times specified (literal-only). Despite considered harmful in the programming literature for high-level programming languages, an unconditional branch is the only way to go for breaking loops beforehand and enhance paradoxically the simplistic code logic or for creating infinite loops with a backward GOTO.

Control flows intersection is, arguably, trouble-free and it's up to the writer to not ruin the code integrity, but still substatements must match the closest opening statement they belong to. Optimization is not of compiler concern meaning control flows are encapsulated as-is with no code reduction even for empty blocks, resulting in goto-es branching right after or piled up in sequence.

Subroutine structure: GOSUB

GOSUB subroutine
COMMAND
GOTO somewhere

subroutine:
COMMAND
RETURN

Cutscene area structure: SKIP_CUTSCENE_START and SKIP_CUTSCENE_END

Mission script Script multifile
// Formerly thought as MARK_CUTSCENE_START.
SKIP_CUTSCENE_START
    COMMAND
    WAIT 0
    COMMAND
// Formerly thought as MARK_CUTSCENE_END.
SKIP_CUTSCENE_END
// Formerly thought as CUTSCENE_SCROLL?
SKIP_CUTSCENE_START_INTERNAL SPECIAL_LABEL_SKIP_CUTSCENE_STARTS_0
    COMMAND
    WAIT 0
    COMMAND
SPECIAL_LABEL_SKIP_CUTSCENE_STARTS_0:
SKIP_CUTSCENE_END

Decision-making structures: IF and IFNOT

Mission script Script multifile
IF COMMAND
    COMMAND
ELSE
    COMMAND
ENDIF
ANDOR 0
COMMAND
GOTO_IF_FALSE SPECIAL_LABEL_IFS_ELSE_0
    COMMAND
    GOTO SPECIAL_LABEL_IFS_0
SPECIAL_LABEL_IFS_ELSE_0:
    COMMAND
SPECIAL_LABEL_IFS_0:
Mission script Script multifile
IF COMMAND
AND NOT COMMAND
    COMMAND
ENDIF
ANDOR 1
COMMAND
NOT COMMAND
GOTO_IF_FALSE SPECIAL_LABEL_IFS_1
    COMMAND
SPECIAL_LABEL_IFS_1:
Mission script Script multifile
IFNOT COMMAND
OR NOT COMMAND
    COMMAND
ENDIF
ANDOR 21
COMMAND
NOT COMMAND
GOTO_IF_TRUE SPECIAL_LABEL_IFS_2
    COMMAND
SPECIAL_LABEL_IFS_2:
Mission script Script multifile
IF COMMAND GOTO somewhere
ANDOR 0
COMMAND
GOTO_IF_TRUE somewhere
Mission script Script multifile
IFNOT COMMAND GOTO somewhere
ANDOR 0
COMMAND
GOTO_IF_FALSE somewhere

Decision-making structure: SWITCH

Mission script Script multifile
VAR_INT check
SWITCH check
    CASE 0
        COMMAND
        BREAK
    CASE 1
    CASE 3
        COMMAND
        BREAK
    CASE 2
        COMMAND
        BREAK
    CASE 4
    CASE 6
    CASE 5
    CASE 7
        COMMAND
        //BREAK
ENDSWITCH
SWITCH_START check 8 FALSE SPECIAL_LABEL_SWITCHES_0 0 SPECIAL_LABEL_SWITCHES_CASE_0_0 1 SPECIAL_LABEL_SWITCHES_CASE_1_0 2 SPECIAL_LABEL_SWITCHES_CASE_2_0 3 SPECIAL_LABEL_SWITCHES_CASE_1_0 4 SPECIAL_LABEL_SWITCHES_CASE_3_0 5 SPECIAL_LABEL_SWITCHES_CASE_3_0 6 SPECIAL_LABEL_SWITCHES_CASE_3_0
SWITCH_CONTINUED 7 SPECIAL_LABEL_SWITCHES_CASE_3_0 -1 SPECIAL_LABEL_SWITCHES_0 -1 SPECIAL_LABEL_SWITCHES_0 -1 SPECIAL_LABEL_SWITCHES_0 -1 SPECIAL_LABEL_SWITCHES_0 -1 SPECIAL_LABEL_SWITCHES_0 -1 SPECIAL_LABEL_SWITCHES_0 -1 SPECIAL_LABEL_SWITCHES_0 -1 SPECIAL_LABEL_SWITCHES_0
SPECIAL_LABEL_SWITCHES_CASE_0_0:
    COMMAND
    GOTO SPECIAL_LABEL_SWITCHES_0
SPECIAL_LABEL_SWITCHES_CASE_1_0:
    COMMAND
    GOTO SPECIAL_LABEL_SWITCHES_0
SPECIAL_LABEL_SWITCHES_CASE_2_0:
    COMMAND
    GOTO SPECIAL_LABEL_SWITCHES_0
SPECIAL_LABEL_SWITCHES_CASE_3_0:
    COMMAND
    //GOTO SPECIAL_LABEL_SWITCHES_0
SPECIAL_LABEL_SWITCHES_0:
Mission script Script multifile
{
    LVAR_INT check
    SWITCH check
        CASE -2
        CASE -1
            COMMAND
            BREAK
        CASE 1
        CASE 2
            COMMAND
            BREAK
        CASE 0
        DEFAULT
            COMMAND
            //BREAK
    ENDSWITCH
}
SWITCH_START check 5 TRUE SPECIAL_LABEL_SWITCHES_DEFAULT_1 -2 SPECIAL_LABEL_SWITCHES_CASE_0_1 -1 SPECIAL_LABEL_SWITCHES_CASE_0_1 0 SPECIAL_LABEL_SWITCHES_DEFAULT_1 1 SPECIAL_LABEL_SWITCHES_CASE_1_1 2 SPECIAL_LABEL_SWITCHES_CASE_1_1 -1 SPECIAL_LABEL_SWITCHES_1 -1 SPECIAL_LABEL_SWITCHES_1
SPECIAL_LABEL_SWITCHES_CASE_0_1:
    COMMAND
    GOTO SPECIAL_LABEL_SWITCHES_1
SPECIAL_LABEL_SWITCHES_CASE_1_1:
    COMMAND
    GOTO SPECIAL_LABEL_SWITCHES_1
SPECIAL_LABEL_SWITCHES_DEFAULT_1:
    COMMAND
    //GOTO SPECIAL_LABEL_SWITCHES_1
SPECIAL_LABEL_SWITCHES_1:

Looping structures: WHILE and WHILENOT

Mission script Script multifile
WHILE COMMAND
    COMMAND
ENDWHILE
SPECIAL_LABEL_WHILES_A_0:
ANDOR 0
COMMAND
GOTO_IF_FALSE SPECIAL_LABEL_WHILES_B_0
    COMMAND
    GOTO SPECIAL_LABEL_WHILES_A_0
SPECIAL_LABEL_WHILES_B_0:
Mission script Script multifile
WHILE COMMAND
AND NOT COMMAND
    COMMAND
ENDWHILE
SPECIAL_LABEL_WHILES_A_1:
ANDOR 1
COMMAND
NOT COMMAND
GOTO_IF_FALSE SPECIAL_LABEL_WHILES_B_1
    COMMAND
    GOTO SPECIAL_LABEL_WHILES_A_1
SPECIAL_LABEL_WHILES_B_1:
Mission script Script multifile
WHILENOT COMMAND
OR NOT COMMAND
    COMMAND
ENDWHILE
SPECIAL_LABEL_WHILES_A_2:
ANDOR 21
COMMAND
NOT COMMAND
GOTO_IF_TRUE SPECIAL_LABEL_WHILES_B_2
    COMMAND
    GOTO SPECIAL_LABEL_WHILES_A_2
SPECIAL_LABEL_WHILES_B_2:

Looping structure: REPEAT

Mission script Script multifile
VAR_INT steps
REPEAT 4 steps // 0 or lesser still implies 1 step.
    COMMAND
ENDREPEAT
SET_VAR_INT steps 0
SPECIAL_LABEL_REPEATS_0:
    COMMAND
    ADD_VAL_TO_INT_VAR steps 1
// Here ANDOR is accidentally missing in Trilogy.
IS_INT_VAR_GREATER_OR_EQUAL_TO_NUMBER steps 4
GOTO_IF_FALSE SPECIAL_LABEL_REPEATS_0
Mission script Script multifile
{
    LVAR_INT steps
    REPEAT 8 steps
        COMMAND
    ENDREPEAT
}
SET_LVAR_INT steps 0
SPECIAL_LABEL_REPEATS_1:
    COMMAND
    ADD_VAL_TO_INT_LVAR steps 1
IS_INT_LVAR_GREATER_OR_EQUAL_TO_NUMBER steps 8
GOTO_IF_FALSE SPECIAL_LABEL_REPEATS_1

Infinite looping structure: backward GOTO

loopstart:
WAIT 0
COMMAND
GOTO loopstart

Multiscripts

The whole GTA series started as a world subdivided into several levels, each one per urban area spread across fewer cities, albeit 3D era titles has got a single-leveled design covering the entire game scene. Every level is shipped with a main script and a number of ancillary script files, simply called multiscripts, which are bundled inside a folder bearing the same name as the main script filename without extension. The robust scripting engine allows more scripts to cooperate simultaneously at runtime to let writing codes in a multithreading fashion but with no actual concurrency. A script is a unit of execution which, upon starting, is enqueued to a list of active scripts as long as an explicit termination, moving the script back to a list of idle scripts, occurs with TERMINATE_THIS_SCRIPT while TERMINATE_ALL_SCRIPTS_NAMED halts all instances of a script if the specified name, definitely unique to avert compiler complains, was ever set by SCRIPT_NAME. Running scripts are processed sequentially in a non-prioritized order and are paused pending one of the next script ticks using WAIT to delay the script execution of an instance some milliseconds ahead or at the earliest opportunity if 0.

This section is incomplete. You can help by fixing and expanding it.

Main script and Main extensions

This section is incomplete. You can help by fixing and expanding it.

Scripts and Streamed scripts

This section is incomplete. You can help by fixing and expanding it.

Subscripts and Mission scripts

This section is incomplete. You can help by fixing and expanding it.

Tools

GTA Net GTAForums: SCRambl, first ever attempt for a now discontinued third-party compiler by Deji
GTA Net GTAForums: GTA3script Toolchain, second and still work-in-progress attempt for an unofficial compiler by Link2012

External links

GTA Net GTAForums: Learn GTA3script in Y minutes, tutorial for deep diving into the language in a short time by Link2012
GTA3script Language Specifications, community-based specifications of the language led and maintained by Link2012

See also

SCM language III/VC definitions