API
TexasHoldem
— ModuleTexasHoldem
A no-limit Texas Holdem simulator.
Terminology
game
a single "game", where players are dealt hands, winner(s) are declared once.round
a point or process in the game, includingPreFlop
,Flop
,Turn
,River
.round
the process of each player deciding which actions to take, until no further actions are taking.
Game-level functions
TexasHoldem.move_buttons!
— Functionmove_buttons!(table::Table)
Move the dealer, small blind, big blind, and first-to-act buttons to the next set of players.
This is an internal method.
TexasHoldem.play!
— Functionplay!(game::Game[, sf::StartFrom])
Play a game.
Optionally, users can pass in a StartFrom
option, to start from a game-point, specified by sf
.
TexasHoldem.tournament!
— Functiontournament!(game::Game)
Play until a single player remains!
Chips
TexasHoldem.Chips
— TypeChips(n, frac)
A stack of chips struct. This type is backed by Int
s and performs exact arithmetic operations by using Rational numbers to track remainders (fractions of a chip). frac
is always internally stored as less than 1.
Players can only bet/call with whole chips (n
), and are not allowed to bet/call with a fraction of a chip.
We track the fractions of chips so that we can assert exact money conservation on the table until a player busts, at which point, that money is lost.
Player type and methods
TexasHoldem.AbstractStrategy
— TypeAbstractStrategy
An abstract strategy type, which users can subtype when passing to players.
TexasHoldem.Human
— TypeHuman
A human (terminal input) strategy. Use this strategy if you want to play "live" games, and not for simulating games.
TexasHoldem.Bot5050
— TypeBot5050
Bot5050
is a stochastic strategy that chooses all of its actions based on a coin flip.
This bot is used for quick-start game configurations for users.
TexasHoldem.Player
— TypePlayer
Contains the poker player information:
- strategy
- cards
- bank roll
- pot investment
TODO: some of these fields should be removed, since they're only needed for flow control logic.
TexasHoldem.bank_roll
— Functionbank_roll(::Player)
The player's instantaneous bank roll.
We access the Int
in Chips as the fractional chips are only handled by the TransactionManager.
TexasHoldem.bank_roll_chips
— Functionbank_roll_chips(::Player)
The player's instantaneous bank roll in Chips (includes fractional chips).
TexasHoldem.round_bank_roll
— Functionround_bank_roll(::Player)
The player's bank roll at the beginning of the round
We access the Int
in Chips as the fractional chips are only handled by the TransactionManager.
Player actions
TexasHoldem.Action
— TypeAction
An action type, to be returned by player_option
during each players turn to act. This is an internal type, but documented for user understanding.
Users are expected to return an action from player_option
by calling one of Action
's convenience methods:
TexasHoldem.Check
— FunctionCheck()
The check action, to be returned from player_option
, when a player wants to check.
TexasHoldem.Fold
— FunctionFold()
The fold action, to be returned from player_option
, when a player wants to fold.
TexasHoldem.Call
— FunctionCall(amt::Int)
Call(table::Table, player::Player)
The call action, should be returned from player_option
. when a player wants to call amount amt
.
Use call_amount
to query how much is needed to call.
TexasHoldem.call_amount
— Functioncall_amount(table::Table, player::Player)
Return the amount to call inside player_option
.
TexasHoldem.Raise
— FunctionRaise(amt::Int)
The raise action, should be returned from player_option
. when a player wants to raise to amount amt
.
Use valid_raise_range
to query the valid range that they are allowed to raise.
TexasHoldem.AllIn
— FunctionAllIn(amt::Int)
AllIn(table::Table, player::Player)
The all-in action, should be returned from player_option
. when a player wants to raise all in (to amount amt
).
Users may call this via AllIn(last(valid_raise_range(table, player)))
or use the convenience function AllIn(table, player)
.
See valid_raise_range
for querying the valid range that they are allowed to raise.
TexasHoldem.valid_raise_range
— Functionvalid_raise_range(table::Table, player::Player)
A UnitRange{Int}
of valid raises. Note that sometimes the range's starting and ending values are the same when, for example, all-in is the only available option.
Player options
TexasHoldem.AbstractPlayerOptions
— TypeAbstractPlayerOptions
The option super type.
TexasHoldem.CheckRaiseFold
— TypeCheckRaiseFold
The option when a player is only able to check, raise, or fold.
TexasHoldem.CallRaiseFold
— TypeCallRaiseFold
The option when a player is only able to call, raise, or fold.
TexasHoldem.CallAllInFold
— TypeCallAllInFold
The option when a player is only able to call, raise all-in, or fold.
TexasHoldem.CallFold
— TypeCallFold
The option when a player is only able to call or fold.
TexasHoldem.player_option
— Functionplayer_option(game::Game, player::Player, option::AbstractPlayerOptions)
Returns a valid action (see Action
), given the allowable option. TexasHoldem
calls player_option
for each player on the table during each round. This function is entirely where the strategy logic resides.
Users may overload this method to develop their own poker bots. The option type is one of
Training
There are additional functionalities added for training purposes
TexasHoldem.recreate_game
— Functionrecreate_game(game, player)
Creates an exact (deep)copy of the input game, and then re-samples the unobserved cards (i.e., the opponent cards and unobserved table cards).
This is useful for repeatedly sampling a specific scenario so that we can compute the expected value of a particular action.
TODO: we could make a mutating, in-place version of this to reduce allocations.