15#define PLAYER_DECISION_LENGTH 16
17#define clearScreen() (system("@cls||clear"))
Contains the GameRuleSet struct and functions related to its initialization through console prompts.
Contains the logic of a poker game in a form of DI'able functions. See their arrangement and implemen...
Contains a Player struct and related functions.
int recognizeDecision(char *)
Recognizes one of the predetermined string literals in the input parameter and returns it as the corr...
Definition playerio.c:81
void printTitleScreen()
Prints the title screen. Duh.
Definition playerio.c:198
void printRaisesPotBet(const GameRuleSet *, const GameState *)
Prints the intermediary header which shows the raises left, current pot and bet.
Definition playerio.c:306
void promptNull(char *)
Prompts the user to simply click any button to continue execution.
Definition playerio.c:66
void printCards(const Player *, const PlayingCard *[], const int)
Prints the second table showing revealed community cards and current player's hole cards.
Definition playerio.c:328
int promptInt(int, char *)
Prompts the user with a message for a positive integer or zero value.
Definition playerio.c:23
void printShowdownResults(const GameState *, const Player *[], const int[], const int)
Prints a table showing Players with the strongest hand at the end of a single game.
Definition playerio.c:381
bool promptBool(char *)
Prompts the user with a message for a boolean value.
Definition playerio.c:43
void printHeader(const GameState *)
Prints the UI header which includes the current round and amount of turns left in it.
Definition playerio.c:217
bool checkPlayerDecisionValidity(const Player *, const GameState *, const GameRuleSet *, int)
Checks that the player is allowed to do their action. Calls messages.h with appropriate message to no...
Definition playerio.c:137
void printPlayers(const GameRuleSet *, const GameState *, const Player *[])
Prints the table showing information about all the players, including their funds,...
Definition playerio.c:227
Represents a set of customizable rules of the poker game.
Definition gamerules.h:29
Represents the current state of a poker game.
Definition gamestate.h:19
Represents a single player.
Definition player.h:17
Represents a single playing card.
Definition playingcard.h:53