From 247df18225d9ef14e957be0b583c2b34f13cda97 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 10 Aug 2021 09:42:15 -0700 Subject: [PATCH] Updated ideas. --- IDEA.md | 14 ++++++-------- include/dawn/game/poker/pokergameassets.h | 2 ++ include/dawn/util/string.h | 11 ++++++++++- src/game/poker/pokergameassets.c | 2 ++ src/game/poker/pokergameassets.h | 1 + 5 files changed, 21 insertions(+), 9 deletions(-) diff --git a/IDEA.md b/IDEA.md index 423909dd..f403ea6f 100644 --- a/IDEA.md +++ b/IDEA.md @@ -1,8 +1,6 @@ -- Start building the final actions that we will use (The poker game actions). -- These actions will simply add multiple actions at once and we can then stagger - them for the animations and what not -- Add an animation timeline to the poker game instance. -- Set up some of the rendering assets, mainly the cards and we can begin to - consider things like the GUI. -- Work on the translation model -- Begin to consider how we will handle the differing character texts. \ No newline at end of file +- Create a better buffer means for the CSV variables. +- Determine what's using all the memory. +- Start writing the language, storyboard if I need to. +- UI time +- AI Poker +- Begin considering audio. \ No newline at end of file diff --git a/include/dawn/game/poker/pokergameassets.h b/include/dawn/game/poker/pokergameassets.h index 3109a194..8f9b2eb3 100644 --- a/include/dawn/game/poker/pokergameassets.h +++ b/include/dawn/game/poker/pokergameassets.h @@ -8,8 +8,10 @@ #pragma once #include "../../display/gui/font.h" #include "../../display/shader.h" +#include "../../locale/language.h" typedef struct { font_t font; shader_t shader; + language_t language; } pokergameassets_t; \ No newline at end of file diff --git a/include/dawn/util/string.h b/include/dawn/util/string.h index 79126fd1..3bc43162 100644 --- a/include/dawn/util/string.h +++ b/include/dawn/util/string.h @@ -9,6 +9,8 @@ #include "../libs.h" #define STRING_HANDLEBAR_KEY_MAXLENGTH 32 +#define STRING_HANDLEBAR_LIST_VARIABLE_SIZE 512 +#define STRING_HANDLEBAR_LIST_VARIABLE_COUNT 64 /** Representation of a String Handlebar Variable */ typedef struct { @@ -16,4 +18,11 @@ typedef struct { char *key; /** The value to replace it with */ char *value; -} stringhandlebarvariable_t; \ No newline at end of file +} stringhandlebarvariable_t; + +typedef struct { + char buffer[ + STRING_HANDLEBAR_LIST_VARIABLE_SIZE * STRING_HANDLEBAR_LIST_VARIABLE_COUNT + ]; + stringhandlebarvariable_t variables[STRING_HANDLEBAR_LIST_VARIABLE_COUNT]; +} stringhandlebarvariablelist_t; \ No newline at end of file diff --git a/src/game/poker/pokergameassets.c b/src/game/poker/pokergameassets.c index e33d4f27..9bcd0f82 100644 --- a/src/game/poker/pokergameassets.c +++ b/src/game/poker/pokergameassets.c @@ -11,10 +11,12 @@ bool pokerGameAssetsInit(pokergameassets_t *assets) { assetShaderLoad(&assets->shader, "shaders/textured.vert", "shaders/textured.frag" ); + languageInit(&assets->language, "locales/language/en-US.csv"); return true; } void pokerGameAssetsDispose(pokergameassets_t *assets) { + languageDispose(&assets->language); shaderDispose(&assets->shader); fontDispose(&assets->font); } \ No newline at end of file diff --git a/src/game/poker/pokergameassets.h b/src/game/poker/pokergameassets.h index 95f61902..768bb59e 100644 --- a/src/game/poker/pokergameassets.h +++ b/src/game/poker/pokergameassets.h @@ -8,6 +8,7 @@ #pragma once #include #include "../../file/asset.h" +#include "../../locale/language.h" bool pokerGameAssetsInit(pokergameassets_t *assets); void pokerGameAssetsDispose(pokergameassets_t *assets); \ No newline at end of file