#cards #deck #poker #casino #playing

casino_cards

A library that provides a deck of playing cards that can be used for various card games

3 releases (1 stable)

new 1.0.0 Aug 30, 2024
0.1.1 Jul 14, 2024
0.1.0 Jul 14, 2024

#604 in Game dev

Download history 63/week @ 2024-07-08 152/week @ 2024-07-15 14/week @ 2024-07-22 8/week @ 2024-08-12 126/week @ 2024-08-26

134 downloads per month
Used in 2 crates (via casino_poker)

MPL-2.0 license

19KB
441 lines

crates.io Cards Test

casino_cards

A library that provides a deck of playing cards that can be used for various card games.

Usage

Deck creation

use casino_cards::deck::Deck;

fn main() {
    let mut deck = Deck::new();
    deck.shuffle();

    let card1 = deck.deal();
    // A card can be inserted at a specified position in the deck.
    deck.insert(12, card);

    let card2 = deck.deal();
    // A card can be inserted at the bottom of the deck.
    deck.insert_at_bottom(card2);

    let card3 = deck.deal();
    // A card can be inserted at the middle of the deck.
    deck.insert_at_middle(card3);

    let card4 = deck.deal();
    // A card can be inserted at the top of the deck.
    deck.insert_at_top(card4);

    deck.shuffle();
}

Card creation

use casino_cards::card;
use casino_cards::card::{Card, Rank, Suit};

fn main() {
    // A card can be created with the new() method.
    let two_of_diamonds = Card::new(Rank::Two, Suit::Diamond);

    // Or a card can be created by using a macro.
    let two_of_clubs = card!(Two, Club);
}

Hand creation

use casino_cards::card::Card;
use casino_cards::deck::Deck;
use casino_cards::hand::Hand;

fn main() {
    let mut deck = Deck::new();
    deck.shuffle()

    // A hand can be created by pushing cards into it.
    let card1 = deck.deal();
    let card2 = deck.deal();
    let mut hand = Hand::new();
    hand.push(card1);
    hand.push(card2);

    // Or a hand can be created from an existing Vec<Card>.
    let mut cards: Vec<Card> = Vec::new();
    let card3 = deck.deal();
    let card4 = deck.deal();
    cards.push(card3);
    cards.push(card4);
    let mut hand2 = Hand::new_from_cards(cards);
}

Dependencies

~0.6–1.1MB
~23K SLoC