https://github.com/kwmsmith/aei-clone
Arimaa Engine Interface, GitHub clone
https://github.com/kwmsmith/aei-clone
Last synced: over 1 year ago
JSON representation
Arimaa Engine Interface, GitHub clone
- Host: GitHub
- URL: https://github.com/kwmsmith/aei-clone
- Owner: kwmsmith
- License: other
- Created: 2012-02-05T06:01:48.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-03-05T14:42:36.000Z (over 14 years ago)
- Last Synced: 2025-01-28T18:29:51.288Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 586 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
==========
AEI Readme
==========
This package provides a specification for the Arimaa Engine Interface (AEI).
It also includes some tools for using engines that implement AEI. Including an
interface to the arimaa.com gameroom. A full description of AEI can be found in
the file ``aei-protocol.txt``.
The link used for communication is not specified by the AEI protocol. This
implementation uses either stdio or a socket for the communication. Stdio is
the preferred method for general operation, but in certain programming
languages or environments it may be easier to use socket communication.
When using a socket the controller will listen on an ip and port given to the
engine by adding "--server " and "--port " options
to its command line. The engine should connect to the specified address and
expect the AEI protocol identifier from the controller.
The scripts included to work with an AEI engine are:
``analyze.py``
A simple script that runs an engine and has it search a given position or
move sequence.
``gameroom.py``
AEI controller that connects to the arimaa.com gameroom and plays a game.
``roundrobin.py``
Plays engines against each other in a round robin tournament.
There are also a few helper modules located in the python pyrimaa package:
``aei.py``
Implementation of the controller side of the AEI protocol
``board.py``
Implements an Arimaa board, step and move generator and some
related utility functions.
.. vim:ft=rst