Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/delphinemillet/tronia
- Owner: delphinemillet
- License: other
- Created: 2016-01-06T07:28:21.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-02T09:33:25.000Z (about 9 years ago)
- Last Synced: 2024-10-29T03:33:28.382Z (about 2 months ago)
- Language: C++
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# TronIA
Google AI Challenge 2010The 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 !