diff --git a/IDEA.md b/IDEA.md index c2cae1c1..423909dd 100644 --- a/IDEA.md +++ b/IDEA.md @@ -1,2 +1,8 @@ -- Adjust timeline script to have the timeline and the timeline actions disconnected -- Make the method take in the array of actions and length so that the funtion can be provided any actions needed \ No newline at end of file +- 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 diff --git a/include/dawn/dawn.h b/include/dawn/dawn.h index 69460f24..1865b2e1 100644 --- a/include/dawn/dawn.h +++ b/include/dawn/dawn.h @@ -43,6 +43,9 @@ // Player Input #include "input/input.h" +// Locales +#include "locale/language.h" + // Poker Game Logic #include "poker/bet.h" #include "poker/card.h" diff --git a/include/dawn/game/poker/pokercharacters.h b/include/dawn/game/poker/pokercharacters.h new file mode 100644 index 00000000..b76bb676 --- /dev/null +++ b/include/dawn/game/poker/pokercharacters.h @@ -0,0 +1,14 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include "../../libs.h" +#include "../../vn/vncharacter.h" + +typedef struct { + char *bruh; +} pokercharacters_t; \ No newline at end of file diff --git a/include/dawn/locale/language.h b/include/dawn/locale/language.h new file mode 100644 index 00000000..17c8a3d1 --- /dev/null +++ b/include/dawn/locale/language.h @@ -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 "../libs.h" + +#define LANGUAGE_STRING_MAX 512 + +typedef struct { + char *name; + char *value; +} languagevariable_t; + +typedef struct { + char *key; +} languagestring_t; + +typedef struct { + languagestring_t strings[LANGUAGE_STRING_MAX]; + int32_t stringCount; +} language_t; \ No newline at end of file diff --git a/src/game/poker/actions/action.c b/src/game/poker/actions/action.c new file mode 100644 index 00000000..4cc164d0 --- /dev/null +++ b/src/game/poker/actions/action.c @@ -0,0 +1,15 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#include "action.h" + +queueaction_t * pokerGameActionAdd(pokergame_t *game) { + queueaction_t *action; + action = queueAdd(&game->scene.conversation.actionQueue); + action->data = (void *)game; + return action; +} \ No newline at end of file diff --git a/src/game/poker/actions/action.h b/src/game/poker/actions/action.h new file mode 100644 index 00000000..add449d5 --- /dev/null +++ b/src/game/poker/actions/action.h @@ -0,0 +1,19 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include +#include "../../../vn/conversation/talk.h" +#include "../../../display/animation/queue.h" + +/** + * Adds an action to the poker game scene's queue. + * + * @param game Game to add the action to. + * @return Action that was added to the game. + */ +queueaction_t * pokerGameActionAdd(pokergame_t *game); \ No newline at end of file diff --git a/src/game/poker/actions/round.c b/src/game/poker/actions/round.c new file mode 100644 index 00000000..e69de29b diff --git a/src/game/poker/actions/round.h b/src/game/poker/actions/round.h new file mode 100644 index 00000000..9e44ea4c --- /dev/null +++ b/src/game/poker/actions/round.h @@ -0,0 +1,8 @@ +// Copyright (c) 2021 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include + diff --git a/src/game/poker/actions/start.c b/src/game/poker/actions/start.c new file mode 100644 index 00000000..200ec50d --- /dev/null +++ b/src/game/poker/actions/start.c @@ -0,0 +1,35 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#include "start.h" + +void _pokerGameActionStartOnStart( + queue_t *queue, queueaction_t *action, uint8_t i +) { + pokergame_t *game = (pokergame_t *)action->data; + + queueNext(queue); +} + +void _pokerGameActionStartOnEnd(queue_t *queue,queueaction_t *action,uint8_t i){ + pokergame_t *game = (pokergame_t *)action->data; + + pokerActionMatchAdd(&game->scene.conversation.actionQueue, &game->poker); + vnConversationTalk(&game->scene.conversation, + "The game is No Limits Texas Hold'em.", NULL + ); + pokerGameActionRoundAdd(game); +} + +queueaction_t * pokerGameActionStartAdd(pokergame_t *game) { + queueaction_t *action = pokerGameActionAdd(game); + + action->onStart = &_pokerGameActionStartOnStart; + action->onEnd = &_pokerGameActionStartOnEnd; + + return action; +} \ No newline at end of file diff --git a/src/game/poker/actions/start.h b/src/game/poker/actions/start.h new file mode 100644 index 00000000..dbe7e114 --- /dev/null +++ b/src/game/poker/actions/start.h @@ -0,0 +1,21 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include +#include "../../../vn/conversation/talk.h" +#include "../../../display/animation/queue.h" +#include "../../../poker/actions/match.h" +#include "action.h" + +void _pokerGameActionStartOnStart( + queue_t *queue, queueaction_t *action, uint8_t i +); + +void _pokerGameActionStartOnEnd(queue_t *queue,queueaction_t *action,uint8_t i); + +queueaction_t * pokerGameAcionStartAdd(pokergame_t *game); \ No newline at end of file diff --git a/src/game/poker/pokergame.c b/src/game/poker/pokergame.c index 90e488c6..46e55014 100644 --- a/src/game/poker/pokergame.c +++ b/src/game/poker/pokergame.c @@ -18,23 +18,16 @@ bool pokerGameInit(game_t *game) { // Prep the VN Conversation Engine. vnSceneInit(&pokerGame->scene, &pokerGame->assets.font); + pokerGameActionStartAdd(pokerGame); - vnConversationTalk(&pokerGame->scene.conversation, "LOTS AND LOTS AND LOTS AND LOTS AND LOTS AND LOTS AND LOTS AND LOTS", NULL); - pokerActionMatchAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); + // pokerActionMatchAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); + // pokerActionMatchAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); + // pokerActionRoundAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); + // pokerActionBlindsAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); + // pokerActionDealAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); + // vnConversationTalk(&pokerGame->scene.conversation, "Betting Round", NULL); + // pokerActionFlopAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); - vnConversationTalk(&pokerGame->scene.conversation, "Start Round", NULL); - pokerActionRoundAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); - - vnConversationTalk(&pokerGame->scene.conversation, "Blinds Round", NULL); - pokerActionBlindsAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); - - vnConversationTalk(&pokerGame->scene.conversation, "Deal Round", NULL); - pokerActionDealAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); - - vnConversationTalk(&pokerGame->scene.conversation, "Betting Round", NULL); - - vnConversationTalk(&pokerGame->scene.conversation, "Flop Round", NULL); - pokerActionFlopAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); // Begin the VN conversation queue. queueNext(&pokerGame->scene.conversation.actionQueue); diff --git a/src/game/poker/pokergame.h b/src/game/poker/pokergame.h index a7fec1da..f9e6ca28 100644 --- a/src/game/poker/pokergame.h +++ b/src/game/poker/pokergame.h @@ -11,12 +11,7 @@ #include "../../poker/poker.h" #include "../../vn/conversation/talk.h" #include "../../vn/vnscene.h" - -#include "../../poker/actions/match.h" -#include "../../poker/actions/round.h" -#include "../../poker/actions/flop.h" -#include "../../poker/actions/deal.h" -#include "../../poker/actions/blinds.h" +#include "actions/start.h" /** * Initializes the game state for the poker game. diff --git a/src/locale/language.c b/src/locale/language.c new file mode 100644 index 00000000..d869cb47 --- /dev/null +++ b/src/locale/language.c @@ -0,0 +1,45 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#include "language.h" + +languagestring_t * languageGetStringByKey(language_t *language, char *key) { + int32_t i; + languagestring_t *string; + + for(i = 0; i < language->stringCount; i++) { + string = language->strings + i; + if(string->key != key) continue; + return string; + } + + return NULL; +} + +char * languageGetText(language_t *language, languagestring_t *string) { + // Try and find the value + + // Load the value into memory. + + // Return the value + return NULL; +} + +char * languageGetTextWithVariables( + language_t *language, languagestring_t *string, languagevariable_t *variable +) { + char *text = languageGetText(language, string); + if(text == NULL) return NULL; + + // Scan the string, determine the new length and positions of the variables + + // Now create some memory for the new string + + // Now buffer the old string into the new string and take the language + + return text; +} \ No newline at end of file diff --git a/src/locale/language.h b/src/locale/language.h new file mode 100644 index 00000000..0deb3e8a --- /dev/null +++ b/src/locale/language.h @@ -0,0 +1,31 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include + +/** + * Returns the language string for a given language string key. + * + * @param language Language to get from. + * @param key Key to get from. + * @return The string matching the key, or NULL if no match. + */ +languagestring_t * languageGetStringByKey(language_t *language, char *key); + +/** + * Returns the value for a given language string. + * + * @param language Language to get from. + * @param string Language string to get. + * @return The string. + */ +char * languageGetText(language_t *language, languagestring_t *string); + +char * languageGetTextWithVariables( + language_t *language, languagestring_t *string, languagevariable_t *variable +); \ No newline at end of file