mitsuyoshi-yamazaki / screeps-arena-starter-rust

Starter Rust AI for Screeps Arena, the JavaScript-based strategy game

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

screeps-starter-rust

Starter Rust AI for Screeps, the JavaScript-based MMO game.

This uses the screeps-game-api bindings from the rustyscreeps organization.

It's also recommended to use cargo-screeps for uploading the code.

The documentation is currently a bit sparse. API docs which list functions one can use are located at https://docs.rs/screeps-game-api/.

Almost all crates on https://crates.io/ are usable (only things which interact with OS apis are broken).

Quickstart:

# cli dependencies:
# TEMPORARY - get the arena branch of the cargo-screeps tool, which supports arena
git clone https://github.com/rustyscreeps/cargo-screeps.git
git checkout arena
cd cargo-screeps
cargo install --path .
cd ..
# TEMPORARY once arena is merged, go back to simply:
cargo install cargo-screeps

# clone:
git clone https://github.com/rustyscreeps/screeps-arena-starter-rust.git
cd screeps-starter-rust
# TEMPORARY
git checkout arena

# configure for uploading:
cp example-screeps.toml screeps.toml
nano screeps.toml

# build tool:
cargo screeps --help
# compile the module
cargo screeps build
# compile plus deploy to the configured 'ctf' mode
cargo screeps deploy -m ctf

About

Starter Rust AI for Screeps Arena, the JavaScript-based strategy game

License:MIT License


Languages

Language:Rust 98.2%Language:JavaScript 1.8%