Step based Arimaa Engine

docs.rs Crates.io MIT licensed

Overview

A game engine for the board game Arimaa. This library provides the functionalities:

Documentation

Example

Parse a game state and take an action and generate a set of valid actions from that state.

```rust use arimaaenginestep::{action, board};

let game_state = board!( "2g +-----------------+ 8| h c d m e d c h | 7| r r r r r r r r | 6| x x | 5| | 4| | 3| x x | 2| R R R R R R R R | 1| H C D M E D C H | +-----------------+ a b c d e f g h" );

let action = action!(d2n); let gamestate = gamestate.take_action(&action);

println!("{:?}", gamestate.validactions()); ```

Additional Examples

License

This project is licensed under the [MIT license].