X-Git-Url: http://git.scottworley.com/pluta-lesnura/blobdiff_plain/09822a98a2b947ff471eb8056444dbf561c8eda3..b8e315ac26e9ce0a60ecb9d756f089d31b42e361:/src/lib.rs diff --git a/src/lib.rs b/src/lib.rs index b7dc954..c0475b3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,10 +2,17 @@ use rand::Rng; pub const NUM_RANKS: u8 = 13; pub const NUM_SUITS: u8 = 4; -pub const NUM_CARDS: u8 = NUM_RANKS * NUM_SUITS; +pub const NUM_JOKERS: u8 = 2; +pub const NUM_CARDS: u8 = NUM_RANKS * NUM_SUITS + NUM_JOKERS; #[derive(Clone, Copy, Eq, PartialEq)] pub struct Rank(u8); +impl Rank { + #[must_use] + pub fn value(&self) -> u8 { + self.0 + 1 + } +} #[derive(Clone, Copy, Eq, PartialEq)] pub struct Suit(u8); @@ -14,18 +21,32 @@ pub struct Suit(u8); pub struct Card(u8); impl Card { #[must_use] - pub fn rank(&self) -> Rank { - Rank(self.0 >> 2) + pub fn is_joker(&self) -> bool { + self.0 >= NUM_RANKS * NUM_SUITS + } + #[must_use] + pub fn rank(&self) -> Option { + (!self.is_joker()).then_some(Rank(self.0 >> 2)) } #[must_use] - pub fn suit(&self) -> Suit { - Suit(self.0 & 3) + pub fn suit(&self) -> Option { + (!self.is_joker()).then_some(Suit(self.0 & 3)) } } +#[derive(Clone, Copy)] +pub enum WithOrWithoutJokers { + WithJokers, + WithoutJokers, +} + #[must_use] -pub fn deck() -> Vec { - (0..NUM_CARDS).map(Card).collect() +pub fn deck(j: WithOrWithoutJokers) -> Vec { + let limit = match j { + WithOrWithoutJokers::WithJokers => NUM_CARDS, + WithOrWithoutJokers::WithoutJokers => NUM_SUITS * NUM_RANKS, + }; + (0..limit).map(Card).collect() } #[derive(Clone, Copy)] @@ -87,6 +108,15 @@ mod tests { #[test] fn test_deck() { - let _d = deck(); + use WithOrWithoutJokers::*; + let d = deck(WithoutJokers); + let rank_sum: u32 = d + .iter() + .map(Card::rank) + .flatten() + .map(|r| u32::from(r.value())) + .sum(); + assert_eq!(rank_sum, 364); + let _dj = deck(WithJokers); } }