planetwars.dev/planetwars-client
Ilion Beyst 2fec5e4509 implement map selection in cli 2022-09-02 21:58:32 +02:00
..
src implement map selection in cli 2022-09-02 21:58:32 +02:00
Cargo.toml support working_directory and command string 2022-07-23 00:38:34 +02:00
README.md update README 2022-07-23 00:38:44 +02:00
build.rs rename bot_api to client_api 2022-07-25 22:16:50 +02:00
simplebot.toml run bot process in client 2022-06-07 20:16:42 +02:00

README.md

planetwars-client

planetwars-client can be used to play a match with your bot running on your own machine.

Usage

First, create a config mybot.toml:

# Comand to run when starting the bot.
# Argv style also supported: ["python", "simplebot.py"]
command = "python simplebot.py"

# Directory in which to run the command.
# It is recommended to use an absolute path here.
working_directory = "/home/user/simplebot"

Then play a match: planetwars-client /path/to/mybot.toml opponent_name

Building

  • Obtain rust compiler through https://rustup.rs/ or your package manager
  • Checkout this repository
  • Run cargo install --path . in the planetwars-client directory