mahjong_core/
score.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
// http://mahjongtime.com/hong-kong-mahjong-scoring.html
// https://en.wikipedia.org/wiki/Hong_Kong_mahjong_scoring_rules

use crate::{
    deck::DEFAULT_DECK, meld::MeldType, Flower, Game, PlayerId, Season, Tile, FLOWERS_ORDER,
    SEASONS_ORDER, WINDS_ROUND_ORDER,
};
use rustc_hash::{FxHashMap, FxHashSet};
use serde::{Deserialize, Serialize};
use strum_macros::EnumIter;
use ts_rs::TS;

pub type ScoreItem = u32;
pub type ScoreMap = FxHashMap<PlayerId, ScoreItem>;

#[derive(Clone, Debug, Serialize, Deserialize, TS)]
pub struct Score(pub ScoreMap);

// Proxied
impl Score {
    pub fn get(&self, player_id: &PlayerId) -> Option<&ScoreItem> {
        self.0.get(player_id)
    }

    pub fn iter(&self) -> impl Iterator<Item = (&PlayerId, &ScoreItem)> {
        self.0.iter()
    }
}

// Proxied
impl Score {
    pub fn insert(&mut self, player_id: impl AsRef<str>, score: ScoreItem) {
        self.0.insert(player_id.as_ref().to_string(), score);
    }

    pub fn remove(&mut self, player_id: &PlayerId) -> ScoreItem {
        self.0.remove(player_id).unwrap()
    }
}

impl Score {
    pub fn new(players: &Vec<PlayerId>) -> Self {
        let mut score = ScoreMap::default();

        for player_id in players {
            score.insert(player_id.clone(), 0);
        }

        Self(score)
    }
}

#[derive(Clone, Debug, PartialEq, Eq, EnumIter)]
pub enum ScoringRule {
    AllFlowers,
    AllInTriplets,
    AllSeasons,
    BasePoint, // This is a custom rule until all other rules are implemented
    CommonHand,
    GreatDragons,
    LastWallTile,
    NoFlowersSeasons,
    SeatFlower,
    SeatSeason,
    SelfDraw,
}

impl Game {
    fn get_scoring_rules_points(scoring_rules: &Vec<ScoringRule>) -> u32 {
        let mut round_points = 0;

        for rule in scoring_rules {
            round_points += match rule {
                ScoringRule::AllFlowers => 2,
                ScoringRule::AllInTriplets => 3,
                ScoringRule::AllSeasons => 2,
                ScoringRule::BasePoint => 1,
                ScoringRule::CommonHand => 1,
                ScoringRule::GreatDragons => 8,
                ScoringRule::LastWallTile => 1,
                ScoringRule::NoFlowersSeasons => 1,
                ScoringRule::SeatFlower => 1,
                ScoringRule::SeatSeason => 1,
                ScoringRule::SelfDraw => 1,
            }
        }

        round_points
    }

    fn get_scoring_rules(&self, winner_player: &PlayerId) -> Vec<ScoringRule> {
        let mut rules = Vec::new();
        rules.push(ScoringRule::BasePoint);
        let empty_bonus = vec![];
        let winner_hand = self.table.hands.0.get(winner_player).unwrap();
        let winner_melds = winner_hand.get_melds();
        let melds_without_pair = winner_melds
            .melds
            .iter()
            .filter(|meld| meld.meld_type != MeldType::Pair)
            .collect::<Vec<_>>();

        let winner_bonus = self
            .table
            .bonus_tiles
            .0
            .get(winner_player)
            .unwrap_or(&empty_bonus);

        if melds_without_pair
            .iter()
            .all(|meld| meld.meld_type == MeldType::Chow)
        {
            rules.push(ScoringRule::CommonHand);
        }

        if melds_without_pair
            .iter()
            .all(|meld| meld.meld_type == MeldType::Pung || meld.meld_type == MeldType::Kong)
        {
            rules.push(ScoringRule::AllInTriplets);
        }

        if melds_without_pair
            .iter()
            .filter(|meld| {
                if meld.meld_type == MeldType::Chow {
                    return false;
                }

                let tile = &DEFAULT_DECK.0[meld.tiles[0]];

                matches!(tile, Tile::Dragon(_))
            })
            .count()
            == 3
        {
            rules.push(ScoringRule::GreatDragons);
        }

        if self.table.draw_wall.is_empty() {
            rules.push(ScoringRule::LastWallTile);
        }

        if self.round.tile_claimed.is_none() {
            rules.push(ScoringRule::SelfDraw);
        }

        let mut flowers: FxHashSet<Flower> = FxHashSet::default();
        let mut seasons: FxHashSet<Season> = FxHashSet::default();

        for tile_id in winner_bonus {
            let tile = &DEFAULT_DECK.0[*tile_id];
            match tile {
                Tile::Flower(flower) => {
                    flowers.insert(flower.value.clone());
                }
                Tile::Season(season) => {
                    seasons.insert(season.value.clone());
                }
                _ => {}
            }
        }

        if flowers.is_empty() && seasons.is_empty() {
            rules.push(ScoringRule::NoFlowersSeasons);
        } else {
            if flowers.len() == 4 {
                rules.push(ScoringRule::AllFlowers);
            }

            if seasons.len() == 4 {
                rules.push(ScoringRule::AllSeasons);
            }

            let player_wind = self.round.get_player_wind(&self.players.0, winner_player);
            let has_seat_flower = flowers.iter().any(|flower| {
                let flower_index = FLOWERS_ORDER.iter().position(|f| f == flower).unwrap();
                WINDS_ROUND_ORDER[flower_index] == player_wind
            });
            let has_seat_season = seasons.iter().any(|season| {
                let season_index = SEASONS_ORDER.iter().position(|s| s == season).unwrap();
                WINDS_ROUND_ORDER[season_index] == player_wind
            });

            if has_seat_flower {
                rules.push(ScoringRule::SeatFlower);
            }

            if has_seat_season {
                rules.push(ScoringRule::SeatSeason);
            }
        }

        rules
    }
}

impl Game {
    pub fn calculate_hand_score(&mut self, winner_player: &PlayerId) -> (Vec<ScoringRule>, u32) {
        {
            let score = &mut self.score;
            let current_player_score = score.get(winner_player);
            if current_player_score.is_none() {
                return (vec![], 0);
            }
        }

        let scoring_rules = self.get_scoring_rules(winner_player);
        let round_points = Self::get_scoring_rules_points(&scoring_rules);

        let current_player_score = self.score.get(winner_player).unwrap();

        self.score
            .insert(winner_player, current_player_score + round_points);

        (scoring_rules, round_points)
    }
}