Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/delphinemillet/tronia

Google AI Challenge 2010
https://github.com/delphinemillet/tronia

Last synced: 13 days ago
JSON representation

Google AI Challenge 2010

Awesome Lists containing this project

README

        

# TronIA
Google AI Challenge 2010

The detail of the project can be found [Here](http://tron.aichallenge.org)

### Compiling and running

Just run the following command to compile the C++ starter package.

```
make
```

To start the IA, select the engine with :

```
java -jar engine/Tron.jar
```

Next, select the map in the maps folder :

```
java -jar engine/Tron.jar maps/empty-room.txt
```

Then the first IA (here a cpp compiled one) :

```
java -jar engine/Tron.jar maps/empty-room.txt "./MyTronBot"
```

And finally the second IA (here a java one in the example_bots folder) :

```
java -jar engine/Tron.jar maps/empty-room.txt "./MyTronBot" "java -jar example_bots/RandomBot.jar"
```

Enjoy !