1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
pub mod command;
pub mod geometry;
pub mod settings;
pub mod expressive_engine;
pub mod bitwise_engine;
pub mod constants;
use self::command::{Command};
use self::geometry::Point;
use self::settings::{GameSettings};
pub trait GameState: Clone + Sync {
fn simulate(&mut self, settings: &GameSettings, player_command: Command, opponent_command: Command) -> GameStatus;
fn player(&self) -> &Player;
fn opponent(&self) -> &Player;
fn player_has_max_teslas(&self) -> bool;
fn opponent_has_max_teslas(&self) -> bool;
fn unoccupied_player_cell_count(&self) -> usize;
fn unoccupied_opponent_cell_count(&self) -> usize;
fn location_of_unoccupied_player_cell(&self, i: usize) -> Point;
fn location_of_unoccupied_opponent_cell(&self, i: usize) -> Point;
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum GameStatus {
Continue,
PlayerWon,
OpponentWon,
Draw
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Player {
pub energy: u16,
pub health: u8,
pub energy_generated: u16,
}
|