
This is a server and client distribution to play Tron bots against each
other.  The components are gathered from various places:

 * server/ and clients/tcptron.c : http://www.benzedrine.cx/tron/
 * other stuff in clients/ : http://tron.aichallenge.org/starter_packages.php
 * BayesElo/ : http://remi.coulom.free.fr/Bayesian-Elo/bayeselo.tar.bz2
 * README, Makefile, ratings.sh : (c) Panu Kalliokoski, and under CC-BY-4.0

How to get started
------------------

Unpack the distribution (if you haven't already):

$ tar xzf tronserver.tar.gz
$ cd tronserver

Compile the server and client tcp wrapper:

$ make

Start the server:

$ ./server/server

Start some clients:

$ cd clients/python
$ ../tcptron localhost 9999 nickname ./wallbot.py

When there are enough clients connected (usually two), a game will
start.  The results are saved in the file results.pgn.  If you want to
update the ratings, do this:

$ ./BayesElo/ratings.sh

The new ratings are saved in ratings.txt, and the server will read them
from there.

