A server that registers clients and runs a Texas Hold'em game.
The server starts a websocket server at a specified port, waits for clients to connect, and then starts the game.
The server may be run locally or with docker. It also contains basic training bots that may aid in development that can be enabled at runtime via command line arguments.
To run on a local machine a cargo run command can be used. This command also includes 21 training call bots that the server will also initialize.
cargo run --release -- --n-call-bots=21
To install cargo follow the instructions here: https://www.rust-lang.org/tools/install
To start the server in the same way using docker run the following command:
docker run --pull always --rm -it -p 10100:10100 mmmtastymmm/bot-arena:main --n-call-bots=21
- The client has one second from the time the server sends the game state to respond with its action.
- Any language may be used.
- TODO Libraries
- No internet access will be provided so do not call any web API
- The following resources will be provided to each bot
- 2 virtual CPU
- 3 GB of RAM
- Hacking your fellow competitors or the server is frowned upon.
- TODO DEADLINE
- Each participant must submit their own bot for the compilation (there are no teams submissions)
- The submission must be a folder with a top level dockerfile able to build an image. That image will be used to start
a container that will be used to play the game. Below are some example repos to get you started.
- TODO Example Python
- TODO Example Rust
The client and server communicate to each other over websockets using json.
The client has to send 1 of 4 actions to the server to take an action.
- Call:
{"action": "call"}
- Match the current highest bet.
- Fold:
{"action": "fold"}
- Stop playing the hand
- Raise:
{"action": "raise", "amount": 1}
- Raise the current highest bet by some amount. Note the amount is an extra field required here.
- Check:
{"action": "check"}
- Effectively a bet of zero.
Note:
Some edge cases are discussed below:
- An invalid message is considered a fold action.
- Raise values are clamped between the lowest valid raise and the highest value raise.
- If an invalid check occurs (where a call or raise is required), that check action is converted to a fold action.
The server message is a json object that contains the following fields:
-
id (integer):
- Unique identifier for the current player.
-
current_bet (integer):
- The player's current bet amount in the game.
-
cards (array of strings):
- List of cards currently held by the player. Each card is represented by its rank and suit (e.g., "[ 6♣ ]").
-
hand_number (integer):
- The number of the current hand being played.
-
current_highest_bet (integer):
- The highest bet placed in the current hand.
-
flop (array of strings):
- List of the three community cards dealt in the flop stage, with each card represented by its rank and suit. If not revealed yet the list just contains the string
"Hidden"
- List of the three community cards dealt in the flop stage, with each card represented by its rank and suit. If not revealed yet the list just contains the string
-
turn (string):
- The community card dealt in the turn stage, represented by its rank and suit. If not revealed yet it is the string
"Hidden"
.
- The community card dealt in the turn stage, represented by its rank and suit. If not revealed yet it is the string
-
river (string):
- The community card dealt in the river stage, represented by its rank and suit. If not revealed yet it is the string
"Hidden"
.
- The community card dealt in the river stage, represented by its rank and suit. If not revealed yet it is the string
-
dealer_button_index (integer):
- The index (position) of the dealer in the current hand. The next player will be the first to bet.
-
players (array of objects):
- List of players participating in the game. Each player object contains:
- id (integer):
- Unique identifier for the player.
- player_state (object):
- The state of the player, which includes:
- state_type (string):
- The type of state (e.g., "active", "folded").
- details (object):
- Additional details about the state, which can include "bet" (integer) for active players.
- state_type (string):
- The state of the player, which includes:
- total_money (integer):
- The total amount of money the player currently has.
- id (integer):
- List of players participating in the game. Each player object contains:
-
actions (array of strings):
- List of actions taken during the current hand, each described in a string (e.g., "Player 2 took action Call.").
-
previous_actions (array of strings):
- List of actions taken during the previous hand, each described in a string.
Shows code coverage in a pretty way.