From 6d86fc10bc60aca90a75504dba2a7f433802f213 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 18 Apr 2023 09:55:11 -0700 Subject: [PATCH 1/9] 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 From cacda495d3c57b2eff1a276f47ed7e9c661b07c3 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Thu, 20 Apr 2023 14:08:02 -0700 Subject: [PATCH 2/9] Moved more files around, working on VN engine --- .../animation/SimplerCallbackAnimation.hpp | 31 ++++++++++ src/dawn/games/vn/components/VNManager.hpp | 12 +--- src/dawn/games/vn/events/VNPositionEvent.hpp | 58 +++++++++++++++++++ src/dawn/state/StateEvent.hpp | 5 +- src/dawnliminal/scenes/HelloWorldScene.hpp | 8 +++ 5 files changed, 103 insertions(+), 11 deletions(-) create mode 100644 src/dawn/display/animation/SimplerCallbackAnimation.hpp create mode 100644 src/dawn/games/vn/events/VNPositionEvent.hpp diff --git a/src/dawn/display/animation/SimplerCallbackAnimation.hpp b/src/dawn/display/animation/SimplerCallbackAnimation.hpp new file mode 100644 index 00000000..4ccf45c4 --- /dev/null +++ b/src/dawn/display/animation/SimplerCallbackAnimation.hpp @@ -0,0 +1,31 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "SimpleAnimation.hpp" + +namespace Dawn { + template + struct SimplerCallbackAnimation : public SimpleAnimation { + protected: + T value; + + void onValueModified() override { + SimpleAnimation::onValueModified(); + this->callback(this->value); + } + + public: + std::function callback = std::function(); + + /** + * Construct a new Simple Function Animation object + */ + SimplerCallbackAnimation() : + SimpleAnimation(&value) + { + } + }; +} \ No newline at end of file diff --git a/src/dawn/games/vn/components/VNManager.hpp b/src/dawn/games/vn/components/VNManager.hpp index 8f999ffb..7f5f1748 100644 --- a/src/dawn/games/vn/components/VNManager.hpp +++ b/src/dawn/games/vn/components/VNManager.hpp @@ -41,17 +41,11 @@ namespace Dawn { */ void setEvent(VNEvent *event); + /** + * Ends the current event, and moves to the next one. + */ 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; diff --git a/src/dawn/games/vn/events/VNPositionEvent.hpp b/src/dawn/games/vn/events/VNPositionEvent.hpp new file mode 100644 index 00000000..c3d359fe --- /dev/null +++ b/src/dawn/games/vn/events/VNPositionEvent.hpp @@ -0,0 +1,58 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "VNEvent.hpp" +#include "scene/SceneItem.hpp" +#include "display/animation/SimplerCallbackAnimation.hpp" + +#define VN_POSITION_EVENT_VALUE_UNCHANGED -123456789 + +namespace Dawn { + class VNPositionEvent : public VNEvent { + public: + float_t x = VN_POSITION_EVENT_VALUE_UNCHANGED; + float_t y = VN_POSITION_EVENT_VALUE_UNCHANGED; + float_t z = VN_POSITION_EVENT_VALUE_UNCHANGED; + SceneItem *item = nullptr; + float_t duration; + + protected: + SimplerCallbackAnimation animation; + + void onStart() override { + assertNotNull(item); + + auto start = item->transform.getLocalPosition(); + auto destination = glm::vec3( + x == VN_POSITION_EVENT_VALUE_UNCHANGED ? start.x : x, + y == VN_POSITION_EVENT_VALUE_UNCHANGED ? start.y : y, + z == VN_POSITION_EVENT_VALUE_UNCHANGED ? start.z : z + ); + + if(duration > 0) { + animation.clear(); + + animation.addKeyframe(0, start); + animation.addKeyframe(duration, destination); + + animation.callback = [&](glm::vec3 v){ + this->item->transform.setLocalPosition(v); + }; + + useEvent([&]() { + this->next(); + }, animation.event2AnimationEnd); + + useEvent([&](float_t delta) { + animation.tick(delta); + }, getScene()->eventSceneUpdate); + } else { + this->item->transform.setLocalPosition(destination); + this->next(); + } + } + }; +} \ No newline at end of file diff --git a/src/dawn/state/StateEvent.hpp b/src/dawn/state/StateEvent.hpp index 5d75f387..d54ed9ae 100644 --- a/src/dawn/state/StateEvent.hpp +++ b/src/dawn/state/StateEvent.hpp @@ -39,8 +39,9 @@ namespace Dawn { * @param args Arguments for this event to pass to the listeners. */ void invoke(A... args) { - auto it = this->_eventListeners.begin(); - while(it != this->_eventListeners.end()) { + auto copy = this->_eventListeners; + auto it = copy.begin(); + while(it != copy.end()) { it->listener(args...); ++it; } diff --git a/src/dawnliminal/scenes/HelloWorldScene.hpp b/src/dawnliminal/scenes/HelloWorldScene.hpp index 8629fddd..a62c843d 100644 --- a/src/dawnliminal/scenes/HelloWorldScene.hpp +++ b/src/dawnliminal/scenes/HelloWorldScene.hpp @@ -9,6 +9,7 @@ #include "prefabs/SimpleSpinningCubePrefab.hpp" #include "games/vn/components/VNManager.hpp" #include "games/vn/events/VNDummyEvent.hpp" +#include "games/vn/events/VNPositionEvent.hpp" namespace Dawn { class HelloWorldScene : public Scene { @@ -29,7 +30,14 @@ namespace Dawn { auto vnManager = vnItem->addComponent(); auto eventTest = vnManager->createEvent(); + + auto positionEvent = vnManager->createEvent(); + positionEvent->x = 2.0f; + positionEvent->item = cube; + positionEvent->duration = 3.0f; + eventTest + ->then(positionEvent) ->then(vnManager->createEvent()) ->then(vnManager->createEvent()) ; From 72a0bb9192a97a38738a35edfa65d5f2a76bd3f8 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Fri, 21 Apr 2023 23:30:33 -0700 Subject: [PATCH 3/9] VNEvents --- src/dawn/games/vn/components/VNManager.hpp | 2 +- src/dawn/games/vn/events/VNAnimateEvent.hpp | 49 ++++++++++++++++ src/dawn/games/vn/events/VNEvent.hpp | 1 + src/dawn/games/vn/events/VNPositionEvent.hpp | 61 +++++++++----------- src/dawn/games/vn/events/VNSetEvent.hpp | 27 +++++++++ src/dawn/games/vn/events/VNTextEvent.hpp | 20 +++++++ src/dawn/games/vn/events/VNWaitEvent.hpp | 18 ++++++ src/dawnliminal/scenes/HelloWorldScene.hpp | 17 +++++- 8 files changed, 157 insertions(+), 38 deletions(-) create mode 100644 src/dawn/games/vn/events/VNAnimateEvent.hpp create mode 100644 src/dawn/games/vn/events/VNSetEvent.hpp create mode 100644 src/dawn/games/vn/events/VNTextEvent.hpp create mode 100644 src/dawn/games/vn/events/VNWaitEvent.hpp diff --git a/src/dawn/games/vn/components/VNManager.hpp b/src/dawn/games/vn/components/VNManager.hpp index 7f5f1748..5f6d5842 100644 --- a/src/dawn/games/vn/components/VNManager.hpp +++ b/src/dawn/games/vn/components/VNManager.hpp @@ -32,7 +32,7 @@ namespace Dawn { 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). diff --git a/src/dawn/games/vn/events/VNAnimateEvent.hpp b/src/dawn/games/vn/events/VNAnimateEvent.hpp new file mode 100644 index 00000000..565a2430 --- /dev/null +++ b/src/dawn/games/vn/events/VNAnimateEvent.hpp @@ -0,0 +1,49 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "VNEvent.hpp" +#include "display/animation/SimplerCallbackAnimation.hpp" + +namespace Dawn { + template + class VNAnimateEvent : public VNEvent { + public: + T from; + T to; + float_t duration; + + protected: + SimplerCallbackAnimation animation; + + void onStart() override { + if(duration > 0) { + animation.clear(); + + animation.addKeyframe(0, from); + animation.addKeyframe(duration, to); + + + animation.callback = [&](T v){ + this->setValue(v); + }; + + // On-end + useEvent([&]() { + this->next(); + }, animation.event2AnimationEnd); + + useEvent([&](float_t delta) { + animation.tick(delta); + }, getScene()->eventSceneUpdate); + } else { + this->setValue(to); + this->next(); + } + } + + virtual void setValue(T value) = 0; + }; +} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNEvent.hpp b/src/dawn/games/vn/events/VNEvent.hpp index 6dd4ae3e..50840513 100644 --- a/src/dawn/games/vn/events/VNEvent.hpp +++ b/src/dawn/games/vn/events/VNEvent.hpp @@ -5,6 +5,7 @@ #pragma once #include "games/vn/components/VNManager.hpp" +#include "scene/SceneItem.hpp" namespace Dawn { class VNEvent : public StateOwner { diff --git a/src/dawn/games/vn/events/VNPositionEvent.hpp b/src/dawn/games/vn/events/VNPositionEvent.hpp index c3d359fe..7595e5a6 100644 --- a/src/dawn/games/vn/events/VNPositionEvent.hpp +++ b/src/dawn/games/vn/events/VNPositionEvent.hpp @@ -4,20 +4,27 @@ // https://opensource.org/licenses/MIT #pragma once -#include "VNEvent.hpp" -#include "scene/SceneItem.hpp" -#include "display/animation/SimplerCallbackAnimation.hpp" +#include "VNAnimateEvent.hpp" -#define VN_POSITION_EVENT_VALUE_UNCHANGED -123456789 +#define VN_POSITION_EVENT_VALUE_UNCHANGED std::numeric_limits::min() namespace Dawn { - class VNPositionEvent : public VNEvent { + class VNPositionEvent : public VNAnimateEvent { public: - float_t x = VN_POSITION_EVENT_VALUE_UNCHANGED; - float_t y = VN_POSITION_EVENT_VALUE_UNCHANGED; - float_t z = VN_POSITION_EVENT_VALUE_UNCHANGED; SceneItem *item = nullptr; - float_t duration; + + VNPositionEvent() { + from = glm::vec3( + VN_POSITION_EVENT_VALUE_UNCHANGED, + VN_POSITION_EVENT_VALUE_UNCHANGED, + VN_POSITION_EVENT_VALUE_UNCHANGED + ); + to = glm::vec3( + VN_POSITION_EVENT_VALUE_UNCHANGED, + VN_POSITION_EVENT_VALUE_UNCHANGED, + VN_POSITION_EVENT_VALUE_UNCHANGED + ); + } protected: SimplerCallbackAnimation animation; @@ -26,33 +33,19 @@ namespace Dawn { assertNotNull(item); auto start = item->transform.getLocalPosition(); - auto destination = glm::vec3( - x == VN_POSITION_EVENT_VALUE_UNCHANGED ? start.x : x, - y == VN_POSITION_EVENT_VALUE_UNCHANGED ? start.y : y, - z == VN_POSITION_EVENT_VALUE_UNCHANGED ? start.z : z - ); + if(from.x == VN_POSITION_EVENT_VALUE_UNCHANGED) start.x = from.x; + if(from.y == VN_POSITION_EVENT_VALUE_UNCHANGED) start.y = from.y; + if(from.z == VN_POSITION_EVENT_VALUE_UNCHANGED) start.z = from.z; - if(duration > 0) { - animation.clear(); + if(to.x == VN_POSITION_EVENT_VALUE_UNCHANGED) to.x = start.x; + if(to.y == VN_POSITION_EVENT_VALUE_UNCHANGED) to.y = start.y; + if(to.z == VN_POSITION_EVENT_VALUE_UNCHANGED) to.z = start.z; + + VNAnimateEvent::onStart(); + } - animation.addKeyframe(0, start); - animation.addKeyframe(duration, destination); - - animation.callback = [&](glm::vec3 v){ - this->item->transform.setLocalPosition(v); - }; - - useEvent([&]() { - this->next(); - }, animation.event2AnimationEnd); - - useEvent([&](float_t delta) { - animation.tick(delta); - }, getScene()->eventSceneUpdate); - } else { - this->item->transform.setLocalPosition(destination); - this->next(); - } + void setValue(glm::vec3 value) override { + this->item->transform.setLocalPosition(value); } }; } \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNSetEvent.hpp b/src/dawn/games/vn/events/VNSetEvent.hpp new file mode 100644 index 00000000..bd9b1e50 --- /dev/null +++ b/src/dawn/games/vn/events/VNSetEvent.hpp @@ -0,0 +1,27 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "VNAnimateEvent.hpp" + +namespace Dawn { + template + class VNSetEvent : public VNAnimateEvent { + public: + T *modifies = nullptr; + + protected: + void onStart() override { + assertNotNull(this->modifies); + this->from = *modifies; + + VNAnimateEvent::onStart(); + } + + void setValue(T value) override { + *modifies = value; + } + }; +} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNTextEvent.hpp b/src/dawn/games/vn/events/VNTextEvent.hpp new file mode 100644 index 00000000..9171986c --- /dev/null +++ b/src/dawn/games/vn/events/VNTextEvent.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 "VNEvent.hpp" + +namespace Dawn { + class VNTextEvent : public VNEvent { + public: + std::string text; + + protected: + void onStart() override { + std::cout << "TEXT: " << text << std::endl; + this->next(); + } + }; +} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNWaitEvent.hpp b/src/dawn/games/vn/events/VNWaitEvent.hpp new file mode 100644 index 00000000..e03f2302 --- /dev/null +++ b/src/dawn/games/vn/events/VNWaitEvent.hpp @@ -0,0 +1,18 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "VNAnimateEvent.hpp" + +namespace Dawn { + class VNWaitEvent : public VNAnimateEvent { + public: + + protected: + void setValue(T value) override { + // Do nothing + } + }; +} \ No newline at end of file diff --git a/src/dawnliminal/scenes/HelloWorldScene.hpp b/src/dawnliminal/scenes/HelloWorldScene.hpp index a62c843d..56000366 100644 --- a/src/dawnliminal/scenes/HelloWorldScene.hpp +++ b/src/dawnliminal/scenes/HelloWorldScene.hpp @@ -9,7 +9,9 @@ #include "prefabs/SimpleSpinningCubePrefab.hpp" #include "games/vn/components/VNManager.hpp" #include "games/vn/events/VNDummyEvent.hpp" +#include "games/vn/events/VNTextEvent.hpp" #include "games/vn/events/VNPositionEvent.hpp" +#include "games/vn/events/VNSetEvent.hpp" namespace Dawn { class HelloWorldScene : public Scene { @@ -17,6 +19,8 @@ namespace Dawn { Camera *camera; UICanvas *canvas; + int32_t test = 0; + void stage() override { canvas = UICanvas::create(this); @@ -32,14 +36,21 @@ namespace Dawn { auto eventTest = vnManager->createEvent(); auto positionEvent = vnManager->createEvent(); - positionEvent->x = 2.0f; + positionEvent->to.x = 2.0f; positionEvent->item = cube; positionEvent->duration = 3.0f; + auto vnTextEvent = vnManager->createEvent(); + vnTextEvent->text = "Hello World!"; + + auto setPropertyEvent = vnManager->createEvent>(); + setPropertyEvent->modifies = &test; + setPropertyEvent->to = 10; + eventTest ->then(positionEvent) - ->then(vnManager->createEvent()) - ->then(vnManager->createEvent()) + ->then(vnTextEvent) + ->then(setPropertyEvent) ; vnManager->setEvent(eventTest); } From c269841236c301932774ae4a38a0450db7076fef Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sat, 22 Apr 2023 22:50:20 -0700 Subject: [PATCH 4/9] First real pass at VN Event Parsing --- src/dawn/games/vn/components/VNManager.cpp | 9 ++ src/dawn/games/vn/components/VNManager.hpp | 17 +++ src/dawn/games/vn/events/VNChoiceEvent.hpp | 45 ++++++++ src/dawn/games/vn/events/VNChoiceSetEvent.hpp | 21 ++++ src/dawn/games/vn/events/VNDummyEvent.hpp | 2 +- src/dawn/games/vn/events/VNIfEvent.hpp | 28 +++++ src/dawn/games/vn/events/VNTextEvent.hpp | 8 +- src/dawnliminal/CMakeLists.txt | 6 +- src/dawnliminal/game/LiminalGame.cpp | 4 +- src/dawnliminal/scenes/HelloWorldScene.hpp | 10 ++ src/dawntools/CMakeLists.txt | 2 +- src/dawntools/vnscenetool/CMakeLists.txt | 11 +- .../vnscenetool/VNSceneEventsParser.cpp | 23 +++- .../vnscenetool/VNSceneEventsParser.hpp | 24 +++- src/dawntools/vnscenetool/VNSceneGen.cpp | 106 ++++++++++++++++++ src/dawntools/vnscenetool/VNSceneGen.hpp | 19 ++++ src/dawntools/vnscenetool/VNSceneParser.cpp | 6 +- src/dawntools/vnscenetool/VNSceneParser.hpp | 2 +- src/dawntools/vnscenetool/VNSceneTool.cpp | 24 +++- src/dawntools/vnscenetool/VNSceneTool.hpp | 1 + .../vnscenetool/events/CMakeLists.txt | 3 +- .../events/VNPositionEventParser.cpp | 33 ++++++ .../events/VNPositionEventParser.hpp | 28 +++++ .../vnscenetool/events/VNPositionParser.cpp | 25 ----- .../vnscenetool/events/VNPositionParser.hpp | 6 - .../vnscenetool/events/VNTextEventParser.cpp | 43 +++++++ .../vnscenetool/events/VNTextEventParser.hpp | 30 +++++ 27 files changed, 476 insertions(+), 60 deletions(-) create mode 100644 src/dawn/games/vn/events/VNChoiceEvent.hpp create mode 100644 src/dawn/games/vn/events/VNChoiceSetEvent.hpp create mode 100644 src/dawn/games/vn/events/VNIfEvent.hpp create mode 100644 src/dawntools/vnscenetool/VNSceneGen.cpp create mode 100644 src/dawntools/vnscenetool/VNSceneGen.hpp create mode 100644 src/dawntools/vnscenetool/events/VNPositionEventParser.cpp create mode 100644 src/dawntools/vnscenetool/events/VNPositionEventParser.hpp delete mode 100644 src/dawntools/vnscenetool/events/VNPositionParser.cpp delete mode 100644 src/dawntools/vnscenetool/events/VNPositionParser.hpp create mode 100644 src/dawntools/vnscenetool/events/VNTextEventParser.cpp create mode 100644 src/dawntools/vnscenetool/events/VNTextEventParser.hpp diff --git a/src/dawn/games/vn/components/VNManager.cpp b/src/dawn/games/vn/components/VNManager.cpp index 9f6a655f..169cd0f5 100644 --- a/src/dawn/games/vn/components/VNManager.cpp +++ b/src/dawn/games/vn/components/VNManager.cpp @@ -23,6 +23,15 @@ void VNManager::setEvent(VNEvent *event) { this->currentEvent = event; } +void VNManager::setFlag(std::string key, std::string value) { + this->flags[key] = value; +} + +std::string VNManager::getFlag(std::string key) { + if(this->flags.find(key) == this->flags.end()) return ""; + return this->flags[key]; +} + void VNManager::nextEvent() { if(this->currentEvent == nullptr) return; auto old = this->currentEvent; diff --git a/src/dawn/games/vn/components/VNManager.hpp b/src/dawn/games/vn/components/VNManager.hpp index 5f6d5842..0485fea8 100644 --- a/src/dawn/games/vn/components/VNManager.hpp +++ b/src/dawn/games/vn/components/VNManager.hpp @@ -13,6 +13,7 @@ namespace Dawn { protected: std::vector events; VNEvent *currentEvent = nullptr; + std::map flags; public: /** @@ -46,6 +47,22 @@ namespace Dawn { */ void nextEvent(); + /** + * Sets a flag for the visual novel. + * + * @param key Key of the flag. + * @param value Value of the flag. + */ + void setFlag(std::string key, std::string value); + + /** + * Gets a flag for the visual novel. + * + * @param key Key of the flag. + * @return Value of the flag, or an empty string if it doesn't exist. + */ + std::string getFlag(std::string key); + void onStart() override; void onDispose() override; diff --git a/src/dawn/games/vn/events/VNChoiceEvent.hpp b/src/dawn/games/vn/events/VNChoiceEvent.hpp new file mode 100644 index 00000000..cc7a3899 --- /dev/null +++ b/src/dawn/games/vn/events/VNChoiceEvent.hpp @@ -0,0 +1,45 @@ +// 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 VNChoiceEvent : public VNEvent { + public: + std::string text; + std::string key; + std::map choices; + int32_t choice = 0; + + protected: + void onStart() override { + choice = 0; + + std::cout << "CHOICE: " << text << std::endl; + for(auto& choice : choices) { + std::cout << " " << choice.first << ": " << choice.second << std::endl; + } + + useEvent([&](float_t delta) { + auto im = &getScene()->game->inputManager; + if(im->isPressed(INPUT_BIND_ACCEPT)) { + auto it = choices.begin(); + std::advance(it, choice); + std::string choiceMade = it->first; + std::cout << "Choice made " << choiceMade << std::endl; + this->manager->setFlag(this->key, choiceMade); + this->next(); + } else if(im->isPressed(INPUT_BIND_NEGATIVE_Y)) { + choice = mathClamp((choice - 1), 0, choices.size() - 1); + std::cout << "Current choice: state" << choice << std::endl; + } else if(im->isPressed(INPUT_BIND_POSITIVE_Y)) { + choice = mathClamp((choice + 1), 0, choices.size() - 1); + std::cout << "Current choice: state" << choice << std::endl; + } + }, getScene()->eventSceneUpdate); + } + }; +} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNChoiceSetEvent.hpp b/src/dawn/games/vn/events/VNChoiceSetEvent.hpp new file mode 100644 index 00000000..e7c488ea --- /dev/null +++ b/src/dawn/games/vn/events/VNChoiceSetEvent.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 "VNEvent.hpp" + +namespace Dawn { + class VNChoiceSetEvent : public VNEvent { + public: + std::string key; + std::string value; + + protected: + void onStart() override { + this->manager->setFlag(this->key, this->value); + this->next(); + } + }; +} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNDummyEvent.hpp b/src/dawn/games/vn/events/VNDummyEvent.hpp index 9a525be1..ba2702df 100644 --- a/src/dawn/games/vn/events/VNDummyEvent.hpp +++ b/src/dawn/games/vn/events/VNDummyEvent.hpp @@ -10,7 +10,7 @@ namespace Dawn { class VNDummyEvent : public VNEvent { protected: void onStart() override { - std::cout << "Test" << std::endl; + std::cout << "Dummy VN Event" << std::endl; this->next(); } }; diff --git a/src/dawn/games/vn/events/VNIfEvent.hpp b/src/dawn/games/vn/events/VNIfEvent.hpp new file mode 100644 index 00000000..62aed8e7 --- /dev/null +++ b/src/dawn/games/vn/events/VNIfEvent.hpp @@ -0,0 +1,28 @@ +// 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 VNIfEvent : public VNEvent { + public: + std::string key; + std::string value; + VNEvent *ifTrue = nullptr; + + VNEvent * getNextEvent() override { + if(this->manager.getFlag(key) == value) { + return ifTrue; + } + return VNEvent::getNextEvent(); + } + + protected: + void onStart() override { + this->next(); + } + } +} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNTextEvent.hpp b/src/dawn/games/vn/events/VNTextEvent.hpp index 9171986c..00021a60 100644 --- a/src/dawn/games/vn/events/VNTextEvent.hpp +++ b/src/dawn/games/vn/events/VNTextEvent.hpp @@ -14,7 +14,13 @@ namespace Dawn { protected: void onStart() override { std::cout << "TEXT: " << text << std::endl; - this->next(); + + useEvent([&](float_t delta) { + if(getScene()->game->inputManager.isPressed(INPUT_BIND_ACCEPT)) { + std::cout << "Text Advance" << std::endl; + this->next(); + } + }, getScene()->eventSceneUpdate); } }; } \ No newline at end of file diff --git a/src/dawnliminal/CMakeLists.txt b/src/dawnliminal/CMakeLists.txt index 8de667f3..b78b1e1c 100644 --- a/src/dawnliminal/CMakeLists.txt +++ b/src/dawnliminal/CMakeLists.txt @@ -14,4 +14,8 @@ target_include_directories(${DAWN_TARGET_NAME} # Subdirs add_subdirectory(game) -add_subdirectory(save) \ No newline at end of file +add_subdirectory(save) + +# Assets +set(LIMINAL_ASSETS_DIR ${DAWN_ASSETS_DIR}/games/liminal) +tool_vnscene(${LIMINAL_ASSETS_DIR}/test.xml) \ No newline at end of file diff --git a/src/dawnliminal/game/LiminalGame.cpp b/src/dawnliminal/game/LiminalGame.cpp index 105be5d3..7bec3cab 100644 --- a/src/dawnliminal/game/LiminalGame.cpp +++ b/src/dawnliminal/game/LiminalGame.cpp @@ -5,9 +5,11 @@ #include "game/DawnGame.hpp" #include "scenes/HelloWorldScene.hpp" +#include "vnscenes/TestScene.hpp" using namespace Dawn; Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) { - return new HelloWorldScene(game); + // return new HelloWorldScene(game); + return new TestScene(game); } \ No newline at end of file diff --git a/src/dawnliminal/scenes/HelloWorldScene.hpp b/src/dawnliminal/scenes/HelloWorldScene.hpp index 56000366..14359484 100644 --- a/src/dawnliminal/scenes/HelloWorldScene.hpp +++ b/src/dawnliminal/scenes/HelloWorldScene.hpp @@ -12,6 +12,7 @@ #include "games/vn/events/VNTextEvent.hpp" #include "games/vn/events/VNPositionEvent.hpp" #include "games/vn/events/VNSetEvent.hpp" +#include "games/vn/events/VNChoiceEvent.hpp" namespace Dawn { class HelloWorldScene : public Scene { @@ -47,10 +48,19 @@ namespace Dawn { setPropertyEvent->modifies = &test; setPropertyEvent->to = 10; + auto choiceEvent = vnManager->createEvent(); + choiceEvent->text = "Choice?"; + choiceEvent->choices["state0"] = "State 0"; + choiceEvent->choices["state1"] = "State 1"; + choiceEvent->choices["state2"] = "State 2"; + choiceEvent->choices["state3"] = "State 3"; + + eventTest ->then(positionEvent) ->then(vnTextEvent) ->then(setPropertyEvent) + ->then(choiceEvent) ; vnManager->setEvent(eventTest); } diff --git a/src/dawntools/CMakeLists.txt b/src/dawntools/CMakeLists.txt index e915ff6b..7f4bff00 100644 --- a/src/dawntools/CMakeLists.txt +++ b/src/dawntools/CMakeLists.txt @@ -21,4 +21,4 @@ include(util/CMakeLists.txt) # Tools add_subdirectory(prefabtool) add_subdirectory(texturetool) -# add_subdirectory(vnscenetool) \ No newline at end of file +add_subdirectory(vnscenetool) \ No newline at end of file diff --git a/src/dawntools/vnscenetool/CMakeLists.txt b/src/dawntools/vnscenetool/CMakeLists.txt index 83b8fefd..ff3749d2 100644 --- a/src/dawntools/vnscenetool/CMakeLists.txt +++ b/src/dawntools/vnscenetool/CMakeLists.txt @@ -18,6 +18,7 @@ target_sources(vnscenetool VNSceneTool.cpp VNSceneParser.cpp VNSceneEventsParser.cpp + VNSceneGen.cpp ) # Includes @@ -49,15 +50,15 @@ function(tool_vnscene in) set(DEPS vnscenetool) endif() - STRING(REGEX REPLACE "[\.|\\|\/]" "-" prefab_name ${in}) - add_custom_target(prefab_${prefab_name} - COMMAND vnscenetool --input="${DAWN_ASSETS_SOURCE_DIR}/${in}" + STRING(REGEX REPLACE "[\.|\\|\/]" "-" scene_name ${in}) + add_custom_target(scene_${scene_name} + COMMAND vnscenetool --input="${DAWN_ASSETS_SOURCE_DIR}/${in}" --output="${DAWN_GENERATED_DIR}/generatedscenes" COMMENT "Generating prefab from ${in}" DEPENDS ${DEPS} ) target_include_directories(${DAWN_TARGET_NAME} PUBLIC - ${DAWN_GENERATED_DIR}/generatedprefabs + ${DAWN_GENERATED_DIR}/generatedscenes ) - add_dependencies(${DAWN_TARGET_NAME} prefab_${prefab_name}) + add_dependencies(${DAWN_TARGET_NAME} scene_${scene_name}) endfunction() \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneEventsParser.cpp b/src/dawntools/vnscenetool/VNSceneEventsParser.cpp index 281a0a6e..154860b4 100644 --- a/src/dawntools/vnscenetool/VNSceneEventsParser.cpp +++ b/src/dawntools/vnscenetool/VNSceneEventsParser.cpp @@ -18,7 +18,7 @@ std::map VNSceneEventsParser::getOptionalAttributes() int32_t VNSceneEventsParser::onParse( Xml *node, std::map values, - struct VNSceneEvent *out, + struct VNSceneEventList *out, std::string *error ) { int32_t ret; @@ -26,15 +26,28 @@ int32_t VNSceneEventsParser::onParse( auto itChildren = node->children.begin(); while(itChildren != node->children.end()) { Xml *child = *itChildren; + struct VNSceneEvent event; // Parse event(s) - if(child->node == "position") { - struct VNPosition position; - ret = (VNPositionParser()).parse(child, &position, error); + if(child->node == "text") { + VNTextEventParser parser; + event.type = VN_SCENE_EVENT_TYPE_TEXT; + ret = (VNTextEventParser()).parse(child, &event.text, error); if(ret != 0) return ret; - out->position = position; + + } else if(child->node == "position") { + VNPositionEventParser parser; + event.type = VN_SCENE_EVENT_TYPE_POSITION; + ret = (VNPositionEventParser()).parse(child, &event.position, error); + if(ret != 0) return ret; + + } else { + *error = "Unknown child node '" + child->node + "'"; + return -1; } + if(ret != 0) return ret; + out->events.push_back(event); itChildren++; } diff --git a/src/dawntools/vnscenetool/VNSceneEventsParser.hpp b/src/dawntools/vnscenetool/VNSceneEventsParser.hpp index 7c35cc6c..a004c298 100644 --- a/src/dawntools/vnscenetool/VNSceneEventsParser.hpp +++ b/src/dawntools/vnscenetool/VNSceneEventsParser.hpp @@ -4,22 +4,34 @@ // https://opensource.org/licenses/MIT #pragma once -#include "util/XmlParser.hpp" -#include "events/VNPositionParser.hpp" +#include "events/VNTextEventParser.hpp" +#include "events/VNPositionEventParser.hpp" namespace Dawn { - struct VNSceneEvent { - int32_t bruh; + enum VNSceneEventType { + VN_SCENE_EVENT_TYPE_TEXT, + VN_SCENE_EVENT_TYPE_POSITION }; - class VNSceneEventsParser : public XmlParser { + struct VNSceneEvent { + enum VNSceneEventType type; + + struct VNTextEvent text; + struct VNPositionEvent position; + }; + + struct VNSceneEventList { + std::vector events; + }; + + class VNSceneEventsParser : public XmlParser { protected: std::vector getRequiredAttributes() override; std::map getOptionalAttributes() override; int32_t onParse( Xml *node, std::map values, - struct VNSceneEvent *out, + struct VNSceneEventList *out, std::string *error ) override; }; diff --git a/src/dawntools/vnscenetool/VNSceneGen.cpp b/src/dawntools/vnscenetool/VNSceneGen.cpp new file mode 100644 index 00000000..183bf5f6 --- /dev/null +++ b/src/dawntools/vnscenetool/VNSceneGen.cpp @@ -0,0 +1,106 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNSceneGen.hpp" + +using namespace Dawn; + +void VNSceneGen::generate( + std::vector *out, + struct VNScene *scene, + std::string tabs +) { + struct ClassGenInfo classInfo; + classInfo.clazz = "TestScene"; + classInfo.extend = "Scene"; + classInfo.constructorArgs = "DawnGame *game"; + classInfo.extendArgs = "game"; + + classInfo.includes.push_back("scene/Scene.hpp"); + + struct MethodGenInfo methodAssets; + methodAssets.name = "getRequiredAssets"; + methodAssets.isOverride = true; + methodAssets.type = "std::vector"; + line(&methodAssets.body, "auto assMan = &this->game->assetManager;", ""); + line(&methodAssets.body, "std::vector assets;", ""); + line(&methodAssets.body, "return assets;", ""); + + struct MethodGenInfo methodStage; + methodStage.name = "stage"; + methodStage.isOverride = "true"; + line(&methodStage.body, "// test", ""); + + // TEST + line(&methodStage.body, "auto canvas = UICanvas::create(this);", ""); + line(&methodStage.body, "", ""); + + classInfo.includes.push_back("scene/components/display/Camera.hpp"); + line(&methodStage.body, "auto camera = Camera::create(this);", ""); + line(&methodStage.body, "camera->fov = 0.436332f;", ""); + line(&methodStage.body, "camera->transform->lookAt(glm::vec3(10, 10, 10), glm::vec3(0, 0, 0));", ""); + line(&methodStage.body, "", ""); + + classInfo.includes.push_back("prefabs/SimpleSpinningCubePrefab.hpp"); + line(&methodStage.body, "auto cube = SimpleSpinningCubePrefab::create(this);", ""); + line(&methodStage.body, "", ""); + + // Events + classInfo.includes.push_back("games/vn/components/VNManager.hpp"); + line(&methodStage.body, "auto vnItem = this->createSceneItem();", ""); + line(&methodStage.body, "auto vnManager = vnItem->addComponent();", ""); + line(&methodStage.body, "VNEvent *previous = vnManager->createEvent();", ""); + line(&methodStage.body, "auto eventStart = previous;", ""); + + int32_t eventIndex = 0; + auto itEvents = scene->events.events.begin(); + while(itEvents != scene->events.events.end()) { + std::string eventName = "event" + std::to_string(eventIndex); + std::string initType = ""; + std::string initArgs = ""; + std::string prev = "previous"; + std::vector afterLines; + + switch(itEvents->type) { + case VN_SCENE_EVENT_TYPE_TEXT: + initType = "VNTextEvent"; + line(&afterLines, eventName + "->" + "text = \"" + itEvents->text.texts.begin()->text + "\";", ""); + break; + + case VN_SCENE_EVENT_TYPE_POSITION: + initType = "VNPositionEvent"; + line(&afterLines, eventName + "->item = " + itEvents->position.item + ";", ""); + if(itEvents->position.x != "") line(&afterLines, eventName + "->" + "to.x = " + itEvents->position.x + ";", ""); + if(itEvents->position.y != "") line(&afterLines, eventName + "->" + "to.y = " + itEvents->position.y + ";", ""); + if(itEvents->position.z != "") line(&afterLines, eventName + "->" + "to.z = " + itEvents->position.z + ";", ""); + break; + + default: + assertUnreachable(); + } + + line(&methodStage.body, "", ""); + line( + &methodStage.body, + "auto " + eventName + " = " + prev + "->then(vnManager->createEvent<" + initType + ">(" + initArgs + "));", + "" + ); + line(&methodStage.body, "previous = " + eventName + ";", ""); + lines(&methodStage.body, afterLines, ""); + + eventIndex++; + ++itEvents; + } + + line(&methodStage.body, "", ""); + line(&methodStage.body, "vnManager->setEvent(eventStart);", ""); + + // Add in methods + CodeGen::methodGen(&classInfo.protectedCode, methodAssets); + line(&classInfo.protectedCode, "", ""); + CodeGen::methodGen(&classInfo.protectedCode, methodStage); + + CodeGen::classGen(out, classInfo); +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneGen.hpp b/src/dawntools/vnscenetool/VNSceneGen.hpp new file mode 100644 index 00000000..8a704b89 --- /dev/null +++ b/src/dawntools/vnscenetool/VNSceneGen.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 "VNSceneParser.hpp" +#include "util/CodeGen.hpp" + +namespace Dawn { + class VNSceneGen : public CodeGen { + public: + static void generate( + std::vector *out, + struct VNScene *scene, + std::string tabs + ); + }; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneParser.cpp b/src/dawntools/vnscenetool/VNSceneParser.cpp index 16c901ca..dd77240d 100644 --- a/src/dawntools/vnscenetool/VNSceneParser.cpp +++ b/src/dawntools/vnscenetool/VNSceneParser.cpp @@ -30,13 +30,9 @@ int32_t VNSceneParser::onParse( // Parse event(s) if(child->node == "events") { - struct VNSceneEvent scene; - ret = (VNSceneEventsParser()).parse(child, &scene, error); + ret = (VNSceneEventsParser()).parse(child, &out->events, error); if(ret != 0) return ret; - out->events.push_back(scene); } - - itChildren++; } diff --git a/src/dawntools/vnscenetool/VNSceneParser.hpp b/src/dawntools/vnscenetool/VNSceneParser.hpp index e4140ac3..49bd3c5c 100644 --- a/src/dawntools/vnscenetool/VNSceneParser.hpp +++ b/src/dawntools/vnscenetool/VNSceneParser.hpp @@ -8,7 +8,7 @@ namespace Dawn { struct VNScene { - std::vector events; + struct VNSceneEventList events; }; class VNSceneParser : public XmlParser { diff --git a/src/dawntools/vnscenetool/VNSceneTool.cpp b/src/dawntools/vnscenetool/VNSceneTool.cpp index 79f9a69b..0f287b9c 100644 --- a/src/dawntools/vnscenetool/VNSceneTool.cpp +++ b/src/dawntools/vnscenetool/VNSceneTool.cpp @@ -8,7 +8,7 @@ using namespace Dawn; std::vector VNSceneTool::getRequiredFlags() { - return { "input" }; + return { "input", "output" }; } std::map VNSceneTool::getOptionalFlags() { @@ -38,6 +38,28 @@ int32_t VNSceneTool::start() { } // Generate output + std::vector outputData; + VNSceneGen::generate(&outputData, &scene, ""); + + // Load output file from name and type + File outputFile = File(flags["output"] + "/vnscenes/TestScene.hpp"); + if(!outputFile.mkdirp()) { + std::cout << "Failed to create output directory!" << std::endl; + return 1; + } + + // Combine vector into single string + std::string outputDataStr = ""; + auto it = outputData.begin(); + while(it != outputData.end()) { + outputDataStr += *it + "\n"; + ++it; + } + + if(!outputFile.writeString(outputDataStr)) { + std::cout << "Failed to write output file!" << std::endl; + return 1; + } return 0; } \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneTool.hpp b/src/dawntools/vnscenetool/VNSceneTool.hpp index b6da5ec1..5b7d12f4 100644 --- a/src/dawntools/vnscenetool/VNSceneTool.hpp +++ b/src/dawntools/vnscenetool/VNSceneTool.hpp @@ -6,6 +6,7 @@ #pragma once #include "util/DawnTool.hpp" #include "VNSceneParser.hpp" +#include "VNSceneGen.hpp" #include "util/File.hpp" namespace Dawn { diff --git a/src/dawntools/vnscenetool/events/CMakeLists.txt b/src/dawntools/vnscenetool/events/CMakeLists.txt index 825fa31d..aa7a159b 100644 --- a/src/dawntools/vnscenetool/events/CMakeLists.txt +++ b/src/dawntools/vnscenetool/events/CMakeLists.txt @@ -6,5 +6,6 @@ # Sources target_sources(vnscenetool PRIVATE - VNPositionParser.cpp + VNPositionEventParser.cpp + VNTextEventParser.cpp ) \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNPositionEventParser.cpp b/src/dawntools/vnscenetool/events/VNPositionEventParser.cpp new file mode 100644 index 00000000..e43eaafb --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNPositionEventParser.cpp @@ -0,0 +1,33 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNPositionEventParser.hpp" + +using namespace Dawn; + +std::vector VNPositionEventParser::getRequiredAttributes() { + return { "item" }; +} + +std::map VNPositionEventParser::getOptionalAttributes() { + return { + { "x", "" }, + { "y", "" }, + { "z", "" } + }; +} + +int32_t VNPositionEventParser::onParse( + Xml *node, + std::map values, + struct VNPositionEvent *out, + std::string *error +) { + out->x = values["x"]; + out->y = values["y"]; + out->z = values["z"]; + out->item = values["item"]; + return 0; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNPositionEventParser.hpp b/src/dawntools/vnscenetool/events/VNPositionEventParser.hpp new file mode 100644 index 00000000..a670ed0c --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNPositionEventParser.hpp @@ -0,0 +1,28 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "util/XmlParser.hpp" + +namespace Dawn { + struct VNPositionEvent { + std::string x = ""; + std::string y = ""; + std::string z = ""; + std::string item = ""; + }; + + class VNPositionEventParser : public XmlParser { + protected: + std::vector getRequiredAttributes() override; + std::map getOptionalAttributes() override; + int32_t onParse( + Xml *node, + std::map values, + struct VNPositionEvent *out, + std::string *error + ) override; + }; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNPositionParser.cpp b/src/dawntools/vnscenetool/events/VNPositionParser.cpp deleted file mode 100644 index 380abc39..00000000 --- a/src/dawntools/vnscenetool/events/VNPositionParser.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 "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 deleted file mode 100644 index 55bff476..00000000 --- a/src/dawntools/vnscenetool/events/VNPositionParser.hpp +++ /dev/null @@ -1,6 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once diff --git a/src/dawntools/vnscenetool/events/VNTextEventParser.cpp b/src/dawntools/vnscenetool/events/VNTextEventParser.cpp new file mode 100644 index 00000000..65d79ad3 --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNTextEventParser.cpp @@ -0,0 +1,43 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNTextEventParser.hpp" + +using namespace Dawn; + +std::vector VNTextEventParser::getRequiredAttributes() { + return { }; +} + +std::map VNTextEventParser::getOptionalAttributes() { + return { }; +} + +int32_t VNTextEventParser::onParse( + Xml *node, + std::map values, + struct VNTextEvent *out, + std::string *error +) { + auto itChildren = node->children.begin(); + while(itChildren != node->children.end()) { + Xml *child = *itChildren; + + // Parse strings + if(child->node == "string") { + VNText text; + text.language = child->attributes["lang"]; + text.text = child->value; + out->texts.push_back(text); + } else { + *error = "Unknown child node '" + child->node + "'"; + return -1; + } + + itChildren++; + } + + return 0; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNTextEventParser.hpp b/src/dawntools/vnscenetool/events/VNTextEventParser.hpp new file mode 100644 index 00000000..d351896b --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNTextEventParser.hpp @@ -0,0 +1,30 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "util/XmlParser.hpp" + +namespace Dawn { + struct VNText { + std::string language; + std::string text; + }; + + struct VNTextEvent { + std::vector texts; + }; + + class VNTextEventParser : public XmlParser { + protected: + std::vector getRequiredAttributes() override; + std::map getOptionalAttributes() override; + int32_t onParse( + Xml *node, + std::map values, + struct VNTextEvent *out, + std::string *error + ) override; + }; +} \ No newline at end of file From 3be64a40e77485a252d75c1bde19f4b46d62e260 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 23 Apr 2023 18:46:03 -0700 Subject: [PATCH 5/9] Working on parser --- src/dawn/display/Color.hpp | 27 +++++++++++ src/dawntools/vnscenetool/CMakeLists.txt | 1 + .../vnscenetool/VNSceneEventsParser.cpp | 7 +++ .../vnscenetool/VNSceneEventsParser.hpp | 5 +- src/dawntools/vnscenetool/VNSceneGen.cpp | 32 +++++++++++-- .../vnscenetool/VNSceneItemParser.cpp | 47 +++++++++++++++++++ .../vnscenetool/VNSceneItemParser.hpp | 27 +++++++++++ src/dawntools/vnscenetool/VNSceneParser.cpp | 13 ++++- src/dawntools/vnscenetool/VNSceneParser.hpp | 2 + .../vnscenetool/events/CMakeLists.txt | 1 + .../vnscenetool/events/VNSetEventParser.cpp | 45 ++++++++++++++++++ .../vnscenetool/events/VNSetEventParser.hpp | 30 ++++++++++++ 12 files changed, 232 insertions(+), 5 deletions(-) create mode 100644 src/dawntools/vnscenetool/VNSceneItemParser.cpp create mode 100644 src/dawntools/vnscenetool/VNSceneItemParser.hpp create mode 100644 src/dawntools/vnscenetool/events/VNSetEventParser.cpp create mode 100644 src/dawntools/vnscenetool/events/VNSetEventParser.hpp diff --git a/src/dawn/display/Color.hpp b/src/dawn/display/Color.hpp index 7daedd0d..aee9147f 100644 --- a/src/dawn/display/Color.hpp +++ b/src/dawn/display/Color.hpp @@ -18,6 +18,33 @@ namespace Dawn { (float_t)a / 100.0f }; } + + struct Color operator * (const float_t &x) { + return { + (uint8_t)(r * x), + (uint8_t)(g * x), + (uint8_t)(b * x), + (uint8_t)(a * x) + }; + } + + struct Color operator - (const struct Color &color) { + return { + (uint8_t)(r - color.r), + (uint8_t)(g - color.g), + (uint8_t)(b - color.b), + (uint8_t)(a - color.a) + }; + } + + struct Color operator + (const struct Color &color) { + return { + (uint8_t)(r + color.r), + (uint8_t)(g + color.g), + (uint8_t)(b + color.b), + (uint8_t)(a + color.a) + }; + } }; #define COLOR_WHITE { 255, 255, 255, 100 } diff --git a/src/dawntools/vnscenetool/CMakeLists.txt b/src/dawntools/vnscenetool/CMakeLists.txt index ff3749d2..865f7454 100644 --- a/src/dawntools/vnscenetool/CMakeLists.txt +++ b/src/dawntools/vnscenetool/CMakeLists.txt @@ -19,6 +19,7 @@ target_sources(vnscenetool VNSceneParser.cpp VNSceneEventsParser.cpp VNSceneGen.cpp + VNSceneItemParser.cpp ) # Includes diff --git a/src/dawntools/vnscenetool/VNSceneEventsParser.cpp b/src/dawntools/vnscenetool/VNSceneEventsParser.cpp index 154860b4..fe8223e7 100644 --- a/src/dawntools/vnscenetool/VNSceneEventsParser.cpp +++ b/src/dawntools/vnscenetool/VNSceneEventsParser.cpp @@ -41,6 +41,13 @@ int32_t VNSceneEventsParser::onParse( ret = (VNPositionEventParser()).parse(child, &event.position, error); if(ret != 0) return ret; + } else if(child->node == "set") { + VNSetEvent parser; + event.type = VN_SCENE_EVENT_TYPE_SET; + ret = (VNSetEventParser()).parse(child, &event.set, error); + if(ret != 0) return ret; + + } else { *error = "Unknown child node '" + child->node + "'"; return -1; diff --git a/src/dawntools/vnscenetool/VNSceneEventsParser.hpp b/src/dawntools/vnscenetool/VNSceneEventsParser.hpp index a004c298..33849d9d 100644 --- a/src/dawntools/vnscenetool/VNSceneEventsParser.hpp +++ b/src/dawntools/vnscenetool/VNSceneEventsParser.hpp @@ -6,11 +6,13 @@ #pragma once #include "events/VNTextEventParser.hpp" #include "events/VNPositionEventParser.hpp" +#include "events/VNSetEventParser.hpp" namespace Dawn { enum VNSceneEventType { VN_SCENE_EVENT_TYPE_TEXT, - VN_SCENE_EVENT_TYPE_POSITION + VN_SCENE_EVENT_TYPE_POSITION, + VN_SCENE_EVENT_TYPE_SET }; struct VNSceneEvent { @@ -18,6 +20,7 @@ namespace Dawn { struct VNTextEvent text; struct VNPositionEvent position; + struct VNSetEvent set; }; struct VNSceneEventList { diff --git a/src/dawntools/vnscenetool/VNSceneGen.cpp b/src/dawntools/vnscenetool/VNSceneGen.cpp index 183bf5f6..7b439e7f 100644 --- a/src/dawntools/vnscenetool/VNSceneGen.cpp +++ b/src/dawntools/vnscenetool/VNSceneGen.cpp @@ -41,10 +41,21 @@ void VNSceneGen::generate( line(&methodStage.body, "auto camera = Camera::create(this);", ""); line(&methodStage.body, "camera->fov = 0.436332f;", ""); line(&methodStage.body, "camera->transform->lookAt(glm::vec3(10, 10, 10), glm::vec3(0, 0, 0));", ""); - line(&methodStage.body, "", ""); - classInfo.includes.push_back("prefabs/SimpleSpinningCubePrefab.hpp"); - line(&methodStage.body, "auto cube = SimpleSpinningCubePrefab::create(this);", ""); + // Items + int32_t itemRefIndex = 0; + auto itItems = scene->items.begin(); + while(itItems != scene->items.end()) { + struct VNSceneItem item = *itItems; + if(item.ref.empty()) item.ref = "item" + std::to_string(itemRefIndex++); + classInfo.includes.push_back(item.prefab + ".hpp"); + + line(&methodStage.body, "", ""); + line(&methodStage.body, "auto " + item.ref + " = " + item.className + "::create(this);", ""); + + ++itItems; + } + line(&methodStage.body, "", ""); // Events @@ -60,27 +71,42 @@ void VNSceneGen::generate( std::string eventName = "event" + std::to_string(eventIndex); std::string initType = ""; std::string initArgs = ""; + std::string toInclude = ""; std::string prev = "previous"; std::vector afterLines; switch(itEvents->type) { case VN_SCENE_EVENT_TYPE_TEXT: initType = "VNTextEvent"; + toInclude = "games/vn/events/VNTextEvent.hpp"; line(&afterLines, eventName + "->" + "text = \"" + itEvents->text.texts.begin()->text + "\";", ""); break; case VN_SCENE_EVENT_TYPE_POSITION: initType = "VNPositionEvent"; + toInclude = "games/vn/events/VNPositionEvent.hpp"; line(&afterLines, eventName + "->item = " + itEvents->position.item + ";", ""); if(itEvents->position.x != "") line(&afterLines, eventName + "->" + "to.x = " + itEvents->position.x + ";", ""); if(itEvents->position.y != "") line(&afterLines, eventName + "->" + "to.y = " + itEvents->position.y + ";", ""); if(itEvents->position.z != "") line(&afterLines, eventName + "->" + "to.z = " + itEvents->position.z + ";", ""); break; + case VN_SCENE_EVENT_TYPE_SET: + initType = "VNSetEvent<" + itEvents->set.type + ">"; + toInclude = "games/vn/events/VNSetEvent.hpp"; + line(&afterLines, eventName + "->modifies = &" + itEvents->set.property + ";", ""); + line(&afterLines, eventName + "->to = " + itEvents->set.to + ";", ""); + if(itEvents->set.from != "") line(&afterLines, eventName + "->from = " + itEvents->set.from + ";", ""); + if(itEvents->set.duration != "") line(&afterLines, eventName + "->duration = " + itEvents->set.duration + ";", ""); + break; + + default: + std::cout << "Unknown event type: " << itEvents->type << std::endl; assertUnreachable(); } + if(!toInclude.empty()) classInfo.includes.push_back(toInclude); line(&methodStage.body, "", ""); line( &methodStage.body, diff --git a/src/dawntools/vnscenetool/VNSceneItemParser.cpp b/src/dawntools/vnscenetool/VNSceneItemParser.cpp new file mode 100644 index 00000000..e903e57a --- /dev/null +++ b/src/dawntools/vnscenetool/VNSceneItemParser.cpp @@ -0,0 +1,47 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNSceneItemParser.hpp" + +using namespace Dawn; + +std::vector VNSceneItemParser::getRequiredAttributes() { + return { "prefab" }; +} + +std::map VNSceneItemParser::getOptionalAttributes() { + return { + { "ref", "" } + }; +} + +int32_t VNSceneItemParser::onParse( + Xml *node, + std::map values, + struct VNSceneItem *out, + std::string *error +) { + out->ref = values["ref"]; + out->prefab = values["prefab"]; + + // Split prefab by / and use the last part as the class name + std::string clazz = out->prefab; + size_t pos = clazz.find_last_of('/'); + if(pos != std::string::npos) clazz = clazz.substr(pos+1); + out->className = clazz; + + // Make sure prefab and className is not empty + if(out->prefab.empty()) { + *error = "Prefab cannot be empty."; + return -1; + } + + if(out->className.empty()) { + *error = "Class name cannot be empty."; + return -1; + } + + return 0; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneItemParser.hpp b/src/dawntools/vnscenetool/VNSceneItemParser.hpp new file mode 100644 index 00000000..02515e9b --- /dev/null +++ b/src/dawntools/vnscenetool/VNSceneItemParser.hpp @@ -0,0 +1,27 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "util/XmlParser.hpp" + +namespace Dawn { + struct VNSceneItem { + std::string ref; + std::string prefab; + std::string className; + }; + + class VNSceneItemParser : public XmlParser { + protected: + std::vector getRequiredAttributes() override; + std::map getOptionalAttributes() override; + int32_t onParse( + Xml *node, + std::map values, + struct VNSceneItem *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 index dd77240d..736ec8c5 100644 --- a/src/dawntools/vnscenetool/VNSceneParser.cpp +++ b/src/dawntools/vnscenetool/VNSceneParser.cpp @@ -29,9 +29,20 @@ int32_t VNSceneParser::onParse( Xml *child = *itChildren; // Parse event(s) - if(child->node == "events") { + if(child->node == "item") { + struct VNSceneItem item; + ret = (VNSceneItemParser()).parse(child, &item, error); + if(ret != 0) return ret; + out->items.push_back(item); + + } else if(child->node == "events") { ret = (VNSceneEventsParser()).parse(child, &out->events, error); if(ret != 0) return ret; + + } else { + // Unknown node + *error = "Unknown node '" + child->node + "' in "; + return -1; } itChildren++; } diff --git a/src/dawntools/vnscenetool/VNSceneParser.hpp b/src/dawntools/vnscenetool/VNSceneParser.hpp index 49bd3c5c..8a391919 100644 --- a/src/dawntools/vnscenetool/VNSceneParser.hpp +++ b/src/dawntools/vnscenetool/VNSceneParser.hpp @@ -4,10 +4,12 @@ // https://opensource.org/licenses/MIT #pragma once +#include "VNSceneItemParser.hpp" #include "VNSceneEventsParser.hpp" namespace Dawn { struct VNScene { + std::vector items; struct VNSceneEventList events; }; diff --git a/src/dawntools/vnscenetool/events/CMakeLists.txt b/src/dawntools/vnscenetool/events/CMakeLists.txt index aa7a159b..31ac61e8 100644 --- a/src/dawntools/vnscenetool/events/CMakeLists.txt +++ b/src/dawntools/vnscenetool/events/CMakeLists.txt @@ -8,4 +8,5 @@ target_sources(vnscenetool PRIVATE VNPositionEventParser.cpp VNTextEventParser.cpp + VNSetEventParser.cpp ) \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNSetEventParser.cpp b/src/dawntools/vnscenetool/events/VNSetEventParser.cpp new file mode 100644 index 00000000..878dcd7b --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNSetEventParser.cpp @@ -0,0 +1,45 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNSetEventParser.hpp" + +using namespace Dawn; + +std::vector VNSetEventParser::getRequiredAttributes() { + return { "property", "type" }; +} + +std::map VNSetEventParser::getOptionalAttributes() { + return { + { "to", "" }, + { "value", "" }, + { "from", "" }, + { "duration", "" }, + { "curve", "" } + }; +} + +int32_t VNSetEventParser::onParse( + Xml *node, + std::map values, + struct VNSetEvent *out, + std::string *error +) { + if(values["to"] != "") { + out->to = values["to"]; + } else if(values["value"] != "") { + out->to = values["value"]; + } else { + *error = "Either 'to' or 'value' must be specified"; + return -1; + } + + out->type = values["type"]; + out->property = values["property"]; + out->from = values["from"]; + out->duration = values["duration"]; + out->curve = values["curve"]; + return 0; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNSetEventParser.hpp b/src/dawntools/vnscenetool/events/VNSetEventParser.hpp new file mode 100644 index 00000000..d085fa54 --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNSetEventParser.hpp @@ -0,0 +1,30 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "util/XmlParser.hpp" + +namespace Dawn { + struct VNSetEvent { + std::string property = ""; + std::string to = ""; + std::string from = ""; + std::string duration = ""; + std::string curve = ""; + std::string type = ""; + }; + + class VNSetEventParser : public XmlParser { + protected: + std::vector getRequiredAttributes() override; + std::map getOptionalAttributes() override; + int32_t onParse( + Xml *node, + std::map values, + struct VNSetEvent *out, + std::string *error + ) override; + }; +} \ No newline at end of file From 6bc6917b0c2191bf9fd82bf0162bb56720edd5e4 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 23 Apr 2023 21:43:17 -0700 Subject: [PATCH 6/9] Parallel event --- src/dawn/games/vn/components/VNManager.cpp | 10 +---- src/dawn/games/vn/components/VNManager.hpp | 16 ++++---- src/dawn/games/vn/events/VNEvent.cpp | 18 +++++++-- src/dawn/games/vn/events/VNEvent.hpp | 23 +++++++++--- src/dawn/games/vn/events/VNParallelEvent.hpp | 39 ++++++++++++++++++++ src/dawn/games/vn/events/VNWaitEvent.hpp | 4 +- src/dawnliminal/game/LiminalGame.cpp | 4 +- src/dawnliminal/scenes/HelloWorldScene.hpp | 17 +++++++-- 8 files changed, 98 insertions(+), 33 deletions(-) create mode 100644 src/dawn/games/vn/events/VNParallelEvent.hpp diff --git a/src/dawn/games/vn/components/VNManager.cpp b/src/dawn/games/vn/components/VNManager.cpp index 169cd0f5..8aacf0a9 100644 --- a/src/dawn/games/vn/components/VNManager.cpp +++ b/src/dawn/games/vn/components/VNManager.cpp @@ -15,7 +15,7 @@ VNManager::VNManager(SceneItem *item) : void VNManager::onStart() { if(this->currentEvent != nullptr) { - this->currentEvent->start(nullptr); + this->currentEvent->start(this, nullptr); } } @@ -32,14 +32,6 @@ std::string VNManager::getFlag(std::string key) { return this->flags[key]; } -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 index 0485fea8..b000bb1d 100644 --- a/src/dawn/games/vn/components/VNManager.hpp +++ b/src/dawn/games/vn/components/VNManager.hpp @@ -9,10 +9,17 @@ namespace Dawn { class VNEvent; - class VNManager : public SceneItemComponent { + class IVNEventParent { + public: + VNEvent *currentEvent = nullptr; + }; + + class VNManager : + public SceneItemComponent, + public IVNEventParent + { protected: std::vector events; - VNEvent *currentEvent = nullptr; std::map flags; public: @@ -42,11 +49,6 @@ namespace Dawn { */ void setEvent(VNEvent *event); - /** - * Ends the current event, and moves to the next one. - */ - void nextEvent(); - /** * Sets a flag for the visual novel. * diff --git a/src/dawn/games/vn/events/VNEvent.cpp b/src/dawn/games/vn/events/VNEvent.cpp index 9212b795..a524be8f 100644 --- a/src/dawn/games/vn/events/VNEvent.cpp +++ b/src/dawn/games/vn/events/VNEvent.cpp @@ -11,7 +11,12 @@ void VNEvent::init(VNManager *manager) { this->manager = manager; } -void VNEvent::start(VNEvent *previous) { +void VNEvent::start( + IVNEventParent *parent, + VNEvent *previous +) { + this->parent = parent; + finished = false; this->onStart(); } @@ -25,13 +30,20 @@ VNEvent * VNEvent::getNextEvent() { void VNEvent::next() { assertNotNull(this->manager); - assertTrue(this->manager->currentEvent == this); - this->manager->nextEvent(); + assertNotNull(this->parent); + + this->end(); + auto next = this->getNextEvent(); + this->manager->currentEvent = next; + if(next != nullptr) next->start(this->parent, this); } void VNEvent::end() { + this->finished = true; this->unsubscribeAllEvents(); this->onEnd(); + + this->eventFinished.invoke(); } void VNEvent::onStart() {} diff --git a/src/dawn/games/vn/events/VNEvent.hpp b/src/dawn/games/vn/events/VNEvent.hpp index 50840513..4ced5e1c 100644 --- a/src/dawn/games/vn/events/VNEvent.hpp +++ b/src/dawn/games/vn/events/VNEvent.hpp @@ -9,24 +9,35 @@ namespace Dawn { class VNEvent : public StateOwner { + public: + StateEvent<> eventFinished; + + /** + * Invoked by a parent VN Manager. This is the start of the event. + * + * @param parent The VN Event Parent. Usually the manager but not always. + * @param previous The previous event that was running before this one. + */ + void start( + IVNEventParent *parent, + VNEvent *previous + ); + protected: VNManager *manager = nullptr; + IVNEventParent *parent = nullptr; VNEvent *doNext = nullptr; VNEvent *previous = nullptr; + bool_t finished = false; /** * 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 diff --git a/src/dawn/games/vn/events/VNParallelEvent.hpp b/src/dawn/games/vn/events/VNParallelEvent.hpp new file mode 100644 index 00000000..f751fddd --- /dev/null +++ b/src/dawn/games/vn/events/VNParallelEvent.hpp @@ -0,0 +1,39 @@ +// 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 VNParallelEvent : + public VNEvent, + public IVNEventParent + { + public: + std::vector events; + + protected: + int32_t eventCount; + int32_t eventCompleteCount; + + void onStart() override { + eventCount = 0; + eventCompleteCount = 0; + + auto itEvents = this->events.begin(); + while(itEvents != this->events.end()) { + auto event = *itEvents; + event->start(this, this); + eventCount++; + + useEvent([&]{ + eventCompleteCount++; + if(eventCompleteCount >= eventCount) this->next(); + }, event->eventFinished); + itEvents++; + } + } + }; +} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNWaitEvent.hpp b/src/dawn/games/vn/events/VNWaitEvent.hpp index e03f2302..a0233574 100644 --- a/src/dawn/games/vn/events/VNWaitEvent.hpp +++ b/src/dawn/games/vn/events/VNWaitEvent.hpp @@ -8,10 +8,8 @@ namespace Dawn { class VNWaitEvent : public VNAnimateEvent { - public: - protected: - void setValue(T value) override { + void setValue(float_t value) override { // Do nothing } }; diff --git a/src/dawnliminal/game/LiminalGame.cpp b/src/dawnliminal/game/LiminalGame.cpp index 7bec3cab..4c28a4cb 100644 --- a/src/dawnliminal/game/LiminalGame.cpp +++ b/src/dawnliminal/game/LiminalGame.cpp @@ -10,6 +10,6 @@ using namespace Dawn; Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) { - // return new HelloWorldScene(game); - return new TestScene(game); + return new HelloWorldScene(game); + // return new TestScene(game); } \ No newline at end of file diff --git a/src/dawnliminal/scenes/HelloWorldScene.hpp b/src/dawnliminal/scenes/HelloWorldScene.hpp index 14359484..6daa3b5e 100644 --- a/src/dawnliminal/scenes/HelloWorldScene.hpp +++ b/src/dawnliminal/scenes/HelloWorldScene.hpp @@ -13,6 +13,8 @@ #include "games/vn/events/VNPositionEvent.hpp" #include "games/vn/events/VNSetEvent.hpp" #include "games/vn/events/VNChoiceEvent.hpp" +#include "games/vn/events/VNParallelEvent.hpp" +#include "games/vn/events/VNWaitEvent.hpp" namespace Dawn { class HelloWorldScene : public Scene { @@ -55,12 +57,21 @@ namespace Dawn { choiceEvent->choices["state2"] = "State 2"; choiceEvent->choices["state3"] = "State 3"; + auto parallelEvent = vnManager->createEvent(); + auto wait0 = vnManager->createEvent(); + wait0->duration = 1.0f; + parallelEvent->events.push_back(wait0); + + auto wait1 = vnManager->createEvent(); + wait1->duration = 3.0f; + parallelEvent->events.push_back(wait1); eventTest + ->then(parallelEvent) ->then(positionEvent) - ->then(vnTextEvent) - ->then(setPropertyEvent) - ->then(choiceEvent) + // ->then(vnTextEvent) + // ->then(setPropertyEvent) + // ->then(choiceEvent) ; vnManager->setEvent(eventTest); } From e01b3d63467dac6918b034c84ce91b830bef0feb Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Mon, 24 Apr 2023 20:04:31 -0700 Subject: [PATCH 7/9] Parallel event processing --- src/dawnliminal/game/LiminalGame.cpp | 4 +- src/dawntools/vnscenetool/CMakeLists.txt | 1 - src/dawntools/vnscenetool/VNSceneGen.cpp | 130 +++++++++++------- src/dawntools/vnscenetool/VNSceneGen.hpp | 8 ++ src/dawntools/vnscenetool/VNSceneParser.hpp | 2 +- .../vnscenetool/events/CMakeLists.txt | 3 + .../events/VNParallelEventParser.cpp | 27 ++++ .../events/VNParallelEventParser.hpp | 23 ++++ .../{ => events}/VNSceneEventsParser.cpp | 13 +- .../{ => events}/VNSceneEventsParser.hpp | 28 ++-- .../vnscenetool/events/VNWaitEventParser.cpp | 35 +++++ .../vnscenetool/events/VNWaitEventParser.hpp | 25 ++++ 12 files changed, 238 insertions(+), 61 deletions(-) create mode 100644 src/dawntools/vnscenetool/events/VNParallelEventParser.cpp create mode 100644 src/dawntools/vnscenetool/events/VNParallelEventParser.hpp rename src/dawntools/vnscenetool/{ => events}/VNSceneEventsParser.cpp (77%) rename src/dawntools/vnscenetool/{ => events}/VNSceneEventsParser.hpp (68%) create mode 100644 src/dawntools/vnscenetool/events/VNWaitEventParser.cpp create mode 100644 src/dawntools/vnscenetool/events/VNWaitEventParser.hpp diff --git a/src/dawnliminal/game/LiminalGame.cpp b/src/dawnliminal/game/LiminalGame.cpp index 4c28a4cb..7bec3cab 100644 --- a/src/dawnliminal/game/LiminalGame.cpp +++ b/src/dawnliminal/game/LiminalGame.cpp @@ -10,6 +10,6 @@ using namespace Dawn; Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) { - return new HelloWorldScene(game); - // return new TestScene(game); + // return new HelloWorldScene(game); + return new TestScene(game); } \ No newline at end of file diff --git a/src/dawntools/vnscenetool/CMakeLists.txt b/src/dawntools/vnscenetool/CMakeLists.txt index 865f7454..028c7b4b 100644 --- a/src/dawntools/vnscenetool/CMakeLists.txt +++ b/src/dawntools/vnscenetool/CMakeLists.txt @@ -17,7 +17,6 @@ target_sources(vnscenetool ${DAWN_TOOL_SOURCES} VNSceneTool.cpp VNSceneParser.cpp - VNSceneEventsParser.cpp VNSceneGen.cpp VNSceneItemParser.cpp ) diff --git a/src/dawntools/vnscenetool/VNSceneGen.cpp b/src/dawntools/vnscenetool/VNSceneGen.cpp index 7b439e7f..cfa55f0e 100644 --- a/src/dawntools/vnscenetool/VNSceneGen.cpp +++ b/src/dawntools/vnscenetool/VNSceneGen.cpp @@ -7,6 +7,81 @@ using namespace Dawn; +void VNSceneGen::test( + std::string eventName, + struct VNSceneEvent *event, + int32_t *eventIndex, + std::vector *body, + std::vector *includes +) { + std::string initType = ""; + std::string toInclude = ""; + std::string initArgs = ""; + std::vector afterLines; + + switch(event->type) { + case VN_SCENE_EVENT_TYPE_TEXT: + initType = "VNTextEvent"; + toInclude = "games/vn/events/VNTextEvent.hpp"; + line(body, eventName + "->" + "text = \"" + event->text.texts.begin()->text + "\";", ""); + break; + + case VN_SCENE_EVENT_TYPE_POSITION: + initType = "VNPositionEvent"; + toInclude = "games/vn/events/VNPositionEvent.hpp"; + line(&afterLines, eventName + "->item = " + event->position.item + ";", ""); + if(event->position.x != "") line(&afterLines, eventName + "->" + "to.x = " + event->position.x + ";", ""); + if(event->position.y != "") line(&afterLines, eventName + "->" + "to.y = " + event->position.y + ";", ""); + if(event->position.z != "") line(&afterLines, eventName + "->" + "to.z = " + event->position.z + ";", ""); + break; + + case VN_SCENE_EVENT_TYPE_SET: + initType = "VNSetEvent<" + event->set.type + ">"; + toInclude = "games/vn/events/VNSetEvent.hpp"; + line(&afterLines, eventName + "->modifies = &" + event->set.property + ";", ""); + line(&afterLines, eventName + "->to = " + event->set.to + ";", ""); + if(event->set.from != "") line(&afterLines, eventName + "->from = " + event->set.from + ";", ""); + if(event->set.duration != "") line(&afterLines, eventName + "->duration = " + event->set.duration + ";", ""); + break; + + case VN_SCENE_EVENT_TYPE_WAIT: + initType = "VNWaitEvent"; + toInclude = "games/vn/events/VNWaitEvent.hpp"; + line(&afterLines, eventName + "->duration = " + event->wait.duration + ";", ""); + break; + + case VN_SCENE_EVENT_TYPE_PARALLEL: { + initType = "VNParallelEvent"; + toInclude = "games/vn/events/VNParallelEvent.hpp"; + + auto itParallel = event->parallel.events.events.begin(); + while(itParallel != event->parallel.events.events.end()) { + std::string pEventName = "pEvent" + std::to_string((*eventIndex)++); + VNSceneGen::test( + pEventName, + &(*itParallel), + eventIndex, + &afterLines, + includes + ); + line(&afterLines, eventName + "->events.push_back(" + pEventName + ");", ""); + line(&afterLines, "", ""); + ++itParallel; + } + break; + } + + default: + std::cout << "Unknown event type: " << event->type << std::endl; + assertUnreachable(); + } + + if(!toInclude.empty()) includes->push_back(toInclude); + + line(body, "auto " + eventName + " = vnManager->createEvent<" + initType + ">(" + initArgs + ");", ""); + lines(body, afterLines, ""); +} + void VNSceneGen::generate( std::vector *out, struct VNScene *scene, @@ -67,56 +142,19 @@ void VNSceneGen::generate( int32_t eventIndex = 0; auto itEvents = scene->events.events.begin(); + std::string previous = "eventStart"; while(itEvents != scene->events.events.end()) { - std::string eventName = "event" + std::to_string(eventIndex); - std::string initType = ""; - std::string initArgs = ""; - std::string toInclude = ""; - std::string prev = "previous"; - std::vector afterLines; - - switch(itEvents->type) { - case VN_SCENE_EVENT_TYPE_TEXT: - initType = "VNTextEvent"; - toInclude = "games/vn/events/VNTextEvent.hpp"; - line(&afterLines, eventName + "->" + "text = \"" + itEvents->text.texts.begin()->text + "\";", ""); - break; - - case VN_SCENE_EVENT_TYPE_POSITION: - initType = "VNPositionEvent"; - toInclude = "games/vn/events/VNPositionEvent.hpp"; - line(&afterLines, eventName + "->item = " + itEvents->position.item + ";", ""); - if(itEvents->position.x != "") line(&afterLines, eventName + "->" + "to.x = " + itEvents->position.x + ";", ""); - if(itEvents->position.y != "") line(&afterLines, eventName + "->" + "to.y = " + itEvents->position.y + ";", ""); - if(itEvents->position.z != "") line(&afterLines, eventName + "->" + "to.z = " + itEvents->position.z + ";", ""); - break; - - case VN_SCENE_EVENT_TYPE_SET: - initType = "VNSetEvent<" + itEvents->set.type + ">"; - toInclude = "games/vn/events/VNSetEvent.hpp"; - line(&afterLines, eventName + "->modifies = &" + itEvents->set.property + ";", ""); - line(&afterLines, eventName + "->to = " + itEvents->set.to + ";", ""); - if(itEvents->set.from != "") line(&afterLines, eventName + "->from = " + itEvents->set.from + ";", ""); - if(itEvents->set.duration != "") line(&afterLines, eventName + "->duration = " + itEvents->set.duration + ";", ""); - break; - - - default: - std::cout << "Unknown event type: " << itEvents->type << std::endl; - assertUnreachable(); - } - - if(!toInclude.empty()) classInfo.includes.push_back(toInclude); line(&methodStage.body, "", ""); - line( + std::string eventName = "event" + std::to_string(eventIndex++); + VNSceneGen::test( + eventName, + &(*itEvents), + &eventIndex, &methodStage.body, - "auto " + eventName + " = " + prev + "->then(vnManager->createEvent<" + initType + ">(" + initArgs + "));", - "" + &classInfo.includes ); - line(&methodStage.body, "previous = " + eventName + ";", ""); - lines(&methodStage.body, afterLines, ""); - - eventIndex++; + line(&methodStage.body, previous + "->then(" + eventName + ");", ""); + previous = eventName; ++itEvents; } diff --git a/src/dawntools/vnscenetool/VNSceneGen.hpp b/src/dawntools/vnscenetool/VNSceneGen.hpp index 8a704b89..c70c9aed 100644 --- a/src/dawntools/vnscenetool/VNSceneGen.hpp +++ b/src/dawntools/vnscenetool/VNSceneGen.hpp @@ -10,6 +10,14 @@ namespace Dawn { class VNSceneGen : public CodeGen { public: + static void test( + std::string eventName, + struct VNSceneEvent *event, + int32_t *eventIndex, + std::vector *body, + std::vector *includes + ); + static void generate( std::vector *out, struct VNScene *scene, diff --git a/src/dawntools/vnscenetool/VNSceneParser.hpp b/src/dawntools/vnscenetool/VNSceneParser.hpp index 8a391919..17f661c4 100644 --- a/src/dawntools/vnscenetool/VNSceneParser.hpp +++ b/src/dawntools/vnscenetool/VNSceneParser.hpp @@ -5,7 +5,7 @@ #pragma once #include "VNSceneItemParser.hpp" -#include "VNSceneEventsParser.hpp" +#include "events/VNSceneEventsParser.hpp" namespace Dawn { struct VNScene { diff --git a/src/dawntools/vnscenetool/events/CMakeLists.txt b/src/dawntools/vnscenetool/events/CMakeLists.txt index 31ac61e8..9703f802 100644 --- a/src/dawntools/vnscenetool/events/CMakeLists.txt +++ b/src/dawntools/vnscenetool/events/CMakeLists.txt @@ -6,7 +6,10 @@ # Sources target_sources(vnscenetool PRIVATE + VNSceneEventsParser.cpp VNPositionEventParser.cpp VNTextEventParser.cpp VNSetEventParser.cpp + VNWaitEventParser.cpp + VNParallelEventParser.cpp ) \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNParallelEventParser.cpp b/src/dawntools/vnscenetool/events/VNParallelEventParser.cpp new file mode 100644 index 00000000..a811bc65 --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNParallelEventParser.cpp @@ -0,0 +1,27 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNParallelEventParser.hpp" +#include "VNSceneEventsParser.hpp" + +using namespace Dawn; + +std::vector VNParallelEventParser::getRequiredAttributes() { + return std::vector(); +} + +std::map VNParallelEventParser::getOptionalAttributes() { + return std::map(); +} + +int32_t VNParallelEventParser::onParse( + Xml *node, + std::map values, + struct VNParallelEvent *out, + std::string *error +) { + // Parse all children + return (VNSceneEventsParser()).parse(node, &out->events, error); +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNParallelEventParser.hpp b/src/dawntools/vnscenetool/events/VNParallelEventParser.hpp new file mode 100644 index 00000000..07169f91 --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNParallelEventParser.hpp @@ -0,0 +1,23 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "util/XmlParser.hpp" + +namespace Dawn { + struct VNParallelEvent; + + class VNParallelEventParser : public XmlParser { + protected: + std::vector getRequiredAttributes() override; + std::map getOptionalAttributes() override; + int32_t onParse( + Xml *node, + std::map values, + struct VNParallelEvent *out, + std::string *error + ) override; + }; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneEventsParser.cpp b/src/dawntools/vnscenetool/events/VNSceneEventsParser.cpp similarity index 77% rename from src/dawntools/vnscenetool/VNSceneEventsParser.cpp rename to src/dawntools/vnscenetool/events/VNSceneEventsParser.cpp index fe8223e7..e4c6ab34 100644 --- a/src/dawntools/vnscenetool/VNSceneEventsParser.cpp +++ b/src/dawntools/vnscenetool/events/VNSceneEventsParser.cpp @@ -4,6 +4,7 @@ // https://opensource.org/licenses/MIT #include "VNSceneEventsParser.hpp" +#include "VNParallelEventParser.hpp" using namespace Dawn; @@ -30,23 +31,29 @@ int32_t VNSceneEventsParser::onParse( // Parse event(s) if(child->node == "text") { - VNTextEventParser parser; event.type = VN_SCENE_EVENT_TYPE_TEXT; ret = (VNTextEventParser()).parse(child, &event.text, error); if(ret != 0) return ret; } else if(child->node == "position") { - VNPositionEventParser parser; event.type = VN_SCENE_EVENT_TYPE_POSITION; ret = (VNPositionEventParser()).parse(child, &event.position, error); if(ret != 0) return ret; } else if(child->node == "set") { - VNSetEvent parser; event.type = VN_SCENE_EVENT_TYPE_SET; ret = (VNSetEventParser()).parse(child, &event.set, error); if(ret != 0) return ret; + } else if(child->node == "wait") { + event.type = VN_SCENE_EVENT_TYPE_WAIT; + ret = (VNWaitEventParser()).parse(child, &event.wait, error); + if(ret != 0) return ret; + + } else if(child->node == "parallel") { + event.type = VN_SCENE_EVENT_TYPE_PARALLEL; + ret = (VNParallelEventParser()).parse(child, &event.parallel, error); + if(ret != 0) return ret; } else { *error = "Unknown child node '" + child->node + "'"; diff --git a/src/dawntools/vnscenetool/VNSceneEventsParser.hpp b/src/dawntools/vnscenetool/events/VNSceneEventsParser.hpp similarity index 68% rename from src/dawntools/vnscenetool/VNSceneEventsParser.hpp rename to src/dawntools/vnscenetool/events/VNSceneEventsParser.hpp index 33849d9d..77f83642 100644 --- a/src/dawntools/vnscenetool/VNSceneEventsParser.hpp +++ b/src/dawntools/vnscenetool/events/VNSceneEventsParser.hpp @@ -4,15 +4,29 @@ // https://opensource.org/licenses/MIT #pragma once -#include "events/VNTextEventParser.hpp" -#include "events/VNPositionEventParser.hpp" -#include "events/VNSetEventParser.hpp" +#include "VNTextEventParser.hpp" +#include "VNPositionEventParser.hpp" +#include "VNSetEventParser.hpp" +#include "VNWaitEventParser.hpp" +#include "VNParallelEventParser.hpp" namespace Dawn { + struct VNSceneEvent; + + struct VNSceneEventList { + std::vector events; + }; + enum VNSceneEventType { VN_SCENE_EVENT_TYPE_TEXT, VN_SCENE_EVENT_TYPE_POSITION, - VN_SCENE_EVENT_TYPE_SET + VN_SCENE_EVENT_TYPE_SET, + VN_SCENE_EVENT_TYPE_WAIT, + VN_SCENE_EVENT_TYPE_PARALLEL + }; + + struct VNParallelEvent { + struct VNSceneEventList events; }; struct VNSceneEvent { @@ -21,10 +35,8 @@ namespace Dawn { struct VNTextEvent text; struct VNPositionEvent position; struct VNSetEvent set; - }; - - struct VNSceneEventList { - std::vector events; + struct VNWaitEvent wait; + struct VNParallelEvent parallel; }; class VNSceneEventsParser : public XmlParser { diff --git a/src/dawntools/vnscenetool/events/VNWaitEventParser.cpp b/src/dawntools/vnscenetool/events/VNWaitEventParser.cpp new file mode 100644 index 00000000..f4cf8f65 --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNWaitEventParser.cpp @@ -0,0 +1,35 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNWaitEventParser.hpp" + +using namespace Dawn; + +std::vector VNWaitEventParser::getRequiredAttributes() { + return { }; +} + +std::map VNWaitEventParser::getOptionalAttributes() { + return { { "duration", "" }, { "time", "" } }; +} + +int32_t VNWaitEventParser::onParse( + Xml *node, + std::map values, + VNWaitEvent *out, + std::string *error +) { + //Get the duration + if(!values["duration"].empty()) { + out->duration = values["duration"]; + } else if(!values["time"].empty()) { + out->duration = values["time"]; + } else { + *error = "No duration specified."; + return -1; + } + + return 0; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNWaitEventParser.hpp b/src/dawntools/vnscenetool/events/VNWaitEventParser.hpp new file mode 100644 index 00000000..75d2bf6b --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNWaitEventParser.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 "util/XmlParser.hpp" + +namespace Dawn { + struct VNWaitEvent { + std::string duration; + }; + + class VNWaitEventParser : public XmlParser { + protected: + std::vector getRequiredAttributes() override; + std::map getOptionalAttributes() override; + int32_t onParse( + Xml *node, + std::map values, + VNWaitEvent *out, + std::string *error + ) override; + }; +} \ No newline at end of file From 335f24f39397a854b5ddaa53af3626e1fc8ca584 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Mon, 24 Apr 2023 22:35:45 -0700 Subject: [PATCH 8/9] Fixed parallel event bug --- src/dawn/games/vn/events/VNParallelEvent.hpp | 3 ++- src/dawntools/vnscenetool/VNSceneGen.cpp | 2 +- .../vnscenetool/events/VNMarkerParser.hpp | 25 +++++++++++++++++++ 3 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 src/dawntools/vnscenetool/events/VNMarkerParser.hpp diff --git a/src/dawn/games/vn/events/VNParallelEvent.hpp b/src/dawn/games/vn/events/VNParallelEvent.hpp index f751fddd..e511ed69 100644 --- a/src/dawn/games/vn/events/VNParallelEvent.hpp +++ b/src/dawn/games/vn/events/VNParallelEvent.hpp @@ -25,13 +25,14 @@ namespace Dawn { auto itEvents = this->events.begin(); while(itEvents != this->events.end()) { auto event = *itEvents; - event->start(this, this); eventCount++; useEvent([&]{ eventCompleteCount++; if(eventCompleteCount >= eventCount) this->next(); }, event->eventFinished); + + event->start(this, this); itEvents++; } } diff --git a/src/dawntools/vnscenetool/VNSceneGen.cpp b/src/dawntools/vnscenetool/VNSceneGen.cpp index cfa55f0e..83a7c999 100644 --- a/src/dawntools/vnscenetool/VNSceneGen.cpp +++ b/src/dawntools/vnscenetool/VNSceneGen.cpp @@ -23,7 +23,7 @@ void VNSceneGen::test( case VN_SCENE_EVENT_TYPE_TEXT: initType = "VNTextEvent"; toInclude = "games/vn/events/VNTextEvent.hpp"; - line(body, eventName + "->" + "text = \"" + event->text.texts.begin()->text + "\";", ""); + line(&afterLines, eventName + "->" + "text = \"" + event->text.texts.begin()->text + "\";", ""); break; case VN_SCENE_EVENT_TYPE_POSITION: diff --git a/src/dawntools/vnscenetool/events/VNMarkerParser.hpp b/src/dawntools/vnscenetool/events/VNMarkerParser.hpp new file mode 100644 index 00000000..f9b05c68 --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNMarkerParser.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 "util/XmlParser.hpp" + +namespace Dawn { + struct VNMarker { + std::string name; + }; + + class VNMarkerParser : public XmlParser { + protected: + std::vector getRequiredAttributes() override; + std::map getOptionalAttributes() override; + int32_t onParse( + Xml *node, + std::map values, + struct VNMarker *out, + std::string *error + ) override; + }; +} \ No newline at end of file From 5ce9e1ea5df0a74125e55ba0ed4938b9f1ce96b4 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 25 Apr 2023 18:22:55 -0700 Subject: [PATCH 9/9] Marker progress --- src/dawntools/vnscenetool/VNSceneGen.cpp | 6 ++++ .../vnscenetool/events/CMakeLists.txt | 1 + .../events/VNGoToMarkerEventParser.cpp | 26 +++++++++++++++ .../events/VNGoToMarkerEventParser.hpp | 25 +++++++++++++++ .../vnscenetool/events/VNMarkerParser.cpp | 32 +++++++++++++++++++ .../vnscenetool/events/VNMarkerParser.hpp | 1 + .../events/VNSceneEventsParser.cpp | 5 +++ .../events/VNSceneEventsParser.hpp | 5 ++- 8 files changed, 100 insertions(+), 1 deletion(-) create mode 100644 src/dawntools/vnscenetool/events/VNGoToMarkerEventParser.cpp create mode 100644 src/dawntools/vnscenetool/events/VNGoToMarkerEventParser.hpp create mode 100644 src/dawntools/vnscenetool/events/VNMarkerParser.cpp diff --git a/src/dawntools/vnscenetool/VNSceneGen.cpp b/src/dawntools/vnscenetool/VNSceneGen.cpp index 83a7c999..0c70a001 100644 --- a/src/dawntools/vnscenetool/VNSceneGen.cpp +++ b/src/dawntools/vnscenetool/VNSceneGen.cpp @@ -71,6 +71,12 @@ void VNSceneGen::test( break; } + case VN_SCENE_EVENT_TYPE_MARKER: + initType = "VNDummyEvent"; + toInclude = "games/vn/events/VNDummyEvent.hpp"; + line(&afterLines, "auto marker_" + event->marker.name + " = " + eventName + ";", ""); + break; + default: std::cout << "Unknown event type: " << event->type << std::endl; assertUnreachable(); diff --git a/src/dawntools/vnscenetool/events/CMakeLists.txt b/src/dawntools/vnscenetool/events/CMakeLists.txt index 9703f802..42d57e61 100644 --- a/src/dawntools/vnscenetool/events/CMakeLists.txt +++ b/src/dawntools/vnscenetool/events/CMakeLists.txt @@ -6,6 +6,7 @@ # Sources target_sources(vnscenetool PRIVATE + VNMarkerParser.cpp VNSceneEventsParser.cpp VNPositionEventParser.cpp VNTextEventParser.cpp diff --git a/src/dawntools/vnscenetool/events/VNGoToMarkerEventParser.cpp b/src/dawntools/vnscenetool/events/VNGoToMarkerEventParser.cpp new file mode 100644 index 00000000..3aa025c3 --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNGoToMarkerEventParser.cpp @@ -0,0 +1,26 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNGoToMarkerEventParser.hpp" + +using namespace Dawn; + +std::vector VNGoToMarkerEventParser::getRequiredAttributes() { + return { "name" }; +} + +std::map VNGoToMarkerEventParser::getOptionalAttributes() { + return {}; +} + +int32_t VNGoToMarkerEventParser::onParse( + Xml *node, + std::map values, + struct VNGoToMarkerEvent *out, + std::string *error +) { + out->name = values["name"]; + return 0; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNGoToMarkerEventParser.hpp b/src/dawntools/vnscenetool/events/VNGoToMarkerEventParser.hpp new file mode 100644 index 00000000..e44d0630 --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNGoToMarkerEventParser.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 "util/XmlParser.hpp" + +namespace Dawn { + struct VNGoToMarkerEvent { + std::string name; + }; + + class VNGoToMarkerEventParser : public XmlParser { + protected: + std::vector getRequiredAttributes() override; + std::map getOptionalAttributes() override; + int32_t onParse( + Xml *node, + std::map values, + struct VNGoToMarkerEvent *out, + std::string *error + ) override; + }; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNMarkerParser.cpp b/src/dawntools/vnscenetool/events/VNMarkerParser.cpp new file mode 100644 index 00000000..93921925 --- /dev/null +++ b/src/dawntools/vnscenetool/events/VNMarkerParser.cpp @@ -0,0 +1,32 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNMarkerParser.hpp" + +using namespace Dawn; + +std::vector VNMarkerParser::getRequiredAttributes() { + return { "name" }; +} + +std::map VNMarkerParser::getOptionalAttributes() { + return {}; +} + +int32_t VNMarkerParser::onParse( + Xml *node, + std::map values, + struct VNMarker *out, + std::string *error +) { + // Ensure name only contains letters, and numbers, no spaces or symbols + if(!std::regex_match(values["name"], std::regex("^[a-zA-Z0-9]+$"))) { + *error = "Marker name " + values["name"] + " must only contain letters and numbers."; + return -1; + } + + out->name = values["name"]; + return 0; +} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNMarkerParser.hpp b/src/dawntools/vnscenetool/events/VNMarkerParser.hpp index f9b05c68..8fcc7840 100644 --- a/src/dawntools/vnscenetool/events/VNMarkerParser.hpp +++ b/src/dawntools/vnscenetool/events/VNMarkerParser.hpp @@ -5,6 +5,7 @@ #pragma once #include "util/XmlParser.hpp" +#include namespace Dawn { struct VNMarker { diff --git a/src/dawntools/vnscenetool/events/VNSceneEventsParser.cpp b/src/dawntools/vnscenetool/events/VNSceneEventsParser.cpp index e4c6ab34..51dd7532 100644 --- a/src/dawntools/vnscenetool/events/VNSceneEventsParser.cpp +++ b/src/dawntools/vnscenetool/events/VNSceneEventsParser.cpp @@ -55,6 +55,11 @@ int32_t VNSceneEventsParser::onParse( ret = (VNParallelEventParser()).parse(child, &event.parallel, error); if(ret != 0) return ret; + } else if(child->node == "marker") { + event.type = VN_SCENE_EVENT_TYPE_MARKER; + ret = (VNMarkerParser()).parse(child, &event.marker, error); + if(ret != 0) return ret; + } else { *error = "Unknown child node '" + child->node + "'"; return -1; diff --git a/src/dawntools/vnscenetool/events/VNSceneEventsParser.hpp b/src/dawntools/vnscenetool/events/VNSceneEventsParser.hpp index 77f83642..49698b49 100644 --- a/src/dawntools/vnscenetool/events/VNSceneEventsParser.hpp +++ b/src/dawntools/vnscenetool/events/VNSceneEventsParser.hpp @@ -9,6 +9,7 @@ #include "VNSetEventParser.hpp" #include "VNWaitEventParser.hpp" #include "VNParallelEventParser.hpp" +#include "VNMarkerParser.hpp" namespace Dawn { struct VNSceneEvent; @@ -22,7 +23,8 @@ namespace Dawn { VN_SCENE_EVENT_TYPE_POSITION, VN_SCENE_EVENT_TYPE_SET, VN_SCENE_EVENT_TYPE_WAIT, - VN_SCENE_EVENT_TYPE_PARALLEL + VN_SCENE_EVENT_TYPE_PARALLEL, + VN_SCENE_EVENT_TYPE_MARKER }; struct VNParallelEvent { @@ -37,6 +39,7 @@ namespace Dawn { struct VNSetEvent set; struct VNWaitEvent wait; struct VNParallelEvent parallel; + struct VNMarker marker; }; class VNSceneEventsParser : public XmlParser {