Putting it all together and testing it.

This commit is contained in:
2021-05-05 09:24:36 -07:00
parent c3244274ce
commit 040459bf9c
13 changed files with 200 additions and 170 deletions

View File

@ -7,9 +7,11 @@
#pragma once #pragma once
#include "../card.h" #include "../card.h"
#include "../../display/render.h"
#include "../../display/spritebatch.h" #include "../../display/spritebatch.h"
#include "../../display/texture.h" #include "../../display/texture.h"
#include "../../display/tileset.h" #include "../../display/tileset.h"
#include "../../display/framebuffer.h"
/** How many cards a player can hold in their hand */ /** How many cards a player can hold in their hand */
#define HOLDEM_PLAYER_HAND 2 #define HOLDEM_PLAYER_HAND 2
@ -23,6 +25,13 @@
/** State for whether or not a player is showing their hand */ /** State for whether or not a player is showing their hand */
#define HOLDEM_STATE_SHOWING 0x02 #define HOLDEM_STATE_SHOWING 0x02
#define HOLDEM_GAME_FRAME_HEIGHT RENDER_STATE.height
#define HOLDEM_GAME_FRAME_LEFT_WIDTH RENDER_STATE.width*0.75
#define HOLDEM_GAME_FRAME_RIGHT_WIDTH (\
RENDER_STATE.width - HOLDEM_GAME_FRAME_LEFT_WIDTH\
)
/** Texas Hold'em Player State */ /** Texas Hold'em Player State */
typedef struct { typedef struct {
/** Cards in the players' hand */ /** Cards in the players' hand */
@ -39,7 +48,7 @@ typedef struct {
uint32_t currentBet; uint32_t currentBet;
} holdemplayer_t; } holdemplayer_t;
/** Representation of a Texas Hold'em Game State */ /** Representation of a Texas Hold'em Match State */
typedef struct { typedef struct {
/** Current Card Deck */ /** Current Card Deck */
card_t deck[CARD_DECK_SIZE]; card_t deck[CARD_DECK_SIZE];
@ -60,10 +69,23 @@ typedef struct {
/** Player States */ /** Player States */
holdemplayer_t players[HOLDEM_PLAYER_COUNT]; holdemplayer_t players[HOLDEM_PLAYER_COUNT];
} holdemgame_t; } holdemmatch_t;
typedef struct { typedef struct {
spritebatch_t *batch; holdemmatch_t match;
primitive_t *cube;
texture_t *texture; texture_t *texture;
tileset_t *tileset;
} holdemrender_t; /** Game Render Frames */
framebuffer_t *frameLeft;
framebuffer_t *frameRight;
primitive_t *quadLeft;
primitive_t *quadRight;
camera_t cameraLeft;
camera_t cameraRight;
} holdemgame_t;
extern holdemgame_t HOLDEM_GAME_STATE;

View File

@ -7,17 +7,17 @@
#include "holdem.h" #include "holdem.h"
void holdemGameInit(holdemgame_t *game) { void holdemMatchInit(holdemmatch_t *match) {
uint8_t i; uint8_t i;
holdemplayer_t *player; holdemplayer_t *player;
// Set Blinds to nil. // Set Blinds to nil.
game->blindBig = 0; match->blindBig = 0;
game->blindSmall = 0; match->blindSmall = 0;
// Reset the players // Reset the players
for(i = 0; i < HOLDEM_PLAYER_COUNT; i++) { for(i = 0; i < HOLDEM_PLAYER_COUNT; i++) {
player = game->players + i; player = match->players + i;
// Set their state to 0 // Set their state to 0
player->state = 0x00; player->state = 0x00;
@ -27,23 +27,23 @@ void holdemGameInit(holdemgame_t *game) {
} }
} }
void holdemRoundInit(holdemgame_t *game) { void holdemRoundInit(holdemmatch_t *match) {
uint8_t i; uint8_t i;
holdemplayer_t *player; holdemplayer_t *player;
// Refill the deck // Refill the deck
cardDeckFill(game->deck); cardDeckFill(match->deck);
game->deckSize = CARD_DECK_SIZE; match->deckSize = CARD_DECK_SIZE;
// Reset the pot // Reset the pot
game->pot = 0; match->pot = 0;
// Reset the cards // Reset the cards
game->cardsFacing = 0; match->cardsFacing = 0;
// Reset the players // Reset the players
for(i = 0; i < HOLDEM_PLAYER_COUNT; i++) { for(i = 0; i < HOLDEM_PLAYER_COUNT; i++) {
player = game->players + i; player = match->players + i;
// Clear Round State(s) // Clear Round State(s)
player->state &= ~( player->state &= ~(
@ -58,112 +58,43 @@ void holdemRoundInit(holdemgame_t *game) {
} }
} }
void holdemDeal(holdemgame_t *game, holdemplayer_t *player) { void holdemDeal(holdemmatch_t *match, holdemplayer_t *player) {
cardDeal(game->deck, player->cards, game->deckSize, player->cardCount); cardDeal(match->deck, player->cards, match->deckSize, player->cardCount);
game->deckSize--; match->deckSize--;
player->cardCount++; player->cardCount++;
} }
void holdemDealAll(holdemgame_t *game, uint8_t count) { void holdemDealAll(holdemmatch_t *match, uint8_t count) {
uint8_t i, j; uint8_t i, j;
for(i = 0; i < count; i++) { for(i = 0; i < count; i++) {
for(j = 0; j < HOLDEM_PLAYER_COUNT; j++) { for(j = 0; j < HOLDEM_PLAYER_COUNT; j++) {
holdemDeal(game, game->players + j); holdemDeal(match, match->players + j);
} }
} }
} }
void holdemFlop(holdemgame_t *game) { void holdemFlop(holdemmatch_t *match) {
if(game->cardsFacing >= HOLDEM_DEALER_HAND) return; if(match->cardsFacing >= HOLDEM_DEALER_HAND) return;
uint8_t i, count; uint8_t i, count;
// Burn the card off the top // Burn the card off the top
game->deckSize -= 1; match->deckSize -= 1;
// Change count depending on facing // Change count depending on facing
count = game->cardsFacing == 0 ? 0x03 : 0x01; count = match->cardsFacing == 0 ? 0x03 : 0x01;
// Deal // Deal
for(i = 0; i < count; i++) { for(i = 0; i < count; i++) {
cardDeal(game->deck, game->cards, game->deckSize, game->cardsFacing); cardDeal(match->deck, match->cards, match->deckSize, match->cardsFacing);
game->deckSize -= 1; match->deckSize -= 1;
game->cardsFacing += 1; match->cardsFacing += 1;
} }
} }
void holdemRenderInit(holdemrender_t *render) { uint32_t holdemBet(holdemmatch_t *match, holdemplayer_t *player, uint32_t amount) {
render->batch = spriteBatchCreate(
CARD_DECK_SIZE + (HOLDEM_PLAYER_COUNT * HOLDEM_PLAYER_HAND)
);
render->texture = assetTextureLoad("cards_normal.png");
render->tileset = tilesetCreate(
CARD_COUNT_PER_SUIT, 6,
render->texture->width, render->texture->height,
0, 0, 0, 0
);
}
void holdemRenderCard(holdemrender_t *render, card_t card, bool faceUp, float x, float y, float z) {
int32_t i;
if(faceUp) {
uint8_t suit = card / CARD_COUNT_PER_SUIT;
uint8_t num = card % CARD_COUNT_PER_SUIT;
i = num + ((
suit == 0 ? 2 :
suit == 1 ? 3 :
suit == 2 ? 1 :
0
) * CARD_COUNT_PER_SUIT);
} else {
i = 4 * render->tileset->columns;
}
tilesetdiv_t *div = render->tileset->divisions + i;
spriteBatchQuad(render->batch, -1,
x, y, z,
3, 4,
div->x0, div->y0, div->x1, div->y1
);
}
void holdemRender(holdemrender_t *render, holdemgame_t *game) {
uint8_t i, j;
holdemplayer_t *player;
shaderUseTexture(GAME_STATE.shaderWorld, render->texture);
// Flush
spriteBatchFlush(render->batch);
// Render Deck
for(i = 0; i < game->deckSize; i++) {
holdemRenderCard(render, game->deck[i], false, 0, 6, i * 0.05f);
}
for(i = 0; i < game->cardsFacing; i++) {
holdemRenderCard(render, game->cards[i], true, 0, -i*1.5, i * 0.05f);
}
// Render each players's hand
for(i = 0; i < HOLDEM_PLAYER_COUNT; i++) {
player = game->players + i;
for(j = 0; j < player->cardCount; j++) {
holdemRenderCard(render, player->cards[j], true,
4*(i+1), -(j * 1), j * 0.05f
);
}
}
// Draw
spriteBatchDraw(render->batch, 0, -1);
}
uint32_t holdemBet(holdemgame_t *game, holdemplayer_t *player, uint32_t amount) {
uint32_t realAmount = mathMin(player->chips, amount); uint32_t realAmount = mathMin(player->chips, amount);
game->pot += realAmount; match->pot += realAmount;
player->chips -= realAmount; player->chips -= realAmount;
return realAmount; return realAmount;
} }

View File

@ -20,7 +20,7 @@
* *
* @param game Game to initialize. * @param game Game to initialize.
*/ */
void holdemGameInit(holdemgame_t *game); void holdemMatchInit(holdemmatch_t *match);
/** /**
* Initializes a Texas Hold'em Round for the first time. Does not affect the * Initializes a Texas Hold'em Round for the first time. Does not affect the
@ -28,7 +28,7 @@ void holdemGameInit(holdemgame_t *game);
* *
* @param game Game's round you want to initialize. * @param game Game's round you want to initialize.
*/ */
void holdemRoundInit(holdemgame_t *game); void holdemRoundInit(holdemmatch_t *match);
/** /**
* Deals a card to the given player, does all the follow up. * Deals a card to the given player, does all the follow up.
@ -36,7 +36,7 @@ void holdemRoundInit(holdemgame_t *game);
* @param game Game who's deck to deal from. * @param game Game who's deck to deal from.
* @param player Player to deal into. * @param player Player to deal into.
*/ */
void holdemDeal(holdemgame_t *game, holdemplayer_t *player); void holdemDeal(holdemmatch_t *match, holdemplayer_t *player);
/** /**
* Deal cards to all players. * Deal cards to all players.
@ -44,35 +44,14 @@ void holdemDeal(holdemgame_t *game, holdemplayer_t *player);
* @param game Game and players to deal around. * @param game Game and players to deal around.
* @param count Count of cards to deal to each player. * @param count Count of cards to deal to each player.
*/ */
void holdemDealAll(holdemgame_t *game, uint8_t count); void holdemDealAll(holdemmatch_t *match, uint8_t count);
/** /**
* Draw the flop, turn or river * Draw the flop, turn or river
* *
* @param game Game to flop/turn/river. * @param game Game to flop/turn/river.
*/ */
void holdemFlop(holdemgame_t *game); void holdemFlop(holdemmatch_t *match);
/**
* Initialize the Texas Hold'em Renderer.
*
* @param render Renderer to init.
*/
void holdemRenderInit(holdemrender_t *render);
/**
* Renders a card.
*
* @param render Renderer to render against
* @param card Card to render.
*/
void holdemRenderCard(holdemrender_t *render, card_t card, bool faceUp, float x, float y, float z);
/**
* Render an entire holdem game.
*/
void holdemRender(holdemrender_t *render, holdemgame_t *game);
/** /**
* Takes the given bet from a player * Takes the given bet from a player
@ -82,4 +61,4 @@ void holdemRender(holdemrender_t *render, holdemgame_t *game);
* @param amount Amount to try and take. * @param amount Amount to try and take.
* @return The real amount that was taken, chips considered. * @return The real amount that was taken, chips considered.
*/ */
uint32_t holdemBet(holdemgame_t *game, holdemplayer_t *player, uint32_t amount); uint32_t holdemBet(holdemmatch_t *match, holdemplayer_t *player, uint32_t amount);

View File

@ -0,0 +1,88 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "holdemgame.h"
holdemgame_t HOLDEM_GAME_STATE;
void holdemGameInit() {
int32_t lWidth, rWidth, height;
// Create the initial frame buffers
lWidth = HOLDEM_GAME_FRAME_LEFT_WIDTH, rWidth = HOLDEM_GAME_FRAME_RIGHT_WIDTH;
height = HOLDEM_GAME_FRAME_HEIGHT;
HOLDEM_GAME_STATE.frameLeft = frameBufferCreate(lWidth, height);
HOLDEM_GAME_STATE.frameRight = frameBufferCreate(rWidth, height);
HOLDEM_GAME_STATE.quadLeft = quadCreate(0, 0, 0, 0, 0, lWidth, height, 1, 1);
HOLDEM_GAME_STATE.quadRight = quadCreate(0, 0, 0, 0, 0, rWidth, height, 1, 1);
//TESTING
HOLDEM_GAME_STATE.cube = cubeCreate(1, 1, 1);
HOLDEM_GAME_STATE.texture = assetTextureLoad("bruh.png");
// Prepare match
holdemMatchInit(&HOLDEM_GAME_STATE.match);
}
void holdemGameUpdate() {
int32_t lWidth, rWidth, height;
// Resize Frame buffers.
lWidth = HOLDEM_GAME_FRAME_LEFT_WIDTH, rWidth = HOLDEM_GAME_FRAME_RIGHT_WIDTH;
height = HOLDEM_GAME_FRAME_HEIGHT;
if(HOLDEM_GAME_STATE.frameLeft->texture->width != lWidth) {
frameBufferDispose(HOLDEM_GAME_STATE.frameLeft);
frameBufferDispose(HOLDEM_GAME_STATE.frameRight);
HOLDEM_GAME_STATE.frameLeft = frameBufferCreate(lWidth, height);
HOLDEM_GAME_STATE.frameRight = frameBufferCreate(rWidth, height);
quadBuffer(HOLDEM_GAME_STATE.quadLeft, 0, 0, 0, 0, 0, lWidth, height, 1, 1, 0, 0);
quadBuffer(HOLDEM_GAME_STATE.quadRight, 0, 0, 0, 0, 0, rWidth, height, 1, 1, 0, 0);
}
// Render things on the left frame buffer
frameBufferUse(HOLDEM_GAME_STATE.frameLeft, true);
cameraPerspective(&HOLDEM_GAME_STATE.cameraLeft, 45,
((float)lWidth/height), 0.25f, 100.0f
);
cameraLookAt(&HOLDEM_GAME_STATE.cameraLeft, 5, 5, 5, 0, 0, 0);
shaderUseCamera(GAME_STATE.shaderWorld, &HOLDEM_GAME_STATE.cameraLeft);
shaderUseTexture(GAME_STATE.shaderWorld, HOLDEM_GAME_STATE.texture);
shaderUsePosition(GAME_STATE.shaderWorld, 0, 0, 0, TIME_STATE.current, TIME_STATE.current, 0);
primitiveDraw(HOLDEM_GAME_STATE.cube, 0, -1);
// Render things on the right frame buffer
frameBufferUse(HOLDEM_GAME_STATE.frameRight, true);
cameraPerspective(&HOLDEM_GAME_STATE.cameraRight, 45,
((float)rWidth/height), 0.25f, 100.0f
);
cameraLookAt(&HOLDEM_GAME_STATE.cameraRight, 2, 0, 2, 0, 0, 0);
shaderUseCamera(GAME_STATE.shaderWorld, &HOLDEM_GAME_STATE.cameraRight);
shaderUseTexture(GAME_STATE.shaderWorld, HOLDEM_GAME_STATE.texture);
shaderUsePosition(GAME_STATE.shaderWorld, 0, 0, 0, TIME_STATE.current, TIME_STATE.current, 0);
primitiveDraw(HOLDEM_GAME_STATE.cube, 0, -1);
// Finally, render the frame buffers to the back buffer.
frameBufferUse(NULL, true);
cameraOrtho(&GAME_STATE.cameraWorld, 0,
RENDER_STATE.width, RENDER_STATE.height, 1, 0, 1
);
cameraLookAt(&GAME_STATE.cameraWorld, 0, 0, 0.5f, 0, 0, 0);
shaderUseCamera(GAME_STATE.shaderWorld, &GAME_STATE.cameraWorld);
// L
shaderUsePosition(GAME_STATE.shaderWorld, 0, 0, 0, 0, 0, 0);
shaderUseTexture(GAME_STATE.shaderWorld, HOLDEM_GAME_STATE.frameLeft->texture);
primitiveDraw(HOLDEM_GAME_STATE.quadLeft, 0, -1);
// R
shaderUsePosition(GAME_STATE.shaderWorld, lWidth, 0, 0, 0, 0, 0);
shaderUseTexture(GAME_STATE.shaderWorld, HOLDEM_GAME_STATE.frameRight->texture);
primitiveDraw(HOLDEM_GAME_STATE.quadRight, 0, -1);
}

View File

@ -0,0 +1,22 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include <dawn/dawn.h>
#include "holdem.h"
#include "../../display/framebuffer.h"
#include "../../display/primitive.h"
#include "../../display/shader.h"
#include "../../display/camera.h"
#include "../../display/primitives/cube.h"
#include "../../display/primitives/quad.h"
#include "../../file/asset.h"
void holdemGameInit();
void holdemGameUpdate();

View File

@ -102,6 +102,8 @@ void primitiveBufferIndices(primitive_t *primitive,
} }
void primitiveDraw(primitive_t *primitive, int32_t start, int32_t count) { void primitiveDraw(primitive_t *primitive, int32_t start, int32_t count) {
if(count == -1) count = primitive->indiceCount;
// Re-Bind the buffers // Re-Bind the buffers
glBindBuffer(GL_ARRAY_BUFFER, primitive->vertexBuffer); glBindBuffer(GL_ARRAY_BUFFER, primitive->vertexBuffer);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, primitive->indexBuffer); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, primitive->indexBuffer);

View File

@ -42,7 +42,7 @@ void primitiveBufferIndices(primitive_t *primitive,
* Draw a primitive. Primitives are drawn by their indices. * Draw a primitive. Primitives are drawn by their indices.
* @param primitive Primitive to draw. * @param primitive Primitive to draw.
* @param start Start indice (index) to draw. * @param start Start indice (index) to draw.
* @param count Count of indices to draw. * @param count Count of indices to draw. Use -1 to draw all.
*/ */
void primitiveDraw(primitive_t *primitive, int32_t start, int32_t count); void primitiveDraw(primitive_t *primitive, int32_t start, int32_t count);

View File

@ -22,7 +22,8 @@ void renderInit() {
} }
void renderFrameStart() { void renderFrameStart() {
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // Clear the frame buffer.
frameBufferUse(NULL, true);
} }
void renderDispose() { void renderDispose() {

View File

@ -5,6 +5,7 @@
#pragma once #pragma once
#include <dawn/dawn.h> #include <dawn/dawn.h>
#include "framebuffer.h"
/** /**
* Initialize the renderer. * Initialize the renderer.

View File

@ -46,6 +46,18 @@ void shaderUseCamera(shader_t *shader, camera_t *camera);
*/ */
void shaderUseTexture(shader_t *shader, texture_t *texture); void shaderUseTexture(shader_t *shader, texture_t *texture);
/**
* Set's the current translation matrix onto the shader for the next
* render to use.
*
* @param shader Shader to attach to.
* @param x X coordinate (world space).
* @param y Y coordinate (world space).
* @param z Z coordinate (world space).
* @param pitch Pitch of the object (local space).
* @param yaw Yaw of the object (local space).
* @param roll Roll of the object (local space).
*/
void shaderUsePosition(shader_t *shader, void shaderUsePosition(shader_t *shader,
float x, float y, float z, float x, float y, float z,
float pitch, float yaw, float roll float pitch, float yaw, float roll

View File

@ -46,15 +46,17 @@ tileset_t * tilesetCreate(
borderX + (tileset->divX * x) + (gapX * x) borderX + (tileset->divX * x) + (gapX * x)
) / width; ) / width;
tileset->divisions[i].x1 = tileset->divisions[i].x0 + tdivX; tileset->divisions[i].x1 = tileset->divisions[i].x0 + tdivX;
// tileset->divisions[i].y0 = (borderY + (divY * y) + (gapY * y)) / height; tileset->divisions[i].y0 = (
// tileset->divisions[i].y1 = tileset->divisions[i].y0 + tdivY;
// Vertically flipped for OpenGL
tileset->divisions[i].y1 = (
borderY + (tileset->divY * y) + (gapY * y) borderY + (tileset->divY * y) + (gapY * y)
) / height; ) / height;
tileset->divisions[i].y0 = tileset->divisions[i].y1 + tdivY; tileset->divisions[i].y1 = tileset->divisions[i].y0 + tdivY;
// Vertically flipped if necessary
// tileset->divisions[i].y1 = (
// borderY + (tileset->divY * y) + (gapY * y)
// ) / height;
// tileset->divisions[i].y0 = tileset->divisions[i].y1 + tdivY;
} }
} }

View File

@ -9,10 +9,6 @@
game_t GAME_STATE; game_t GAME_STATE;
primitive_t *prim;
framebuffer_t *fbo;
texture_t *text;
bool gameInit() { bool gameInit() {
// Init the game // Init the game
GAME_STATE.name = GAME_NAME; GAME_STATE.name = GAME_NAME;
@ -21,18 +17,15 @@ bool gameInit() {
gameTimeInit(); gameTimeInit();
renderInit(); renderInit();
inputInit(); inputInit();
worldInit();
prim = cubeCreate(1, 1, 1);
text = assetTextureLoad("bruh.png");
fbo = frameBufferCreate(128, 128);
// Load the world shader. // Load the world shader.
GAME_STATE.shaderWorld = assetShaderLoad( GAME_STATE.shaderWorld = assetShaderLoad(
"shaders/textured.vert", "shaders/textured.frag" "shaders/textured.vert", "shaders/textured.frag"
); );
// Send to Texas Game
holdemGameInit();
// Init the input manger. // Init the input manger.
return true; return true;
} }
@ -42,27 +35,8 @@ bool gameUpdate(float platformDelta) {
renderFrameStart(); renderFrameStart();
inputUpdate(); inputUpdate();
// Set up the camera and shader. shaderUse(GAME_STATE.shaderWorld);// TODO: remove
shaderUse(GAME_STATE.shaderWorld); holdemGameUpdate();
frameBufferUse(fbo, true);
cameraLookAt(&GAME_STATE.cameraWorld, 2, 2, 2, 0, 0, 0);
cameraPerspective(&GAME_STATE.cameraWorld, 45.0f,
((float)fbo->texture->width) / ((float)fbo->texture->height),
0.5f, 500.0f
);
shaderUseCamera(GAME_STATE.shaderWorld, &GAME_STATE.cameraWorld);
shaderUsePosition(GAME_STATE.shaderWorld, 0, 0, 0, TIME_STATE.current, TIME_STATE.current, 0);
shaderUseTexture(GAME_STATE.shaderWorld, text);
primitiveDraw(prim, 0, prim->indiceCount);
frameBufferUse(NULL, true);
shaderUseTexture(GAME_STATE.shaderWorld, fbo->texture);
cameraPerspective(&GAME_STATE.cameraWorld, 45.0f,
((float)RENDER_STATE.width) / ((float)RENDER_STATE.height),
0.5f, 500.0f
);
shaderUseCamera(GAME_STATE.shaderWorld, &GAME_STATE.cameraWorld);
primitiveDraw(prim, 0, prim->indiceCount);
if(inputIsPressed(INPUT_NULL)) return false; if(inputIsPressed(INPUT_NULL)) return false;
return true; return true;

View File

@ -11,11 +11,7 @@
#include "../display/shader.h" #include "../display/shader.h"
#include "../file/asset.h" #include "../file/asset.h"
#include "../input/input.h" #include "../input/input.h"
#include "../card/poker/holdemgame.h"
#include "../display/primitive.h"
#include "../display/framebuffer.h"
#include "../display/primitives/cube.h"
#include "../display/primitives/quad.h"
/** /**
* Initialize the game context. * Initialize the game context.