mercury/src/azul.rs

225 lines
5.1 KiB
Rust
Raw Normal View History

2021-01-02 02:25:39 +01:00
use std::ops::{Deref, DerefMut};
2021-01-03 00:15:45 +01:00
use rand::prelude::*;
2021-01-02 02:25:39 +01:00
2021-01-03 00:15:45 +01:00
#[derive(Debug, Clone, PartialEq)]
pub enum Tile {
2021-01-02 01:30:02 +01:00
Start,
2021-01-01 23:07:16 +01:00
Blue,
Yellow,
Red,
Black,
Teal
}
2021-01-03 00:15:45 +01:00
// factory, color, pattern line
pub struct GameMove (pub usize, pub Tile, pub usize);
#[derive(Debug, Clone)]
2021-01-02 02:25:39 +01:00
struct Bag (Vec<Tile>);
2021-01-01 23:07:16 +01:00
impl Default for Bag {
fn default() -> Self {
2021-01-02 02:25:39 +01:00
let mut bag = Vec::<Tile>::with_capacity(100);
for _ in 0..20 {
bag.push(Tile::Blue);
};
for _ in 0..20 {
bag.push(Tile::Yellow);
};
for _ in 0..20 {
bag.push(Tile::Red);
};
for _ in 0..20 {
bag.push(Tile::Black);
};
for _ in 0..20 {
bag.push(Tile::Teal);
};
Bag(bag)
2021-01-01 23:07:16 +01:00
}
}
2021-01-02 02:25:39 +01:00
impl Deref for Bag {
type Target = Vec<Tile>;
fn deref(&self) -> &Vec<Tile> {
&self.0
}
}
impl DerefMut for Bag {
fn deref_mut(&mut self) -> &mut Vec<Tile> {
&mut self.0
}
}
2021-01-03 00:15:45 +01:00
impl From<Vec<Tile>> for Bag {
fn from(vector: Vec<Tile>) -> Bag {
Bag(vector)
}
}
2021-01-02 02:25:39 +01:00
2021-01-03 00:15:45 +01:00
#[derive(Default, Debug, Clone)]
struct Factory ([Option<Tile>; 4]);
2021-01-02 02:25:39 +01:00
impl Deref for Factory {
2021-01-03 00:15:45 +01:00
type Target = [Option<Tile>; 4];
2021-01-02 02:25:39 +01:00
2021-01-03 00:15:45 +01:00
fn deref(&self) -> &[Option<Tile>; 4] {
2021-01-02 02:25:39 +01:00
&self.0
}
}
impl DerefMut for Factory {
2021-01-03 00:15:45 +01:00
fn deref_mut(&mut self) -> &mut [Option<Tile>; 4] {
2021-01-02 02:25:39 +01:00
&mut self.0
}
2021-01-01 23:07:16 +01:00
}
2021-01-02 02:25:39 +01:00
2021-01-03 00:15:45 +01:00
#[derive(Debug, Clone)]
2021-01-02 02:25:39 +01:00
struct Market (Vec<Tile>);
2021-01-01 23:07:16 +01:00
impl Default for Market {
fn default() -> Self {
2021-01-02 02:25:39 +01:00
let mut market = Vec::<Tile>::with_capacity(20);
market.push(Tile::Start);
Market(market)
2021-01-01 23:07:16 +01:00
}
}
2021-01-02 02:25:39 +01:00
impl Deref for Market {
type Target = Vec<Tile>;
fn deref(&self) -> &Vec<Tile> {
&self.0
}
}
impl DerefMut for Market {
fn deref_mut(&mut self) -> &mut Vec<Tile> {
&mut self.0
}
}
2021-01-03 00:15:45 +01:00
type Patterns = (
[Option<Tile>; 1],
[Option<Tile>; 2],
[Option<Tile>; 3],
[Option<Tile>; 4],
[Option<Tile>; 5]
);
2021-01-01 23:07:16 +01:00
type Row = [bool; 5];
type Wall = [Row; 5];
2021-01-03 00:15:45 +01:00
#[derive(Debug, Clone)]
2021-01-01 23:07:16 +01:00
struct Board {
score: u8,
wall: Wall,
2021-01-03 00:15:45 +01:00
floor: Vec<Tile>,
2021-01-01 23:07:16 +01:00
patterns: Patterns,
}
impl Default for Board {
fn default() -> Self {
Board {
score: 0,
wall: Wall::default(),
2021-01-02 01:30:02 +01:00
floor: Vec::default(),
2021-01-01 23:07:16 +01:00
patterns: Patterns::default()
}
}
}
2021-01-03 00:15:45 +01:00
#[derive(Default, Debug, Clone)]
2021-01-01 23:07:16 +01:00
pub struct Game {
2021-01-02 01:30:02 +01:00
turn: u8,
2021-01-03 00:15:45 +01:00
player: usize,
2021-01-02 02:25:39 +01:00
box_top: Bag,
2021-01-01 23:07:16 +01:00
bag: Bag,
market: Market,
factories: Vec<Factory>,
boards: Vec<Board>
}
impl Game {
pub fn new(players: usize) -> Result<Self, &'static str> {
let n_factories = match players {
2 => 5,
3 => 7,
4 => 9,
_ => return Err("Not a valid amount of players")
};
let mut factories = Vec::<Factory>::with_capacity(n_factories);
for _ in 0..n_factories {
factories.push(Factory::default())
}
let mut boards = Vec::<Board>::with_capacity(players);
for _ in 0..players {
boards.push(Board::default());
}
2021-01-03 00:15:45 +01:00
let mut game = Game {
2021-01-02 01:30:02 +01:00
turn: 0,
player: 0,
2021-01-03 00:15:45 +01:00
box_top: Vec::<Tile>::with_capacity(100).into(),
2021-01-01 23:07:16 +01:00
bag: Bag::default(),
market: Market::default(),
factories: factories,
boards: boards
};
2021-01-03 00:15:45 +01:00
game.fill()?;
2021-01-01 23:07:16 +01:00
Ok(game)
}
2021-01-03 00:15:45 +01:00
fn fill(&mut self) -> Result<(), &'static str> {
2021-01-02 02:25:39 +01:00
for factory in &self.factories {
if factory.len() != 0 {
return Err("Cannot fill, factories are not empty")
};
};
2021-01-03 00:15:45 +01:00
for factory in &mut self.factories {
for i in 0..4 {
if self.bag.len() == 0 && self.box_top.len() > 0 {
self.bag.append(&mut self.box_top);
}
else if self.bag.len() == 0 {
return Ok(())
}
else {
let tile_i = (random::<f32>() * self.bag.len() as f32).floor() as usize;
let tile = self.bag.remove(tile_i);
factory[i] = Some(tile);
}
}
};
2021-01-02 02:25:39 +01:00
Ok(())
}
2021-01-03 00:15:45 +01:00
pub fn do_move(&self, game_move: GameMove) -> Result<Game, &'static str> {
if game_move.1 == Tile::Start {
return Err("You can't take the start tile alone")
}
let mut game = self.clone();
let old_factory = &self.factories[game_move.0];
let new_factory = &game.factories[game_move.0];
let sel_tile = game_move.1;
let mut hand = old_factory.clone();
hand.to_vec();
hand.retain(|x| *x == sel_tile);
if hand.len() == 0 {
return Err("That tile is not in that factory")
}
let target = &mut game.boards[self.player].patterns[game_move.2];
if target.first().is_some() || *target.first().unwrap() != sel_tile {
return Err("You cannot place that tile on that pattern-line")
}
game.turn += 1;
game.player = (game.player + 1) % self.boards.len();
Ok(game)
}
2021-01-01 23:07:16 +01:00
}