poCker
|
Contains functions, constants and structs related to PlayingCards. More...
#include <string.h>
Go to the source code of this file.
Classes | |
struct | PlayingCard |
Represents a single playing card. More... | |
Macros | |
#define | PIPS_PER_SUIT 13 |
Amount of different value cards under the same card symbol. | |
#define | SUITS_COUNT 4 |
Amount of different symbols in a single deck. | |
#define | DECK_LENGTH (4 * 13) |
Amount of cards in a single deck. | |
#define | CARDNAME_MAX_LENGTH (5 + 4 + 8 + 1) |
Longest name of a single PlayingCard. Meant for char arrays that might hold them. | |
#define | CARDS_PER_PLAYER 2 |
The amount of hole cards per Player. | |
#define | COMM_CARDS_COUNT 5 |
The amount of community cards the dealer will place. | |
Enumerations | |
enum | Suit { HEARTS , DIAMONDS , CLUBS , SPADES } |
Represents a symbol in a card deck. | |
enum | Pip { TWO = 1 , THREE , FOUR , FIVE , SIX , SEVEN , EIGHT , NINE , TEN , JACK , QUEEN , KING , ACE } |
Represents the amount of symbols on a card and more importantly, its value amongst other cards. More... | |
Functions | |
const char * | getPipName (enum Pip) |
Returns a string literal containing the name of the given Pip enumerator. | |
const char * | getSuitName (enum Suit) |
Returns a string literal containing the name of the given Suit enumerator. | |
void | getCardName (PlayingCard *, char *, int) |
Populates a char array with the card's name. | |
Contains functions, constants and structs related to PlayingCards.
enum Pip |
Represents the amount of symbols on a card and more importantly, its value amongst other cards.
void getCardName | ( | PlayingCard * | card, |
char * | buffer, | ||
int | buffer_size ) |
Populates a char array with the card's name.
card | Pointer to a card to read. |
buffer | The char array to fill. |
buffer_size | The length of the buffer array. |
The buffer will be filled with the card's name in a format of "Pips of Suit". For example "Ace of Spades".
const char * getPipName | ( | enum Pip | pips | ) |
Returns a string literal containing the name of the given Pip enumerator.
pips | Pip enumerator to get the name of. |
const char * getSuitName | ( | enum Suit | suit | ) |
Returns a string literal containing the name of the given Suit enumerator.
suit | Suit enumerator to get the name of. |