poCker
Loading...
Searching...
No Matches
playingcard.h
Go to the documentation of this file.
1#ifndef PLAYINGCARD_H
2#define PLAYINGCARD_H
3
4#include <string.h>
5
12#define PIPS_PER_SUIT 13
14#define SUITS_COUNT 4
16#define DECK_LENGTH (4 * 13)
18#define CARDNAME_MAX_LENGTH (5 + 4 + 8 + 1)
20#define CARDS_PER_PLAYER 2
22#define COMM_CARDS_COUNT 5
23
25enum Suit {
26 HEARTS,
27 DIAMONDS,
28 CLUBS,
29 SPADES
30};
31
36enum Pip {
37 TWO = 1,
38 THREE,
39 FOUR,
40 FIVE,
41 SIX,
42 SEVEN,
43 EIGHT,
44 NINE,
45 TEN,
46 JACK,
47 QUEEN,
48 KING,
49 ACE
50};
51
53typedef struct {
55 enum Suit suit;
57 enum Pip pips;
59
60const char* getPipName(enum Pip);
61const char* getSuitName(enum Suit);
62void getCardName(PlayingCard*, char*, int);
63
64#endif //PLAYINGCARD_H
const char * getSuitName(enum Suit)
Returns a string literal containing the name of the given Suit enumerator.
Definition playingcard.c:35
Pip
Represents the amount of symbols on a card and more importantly, its value amongst other cards.
Definition playingcard.h:36
void getCardName(PlayingCard *, char *, int)
Populates a char array with the card's name.
Definition playingcard.c:53
const char * getPipName(enum Pip)
Returns a string literal containing the name of the given Pip enumerator.
Definition playingcard.c:11
Suit
Represents a symbol in a card deck.
Definition playingcard.h:25
Represents a single playing card.
Definition playingcard.h:53
enum Suit suit
The card's symbol.
Definition playingcard.h:55
enum Pip pips
The amount of symbols on a card.
Definition playingcard.h:57