Innobate.CardDeck 0.0.1-alpha

This is a prerelease version of Innobate.CardDeck.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Innobate.CardDeck --version 0.0.1-alpha
NuGet\Install-Package Innobate.CardDeck -Version 0.0.1-alpha
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Innobate.CardDeck" Version="0.0.1-alpha" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Innobate.CardDeck --version 0.0.1-alpha
#r "nuget: Innobate.CardDeck, 0.0.1-alpha"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Innobate.CardDeck as a Cake Addin
#addin nuget:?package=Innobate.CardDeck&version=0.0.1-alpha&prerelease

// Install Innobate.CardDeck as a Cake Tool
#tool nuget:?package=Innobate.CardDeck&version=0.0.1-alpha&prerelease

CardDeck Library Card Deck

Introduction

The CardDeck library provides a framework for working with playing cards, offering features to create and manipulate decks of cards. It is designed to be flexible and adaptable for various card games and applications.

Card Class

ICard Interface

  • An interface representing a playing card.
  • Properties:
    • Suit: Represents the suit of the card.
    • CardValue: Represents the value of the card.
    • Rank: Used to rank the card in the deck.
  • Method:
    • GetShortCode(): Returns a short code representing the card.

Card Class

  • Simplest data structure to represent information about a general playing card.
  • Inherits from ICard.
  • Provides a constructor to set the suit and card value.
  • Implements the GetShortCode method to get a short code representation of the card.

Card Enumerations

CardSuit Enum

  • Enumerates the possible suits of a card, including Joker, Spades, Hearts, Clubs, and Diamonds.

CardValue Enum

  • Enumerates the possible face values of a card, including Joker, Ace, Two, Three, and so on.

DeckFactory Class

DeckFactory<TCard, TJokerCard> Class

  • Responsible for creating instances of card and joker card classes.
  • Provides methods for creating cards, joker cards, and initializing decks.
  • Properties:
    • deckType: Represents the type of the deck (e.g., "French" or "US Standard").
  • Methods:
    • CardsInStandardSuit(): Returns the number of cards in a standard suit.
    • StandardDeckSize(): Returns the size of a standard deck.
    • SuitsInDeck(): Returns the number of suits in the deck.
    • CreateCard(int suit, int value): Creates a card instance.
    • CreateJokerCard(int suit, int value): Creates a joker card instance.
    • CreateJokerCard(int suit, int value, JokerType type): Creates a joker card instance with a specific type.
    • InitialiseCards(Deck<TCard, TJokerCard> deck, bool includeJokers = false, int jokerQuantity = 2): Initializes the cards in a deck.
    • getDeckType(): Returns the type of the deck.

IDeckFactory Interface

IDeckFactory<TCard, TJokerCard> Interface

  • Provides a common interface for creating card decks.
  • Defines methods for creating standard card decks and joker decks, initializing cards, and providing information about deck sizes.

Deck Class

Deck<TCard, TJokerCard> Class

  • A generic class to represent a card deck.
  • Supports shuffling, dealing, pulling cards, and cutting the deck.
  • Allows custom deck factory implementation.
  • Constructors:
    • Deck(bool includeJokers = false, int jokerQuantity = 2): Creates a deck instance.
    • Deck(IDeckFactory<TCard, TJokerCard> deckFactory, bool includeJokers = false, int jokerQuantity = 2): Creates a deck instance with a custom deck factory.

DeckShuffler Class

DeckShuffler Class

  • A generic deck shuffler that can shuffle an array of objects.
  • Implements the Fisher-Yates shuffle algorithm.

JokerCard Class

JokerCard Class

  • Represents a special joker card that can replace other cards in some games.
  • Inherits from the Card class.
  • Properties:
    • Replacing: The card that the joker replaces.
    • Type: The type of the joker (e.g., Black, Red, White, FullColor).
  • Provides a constructor for creating joker cards.
  • Overrides the GetShortCode method to represent joker cards.

JokerType Enumeration

JokerType Enum

  • Enumerates the possible types of joker cards, including Black, Red, White, and FullColor.

This library is a versatile solution for working with playing cards in various applications, and it provides essential tools for card game development and simulations.

Class Relationships and Dependencies

DeckFactory<TCard, TJokerCard> Class

  • Responsible for creating new instances of card objects.
  • Provides two methods: CreateCard and CreateJokerCard, to create card and joker card instances.
  • Uses generic type parameters TCard and TJokerCard for flexibility in creating different card types.

Deck<TCard, TJokerCard> Class

  • A generic class representing a card deck.
  • Can include joker cards based on the includeJokers parameter and the specified jokerQuantity.
  • Uses the DeckFactory class to create card and joker card instances.
  • Supports operations such as shuffling, dealing, pulling cards from specific indexes, getting the card count, and cutting the deck.
  • Enforces constraints on card index ranges when pulling or cutting the deck.
  • Maintains an array of card objects, with the size determined by the type of cards (TCard).
  • Relies on the DeckShuffler class to shuffle the cards.
  • Relies on the DeckFactory class to create card objects.

Dependencies

  • DeckFactory<TCard, TJokerCard> uses the DeckFactory class to create card objects.
  • Deck<TCard, TJokerCard> uses the DeckFactory class to create card and joker card instances and the DeckShuffler class to shuffle the cards.

Examples of Using the Classes

To use the DeckFactory class, specify the types of cards to create. For a standard deck with jokers:

Deck<Card, JokerCard> deck = new Deck<Card, JokerCard>(true, 2);

Creating Custom Cards

You can also create decks of custom cards. For example, to create a deck of custom cards:

class CustomCard : Card
{
    public CustomCard(cardSuit suit, cardValue value) : base(suit, value)
    {
    }
}

class CustomJokerCard : JokerCard
{
    public CustomJokerCard(cardSuit suit, cardValue value) : base(suit, value)
    {
    }
}

Deck<CustomCard, CustomJokerCard> customDeck = new Deck<CustomCard, CustomJokerCard>(true, 2);

Deck Class - French and US Deck of Cards

The Deck class is a versatile card deck representation that allows for the creation of both French and US decks of cards. The primary distinction between these two types of decks is the presence of Joker cards. The US deck includes two Joker cards, while the French deck does not contain any Joker cards.

French Deck

The French deck consists of the following characteristics:

  • Number of Cards: 52
  • Joker Cards: None
  • Court Cards: King, Queen, Jack
  • Suit Order: Clubs, Diamonds, Hearts, Spades

US Deck

The US deck is an extension of the French deck and features the following attributes:

  • Number of Cards: 54
  • Joker Cards: 2 Jokers
  • Court Cards: King, Queen, Jack, Joker
  • Suit Order: Clubs, Diamonds, Hearts, Spades

Historical Perspective

The US deck is derived from the French deck and was altered in the early 19th century to introduce the Joker card. Originally, the Joker card was used as a wild card in specific card games, but it has now become a standard component of the US deck.

Game Preferences

The choice of deck often reflects the popularity of certain card games in various regions. French decks are favored in regions where games like bridge and whist are prevalent. In contrast, US decks are more common in regions where games like poker and blackjack are popular.

In summary, while the French deck and the US deck share many similarities, the key distinction lies in the inclusion of the Joker card in the US deck, making it suitable for a broader range of card games.

Examples

Here is an example of how to instantiate the Deck class as a French deck and as a US deck of cards:

// Create a new DeckFactory object
IDeckFactory<Card, JokerCard> deckFactory = new CardDeckFactory();

// Create a new French deck of cards
Deck<Card, JokerCard> frenchDeck = new Deck<Card, JokerCard>(deckFactory, includeJokers: false, jokerQuantity: 0);

// Create a new US deck of cards
Deck<Card, JokerCard> usDeck = new Deck<Card, JokerCard>(deckFactory, includeJokers: true, jokerQuantity: 2);

We can still use the frenchDeck and usDeck objects to shuffle the decks, deal cards from the decks, and check the number of cards remaining in the decks, as before.

Here is an example of how to shuffle the French deck and deal a card:

// Shuffle the French deck
await frenchDeck.Shuffle();

// Deal a card from the French deck
Card frenchCard = frenchDeck.DealCard();

Here is an example of how to shuffle the US deck and deal a card:

// Shuffle the US deck
await usDeck.Shuffle();

// Deal a card from the US deck
Card usCard = usDeck.DealCard();

These examples demonstrate the creation and utilization of both French and US decks using the Deck class, showcasing how you can customize decks for different card games.

Class Dependencies, Relationships, Properties, and Methods

In the CardDeck namespace, we have several classes and enums that interact to represent a card deck. These classes are responsible for creating and managing card decks for different card games.

CardDeck

Classes

Card

  • Description: Represents a general playing card.
  • Properties:
    • Suit: The suit of the card.
    • CardValue: The face value of the card.
    • Rank: The ranking of the card in the deck.

DeckFactory<TCard, TJokerCard>

  • Description: Creates instances of Card and JokerCard classes.
  • Methods:
    • CreateCard(int suit, int value): Creates a card of the specified type.
    • CreateJokerCard(int suit, int value): Creates a joker card of the specified type.
    • CreateJokerCard(int suit, int value, JokerType type): Creates a joker card with a specified type.
    • InitialiseCards(Deck<TCard, TJokerCard> deck, bool includeJokers = false, int jokerQuantity = 2): Initializes a deck with cards and jokers.

Deck<TCard, TJokerCard>

  • Description: Represents a generic card deck that can be shuffled and cards dealt from.
  • Properties:
    • StandardDeckSize: The size of a standard deck.
    • CardsInStandardSuit: The number of cards in a standard suit.
  • Methods:
    • Shuffle(): Shuffles the deck.
    • DealCard(): Deals a card from the top of the deck.
    • PullCard(int cardIndex): Pulls a specific card from the deck.
    • CardCount(): Returns the number of cards in the deck.
    • CutDeck(int cutIndex): Cuts the deck at a specified index.

DeckShuffler

  • Description: A generic deck shuffler that can shuffle an array of objects.
  • Methods:
    • Shuffle<T>(T[] array): Shuffles an array of objects.

JokerCard

  • Description: Represents a special card that can replace other cards in some games.
  • Properties:
    • Replacing: The card being replaced.
    • Type: The type of the joker card (Black, Red, White, FullColor)

Enums

CardSuit

  • Description: An enum used to represent the suit of a playing card.
  • Values:
    • Joker
    • Spades
    • Hearts
    • Clubs
    • Diamonds

CardValue

  • Description: An enum used to represent the face value of a playing card.
  • Values:
    • Joker
    • Ace
    • Two
    • Three
    • Four
    • Five
    • Six
    • Seven
    • Eight
    • Nine
    • Ten
    • Jack
    • Queen
    • King

JokerType

  • Description: An enum representing different types of joker cards.
  • Values:
    • Black
    • Red
    • White
    • FullColor

Interfaces

ICard

  • Description: An interface representing a playing card.
  • Properties:
    • Suit: The suit of the card.
    • CardValue: The face value of the card.
    • Rank: The ranking of the card in the deck.

IDeckFactory<TCard, TJokerCard>

  • Description: An interface for creating card decks of various standards using the DeckFactory<TCard, TJokerCard> class.

  • Methods:

    • StandardDeckSize(): Returns the size of a standard deck.
    • CardsInStandardSuit(): Returns the number of cards in a standard suit.
    • SuitsInDeck(): Returns the number of suits in the deck.
    • CreateCard(int suit, int value): Creates a card of the specified type.
    • CreateJokerCard(int suit, int value): Creates a joker card of the specified type.
    • CreateJokerCard(int suit, int value, JokerType type): Creates a joker card with a specified type.
    • InitialiseCards(Deck<TCard, TJokerCard> deck, bool includeJokers = false, int jokerQuantity = 2): Initializes a deck with cards and jokers.

    Relationships

  • Card and JokerCard classes implement the ICard interface.

  • The DeckFactory<TCard, TJokerCard> class creates instances of cards and joker cards.

  • The Deck<TCard, TJokerCard> class uses the DeckShuffler class to shuffle the deck.

  • Various classes interact with Deck<TCard, TJokerCard> for card game functionality.

Dependencies

  • The library depends on the .NET Framework.
  • It utilizes standard C# classes, enums, and interfaces.

These classes and enums are used to represent and interact with card decks in various card games.

US Deck of Playing Cards

The US Deck of playing cards, also known as the Standard American deck, is one of the most widely recognized and used decks of cards in the world. It consists of 52 cards divided into four suits:

  • Hearts
  • Diamonds
  • Clubs
  • Spades

Each suit contains 13 cards: ace, 2-10, and the court cards (king, queen, and jack).

Court Card Ranking

The court cards in a US Deck are ranked as follows:

  1. King
  2. Queen
  3. Jack

The other cards are ranked in numerical order, with the ace being the highest card.

Jokers: A standard US Deck includes two joker cards, which are often used in various card games and for entertainment purposes.

Usage: The US Deck is widely used in North America and other parts of the world for various card games, including poker, bridge, and blackjack. It is also used in magic tricks and other entertainment.

French Deck of Playing Cards

The French Deck of playing cards is a standard deck used in France and many other countries. It is similar to the US Deck but with some differences. The deck consists of 52 cards divided into four suits:

  • Hearts
  • Diamonds
  • Clubs
  • Spades

Each suit contains 13 cards: ace, 2-10, and the court cards (king, queen, and jack).

Court Card Ranking

The court cards in a French Deck are ranked as follows:

  1. King
  2. Queen
  3. Jack

The other cards are ranked in numerical order, with the ace being the highest card.

Jokers: Unlike the US Deck, a standard French Deck does not include joker cards.

Usage: French cards are commonly used in France and many European countries for various card games, including bridge and belote. They are also used in some poker games and for fortune telling.

Differences from US Deck: While the French Deck shares many similarities with the US Deck, the key difference lies in the absence of joker cards in the French Deck.

Here's a table of the different names for French and US cards in English and French:

English French
Ace As
King Roi
Queen Dame
Jack Valet
Hearts Cœurs
Diamonds Carreaux
Clubs Trèfles
Spades Piques

The US Deck and French Deck of playing cards serve as the foundation for a wide range of card games and entertainment across the world.

attribute

<a href="https://www.flaticon.com/free-icons/playing-cards" title="playing cards icons">Playing cards icons created by Freepik - Flaticon</a>

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Innobate.CardDeck:

Package Downloads
Innobate.CardDeck.Factories

CardDeck Factories: A library of versatile deck factory classes for creating and initializing card decks tailored to various card games. Includes factories for Bezique, Euchre, Standard Spanish, Pinochle, Piquet, and Full Spanish decks, providing developers with the tools to easily generate custom card decks for their applications and card games

Innobate.CardDeck.Cards

The CardDeck.Cards.Spanish library is a component of the CardDeck library that allows developers to create custom cards for use with the CardDeck library's Deck class. These custom cards are designed to enable the creation of customized card decks tailored for specific card games or applications. While the provided code is specific to Spanish-suited playing cards, developers can adapt it to create cards for other card types.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.11-alpha 162 11/16/2023
0.0.10-alpha 54 11/15/2023
0.0.9-alpha 51 11/13/2023
0.0.8-alpha 59 11/10/2023
0.0.7-alpha 56 11/7/2023
0.0.6-alpha 51 11/7/2023
0.0.5-alpha 66 11/7/2023
0.0.4-alpha 69 11/6/2023
0.0.3-alpha 69 11/6/2023
0.0.2-alpha 74 11/3/2023
0.0.1-alpha 77 11/1/2023