From 37eaa706b7f0d12961672a80d72128fdc2a06f88 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Thu, 27 Oct 2022 23:38:04 -0700 Subject: [PATCH] Working on time and input --- src/dawn/CMakeLists.txt | 1 + src/dawn/game/DawnGame.hpp | 3 ++ src/dawn/scene/Scene.cpp | 2 + src/dawn/scene/Scene.hpp | 3 ++ src/dawn/time/CMakeLists.txt | 10 ++++ src/dawn/time/TimeManager.cpp | 32 ++++++++++++ src/dawn/time/TimeManager.hpp | 43 ++++++++++++++++ src/dawn/ui/UILabel.cpp | 3 +- src/dawn/ui/UILabel.hpp | 5 +- .../visualnovel/ui/VisualNovelTextbox.cpp | 49 +++++++++++++++++++ .../visualnovel/ui/VisualNovelTextbox.hpp | 16 +++++- src/dawnglfw/host/DawnGLFWHost.cpp | 5 ++ src/dawnpokergame/CMakeLists.txt | 6 +++ src/dawnpokergame/game/DawnPokerGame.cpp | 22 +++++---- src/dawnpokergame/game/DawnPokerGame.hpp | 5 +- src/dawnpokergame/input/InputBinds.hpp | 9 ++++ 16 files changed, 196 insertions(+), 18 deletions(-) create mode 100644 src/dawn/time/CMakeLists.txt create mode 100644 src/dawn/time/TimeManager.cpp create mode 100644 src/dawn/time/TimeManager.hpp create mode 100644 src/dawnpokergame/input/InputBinds.hpp diff --git a/src/dawn/CMakeLists.txt b/src/dawn/CMakeLists.txt index 088a0383..7d947bf2 100644 --- a/src/dawn/CMakeLists.txt +++ b/src/dawn/CMakeLists.txt @@ -21,5 +21,6 @@ add_subdirectory(asset) add_subdirectory(display) add_subdirectory(input) add_subdirectory(scene) +add_subdirectory(time) add_subdirectory(ui) add_subdirectory(visualnovel) \ No newline at end of file diff --git a/src/dawn/game/DawnGame.hpp b/src/dawn/game/DawnGame.hpp index fec6cf96..4c5b390b 100644 --- a/src/dawn/game/DawnGame.hpp +++ b/src/dawn/game/DawnGame.hpp @@ -9,6 +9,8 @@ #include "display/RenderManager.hpp" #include "asset/AssetManager.hpp" #include "input/InputManager.hpp" +#include "time/TimeManager.hpp" +#include "input/InputBinds.hpp" #define DAWN_GAME_INIT_RESULT_SUCCESS 0 #define DAWN_GAME_UPDATE_RESULT_SUCCESS 0 @@ -24,6 +26,7 @@ namespace Dawn { RenderManager renderManager; AssetManager assetManager; InputManager inputManager; + TimeManager timeManager; /** * Construct a new instance of the DawnGame. diff --git a/src/dawn/scene/Scene.cpp b/src/dawn/scene/Scene.cpp index 21866ad0..9f94a9c8 100644 --- a/src/dawn/scene/Scene.cpp +++ b/src/dawn/scene/Scene.cpp @@ -25,6 +25,8 @@ void Scene::update() { // TODO: Cleanup old scene items // TODO: Tick scene items(?) + this->eventSceneUpdate.invoke(); + if(!this->game.timeManager.isPaused) this->eventSceneUnpausedUpdate.invoke(); } std::shared_ptr Scene::createSceneItem() { diff --git a/src/dawn/scene/Scene.hpp b/src/dawn/scene/Scene.hpp index d28703d3..03f2ccda 100644 --- a/src/dawn/scene/Scene.hpp +++ b/src/dawn/scene/Scene.hpp @@ -5,6 +5,7 @@ #pragma once #include "SceneItem.hpp" +#include "event/Event.hpp" namespace Dawn { class DawnGame; @@ -17,6 +18,8 @@ namespace Dawn { public: DawnGame &game; + Event<> eventSceneUpdate; + Event<> eventSceneUnpausedUpdate; /** * Construct a new Scene instance. diff --git a/src/dawn/time/CMakeLists.txt b/src/dawn/time/CMakeLists.txt new file mode 100644 index 00000000..c335bf6d --- /dev/null +++ b/src/dawn/time/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2022 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${DAWN_TARGET_NAME} + PRIVATE + TimeManager.cpp +) \ No newline at end of file diff --git a/src/dawn/time/TimeManager.cpp b/src/dawn/time/TimeManager.cpp new file mode 100644 index 00000000..6307da86 --- /dev/null +++ b/src/dawn/time/TimeManager.cpp @@ -0,0 +1,32 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "TimeManager.hpp" + +using namespace Dawn; + +TimeManager::TimeManager() { + +} + +void TimeManager::update(float_t delta) { + this->delta = delta; + this->time += delta; + if(!this->isPaused) { + this->unpausedTime += delta; + } +} + +void TimeManager::pause() { + if(this->isPaused) return; + this->isPaused = true; + this->eventTimePaused.invoke(); +} + +void TimeManager::resume() { + if(!this->isPaused) return; + this->isPaused = false; + this->eventTimeResumed.invoke(); +} \ No newline at end of file diff --git a/src/dawn/time/TimeManager.hpp b/src/dawn/time/TimeManager.hpp new file mode 100644 index 00000000..b9c3f606 --- /dev/null +++ b/src/dawn/time/TimeManager.hpp @@ -0,0 +1,43 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "dawnlibs.hpp" +#include "event/Event.hpp" + +namespace Dawn { + class TimeManager { + public: + float_t time = 0.0f; + float_t unpausedTime = 0.0f; + float_t delta = 0.016f; + bool_t isPaused = false; + + Event<> eventTimePaused; + Event<> eventTimeResumed; + + /** + * Constructor for the Time Manager. + */ + TimeManager(); + + /** + * Updates / Ticks the time manager instance. + * + * @param delta Time in seconds to tick the instance by. + */ + void update(float_t delta); + + /** + * Pauses the game. + */ + void pause(); + + /** + * Resumes the game. + */ + void resume(); + }; +} \ No newline at end of file diff --git a/src/dawn/ui/UILabel.cpp b/src/dawn/ui/UILabel.cpp index c3c071ca..8602d770 100644 --- a/src/dawn/ui/UILabel.cpp +++ b/src/dawn/ui/UILabel.cpp @@ -13,7 +13,6 @@ UILabel::UILabel(UICanvas &canvas) : UIComponent(canvas) { void UILabel::updatePositions() { UIComponent::updatePositions(); - this->updateMesh(); } @@ -59,5 +58,5 @@ void UILabel::drawSelf(UIShader &shader, glm::mat4 selfTransform) { shader.setUIModel(selfTransform); shader.setUITexture(&this->font->getTexture()); - this->font->draw(this->mesh, 0, -1); + this->font->draw(this->mesh, this->startQuad, this->endQuad); } \ No newline at end of file diff --git a/src/dawn/ui/UILabel.hpp b/src/dawn/ui/UILabel.hpp index 59539b98..28bd78c8 100644 --- a/src/dawn/ui/UILabel.hpp +++ b/src/dawn/ui/UILabel.hpp @@ -12,7 +12,6 @@ namespace Dawn { class UILabel : public UIComponent { private: Mesh mesh; - struct FontMeasure measure; bool_t needsRebuffering = true; Font *font = nullptr; std::string text = ""; @@ -26,6 +25,10 @@ namespace Dawn { void updateMesh(); public: + struct FontMeasure measure; + int32_t startQuad = 0; + int32_t endQuad = -1; + /** The colour of this label */ struct Color textColor = COLOR_MAGENTA; diff --git a/src/dawn/visualnovel/ui/VisualNovelTextbox.cpp b/src/dawn/visualnovel/ui/VisualNovelTextbox.cpp index 441b3f9b..49d3b385 100644 --- a/src/dawn/visualnovel/ui/VisualNovelTextbox.cpp +++ b/src/dawn/visualnovel/ui/VisualNovelTextbox.cpp @@ -4,6 +4,7 @@ // https://opensource.org/licenses/MIT #include "VisualNovelTextbox.hpp" +#include "game/DawnGame.hpp" using namespace Dawn; @@ -12,10 +13,58 @@ VisualNovelTextbox::VisualNovelTextbox(UICanvas &canvas) : border(canvas), label(canvas) { + // Border this->addChild(&this->border); + + // Label this->addChild(&this->label); + this->label.setText("The quick brown fox jumps over the lazy dog."); + this->label.startQuad = 0; + this->label.endQuad = 1; + + this->updatePositions(); + + this->canvas.getScene().eventSceneUnpausedUpdate.addListener( + this, &VisualNovelTextbox::textboxOnSceneUpdate + ); +} + +void VisualNovelTextbox::textboxOnSceneUpdate() { + DawnGame &game = this->canvas.getGame(); + if(game.inputManager.isDown(INPUT_BIND_ACCEPT)) { + this->timeCharacter += game.timeManager.delta * VISUAL_NOVEL_TEXTBOX_SPEED_FASTER; + } else { + this->timeCharacter += game.timeManager.delta * VISUAL_NOVEL_TEXTBOX_SPEED; + } + this->label.endQuad = (int32_t)mathFloorFloat(this->timeCharacter); +} + +void VisualNovelTextbox::updatePositions() { + UIComponent::updatePositions(); + + this->border.setTransform( + UI_COMPONENT_ALIGN_STRETCH, UI_COMPONENT_ALIGN_STRETCH, + glm::vec4(0, 0, 0, 0), + 0.0f + ); + + this->label.setTransform( + UI_COMPONENT_ALIGN_STRETCH, + UI_COMPONENT_ALIGN_STRETCH, + glm::vec4( + this->border.getBorderSize() + this->labelPadding, + this->border.getBorderSize() + this->labelPadding + ), + 1.0f + ); } void VisualNovelTextbox::drawSelf(UIShader &shader, glm::mat4 self) { +} + +VisualNovelTextbox::~VisualNovelTextbox() { + this->canvas.getScene().eventSceneUnpausedUpdate.removeListener( + this, &VisualNovelTextbox::textboxOnSceneUpdate + ); } \ No newline at end of file diff --git a/src/dawn/visualnovel/ui/VisualNovelTextbox.hpp b/src/dawn/visualnovel/ui/VisualNovelTextbox.hpp index fa79ea3e..d1c7ef76 100644 --- a/src/dawn/visualnovel/ui/VisualNovelTextbox.hpp +++ b/src/dawn/visualnovel/ui/VisualNovelTextbox.hpp @@ -7,16 +7,28 @@ #include "ui/UISprite.hpp" #include "ui/UIBorder.hpp" #include "ui/UILabel.hpp" +#include "util/mathutils.hpp" + +#define VISUAL_NOVEL_TEXTBOX_SPEED 25.0f +#define VISUAL_NOVEL_TEXTBOX_SPEED_FASTER 40.0f namespace Dawn { class VisualNovelTextbox : public UIComponent { private: - UIBorder border; - UILabel label; glm::vec2 labelPadding = glm::vec2(0, 0); + void updatePositions() override; + + void textboxOnSceneUpdate(); + public: + float_t timeCharacter = 0.0f; + UIBorder border; + UILabel label; + VisualNovelTextbox(UICanvas &canvas); void drawSelf(UIShader &shader, glm::mat4 selfTransform) override; + + ~VisualNovelTextbox(); }; } \ No newline at end of file diff --git a/src/dawnglfw/host/DawnGLFWHost.cpp b/src/dawnglfw/host/DawnGLFWHost.cpp index 6a31d811..1c21dbb5 100644 --- a/src/dawnglfw/host/DawnGLFWHost.cpp +++ b/src/dawnglfw/host/DawnGLFWHost.cpp @@ -56,6 +56,11 @@ int32_t DawnHost::init(DawnGame &game) { DAWN_GLFW_WINDOW_HEIGHT_DEFAULT ); + // Default keybinds + game.inputManager.bind(INPUT_BIND_ACCEPT, GLFW_KEY_ENTER); + game.inputManager.bind(INPUT_BIND_ACCEPT, GLFW_KEY_E); + game.inputManager.bind(INPUT_BIND_ACCEPT, GLFW_KEY_SPACE); + // Initialize the game auto result = game.init(); if(result != DAWN_GAME_INIT_RESULT_SUCCESS) return result; diff --git a/src/dawnpokergame/CMakeLists.txt b/src/dawnpokergame/CMakeLists.txt index c6512c80..14303abd 100644 --- a/src/dawnpokergame/CMakeLists.txt +++ b/src/dawnpokergame/CMakeLists.txt @@ -9,5 +9,11 @@ set(DAWN_TARGET_NAME "PokerGame" CACHE INTERNAL ${DAWN_CACHE_TARGET}) # Build Project add_executable(${DAWN_TARGET_NAME}) +# Includes +target_include_directories(${DAWN_TARGET_NAME} + PUBLIC + ${CMAKE_CURRENT_LIST_DIR} +) + # Subdirs add_subdirectory(game) \ No newline at end of file diff --git a/src/dawnpokergame/game/DawnPokerGame.cpp b/src/dawnpokergame/game/DawnPokerGame.cpp index 40e98874..90b63026 100644 --- a/src/dawnpokergame/game/DawnPokerGame.cpp +++ b/src/dawnpokergame/game/DawnPokerGame.cpp @@ -5,11 +5,12 @@ #include "DawnPokerGame.hpp" #include "asset/assets/TextureAsset.hpp" -#include "ui/UIBorder.hpp" +#include "asset/assets/TrueTypeAsset.hpp" +#include "visualnovel/ui/VisualNovelTextbox.hpp" using namespace Dawn; -std::shared_ptr asset; +std::shared_ptr assetFont; std::shared_ptr assetTexture; DawnGame::DawnGame(DawnHost &host) : @@ -31,17 +32,19 @@ int32_t DawnGame::init() { auto canvas = UICanvas::createCanvas(this->scene); - asset = this->assetManager.load("truetype_ark"); + assetFont = this->assetManager.load("truetype_ark"); assetTexture = this->assetManager.load("texture_test"); - while(!asset->loaded || !assetTexture->loaded) { + while(!assetFont->loaded || !assetTexture->loaded) { this->assetManager.update(); } - auto border = canvas->addElement(); - border->texture = assetTexture->texture.get(); - border->setTransform( - UI_COMPONENT_ALIGN_STRETCH, UI_COMPONENT_ALIGN_STRETCH, - glm::vec4(32, 32, 32, 32), 0.0f + auto textbox = canvas->addElement(); + textbox->border.texture = assetTexture->texture.get(); + textbox->label.setFont(&assetFont->font); + textbox->label.setFontSize(40); + textbox->setTransform( + UI_COMPONENT_ALIGN_STRETCH, UI_COMPONENT_ALIGN_END, + glm::vec4(0, 250, 0, 0), 0.0f ); // auto sprite = canvas->addElement(); @@ -59,6 +62,7 @@ int32_t DawnGame::init() { int32_t DawnGame::update(float_t delta) { this->assetManager.update(); this->inputManager.update(); + this->timeManager.update(delta); if(this->scene != nullptr) this->scene->update(); diff --git a/src/dawnpokergame/game/DawnPokerGame.hpp b/src/dawnpokergame/game/DawnPokerGame.hpp index f87d5c43..036921a0 100644 --- a/src/dawnpokergame/game/DawnPokerGame.hpp +++ b/src/dawnpokergame/game/DawnPokerGame.hpp @@ -5,7 +5,4 @@ #pragma once #include "game/DawnGame.hpp" -#include "scene/components/Components.hpp" -#include "ui/UILabel.hpp" -#include "ui/UISprite.hpp" -#include "asset/assets/TrueTypeAsset.hpp" \ No newline at end of file +#include "scene/components/Components.hpp" \ No newline at end of file diff --git a/src/dawnpokergame/input/InputBinds.hpp b/src/dawnpokergame/input/InputBinds.hpp new file mode 100644 index 00000000..9e400ad8 --- /dev/null +++ b/src/dawnpokergame/input/InputBinds.hpp @@ -0,0 +1,9 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "input/InputManager.hpp" + +#define INPUT_BIND_ACCEPT ((inputbind_t)1) \ No newline at end of file