poCker
Loading...
Searching...
No Matches
gamerules.h File Reference

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.

Classes

struct  GameRuleSet
 Represents a set of customizable rules of the poker game. More...
 

Macros

#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.
 

Functions

void promptAIPlayersCount (GameRuleSet *)
 Prompts the user for how many of the players will be AI controlled.
 
void promptBigBlind (GameRuleSet *)
 Prompts the user to set the big blind amount. This also sets the small amount to be the half of the entered amount.
 
void promptFundsPerPlayer (GameRuleSet *)
 Prompts the user for the initial funds per player.
 
void promptLimitFixed (GameRuleSet *)
 Prompts the user to make the game fixed-limit or no-limit.
 
void promptPlayerCount (GameRuleSet *)
 Prompts the user for the total amount of all players.
 

Detailed Description

Contains the GameRuleSet struct and functions related to its initialization through console prompts.

Function Documentation

◆ promptAIPlayersCount()

void promptAIPlayersCount ( GameRuleSet * grs)

Prompts the user for how many of the players will be AI controlled.

Parameters
grsThe GameRuleSet struct to modify.
Warning
Call the promptPlayerCount function before this!

◆ promptBigBlind()

void promptBigBlind ( GameRuleSet * grs)

Prompts the user to set the big blind amount. This also sets the small amount to be the half of the entered amount.

Parameters
grsThe GameRuleSet struct to modify.
Warning
This needs to be called before setting the funds_per_player!

◆ promptFundsPerPlayer()

void promptFundsPerPlayer ( GameRuleSet * grs)

Prompts the user for the initial funds per player.

Parameters
grsThe GameRuleSet struct to modify.

◆ promptLimitFixed()

void promptLimitFixed ( GameRuleSet * grs)

Prompts the user to make the game fixed-limit or no-limit.

Parameters
grsThe GameRuleSet struct to modify.

◆ promptPlayerCount()

void promptPlayerCount ( GameRuleSet * grs)

Prompts the user for the total amount of all players.

Parameters
grsThe GameRuleSet struct to modify.