From 6d86fc10bc60aca90a75504dba2a7f433802f213 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 18 Apr 2023 09:55:11 -0700 Subject: [PATCH] Starting new VN Structure --- .../CMakeLists.txt | 10 + src/dawn/games/CMakeLists.txt | 4 +- src/dawn/games/visualnovel/CMakeLists.txt | 16 -- .../games/visualnovel/VisualNovelManager.cpp | 85 ------ .../games/visualnovel/VisualNovelManager.hpp | 124 --------- .../SimpleVisualNovelBackground.cpp | 56 ---- .../SimpleVisualNovelBackground.hpp | 44 --- .../components/VisualNovelCharacter.cpp | 25 -- .../components/VisualNovelCharacter.hpp | 37 --- .../games/visualnovel/events/CMakeLists.txt | 18 -- .../events/VisualNovelCallbackEvent.hpp | 38 --- ...VisualNovelChangeSimpleBackgroundEvent.cpp | 32 --- ...VisualNovelChangeSimpleBackgroundEvent.hpp | 25 -- .../events/VisualNovelEmptyEvent.cpp | 25 -- .../events/VisualNovelEmptyEvent.hpp | 19 -- .../events/VisualNovelFadeEvent.cpp | 35 --- .../events/VisualNovelFadeEvent.hpp | 36 --- .../events/VisualNovelTextboxEvent.cpp | 59 ----- .../events/VisualNovelTextboxEvent.hpp | 42 --- .../animation/VisualNovelAnimationEvent.cpp | 27 -- .../animation/VisualNovelAnimationEvent.hpp | 22 -- .../VisualNovelSimpleAnimationEvent.hpp | 26 -- ...isualNovelSimpleCallbackAnimationEvent.hpp | 24 -- .../events/characters/CMakeLists.txt | 11 - .../VisualNovelFadeCharacterEvent.cpp | 28 -- .../VisualNovelFadeCharacterEvent.hpp | 24 -- .../VisualNovelTransformItemEvent.cpp | 53 ---- .../VisualNovelTransformItemEvent.hpp | 36 --- .../visualnovel/events/timing/CMakeLists.txt | 11 - .../events/timing/VisualNovelBatchEvent.cpp | 66 ----- .../events/timing/VisualNovelBatchEvent.hpp | 27 -- .../events/timing/VisualNovelPauseEvent.cpp | 28 -- .../events/timing/VisualNovelPauseEvent.hpp | 28 -- .../games/visualnovel/scene/SimpleVNScene.cpp | 61 ----- .../games/visualnovel/scene/SimpleVNScene.hpp | 55 ---- .../games/visualnovel/ui/VisualNovelFader.cpp | 25 -- .../games/visualnovel/ui/VisualNovelFader.hpp | 32 --- .../visualnovel/ui/VisualNovelTextbox.cpp | 250 ------------------ .../visualnovel/ui/VisualNovelTextbox.hpp | 167 ------------ src/dawn/games/vn/CMakeLists.txt | 8 + .../scene => vn/components}/CMakeLists.txt | 4 +- src/dawn/games/vn/components/VNManager.cpp | 36 +++ src/dawn/games/vn/components/VNManager.hpp | 60 +++++ .../animation => vn/events}/CMakeLists.txt | 4 +- src/dawn/games/vn/events/VNDummyEvent.hpp | 17 ++ src/dawn/games/vn/events/VNEvent.cpp | 38 +++ src/dawn/games/vn/events/VNEvent.hpp | 79 ++++++ src/dawn/prefabs/SimpleSpinningCubePrefab.hpp | 4 +- src/dawn/state/State.hpp | 56 ++-- src/dawnliminal/CMakeLists.txt | 17 ++ .../ui => dawnliminal/game}/CMakeLists.txt | 5 +- src/dawnliminal/game/LiminalGame.cpp | 13 + src/dawnliminal/input/InputBinds.hpp | 19 ++ .../save}/CMakeLists.txt | 19 +- src/dawnliminal/save/LiminalSave.cpp | 12 + src/dawnliminal/scenes/HelloWorldScene.hpp | 48 ++++ src/dawnrose/scene/components/HurtHazard.cpp | 2 - .../components/entity/EntityInteractable.cpp | 17 ++ .../components/entity/EntityInteractable.hpp | 20 ++ .../components/entity/EntityInteractor.cpp | 27 ++ .../components/entity/EntityInteractor.hpp | 21 ++ src/dawntools/CMakeLists.txt | 3 +- src/dawntools/vnscenetool/CMakeLists.txt | 63 +++++ .../vnscenetool/VNSceneEventsParser.cpp | 42 +++ .../vnscenetool/VNSceneEventsParser.hpp | 26 ++ src/dawntools/vnscenetool/VNSceneParser.cpp | 44 +++ src/dawntools/vnscenetool/VNSceneParser.hpp | 25 ++ src/dawntools/vnscenetool/VNSceneTool.cpp | 43 +++ src/dawntools/vnscenetool/VNSceneTool.hpp | 20 ++ .../vnscenetool/events/CMakeLists.txt | 10 + .../vnscenetool/events/VNPositionParser.cpp | 25 ++ .../vnscenetool/events/VNPositionParser.hpp | 6 + 72 files changed, 803 insertions(+), 1761 deletions(-) create mode 100644 cmake/targets/target-liminal-linux64-glfw/CMakeLists.txt delete mode 100644 src/dawn/games/visualnovel/CMakeLists.txt delete mode 100644 src/dawn/games/visualnovel/VisualNovelManager.cpp delete mode 100644 src/dawn/games/visualnovel/VisualNovelManager.hpp delete mode 100644 src/dawn/games/visualnovel/components/SimpleVisualNovelBackground.cpp delete mode 100644 src/dawn/games/visualnovel/components/SimpleVisualNovelBackground.hpp delete mode 100644 src/dawn/games/visualnovel/components/VisualNovelCharacter.cpp delete mode 100644 src/dawn/games/visualnovel/components/VisualNovelCharacter.hpp delete mode 100644 src/dawn/games/visualnovel/events/CMakeLists.txt delete mode 100644 src/dawn/games/visualnovel/events/VisualNovelCallbackEvent.hpp delete mode 100644 src/dawn/games/visualnovel/events/VisualNovelChangeSimpleBackgroundEvent.cpp delete mode 100644 src/dawn/games/visualnovel/events/VisualNovelChangeSimpleBackgroundEvent.hpp delete mode 100644 src/dawn/games/visualnovel/events/VisualNovelEmptyEvent.cpp delete mode 100644 src/dawn/games/visualnovel/events/VisualNovelEmptyEvent.hpp delete mode 100644 src/dawn/games/visualnovel/events/VisualNovelFadeEvent.cpp delete mode 100644 src/dawn/games/visualnovel/events/VisualNovelFadeEvent.hpp delete mode 100644 src/dawn/games/visualnovel/events/VisualNovelTextboxEvent.cpp delete mode 100644 src/dawn/games/visualnovel/events/VisualNovelTextboxEvent.hpp delete mode 100644 src/dawn/games/visualnovel/events/animation/VisualNovelAnimationEvent.cpp delete mode 100644 src/dawn/games/visualnovel/events/animation/VisualNovelAnimationEvent.hpp delete mode 100644 src/dawn/games/visualnovel/events/animation/VisualNovelSimpleAnimationEvent.hpp delete mode 100644 src/dawn/games/visualnovel/events/animation/VisualNovelSimpleCallbackAnimationEvent.hpp delete mode 100644 src/dawn/games/visualnovel/events/characters/CMakeLists.txt delete mode 100644 src/dawn/games/visualnovel/events/characters/VisualNovelFadeCharacterEvent.cpp delete mode 100644 src/dawn/games/visualnovel/events/characters/VisualNovelFadeCharacterEvent.hpp delete mode 100644 src/dawn/games/visualnovel/events/characters/VisualNovelTransformItemEvent.cpp delete mode 100644 src/dawn/games/visualnovel/events/characters/VisualNovelTransformItemEvent.hpp delete mode 100644 src/dawn/games/visualnovel/events/timing/CMakeLists.txt delete mode 100644 src/dawn/games/visualnovel/events/timing/VisualNovelBatchEvent.cpp delete mode 100644 src/dawn/games/visualnovel/events/timing/VisualNovelBatchEvent.hpp delete mode 100644 src/dawn/games/visualnovel/events/timing/VisualNovelPauseEvent.cpp delete mode 100644 src/dawn/games/visualnovel/events/timing/VisualNovelPauseEvent.hpp delete mode 100644 src/dawn/games/visualnovel/scene/SimpleVNScene.cpp delete mode 100644 src/dawn/games/visualnovel/scene/SimpleVNScene.hpp delete mode 100644 src/dawn/games/visualnovel/ui/VisualNovelFader.cpp delete mode 100644 src/dawn/games/visualnovel/ui/VisualNovelFader.hpp delete mode 100644 src/dawn/games/visualnovel/ui/VisualNovelTextbox.cpp delete mode 100644 src/dawn/games/visualnovel/ui/VisualNovelTextbox.hpp create mode 100644 src/dawn/games/vn/CMakeLists.txt rename src/dawn/games/{visualnovel/scene => vn/components}/CMakeLists.txt (68%) create mode 100644 src/dawn/games/vn/components/VNManager.cpp create mode 100644 src/dawn/games/vn/components/VNManager.hpp rename src/dawn/games/{visualnovel/events/animation => vn/events}/CMakeLists.txt (65%) create mode 100644 src/dawn/games/vn/events/VNDummyEvent.hpp create mode 100644 src/dawn/games/vn/events/VNEvent.cpp create mode 100644 src/dawn/games/vn/events/VNEvent.hpp create mode 100644 src/dawnliminal/CMakeLists.txt rename src/{dawn/games/visualnovel/ui => dawnliminal/game}/CMakeLists.txt (60%) create mode 100644 src/dawnliminal/game/LiminalGame.cpp create mode 100644 src/dawnliminal/input/InputBinds.hpp rename src/{dawn/games/visualnovel/components => dawnliminal/save}/CMakeLists.txt (59%) create mode 100644 src/dawnliminal/save/LiminalSave.cpp create mode 100644 src/dawnliminal/scenes/HelloWorldScene.hpp create mode 100644 src/dawnrose/scene/components/entity/EntityInteractable.cpp create mode 100644 src/dawnrose/scene/components/entity/EntityInteractable.hpp create mode 100644 src/dawnrose/scene/components/entity/EntityInteractor.cpp create mode 100644 src/dawnrose/scene/components/entity/EntityInteractor.hpp create mode 100644 src/dawntools/vnscenetool/CMakeLists.txt create mode 100644 src/dawntools/vnscenetool/VNSceneEventsParser.cpp create mode 100644 src/dawntools/vnscenetool/VNSceneEventsParser.hpp create mode 100644 src/dawntools/vnscenetool/VNSceneParser.cpp create mode 100644 src/dawntools/vnscenetool/VNSceneParser.hpp create mode 100644 src/dawntools/vnscenetool/VNSceneTool.cpp create mode 100644 src/dawntools/vnscenetool/VNSceneTool.hpp create mode 100644 src/dawntools/vnscenetool/events/CMakeLists.txt create mode 100644 src/dawntools/vnscenetool/events/VNPositionParser.cpp create mode 100644 src/dawntools/vnscenetool/events/VNPositionParser.hpp diff --git a/cmake/targets/target-liminal-linux64-glfw/CMakeLists.txt b/cmake/targets/target-liminal-linux64-glfw/CMakeLists.txt new file mode 100644 index 00000000..559b577e --- /dev/null +++ b/cmake/targets/target-liminal-linux64-glfw/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +set(DAWN_BUILDING dawnliminal CACHE INTERNAL ${DAWN_CACHE_TARGET}) +set(DAWN_TARGET_LINUX64 true CACHE INTERNAL ${DAWN_CACHE_TARGET}) +set(DAWN_TARGET_GLFW true CACHE INTERNAL ${DAWN_CACHE_TARGET}) +set(DAWN_TARGET_NAME "Liminal" CACHE INTERNAL ${DAWN_CACHE_TARGET}) +set(DAWN_VISUAL_NOVEL true CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/src/dawn/games/CMakeLists.txt b/src/dawn/games/CMakeLists.txt index d3f4878f..302c92e9 100644 --- a/src/dawn/games/CMakeLists.txt +++ b/src/dawn/games/CMakeLists.txt @@ -4,9 +4,9 @@ # https://opensource.org/licenses/MIT # Subdirs -add_subdirectory(poker) +# add_subdirectory(poker) add_subdirectory(tictactoe) if(DAWN_VISUAL_NOVEL) - add_subdirectory(visualnovel) + add_subdirectory(vn) endif() \ No newline at end of file diff --git a/src/dawn/games/visualnovel/CMakeLists.txt b/src/dawn/games/visualnovel/CMakeLists.txt deleted file mode 100644 index 556ca785..00000000 --- a/src/dawn/games/visualnovel/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# 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 - VisualNovelManager.cpp -) - -# Subdirs -add_subdirectory(components) -add_subdirectory(events) -add_subdirectory(scene) -add_subdirectory(ui) \ No newline at end of file diff --git a/src/dawn/games/visualnovel/VisualNovelManager.cpp b/src/dawn/games/visualnovel/VisualNovelManager.cpp deleted file mode 100644 index b520298c..00000000 --- a/src/dawn/games/visualnovel/VisualNovelManager.cpp +++ /dev/null @@ -1,85 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VisualNovelManager.hpp" -#include "visualnovel/scene/SimpleVNScene.hpp" - -using namespace Dawn; - -VisualNovelManager::VisualNovelManager(SceneItem *item) : - SceneItemComponent(item) -{ -} - -void VisualNovelManager::onStart() { - SceneItemComponent::onStart(); - - this->uiCanvas = getScene()->findComponent(); - assertNotNull(this->uiCanvas); - - this->textBox = this->uiCanvas->findElement(); - this->fader = this->uiCanvas->findElement(); - - assertNotNull(this->textBox); - - this->getScene()->eventSceneUnpausedUpdate.addListener(this, &VisualNovelManager::onUnpausedUpdate); - - // Handle queuing simple VN Manager - auto scene = this->getScene(); - auto sceneAsSimple = dynamic_cast(scene); - if(sceneAsSimple != nullptr) { - this->setEvent(sceneAsSimple->getVNEvent()); - } - - if(this->currentEvent != nullptr) this->currentEvent->start(nullptr); -} - -void VisualNovelManager::onUnpausedUpdate() { - if(this->currentEvent == nullptr) return; - - if(!this->currentEvent->hasStarted) this->currentEvent->start(nullptr); - if(this->currentEvent->update()) return; - this->setEvent(this->currentEvent->end()); -} - -VisualNovelManager::~VisualNovelManager() { - if(this->currentEvent != nullptr) { - delete this->currentEvent; - } - this->getScene()->eventSceneUnpausedUpdate.removeListener(this, &VisualNovelManager::onUnpausedUpdate); -} - - -// // // // // // // // // // // // // // // // // // // // // // // // // // // - - -IVisualNovelEvent::IVisualNovelEvent(VisualNovelManager *man) { - assertNotNull(man); - this->manager = man; -} - -void IVisualNovelEvent::start(IVisualNovelEvent *previous) { - this->hasStarted = true; - this->onStart(previous); -} - -bool_t IVisualNovelEvent::update() { - return this->onUpdate(); -} - -IVisualNovelEvent * IVisualNovelEvent::end() { - this->onEnd(); - - if(this->doNext != nullptr) { - auto next = this->doNext; - this->doNext = nullptr; - return next; - } - return nullptr; -} - -IVisualNovelEvent::~IVisualNovelEvent() { - if(this->doNext != nullptr) delete this->doNext; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/VisualNovelManager.hpp b/src/dawn/games/visualnovel/VisualNovelManager.hpp deleted file mode 100644 index b3fa7be3..00000000 --- a/src/dawn/games/visualnovel/VisualNovelManager.hpp +++ /dev/null @@ -1,124 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#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: - IVisualNovelEvent* currentEvent = nullptr; - - public: - UICanvas *uiCanvas = nullptr; - VisualNovelTextbox *textBox = nullptr; - VisualNovelFader *fader = nullptr; - - AudioSource *audioBackground = nullptr; - AudioSource *audioCharacter = nullptr; - - /** Event listener for unpaused scene updates. */ - void onUnpausedUpdate(); - - /** - * Constructs a visual novel manager, scene item component. - * - * @param item Item that the VN manager belongs to. - */ - VisualNovelManager(SceneItem *item); - - /** - * Sets the currently active visual novel event. This is assumed to be - * the only way to handle events (no multiples currently). - * - * @param event Event to set. - */ - template - T * setEvent(T *event) { - auto oldCurrent = this->currentEvent; - this->currentEvent = event; - if(this->hasInitialized && event != nullptr) event->start(oldCurrent); - delete oldCurrent; - return event; - } - - /** - * Override to the SceneItemComponent on start event. - * - */ - void onStart() override; - - /** - * Dispose / Cleanup the VN manager. - * - */ - ~VisualNovelManager(); - - friend class IVisualNovelEvent; - }; - - - class IVisualNovelEvent { - protected: - VisualNovelManager *manager; - IVisualNovelEvent *doNext = nullptr; - bool_t hasStarted = false; - - virtual void onStart(IVisualNovelEvent *previous) = 0; - virtual bool_t onUpdate() = 0; - virtual void onEnd() = 0; - - public: - IVisualNovelEvent(VisualNovelManager *manager); - - /** - * Chains an event to be executed after this event has finished. - * - * @param next Event to process next. - * @return Whatever you pass in to next. - */ - template - T * then(T *next) { - this->doNext = next; - return next; - } - - /** - * Begins this visual novel event, internally updates some flags and - * calls the event to do its own start logic. - * - * @param previous Previous event, this is for doing logic based chains. - */ - void start(IVisualNovelEvent *previous); - - /** - * Performs a tick on this event. The event can then decide whether or not - * it has finished processing. - * - * @return True if the event is still active, otherwise false. - */ - bool_t update(); - - /** - * End this current event. Returns the "next event" to process. Most of - * the events can handle this with the simple ->then() chaining, but some - * events may chose to do complex if-style logic. - * - * @return Event to run next. - */ - IVisualNovelEvent * end(); - - /** - * Dispose the VN event. - */ - virtual ~IVisualNovelEvent(); - - friend class VisualNovelManager; - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/components/SimpleVisualNovelBackground.cpp b/src/dawn/games/visualnovel/components/SimpleVisualNovelBackground.cpp deleted file mode 100644 index 5864ef59..00000000 --- a/src/dawn/games/visualnovel/components/SimpleVisualNovelBackground.cpp +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SimpleVisualNovelBackground.hpp" - -using namespace Dawn; - -SimpleVisualNovelBackground * SimpleVisualNovelBackground::create(Scene *s) { - auto item = s->createSceneItem(); - // item->addComponent(); - item->addComponent(); - item->addComponent(); - auto background = item->addComponent(); - return background; -} - -SimpleVisualNovelBackground::SimpleVisualNovelBackground(SceneItem *item) : - SceneItemComponent(item) -{ - -} - -std::vector SimpleVisualNovelBackground::getDependencies(){ - return std::vector{ - this->material = this->item->getComponent(), - this->meshHost = this->item->getComponent() - }; -} - -void SimpleVisualNovelBackground::setTexture(Texture *texture) { - assertNotNull(texture); - this->material->texture = texture; - - // Since we go both negative and positive, actual height is doubled - float_t aspect = (float_t)texture->getWidth() / (float_t)texture->getHeight(); - float_t height = 0.5f; - - QuadMesh::bufferQuadMeshWithZ(&this->meshHost->mesh, - glm::vec2(-aspect * height, -height), glm::vec2(0, 1), - glm::vec2( aspect * height, height), glm::vec2(1, 0), - 0.0f, 0, 0 - ); -} - -void SimpleVisualNovelBackground::onStart() { - assertNotNull(this->material); - assertNotNull(this->meshHost); - - QuadMesh::initQuadMesh(&this->meshHost->mesh, - glm::vec2(-1, -1), glm::vec2(0, 1), - glm::vec2(1, 1), glm::vec2(1, 0), - 0.0f - ); -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/components/SimpleVisualNovelBackground.hpp b/src/dawn/games/visualnovel/components/SimpleVisualNovelBackground.hpp deleted file mode 100644 index 93bf2e87..00000000 --- a/src/dawn/games/visualnovel/components/SimpleVisualNovelBackground.hpp +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/components/Components.hpp" -#include "scene/components/display/material/SimpleTexturedMaterial.hpp" - -namespace Dawn { - class SimpleVisualNovelBackground : public SceneItemComponent { - public: - SimpleTexturedMaterial *material; - MeshHost *meshHost; - - /** - * Create a simple Visual Novel Background prefab. - * - * @param scene Scene to add this background to. - * @return Created background Scene Item. - */ - static SimpleVisualNovelBackground * create(Scene *scene); - - /** - * Construct a Simple Visual Novel Background. Simple Background is used - * for a quick up and running Visual Novel scene, but does not have any - * special effects or controls beyond updating a texture and mesh. - * - * @param item Scene Item this background belongs to. - */ - SimpleVisualNovelBackground(SceneItem *item); - - std::vector getDependencies() override; - void onStart() override; - - /** - * Set the texture for the background. Auto updates the material and the - * dimensions of the internal quad. - * - * @param texture Texture to use. - */ - void setTexture(Texture *texture); - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/components/VisualNovelCharacter.cpp b/src/dawn/games/visualnovel/components/VisualNovelCharacter.cpp deleted file mode 100644 index f3a7ba21..00000000 --- a/src/dawn/games/visualnovel/components/VisualNovelCharacter.cpp +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VisualNovelCharacter.hpp" - -using namespace Dawn; - -VisualNovelCharacter::VisualNovelCharacter(SceneItem *item) : - SceneItemComponent(item) -{ -} - -std::vector VisualNovelCharacter::getDependencies() { - return std::vector{ - (this->material = this->item->getComponent()), - (this->tiledSprite = this->item->getComponent()) - }; -} - -void VisualNovelCharacter::onStart() { - assertNotNull(this->material); - assertNotNull(this->tiledSprite); -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/components/VisualNovelCharacter.hpp b/src/dawn/games/visualnovel/components/VisualNovelCharacter.hpp deleted file mode 100644 index bd2af706..00000000 --- a/src/dawn/games/visualnovel/components/VisualNovelCharacter.hpp +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneItemComponent.hpp" -#include "asset/assets/AudioAsset.hpp" -#include "scene/components/display/material/SimpleTexturedMaterial.hpp" -#include "scene/components/display/TiledSprite.hpp" -#include "scene/components/audio/AudioSource.hpp" - -namespace Dawn { - struct VisualNovelCharacterEmotion { - int32_t tile = 0; - AudioAsset *talkSound = nullptr; - AudioAsset *emotionSound = nullptr; - }; - - class VisualNovelCharacter : public SceneItemComponent { - public: - std::string nameKey = "character.unknown"; - SimpleTexturedMaterial *material = nullptr; - TiledSprite *tiledSprite = nullptr; - - /** - * Visual Novel Character Component. Mostly logic-less but provides nice - * interfaces for sibling components. - * - * @param item Item that this component belongs to. - */ - VisualNovelCharacter(SceneItem *item); - - std::vector getDependencies() override; - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/CMakeLists.txt b/src/dawn/games/visualnovel/events/CMakeLists.txt deleted file mode 100644 index 5666e626..00000000 --- a/src/dawn/games/visualnovel/events/CMakeLists.txt +++ /dev/null @@ -1,18 +0,0 @@ -# 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 - VisualNovelFadeEvent.cpp - VisualNovelTextboxEvent.cpp - VisualNovelChangeSimpleBackgroundEvent.cpp - VisualNovelEmptyEvent.cpp -) - -# Subdirs -add_subdirectory(animation) -add_subdirectory(characters) -add_subdirectory(timing) \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/VisualNovelCallbackEvent.hpp b/src/dawn/games/visualnovel/events/VisualNovelCallbackEvent.hpp deleted file mode 100644 index b03f1c06..00000000 --- a/src/dawn/games/visualnovel/events/VisualNovelCallbackEvent.hpp +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "visualnovel/VisualNovelManager.hpp" - -namespace Dawn { - template - class VisualNovelCallbackEvent : public IVisualNovelEvent { - protected: - T *instance; - void (T::*callback)(); - - void onStart(IVisualNovelEvent *previous) { - - } - - bool_t onUpdate() { - return false; - } - - void onEnd() { - ((*this->instance).*(this->callback))(); - } - - public: - VisualNovelCallbackEvent( - VisualNovelManager *manager, - T *instance, - void (T::*callback)() - ) : IVisualNovelEvent(manager) { - this->instance = instance; - this->callback = callback; - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/VisualNovelChangeSimpleBackgroundEvent.cpp b/src/dawn/games/visualnovel/events/VisualNovelChangeSimpleBackgroundEvent.cpp deleted file mode 100644 index 747eee54..00000000 --- a/src/dawn/games/visualnovel/events/VisualNovelChangeSimpleBackgroundEvent.cpp +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VisualNovelChangeSimpleBackgroundEvent.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -VisualNovelChangeSimpleBackgroundEvent::VisualNovelChangeSimpleBackgroundEvent( - VisualNovelManager *manager, Texture *texture -) : IVisualNovelEvent(manager) { - this->texture = texture; -} - -void VisualNovelChangeSimpleBackgroundEvent::onStart(IVisualNovelEvent *prev) { - auto back = this->manager->getScene() - ->findComponent() - ; - - assertNotNull(back); - back->setTexture(this->texture); -} - -bool_t VisualNovelChangeSimpleBackgroundEvent::onUpdate() { - return false; -} - -void VisualNovelChangeSimpleBackgroundEvent::onEnd() { - -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/VisualNovelChangeSimpleBackgroundEvent.hpp b/src/dawn/games/visualnovel/events/VisualNovelChangeSimpleBackgroundEvent.hpp deleted file mode 100644 index 6434de7d..00000000 --- a/src/dawn/games/visualnovel/events/VisualNovelChangeSimpleBackgroundEvent.hpp +++ /dev/null @@ -1,25 +0,0 @@ -// 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 "visualnovel/components/SimpleVisualNovelBackground.hpp" - -namespace Dawn { - class VisualNovelChangeSimpleBackgroundEvent : public IVisualNovelEvent { - protected: - Texture *texture = nullptr; - - void onStart(IVisualNovelEvent *previous) override; - bool_t onUpdate() override; - void onEnd() override; - - public: - VisualNovelChangeSimpleBackgroundEvent( - VisualNovelManager *manager, - Texture *texture - ); - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/VisualNovelEmptyEvent.cpp b/src/dawn/games/visualnovel/events/VisualNovelEmptyEvent.cpp deleted file mode 100644 index e543c483..00000000 --- a/src/dawn/games/visualnovel/events/VisualNovelEmptyEvent.cpp +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VisualNovelEmptyEvent.hpp" - -using namespace Dawn; - -VisualNovelEmptyEvent::VisualNovelEmptyEvent(VisualNovelManager *man) : - IVisualNovelEvent(man) -{ - -} - -void VisualNovelEmptyEvent::onStart(IVisualNovelEvent *prev) { - -} - -bool_t VisualNovelEmptyEvent::onUpdate() { - return false; -} - -void VisualNovelEmptyEvent::onEnd() { -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/VisualNovelEmptyEvent.hpp b/src/dawn/games/visualnovel/events/VisualNovelEmptyEvent.hpp deleted file mode 100644 index b26bef65..00000000 --- a/src/dawn/games/visualnovel/events/VisualNovelEmptyEvent.hpp +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "visualnovel/VisualNovelManager.hpp" - -namespace Dawn { - class VisualNovelEmptyEvent : public IVisualNovelEvent { - protected: - void onStart(IVisualNovelEvent *previous) override; - bool_t onUpdate() override; - void onEnd() override; - - public: - VisualNovelEmptyEvent(VisualNovelManager *manager); - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/VisualNovelFadeEvent.cpp b/src/dawn/games/visualnovel/events/VisualNovelFadeEvent.cpp deleted file mode 100644 index 905645b1..00000000 --- a/src/dawn/games/visualnovel/events/VisualNovelFadeEvent.cpp +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VisualNovelFadeEvent.hpp" - -using namespace Dawn; - -VisualNovelFadeEvent::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; -} - -void VisualNovelFadeEvent::onStart(IVisualNovelEvent *previous) { - 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 - ); -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/VisualNovelFadeEvent.hpp b/src/dawn/games/visualnovel/events/VisualNovelFadeEvent.hpp deleted file mode 100644 index f43f7455..00000000 --- a/src/dawn/games/visualnovel/events/VisualNovelFadeEvent.hpp +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "visualnovel/events/animation/VisualNovelSimpleAnimationEvent.hpp" - -namespace Dawn { - class VisualNovelFadeEvent : public VisualNovelSimpleAnimationEvent { - protected: - struct Color color; - bool_t fadeIn; - float_t duration; - - void onStart(IVisualNovelEvent *previous) override; - - public: - /** - * Create a new visual novel event for fading the screen in/out. - * - * @param man Manager that this VN event belongs to. - * @param color Color to fade to/from. - * @param fadeIn True to make the color go from 0 to 1 opacity. - * @param ease Easing function to use. - * @param duration How long does the fade take. - */ - VisualNovelFadeEvent( - VisualNovelManager *man, - struct Color color, - bool_t fadeIn, - easefunction_t *ease, - float_t duration - ); - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/VisualNovelTextboxEvent.cpp b/src/dawn/games/visualnovel/events/VisualNovelTextboxEvent.cpp deleted file mode 100644 index 0f9366be..00000000 --- a/src/dawn/games/visualnovel/events/VisualNovelTextboxEvent.cpp +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VisualNovelTextboxEvent.hpp" - -using namespace Dawn; - -VisualNovelTextboxEvent::VisualNovelTextboxEvent( - VisualNovelManager *manager, - VisualNovelCharacter *character, - struct VisualNovelCharacterEmotion emotion, - std::string languageKey -) : IVisualNovelEvent(manager) { - this->character = character; - this->languageKey = languageKey; - this->emotion = emotion; -} - -VisualNovelTextboxEvent::VisualNovelTextboxEvent( - VisualNovelManager *manager, - std::string languageKey -) : IVisualNovelEvent(manager) { - this->character = nullptr; - this->languageKey = languageKey; -} - -void VisualNovelTextboxEvent::onStart(IVisualNovelEvent *previous) { - if(this->manager->textBox == nullptr) return; - - this->manager->textBox->setText(this->languageKey); - this->manager->textBox->setCharacter(this->character); - - if(this->character != nullptr) { - this->character->tiledSprite->setTile(this->emotion.tile); - } - - if(this->emotion.emotionSound != nullptr) { - if(this->manager->audioCharacter != nullptr) { - this->manager->audioCharacter->stop(); - this->manager->audioCharacter->loop = false; - this->manager->audioCharacter->setAudioData(this->emotion.emotionSound); - this->manager->audioCharacter->play(); - } - } else if(this->emotion.talkSound != nullptr) { - this->manager->textBox->setTalkingSound(this->emotion.talkSound); - } - - this->manager->textBox->show(); -} - -bool_t VisualNovelTextboxEvent::onUpdate() { - return this->manager->textBox->isVisible(); -} - -void VisualNovelTextboxEvent::onEnd() { - -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/VisualNovelTextboxEvent.hpp b/src/dawn/games/visualnovel/events/VisualNovelTextboxEvent.hpp deleted file mode 100644 index ec2b466c..00000000 --- a/src/dawn/games/visualnovel/events/VisualNovelTextboxEvent.hpp +++ /dev/null @@ -1,42 +0,0 @@ -// 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 "visualnovel/components/VisualNovelCharacter.hpp" - -namespace Dawn { - class VisualNovelTextboxEvent : public IVisualNovelEvent { - protected: - std::string languageKey; - VisualNovelCharacter *character; - struct VisualNovelCharacterEmotion emotion; - - void onStart(IVisualNovelEvent *previous) override; - bool_t onUpdate() override; - void onEnd() override; - - public: - /** - * Create a new Textbox Event. This will queue a conversation item for the - * textbox to display. - * - * @param manager Visual Novel Manager instance for this event. - * @param character Character that is intended to be speaking. - * @param languageKey Language Key to talk. - */ - VisualNovelTextboxEvent( - VisualNovelManager *manager, - VisualNovelCharacter *character, - struct VisualNovelCharacterEmotion emotion, - std::string languageKey - ); - - VisualNovelTextboxEvent( - VisualNovelManager *manager, - std::string languageKey - ); - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/animation/VisualNovelAnimationEvent.cpp b/src/dawn/games/visualnovel/events/animation/VisualNovelAnimationEvent.cpp deleted file mode 100644 index 6c9d4f1c..00000000 --- a/src/dawn/games/visualnovel/events/animation/VisualNovelAnimationEvent.cpp +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VisualNovelAnimationEvent.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -VisualNovelAnimationEvent::VisualNovelAnimationEvent( - VisualNovelManager *manager -) : IVisualNovelEvent(manager) { -} - -void VisualNovelAnimationEvent::onStart(IVisualNovelEvent *previous) { - -} - -bool_t VisualNovelAnimationEvent::onUpdate() { - this->animation->tick(this->manager->getGame()->timeManager.delta); - return !this->animation->finished; -} - -void VisualNovelAnimationEvent::onEnd() { - -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/animation/VisualNovelAnimationEvent.hpp b/src/dawn/games/visualnovel/events/animation/VisualNovelAnimationEvent.hpp deleted file mode 100644 index 213817c3..00000000 --- a/src/dawn/games/visualnovel/events/animation/VisualNovelAnimationEvent.hpp +++ /dev/null @@ -1,22 +0,0 @@ -// 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: - struct Animation *animation; - - void onStart(IVisualNovelEvent *previous) override; - bool_t onUpdate() override; - void onEnd() override; - - public: - VisualNovelAnimationEvent(VisualNovelManager *manager); - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/animation/VisualNovelSimpleAnimationEvent.hpp b/src/dawn/games/visualnovel/events/animation/VisualNovelSimpleAnimationEvent.hpp deleted file mode 100644 index eb5ce109..00000000 --- a/src/dawn/games/visualnovel/events/animation/VisualNovelSimpleAnimationEvent.hpp +++ /dev/null @@ -1,26 +0,0 @@ -// 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/games/visualnovel/events/animation/VisualNovelSimpleCallbackAnimationEvent.hpp b/src/dawn/games/visualnovel/events/animation/VisualNovelSimpleCallbackAnimationEvent.hpp deleted file mode 100644 index 1ebce40b..00000000 --- a/src/dawn/games/visualnovel/events/animation/VisualNovelSimpleCallbackAnimationEvent.hpp +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "VisualNovelAnimationEvent.hpp" -#include "display/animation/SimpleCallbackAnimation.hpp" - -namespace Dawn { - template - class VisualNovelSimpleCallbackAnimationEvent : - public VisualNovelAnimationEvent - { - public: - struct SimpleCallbackAnimation callbackAnimation; - - VisualNovelSimpleCallbackAnimationEvent(VisualNovelManager *man) : - VisualNovelAnimationEvent(man) - { - this->animation = &callbackAnimation; - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/characters/CMakeLists.txt b/src/dawn/games/visualnovel/events/characters/CMakeLists.txt deleted file mode 100644 index 6eb84fb3..00000000 --- a/src/dawn/games/visualnovel/events/characters/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -# 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 - VisualNovelFadeCharacterEvent.cpp - VisualNovelTransformItemEvent.cpp -) \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/characters/VisualNovelFadeCharacterEvent.cpp b/src/dawn/games/visualnovel/events/characters/VisualNovelFadeCharacterEvent.cpp deleted file mode 100644 index b2d87b6d..00000000 --- a/src/dawn/games/visualnovel/events/characters/VisualNovelFadeCharacterEvent.cpp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VisualNovelFadeCharacterEvent.hpp" - -using namespace Dawn; - -VisualNovelFadeCharacterEvent::VisualNovelFadeCharacterEvent( - VisualNovelManager *man, - VisualNovelCharacter *character, - bool_t fadeIn, - easefunction_t *ease, - float_t duration -) : VisualNovelSimpleAnimationEvent( - man, - &character->material->color.a -) { - this->simpleAnimation.easing = ease; - if(fadeIn) { - this->simpleAnimation.addKeyframe(0.0f, 0.0f); - this->simpleAnimation.addKeyframe(duration, 1.0f); - } else { - this->simpleAnimation.addKeyframe(0.0f, 1.0f); - this->simpleAnimation.addKeyframe(duration, 0.0f); - } -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/characters/VisualNovelFadeCharacterEvent.hpp b/src/dawn/games/visualnovel/events/characters/VisualNovelFadeCharacterEvent.hpp deleted file mode 100644 index 50847fc4..00000000 --- a/src/dawn/games/visualnovel/events/characters/VisualNovelFadeCharacterEvent.hpp +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "visualnovel/events/animation/VisualNovelSimpleAnimationEvent.hpp" -#include "visualnovel/components/VisualNovelCharacter.hpp" -#include "scene/components/display/Material.hpp" - -namespace Dawn { - class VisualNovelFadeCharacterEvent : - public VisualNovelSimpleAnimationEvent - { - public: - VisualNovelFadeCharacterEvent( - VisualNovelManager *man, - VisualNovelCharacter *character, - bool_t fadeIn, - easefunction_t *ease, - float_t duration - ); - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/characters/VisualNovelTransformItemEvent.cpp b/src/dawn/games/visualnovel/events/characters/VisualNovelTransformItemEvent.cpp deleted file mode 100644 index f7a7b1b9..00000000 --- a/src/dawn/games/visualnovel/events/characters/VisualNovelTransformItemEvent.cpp +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VisualNovelTransformItemEvent.hpp" - -using namespace Dawn; - -VisualNovelTransformItemEvent::VisualNovelTransformItemEvent( - VisualNovelManager *man, - SceneItem *item, - glm::vec3 start, - glm::vec3 end, - easefunction_t *ease, - float_t duration -) : VisualNovelSimpleCallbackAnimationEvent(man) { - assertNotNull(item); - this->item = item; - - this->callbackAnimation.setCallback( - &item->transform, &Transform::setLocalPosition - ); - if(duration != 0) { - this->callbackAnimation.addKeyframe(0.0f, start); - } - this->callbackAnimation.addKeyframe(duration, end); -} - -VisualNovelTransformItemEvent::VisualNovelTransformItemEvent( - VisualNovelManager *man, - SceneItem *item, - glm::vec3 end, - easefunction_t *ease, - float_t duration -) : VisualNovelSimpleCallbackAnimationEvent(man) { - assertNotNull(item); - this->item = item; - - this->callbackAnimation.setCallback( - &item->transform, &Transform::setLocalPosition - ); - - if(duration != 0) this->relative = true; - this->callbackAnimation.addKeyframe(duration, end); -} - -void VisualNovelTransformItemEvent::onStart(IVisualNovelEvent *previous) { - if(this->relative) { - this->callbackAnimation.addKeyframe(0.0f, this->item->transform.getLocalPosition()); - } - VisualNovelSimpleCallbackAnimationEvent::onStart(previous); -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/characters/VisualNovelTransformItemEvent.hpp b/src/dawn/games/visualnovel/events/characters/VisualNovelTransformItemEvent.hpp deleted file mode 100644 index ec67fedd..00000000 --- a/src/dawn/games/visualnovel/events/characters/VisualNovelTransformItemEvent.hpp +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "visualnovel/events/animation/VisualNovelSimpleCallbackAnimationEvent.hpp" - -namespace Dawn { - class VisualNovelTransformItemEvent : - public VisualNovelSimpleCallbackAnimationEvent - { - protected: - bool_t relative = false; - SceneItem *item = nullptr; - void onStart(IVisualNovelEvent *previous) override; - - public: - VisualNovelTransformItemEvent( - VisualNovelManager *man, - SceneItem *item, - glm::vec3 start, - glm::vec3 end, - easefunction_t *ease, - float_t duration - ); - - VisualNovelTransformItemEvent( - VisualNovelManager *man, - SceneItem *item, - glm::vec3 end, - easefunction_t *ease, - float_t duration - ); - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/timing/CMakeLists.txt b/src/dawn/games/visualnovel/events/timing/CMakeLists.txt deleted file mode 100644 index 01af79ad..00000000 --- a/src/dawn/games/visualnovel/events/timing/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -# 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 - VisualNovelBatchEvent.cpp - VisualNovelPauseEvent.cpp -) \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/timing/VisualNovelBatchEvent.cpp b/src/dawn/games/visualnovel/events/timing/VisualNovelBatchEvent.cpp deleted file mode 100644 index 024ff300..00000000 --- a/src/dawn/games/visualnovel/events/timing/VisualNovelBatchEvent.cpp +++ /dev/null @@ -1,66 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VisualNovelBatchEvent.hpp" - -using namespace Dawn; - -VisualNovelBatchEvent::VisualNovelBatchEvent( - VisualNovelManager *man, - std::vector events -) : IVisualNovelEvent(man) { - this->activeEvents = events; -} - -void VisualNovelBatchEvent::onStart(IVisualNovelEvent *previous) { - auto it = this->activeEvents.begin(); - while(it != this->activeEvents.end()) { - auto evt = *it; - evt->start(previous); - ++it; - } -} - -bool_t VisualNovelBatchEvent::onUpdate() { - bool_t result; - auto it = this->activeEvents.begin(); - while(it != this->activeEvents.end()) { - auto evt = *it; - result = evt->update(); - if(result) { - ++it; - continue; - } - - auto subNext = evt->end(); - - // In future I may remove this and instead immediately queue the next thing. - assertNull(subNext); - - it = this->activeEvents.erase(it); - this->inactiveEvents.push_back(evt); - } - return this->activeEvents.size() > 0; -} - -void VisualNovelBatchEvent::onEnd() { - -} - -VisualNovelBatchEvent::~VisualNovelBatchEvent() { - auto itActive = this->activeEvents.begin(); - while(itActive != this->activeEvents.end()) { - auto evt = *itActive; - delete evt; - ++itActive; - } - - auto itInactive = this->inactiveEvents.begin(); - while(itInactive != this->inactiveEvents.end()) { - auto evt = *itInactive; - delete evt; - ++itInactive; - } -} diff --git a/src/dawn/games/visualnovel/events/timing/VisualNovelBatchEvent.hpp b/src/dawn/games/visualnovel/events/timing/VisualNovelBatchEvent.hpp deleted file mode 100644 index c80f2cff..00000000 --- a/src/dawn/games/visualnovel/events/timing/VisualNovelBatchEvent.hpp +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "visualnovel/VisualNovelManager.hpp" - -namespace Dawn { - class VisualNovelBatchEvent : public IVisualNovelEvent { - protected: - std::vector activeEvents; - std::vector inactiveEvents; - - void onStart(IVisualNovelEvent *previous) override; - bool_t onUpdate() override; - void onEnd() override; - - public: - VisualNovelBatchEvent( - VisualNovelManager *man, - std::vector events - ); - - ~VisualNovelBatchEvent(); - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/timing/VisualNovelPauseEvent.cpp b/src/dawn/games/visualnovel/events/timing/VisualNovelPauseEvent.cpp deleted file mode 100644 index 785c85ff..00000000 --- a/src/dawn/games/visualnovel/events/timing/VisualNovelPauseEvent.cpp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VisualNovelPauseEvent.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -VisualNovelPauseEvent::VisualNovelPauseEvent( - VisualNovelManager *manager, float_t duration -) : IVisualNovelEvent(manager) { - this->duration = duration; -} - -void VisualNovelPauseEvent::onStart(IVisualNovelEvent *prev) { - this->time = 0; -} - -bool_t VisualNovelPauseEvent::onUpdate() { - this->time += this->manager->getGame()->timeManager.delta; - return this->time < this->duration; -} - -void VisualNovelPauseEvent::onEnd() { - -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/timing/VisualNovelPauseEvent.hpp b/src/dawn/games/visualnovel/events/timing/VisualNovelPauseEvent.hpp deleted file mode 100644 index 3f5624dc..00000000 --- a/src/dawn/games/visualnovel/events/timing/VisualNovelPauseEvent.hpp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "visualnovel/VisualNovelManager.hpp" - -namespace Dawn { - class VisualNovelPauseEvent : public IVisualNovelEvent { - protected: - float_t time; - float_t duration; - - void onStart(IVisualNovelEvent *previous) override; - bool_t onUpdate() override; - void onEnd() override; - - public: - /** - * Create a new Visual Novel Pause Event. - * - * @param manager Manager this event belongs to. - * @param duration Duration to pause for. - */ - VisualNovelPauseEvent(VisualNovelManager *manager, float_t duration); - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/scene/SimpleVNScene.cpp b/src/dawn/games/visualnovel/scene/SimpleVNScene.cpp deleted file mode 100644 index 99f35f6c..00000000 --- a/src/dawn/games/visualnovel/scene/SimpleVNScene.cpp +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SimpleVNScene.hpp" -#include "prefabs/ui/VisualNovelTextboxPrefab.hpp" - -using namespace Dawn; - -SimpleVNScene::SimpleVNScene(DawnGame *game) : Scene(game) { - -} - -void SimpleVNScene::vnStage() { - -} - -std::vector SimpleVNScene::getRequiredAssets() { - auto assMan = &this->game->assetManager; - std::vector assets; - vectorAppend(&assets, VisualNovelTextboxPrefab::getRequiredAssets(assMan)); - return assets; -} - -void SimpleVNScene::stage() { - auto assMan = &this->game->assetManager; - - // Camera - this->camera = Camera::create(this); - this->camera->transform->lookAt( - glm::vec3(0, 0, 2), - glm::vec3(0, 0, 0) - ); - - this->background = SimpleVisualNovelBackground::create(this); - this->canvas = UICanvas::create(this); - - // Stage VN Items - this->vnStage(); - - // UI - this->textbox = VisualNovelTextboxPrefab::create(this->canvas); - - // VN Manager - auto vnManagerItem = this->createSceneItem(); - this->vnManager = vnManagerItem->addComponent(); - - // Audio - auto listenerItem = this->createSceneItem(); - this->audioListener = listenerItem->addComponent(); - - auto audioBackgroundItem = this->createSceneItem(); - vnManager->audioBackground = audioBackgroundItem->addComponent(); - - auto audioCharacterItem = this->createSceneItem(); - vnManager->audioCharacter = audioCharacterItem->addComponent(); - - // Fader (Drawn over the top of everything else) - this->vnFader = VisualNovelFader::create(canvas); -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/scene/SimpleVNScene.hpp b/src/dawn/games/visualnovel/scene/SimpleVNScene.hpp deleted file mode 100644 index 1469f0c8..00000000 --- a/src/dawn/games/visualnovel/scene/SimpleVNScene.hpp +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/Scene.hpp" -#include "game/DawnGame.hpp" -#include "util/array.hpp" -#include "scene/components/Components.hpp" -#include "scene/components/audio/AudioListener.hpp" -#include "visualnovel/VisualNovelManager.hpp" -#include "visualnovel/events/VisualNovelTextboxEvent.hpp" -#include "visualnovel/events/timing/VisualNovelPauseEvent.hpp" -#include "visualnovel/events/VisualNovelFadeEvent.hpp" -#include "visualnovel/events/VisualNovelCallbackEvent.hpp" -#include "visualnovel/events/VisualNovelChangeSimpleBackgroundEvent.hpp" - -namespace Dawn { - class SimpleVNScene : public Scene { - protected: - Camera *camera = nullptr; - UICanvas *canvas = nullptr; - VisualNovelTextbox *textbox = nullptr; - SimpleVisualNovelBackground *background = nullptr; - VisualNovelFader *vnFader = nullptr; - VisualNovelManager *vnManager = nullptr; - AudioListener *audioListener = nullptr; - - /** - * Internal method to stage the VN scene. - */ - virtual void vnStage(); - - public: - /** - * Constructs a new Simple VN Scene. Custom class that implements the most - * common VN Things. - * - * @param game - */ - SimpleVNScene(DawnGame *game); - - std::vector getRequiredAssets() override; - void stage() override; - - /** - * Returns the first VN event for the scene. Called by the VN Manager for - * simple scenes. - * - * @return First VN event to be queued. - */ - virtual IVisualNovelEvent * getVNEvent() = 0; - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/ui/VisualNovelFader.cpp b/src/dawn/games/visualnovel/ui/VisualNovelFader.cpp deleted file mode 100644 index aa870ae5..00000000 --- a/src/dawn/games/visualnovel/ui/VisualNovelFader.cpp +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VisualNovelFader.hpp" - -using namespace Dawn; - -VisualNovelFader::VisualNovelFader(UICanvas *canvas) : UISprite(canvas) { - -} - -VisualNovelFader * 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 - ); - item->color = COLOR_BLACK_TRANSPARENT; - return item; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/ui/VisualNovelFader.hpp b/src/dawn/games/visualnovel/ui/VisualNovelFader.hpp deleted file mode 100644 index f534f52a..00000000 --- a/src/dawn/games/visualnovel/ui/VisualNovelFader.hpp +++ /dev/null @@ -1,32 +0,0 @@ -// 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: - /** - * Quickly create a visual novel fader. - * - * @param canvas Canvas the fader belongs to. - * @return Created VN Fader. - */ - static VisualNovelFader * create(UICanvas *canvas); - - /** - * Construct a new Visual Novel Fader. VN Fader is just a sprite that is - * easily found by the VN Manager for the purpose of adding transitions to - * a VN scene. - * - * @param canvas Canvas for this component. - */ - VisualNovelFader(UICanvas *canvas); - }; -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/ui/VisualNovelTextbox.cpp b/src/dawn/games/visualnovel/ui/VisualNovelTextbox.cpp deleted file mode 100644 index 01c71c14..00000000 --- a/src/dawn/games/visualnovel/ui/VisualNovelTextbox.cpp +++ /dev/null @@ -1,250 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VisualNovelTextbox.hpp" -#include "game/DawnGame.hpp" -#include "visualnovel/VisualNovelManager.hpp" - -using namespace Dawn; - -VisualNovelTextbox::VisualNovelTextbox(UICanvas *canvas) : - UIComponent(canvas), - selfParent(canvas), - border(canvas), - label(canvas) -{ - // Self Parent - this->selfParent.setTransform( - UI_COMPONENT_ALIGN_STRETCH, UI_COMPONENT_ALIGN_STRETCH, - glm::vec4(0, 0, 0, 0), - 0.0f - ); - - // Border - this->selfParent.addChild(&this->border); - this->border.setTransform( - UI_COMPONENT_ALIGN_STRETCH, UI_COMPONENT_ALIGN_STRETCH, - glm::vec4(0, 0, 0, 0), - 0.0f - ); - - // Label - this->selfParent.addChild(&this->label); - this->label.startQuad = 0; - this->label.quadCount = 0; - - this->canvas->getScene()->eventSceneUnpausedUpdate.addListener( - this, &VisualNovelTextbox::textboxOnSceneUpdate - ); -} - -void VisualNovelTextbox::show() { - if(this->isVisible()) return; - this->visible = true; - this->addChild(&this->selfParent); - - if(this->talkSound != nullptr) { - auto vnManager = this->getVisualNovelManager(); - assertNotNull(vnManager); - assertNotNull(vnManager->audioCharacter); - - vnManager->audioCharacter->stop(); - vnManager->audioCharacter->setAudioData(this->talkSound); - vnManager->audioCharacter->loop = true; - vnManager->audioCharacter->play(); - } -} - -void VisualNovelTextbox::hide() { - if(!this->isVisible()) return; - - if(this->talkSound != nullptr) { - auto vnManager = this->getVisualNovelManager(); - assertNotNull(vnManager); - assertNotNull(vnManager->audioCharacter); - vnManager->audioCharacter->stop(); - } - - this->visible = false; - this->removeChild(&this->selfParent); - this->eventHidden.invoke(); -} - -bool_t VisualNovelTextbox::isVisible() { - return this->visible; -} - -VisualNovelManager * VisualNovelTextbox::getVisualNovelManager() { - return this->getScene()->findComponent(); -} - -void VisualNovelTextbox::updatePositions() { - UIComponent::updatePositions(); - - this->lineCurrent = 0; - this->timeCharacter = 0; - - 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 - ); - - this->label.startQuad = 0; - this->label.quadCount = 0; -} - -void VisualNovelTextbox::textboxOnSceneUpdate() { - DawnGame *game = this->canvas->getGame(); - - if(this->hasRevealedAllCurrentCharacters()) { - if(this->hasRevealedAllCharacters()) { - if(game->inputManager.isPressed(INPUT_BIND_ACCEPT)) { - this->hide(); - } - } else { - if(game->inputManager.isPressed(INPUT_BIND_ACCEPT)) { - this->lineCurrent += this->getCountOfVisibleLines(); - this->label.startQuad = 0; - for(int32_t i = 0; i < this->lineCurrent; i++) { - this->label.startQuad += this->label.measure.getQuadsOnLine(i); - } - this->label.quadCount = 0; - this->timeCharacter = 0.0f; - - this->label.setTransform( - UI_COMPONENT_ALIGN_STRETCH, - UI_COMPONENT_ALIGN_STRETCH, - glm::vec4( - glm::vec2( - this->border.getBorderSize().x + this->labelPadding.x, - this->border.getBorderSize().y + this->labelPadding.y - - this->label.measure.getHeightOfLineCount(this->lineCurrent) - ), - this->border.getBorderSize() + this->labelPadding - ), - 5.0f - ); - this->eventNewPage.invoke(); - } - } - - if(this->talkSound != nullptr) { - auto vnManager = this->getVisualNovelManager(); - assertNotNull(vnManager); - assertNotNull(vnManager->audioCharacter); - vnManager->audioCharacter->stop(); - } - - return; - } - - auto lastTimeCharacter = mathFloor(this->timeCharacter); - 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; - } - auto newTimeCharacter = mathFloor(this->timeCharacter); - if(newTimeCharacter == lastTimeCharacter) return; - - this->label.quadCount = newTimeCharacter; - this->eventCharacterRevealed.invoke(); -} - -int32_t VisualNovelTextbox::getCountOfVisibleLines() { - int32_t i = 1; - glm::vec2 innerSize = this->border.getInnerSize() - this->labelPadding; - - for(i = this->label.measure.getLineCount(); i > 0; --i) { - if(innerSize.y >= this->label.measure.getHeightOfLineCount(i)) { - return i; - } - } - return this->label.measure.getLineCount(); -} - -std::vector VisualNovelTextbox::getSelfPassItems( - glm::mat4 projection, - glm::mat4 view, - glm::mat4 transform -) { - return std::vector(); -} - -void VisualNovelTextbox::setFont(Font *font) { - this->label.setFont(font); - this->label.updateMesh(); -} - -void VisualNovelTextbox::setText(std::string key, float_t fontSize) { - this->label.setText(key); - this->label.setFontSize(fontSize); - this->label.updateMesh(); -} - -void VisualNovelTextbox::setCharacter(VisualNovelCharacter *character) { - this->character = character; - this->talkSound = nullptr; -} - -void VisualNovelTextbox::setTalkingSound(AudioAsset *asset) { - this->talkSound = asset; -} - -void VisualNovelTextbox::setText(std::string key) { - this->label.setText(key); - this->label.updateMesh(); -} - -void VisualNovelTextbox::setFontSize(float_t fontSize) { - this->label.setFontSize(fontSize); - this->label.updateMesh(); -} - -float_t VisualNovelTextbox::getFontSize() { - return this->label.getFontSize(); -} - -void VisualNovelTextbox::setLabelPadding(glm::vec2 padding) { - this->labelPadding = padding; - this->updatePositions(); -} - -glm::vec2 VisualNovelTextbox::getLabelPadding() { - return this->labelPadding; -} - -bool_t VisualNovelTextbox::hasRevealedAllCurrentCharacters() { - int32_t quadsTotal = 0; - for( - int32_t i = this->lineCurrent; - i < mathMin( - this->label.measure.getLineCount(), - this->lineCurrent + this->getCountOfVisibleLines() - ); - i++ - ) { - quadsTotal += this->label.measure.getQuadsOnLine(i); - } - return mathFloor(this->timeCharacter) >= quadsTotal; -} - -bool_t VisualNovelTextbox::hasRevealedAllCharacters() { - return ( - this->lineCurrent + this->getCountOfVisibleLines() >= - this->label.measure.getLineCount() - ); -} - -VisualNovelTextbox::~VisualNovelTextbox() { - this->canvas->getScene()->eventSceneUnpausedUpdate.removeListener( - this, &VisualNovelTextbox::textboxOnSceneUpdate - ); -} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/ui/VisualNovelTextbox.hpp b/src/dawn/games/visualnovel/ui/VisualNovelTextbox.hpp deleted file mode 100644 index 70dd024b..00000000 --- a/src/dawn/games/visualnovel/ui/VisualNovelTextbox.hpp +++ /dev/null @@ -1,167 +0,0 @@ -// 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/UIBorder.hpp" -#include "ui/UILabel.hpp" -#include "ui/UIEmpty.hpp" -#include "util/mathutils.hpp" -#include "visualnovel/components/VisualNovelCharacter.hpp" - -#define VISUAL_NOVEL_TEXTBOX_SPEED 25.0f -#define VISUAL_NOVEL_TEXTBOX_SPEED_FASTER 40.0f - -namespace Dawn { - class VisualNovelManager; - - class VisualNovelTextbox : public UIComponent { - private: - int32_t lineCurrent = 0; - glm::vec2 labelPadding = glm::vec2(0, 0); - UIEmpty selfParent; - float_t timeCharacter = 0.0f; - bool_t visible = false; - VisualNovelCharacter *character = nullptr; - AudioAsset *talkSound = nullptr; - - void updatePositions() override; - - std::vector getSelfPassItems( - glm::mat4 projection, - glm::mat4 view, - glm::mat4 transform - ) override; - - /** - * Listens for scene updates. - */ - void textboxOnSceneUpdate(); - - /** - * Returns the count of visible lines within the textbox. Mostly used for - * when we need to decide how to wrap. - * - * @return The count of visible lines. - */ - int32_t getCountOfVisibleLines(); - - public: - UIBorder border; - UILabel label; - - Event<> eventCharacterRevealed; - Event<> eventCurrentCharactersRevealed; - Event<> eventNewPage; - Event<> eventAllCharactersRevealed; - Event<> eventHidden; - Event<> eventVisible; - - /** - * Constructs a VN Textbox. - * - * @param canvas Canvas that this textbox belongs to. - */ - VisualNovelTextbox(UICanvas *canvas); - - void show(); - void hide(); - bool_t isVisible(); - - /** - * Returns the visual novel manager (if applicable). - * - * @return Visual Novel Manager instance. - */ - VisualNovelManager * getVisualNovelManager(); - - /** - * Sets the font for this vn textbox. Passed to the underlying label. - * - * @param font Font to set for this textbox. - */ - void setFont(Font *font); - - /** - * Sets the string (label) for this textbox. - * - * @param text Localized string key to set. - * @param fontSize Font size of the string. - */ - void setText(std::string key, float_t fontSize); - - /** - * Sets the string (label) for this textbox. - * - * @param text Localized string key to set. - */ - void setText(std::string key); - - /** - * Sets the VN Character for this text. - * - * @param character Character to set. - */ - void setCharacter(VisualNovelCharacter *character); - - /** - * Set the sound to use whenever the text is scrolling to represent a - * character talking. - * - * @param sound Sound asset to use. - */ - void setTalkingSound(AudioAsset *sound); - - /** - * Sets the font size to use. - * - * @param fontSize Font size to use. - */ - void setFontSize(float_t fontSize); - - /** - * Returns the current font size. - * - * @return Font size. - */ - float_t getFontSize(); - - /** - * Sets the padding of the label. This will increase the spacing between - * the text and the border. - * - * @param padding Padding to set. - */ - void setLabelPadding(glm::vec2 padding); - - /** - * Returns the current label padding. - * - * @return The current label padding. - */ - glm::vec2 getLabelPadding(); - - /** - * Returns true if all of the characters that can be made visible for the - * current textbox size have finished revealing, or false if not. - * - * @return True if above statement is met. - */ - bool_t hasRevealedAllCurrentCharacters(); - - /** - * Returns true only when every character passed previously in setText - * has been revealed by scrolling. - * - * @return True if above statement is true. - */ - bool_t hasRevealedAllCharacters(); - - /** - * Cleans the VN Textbox. - */ - ~VisualNovelTextbox(); - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/CMakeLists.txt b/src/dawn/games/vn/CMakeLists.txt new file mode 100644 index 00000000..87a903f2 --- /dev/null +++ b/src/dawn/games/vn/CMakeLists.txt @@ -0,0 +1,8 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Subdirs +add_subdirectory(components) +add_subdirectory(events) \ No newline at end of file diff --git a/src/dawn/games/visualnovel/scene/CMakeLists.txt b/src/dawn/games/vn/components/CMakeLists.txt similarity index 68% rename from src/dawn/games/visualnovel/scene/CMakeLists.txt rename to src/dawn/games/vn/components/CMakeLists.txt index f8abc9a3..582b4b69 100644 --- a/src/dawn/games/visualnovel/scene/CMakeLists.txt +++ b/src/dawn/games/vn/components/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2022 Dominic Masters +# Copyright (c) 2023 Dominic Masters # # This software is released under the MIT License. # https://opensource.org/licenses/MIT @@ -6,5 +6,5 @@ # Sources target_sources(${DAWN_TARGET_NAME} PRIVATE - SimpleVNScene.cpp + VNManager.cpp ) \ No newline at end of file diff --git a/src/dawn/games/vn/components/VNManager.cpp b/src/dawn/games/vn/components/VNManager.cpp new file mode 100644 index 00000000..9f6a655f --- /dev/null +++ b/src/dawn/games/vn/components/VNManager.cpp @@ -0,0 +1,36 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNManager.hpp" +#include "games/vn/events/VNEvent.hpp" + +using namespace Dawn; + +VNManager::VNManager(SceneItem *item) : + SceneItemComponent(item) +{ +} + +void VNManager::onStart() { + if(this->currentEvent != nullptr) { + this->currentEvent->start(nullptr); + } +} + +void VNManager::setEvent(VNEvent *event) { + this->currentEvent = event; +} + +void VNManager::nextEvent() { + if(this->currentEvent == nullptr) return; + auto old = this->currentEvent; + old->end(); + this->currentEvent = old->getNextEvent(); + if(this->currentEvent != nullptr) this->currentEvent->start(old); +} + +void VNManager::onDispose() { + +} \ No newline at end of file diff --git a/src/dawn/games/vn/components/VNManager.hpp b/src/dawn/games/vn/components/VNManager.hpp new file mode 100644 index 00000000..8f999ffb --- /dev/null +++ b/src/dawn/games/vn/components/VNManager.hpp @@ -0,0 +1,60 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scene/SceneItemComponent.hpp" + +namespace Dawn { + class VNEvent; + + class VNManager : public SceneItemComponent { + protected: + std::vector events; + VNEvent *currentEvent = nullptr; + + public: + /** + * Constructs a visual novel manager, scene item component. + * + * @param item Item that the VN manager belongs to. + */ + VNManager(SceneItem *item); + + /** + * Creats an event for you to decide how to queue. + */ + template + T * createEvent() { + auto event = new T(); + event->init(this); + this->events.push_back(event); + return event; + } + + /** + * Sets the currently active visual novel event. This is assumed to be + * the only way to handle events (no multiples currently). + * + * @param event Event to set. + */ + void setEvent(VNEvent *event); + + void nextEvent(); + + // template + // T * setEvent(T *event) { + // auto oldCurrent = this->currentEvent; + // this->currentEvent = event; + // if(this->hasInitialized && event != nullptr) event->start(oldCurrent); + // delete oldCurrent; + // return event; + // } + + void onStart() override; + void onDispose() override; + + friend class VNEvent; + }; +} \ No newline at end of file diff --git a/src/dawn/games/visualnovel/events/animation/CMakeLists.txt b/src/dawn/games/vn/events/CMakeLists.txt similarity index 65% rename from src/dawn/games/visualnovel/events/animation/CMakeLists.txt rename to src/dawn/games/vn/events/CMakeLists.txt index 39ae1c69..e80f467c 100644 --- a/src/dawn/games/visualnovel/events/animation/CMakeLists.txt +++ b/src/dawn/games/vn/events/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2022 Dominic Masters +# Copyright (c) 2023 Dominic Masters # # This software is released under the MIT License. # https://opensource.org/licenses/MIT @@ -6,5 +6,5 @@ # Sources target_sources(${DAWN_TARGET_NAME} PRIVATE - VisualNovelAnimationEvent.cpp + VNEvent.cpp ) \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNDummyEvent.hpp b/src/dawn/games/vn/events/VNDummyEvent.hpp new file mode 100644 index 00000000..9a525be1 --- /dev/null +++ b/src/dawn/games/vn/events/VNDummyEvent.hpp @@ -0,0 +1,17 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "VNEvent.hpp" + +namespace Dawn { + class VNDummyEvent : public VNEvent { + protected: + void onStart() override { + std::cout << "Test" << std::endl; + this->next(); + } + }; +} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNEvent.cpp b/src/dawn/games/vn/events/VNEvent.cpp new file mode 100644 index 00000000..9212b795 --- /dev/null +++ b/src/dawn/games/vn/events/VNEvent.cpp @@ -0,0 +1,38 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNEvent.hpp" + +using namespace Dawn; + +void VNEvent::init(VNManager *manager) { + this->manager = manager; +} + +void VNEvent::start(VNEvent *previous) { + this->onStart(); +} + +Scene * VNEvent::getScene() { + return this->manager->getScene(); +} + +VNEvent * VNEvent::getNextEvent() { + return this->doNext; +} + +void VNEvent::next() { + assertNotNull(this->manager); + assertTrue(this->manager->currentEvent == this); + this->manager->nextEvent(); +} + +void VNEvent::end() { + this->unsubscribeAllEvents(); + this->onEnd(); +} + +void VNEvent::onStart() {} +void VNEvent::onEnd() {} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNEvent.hpp b/src/dawn/games/vn/events/VNEvent.hpp new file mode 100644 index 00000000..6dd4ae3e --- /dev/null +++ b/src/dawn/games/vn/events/VNEvent.hpp @@ -0,0 +1,79 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "games/vn/components/VNManager.hpp" + +namespace Dawn { + class VNEvent : public StateOwner { + protected: + VNManager *manager = nullptr; + VNEvent *doNext = nullptr; + VNEvent *previous = nullptr; + + /** + * Initializes the event. This is called by the VNManager, and should not + * be called by anything else. + * @param manager The VNManager that is running this event. + */ + void init(VNManager *manager); + + /** + * Invoked by the VNManager, this is the start of the event. + * @param previous The previous event that was running before this one. + */ + void start(VNEvent *previous); + + /** + * Invoked by the VNManager, this is the end of the event. Perform the + * necessary cleanup, but remember that events may be re-started again + * later. + */ + void end(); + + /** + * Overrideable method that is called when the event is started. + */ + virtual void onStart(); + + /** + * Overrideable method that is called when the event is ended. + */ + virtual void onEnd(); + + public: + /** + * Returns the scene this event is running in. + * @return Pointer to the scene. + */ + Scene * getScene(); + + /** + * End this event and move on to the next event. + */ + void next(); + + /** + * Returns the next event to be executed after this one. Can be overridden + * to return a different event other than the doNext event. + * @return Pointer to the next event. + */ + virtual VNEvent * getNextEvent(); + + /** + * Chains an event to be executed after this event has finished. + * + * @param next Event to process next. + * @return Whatever you pass in to next. + */ + template + T * then(T *next) { + this->doNext = next; + return next; + } + + friend class VNManager; + }; +} \ No newline at end of file diff --git a/src/dawn/prefabs/SimpleSpinningCubePrefab.hpp b/src/dawn/prefabs/SimpleSpinningCubePrefab.hpp index 888a2fdc..cfb41cb3 100644 --- a/src/dawn/prefabs/SimpleSpinningCubePrefab.hpp +++ b/src/dawn/prefabs/SimpleSpinningCubePrefab.hpp @@ -6,8 +6,8 @@ #pragma once #include "prefab/SceneItemPrefab.hpp" #include "display/mesh/CubeMesh.hpp" -#include "scene/components/display/MeshRenderer.hpp" -#include "scene/components/display/CubeMeshHost.hpp" +#include "scene/components/display/mesh/MeshRenderer.hpp" +#include "scene/components/display/mesh/CubeMeshHost.hpp" #include "scene/components/display/material/SimpleTexturedMaterial.hpp" #include "scene/components/example/ExampleSpin.hpp" #include "scene/components/physics/3d/CubeCollider.hpp" diff --git a/src/dawn/state/State.hpp b/src/dawn/state/State.hpp index 757156c3..281873c2 100644 --- a/src/dawn/state/State.hpp +++ b/src/dawn/state/State.hpp @@ -44,6 +44,36 @@ namespace Dawn { private: std::vector eventsSubscribed; std::vector eventLegacyBridge; + + protected: + /** + * Removes all currently subscribed effects and events. + */ + void unsubscribeAllEvents() { + auto providers = this->_stateProviderListeners; + auto itProvider = providers.begin(); + while(itProvider != providers.end()) { + (*itProvider)(); + ++itProvider; + } + + auto it = this->eventsSubscribed.begin(); + while(it != this->eventsSubscribed.end()) { + (*it)->_stateOwnerDestroyed(this); + ++it; + } + + auto itBridge = this->eventLegacyBridge.begin(); + while(itBridge != this->eventLegacyBridge.end()) { + (*itBridge)->removeListener(); + delete *itBridge; + ++itBridge; + } + + this->_stateProviderListeners.clear(); + this->eventsSubscribed.clear(); + this->eventLegacyBridge.clear(); + } public: std::vector> _stateProviderListeners; @@ -123,7 +153,11 @@ namespace Dawn { auto itProp = props.begin(); while(itProp != props.end()) { auto property = *itProp; - if(property->owner == nullptr) { property->owner = this; } else { assertTrue(property->owner == this); } + if(property->owner == nullptr) { + property->owner = this; + } else { + assertTrue(property->owner == this); + } property->_effectListners.push_back(fn); ++itProp; } @@ -230,25 +264,7 @@ namespace Dawn { * useEffects or useEvents. */ virtual ~StateOwner() { - auto providers = this->_stateProviderListeners; - auto itProvider = providers.begin(); - while(itProvider != providers.end()) { - (*itProvider)(); - ++itProvider; - } - - auto it = this->eventsSubscribed.begin(); - while(it != this->eventsSubscribed.end()) { - (*it)->_stateOwnerDestroyed(this); - ++it; - } - - auto itBridge = this->eventLegacyBridge.begin(); - while(itBridge != this->eventLegacyBridge.end()) { - (*itBridge)->removeListener(); - delete *itBridge; - ++itBridge; - } + this->unsubscribeAllEvents(); } }; } \ No newline at end of file diff --git a/src/dawnliminal/CMakeLists.txt b/src/dawnliminal/CMakeLists.txt new file mode 100644 index 00000000..8de667f3 --- /dev/null +++ b/src/dawnliminal/CMakeLists.txt @@ -0,0 +1,17 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Build Project +add_executable(${DAWN_TARGET_NAME}) + +# Includes +target_include_directories(${DAWN_TARGET_NAME} + PUBLIC + ${CMAKE_CURRENT_LIST_DIR} +) + +# Subdirs +add_subdirectory(game) +add_subdirectory(save) \ No newline at end of file diff --git a/src/dawn/games/visualnovel/ui/CMakeLists.txt b/src/dawnliminal/game/CMakeLists.txt similarity index 60% rename from src/dawn/games/visualnovel/ui/CMakeLists.txt rename to src/dawnliminal/game/CMakeLists.txt index 68ff4be5..6ab23ef2 100644 --- a/src/dawn/games/visualnovel/ui/CMakeLists.txt +++ b/src/dawnliminal/game/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2022 Dominic Masters +# Copyright (c) 2023 Dominic Masters # # This software is released under the MIT License. # https://opensource.org/licenses/MIT @@ -6,6 +6,5 @@ # Sources target_sources(${DAWN_TARGET_NAME} PRIVATE - VisualNovelFader.cpp - VisualNovelTextbox.cpp + LiminalGame.cpp ) \ No newline at end of file diff --git a/src/dawnliminal/game/LiminalGame.cpp b/src/dawnliminal/game/LiminalGame.cpp new file mode 100644 index 00000000..105be5d3 --- /dev/null +++ b/src/dawnliminal/game/LiminalGame.cpp @@ -0,0 +1,13 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "game/DawnGame.hpp" +#include "scenes/HelloWorldScene.hpp" + +using namespace Dawn; + +Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) { + return new HelloWorldScene(game); +} \ No newline at end of file diff --git a/src/dawnliminal/input/InputBinds.hpp b/src/dawnliminal/input/InputBinds.hpp new file mode 100644 index 00000000..32fc1016 --- /dev/null +++ b/src/dawnliminal/input/InputBinds.hpp @@ -0,0 +1,19 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "input/InputManager.hpp" + +#define INPUT_BIND(n) ((inputbind_t)n) + +#define INPUT_BIND_ACCEPT INPUT_BIND(1) +#define INPUT_BIND_NEGATIVE_X INPUT_BIND(2) +#define INPUT_BIND_POSITIVE_X INPUT_BIND(3) +#define INPUT_BIND_NEGATIVE_Y INPUT_BIND(4) +#define INPUT_BIND_POSITIVE_Y INPUT_BIND(5) +#define INPUT_BIND_MOUSE_X INPUT_BIND(6) +#define INPUT_BIND_MOUSE_Y INPUT_BIND(7) +#define INPUT_BIND_MOUSE_CLICK INPUT_BIND(8) +#define INPUT_BIND_CANCEL INPUT_BIND(9) \ No newline at end of file diff --git a/src/dawn/games/visualnovel/components/CMakeLists.txt b/src/dawnliminal/save/CMakeLists.txt similarity index 59% rename from src/dawn/games/visualnovel/components/CMakeLists.txt rename to src/dawnliminal/save/CMakeLists.txt index f029bf35..97158e97 100644 --- a/src/dawn/games/visualnovel/components/CMakeLists.txt +++ b/src/dawnliminal/save/CMakeLists.txt @@ -1,11 +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 - SimpleVisualNovelBackground.cpp - VisualNovelCharacter.cpp +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${DAWN_TARGET_NAME} + PRIVATE + LiminalSave.cpp ) \ No newline at end of file diff --git a/src/dawnliminal/save/LiminalSave.cpp b/src/dawnliminal/save/LiminalSave.cpp new file mode 100644 index 00000000..3c029bd4 --- /dev/null +++ b/src/dawnliminal/save/LiminalSave.cpp @@ -0,0 +1,12 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "save/SaveManager.hpp" + +using namespace Dawn; + +bool_t Dawn::saveValidateFile(struct SaveFile raw) { + return false; +} \ No newline at end of file diff --git a/src/dawnliminal/scenes/HelloWorldScene.hpp b/src/dawnliminal/scenes/HelloWorldScene.hpp new file mode 100644 index 00000000..8629fddd --- /dev/null +++ b/src/dawnliminal/scenes/HelloWorldScene.hpp @@ -0,0 +1,48 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scene/Scene.hpp" +#include "scene/components/display/Camera.hpp" +#include "prefabs/SimpleSpinningCubePrefab.hpp" +#include "games/vn/components/VNManager.hpp" +#include "games/vn/events/VNDummyEvent.hpp" + +namespace Dawn { + class HelloWorldScene : public Scene { + protected: + Camera *camera; + UICanvas *canvas; + + void stage() override { + canvas = UICanvas::create(this); + + camera = Camera::create(this); + camera->fov = 0.436332f; + camera->transform->lookAt(glm::vec3(10, 10, 10), glm::vec3(0, 0, 0)); + + auto cube = SimpleSpinningCubePrefab::create(this); + + auto vnItem = this->createSceneItem(); + auto vnManager = vnItem->addComponent(); + + auto eventTest = vnManager->createEvent(); + eventTest + ->then(vnManager->createEvent()) + ->then(vnManager->createEvent()) + ; + vnManager->setEvent(eventTest); + } + + std::vector getRequiredAssets() override { + auto assMan = &this->game->assetManager; + std::vector assets; + return assets; + } + + public: + HelloWorldScene(DawnGame *game) : Scene(game) {} + }; +} \ No newline at end of file diff --git a/src/dawnrose/scene/components/HurtHazard.cpp b/src/dawnrose/scene/components/HurtHazard.cpp index 05cd6ebe..bd4c6a1d 100644 --- a/src/dawnrose/scene/components/HurtHazard.cpp +++ b/src/dawnrose/scene/components/HurtHazard.cpp @@ -40,8 +40,6 @@ void HurtHazard::onStart() { otherHealth->damage({ .amount = damage }); - - std::cout << "Trigger" << std::endl; }, this->trigger->eventTriggerEnter); }, this->trigger)(); } \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityInteractable.cpp b/src/dawnrose/scene/components/entity/EntityInteractable.cpp new file mode 100644 index 00000000..e52dec04 --- /dev/null +++ b/src/dawnrose/scene/components/entity/EntityInteractable.cpp @@ -0,0 +1,17 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "EntityInteractable.hpp" + +using namespace Dawn; + +EntityInteractable::EntityInteractable(SceneItem* item) : SceneItemComponent(item) { + +} + + +void EntityInteractable::interact() { + std::cout << "Interact!" << std::endl; +} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityInteractable.hpp b/src/dawnrose/scene/components/entity/EntityInteractable.hpp new file mode 100644 index 00000000..bb8fef80 --- /dev/null +++ b/src/dawnrose/scene/components/entity/EntityInteractable.hpp @@ -0,0 +1,20 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scene/SceneItemComponent.hpp" +#include "scene/components/physics/2d/TriggerController2D.hpp" + +namespace Dawn { + class EntityInteractable : public SceneItemComponent { + public: + EntityInteractable(SceneItem *item); + + /** + * Called when one entity interacts with this entity. + */ + void interact(); + }; +} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityInteractor.cpp b/src/dawnrose/scene/components/entity/EntityInteractor.cpp new file mode 100644 index 00000000..2e675c2d --- /dev/null +++ b/src/dawnrose/scene/components/entity/EntityInteractor.cpp @@ -0,0 +1,27 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "EntityInteractor.hpp" + +using namespace Dawn; + +EntityInteractor::EntityInteractor(SceneItem* item) : + trigger(nullptr), + SceneItemComponent(item) +{ +} + +void EntityInteractor::onStart() { + this->evtTriggerEnter = [&]{}; + + useEffect([&]{ + this->evtTriggerEnter(); + if(this->trigger == nullptr) return; + + this->evtTriggerEnter = useEvent([&](EntityInteractable *interactable) { + interactable->interact(); + }, this->trigger->eventTriggerEnter); + }, this->trigger)(); +} diff --git a/src/dawnrose/scene/components/entity/EntityInteractor.hpp b/src/dawnrose/scene/components/entity/EntityInteractor.hpp new file mode 100644 index 00000000..05e1abe7 --- /dev/null +++ b/src/dawnrose/scene/components/entity/EntityInteractor.hpp @@ -0,0 +1,21 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "EntityInteractable.hpp" + +namespace Dawn { + class EntityInteractor : public SceneItemComponent { + private: + std::function evtTriggerEnter; + + public: + // @optional + StateProperty trigger; + + EntityInteractor(SceneItem* item); + void onStart() override; + }; +} \ No newline at end of file diff --git a/src/dawntools/CMakeLists.txt b/src/dawntools/CMakeLists.txt index 0cec211a..e915ff6b 100644 --- a/src/dawntools/CMakeLists.txt +++ b/src/dawntools/CMakeLists.txt @@ -20,4 +20,5 @@ include(util/CMakeLists.txt) # Tools add_subdirectory(prefabtool) -add_subdirectory(texturetool) \ No newline at end of file +add_subdirectory(texturetool) +# add_subdirectory(vnscenetool) \ No newline at end of file diff --git a/src/dawntools/vnscenetool/CMakeLists.txt b/src/dawntools/vnscenetool/CMakeLists.txt new file mode 100644 index 00000000..83b8fefd --- /dev/null +++ b/src/dawntools/vnscenetool/CMakeLists.txt @@ -0,0 +1,63 @@ +# Copyright (c) 2023 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Texture Build Tool +project(vnscenetool VERSION 1.0) +add_executable(vnscenetool) + +# Subdirs +add_subdirectory(events) + +# Sources +target_sources(vnscenetool + PRIVATE + ${DAWN_SHARED_SOURCES} + ${DAWN_TOOL_SOURCES} + VNSceneTool.cpp + VNSceneParser.cpp + VNSceneEventsParser.cpp +) + +# Includes +target_include_directories(vnscenetool + PUBLIC + ${DAWN_SHARED_INCLUDES} + ${DAWN_TOOL_INCLUDES} + ${CMAKE_CURRENT_LIST_DIR} +) + +# Definitions +target_compile_definitions(vnscenetool + PUBLIC + ${DAWN_SHARED_DEFINITIONS} + DAWN_TOOL_INSTANCE=VNSceneTool + DAWN_TOOL_HEADER="VNSceneTool.hpp" +) + +# Libraries +target_link_libraries(vnscenetool + PUBLIC + ${DAWN_BUILD_HOST_LIBS} +) + +# Tool Function +function(tool_vnscene in) + set(DEPS "") + if(DAWN_BUILD_TOOLS) + set(DEPS vnscenetool) + endif() + + STRING(REGEX REPLACE "[\.|\\|\/]" "-" prefab_name ${in}) + add_custom_target(prefab_${prefab_name} + COMMAND vnscenetool --input="${DAWN_ASSETS_SOURCE_DIR}/${in}" + COMMENT "Generating prefab from ${in}" + DEPENDS ${DEPS} + ) + target_include_directories(${DAWN_TARGET_NAME} + PUBLIC + ${DAWN_GENERATED_DIR}/generatedprefabs + ) + add_dependencies(${DAWN_TARGET_NAME} prefab_${prefab_name}) +endfunction() \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneEventsParser.cpp b/src/dawntools/vnscenetool/VNSceneEventsParser.cpp new file mode 100644 index 00000000..281a0a6e --- /dev/null +++ b/src/dawntools/vnscenetool/VNSceneEventsParser.cpp @@ -0,0 +1,42 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNSceneEventsParser.hpp" + +using namespace Dawn; + +std::vector VNSceneEventsParser::getRequiredAttributes() { + return { }; +} + +std::map VNSceneEventsParser::getOptionalAttributes() { + return { }; +} + +int32_t VNSceneEventsParser::onParse( + Xml *node, + std::map values, + struct VNSceneEvent *out, + std::string *error +) { + int32_t ret; + + auto itChildren = node->children.begin(); + while(itChildren != node->children.end()) { + Xml *child = *itChildren; + + // Parse event(s) + if(child->node == "position") { + struct VNPosition position; + ret = (VNPositionParser()).parse(child, &position, error); + if(ret != 0) return ret; + out->position = position; + } + + itChildren++; + } + + return 0; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneEventsParser.hpp b/src/dawntools/vnscenetool/VNSceneEventsParser.hpp new file mode 100644 index 00000000..7c35cc6c --- /dev/null +++ b/src/dawntools/vnscenetool/VNSceneEventsParser.hpp @@ -0,0 +1,26 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "util/XmlParser.hpp" +#include "events/VNPositionParser.hpp" + +namespace Dawn { + struct VNSceneEvent { + int32_t bruh; + }; + + class VNSceneEventsParser : public XmlParser { + protected: + std::vector getRequiredAttributes() override; + std::map getOptionalAttributes() override; + int32_t onParse( + Xml *node, + std::map values, + struct VNSceneEvent *out, + std::string *error + ) override; + }; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneParser.cpp b/src/dawntools/vnscenetool/VNSceneParser.cpp new file mode 100644 index 00000000..16c901ca --- /dev/null +++ b/src/dawntools/vnscenetool/VNSceneParser.cpp @@ -0,0 +1,44 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNSceneParser.hpp" + +using namespace Dawn; + +std::vector VNSceneParser::getRequiredAttributes() { + return { }; +} + +std::map VNSceneParser::getOptionalAttributes() { + return { }; +} + +int32_t VNSceneParser::onParse( + Xml *node, + std::map values, + struct VNScene *out, + std::string *error +) { + // + int32_t ret; + + auto itChildren = node->children.begin(); + while(itChildren != node->children.end()) { + Xml *child = *itChildren; + + // Parse event(s) + if(child->node == "events") { + struct VNSceneEvent scene; + ret = (VNSceneEventsParser()).parse(child, &scene, error); + if(ret != 0) return ret; + out->events.push_back(scene); + } + + + itChildren++; + } + + return 0; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneParser.hpp b/src/dawntools/vnscenetool/VNSceneParser.hpp new file mode 100644 index 00000000..e4140ac3 --- /dev/null +++ b/src/dawntools/vnscenetool/VNSceneParser.hpp @@ -0,0 +1,25 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "VNSceneEventsParser.hpp" + +namespace Dawn { + struct VNScene { + std::vector events; + }; + + class VNSceneParser : public XmlParser { + protected: + std::vector getRequiredAttributes() override; + std::map getOptionalAttributes() override; + int32_t onParse( + Xml *node, + std::map values, + struct VNScene *out, + std::string *error + ) override; + }; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneTool.cpp b/src/dawntools/vnscenetool/VNSceneTool.cpp new file mode 100644 index 00000000..79f9a69b --- /dev/null +++ b/src/dawntools/vnscenetool/VNSceneTool.cpp @@ -0,0 +1,43 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNSceneTool.hpp" + +using namespace Dawn; + +std::vector VNSceneTool::getRequiredFlags() { + return { "input" }; +} + +std::map VNSceneTool::getOptionalFlags() { + return std::map(); +} + +int32_t VNSceneTool::start() { + File input = File(flags["input"]); + if(!input.exists()) { + std::cout << "Input file does not exist!" << std::endl; + return 1; + } + + std::string data; + if(!input.readString(&data)) { + std::cout << "Failed to read input file!" << std::endl; + return 1; + } + + auto xml = Xml::load(data); + std::string error; + struct VNScene scene; + auto result = ((VNSceneParser()).parse(&xml, &scene, &error)); + if(result != 0) { + std::cout << "Failed to parse scene: " << error << std::endl; + return result; + } + + // Generate output + + return 0; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneTool.hpp b/src/dawntools/vnscenetool/VNSceneTool.hpp new file mode 100644 index 00000000..b6da5ec1 --- /dev/null +++ b/src/dawntools/vnscenetool/VNSceneTool.hpp @@ -0,0 +1,20 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "util/DawnTool.hpp" +#include "VNSceneParser.hpp" +#include "util/File.hpp" + +namespace Dawn { + class VNSceneTool : public DawnTool { + protected: + std::vector getRequiredFlags() override; + std::map getOptionalFlags() override; + + public: + int32_t start(); + }; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/CMakeLists.txt b/src/dawntools/vnscenetool/events/CMakeLists.txt new file mode 100644 index 00000000..825fa31d --- /dev/null +++ b/src/dawntools/vnscenetool/events/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(vnscenetool + PRIVATE + VNPositionParser.cpp +) \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNPositionParser.cpp b/src/dawntools/vnscenetool/events/VNPositionParser.cpp new file mode 100644 index 00000000..380abc39 --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNPositionParser.cpp @@ -0,0 +1,25 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNPositionParser.hpp" + +using namespace Dawn; + +std::vector VNPositionParser::getRequiredAttributes() { + return { }; +} + +std::map VNPositionParser::getOptionalAttributes() { + return { }; +} + +int32_t VNPositionParser::onParse( + Xml *node, + std::map values, + struct VNPosition *out, + std::string *error +) { + return 0; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNPositionParser.hpp b/src/dawntools/vnscenetool/events/VNPositionParser.hpp new file mode 100644 index 00000000..55bff476 --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNPositionParser.hpp @@ -0,0 +1,6 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once