poCker
Loading...
Searching...
No Matches
gamerules.h
Go to the documentation of this file.
1#ifndef GAMERULES_H
2#define GAMERULES_H
3
4#include <stdbool.h>
5
12#define MAX_BETS_PER_ROUND 3
14#define MAX_ROUNDS_PER_GAME 4
16#define MIN_PLAYER_COUNT 3
18#define MAX_PLAYER_COUNT 12
20#define MIN_FUNDS_PER_PLAYER 100
22#define MAX_FUNDS_PER_PLAYER 10000
23
56
62
63#endif // GAMERULES_H
void promptAIPlayersCount(GameRuleSet *)
Prompts the user for how many of the players will be AI controlled.
Definition gamerules.c:13
void promptPlayerCount(GameRuleSet *)
Prompts the user for the total amount of all players.
Definition gamerules.c:81
void promptBigBlind(GameRuleSet *)
Prompts the user to set the big blind amount. This also sets the small amount to be the half of the e...
Definition gamerules.c:34
void promptLimitFixed(GameRuleSet *)
Prompts the user to make the game fixed-limit or no-limit.
Definition gamerules.c:70
void promptFundsPerPlayer(GameRuleSet *)
Prompts the user for the initial funds per player.
Definition gamerules.c:50
Represents a set of customizable rules of the poker game.
Definition gamerules.h:29
int ai_player_count
Amount of players that are controlled by AI. The rest is controlled through human prompts.
Definition gamerules.h:31
int small_blind
Small blind bet amount. It's automatically set to be big blind divided by two and rounded down.
Definition gamerules.h:54
int funds_per_player
The amount of funds each Player will start out with.
Definition gamerules.h:41
int player_count
Amount of all players, AI and humans included.
Definition gamerules.h:52
int big_blind
Big blind bet amount.
Definition gamerules.h:39
bool limit_fixed
Whether or not the bets will be fixed.
Definition gamerules.h:50