poCker
Loading...
Searching...
No Matches
gamestate.h
Go to the documentation of this file.
1#ifndef GAMESTATE_H
2#define GAMESTATE_H
3
4#include <stdbool.h>
5#include "gamerules.h"
6#include "player.h"
7#include "playingcard.h"
8
43
46void gsAdvancePlayerTurn(GameState*, Player*[], const GameRuleSet*, const int*);
48int gsDetermineWinners(int[], const GameRuleSet*, const GameState*, const Player*[], const PlayingCard*[]);
49void gsAwardPot(GameState*, Player*[], const int[], const int);
53
54#endif // GAMESTATE_H
Contains the GameRuleSet struct and functions related to its initialization through console prompts.
bool gsCheckGameOverCondition(Player *[], const GameRuleSet *)
Checks if everyone but one player has any funds left.
Definition gamestate.c:291
void gsAwardPot(GameState *, Player *[], const int[], const int)
Determines the winner(s) and pays them their winnings from the pot.
Definition gamestate.c:234
void gsAdvancePlayerTurn(GameState *, Player *[], const GameRuleSet *, const int *)
Advances the player's turn by allowing them to take action and applying any changes causes by the cho...
Definition gamestate.c:71
int gsDetermineWinners(int[], const GameRuleSet *, const GameState *, const Player *[], const PlayingCard *[])
Determines the winner(s) and populates the winners array with their indexes.
Definition gamestate.c:197
void gsConcludeSingleGame(GameState *)
Prepares the GameState struct for a fresh game while preserving dealer button positions.
Definition gamestate.c:323
void gsSetUpBettingRound(GameState *, Player *[], const GameRuleSet *)
Sets the members of a GameState struct according to its current betting_round value.
Definition gamestate.c:41
GameState * gsCreateNew(const GameRuleSet *)
Creates a new, clean and unconfigured GameState struct.
Definition gamestate.c:19
void gsPassDealerButton(GameState *, const GameRuleSet *)
Pass the dealer button to the next player. Done once after each full round. This also causes the blin...
Definition gamestate.c:311
void gsConcludeBettingRound(GameState *)
Sets the amount of revealed community cards and increments the betting_round value of the passed Game...
Definition gamestate.c:169
Contains a Player struct and related functions.
Contains functions, constants and structs related to PlayingCards.
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
int s_blind_player
Index of the Player with "small blind" status.
Definition gamestate.h:39
int revealed_comm_cards
Amount of community cards which are "face-up" meaning visible to players.
Definition gamestate.h:37
bool all_but_one_folded
Boolean to indicate if all but one player have folded their cards - this indicates an auto-win for th...
Definition gamestate.h:21
int turns_left
How many turns are left until the current betting round ends.
Definition gamestate.h:41
int dealer_player
Index of the Player with dealer's button.
Definition gamestate.h:31
unsigned int bet
Amount of the current bet.
Definition gamestate.h:25
int current_player
Index of the Player who is currently deciding what action to take.
Definition gamestate.h:29
int b_blind_player
Index of the Player with "big blind" status.
Definition gamestate.h:23
int betting_round
Number of the betting round. There are 4 rounds: pre-flop, flop, turn and river.
Definition gamestate.h:27
int raises_performed
How many raises have been called by all players in the current betting round.
Definition gamestate.h:35
unsigned int pot
Amount currently in the pot.
Definition gamestate.h:33
Represents a single player.
Definition player.h:17
Represents a single playing card.
Definition playingcard.h:53