Gamevar operators: Difference between revisions
Doom64hunter (talk | contribs) m Formatting and make it more apparent that the 'var' affix is no longer needed |
Hendricks266 (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
<span {{code}}> <'''operator'''> <gamevar> <constant|gamevar></span> | |||
<span {{code}}> <'''operator'''> <gamevar> | <span {{code}}> <'''operator'''>'''var''' <gamevar> <constant> </span> ''(deprecated)'' | ||
<span {{code}}> <'''operator'''>''' | <span {{code}}> <'''operator'''>'''varvar''' <gamevar> <gamevar></span> ''(deprecated)'' | ||
EDuke32 CON supports a range of binary operators that perform various arithmetic and bitwise logical operations on variables, here denoted as [[gamevar]]s. | |||
The syntax is similar to Intel x86 assembly, where the first argument is the destination as well as the first operand (2-address code). | The syntax is similar to Intel x86 assembly, where the first argument is the destination as well as the first operand (2-address code). | ||
In older versions of | In older versions of EDuke32, it was necessary to distinguish between '''var''', and '''varvar''' binary operations. The difference between them is that the singular '''var''' operations expect a gamevar for the first, and a constant value (or label) for the second argument, while the '''varvar''' operations expect gamevars for both arguments. | ||
This distinction is no longer required, and one can now write the operator without any '''var''' appendix, and use either constant or variable as the second argument. | This distinction is no longer required, and one can now write the operator without any '''var''' appendix, and use either constant or variable as the second argument. | ||
==== Example ==== | ==== Example ==== | ||
Line 43: | Line 41: | ||
|sub | |sub | ||
|<code><nowiki>-</nowiki></code> | |<code><nowiki>-</nowiki></code> | ||
|<nowiki>& | |<nowiki>−</nowiki> | ||
|subtraction | |subtraction | ||
| | | | ||
Line 61: | Line 59: | ||
|mod | |mod | ||
|<code>%</code> | |<code>%</code> | ||
| | |mod | ||
|[[Wikipedia:Modulo operation|modulo]], remainder | |[[Wikipedia:Modulo operation|modulo]], remainder | ||
|Ensure that <value> does not equal 0 at any time; sign of the result is that of left hand side operand (dividend). | |Ensure that <value> does not equal 0 at any time; sign of the result is that of left hand side operand (dividend). | ||
Line 67: | Line 65: | ||
|and | |and | ||
|<code>&</code> | |<code>&</code> | ||
| | |∧ | ||
|[[Wikipedia:Bitwise operation|bitwise]] AND | |[[Wikipedia:Bitwise operation|bitwise]] AND | ||
|The bits in the result are set only if they were set in both of the values being operated on. Ex. (all numbers are [[Wikipedia:Binary numeral system|base-2]]): 01001010 AND 11110100 is 01000000 | |The bits in the result are set only if they were set in both of the values being operated on. Ex. (all numbers are [[Wikipedia:Binary numeral system|base-2]]): 01001010 AND 11110100 is 01000000 | ||
Line 73: | Line 71: | ||
|or | |or | ||
|<code><nowiki>|</nowiki></code> | |<code><nowiki>|</nowiki></code> | ||
| | |∨ | ||
|[[Wikipedia:Bitwise operation|bitwise]] OR | |[[Wikipedia:Bitwise operation|bitwise]] OR | ||
|The bits in the result are set only if they were set in either of the values being operated on. Ex.: 01001010 OR 11110100 is 11111110 | |The bits in the result are set only if they were set in either of the values being operated on. Ex.: 01001010 OR 11110100 is 11111110 | ||
Line 79: | Line 77: | ||
|xor | |xor | ||
|<code>^</code> | |<code>^</code> | ||
| | |⊕ | ||
|[[Wikipedia:Bitwise operation|bitwise]] XOR | |[[Wikipedia:Bitwise operation|bitwise]] XOR | ||
|The bits in the result are set if only one of the values being operated on has those bits set. Ex.: 01001010 XOR 11110100 is 10111110 | |The bits in the result are set if only one of the values being operated on has those bits set. Ex.: 01001010 XOR 11110100 is 10111110 |
Latest revision as of 11:06, 15 December 2024
<operator> <gamevar> <constant|gamevar>
<operator>var <gamevar> <constant> (deprecated)
<operator>varvar <gamevar> <gamevar> (deprecated)
EDuke32 CON supports a range of binary operators that perform various arithmetic and bitwise logical operations on variables, here denoted as gamevars.
The syntax is similar to Intel x86 assembly, where the first argument is the destination as well as the first operand (2-address code).
In older versions of EDuke32, it was necessary to distinguish between var, and varvar binary operations. The difference between them is that the singular var operations expect a gamevar for the first, and a constant value (or label) for the second argument, while the varvar operations expect gamevars for both arguments.
This distinction is no longer required, and one can now write the operator without any var appendix, and use either constant or variable as the second argument.
Example
var temp 0 0 // initialize a global variable with initial value 0 set temp 1 // assigns a value of 1 to the gamevar temp. add temp 1 // adds 1 to temp, causing its value to become 2. mul temp 2 // multiplies temp by 2, causing its value to become 4.
Operators
Operator | C/C++ | Math | Description | Notes | |
---|---|---|---|---|---|
set | =
|
= | assignment | ||
add | +
|
+ | addition | ||
sub | -
|
− | subtraction | ||
mul | *
|
× | multiplication | ||
div | /
|
÷ | division with rounding toward 0 for nonnegative dividends | Ensure that <value> does not equal 0 at any time. The rounding behavior is undefined for negative dividends. | |
mod | %
|
mod | modulo, remainder | Ensure that <value> does not equal 0 at any time; sign of the result is that of left hand side operand (dividend). | |
and | &
|
∧ | bitwise AND | The bits in the result are set only if they were set in both of the values being operated on. Ex. (all numbers are base-2): 01001010 AND 11110100 is 01000000 | |
or | |
|
∨ | bitwise OR | The bits in the result are set only if they were set in either of the values being operated on. Ex.: 01001010 OR 11110100 is 11111110 | |
xor | ^
|
⊕ | bitwise XOR | The bits in the result are set if only one of the values being operated on has those bits set. Ex.: 01001010 XOR 11110100 is 10111110 |