Updated ideas.
This commit is contained in:
14
IDEA.md
14
IDEA.md
@ -1,8 +1,6 @@
|
|||||||
- Start building the final actions that we will use (The poker game actions).
|
- Create a better buffer means for the CSV variables.
|
||||||
- These actions will simply add multiple actions at once and we can then stagger
|
- Determine what's using all the memory.
|
||||||
them for the animations and what not
|
- Start writing the language, storyboard if I need to.
|
||||||
- Add an animation timeline to the poker game instance.
|
- UI time
|
||||||
- Set up some of the rendering assets, mainly the cards and we can begin to
|
- AI Poker
|
||||||
consider things like the GUI.
|
- Begin considering audio.
|
||||||
- Work on the translation model
|
|
||||||
- Begin to consider how we will handle the differing character texts.
|
|
@ -8,8 +8,10 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "../../display/gui/font.h"
|
#include "../../display/gui/font.h"
|
||||||
#include "../../display/shader.h"
|
#include "../../display/shader.h"
|
||||||
|
#include "../../locale/language.h"
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
font_t font;
|
font_t font;
|
||||||
shader_t shader;
|
shader_t shader;
|
||||||
|
language_t language;
|
||||||
} pokergameassets_t;
|
} pokergameassets_t;
|
@ -9,6 +9,8 @@
|
|||||||
#include "../libs.h"
|
#include "../libs.h"
|
||||||
|
|
||||||
#define STRING_HANDLEBAR_KEY_MAXLENGTH 32
|
#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 */
|
/** Representation of a String Handlebar Variable */
|
||||||
typedef struct {
|
typedef struct {
|
||||||
@ -16,4 +18,11 @@ typedef struct {
|
|||||||
char *key;
|
char *key;
|
||||||
/** The value to replace it with */
|
/** The value to replace it with */
|
||||||
char *value;
|
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;
|
@ -11,10 +11,12 @@ bool pokerGameAssetsInit(pokergameassets_t *assets) {
|
|||||||
assetShaderLoad(&assets->shader,
|
assetShaderLoad(&assets->shader,
|
||||||
"shaders/textured.vert", "shaders/textured.frag"
|
"shaders/textured.vert", "shaders/textured.frag"
|
||||||
);
|
);
|
||||||
|
languageInit(&assets->language, "locales/language/en-US.csv");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void pokerGameAssetsDispose(pokergameassets_t *assets) {
|
void pokerGameAssetsDispose(pokergameassets_t *assets) {
|
||||||
|
languageDispose(&assets->language);
|
||||||
shaderDispose(&assets->shader);
|
shaderDispose(&assets->shader);
|
||||||
fontDispose(&assets->font);
|
fontDispose(&assets->font);
|
||||||
}
|
}
|
@ -8,6 +8,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <dawn/dawn.h>
|
#include <dawn/dawn.h>
|
||||||
#include "../../file/asset.h"
|
#include "../../file/asset.h"
|
||||||
|
#include "../../locale/language.h"
|
||||||
|
|
||||||
bool pokerGameAssetsInit(pokergameassets_t *assets);
|
bool pokerGameAssetsInit(pokergameassets_t *assets);
|
||||||
void pokerGameAssetsDispose(pokergameassets_t *assets);
|
void pokerGameAssetsDispose(pokergameassets_t *assets);
|
Reference in New Issue
Block a user