mahjong_core/game/
creation.rs

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
use super::{
    definition::{Game, GamePhase, GameStyle},
    Players,
};
use crate::{deck::DEFAULT_DECK, round::Round, Score};
use uuid::Uuid;

#[derive(Default, Clone)]
pub struct GameNewOpts {
    pub players: Option<Players>,
}

impl Game {
    pub fn new(opts: Option<GameNewOpts>) -> Self {
        let parsed_opts = opts.unwrap_or_default();
        let version = Uuid::new_v4().to_string();
        let players = parsed_opts.players.clone().unwrap_or_default();
        let game_style = GameStyle::HongKong;

        let table = DEFAULT_DECK.create_table(&players);
        let score = Score::new(&players.0);

        Self {
            id: "game_id".to_string(),
            name: "game_name".to_string(),
            phase: GamePhase::Beginning,
            players,
            round: Round::new(&game_style),
            score,
            style: GameStyle::HongKong,
            table,
            version,
        }
    }
}