poCker
Loading...
Searching...
No Matches
player.h
Go to the documentation of this file.
1#ifndef PLAYER_H
2#define PLAYER_H
3
4#include <stdbool.h>
5#include "playingcard.h"
6#include "gamerules.h"
7
14#define SCORE_TABLE_SIZE 10
15
17typedef struct {
21 bool folded;
23 int funds;
25 bool isHuman;
27 int past_decisions[MAX_ROUNDS_PER_GAME * (MAX_BETS_PER_ROUND + 1)];
33 int scores[SCORE_TABLE_SIZE];
37 unsigned int tappedout_funds;
38} Player;
39
42void resetScores(Player*);
43
44#endif // PLAYER_H
Contains the GameRuleSet struct and functions related to its initialization through console prompts.
#define MAX_ROUNDS_PER_GAME
Maximum amount of betting rounds until a showdown is performed.
Definition gamerules.h:14
#define MAX_BETS_PER_ROUND
Maximum amount of raises per a single betting round.
Definition gamerules.h:12
Player * playerCreateNew()
Creates a new Player struct.
Definition player.c:9
void resetScores(Player *)
Resets player's scores to an array of zeros.
Definition player.c:42
Player * playerCreateNewWithFunds(int)
Creates a new Player struct instance and sets its funds value.
Definition player.c:30
#define SCORE_TABLE_SIZE
Defines the size of the scores array.
Definition player.h:14
Contains functions, constants and structs related to PlayingCards.
#define CARDS_PER_PLAYER
The amount of hole cards per Player.
Definition playingcard.h:20
Represents a single player.
Definition player.h:17
int funds
Player's current amount of funds. If this number reaches 0, the player looses.
Definition player.h:23
int past_decisions_size
Current size of the past_decisions array.
Definition player.h:31
bool isHuman
Whether or not this Player is controlled through AI or by human.
Definition player.h:25
unsigned int tappedout_funds
The amount of funds the pot held at the time of this Player tappingout. If they win the showdown,...
Definition player.h:37
bool tappedout
Tells if this player has tapped out in the current round.
Definition player.h:35
bool folded
Tells if this player has already folded their cards in the current round.
Definition player.h:21
Represents a single playing card.
Definition playingcard.h:53