Updated ideas.

This commit is contained in:
2021-08-10 09:42:15 -07:00
parent 65d13cc046
commit 247df18225
5 changed files with 21 additions and 9 deletions

14
IDEA.md
View File

@ -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.
- 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.

View File

@ -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;

View File

@ -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;
} 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;

View File

@ -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);
}

View File

@ -8,6 +8,7 @@
#pragma once
#include <dawn/dawn.h>
#include "../../file/asset.h"
#include "../../locale/language.h"
bool pokerGameAssetsInit(pokergameassets_t *assets);
void pokerGameAssetsDispose(pokergameassets_t *assets);