Difference between revisions of "Python"

From RA2Wiki
Jump to navigation Jump to search
m (New page: A kind of code. Robot Arena uses this often.)
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
A kind of code. Robot Arena uses this often.
+
A programming language used by Robot Arena 2 for scripting purposes, like [[AI|AIing]] or arena definition files.
 +
 
 +
Most of the code are classes which are directly bound to C++ code, then subclassed in various situations (every arena is a subclass of SuperArena, etc.). The Python interpreter in RA2 rarely checks for errors, and instead just crashes gracefully when an error is produced in pythonland.
 +
 
 +
{{stub}}

Latest revision as of 22:44, 17 July 2010

A programming language used by Robot Arena 2 for scripting purposes, like AIing or arena definition files.

Most of the code are classes which are directly bound to C++ code, then subclassed in various situations (every arena is a subclass of SuperArena, etc.). The Python interpreter in RA2 rarely checks for errors, and instead just crashes gracefully when an error is produced in pythonland.

Template:Stub