Contains the GameRuleSet struct and functions related to its initialization through console prompts.
More...
#include <stdbool.h>
Go to the source code of this file.
|
#define | MAX_BETS_PER_ROUND 3 |
| Maximum amount of raises per a single betting round.
|
|
#define | MAX_ROUNDS_PER_GAME 4 |
| Maximum amount of betting rounds until a showdown is performed.
|
|
#define | MIN_PLAYER_COUNT 3 |
| Minimum amount of Players.
|
|
#define | MAX_PLAYER_COUNT 12 |
| Maximum amount of Players.
|
|
#define | MIN_FUNDS_PER_PLAYER 100 |
| Minimum amount of starting funds for each Player.
|
|
#define | MAX_FUNDS_PER_PLAYER 10000 |
| Maximum amount of starting funds for each Player. Increasing this might displace some elements of the in-game UI.
|
|
Contains the GameRuleSet struct and functions related to its initialization through console prompts.
◆ promptAIPlayersCount()
Prompts the user for how many of the players will be AI controlled.
- Parameters
-
- Warning
- Call the promptPlayerCount function before this!
◆ promptBigBlind()
Prompts the user to set the big blind amount. This also sets the small amount to be the half of the entered amount.
- Parameters
-
- Warning
- This needs to be called before setting the funds_per_player!
◆ promptFundsPerPlayer()
Prompts the user for the initial funds per player.
- Parameters
-
◆ promptLimitFixed()
Prompts the user to make the game fixed-limit or no-limit.
- Parameters
-
◆ promptPlayerCount()
Prompts the user for the total amount of all players.
- Parameters
-