Difference between revisions of "Operator"

From WikiManual
Jump to: navigation, search
m (Conditions)
(moved sysvars text to top of page)
 
(18 intermediate revisions by 5 users not shown)
Line 1: Line 1:
Anything you're likely to see in DNA.
+
__NOTOC__
  
=== Sysvars ===
+
Operators you're likely to see in [[Robot DNA]]. Data is stored in [[Sysvar]]s.
* [[Definitions]]
 
* [[.up|Movement (.up, .dn. .dx, .sx)]]
 
* [[.aimdx|Basic Turning (.aimdx, .aimsx)]]
 
* [[Shooting]]
 
* [[Reproducing]]
 
* [[Ties]]
 
** [[Soft Ties]]
 
** [[Hard Ties]]
 
*** [[MB Sharing]]
 
* [[Memloc and Memval]]
 
* [[In and Out]]
 
* [[Sysvars]] -- Work in progress
 
  
== Basic Commands ==
+
<font size = -2>Updated for version 2.46 on 10/26/2013 by Botsareus</font>
*[[add]] & [[sub]]
+
==Operators:==
*[[mult]] & [[div]]
 
*[[rnd]]
 
*[[*]]
 
*[[mod]]
 
*[[sgn]]
 
*[[abs]]
 
*[[dup]]
 
*[[inc/dec|inc]] & [[inc/dec|dec]]
 
*[[angle]]
 
  
== Advanced Commands ==
+
{| border="0"
*[[angle]]
+
|-
*[[dist]]
+
|
*[[ceil]]
+
{{Flow Commands}}
*[[floor]]
 
*[[sqr]]
 
*[[pow]]
 
*[[pyth]]
 
  
== Bitwise Commands ==
+
{{Store Commands}}
  
It'd be helpful if you knew the [[bit basics]].
+
{{Basic Commands}}
*[[~]] Compliment
 
*[[&]] AND
 
*[[pipe| |]] OR
 
*[[^]] XOR
 
*[[valinc | ++]] increment stack value
 
*[[valdec | --]] deincrement stack value
 
*[[-]] negate stack value
 
*[[Shift left | <<]] bit shift left
 
*[[Shift right| >>]] bit shift right
 
  
 +
{{Advanced Commands}}
 +
||
 
{{Logical Comparison Operators}}
 
{{Logical Comparison Operators}}
  
== Logic Operators ==
+
{{Logic}}
*[[and]]
 
*[[or]]
 
*[[xor]]
 
*[[not]]
 
  
== Store commands ==
+
{{Stack Operators}}
*[[store]]
 
*[[inc/dec]]
 
  
=== Flow Commands===
+
{{Bitwise Command}}
* [[cond]]
+
|}
* [[start]]
 
* [[else]]
 
* [[stop]]
 
* [[end]]
 
**[[Robot DNA]]
 

Latest revision as of 20:45, 20 February 2014


Operators you're likely to see in Robot DNA. Data is stored in Sysvars.

Updated for version 2.46 on 10/26/2013 by Botsareus

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

Stack Operators:

Integer Stack:

clear

drop

dup

swap

over

Boolean stack:

clearbool

dropbool

dupbool

swapbool

overbool

Debug:

Not supported in versions earlier 2.46:

debugint

debugbool

Bitwise Command:

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