Difference between revisions of "Cond"

From WikiManual
Jump to: navigation, search
 
Line 9: Line 9:
 
example:
 
example:
  
'''cond'''
+
'''cond'''
*.eye5 50 >
+
*.eye5 50 >
'''start'''
+
'''start'''
-1 .shoot store
+
-1 .shoot store
'''stop'''
+
'''stop'''
'''end'''
+
'''end'''
  
  
 
{{Flow Commands}}
 
{{Flow Commands}}

Latest revision as of 10:14, 1 July 2014

Condition

cond marks the start of a gene in the DNA. Everything from cond to start is evaluated. Once the program reaches start, any values still on the conditions stack are anded together. If the resulting boolean value is true, every action after start to the next stop command is executed.

Otherwise, the program continues to the next cond statement, or stops reading the DNA if the end is found instead.


The condition is the part of the gene and tells if it should be activated or not. Many action commands can be used in here but not all.

example:

cond
*.eye5 50 >
start
-1 .shoot store
stop
end


Flow Commands:

cond
start else
stop
end