]> git.scottworley.com Git - pluta-lesnura/commitdiff
Refactor momentum_player() for clarity
authorScott Worley <scottworley@scottworley.com>
Tue, 18 Jul 2023 20:00:26 +0000 (13:00 -0700)
committerScott Worley <scottworley@scottworley.com>
Tue, 18 Jul 2023 20:00:26 +0000 (13:00 -0700)
src/lib.rs

index cae313283f6ab55cf11f159017530738e3cac327..c46aa7dcf18eeca8ec17f76e0732a3dd24db828a 100644 (file)
@@ -444,15 +444,14 @@ pub fn random_player(draw_chance: f64) -> Player {
 #[must_use]
 pub fn momentum_player(mut fallback: Player) -> Player {
     Player(Box::new(move |game: &Game| -> Play {
-        match (&game.phase, game.discard.top().and_then(Card::suit)) {
-            (Phase::Play, Some(suit)) => {
-                match game.current_player_hand().filter_by_suit(suit).random() {
-                    Some(card) => Play::Play(*card),
-                    _ => fallback.0(game),
+        if game.phase == Phase::Play {
+            if let Some(suit) = game.discard.top().and_then(Card::suit) {
+                if let Some(card) = game.current_player_hand().filter_by_suit(suit).random() {
+                    return Play::Play(*card);
                 }
             }
-            _ => fallback.0(game),
         }
+        fallback.0(game)
     }))
 }