Refactoring structs Part 1

This commit is contained in:
2021-05-20 22:20:52 -07:00
parent c19f7c1083
commit 5ae1f1c0d4
56 changed files with 484 additions and 422 deletions

View File

@ -7,6 +7,10 @@
#include "libs.h" #include "libs.h"
// Display / Rendering // Display / Rendering
#include "display/debug/grid.h"
#include "display/gui/font.h"
#include "display/camera.h" #include "display/camera.h"
#include "display/framebuffer.h" #include "display/framebuffer.h"
#include "display/primitive.h" #include "display/primitive.h"
@ -16,26 +20,26 @@
#include "display/texture.h" #include "display/texture.h"
#include "display/tileset.h" #include "display/tileset.h"
#include "display/debug/grid.h" // Game Engine
#include "display/debug/position.h" #include "engine/engine.h"
#include "display/gui/font.h" // Time Management
#include "epoch/epoch.h"
// File / Asset Management // File / Asset Management
#include "file/asset.h" #include "file/asset.h"
// Game Logic / Game Time Management // Game Logic
#include "game/game.h" #include "game/game.h"
#include "game/gametime.h"
// Player Input // Player Input
#include "input/input.h" #include "input/input.h"
// Poker Game Logic // Poker Game Logic
#include "poker/action.h"
#include "poker/card.h" #include "poker/card.h"
#include "poker/chip.h" #include "poker/chip.h"
#include "poker/player.h" #include "poker/player.h"
#include "poker/poker.h"
#include "poker/render.h" #include "poker/render.h"
// Utility Objects // Utility Objects

View File

@ -1,27 +0,0 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "../../libs.h"
#include "../primitive.h"
#include "../texture.h"
#include "../tileset.h"
#define POSITION_DEBUG_FONT_CHARS_MAX 256
/** Struct representing a positionable object in space */
typedef struct {
primitive_t *primitive;
spritebatch_t *textBatch;
texture_t *textTexture;
tileset_t *textTileset;
float x, y, z;
float pitch, yaw, roll;
float scaleX, scaleY, scaleZ;
} positiondebug_t;

View File

@ -12,5 +12,5 @@
typedef struct { typedef struct {
GLuint fboId; GLuint fboId;
GLuint rboId; GLuint rboId;
texture_t *texture; texture_t texture;
} framebuffer_t; } framebuffer_t;

View File

@ -13,7 +13,4 @@
typedef struct { typedef struct {
/** Resolution (in pixels) */ /** Resolution (in pixels) */
int32_t width, height; int32_t width, height;
} render_t; } render_t;
/** Current render state */
extern render_t RENDER_STATE;

View File

@ -17,5 +17,5 @@ typedef struct {
int32_t currentSprite; int32_t currentSprite;
/** Internal primitive */ /** Internal primitive */
primitive_t *primitive; primitive_t primitive;
} spritebatch_t; } spritebatch_t;

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 "../display/render.h"
#include "../input/input.h"
#include "../epoch/epoch.h"
typedef struct {
/** Time Manager for the game */
epoch_t time;
/** Render Manager for the game */
render_t render;
/** Input Manager for the game */
input_t input;
} engine_t;

View File

@ -7,9 +7,8 @@
#pragma once #pragma once
#define GAMETIME_FIXED_STEP 0.016 #define EPOCH_FIXED_STEP 0.016
#define GAMETIME_SMALLEST_STEP 0.001 #define EPOCH_SMALLEST_STEP 0.001
typedef struct { typedef struct {
/** /**
@ -39,6 +38,4 @@ typedef struct {
* Fixed timestep that is not affected by framerate but remains consistent. * Fixed timestep that is not affected by framerate but remains consistent.
*/ */
float fixedDelta; float fixedDelta;
} gametime_t; } epoch_t;
extern gametime_t TIME_STATE;

View File

@ -5,72 +5,22 @@
#pragma once #pragma once
#include "../libs.h" #include "../libs.h"
#include "../display/shader.h" #include "../engine/engine.h"
#include "../display/camera.h" #include "../poker/poker.h"
#include "../poker/card.h"
#include "../poker/player.h"
#include "../poker/render.h"
#include "../poker/action.h"
#include "../display/render.h"
#include "../display/spritebatch.h"
#include "../display/texture.h"
#include "../display/tileset.h"
#include "../display/framebuffer.h"
/** Name of the current game */ /** Name of the current game */
#define GAME_NAME "Dawn" #define GAME_NAME "Dawn"
/** Describes the current game */ /** Describes the current game */
typedef struct { typedef struct {
char *name; char *name;
/** Current Card Deck */
card_t deck[CARD_DECK_SIZE];
uint8_t deckSize;
/** Dealer Money */ /** Engine for the game */
uint32_t blindSmall; engine_t engine;
uint32_t blindBig;
uint32_t pot;
/** Dealer Hand */ /** Poker Game State */
card_t cards[HOLDEM_DEALER_HAND]; poker_t poker;
uint8_t cardsFacing;
/** Player States */
pokerplayer_t players[POKER_PLAYER_COUNT];
/** Action Queue */
pokeraction_t actionQueue[POKER_ACTION_QUEUE_SIZE];
void *actionData[POKER_ACTION_DATA_SIZE*POKER_ACTION_QUEUE_SIZE];
bool actionInitState[POKER_ACTION_DATA_SIZE];
/** Rendering Assets */
texture_t *kagamiTexture;
tileset_t *kagamiTileset;
primitive_t *kagamiQuad;
primitive_t *chipPrimitive;
texture_t *chipTexture;
primitive_t *tablePrimitive;
texture_t *tableTexture;
texture_t *cardTexture;
tileset_t *cardTileset;
primitive_t *cardPrimitive;
texture_t *fontTexture;
tileset_t *fontTileset;
spritebatch_t *fontBatch;
shader_t *shaderWorld;
framebuffer_t *frameLeft;
framebuffer_t *frameRight;
primitive_t *quadLeft;
primitive_t *quadRight;
camera_t cameraMain;
camera_t cameraLeft;
camera_t cameraRight;
} game_t; } game_t;
/** The current running game state. */ /** The current running game state. */

View File

@ -7,7 +7,6 @@
#include "../libs.h" #include "../libs.h"
#include "../util/list.h" #include "../util/list.h"
/** Debug Inputs */ /** Debug Inputs */
#define INPUT_NULL (inputbind_t)0x00 #define INPUT_NULL (inputbind_t)0x00
#define INPUT_DEBUG_UP (inputbind_t)0x01 #define INPUT_DEBUG_UP (inputbind_t)0x01
@ -75,7 +74,4 @@ typedef struct {
/** Float of the GameTime that the input was actuated last. */ /** Float of the GameTime that the input was actuated last. */
float times[INPUT_BIND_COUNT]; float times[INPUT_BIND_COUNT];
} input_t; } input_t;
/** The current input state */
extern input_t INPUT_STATE;

View File

@ -1,25 +0,0 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "../libs.h"
/** How many actions the queue can hold */
#define POKER_ACTION_QUEUE_SIZE 12
/** How much data (in length of sizeof size_t) each action has available */
#define POKER_ACTION_DATA_SIZE 256
/** Callback for actions to use */
typedef void (*pokerActionCallback)(int32_t index, void *data);
/** Poker Game action that can be queued and executed */
typedef struct {
pokerActionCallback init;
pokerActionCallback update;
pokerActionCallback dispose;
} pokeraction_t;

View File

@ -7,9 +7,7 @@
#pragma once #pragma once
#include "../libs.h" #include "../libs.h"
#include "card.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 */ /** How many cards a player can hold in their hand */
#define POKER_PLAYER_HAND 2 #define POKER_PLAYER_HAND 2

View File

@ -0,0 +1,84 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "../libs.h"
#include "player.h"
#include "card.h"
#include "../display/tileset.h"
#include "../display/primitive.h"
#include "../display/texture.h"
#include "../display/shader.h"
#include "../display/camera.h"
#include "../display/spritebatch.h"
/** Rounds that the game can be in */
#define POKER_ROUND_DEAL 0x00
#define POKER_ROUND_BLINDS 0x01
#define POKER_ROUND_BET0 0x02
#define POKER_ROUND_FLOP 0X03
#define POKER_ROUND_BET1 0x04
#define POKER_ROUND_TURN 0x05
#define POKER_ROUND_BET2 0x06
#define POKER_ROUND_RIVER 0x07
#define POKER_ROUND_BET3 0x08
#define POKER_ROUND_WINNER 0x09
/** How many cards the dealer can hold in their hand */
#define POKER_DEALER_HAND 5
typedef struct {
/** Current Card Deck */
card_t deck[CARD_DECK_SIZE];
uint8_t deckSize;
/** Dealer Money */
uint32_t blindSmall;
uint32_t blindBig;
/** Dealer Hand */
card_t cards[POKER_DEALER_HAND];
uint8_t cardsFacing;
/** Player States */
pokerplayer_t players[POKER_PLAYER_COUNT];
/** Game State */
uint8_t round;
uint8_t roundPlayer;
uint8_t roundDealer;
uint32_t pot;
uint32_t roundBet;
/** Rendering Assets */
texture_t *kagamiTexture;
tileset_t *kagamiTileset;
primitive_t *kagamiQuad;
primitive_t *chipPrimitive;
texture_t *chipTexture;
primitive_t *tablePrimitive;
texture_t *tableTexture;
texture_t *cardTexture;
tileset_t *cardTileset;
primitive_t *cardPrimitive;
texture_t *fontTexture;
tileset_t *fontTileset;
spritebatch_t *fontBatch;
shader_t *shaderWorld;
framebuffer_t *frameLeft;
framebuffer_t *frameRight;
primitive_t *quadLeft;
primitive_t *quadRight;
camera_t cameraMain;
camera_t cameraLeft;
camera_t cameraRight;
} poker_t;

View File

@ -1,23 +0,0 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "log.h"
list_t *logBuffer;
void logInit() {
logBuffer = listCreate();
}
void logText(char *string) {
// Clone the string
int32_t len = strlen(string);
char *newString = malloc(sizeof(char) * (len+1));
memcpy(newString, string, len+1);
listAdd(logBuffer, newString);
printf("%s\n", newString);
}

View File

@ -1,20 +0,0 @@
/**
* 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 "../util/list.h"
/** Primary Log Buffer. */
extern list_t *logBuffer;
/**
* Writes a string to the log buffer.
*
* @param string String to log.
*/
void logText(char *string);

View File

@ -7,26 +7,19 @@
#include "framebuffer.h" #include "framebuffer.h"
framebuffer_t * frameBufferCreate(int32_t w, int32_t h) { void frameBufferInit(framebuffer_t *fb, int32_t w, int32_t h) {
framebuffer_t *fb = malloc(sizeof(framebuffer_t));
if(fb == NULL) return NULL;
// At least one pixel // At least one pixel
if(w <= 0) w = 1; if(w <= 0) w = 1;
if(h <= 0) h = 1; if(h <= 0) h = 1;
// Create Color Attachment texture. // Create Color Attachment texture.
fb->texture = textureCreate(w, h, NULL); textureInit(&fb->texture, w, h, NULL);
if(fb->texture == NULL) {
free(fb);
return NULL;
}
// Create Frame Buffer // Create Frame Buffer
glGenFramebuffers(1, &fb->fboId); glGenFramebuffers(1, &fb->fboId);
glBindFramebuffer(GL_FRAMEBUFFER, fb->fboId); glBindFramebuffer(GL_FRAMEBUFFER, fb->fboId);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
GL_TEXTURE_2D, fb->texture->id, 0 GL_TEXTURE_2D, fb->texture.id, 0
); );
// Render Buffer // Render Buffer
@ -44,18 +37,20 @@ framebuffer_t * frameBufferCreate(int32_t w, int32_t h) {
} }
glBindFramebuffer(GL_FRAMEBUFFER, 0); glBindFramebuffer(GL_FRAMEBUFFER, 0);
return fb;
} }
void frameBufferUse(framebuffer_t *frameBuffer, bool clear) { void frameBufferUse(framebuffer_t *frameBuffer, bool clear) {
if(frameBuffer == NULL) { glBindFramebuffer(GL_FRAMEBUFFER, frameBuffer->fboId);
glBindFramebuffer(GL_FRAMEBUFFER, 0); glViewport(0, 0, frameBuffer->texture.width, frameBuffer->texture.height);
glViewport(0, 0, RENDER_STATE.width, RENDER_STATE.height);
} else { if(clear) {
glBindFramebuffer(GL_FRAMEBUFFER, frameBuffer->fboId); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glViewport(0, 0, frameBuffer->texture->width, frameBuffer->texture->height);
} }
}
void frameBufferUnbind(render_t *render, bool clear) {
glBindFramebuffer(GL_FRAMEBUFFER, 0);
glViewport(0, 0, render->width, render->height);
if(clear) { if(clear) {
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
@ -67,6 +62,6 @@ void frameBufferDispose(framebuffer_t *frameBuffer) {
glBindRenderbuffer(GL_RENDERBUFFER, 0); glBindRenderbuffer(GL_RENDERBUFFER, 0);
glDeleteRenderbuffers(1, &frameBuffer->rboId); glDeleteRenderbuffers(1, &frameBuffer->rboId);
glDeleteFramebuffers(1, &frameBuffer->fboId); glDeleteFramebuffers(1, &frameBuffer->fboId);
textureDispose(frameBuffer->texture); textureDispose(&frameBuffer->texture);
free(frameBuffer); free(frameBuffer);
} }

View File

@ -10,22 +10,30 @@
#include "texture.h" #include "texture.h"
/** /**
* Creates a new frame buffer that can be rendered to. * Initializes frame buffer that can be rendered to.
* * @param frameBuffer Frame buffer to initialize.
* @param width Width of the frame buffer (in pixels). * @param width Width of the frame buffer (in pixels).
* @param height Height of the frame buffer (in pixels). * @param height Height of the frame buffer (in pixels).
* @return A renderable frame buffer. * @return A renderable frame buffer.
*/ */
framebuffer_t * frameBufferCreate(int32_t width, int32_t height); void frameBufferInit(framebuffer_t *buffer, int32_t width, int32_t height);
/** /**
* Use a given frame buffer as the current rendering context. * Use a given frame buffer as the current rendering context.
* *
* @param frameBuffer Frame buffer to use, or NULL to not use any. * @param frameBuffer Frame buffer to use.
* @param clear Whether or not to clear the frame buffer prior to rendering. * @param clear Whether or not to clear the frame buffer prior to rendering.
*/ */
void frameBufferUse(framebuffer_t *frameBuffer, bool clear); void frameBufferUse(framebuffer_t *frameBuffer, bool clear);
/**
* Unbind the currently bound frame buffer.
*
* @param render Render manager
* @param clear Whether or not to clear the back buffer.
*/
void frameBufferUnbind(render_t *render, bool clear);
/** /**
* Dispose/cleanup a previously created frame buffer. * Dispose/cleanup a previously created frame buffer.
* *

View File

@ -7,9 +7,7 @@
#include "primitive.h" #include "primitive.h"
primitive_t * primitiveCreate(int32_t verticeCount, int32_t indiceCount) { void primitiveInit(primitive_t *primitive, int32_t verticeCount, int32_t indiceCount) {
primitive_t *primitive = malloc(sizeof(primitive_t));
primitive->verticeCount = verticeCount; primitive->verticeCount = verticeCount;
primitive->indiceCount = indiceCount; primitive->indiceCount = indiceCount;
@ -44,8 +42,6 @@ primitive_t * primitiveCreate(int32_t verticeCount, int32_t indiceCount) {
GL_FALSE, 0, (void *)offset GL_FALSE, 0, (void *)offset
); );
glEnableVertexAttribArray(1); glEnableVertexAttribArray(1);
return primitive;
} }
void primitiveBufferVertices(primitive_t *primitive, void primitiveBufferVertices(primitive_t *primitive,
@ -131,5 +127,4 @@ void primitiveDispose(primitive_t *primitive) {
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
glDeleteBuffers(1, &primitive->vertexBuffer); glDeleteBuffers(1, &primitive->vertexBuffer);
glDeleteBuffers(1, &primitive->indexBuffer); glDeleteBuffers(1, &primitive->indexBuffer);
free(primitive);
} }

View File

@ -10,11 +10,11 @@
/** /**
* Creates a new primitive. * Creates a new primitive.
* @param primitive Primitive to initialize.
* @param verticeCount How many vertices can the primitive hold. * @param verticeCount How many vertices can the primitive hold.
* @param indiceCount How many indices can the primitive hold. * @param indiceCount How many indices can the primitive hold.
* @return The newly created primitive ready to be buffered to.
*/ */
primitive_t * primitiveCreate(int32_t verticeCount, int32_t indiceCount); void primitiveInit(primitive_t *primitive, int32_t verticeCount, int32_t indiceCount);
/** /**
* Buffer Vertices to a primitive for use in rendering. * Buffer Vertices to a primitive for use in rendering.
@ -47,7 +47,7 @@ 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);
/** /**
* Cleanup a previously created primitive. * Cleanup a previously initialized primitive.
* @param primitive Primitive to cleanup. * @param primitive Primitive to cleanup.
*/ */
void primitiveDispose(primitive_t *primitive); void primitiveDispose(primitive_t *primitive);

View File

@ -7,8 +7,6 @@
#include "render.h" #include "render.h"
render_t RENDER_STATE;
void renderInit() { void renderInit() {
// Enable GL things. // Enable GL things.
glEnable(GL_BLEND); glEnable(GL_BLEND);
@ -29,7 +27,7 @@ void renderFrameStart() {
void renderDispose() { void renderDispose() {
} }
void renderSetResolution(int32_t width, int32_t height) { void renderSetResolution(render_t *render, int32_t width, int32_t height) {
RENDER_STATE.width = width; render->width = width;
RENDER_STATE.height = height; render->height = height;
} }

View File

@ -26,7 +26,8 @@ void renderDispose();
/** /**
* Sets the internal display resolution. * Sets the internal display resolution.
* *
* @param render Render context to resize.
* @param width Width of the display (in pixels). * @param width Width of the display (in pixels).
* @param height Height of the display (in pixels). * @param height Height of the display (in pixels).
*/ */
void renderSetResolution(int32_t width, int32_t height); void renderSetResolution(render_t *render, int32_t width, int32_t height);

View File

@ -7,22 +7,13 @@
#include "spritebatch.h" #include "spritebatch.h"
spritebatch_t * spriteBatchCreate(int32_t maxSprites) { void spriteBatchInit(spritebatch_t *batch, int32_t maxSprites) {
spritebatch_t *batch = malloc(sizeof(spritebatch_t));
if(batch == NULL) return NULL;
batch->maxSprites = maxSprites; batch->maxSprites = maxSprites;
batch->currentSprite = 0; batch->currentSprite = 0;
batch->primitive = primitiveCreate( primitiveInit(&batch->primitive,
maxSprites*QUAD_VERTICE_COUNT, maxSprites*QUAD_INDICE_COUNT maxSprites*QUAD_VERTICE_COUNT, maxSprites*QUAD_INDICE_COUNT
); );
if(batch == NULL) {
free(batch);
return NULL;
}
return batch;
} }
void spriteBatchQuad(spritebatch_t *spriteBatch, int32_t index, void spriteBatchQuad(spritebatch_t *spriteBatch, int32_t index,
@ -35,7 +26,7 @@ void spriteBatchQuad(spritebatch_t *spriteBatch, int32_t index,
spriteBatch->currentSprite = mathMax(index, spriteBatch->currentSprite); spriteBatch->currentSprite = mathMax(index, spriteBatch->currentSprite);
} }
quadBuffer(spriteBatch->primitive, z, quadBuffer(&spriteBatch->primitive, z,
x, y, u0, v0, x, y, u0, v0,
x+width, y+height, u1, v1, x+width, y+height, u1, v1,
index*QUAD_VERTICE_COUNT, index*QUAD_INDICE_COUNT index*QUAD_VERTICE_COUNT, index*QUAD_INDICE_COUNT
@ -48,12 +39,11 @@ void spriteBatchFlush(spritebatch_t *spriteBatch) {
void spriteBatchDraw(spritebatch_t *spriteBatch, int32_t index, int32_t count) { void spriteBatchDraw(spritebatch_t *spriteBatch, int32_t index, int32_t count) {
if(count == -1) count = spriteBatch->currentSprite; if(count == -1) count = spriteBatch->currentSprite;
primitiveDraw(spriteBatch->primitive, primitiveDraw(&spriteBatch->primitive,
index*QUAD_INDICE_COUNT, count*QUAD_INDICE_COUNT index*QUAD_INDICE_COUNT, count*QUAD_INDICE_COUNT
); );
} }
void spriteBatchDispose(spritebatch_t *spriteBatch) { void spriteBatchDispose(spritebatch_t *spriteBatch) {
primitiveDispose(spriteBatch->primitive); primitiveDispose(&spriteBatch->primitive);
free(spriteBatch);
} }

View File

@ -11,10 +11,10 @@
/** /**
* Creates a new Sprite Batch made of standard quads. * Creates a new Sprite Batch made of standard quads.
* *
* @param batch Sprite batch to init.
* @param maxSprites The maxiumum number of sprites the batch can hold. * @param maxSprites The maxiumum number of sprites the batch can hold.
* @returns A new quad Sprite Batch.
*/ */
spritebatch_t * spriteBatchCreate(int32_t maxSprites); void spriteBatchInit(spritebatch_t *batch, int32_t maxSprites);
/** /**
* Renders a sprite onto a given Sprite Batch. * Renders a sprite onto a given Sprite Batch.

View File

@ -7,10 +7,9 @@
#include "texture.h" #include "texture.h"
texture_t * textureCreate(int32_t width, int32_t height, pixel_t *pixels) { void textureInit(texture_t *texture, int32_t width, int32_t height,
texture_t *texture = malloc(sizeof(texture_t)); pixel_t *pixels
if(texture == NULL) return NULL; ) {
texture->width = width; texture->width = width;
texture->height = height; texture->height = height;
@ -27,13 +26,12 @@ texture_t * textureCreate(int32_t width, int32_t height, pixel_t *pixels) {
// Start by buffering all transparent black pixels. // Start by buffering all transparent black pixels.
if(pixels == NULL) { if(pixels == NULL) {
// TODO: I can optimize this, I think the GPU can default this somehow
pixels = calloc(width * height, sizeof(pixel_t)); pixels = calloc(width * height, sizeof(pixel_t));
glTexImage2D( glTexImage2D(
GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0,
GL_RGBA, GL_UNSIGNED_BYTE, pixels GL_RGBA, GL_UNSIGNED_BYTE, pixels
); );
free(pixels); free(pixels);
} else { } else {
glTexImage2D( glTexImage2D(
@ -59,5 +57,4 @@ void textureBufferPixels(texture_t *texture,
void textureDispose(texture_t *texture) { void textureDispose(texture_t *texture) {
glDeleteTextures(1, &texture->id); glDeleteTextures(1, &texture->id);
free(texture);
} }

View File

@ -7,14 +7,16 @@
#include <dawn/dawn.h> #include <dawn/dawn.h>
/** /**
* Creates a new texture that can be written in to. * Initializes a texture that can be written in to.
* *
* @param texture Texture to initialize.
* @param width Width of the texture (in pixels). * @param width Width of the texture (in pixels).
* @param height Height of the texture (in pixels). * @param height Height of the texture (in pixels).
* @param pixels Default pixel array, set to NULL to set all pixel data to 0. * @param pixels Default pixel array, set to NULL to set all pixel data to 0.
* @return The newly created texture instance.
*/ */
texture_t * textureCreate(int32_t width, int32_t height, pixel_t *pixels); void textureInit(texture_t *texture, int32_t width, int32_t height,
pixel_t *pixels
);
/** /**
* Buffer pixel data onto the GPU. Pixel buffering is rather costly so avoid * Buffer pixel data onto the GPU. Pixel buffering is rather costly so avoid
@ -33,6 +35,7 @@ void textureBufferPixels(texture_t *texture,
/** /**
* Clean a previously created texture. * Clean a previously created texture.
*
* @param texture Texture to clean up. * @param texture Texture to clean up.
*/ */
void textureDispose(texture_t *texture); void textureDispose(texture_t *texture);

View File

@ -7,19 +7,15 @@
#include "tileset.h" #include "tileset.h"
tileset_t * tilesetCreate( tileset_t * tilesetInit(tileset_t *tileset,
int32_t columns, int32_t rows, int32_t columns, int32_t rows,
int32_t width, int32_t height, int32_t width, int32_t height,
int32_t gapX, int32_t gapY, int32_t gapX, int32_t gapY,
int32_t borderX, int32_t borderY int32_t borderX, int32_t borderY
) { ) {
tileset_t *tileset;
float tdivX, tdivY; float tdivX, tdivY;
int32_t x, y, i; int32_t x, y, i;
tileset = malloc(sizeof(tileset_t));
if(tileset == NULL) return NULL;
tileset->count = rows * columns; tileset->count = rows * columns;
tileset->divisions = malloc(sizeof(tilesetdiv_t) * tileset->count); tileset->divisions = malloc(sizeof(tilesetdiv_t) * tileset->count);
if(tileset->divisions == NULL) { if(tileset->divisions == NULL) {
@ -51,21 +47,13 @@ tileset_t * tilesetCreate(
borderY + (tileset->divY * y) + (gapY * y) borderY + (tileset->divY * y) + (gapY * y)
) / height; ) / height;
tileset->divisions[i].y1 = tileset->divisions[i].y0 + 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;
} }
} }
return tileset; return tileset;
} }
tilesetdiv_t tilesetGetDivision(tileset_t *tileset, tilesetdiv_t tilesetGetDivision(tileset_t *tileset,int32_t column,int32_t row) {
int32_t column, int32_t row
) {
return tileset->divisions[ return tileset->divisions[
(column % tileset->columns) + (row * tileset->columns) (column % tileset->columns) + (row * tileset->columns)
]; ];
@ -73,5 +61,4 @@ tilesetdiv_t tilesetGetDivision(tileset_t *tileset,
void tilesetDispose(tileset_t *tileset) { void tilesetDispose(tileset_t *tileset) {
free(tileset->divisions); free(tileset->divisions);
free(tileset);
} }

View File

@ -9,6 +9,7 @@
/** /**
* Create a tileset. Tilesets will be pre-divided to save performance later. * Create a tileset. Tilesets will be pre-divided to save performance later.
* *
* @param tileset Tileset to init into.
* @param columns Count of columns. * @param columns Count of columns.
* @param rows Count of rows. * @param rows Count of rows.
* @param width Width of the tileset. * @param width Width of the tileset.
@ -17,9 +18,8 @@
* @param gapY Space between each row. * @param gapY Space between each row.
* @param borderX Space around the edge of the tileset. * @param borderX Space around the edge of the tileset.
* @param borderY Space around the edge of the tileset. * @param borderY Space around the edge of the tileset.
* @returns The tileset.
*/ */
tileset_t * tilesetCreate( void tilesetInit(tileset_t *tileset,
int32_t columns, int32_t rows, int32_t columns, int32_t rows,
int32_t width, int32_t height, int32_t width, int32_t height,
int32_t gapX, int32_t gapY, int32_t gapX, int32_t gapY,
@ -34,9 +34,7 @@ tileset_t * tilesetCreate(
* @param row Y axis of the tileset. * @param row Y axis of the tileset.
* @returns The Tileset division. * @returns The Tileset division.
*/ */
tilesetdiv_t tilesetGetDivision(tileset_t *tileset, tilesetdiv_t tilesetGetDivision(tileset_t *tileset,int32_t column, int32_t row);
int32_t column, int32_t row
);
/** /**
* Cleans a previously created tileset * Cleans a previously created tileset

30
src/engine/engine.c Normal file
View File

@ -0,0 +1,30 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "engine.h"
void engineInit(engine_t *engine, game_t *game) {
epochInit(&engine->time);
renderInit();
inputInit(&engine->input);
}
void engineUpdateStart(engine_t *engine, game_t *game, float delta) {
epochUpdate(&engine->time, delta);
inputUpdate(&engine->input);
renderFrameStart();
}
bool engineUpdateEnd(engine_t *engine, game_t *game) {
if(inputIsPressed(INPUT_NULL)) return false;
return true;
}
void engineDispose(engine_t *engine, game_t *game) {
inputDispose(&engine->input);
renderDispose();
}

46
src/engine/engine.h Normal file
View File

@ -0,0 +1,46 @@
/**
* 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 "../input/input.h"
#include "../epoch/epoch.h"
#include "../display/render.h"
/**
* Initializes the provided engine. This will initialize all of the various
* managers for the game to use.
*
* @param engine Engine to initialize.
* @param game Game that intiialized this engine.
*/
void engineInit(engine_t *engine, game_t *game);// TODO: This needs to return valid state.
/**
* Updates the given engine at the start of a frame.
*
* @param engine Engine that is being updated
* @param game Game that initialized the engine update
* @param delta Delta tick provided by the game's platform.
*/
void engineUpdateStart(engine_t *engine, game_t *game, float delta);
/**
* Updates the given engine at the end of a frame.
*
* @param engine Engine to update.
* @param game Game that called this update.
*/
bool engineUpdateEnd(engine_t *engine, game_t *game);
/**
* Cleanup the engine context.
*
* @param engine Engine to clean up.
* @param game Game that initialized the cleanup.
*/
void engineDispose(engine_t *engine, game_t *game);

26
src/epoch/epoch.c Normal file
View File

@ -0,0 +1,26 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "epoch.h"
void epochInit(epoch_t *epoch) {
epoch->delta = EPOCH_FIXED_STEP;
epoch->last = EPOCH_FIXED_STEP;
epoch->current = EPOCH_FIXED_STEP + EPOCH_FIXED_STEP;
}
void epochUpdate(epoch_t *epoch, float platformDelta) {
platformDelta = mathMax(
mathMin(platformDelta, EPOCH_FIXED_STEP),
0
);
epoch->last = epoch->current;
epoch->current = epoch->current + platformDelta;
epoch->delta = epoch->current - epoch->last;
epoch->fixedDelta = EPOCH_FIXED_STEP;
}

View File

@ -9,13 +9,16 @@
#include <dawn/dawn.h> #include <dawn/dawn.h>
/** /**
* Initializes the gametime global time tracking. * Initializes the epoch time tracking.
*
* @param epoch Epoch to initialize.
*/ */
void gameTimeInit(); void epochInit(epoch_t *epoch);
/** /**
* Ticks the current game time. * Ticks the current epoch time.
* *
* @param epoch Epoch to update.
* @param platformDelta The delta step between frames from the platform engine. * @param platformDelta The delta step between frames from the platform engine.
*/ */
void gameTimeUpdate(float platformDelta); void epochUpdate(epoch_t *epoch, float platformDelta);

View File

@ -9,74 +9,63 @@
game_t GAME_STATE; game_t GAME_STATE;
bool gameInit() { bool gameInit(game_t *game) {
// Init the game // Init the game
GAME_STATE.name = GAME_NAME; game->name = GAME_NAME;
logInit(); engineInit(&game->engine, game);
logText("Starting Game");
// Init // Init
gameTimeInit(); // gameTimeInit();
renderInit(); // renderInit();
inputInit(); // inputInit();
// 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"
); // );
// Font // // Font
GAME_STATE.fontTexture = assetTextureLoad("font.png"); // GAME_STATE.fontTexture = assetTextureLoad("font.png");
GAME_STATE.fontTileset = tilesetCreate(20, 20, // GAME_STATE.fontTileset = tilesetCreate(20, 20,
GAME_STATE.fontTexture->width, // GAME_STATE.fontTexture->width,
GAME_STATE.fontTexture->height, // GAME_STATE.fontTexture->height,
1, 1, 1, 1 // 1, 1, 1, 1
); // );
GAME_STATE.fontBatch = spriteBatchCreate(1024); // GAME_STATE.fontBatch = spriteBatchCreate(1024);
// Prepare the renderer. // // Prepare the renderer.
holdemRenderFrameInit(); // pokerInit(&GAME_STATE.poker);
holdemRenderWorldInit(); // holdemRenderFrameInit();
holdemRenderPlayerInit(); // holdemRenderWorldInit();
holdemRenderCardInit(); // holdemRenderPlayerInit();
holdemRenderChipInit(); // holdemRenderCardInit();
// holdemRenderChipInit();
// Prepare the action manager
pokerActionInit();
// Start the first action
pokerActionAdd(actionStart());
// Init the input manger. // Init the input manger.
return true; return true;
} }
bool gameUpdate(float platformDelta) { bool gameUpdate(game_t *game, float platformDelta) {
gameTimeUpdate(platformDelta); engineUpdateStart(&game->engine, game, platformDelta);
renderFrameStart(); engineUpdateEnd(&game->engine, game);
inputUpdate();
shaderUse(GAME_STATE.shaderWorld);// TODO: remove
// Update the frame buffers and action queue
holdemRenderFrameUpdate();
pokerActionUpdate();
// Render things on each frame, then render those frames. // shaderUse(GAME_STATE.shaderWorld);// TODO: remove
holdemRenderFrameUseLeft();
holdemRenderWorld(); // // Update the frame buffers and action queue
holdemRenderFrameUseRight(); // holdemRenderFrameUpdate();
holdemRenderWorld(); // pokerActionUpdate();
holdemRenderFrameBack();
if(inputIsPressed(INPUT_NULL)) return false; // // Render things on each frame, then render those frames.
return true; // holdemRenderFrameUseLeft();
// holdemRenderWorld();
// holdemRenderFrameUseRight();
// holdemRenderWorld();
// holdemRenderFrameBack();
} }
void gameDispose() { void gameDispose(game_t *game) {
pokerActionDispose(); engineDispose(&game->engine, game);
shaderDispose(GAME_STATE.shaderWorld); // pokerActionDispose();
inputDispose(); // shaderDispose(GAME_STATE.shaderWorld);
renderDispose();
} }

View File

@ -5,29 +5,14 @@
#pragma once #pragma once
#include <dawn/dawn.h> #include <dawn/dawn.h>
#include "gametime.h" #include "../engine/engine.h"
#include "../display/render.h"
#include "../display/camera.h"
#include "../display/shader.h"
#include "../display/gui/font.h"
#include "../file/asset.h"
#include "../input/input.h"
#include "../debug/log.h"
#include "../poker/action/action.h"
#include "../poker/action/start.h"
#include "../poker/render/player.h"
#include "../poker/render/card.h"
#include "../poker/render/chip.h"
#include "../poker/render/frame.h"
#include "../poker/render/look.h"
#include "../poker/render/world.h"
/** /**
* Initialize the game context. * Initialize the game context.
* *
* @return True if successful, otherwise false. * @return True if successful, otherwise false.
*/ */
bool gameInit(); bool gameInit(game_t *game);
/** /**
* Tick the main game loop. * Tick the main game loop.
@ -35,9 +20,9 @@ bool gameInit();
* @param platformDelta The platform tick delta between the last render. * @param platformDelta The platform tick delta between the last render.
* @return True if successful, false if safe exit requested.. * @return True if successful, false if safe exit requested..
*/ */
bool gameUpdate(float platformDelta); bool gameUpdate(game_t *game, float platformDelta);
/** /**
* Cleanup the game instance. * Cleanup the game instance.
*/ */
void gameDispose(); void gameDispose(game_t *game);

View File

@ -1,28 +0,0 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "gametime.h"
gametime_t TIME_STATE;
void gameTimeInit() {
TIME_STATE.delta = GAMETIME_FIXED_STEP;
TIME_STATE.last = GAMETIME_FIXED_STEP;
TIME_STATE.current = GAMETIME_FIXED_STEP + GAMETIME_FIXED_STEP;
}
void gameTimeUpdate(float platformDelta) {
platformDelta = mathMax(
mathMin(platformDelta, GAMETIME_FIXED_STEP),
0
);
TIME_STATE.last = TIME_STATE.current;
TIME_STATE.current = TIME_STATE.current + platformDelta;
TIME_STATE.delta = TIME_STATE.current - TIME_STATE.last;
TIME_STATE.fixedDelta = GAMETIME_FIXED_STEP;
}

View File

@ -7,96 +7,94 @@
#include "input.h" #include "input.h"
input_t INPUT_STATE; void inputInit(input_t *input) {
void inputInit() {
int32_t i; int32_t i;
// Setup the bind lists // Setup the bind lists
for(i = 0; i < INPUT_BIND_COUNT; i++) { for(i = 0; i < INPUT_BIND_COUNT; i++) {
INPUT_STATE.bindMap[i] = listCreate(); input->bindMap[i] = listCreate();
} }
INPUT_STATE.current = INPUT_STATE.inputsA; input->current = input->inputsA;
INPUT_STATE.previous = INPUT_STATE.inputsB; input->previous = input->inputsB;
// Create the buffer, zero all the values out. // Create the buffer, zero all the values out.
memset(&INPUT_STATE.buffer, 0, sizeof(inputval_t)*INPUT_SOURCE_COUNT); memset(&input->buffer, 0, sizeof(inputval_t)*INPUT_SOURCE_COUNT);
} }
void inputUpdate() { void inputUpdate(input_t *input) {
int32_t i; int32_t i;
listentry_t *item; listentry_t *item;
inputval_t value; inputval_t value;
// Flip the states to save memory. // Flip the states to save memory.
inputval_t *currentCurrent = INPUT_STATE.current; inputval_t *currentCurrent = input->current;
INPUT_STATE.current = INPUT_STATE.previous; input->current = input->previous;
INPUT_STATE.previous = currentCurrent; input->previous = currentCurrent;
// Now look at each bind... // Now look at each bind...
for(i = 0; i < INPUT_BIND_COUNT; i++) { for(i = 0; i < INPUT_BIND_COUNT; i++) {
// Now get the list of input sources bound to this input // Now get the list of input sources bound to this input
item = INPUT_STATE.bindMap[i]->start; item = input->bindMap[i]->start;
value = 0; value = 0;
// For each input source, add the value from the buffer // For each input source, add the value from the buffer
while(item != NULL) { while(item != NULL) {
value += INPUT_STATE.buffer[(inputsource_t)item->data]; value += input->buffer[(inputsource_t)item->data];
item = item->next; item = item->next;
} }
// Set to the current state. // Set to the current state.
INPUT_STATE.current[i] = value; input->current[i] = value;
} }
} }
void inputDispose() { void inputDispose(input_t *input) {
int32_t i; int32_t i;
// Free up the bind lists // Free up the bind lists
for(i = 0; i < INPUT_BIND_COUNT; i++) { for(i = 0; i < INPUT_BIND_COUNT; i++) {
listDispose(INPUT_STATE.bindMap[i], false); listDispose(input->bindMap[i], false);
} }
} }
void inputBind(inputbind_t bind, inputsource_t source) { void inputBind(input_t *input, inputbind_t bind, inputsource_t source) {
listAdd(INPUT_STATE.bindMap[bind], (void *)source); listAdd(input->bindMap[bind], (void *)source);
} }
void inputUnbind(inputbind_t bind, inputsource_t source) { void inputUnbind(input_t *input, inputbind_t bind, inputsource_t source) {
listRemove(INPUT_STATE.bindMap[bind], (void *)source); listRemove(input->bindMap[bind], (void *)source);
} }
bool inputIsDown(inputbind_t binding) { bool inputIsDown(input_t *input, inputbind_t binding) {
return INPUT_STATE.current[binding] != 0; return input->current[binding] != 0;
} }
bool inputIsUp(inputbind_t binding) { bool inputIsUp(input_t *input, inputbind_t binding) {
return INPUT_STATE.current[binding] == 0; return input->current[binding] == 0;
} }
bool inputIsPressed(inputbind_t binding) { bool inputIsPressed(input_t *input, inputbind_t binding) {
return ( return (
INPUT_STATE.previous[binding] == 0 && input->previous[binding] == 0 &&
INPUT_STATE.current[binding] != 0 input->current[binding] != 0
); );
} }
bool inputIsReleased(inputbind_t binding) { bool inputIsReleased(input_t *input, inputbind_t binding) {
return INPUT_STATE.current[binding]==0 && INPUT_STATE.previous[binding] != 0; return input->current[binding]==0 && input->previous[binding] != 0;
} }
inputval_t inputGetAxis(inputbind_t binding) { inputval_t inputGetAxis(input_t *input, inputbind_t binding) {
return INPUT_STATE.current[binding]; return input->current[binding];
} }
float inputGetFullAxis(inputbind_t positive, float inputGetFullAxis(input_t *input, inputbind_t positive,
inputbind_t negative inputbind_t negative
) { ) {
return -INPUT_STATE.current[negative] + INPUT_STATE.current[positive]; return -input->current[negative] + input->current[positive];
} }
float inputGetAccuated(inputbind_t binding) { float inputGetAccuated(input_t *input, inputbind_t binding) {
return INPUT_STATE.times[binding]; return input->times[binding];
} }

View File

@ -9,78 +9,91 @@
/** /**
* Initializes the input manager. * Initializes the input manager.
*
* @param input The input manager to initialize.
*/ */
void inputInit(); void inputInit(input_t *input);
/** /**
* Tick the input manager. * Tick the input manager.
*
* @param input The input manager to update.
*/ */
void inputUpdate(); void inputUpdate(input_t *input);
/** /**
* Destroy the input manager and cleanup. * Destroy the input manager and cleanup.
*
* @param input The input manager to dispose.
*/ */
void inputDispose(); void inputDispose(input_t *input);
/** /**
* Binds the given input binding to the input source. Essentially allowing any * Binds the given input binding to the input source. Essentially allowing any
* time we fetch the state of bind, we will read the value from source. * time we fetch the state of bind, we will read the value from source.
* *
* @param input The input manager.
* @param bind The binding to bind against. * @param bind The binding to bind against.
* @param source The source that is being bound. * @param source The source that is being bound.
*/ */
void inputBind(inputbind_t bind, inputsource_t source); void inputBind(input_t *input, inputbind_t bind, inputsource_t source);
/** /**
* Unbind a previously bound input source from a binding. This method is costly. * Unbind a previously bound input source from a binding. This method is costly.
* *
* @param input The input manager.
* @param bind The binding to unbind from. * @param bind The binding to unbind from.
* @param source The source that is being unbound. * @param source The source that is being unbound.
*/ */
void inputUnbind(inputbind_t bind, inputsource_t source); void inputUnbind(input_t *input, inputbind_t bind, inputsource_t source);
/** /**
* Is the current input "down", being pressed, being moved, not in a state * Is the current input "down", being pressed, being moved, not in a state
* of rest. * of rest.
* *
* @param input The input manager.
* @param binding The previously bound input binding. * @param binding The previously bound input binding.
* @return True if the input vector is non-zero. * @return True if the input vector is non-zero.
*/ */
bool inputIsDown(inputbind_t binding); bool inputIsDown(input_t *input, inputbind_t binding);
/** /**
* Is the current input "up", in a state of rest, not being actioned, moved. * Is the current input "up", in a state of rest, not being actioned, moved.
* *
* @param input The input manager.
* @param binding The previously bound input binding. * @param binding The previously bound input binding.
* @return True if input vector is zero * @return True if input vector is zero
*/ */
bool inputIsUp(inputbind_t binding); bool inputIsUp(input_t *input, inputbind_t binding);
/** /**
* Returns true on the first tick that an input was actioned/downed. * Returns true on the first tick that an input was actioned/downed.
* *
* @param input The input manager.
* @param binding The previously bound input binding. * @param binding The previously bound input binding.
* @return True if the input vector was non-zeroed this tick but not last. * @return True if the input vector was non-zeroed this tick but not last.
*/ */
bool inputIsPressed(inputbind_t binding); bool inputIsPressed(input_t *input, inputbind_t binding);
/** /**
* Returns true on the first tick that an input was released/upped. * Returns true on the first tick that an input was released/upped.
* *
* @param input The input manager.
* @param binding The previously bound input binding. * @param binding The previously bound input binding.
* @return True if the input vector was zeroed this tick but not last. * @return True if the input vector was zeroed this tick but not last.
*/ */
bool inputIsReleased(inputbind_t binding); bool inputIsReleased(input_t *input, inputbind_t binding);
/** /**
* Returns the raw input value as a float between 0 and 1. For digital (buttons) * Returns the raw input value as a float between 0 and 1. For digital (buttons)
* this will typicall be 0 or 1 only. Other analogue inputs will have anywhere * this will typicall be 0 or 1 only. Other analogue inputs will have anywhere
* within the range. * within the range.
* *
* @param input The input manager.
* @param binding The previously bound input binding. * @param binding The previously bound input binding.
* @return Input state of the axis. * @return Input state of the axis.
*/ */
inputval_t inputGetAxis(inputbind_t binding); inputval_t inputGetAxis(input_t *input, inputbind_t binding);
/** /**
* Returns a raw input value between -1 and 1 between two axis. This would be * Returns a raw input value between -1 and 1 between two axis. This would be
@ -88,17 +101,19 @@ inputval_t inputGetAxis(inputbind_t binding);
* for a positive input and another for a negative input, typically a game * for a positive input and another for a negative input, typically a game
* controller's analogue sticks. * controller's analogue sticks.
* *
* @param input The input manager.
* @param postitive The positive axis binding. * @param postitive The positive axis binding.
* @param negative The negative axis binding. * @param negative The negative axis binding.
* @return A float between -1 and 1 representing the result of both. * @return A float between -1 and 1 representing the result of both.
*/ */
float inputGetFullAxis(inputbind_t positive, inputbind_t negative); float inputGetFullAxis(input_t *input, inputbind_t positive, inputbind_t negative);
/** /**
* Returns the time that an input was actuated at. Actuate would count as a * Returns the time that an input was actuated at. Actuate would count as a
* non-zero input for analogue inputs. * non-zero input for analogue inputs.
* *
* @param input The input manager.
* @param binding The previously bound input binding. * @param binding The previously bound input binding.
* @return Game Engine time that an input was non-zeroed * @return Game Engine time that an input was non-zeroed
*/ */
float inputGetAccuated(inputbind_t binding); float inputGetAccuated(input_t *input, inputbind_t binding);

View File

@ -6,7 +6,6 @@
#include "glwfwplatform.h" #include "glwfwplatform.h"
GLFWwindow *window = NULL; GLFWwindow *window = NULL;
game_t *runningGame = NULL;
int32_t main() { int32_t main() {
// Attempt to init GLFW // Attempt to init GLFW
@ -33,10 +32,13 @@ int32_t main() {
glfwSetWindowSizeCallback(window, &glfwOnResize); glfwSetWindowSizeCallback(window, &glfwOnResize);
glfwSetKeyCallback(window, &glfwOnKey); glfwSetKeyCallback(window, &glfwOnKey);
glfwSetErrorCallback (&glfwOnError); glfwSetErrorCallback(&glfwOnError);
// Prepare the game
game_t *game = &GAME_STATE;
// Init the game // Init the game
if(gameInit()) { if(gameInit(game)) {
// Bind initial keys // Bind initial keys
inputBind(INPUT_NULL, (inputsource_t)GLFW_KEY_ESCAPE); inputBind(INPUT_NULL, (inputsource_t)GLFW_KEY_ESCAPE);
inputBind(INPUT_DEBUG_UP, (inputsource_t)GLFW_KEY_W); inputBind(INPUT_DEBUG_UP, (inputsource_t)GLFW_KEY_W);
@ -76,13 +78,13 @@ int32_t main() {
time = newTime; time = newTime;
// Tick the engine. // Tick the engine.
if(!gameUpdate(fDelta)) break; if(!gameUpdate(game, fDelta)) break;
glfwSwapBuffers(window); glfwSwapBuffers(window);
sleep(0);//Fixes some weird high CPU bug, not actually necessary. sleep(0);//Fixes some weird high CPU bug, not actually necessary.
} }
// Game has finished running, cleanup. // Game has finished running, cleanup.
gameDispose(); gameDispose(game);
} }
// Terminate the GLFW context. // Terminate the GLFW context.

42
src/poker/poker.c Normal file
View File

@ -0,0 +1,42 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "poker.h"
void pokerInit(poker_t *poker) {
uint8_t x;
// Prepare the initial game state
poker->round = POKER_ROUND_DEAL;
poker->roundPlayer = 0x00;
poker->roundDealer = 0x00;
poker->blindSmall = 0;
poker->blindBig = 0;
for(x = 0; x < POKER_PLAYER_COUNT; x++) {
poker->players[x].state = 0x00;
poker->players[x].chips = 0;
poker->players[x].cardCount = 0;
poker->players[x].currentBet = 0;
}
pokerRoundInit();
}
void pokerRoundInit(poker_t *poker) {
uint8_t x;
// Refill the deck
cardDeckFill(&poker->deck);
poker->deckSize = CARD_DECK_SIZE;
// Reset the players
for(x = 0; x < POKER_PLAYER_COUNT; x++) {
poker->players[x].cardCount = 0;
poker->players[x].currentBet = 0;
}
}

25
src/poker/poker.h Normal file
View File

@ -0,0 +1,25 @@
/**
* 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 "card.h"
/**
* Initializes the poker match for the first time.
*
* @param poker Poker game to init.
*/
void pokerInit(poker_t *poker);
/**
* Initializes the round for a poker game.
*
* @param poker Poker game to init a new round for.
*/
void pokerRoundInit(poker_t *poker);

View File

@ -33,7 +33,7 @@ void actionAiUpdate(int32_t index, void *data) {
void actionAiDispose(int32_t index, void *data) { void actionAiDispose(int32_t index, void *data) {
// Do we need to do a flop? // Do we need to do a flop?
if(GAME_STATE.cardsFacing < HOLDEM_DEALER_HAND) { if(GAME_STATE.cardsFacing < POKER_DEALER_HAND) {
pokerActionAdd(actionFlop()); pokerActionAdd(actionFlop());
} }
} }

View File

@ -11,6 +11,10 @@
#include "flop.h" #include "flop.h"
#include "../../debug/log.h" #include "../../debug/log.h"
typdef struct {
uint8_t player;
} actionaidata_t;
pokeraction_t actionAi(); pokeraction_t actionAi();
void actionAiInit(int32_t index, void *data); void actionAiInit(int32_t index, void *data);