From e864502f6acc58aceb53f9436ff2a8a58f45f980 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Mon, 17 May 2021 08:10:29 -0700 Subject: [PATCH] Moved some more code around --- include/dawn/dawn.h | 1 - include/dawn/game/game.h | 4 ---- include/dawn/poker/player.h | 15 ++++++++++++-- include/dawn/poker/poker.h | 39 ------------------------------------- include/dawn/poker/render.h | 11 +++++++++++ src/poker/action/round.c | 4 ++-- src/poker/render/world.c | 2 +- 7 files changed, 27 insertions(+), 49 deletions(-) delete mode 100644 include/dawn/poker/poker.h diff --git a/include/dawn/dawn.h b/include/dawn/dawn.h index 31bce2f7..9fe8499c 100644 --- a/include/dawn/dawn.h +++ b/include/dawn/dawn.h @@ -35,7 +35,6 @@ #include "poker/action.h" #include "poker/card.h" #include "poker/player.h" -#include "poker/poker.h" #include "poker/render.h" // Utility Objects diff --git a/include/dawn/game/game.h b/include/dawn/game/game.h index 244e4a8e..3cb6c366 100644 --- a/include/dawn/game/game.h +++ b/include/dawn/game/game.h @@ -7,7 +7,6 @@ #include "../libs.h" #include "../display/shader.h" #include "../display/camera.h" -#include "../poker/poker.h" #include "../poker/card.h" #include "../poker/player.h" #include "../poker/render.h" @@ -32,9 +31,6 @@ typedef struct { - - - /** Current Card Deck */ card_t deck[CARD_DECK_SIZE]; diff --git a/include/dawn/poker/player.h b/include/dawn/poker/player.h index c85b039f..632541b8 100644 --- a/include/dawn/poker/player.h +++ b/include/dawn/poker/player.h @@ -8,6 +8,9 @@ #pragma once #include "../libs.h" +/** How many cards the dealer can hold in their hand */ +#define HOLDEM_DEALER_HAND 5 + /** How many cards a player can hold in their hand */ #define POKER_PLAYER_HAND 2 @@ -15,10 +18,18 @@ #define POKER_PLAYER_COUNT 5 /** State for whether or not a player has folded */ -#define GAME_STATE_FOLDED 0x01 +#define POKER_PLAYER_STATE_FOLDED 0x01 /** State for whether or not a player is showing their hand */ -#define GAME_STATE_SHOWING 0x02 +#define POKER_PLAYER_STATE_SHOWING 0x02 + +/** Various seats at the table that people can sit */ +#define HOLDEM_GAME_SEAT_DEALER 0x00 +#define HOLDEM_GAME_SEAT_PLAYER0 0x04 +#define HOLDEM_GAME_SEAT_PLAYER1 0x06 +#define HOLDEM_GAME_SEAT_PLAYER2 0x05 +#define HOLDEM_GAME_SEAT_PLAYER3 0x03 +#define HOLDEM_GAME_SEAT_PLAYER4 0x02 /** Poker Player State */ typedef struct { diff --git a/include/dawn/poker/poker.h b/include/dawn/poker/poker.h deleted file mode 100644 index 2480fc96..00000000 --- a/include/dawn/poker/poker.h +++ /dev/null @@ -1,39 +0,0 @@ -/** - * Copyright (c) 2021 Dominic Masters - * - * This software is released under the MIT License. - * https://opensource.org/licenses/MIT - */ - -#pragma once -#include "card.h" -#include "player.h" -#include "render.h" -#include "action.h" -#include "../display/render.h" -#include "../display/spritebatch.h" -#include "../display/texture.h" -#include "../display/tileset.h" -#include "../display/framebuffer.h" - -/** How many cards the dealer can hold in their hand */ -#define HOLDEM_DEALER_HAND 5 - -/** Various seats at the table that people can sit */ -#define HOLDEM_GAME_SEAT_DEALER 0x00 -#define HOLDEM_GAME_SEAT_PLAYER0 0x04 -#define HOLDEM_GAME_SEAT_PLAYER1 0x06 -#define HOLDEM_GAME_SEAT_PLAYER2 0x05 -#define HOLDEM_GAME_SEAT_PLAYER3 0x03 -#define HOLDEM_GAME_SEAT_PLAYER4 0x02 - -/** Macro for the angle (Yaw) that the seat has */ -#define HOLDEM_GAME_SEAT_ANGLE(seat) mathDeg2Rad(-45 * seat) - -#define HOLDEM_GAME_CARD_SLOT_HAND0 0x00 -#define HOLDEM_GAME_CARD_SLOT_HAND1 0x01 -#define HOLDEM_GAME_CARD_SLOT_FLOP0 0x02 -#define HOLDEM_GAME_CARD_SLOT_FLOP1 0x03 -#define HOLDEM_GAME_CARD_SLOT_FLOP2 0x04 -#define HOLDEM_GAME_CARD_SLOT_FLOP3 0x05 -#define HOLDEM_GAME_CARD_SLOT_FLOP4 0x06 \ No newline at end of file diff --git a/include/dawn/poker/render.h b/include/dawn/poker/render.h index 7e5818c0..7d0804dd 100644 --- a/include/dawn/poker/render.h +++ b/include/dawn/poker/render.h @@ -21,6 +21,17 @@ RENDER_STATE.width - HOLDEM_GAME_FRAME_LEFT_WIDTH - 1\ ) +/** Macro for the angle (Yaw) that the seat has */ +#define HOLDEM_GAME_SEAT_ANGLE(seat) mathDeg2Rad(-45 * seat) + +#define HOLDEM_GAME_CARD_SLOT_HAND0 0x00 +#define HOLDEM_GAME_CARD_SLOT_HAND1 0x01 +#define HOLDEM_GAME_CARD_SLOT_FLOP0 0x02 +#define HOLDEM_GAME_CARD_SLOT_FLOP1 0x03 +#define HOLDEM_GAME_CARD_SLOT_FLOP2 0x04 +#define HOLDEM_GAME_CARD_SLOT_FLOP3 0x05 +#define HOLDEM_GAME_CARD_SLOT_FLOP4 0x06 + typedef struct { float x, z; float yaw; diff --git a/src/poker/action/round.c b/src/poker/action/round.c index e7fef9e0..4abe3caa 100644 --- a/src/poker/action/round.c +++ b/src/poker/action/round.c @@ -36,8 +36,8 @@ void actionRoundInit(int32_t index, void *data) { // Clear Round State(s) player->state &= ~( - GAME_STATE_FOLDED | - GAME_STATE_SHOWING + POKER_PLAYER_STATE_FOLDED | + POKER_PLAYER_STATE_SHOWING ); player->cardCount = 0; diff --git a/src/poker/render/world.c b/src/poker/render/world.c index a461fbda..3d3cdd19 100644 --- a/src/poker/render/world.c +++ b/src/poker/render/world.c @@ -42,7 +42,7 @@ void holdemRenderWorld() { seat = holdemRenderPlayerGetSeatForPlayer(i); holdemRenderPlayer(seat); - if(player->state & GAME_STATE_FOLDED) continue; + if(player->state & POKER_PLAYER_STATE_SHOWING) continue; for(j = 0x00; j < player->cardCount; j++) { holdemRenderCardForSeat(seat, player->cards[j], HOLDEM_GAME_CARD_SLOT_HAND0+j);