More refactoring.

This commit is contained in:
2021-09-18 23:21:18 -07:00
parent 45d06e310d
commit 8543d93c72
5 changed files with 7 additions and 1 deletions

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include <dawn/dawn.h> #include "../libs.h"
/** How many chips each player has by defautl */ /** How many chips each player has by defautl */
#define POKER_BET_PLAYER_CHIPS_DEFAULT 10000 #define POKER_BET_PLAYER_CHIPS_DEFAULT 10000

View File

@ -8,6 +8,7 @@
#pragma once #pragma once
#include "../libs.h" #include "../libs.h"
#include "card.h" #include "card.h"
#include "poker.h"
/** How many cards a player can hold in their hand */ /** How many cards a player can hold in their hand */
#define POKER_PLAYER_HAND 2 #define POKER_PLAYER_HAND 2

View File

@ -7,6 +7,9 @@
#pragma once #pragma once
#include "../libs.h" #include "../libs.h"
#include "bet.h"
#include "dealer.h"
#include "winner.h"
/** How many cards to deal each player during the deal round */ /** How many cards to deal each player during the deal round */
#define POKER_DEAL_CARD_EACH 2 #define POKER_DEAL_CARD_EACH 2

View File

@ -7,6 +7,7 @@
#pragma once #pragma once
#include "../libs.h" #include "../libs.h"
#include "poker.h"
#define POKER_TURN_TYPE_OUT 0x00 #define POKER_TURN_TYPE_OUT 0x00
#define POKER_TURN_TYPE_FOLD 0x01 #define POKER_TURN_TYPE_FOLD 0x01

View File

@ -10,6 +10,7 @@
#include "card.h" #include "card.h"
#include "player.h" #include "player.h"
#include "winner.h" #include "winner.h"
#include "poker.h"
/** Size of the FULL hand used to calculate a winning. */ /** Size of the FULL hand used to calculate a winning. */
#define POKER_WINNING_FULL_SIZE POKER_PLAYER_HAND+POKER_DEALER_HAND_SIZE #define POKER_WINNING_FULL_SIZE POKER_PLAYER_HAND+POKER_DEALER_HAND_SIZE