mahjong_core/game/
players.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
use crate::macros::derive_game_common;
use rand::{seq::SliceRandom, thread_rng};
use ts_rs::TS;
use uuid::Uuid;

pub type PlayerId = String;

pub type PlayersVec = Vec<PlayerId>;

derive_game_common! {
#[derive(Default, TS)]
pub struct Players(pub PlayersVec);
}

impl Players {
    pub fn new_player() -> PlayerId {
        Uuid::new_v4().to_string()
    }
}

impl Players {
    pub fn swap(&mut self, p1: &PlayerId, p2: &PlayerId) {
        let p1idx = self.0.iter().position(|x| x == p1).unwrap();
        let p2idx = self.0.iter().position(|x| x == p2).unwrap();

        self.0.swap(p1idx, p2idx);
    }
}

// Proxied methods
impl Players {
    pub fn len(&self) -> usize {
        self.0.len()
    }

    pub fn iter(&self) -> std::slice::Iter<PlayerId> {
        self.0.iter()
    }

    pub fn get(&self, index: usize) -> Option<&PlayerId> {
        self.0.get(index)
    }

    pub fn is_empty(&self) -> bool {
        self.0.is_empty()
    }

    pub fn first(&self) -> &PlayerId {
        self.0.first().unwrap()
    }
}

// Proxied methods
impl Players {
    pub fn push(&mut self, player_id: PlayerId) {
        self.0.push(player_id);
    }

    pub fn shuffle(&mut self) {
        self.0.shuffle(&mut thread_rng());
    }
}