diff --git a/.gitignore b/.gitignore index ce912088..80f9c5d0 100644 --- a/.gitignore +++ b/.gitignore @@ -74,4 +74,5 @@ oldsrc node_modules yarn.lock -*.log \ No newline at end of file +*.log +assets/borrowed \ No newline at end of file diff --git a/src/dawn/scene/components/display/TiledSprite.cpp b/src/dawn/scene/components/display/TiledSprite.cpp index 923f7f07..fdb7d336 100644 --- a/src/dawn/scene/components/display/TiledSprite.cpp +++ b/src/dawn/scene/components/display/TiledSprite.cpp @@ -71,11 +71,9 @@ void TiledSprite::setSize(glm::vec2 size) { } std::vector TiledSprite::getDependencies() { - this->renderer = this->item->getComponent(); this->host = this->item->getComponent(); return std::vector{ - this->renderer, this->host }; } diff --git a/src/dawn/scene/components/display/TiledSprite.hpp b/src/dawn/scene/components/display/TiledSprite.hpp index 127fdc24..92edd8a7 100644 --- a/src/dawn/scene/components/display/TiledSprite.hpp +++ b/src/dawn/scene/components/display/TiledSprite.hpp @@ -16,7 +16,6 @@ namespace Dawn { class TiledSprite : public SceneItemComponent { protected: - MeshRenderer *renderer = nullptr; MeshHost *host = nullptr; Tileset *tileset = nullptr; flag_t flipState = TILED_SPRITE_FLIP_Y; diff --git a/src/dawn/ui/UISprite.cpp b/src/dawn/ui/UISprite.cpp index a01b876b..707fa392 100644 --- a/src/dawn/ui/UISprite.cpp +++ b/src/dawn/ui/UISprite.cpp @@ -26,7 +26,7 @@ void UISprite::drawSelf(UIShader *uiShader, glm::mat4 selfTransform) { uiShader->setUITexture(nullptr); uiShader->setUIModel(selfTransform); uiShader->setUIModel(glm::mat4(1.0f)); - uiShader->setUIColor(COLOR_WHITE); + uiShader->setUIColor(this->color); uiShader->setUITexture(this->texture); this->mesh.draw(MESH_DRAW_MODE_TRIANGLES, 0, -1); diff --git a/src/dawn/ui/UISprite.hpp b/src/dawn/ui/UISprite.hpp index e9df79b6..93168e3e 100644 --- a/src/dawn/ui/UISprite.hpp +++ b/src/dawn/ui/UISprite.hpp @@ -16,7 +16,8 @@ namespace Dawn { public: Mesh mesh; - Texture *texture; + struct Color color = COLOR_WHITE; + Texture *texture = nullptr; /** * UI Sprite Constructor, use the UIElement / UIComponent create instead. diff --git a/src/dawn/visualnovel/VisualNovelManager.cpp b/src/dawn/visualnovel/VisualNovelManager.cpp index 29b55065..78e06cbb 100644 --- a/src/dawn/visualnovel/VisualNovelManager.cpp +++ b/src/dawn/visualnovel/VisualNovelManager.cpp @@ -10,8 +10,6 @@ using namespace Dawn; VisualNovelManager::VisualNovelManager(SceneItem *item) : SceneItemComponent(item) { - this->uiCanvas = nullptr; - this->textBox = nullptr; } void VisualNovelManager::onStart() { @@ -21,7 +19,10 @@ void VisualNovelManager::onStart() { assertNotNull(this->uiCanvas); this->textBox = this->uiCanvas->findElement(); + this->fader = this->uiCanvas->findElement(); + assertNotNull(this->textBox); + assertNotNull(this->fader); this->getScene()->eventSceneUnpausedUpdate.addListener(this, &VisualNovelManager::onUnpausedUpdate); } diff --git a/src/dawn/visualnovel/VisualNovelManager.hpp b/src/dawn/visualnovel/VisualNovelManager.hpp index 829df1a3..b6cf0fa7 100644 --- a/src/dawn/visualnovel/VisualNovelManager.hpp +++ b/src/dawn/visualnovel/VisualNovelManager.hpp @@ -6,22 +6,23 @@ #pragma once #include "scene/SceneItemComponent.hpp" #include "visualnovel/ui/VisualNovelTextbox.hpp" +#include "visualnovel/ui/VisualNovelFader.hpp" namespace Dawn { class IVisualNovelEvent; class VisualNovelManager : public SceneItemComponent { private: - UICanvas *uiCanvas; IVisualNovelEvent* currentEvent = nullptr; public: + UICanvas *uiCanvas = nullptr; + VisualNovelTextbox *textBox = nullptr; + VisualNovelFader *fader = nullptr; /** Event listener for unpaused scene updates. */ void onUnpausedUpdate(); - - VisualNovelTextbox *textBox; /** * Constructs a visual novel manager, scene item component. * diff --git a/src/dawn/visualnovel/events/VisualNovelAnimationEvent.hpp b/src/dawn/visualnovel/events/VisualNovelAnimationEvent.hpp new file mode 100644 index 00000000..948fd744 --- /dev/null +++ b/src/dawn/visualnovel/events/VisualNovelAnimationEvent.hpp @@ -0,0 +1,34 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "visualnovel/VisualNovelManager.hpp" +#include "display/animation/Animation.hpp" + +namespace Dawn { + class VisualNovelAnimationEvent : public IVisualNovelEvent { + protected: + void onStart(IVisualNovelEvent *previous) override { + + } + + bool_t onUpdate() override { + this->animation->tick(this->manager->getGame()->timeManager.delta); + return this->animation->finished; + } + + void onEnd() override { + + } + + public: + struct Animation *animation; + + VisualNovelAnimationEvent(VisualNovelManager *manager) : + IVisualNovelEvent(manager) + { + } + }; +} \ No newline at end of file diff --git a/src/dawn/visualnovel/events/VisualNovelFadeEvent.hpp b/src/dawn/visualnovel/events/VisualNovelFadeEvent.hpp new file mode 100644 index 00000000..d0b14588 --- /dev/null +++ b/src/dawn/visualnovel/events/VisualNovelFadeEvent.hpp @@ -0,0 +1,46 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "VisualNovelSimpleAnimationEvent.hpp" + +namespace Dawn { + class VisualNovelFadeEvent : + public VisualNovelSimpleAnimationEvent + { + protected: + struct Color color; + bool_t fadeIn; + float_t duration; + + void onStart(IVisualNovelEvent *previous) override { + VisualNovelSimpleAnimationEvent::onStart(previous); + + this->simpleAnimation = SimpleAnimation(&this->manager->fader->color.a); + this->manager->fader->color = this->color; + this->manager->fader->color.a = this->fadeIn ? 0.0f : 1.0f; + this->simpleAnimation.addKeyframe( + 0.0f, this->fadeIn ? 0.0f : 1.0f + ); + this->simpleAnimation.addKeyframe( + this->duration, this->fadeIn ? 1.0f : 0.0f + ); + } + + public: + VisualNovelFadeEvent( + VisualNovelManager *man, + struct Color color, + bool_t fadeIn, + easefunction_t *ease, + float_t duration + ) : VisualNovelSimpleAnimationEvent(man, &duration) { + this->color = color; + this->fadeIn = fadeIn; + this->duration = duration; + this->simpleAnimation.easing = ease; + } + }; +} \ No newline at end of file diff --git a/src/dawn/visualnovel/events/VisualNovelSimpleAnimationEvent.hpp b/src/dawn/visualnovel/events/VisualNovelSimpleAnimationEvent.hpp new file mode 100644 index 00000000..066d8b89 --- /dev/null +++ b/src/dawn/visualnovel/events/VisualNovelSimpleAnimationEvent.hpp @@ -0,0 +1,26 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "VisualNovelAnimationEvent.hpp" +#include "display/animation/SimpleAnimation.hpp" + +namespace Dawn { + template + class VisualNovelSimpleAnimationEvent : public VisualNovelAnimationEvent { + public: + struct SimpleAnimation simpleAnimation; + + VisualNovelSimpleAnimationEvent( + VisualNovelManager *man, + T *modifies + ) : + VisualNovelAnimationEvent(man), + simpleAnimation(modifies) + { + this->animation = &this->simpleAnimation; + } + }; +} \ No newline at end of file diff --git a/src/dawn/visualnovel/ui/VisualNovelFader.hpp b/src/dawn/visualnovel/ui/VisualNovelFader.hpp new file mode 100644 index 00000000..32b203f8 --- /dev/null +++ b/src/dawn/visualnovel/ui/VisualNovelFader.hpp @@ -0,0 +1,29 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "ui/UISprite.hpp" +#include "ui/UIEmpty.hpp" + +namespace Dawn { + class VisualNovelFader : public UISprite { + private: + + public: + static VisualNovelFader * create(UICanvas *canvas) { + assertNotNull(canvas); + auto item = canvas->addElement(); + item->setTransform( + UI_COMPONENT_ALIGN_STRETCH, UI_COMPONENT_ALIGN_STRETCH, + glm::vec4(0, 0, 0, 0), + 0.0f + ); + return item; + } + + VisualNovelFader(UICanvas *canvas) : UISprite(canvas) { + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/CMakeLists.txt b/src/dawnpokergame/CMakeLists.txt index 96d4758b..1716b66e 100644 --- a/src/dawnpokergame/CMakeLists.txt +++ b/src/dawnpokergame/CMakeLists.txt @@ -23,7 +23,12 @@ add_subdirectory(visualnovel) # Assets tool_texture(texture_test texture_test.png) -# tool_texture(texture_penny characters/penny/penny-blink.png) +tool_texture(texture_city_day borrowed/city_day.png) +tool_texture(texture_city_night borrowed/city_night.png) +tool_texture(texture_tavern_day borrowed/tavern_day.png) +tool_texture(texture_tavern_morning borrowed/tavern_morning.png) +tool_texture(texture_tavern_night borrowed/tavern_night.png) +tool_texture(texture_village_day borrowed/village_day.png) tool_tileset(tileset_penny texture_penny characters/penny/penny-blink.png 1 22) tool_truetype(truetype_ark ark-pixel.ttf @@ -37,4 +42,10 @@ add_dependencies(${DAWN_TARGET_NAME} texture_test tileset_penny truetype_ark + texture_city_day + texture_city_night + texture_tavern_day + texture_tavern_morning + texture_tavern_night + texture_village_day ) \ No newline at end of file diff --git a/src/dawnpokergame/scenes/TestScene.hpp b/src/dawnpokergame/scenes/TestScene.hpp index dfcbcce4..b16d8f10 100644 --- a/src/dawnpokergame/scenes/TestScene.hpp +++ b/src/dawnpokergame/scenes/TestScene.hpp @@ -11,6 +11,7 @@ #include "ui/PokerGameTextbox.hpp" #include "visualnovel/VisualNovelManager.hpp" #include "visualnovel/events/VisualNovelTextboxEvent.hpp" +#include "visualnovel/events/VisualNovelFadeEvent.hpp" #include "poker/PokerGame.hpp" #include "visualnovel/events/PokerBetLoopEvent.hpp" #include "visualnovel/events/PokerInitialEvent.hpp" @@ -44,6 +45,7 @@ namespace Dawn { // UI auto canvas = UICanvas::createCanvas(this); auto textbox = PokerGameTextbox::create(canvas); + auto vnFader = VisualNovelFader::create(canvas); // VN Manager auto vnManagerItem = this->createSceneItem(); @@ -62,7 +64,10 @@ namespace Dawn { } auto betting = vnManager - ->setEvent(new VisualNovelTextboxEvent(vnManager, "Starting Game")) + ->setEvent(new VisualNovelFadeEvent( + vnManager, COLOR_BLACK, true, &easeOutCubic, 5.0f + )) + ->then(new VisualNovelTextboxEvent(vnManager, "Starting Game")) ->then(new PokerNewGameEvent(vnManager)) ->then(new VisualNovelTextboxEvent(vnManager, "Game Started")) ->then(new PokerInitialEvent(vnManager))