X-Git-Url: http://git.scottworley.com/pluta-lesnura/blobdiff_plain/d5e2b09ad25d4e7e1ab88fa1e15bb33a11bea280..cc2b69f31844bc4967106ec85825d007f6a32c2c:/src/lib.rs diff --git a/src/lib.rs b/src/lib.rs index 59a47a9..0ad69ea 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -178,7 +178,6 @@ impl Hand { fn len(&self) -> usize { self.cards.len() } - #[cfg(test)] fn random(&self) -> Option<&Card> { self.cards.choose(&mut rand::thread_rng()) } @@ -204,6 +203,7 @@ pub enum Phase { Momentum, } +#[derive(Debug)] pub enum GameOutcome { Loss, Win, @@ -395,9 +395,18 @@ impl Default for Game { } pub struct Player(Box Play>); +impl Player { + #[must_use] + pub fn new(f: T) -> Self + where + T: FnMut(&Game) -> Play + 'static, + { + Self(Box::new(f)) + } +} -#[cfg(test)] -fn random_player(game: &Game) -> Play { +#[must_use] +pub fn random_player(game: &Game) -> Play { match game.phase { Phase::Play => Play::Play( *game @@ -491,7 +500,7 @@ mod tests { #[test] fn test_game() { for num_players in 1..10 { - let players: Vec<_> = std::iter::from_fn(|| Some(Player(Box::new(random_player)))) + let players: Vec<_> = std::iter::from_fn(|| Some(Player::new(random_player))) .take(num_players) .collect(); let mut game = Game::default();