AIInterface:Python

From Spring
(Redirected from AIWrapper:PyAI)
Jump to navigationJump to search

Important note: in current spring/master it is currently disabled because of an recently big merge (pureint), it will be fixed soon!

Spring PyAI

The Spring PyAI Interface can be used to write a skirmish AI in Python. Look at the Development Page of Python if you want write an AI.

Code

http://github.com/spring/Python

Building

The Python Interface is in spring/master, just git clone it, run "git submodule init" and you can compile/install it!

Known Issuses/TODO

  • rewrite for pureint
  • make thread-safe http://docs.python.org/release/1.5.2/api/threads.html
  • ai's cant force a specific python version, add an setting into aiinfo.lua
  • only one specific python version can be used, loading different ais using different python versions is currently impossible
  • the init event can be replaced by a function / add release function
  • there are no docs, look into interface.py if you search a function
  • logging could be improved

As a note: most of the Interface is generated by a python script.

Status

Most functions and Datatypes should work. All classes and functions are generated and because of this, there is no further documentation available.

At github you find the main repository for the Interface: http://github.com/spring/Python

Check the NullPythonAI for something to start with.