Difference between revisions of "Operator"

From WikiManual
Jump to: navigation, search
m (notoc)
(fixed a terminological mistake - that is not what 'algorithm' means)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
  
Algorithms you're likely to see in [[Robot DNA]]:
+
Operators you're likely to see in [[Robot DNA]]:
  
 
==Operators:==
 
==Operators:==

Revision as of 10:04, 3 October 2009


Operators you're likely to see in Robot DNA:

Operators:

Flow Commands:

cond
start else
stop
end

Store Commands:

store
inc dec

The following commands are not supported in versions earlier 2.46:

addstore
substore
multstore
divstore
ceilstore
floorstore
rndstore
sgnstore
abstore
sqrstore
negstore

Basic Commands:

add & sub
mult & div
rnd
*
mod
sgn
abs

Advanced Commands:

angle
dist
ceil
floor
sqr pow
pyth

The following commands are not supported in versions earlier 2.46:

anglecmp
root
logx
sin
cos

Logical Comparison Operators:

> <
>= <=
= !=
%= !%=
~= !~=

Logic:

true
false
and
or
not
xor

Bitwise Command:

~ Complement
& AND
| OR
^ XOR
++ increment stack value
-- deincrement stack value
- negate stack value
<< bit shift left
>> bit shift right

Data is stored in Sysvars.