mahjong_core/
tile.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
use crate::{DragonTile, FlowerTile, SeasonTile, SuitTile, WindTile};
use serde::{Deserialize, Serialize};
use ts_rs::TS;

pub type TileId = usize;

#[derive(Clone, Debug, Serialize, Deserialize, TS)]
#[ts(export)]
pub enum Tile {
    Dragon(DragonTile),
    Suit(SuitTile),
    Wind(WindTile),
    Flower(FlowerTile),
    Season(SeasonTile),
}

impl Tile {
    pub fn get_id(&self) -> TileId {
        match self {
            Self::Suit(tile) => tile.id,
            Self::Dragon(tile) => tile.id,
            Self::Wind(tile) => tile.id,
            Self::Season(tile) => tile.id,
            Self::Flower(tile) => tile.id,
        }
    }

    pub fn is_same_type(&self, tile_b: &Self) -> bool {
        match self {
            Self::Suit(_) => matches!(tile_b, Self::Suit(_)),
            Self::Dragon(_) => matches!(tile_b, Self::Dragon(_)),
            Self::Wind(_) => matches!(tile_b, Self::Wind(_)),
            Self::Season(_) => matches!(tile_b, Self::Season(_)),
            Self::Flower(_) => matches!(tile_b, Self::Flower(_)),
        }
    }

    pub fn is_same_content(&self, tile_b: &Self) -> bool {
        match self {
            Self::Suit(tile_a) => match tile_b {
                Self::Suit(tile_b) => tile_a.suit == tile_b.suit && tile_a.value == tile_b.value,
                _ => false,
            },
            Self::Dragon(tile_a) => match tile_b {
                Self::Dragon(tile_b) => tile_a.value == tile_b.value,
                _ => false,
            },
            Self::Wind(tile_a) => match tile_b {
                Self::Wind(tile_b) => tile_a.value == tile_b.value,
                _ => false,
            },
            Self::Season(tile_a) => match tile_b {
                Self::Season(tile_b) => tile_a.value == tile_b.value,
                _ => false,
            },
            Self::Flower(tile_a) => match tile_b {
                Self::Flower(tile_b) => tile_a.value == tile_b.value,
                _ => false,
            },
        }
    }

    fn cmp_custom_order(tile: &Self) -> u32 {
        match tile {
            Self::Suit(_) => 0,
            Self::Dragon(_) => 1,
            Self::Wind(_) => 2,
            Self::Season(_) => 3,
            Self::Flower(_) => 4,
        }
    }

    pub fn cmp_custom(&self, other: &Self) -> std::cmp::Ordering {
        match self {
            Self::Suit(tile_a) => {
                if let Self::Suit(tile_b) = other {
                    if tile_a.suit != tile_b.suit {
                        return tile_a.suit.cmp(&tile_b.suit);
                    }

                    return tile_a.value.cmp(&tile_b.value);
                }
            }
            Self::Dragon(tile_a) => {
                if let Self::Dragon(tile_b) = other {
                    return tile_a.value.cmp(&tile_b.value);
                }
            }
            Self::Wind(tile_a) => {
                if let Self::Wind(tile_b) = other {
                    return tile_a.value.cmp(&tile_b.value);
                }
            }
            Self::Season(tile_a) => {
                if let Self::Season(tile_b) = other {
                    return tile_a.value.cmp(&tile_b.value);
                }
            }
            Self::Flower(tile_a) => {
                if let Self::Flower(tile_b) = other {
                    return tile_a.value.cmp(&tile_b.value);
                }
            }
        };

        Self::cmp_custom_order(self).cmp(&Self::cmp_custom_order(other))
    }

    pub fn is_bonus(&self) -> bool {
        matches!(self, Self::Flower(_) | Self::Season(_))
    }
}

impl Tile {
    pub fn set_id(&mut self, id: TileId) {
        match self {
            Self::Suit(tile) => tile.id = id,
            Self::Dragon(tile) => tile.id = id,
            Self::Wind(tile) => tile.id = id,
            Self::Season(tile) => tile.id = id,
            Self::Flower(tile) => tile.id = id,
        }
    }
}