mahjong_core/
hand.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
use crate::{
    deck::DEFAULT_DECK,
    game::GameStyle,
    meld::{
        get_is_chow, get_is_kong, get_is_pair, get_is_pung, MeldType, PlayerDiff, PossibleMeld,
        SetCheckOpts,
    },
    PlayerId, Tile, TileId,
};
use rustc_hash::{FxHashMap, FxHashSet};
use serde::{Deserialize, Serialize};
use strum_macros::EnumIter;
use ts_rs::TS;

pub type SetIdContent = String;
pub type SetId = Option<SetIdContent>;

#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
pub struct HandPossibleMeld {
    pub is_mahjong: bool,
    pub is_concealed: bool,
    pub is_upgrade: bool,
    pub tiles: Vec<TileId>,
}

impl From<PossibleMeld> for HandPossibleMeld {
    fn from(meld: PossibleMeld) -> Self {
        Self {
            is_concealed: meld.is_concealed,
            is_mahjong: meld.is_mahjong,
            is_upgrade: meld.is_upgrade,
            tiles: meld.tiles.clone(),
        }
    }
}

#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq, Hash, TS)]
#[ts(export)]
pub struct KongTile {
    pub concealed: bool,
    pub id: TileId,
    pub set_id: SetIdContent,
}

#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq, Hash, TS)]
#[ts(export)]
pub struct HandTile {
    pub concealed: bool,
    pub id: TileId,
    pub set_id: SetId,
}

impl HandTile {
    pub fn from_id(id: TileId) -> Self {
        Self {
            id,
            set_id: None,
            concealed: true,
        }
    }
    pub fn from_tile(tile: &Tile) -> Self {
        Self {
            id: tile.get_id(),
            set_id: None,
            concealed: true,
        }
    }
}

#[derive(Clone, Debug, PartialEq, Eq, Default, Serialize, Deserialize, TS)]
pub struct Hand {
    pub list: Vec<HandTile>,
    pub kong_tiles: FxHashSet<KongTile>,
    #[serde(skip)]
    pub style: Option<GameStyle>,
}

#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq, TS)]
#[ts(export)]
pub struct HandMeld {
    pub meld_type: MeldType,
    pub tiles: Vec<TileId>,
}

#[derive(Clone, Debug, Serialize, Deserialize, Default, PartialEq, Eq, TS)]
#[ts(export)]
pub struct HandMelds {
    pub melds: Vec<HandMeld>,
    pub tiles_without_meld: usize,
}

// Proxied
impl Hand {
    pub fn get(&self, index: usize) -> &HandTile {
        self.list.get(index).unwrap()
    }

    pub fn len(&self) -> usize {
        self.list.len()
    }

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

    pub fn push(&mut self, tile: HandTile) {
        self.list.push(tile)
    }
}

#[derive(Debug, EnumIter, Eq, PartialEq, Clone)]
pub enum SortHandError {
    NotSortedMissingTile,
}

#[derive(Debug, EnumIter, Eq, PartialEq, Clone)]
pub enum CanSayMahjongError {
    CantDrop,
    NotPair,
}

impl Hand {
    pub fn new(list: Vec<HandTile>) -> Self {
        Self {
            list,
            style: None,
            kong_tiles: FxHashSet::default(),
        }
    }

    pub fn from_ref_vec(tiles: &[&HandTile]) -> Self {
        Self {
            kong_tiles: FxHashSet::default(),
            list: tiles.iter().cloned().cloned().collect(),
            style: None,
        }
    }

    pub fn from_ids(tiles: &[TileId]) -> Self {
        Self {
            list: tiles.iter().cloned().map(HandTile::from_id).collect(),
            kong_tiles: FxHashSet::default(),
            style: None,
        }
    }

    pub fn sort_default(&mut self) {
        self.list.sort_by(|a, b| {
            let tile_a = &DEFAULT_DECK.0.get(a.id);
            let tile_b = &DEFAULT_DECK.0.get(b.id);

            if tile_a.is_none() || tile_b.is_none() {
                return std::cmp::Ordering::Equal;
            }

            tile_a.unwrap().cmp_custom(tile_b.unwrap())
        });
    }

    // `tiles` can be a sub-set of the whole hand
    pub fn sort_by_tiles(&mut self, tiles: &[TileId]) -> Result<(), SortHandError> {
        let hand_copy = self
            .list
            .clone()
            .iter()
            .map(|t| t.id)
            .collect::<Vec<TileId>>();
        let hand_set = hand_copy.iter().collect::<FxHashSet<&TileId>>();

        if tiles.iter().any(|t| !hand_set.contains(&t)) {
            return Err(SortHandError::NotSortedMissingTile);
        }

        self.list.sort_by(|a, b| {
            let tile_a = tiles.iter().position(|t| *t == a.id);
            let tile_b = tiles.iter().position(|t| *t == b.id);

            if tile_a.is_none() && tile_b.is_none() {
                return std::cmp::Ordering::Equal;
            }

            if tile_a.is_none() {
                return std::cmp::Ordering::Greater;
            }

            if tile_b.is_none() {
                return std::cmp::Ordering::Less;
            }

            let (tile_a, tile_b) = (tile_a.unwrap(), tile_b.unwrap());

            tile_a.cmp(&tile_b)
        });

        Ok(())
    }

    pub fn get_melds(&self) -> HandMelds {
        let mut melds = HandMelds::default();
        let sets_groups = self.get_sets_groups();

        for (set, tiles) in sets_groups.iter() {
            if set.is_none() {
                melds.tiles_without_meld = tiles.len();
                continue;
            }

            let meld_type = MeldType::from_tiles(tiles);

            if meld_type.is_none() {
                continue;
            }

            let meld_type = meld_type.unwrap();

            melds.melds.push(HandMeld {
                meld_type,
                tiles: tiles.clone(),
            });
        }

        melds
    }

    pub fn can_say_mahjong(&self) -> Result<(), CanSayMahjongError> {
        if !self.can_drop_tile() {
            return Err(CanSayMahjongError::CantDrop);
        }

        let tiles_without_meld: Vec<&Tile> = self
            .list
            .iter()
            .filter(|t| t.set_id.is_none())
            .map(|t| &DEFAULT_DECK.0[t.id])
            .collect();

        let is_pair = get_is_pair(&tiles_without_meld);

        if !is_pair {
            return Err(CanSayMahjongError::NotPair);
        }

        Ok(())
    }

    fn get_pungs_tiles(&self) -> Vec<(Tile, SetId)> {
        let sets_ids: FxHashSet<SetIdContent> =
            self.list.iter().filter_map(|t| t.set_id.clone()).collect();
        let mut pungs: Vec<(Tile, SetId)> = vec![];
        let existing_kongs = self
            .kong_tiles
            .iter()
            .map(|t| t.set_id.clone())
            .collect::<FxHashSet<SetIdContent>>();

        for set_id in sets_ids {
            let tiles: Vec<&Tile> = self
                .list
                .iter()
                .filter(|t| t.set_id == Some(set_id.clone()))
                .map(|t| &DEFAULT_DECK.0[t.id])
                .collect();

            let is_pung = get_is_pung(&SetCheckOpts {
                board_tile_player_diff: PlayerDiff::default(),
                claimed_tile: None,
                sub_hand: &tiles,
            });

            if is_pung && !existing_kongs.contains(&set_id) {
                pungs.push((tiles[0].clone(), Some(set_id)));
            }
        }

        pungs
    }

    pub fn get_possible_melds(
        &self,
        board_tile_player_diff: PlayerDiff,
        claimed_tile: Option<TileId>,
        check_for_mahjong: bool,
    ) -> Vec<HandPossibleMeld> {
        let hand_filtered: Vec<&HandTile> =
            self.list.iter().filter(|h| h.set_id.is_none()).collect();
        let mut melds: Vec<HandPossibleMeld> = vec![];
        let existing_pungs = self.get_pungs_tiles();

        if check_for_mahjong {
            if self.can_say_mahjong().is_ok() {
                let tiles = self
                    .list
                    .iter()
                    .filter(|t| t.set_id.is_none())
                    .map(|t| t.id)
                    .collect();
                let meld = HandPossibleMeld {
                    is_upgrade: false,
                    is_concealed: false,
                    is_mahjong: true,
                    tiles,
                };

                melds.push(meld);
            }

            return melds;
        }

        for first_tile_index in 0..hand_filtered.len() {
            let first_tile = hand_filtered[first_tile_index].id;
            let first_tile_full = &DEFAULT_DECK.0[first_tile];

            for second_tile_index in (first_tile_index + 1)..hand_filtered.len() {
                let second_tile = hand_filtered[second_tile_index].id;
                let second_tile_full = &DEFAULT_DECK.0[second_tile];

                if !first_tile_full.is_same_type(second_tile_full) {
                    continue;
                }

                for third_tile_index in (second_tile_index + 1)..hand_filtered.len() {
                    let third_tile = hand_filtered[third_tile_index].id;
                    let third_tile_full = &DEFAULT_DECK.0[third_tile];
                    if !first_tile_full.is_same_type(third_tile_full) {
                        continue;
                    }

                    let sub_hand = [first_tile_full, second_tile_full, third_tile_full];

                    let opts = SetCheckOpts {
                        board_tile_player_diff,
                        claimed_tile,
                        sub_hand: &sub_hand,
                    };

                    if get_is_pung(&opts) || get_is_chow(&opts) {
                        let is_concealed = claimed_tile.is_none();

                        let meld = HandPossibleMeld {
                            is_concealed,
                            is_mahjong: false,
                            is_upgrade: false,
                            tiles: vec![first_tile, second_tile, third_tile],
                        };
                        melds.push(meld);
                    }

                    for forth_tile in hand_filtered.iter().skip(third_tile_index + 1) {
                        let forth_tile_full = &DEFAULT_DECK.0[forth_tile.id];

                        let mut opts = opts.clone();
                        let sub_hand_inner = [
                            first_tile_full,
                            second_tile_full,
                            third_tile_full,
                            forth_tile_full,
                        ];
                        opts.sub_hand = &sub_hand_inner;

                        if get_is_kong(&opts) {
                            let is_concealed = claimed_tile.is_none();

                            let meld = HandPossibleMeld {
                                is_concealed,
                                is_mahjong: false,
                                is_upgrade: false,
                                tiles: vec![first_tile, second_tile, third_tile, forth_tile.id],
                            };
                            melds.push(meld);
                        }
                    }
                }
            }

            for (concealed_pung_tile, set_id) in existing_pungs.iter() {
                if first_tile_full.is_same_content(concealed_pung_tile) {
                    let is_concealed = claimed_tile.is_none();
                    let mut tiles: Vec<TileId> = self
                        .list
                        .iter()
                        .filter(|t| t.set_id == *set_id)
                        .map(|t| t.id)
                        .collect();
                    tiles.push(first_tile);

                    let meld = HandPossibleMeld {
                        is_mahjong: false,
                        is_upgrade: true,
                        is_concealed,
                        tiles,
                    };
                    melds.push(meld);
                }
            }
        }

        melds
    }

    pub fn get_has_tile(&self, tile_id: &TileId) -> bool {
        self.list.iter().any(|t| t.id == *tile_id)
    }

    pub fn get_sets_groups(&self) -> FxHashMap<SetId, Vec<TileId>> {
        let mut sets: FxHashMap<SetId, Vec<TileId>> = FxHashMap::default();

        for tile in &self.list {
            let set_id = tile.set_id.clone();

            sets.entry(set_id.clone()).or_default().push(tile.id);
        }

        for kong_tile in &self.kong_tiles {
            sets.entry(Some(kong_tile.set_id.clone()))
                .or_default()
                .push(kong_tile.id);
        }

        sets
    }

    pub fn can_drop_tile(&self) -> bool {
        self.list.len()
            == self
                .style
                .as_ref()
                .unwrap_or(&GameStyle::HongKong)
                .tiles_after_claim()
    }
}

impl From<Hand> for Vec<TileId> {
    fn from(hand: Hand) -> Self {
        hand.list.iter().map(|t| t.id).collect()
    }
}

pub type HandsMap = FxHashMap<PlayerId, Hand>;
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Default, TS)]
#[ts(export)]
pub struct Hands(pub HandsMap);

// Proxied
impl Hands {
    pub fn get(&self, player: &PlayerId) -> Option<Hand> {
        self.0.get(player).cloned()
    }
}

// Proxied
impl Hands {
    pub fn remove(&mut self, player: &PlayerId) -> Hand {
        self.0.remove(player).unwrap()
    }

    pub fn insert(&mut self, player: impl AsRef<str>, hand: Hand) -> Option<Hand> {
        self.0.insert(player.as_ref().to_string(), hand)
    }
}

impl Hands {
    pub fn get_player_hand_len(&self, player: &str) -> usize {
        self.0.get(player).unwrap().len()
    }

    pub fn get_style(&self) -> GameStyle {
        self.0
            .values()
            .next()
            .cloned()
            .unwrap()
            .style
            .unwrap_or_default()
    }
}

impl Hands {
    pub fn insert_ids(&mut self, player: &str, tiles: &[TileId]) -> &mut Self {
        self.0.insert(player.to_string(), Hand::from_ids(tiles));
        self
    }

    pub fn sort_player_hand(&mut self, player: &PlayerId) {
        let mut hand = self.0.get(player).unwrap().clone();
        hand.sort_default();
        self.0.insert(player.clone(), hand);
    }
}