From 7585891276b3c45ac6a618e638ff66eaf5ab7043 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Mon, 16 Jan 2023 10:01:06 -0800 Subject: [PATCH] about to add SDL and probably break everything --- lib/glfw | 2 +- lib/glm | 2 +- src/dawn/asset/AssetManager.cpp | 2 +- src/dawn/game/_DawnGame.hpp | 9 +++ src/dawn/scene/Scene.cpp | 8 +++ src/dawn/scene/SceneItem.cpp | 9 +++ src/dawn/scene/SceneItem.hpp | 6 ++ src/dawn/scene/SceneItemComponent.cpp | 4 ++ src/dawn/scene/SceneItemComponent.hpp | 8 ++- .../display/AnimationController.cpp | 2 +- .../display/AnimationController.hpp | 3 +- src/dawn/scene/components/display/Camera.cpp | 8 ++- src/dawn/scene/components/display/Camera.hpp | 10 ++- .../components/display/PixelPerfectCamera.cpp | 18 +++-- .../components/display/PixelPerfectCamera.hpp | 5 +- .../display/SimpleRenderTargetQuad.cpp | 2 +- .../display/SimpleRenderTargetQuad.hpp | 3 +- .../scene/components/example/ExampleSpin.cpp | 2 +- .../scene/components/example/ExampleSpin.hpp | 2 +- .../components/scene/SubSceneCameraAlign.cpp | 18 +++-- .../components/scene/SubSceneCameraAlign.hpp | 25 ++++++- .../components/scene/SubSceneController.cpp | 2 +- .../components/scene/SubSceneController.hpp | 3 +- src/dawn/scene/components/ui/UICanvas.cpp | 20 +++--- src/dawn/scene/components/ui/UICanvas.hpp | 5 +- src/dawn/visualnovel/VisualNovelManager.cpp | 4 -- .../events/VisualNovelCallbackEvent.hpp | 38 +++++++++++ src/dawn/visualnovel/scene/SimpleVNScene.cpp | 2 +- src/dawn/visualnovel/scene/SimpleVNScene.hpp | 1 + src/dawnglfw/host/DawnGLFWHost.cpp | 15 ++--- src/dawnpokergame/game/DawnGame.cpp | 25 ++++++- src/dawnpokergame/game/DawnGame.hpp | 4 ++ .../prefabs/characters/PennyPrefab.hpp | 12 ++-- .../prefabs/ui/VisualNovelTextboxPrefab.hpp | 1 + src/dawnpokergame/scenes/CMakeLists.txt | 1 + src/dawnpokergame/scenes/PixelVNScene.cpp | 28 ++++++++ src/dawnpokergame/scenes/PixelVNScene.hpp | 29 ++++++++ src/dawnpokergame/scenes/PokerVNScene.cpp | 13 +--- src/dawnpokergame/scenes/PokerVNScene.hpp | 8 +-- src/dawnpokergame/scenes/Scene_1.hpp | 47 +++++++++++++ src/dawnpokergame/scenes/Scene_10.hpp | 46 +++++++++++++ src/dawnpokergame/scenes/Scene_11.hpp | 46 +++++++++++++ src/dawnpokergame/scenes/Scene_12.hpp | 66 ++++++++++++++++++ src/dawnpokergame/scenes/Scene_1_1.hpp | 29 -------- src/dawnpokergame/scenes/Scene_2.hpp | 47 +++++++++++++ src/dawnpokergame/scenes/Scene_3.hpp | 47 +++++++++++++ src/dawnpokergame/scenes/Scene_4.hpp | 67 +++++++++++++++++++ src/dawnpokergame/scenes/Scene_5.hpp | 47 +++++++++++++ src/dawnpokergame/scenes/Scene_6.hpp | 47 +++++++++++++ src/dawnpokergame/scenes/Scene_7.hpp | 46 +++++++++++++ src/dawnpokergame/scenes/Scene_8.hpp | 67 +++++++++++++++++++ src/dawnpokergame/scenes/Scene_9.hpp | 46 +++++++++++++ ...ceneTest.hpp => SubSceneRendererScene.hpp} | 16 +++-- 53 files changed, 891 insertions(+), 132 deletions(-) create mode 100644 src/dawn/visualnovel/events/VisualNovelCallbackEvent.hpp create mode 100644 src/dawnpokergame/scenes/PixelVNScene.cpp create mode 100644 src/dawnpokergame/scenes/PixelVNScene.hpp create mode 100644 src/dawnpokergame/scenes/Scene_1.hpp create mode 100644 src/dawnpokergame/scenes/Scene_10.hpp create mode 100644 src/dawnpokergame/scenes/Scene_11.hpp create mode 100644 src/dawnpokergame/scenes/Scene_12.hpp delete mode 100644 src/dawnpokergame/scenes/Scene_1_1.hpp create mode 100644 src/dawnpokergame/scenes/Scene_2.hpp create mode 100644 src/dawnpokergame/scenes/Scene_3.hpp create mode 100644 src/dawnpokergame/scenes/Scene_4.hpp create mode 100644 src/dawnpokergame/scenes/Scene_5.hpp create mode 100644 src/dawnpokergame/scenes/Scene_6.hpp create mode 100644 src/dawnpokergame/scenes/Scene_7.hpp create mode 100644 src/dawnpokergame/scenes/Scene_8.hpp create mode 100644 src/dawnpokergame/scenes/Scene_9.hpp rename src/dawnpokergame/scenes/{SubsceneTest.hpp => SubSceneRendererScene.hpp} (81%) diff --git a/lib/glfw b/lib/glfw index dd8a678a..57cbded0 160000 --- a/lib/glfw +++ b/lib/glfw @@ -1 +1 @@ -Subproject commit dd8a678a66f1967372e5a5e3deac41ebf65ee127 +Subproject commit 57cbded0760a50b9039ee0cb3f3c14f60145567c diff --git a/lib/glm b/lib/glm index 0a6d3334..efec5db0 160000 --- a/lib/glm +++ b/lib/glm @@ -1 +1 @@ -Subproject commit 0a6d3334ea747b0023d232572d3aff61dc6b48e6 +Subproject commit efec5db081e3aad807d0731e172ac597f6a39447 diff --git a/src/dawn/asset/AssetManager.cpp b/src/dawn/asset/AssetManager.cpp index 194c97cf..38369a48 100644 --- a/src/dawn/asset/AssetManager.cpp +++ b/src/dawn/asset/AssetManager.cpp @@ -46,7 +46,7 @@ void AssetManager::queueSwap( auto itUnload = oldAssets.begin(); while(itUnload != oldAssets.end()) { auto inNewAssets = std::find(newAssets.begin(), newAssets.end(), *itUnload); - if(inNewAssets == oldAssets.end()) unload.push_back(*itUnload); + if(inNewAssets == newAssets.end()) unload.push_back(*itUnload); ++itUnload; } diff --git a/src/dawn/game/_DawnGame.hpp b/src/dawn/game/_DawnGame.hpp index 0ff90805..2a1cb550 100644 --- a/src/dawn/game/_DawnGame.hpp +++ b/src/dawn/game/_DawnGame.hpp @@ -51,6 +51,15 @@ namespace Dawn { */ virtual int32_t update(float_t delta) = 0; + /** + * Changes to a new scene, will dispose the currently active scene as part + * of that process. This assumes the other scene has already been loaded + * and staged. + * + * @param scene Scene to cut over to. + */ + virtual void sceneCutover(Scene *scene) = 0; + /** * Cleanup the memory of the DawnGame instance. */ diff --git a/src/dawn/scene/Scene.cpp b/src/dawn/scene/Scene.cpp index 2d818763..6c895423 100644 --- a/src/dawn/scene/Scene.cpp +++ b/src/dawn/scene/Scene.cpp @@ -37,7 +37,15 @@ SceneItem * Scene::createSceneItem() { } Scene::~Scene() { + // Early cleanup without disposing. auto it = this->items.begin(); + while(it != this->items.end()) { + it->second->destroy(); + ++it; + } + + // Now dispose everything. + it = this->items.begin(); while(it != this->items.end()) { delete it->second; ++it; diff --git a/src/dawn/scene/SceneItem.cpp b/src/dawn/scene/SceneItem.cpp index 503bb379..dfdba3c7 100644 --- a/src/dawn/scene/SceneItem.cpp +++ b/src/dawn/scene/SceneItem.cpp @@ -59,8 +59,17 @@ void SceneItem::init() { } while(waitingOn != 0); } +void SceneItem::destroy() { + auto it = this->components.begin(); + while(it != this->components.end()) { + (*it)->onDispose(); + ++it; + } +} + SceneItem::~SceneItem() { auto it = this->components.begin(); + it = this->components.begin(); while(it != this->components.end()) { delete *it; ++it; diff --git a/src/dawn/scene/SceneItem.hpp b/src/dawn/scene/SceneItem.hpp index 3d817f23..9d911484 100644 --- a/src/dawn/scene/SceneItem.hpp +++ b/src/dawn/scene/SceneItem.hpp @@ -37,6 +37,12 @@ namespace Dawn { */ void init(); + /** + * Called by the Scene when cleanup needs to occur but before anything in + * the scene has been disposed. + */ + void destroy(); + /** * Adds a component to this scene item. Components will only have their * init methods invoked on the first frame we enter the scene. If you add diff --git a/src/dawn/scene/SceneItemComponent.cpp b/src/dawn/scene/SceneItemComponent.cpp index 48af765b..2bad3e81 100644 --- a/src/dawn/scene/SceneItemComponent.cpp +++ b/src/dawn/scene/SceneItemComponent.cpp @@ -37,6 +37,10 @@ void SceneItemComponent::onStart() { } +void SceneItemComponent::onDispose() { + +} + SceneItemComponent::~SceneItemComponent() { } \ No newline at end of file diff --git a/src/dawn/scene/SceneItemComponent.hpp b/src/dawn/scene/SceneItemComponent.hpp index ec79a55a..a877ee10 100644 --- a/src/dawn/scene/SceneItemComponent.hpp +++ b/src/dawn/scene/SceneItemComponent.hpp @@ -58,9 +58,15 @@ namespace Dawn { */ virtual void onStart(); + /** + * Intended for subclasses to detect when they need to clean themselves up + * but before anything has been completely free'd from memory. + */ + virtual void onDispose(); + /** * Cleanup the SceneItemComponent. */ - virtual ~SceneItemComponent(); + ~SceneItemComponent(); }; } \ No newline at end of file diff --git a/src/dawn/scene/components/display/AnimationController.cpp b/src/dawn/scene/components/display/AnimationController.cpp index b9972325..efec17da 100644 --- a/src/dawn/scene/components/display/AnimationController.cpp +++ b/src/dawn/scene/components/display/AnimationController.cpp @@ -25,6 +25,6 @@ void AnimationController::onStart() { getScene()->eventSceneUnpausedUpdate.addListener(this, &AnimationController::onSceneUpdate); } -AnimationController::~AnimationController() { +void AnimationController::onDispose() { getScene()->eventSceneUnpausedUpdate.removeListener(this, &AnimationController::onSceneUpdate); } \ No newline at end of file diff --git a/src/dawn/scene/components/display/AnimationController.hpp b/src/dawn/scene/components/display/AnimationController.hpp index 1e368f37..a8af9bf3 100644 --- a/src/dawn/scene/components/display/AnimationController.hpp +++ b/src/dawn/scene/components/display/AnimationController.hpp @@ -18,7 +18,6 @@ namespace Dawn { AnimationController(SceneItem *item); void onStart() override; - - ~AnimationController(); + void onDispose() override; }; } \ No newline at end of file diff --git a/src/dawn/scene/components/display/Camera.cpp b/src/dawn/scene/components/display/Camera.cpp index cd981b14..aa8fdf77 100644 --- a/src/dawn/scene/components/display/Camera.cpp +++ b/src/dawn/scene/components/display/Camera.cpp @@ -58,10 +58,13 @@ void Camera::setRenderTarget(RenderTarget *renderTarget) { this, &Camera::onRenderTargetResize ); this->updateProjection(); + this->eventRenderTargetResized.invoke( + renderTarget->getWidth(), renderTarget->getHeight() + ); } float_t Camera::getAspect() { - RenderTarget *target = this->getRenderTarget(); + auto target = this->getRenderTarget(); return target->getWidth() / target->getHeight(); } @@ -71,9 +74,10 @@ void Camera::onStart() { void Camera::onRenderTargetResize(RenderTarget *target, float_t w, float_t h) { this->updateProjection(); + this->eventRenderTargetResized.invoke(w, h); } -Camera::~Camera() { +void Camera::onDispose() { this->getRenderTarget()->eventRenderTargetResized.removeListener( this, &Camera::onRenderTargetResize ); diff --git a/src/dawn/scene/components/display/Camera.hpp b/src/dawn/scene/components/display/Camera.hpp index f497056e..8a9889b2 100644 --- a/src/dawn/scene/components/display/Camera.hpp +++ b/src/dawn/scene/components/display/Camera.hpp @@ -6,7 +6,7 @@ #pragma once #include "scene/SceneItemComponent.hpp" #include "display/RenderTarget.hpp" -#include "scene/Scene.hpp" +#include "scene/Scene.hpp " namespace Dawn { enum CameraType { @@ -21,6 +21,8 @@ namespace Dawn { void onRenderTargetResize(RenderTarget *target, float_t w, float_t h); public: + Event eventRenderTargetResized; + static Camera * create(Scene *scene) { auto item = scene->createSceneItem(); auto cam = item->addComponent(); @@ -81,10 +83,6 @@ namespace Dawn { * Event triggered by the scene item when the item is added to the scene. */ void onStart() override; - - /** - * Disposes a previously initialized camera. - */ - ~Camera(); + void onDispose() override; }; } \ No newline at end of file diff --git a/src/dawn/scene/components/display/PixelPerfectCamera.cpp b/src/dawn/scene/components/display/PixelPerfectCamera.cpp index 914fc00a..5bb372a9 100644 --- a/src/dawn/scene/components/display/PixelPerfectCamera.cpp +++ b/src/dawn/scene/components/display/PixelPerfectCamera.cpp @@ -18,9 +18,7 @@ std::vector PixelPerfectCamera::getDependencies() { }; } -void PixelPerfectCamera::onRenderTargetResized( - RenderTarget *t, float_t w, float_t h -) { +void PixelPerfectCamera::onRenderTargetResized(float_t w, float_t h) { this->updateDimensions(); } @@ -58,13 +56,13 @@ void PixelPerfectCamera::updateDimensions() { void PixelPerfectCamera::onStart() { assertNotNull(this->camera); this->updateDimensions(); - camera->getRenderTarget()->eventRenderTargetResized - .addListener(this, &PixelPerfectCamera::onRenderTargetResized) - ; + camera->eventRenderTargetResized.addListener( + this, &PixelPerfectCamera::onRenderTargetResized + ); } -PixelPerfectCamera::~PixelPerfectCamera() { - camera->getRenderTarget()->eventRenderTargetResized - .removeListener(this, &PixelPerfectCamera::onRenderTargetResized) - ; +void PixelPerfectCamera::onDispose() { + camera->eventRenderTargetResized.removeListener( + this, &PixelPerfectCamera::onRenderTargetResized + ); } \ No newline at end of file diff --git a/src/dawn/scene/components/display/PixelPerfectCamera.hpp b/src/dawn/scene/components/display/PixelPerfectCamera.hpp index ee607122..42cdd588 100644 --- a/src/dawn/scene/components/display/PixelPerfectCamera.hpp +++ b/src/dawn/scene/components/display/PixelPerfectCamera.hpp @@ -11,7 +11,7 @@ namespace Dawn { protected: Camera *camera = nullptr; /** Event for when the render target is resized. */ - void onRenderTargetResized(RenderTarget *target, float_t w, float_t h); + void onRenderTargetResized(float_t w, float_t h); /** * Updates the underlying camera's projection information. @@ -30,7 +30,6 @@ namespace Dawn { std::vector getDependencies() override; void onStart() override; - - ~PixelPerfectCamera(); + void onDispose() override; }; } \ No newline at end of file diff --git a/src/dawn/scene/components/display/SimpleRenderTargetQuad.cpp b/src/dawn/scene/components/display/SimpleRenderTargetQuad.cpp index 220b1b2e..ca0a2371 100644 --- a/src/dawn/scene/components/display/SimpleRenderTargetQuad.cpp +++ b/src/dawn/scene/components/display/SimpleRenderTargetQuad.cpp @@ -72,7 +72,7 @@ void SimpleRenderTargetQuad::onStart() { } } -SimpleRenderTargetQuad::~SimpleRenderTargetQuad() { +void SimpleRenderTargetQuad::onDispose() { if(this->renderTarget != nullptr) { this->renderTarget->eventRenderTargetResized.removeListener( this, &SimpleRenderTargetQuad::onRenderTargetResized diff --git a/src/dawn/scene/components/display/SimpleRenderTargetQuad.hpp b/src/dawn/scene/components/display/SimpleRenderTargetQuad.hpp index a1d92259..8ba55352 100644 --- a/src/dawn/scene/components/display/SimpleRenderTargetQuad.hpp +++ b/src/dawn/scene/components/display/SimpleRenderTargetQuad.hpp @@ -36,7 +36,6 @@ namespace Dawn { std::vector getDependencies() override; void onStart() override; - - ~SimpleRenderTargetQuad(); + void onDispose() override; }; } \ No newline at end of file diff --git a/src/dawn/scene/components/example/ExampleSpin.cpp b/src/dawn/scene/components/example/ExampleSpin.cpp index 66b436e7..ac4f1b87 100644 --- a/src/dawn/scene/components/example/ExampleSpin.cpp +++ b/src/dawn/scene/components/example/ExampleSpin.cpp @@ -39,6 +39,6 @@ void ExampleSpin::onUnpausedUpdate() { this->transform->setLocalRotation(quat); } -ExampleSpin::~ExampleSpin() { +void ExampleSpin::onDispose() { getScene()->eventSceneUnpausedUpdate.removeListener(this, &ExampleSpin::onUnpausedUpdate); } \ No newline at end of file diff --git a/src/dawn/scene/components/example/ExampleSpin.hpp b/src/dawn/scene/components/example/ExampleSpin.hpp index 3fa7323e..458905ff 100644 --- a/src/dawn/scene/components/example/ExampleSpin.hpp +++ b/src/dawn/scene/components/example/ExampleSpin.hpp @@ -14,6 +14,6 @@ namespace Dawn { ExampleSpin(SceneItem *item); void onUnpausedUpdate(); - ~ExampleSpin(); + void onDispose() override; }; } \ No newline at end of file diff --git a/src/dawn/scene/components/scene/SubSceneCameraAlign.cpp b/src/dawn/scene/components/scene/SubSceneCameraAlign.cpp index 8f811ea2..7caf990e 100644 --- a/src/dawn/scene/components/scene/SubSceneCameraAlign.cpp +++ b/src/dawn/scene/components/scene/SubSceneCameraAlign.cpp @@ -17,6 +17,10 @@ void SubSceneCameraAlign::onRenderTargetResize( this->realign(); } +void SubSceneCameraAlign::onCameraResize(float_t w, float_t h) { + this->realign(); +} + void SubSceneCameraAlign::realign() { float_t diff; if(this->camera == nullptr) return; @@ -68,8 +72,8 @@ void SubSceneCameraAlign::setCamera(Camera *camera) { assertTrue(this->camera != camera); if(this->camera != nullptr) { - this->camera->getRenderTarget()->eventRenderTargetResized.removeListener( - this, &SubSceneCameraAlign::onRenderTargetResize + this->camera->eventRenderTargetResized.removeListener( + this, &SubSceneCameraAlign::onCameraResize ); } @@ -77,8 +81,8 @@ void SubSceneCameraAlign::setCamera(Camera *camera) { this->realign(); if(this->camera != nullptr) { - this->camera->getRenderTarget()->eventRenderTargetResized.addListener( - this, &SubSceneCameraAlign::onRenderTargetResize + this->camera->eventRenderTargetResized.addListener( + this, &SubSceneCameraAlign::onCameraResize ); } } @@ -87,15 +91,15 @@ void SubSceneCameraAlign::onStart() { this->realign(); } -SubSceneCameraAlign::~SubSceneCameraAlign() { +void SubSceneCameraAlign::onDispose() { if(this->renderTarget != nullptr) { this->renderTarget->eventRenderTargetResized.removeListener( this, &SubSceneCameraAlign::onRenderTargetResize ); } if(this->camera != nullptr) { - this->camera->getRenderTarget()->eventRenderTargetResized.removeListener( - this, &SubSceneCameraAlign::onRenderTargetResize + this->camera->eventRenderTargetResized.removeListener( + this, &SubSceneCameraAlign::onCameraResize ); } } \ No newline at end of file diff --git a/src/dawn/scene/components/scene/SubSceneCameraAlign.hpp b/src/dawn/scene/components/scene/SubSceneCameraAlign.hpp index 13dc4acd..b7305a2f 100644 --- a/src/dawn/scene/components/scene/SubSceneCameraAlign.hpp +++ b/src/dawn/scene/components/scene/SubSceneCameraAlign.hpp @@ -15,18 +15,37 @@ namespace Dawn { Camera *camera = nullptr; void onRenderTargetResize(RenderTarget *target, float_t w, float_t h); + void onCameraResize(float_t w, float_t h); + /** + * Realigns the camera to match the render target quad. + */ void realign(); public: - + /** + * Create the sub scene camera align component. This will align a camera + * to match a render target quad (Refer SimpleRenderTargetQuad) + * + * @param item Scene Item that this component belongs to. + */ SubSceneCameraAlign(SceneItem *item); + /** + * Set the render target for this alignment to use. + * + * @param renderTarget Render target to align to. + */ void setRenderTarget(TextureRenderTarget *renderTarget); + + /** + * Sets the camera that will be aligned. + * + * @param camera Camera to align. + */ void setCamera(Camera *camera); void onStart() override; - - ~SubSceneCameraAlign(); + void onDispose() override; }; } \ No newline at end of file diff --git a/src/dawn/scene/components/scene/SubSceneController.cpp b/src/dawn/scene/components/scene/SubSceneController.cpp index 5cce4e4f..fc85ae7f 100644 --- a/src/dawn/scene/components/scene/SubSceneController.cpp +++ b/src/dawn/scene/components/scene/SubSceneController.cpp @@ -38,7 +38,7 @@ void SubSceneController::onStart() { myScene->eventSceneUpdate.addListener(this, &SubSceneController::onSceneUpdate); } -SubSceneController::~SubSceneController() { +void SubSceneController::onDispose() { auto myScene = this->getScene(); myScene->eventSceneUnpausedUpdate.removeListener(this, &SubSceneController::onSceneUnpausedUpdate); myScene->eventSceneUpdate.removeListener(this, &SubSceneController::onSceneUpdate); diff --git a/src/dawn/scene/components/scene/SubSceneController.hpp b/src/dawn/scene/components/scene/SubSceneController.hpp index 6e3e5b5e..03eabd91 100644 --- a/src/dawn/scene/components/scene/SubSceneController.hpp +++ b/src/dawn/scene/components/scene/SubSceneController.hpp @@ -23,7 +23,6 @@ namespace Dawn { void setSubScene(Scene *scene); void onStart() override; - - ~SubSceneController(); + void onDispose() override; }; } \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UICanvas.cpp b/src/dawn/scene/components/ui/UICanvas.cpp index 367b658c..76dede11 100644 --- a/src/dawn/scene/components/ui/UICanvas.cpp +++ b/src/dawn/scene/components/ui/UICanvas.cpp @@ -18,7 +18,7 @@ UICanvas * UICanvas::create(Scene *scene) { UICanvas::UICanvas(SceneItem *item) : SceneItemComponent(item) { } -void UICanvas::onRenderTargetResize(RenderTarget *target, float_t w, float_t h){ +void UICanvas::onRenderTargetResize(float_t w, float_t h){ auto it = this->children.begin(); while(it != this->children.end()) { (*it)->updatePositions(); @@ -30,7 +30,7 @@ void UICanvas::setCamera(Camera *camera) { assertTrue(camera != this->camera); if(this->camera != nullptr) { - this->camera->getRenderTarget()->eventRenderTargetResized.removeListener( + this->camera->eventRenderTargetResized.removeListener( this, &UICanvas::onRenderTargetResize ); } @@ -38,7 +38,7 @@ void UICanvas::setCamera(Camera *camera) { this->camera = camera; if(this->camera != nullptr) { - this->camera->getRenderTarget()->eventRenderTargetResized.addListener( + this->camera->eventRenderTargetResized.addListener( this, &UICanvas::onRenderTargetResize ); } @@ -65,16 +65,16 @@ void UICanvas::onStart() { } } -UICanvas::~UICanvas() { +void UICanvas::onDispose() { + if(this->camera != nullptr) { + this->camera->eventRenderTargetResized.removeListener( + this, &UICanvas::onRenderTargetResize + ); + } + auto it = this->children.begin(); while(it != this->children.end()) { delete *it; ++it; } - - if(this->camera != nullptr) { - this->camera->getRenderTarget()->eventRenderTargetResized.removeListener( - this, &UICanvas::onRenderTargetResize - ); - } } \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UICanvas.hpp b/src/dawn/scene/components/ui/UICanvas.hpp index 2d41d54b..5b779c84 100644 --- a/src/dawn/scene/components/ui/UICanvas.hpp +++ b/src/dawn/scene/components/ui/UICanvas.hpp @@ -21,7 +21,7 @@ namespace Dawn { protected: Camera *camera = nullptr; - void onRenderTargetResize(RenderTarget *target, float_t w, float_t h); + void onRenderTargetResize(float_t w, float_t h); public: /** @@ -91,7 +91,6 @@ namespace Dawn { float_t getHeight(); void onStart() override; - - ~UICanvas(); + void onDispose() override; }; } \ No newline at end of file diff --git a/src/dawn/visualnovel/VisualNovelManager.cpp b/src/dawn/visualnovel/VisualNovelManager.cpp index c600b6e7..75df0c33 100644 --- a/src/dawn/visualnovel/VisualNovelManager.cpp +++ b/src/dawn/visualnovel/VisualNovelManager.cpp @@ -64,15 +64,11 @@ bool_t IVisualNovelEvent::update() { IVisualNovelEvent * IVisualNovelEvent::end() { this->onEnd(); - std::cout << "End"; - if(this->doNext != nullptr) { - std::cout << " Nexter" << std::endl; auto next = this->doNext; this->doNext = nullptr; return next; } - std::cout << " No nxt" << std::endl; return nullptr; } diff --git a/src/dawn/visualnovel/events/VisualNovelCallbackEvent.hpp b/src/dawn/visualnovel/events/VisualNovelCallbackEvent.hpp new file mode 100644 index 00000000..6fc873c9 --- /dev/null +++ b/src/dawn/visualnovel/events/VisualNovelCallbackEvent.hpp @@ -0,0 +1,38 @@ +// 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/visualnovel/scene/SimpleVNScene.cpp b/src/dawn/visualnovel/scene/SimpleVNScene.cpp index 12c6e890..864af1fd 100644 --- a/src/dawn/visualnovel/scene/SimpleVNScene.cpp +++ b/src/dawn/visualnovel/scene/SimpleVNScene.cpp @@ -17,7 +17,7 @@ std::vector SimpleVNScene::getRequiredAssets() { auto assMan = &this->game->assetManager; std::vector assets; vectorAppend(&assets, VisualNovelTextboxPrefab::getRequiredAssets(assMan)); - return std::vector(); + return assets; } void SimpleVNScene::stage() { diff --git a/src/dawn/visualnovel/scene/SimpleVNScene.hpp b/src/dawn/visualnovel/scene/SimpleVNScene.hpp index 9d69344a..09dd926e 100644 --- a/src/dawn/visualnovel/scene/SimpleVNScene.hpp +++ b/src/dawn/visualnovel/scene/SimpleVNScene.hpp @@ -12,6 +12,7 @@ #include "visualnovel/events/VisualNovelTextboxEvent.hpp" #include "visualnovel/events/VisualNovelPauseEvent.hpp" #include "visualnovel/events/VisualNovelFadeEvent.hpp" +#include "visualnovel/events/VisualNovelCAllbackEvent.hpp" #include "visualnovel/events/VisualNovelChangeSimpleBackgroundEvent.hpp" namespace Dawn { diff --git a/src/dawnglfw/host/DawnGLFWHost.cpp b/src/dawnglfw/host/DawnGLFWHost.cpp index 051deb0a..ba56bf36 100644 --- a/src/dawnglfw/host/DawnGLFWHost.cpp +++ b/src/dawnglfw/host/DawnGLFWHost.cpp @@ -78,7 +78,7 @@ int32_t DawnHost::init(DawnGame *game) { } // Set up event listeners - glfwSetWindowSizeCallback(this->data->window, &glfwOnResize); + glfwSetFramebufferSizeCallback(this->data->window, &glfwOnResize); glfwSetKeyCallback(this->data->window, &glfwOnKey); return DAWN_HOST_INIT_RESULT_SUCCESS; @@ -118,6 +118,7 @@ int32_t DawnHost::start(DawnGame *game) { } int32_t DawnHost::update(DawnGame *game, float_t delta) { + // Tick game. auto ret = game->update(delta); switch(ret) { case DAWN_GAME_UPDATE_RESULT_SUCCESS: @@ -148,17 +149,11 @@ void glfwOnError(int error, const char* description) { fputs(description, stderr); } -void glfwOnResize( - GLFWwindow *window, - int32_t width, - int32_t height -) { +void glfwOnResize(GLFWwindow *window, int32_t w, int32_t h) { if(DAWN_HOST == nullptr) return; + // TODO: I may throttle this, it calls for every frame the window's resized. - DAWN_HOST->game->renderManager.backBuffer.setSize( - (float_t)width, - (float_t)height - ); + DAWN_HOST->game->renderManager.backBuffer.setSize((float_t)w, (float_t)h); } void glfwOnKey( diff --git a/src/dawnpokergame/game/DawnGame.cpp b/src/dawnpokergame/game/DawnGame.cpp index 7bc14c61..738f3251 100644 --- a/src/dawnpokergame/game/DawnGame.cpp +++ b/src/dawnpokergame/game/DawnGame.cpp @@ -4,7 +4,11 @@ // https://opensource.org/licenses/MIT #include "DawnGame.hpp" -#include "scenes/SubsceneTest.hpp" +#include "scenes/SubSceneRendererScene.hpp" +#include "scenes/Scene_1.hpp" + +#include +#include using namespace Dawn; @@ -22,12 +26,23 @@ int32_t DawnGame::init() { this->localeManager.init(); this->renderManager.init(); - this->scene = new SubsceneTest(this); + this->scene = new SubSceneRendererScene(this); return DAWN_GAME_INIT_RESULT_SUCCESS; } int32_t DawnGame::update(float_t delta) { + if(this->sceneToCutTo != nullptr) { + if(this->sceneToCutTo == this->scene) { + delete this->scene; + this->scene = nullptr; + } else { + delete this->scene; + this->scene = this->sceneToCutTo; + } + this->sceneToCutTo = nullptr; + } + this->assetManager.update(); this->inputManager.update(); this->timeManager.update(delta); @@ -37,4 +52,10 @@ int32_t DawnGame::update(float_t delta) { this->renderManager.update(); return DAWN_GAME_UPDATE_RESULT_SUCCESS; +} + + +void DawnGame::sceneCutover(Scene *scene) { + if(scene == nullptr) scene = this->scene; + this->sceneToCutTo = scene; } \ No newline at end of file diff --git a/src/dawnpokergame/game/DawnGame.hpp b/src/dawnpokergame/game/DawnGame.hpp index 83c3f34d..d9d25382 100644 --- a/src/dawnpokergame/game/DawnGame.hpp +++ b/src/dawnpokergame/game/DawnGame.hpp @@ -10,6 +10,9 @@ namespace Dawn { class DawnGame : public IDawnGame { + private: + Scene *sceneToCutTo = nullptr; + public: DawnHost *host; RenderManager renderManager; @@ -22,5 +25,6 @@ namespace Dawn { DawnGame(DawnHost *host); int32_t init() override; int32_t update(float_t delta) override; + void sceneCutover(Scene *scene) override; }; } \ No newline at end of file diff --git a/src/dawnpokergame/prefabs/characters/PennyPrefab.hpp b/src/dawnpokergame/prefabs/characters/PennyPrefab.hpp index 1a767894..ce1fe4c3 100644 --- a/src/dawnpokergame/prefabs/characters/PennyPrefab.hpp +++ b/src/dawnpokergame/prefabs/characters/PennyPrefab.hpp @@ -14,6 +14,8 @@ namespace Dawn { class PennyPrefab : public SceneItemPrefab { public: + VisualNovelCharacter *vnCharacter; + static std::vector prefabAssets(AssetManager *assMan) { return std::vector{ assMan->get("texture_penny"), @@ -33,7 +35,7 @@ namespace Dawn { auto tiledSprite = this->addComponent(); auto animation = this->addComponent(); auto pokerPlayer = this->addComponent(); - auto vnCharacter = this->addComponent(); + vnCharacter = this->addComponent(); vnCharacter->nameKey = "character.penny.name"; @@ -44,10 +46,10 @@ namespace Dawn { tiledSprite->setTile(0); this->transform.setLocalPosition(glm::vec3(0, 0, 0)); - // auto anim = new TiledSpriteAnimation(tiledSprite); - // anim->addSequentialKeyframes(0.1f, 0, 22); - // anim->loop = true; - // animation->animation = anim; + auto anim = new TiledSpriteAnimation(tiledSprite); + anim->addSequentialKeyframes(0.1f, 0, 22); + anim->loop = true; + animation->animation = anim; } }; } \ No newline at end of file diff --git a/src/dawnpokergame/prefabs/ui/VisualNovelTextboxPrefab.hpp b/src/dawnpokergame/prefabs/ui/VisualNovelTextboxPrefab.hpp index f6e01ac5..b5158035 100644 --- a/src/dawnpokergame/prefabs/ui/VisualNovelTextboxPrefab.hpp +++ b/src/dawnpokergame/prefabs/ui/VisualNovelTextboxPrefab.hpp @@ -15,6 +15,7 @@ namespace Dawn { static std::vector prefabAssets(AssetManager *man) { std::vector assets; assets.push_back(man->get("truetype_ark")); + vectorAppend(&assets, UIBorderPrefab::getRequiredAssets(man)); return assets; } diff --git a/src/dawnpokergame/scenes/CMakeLists.txt b/src/dawnpokergame/scenes/CMakeLists.txt index 1928077e..6e74ccfc 100644 --- a/src/dawnpokergame/scenes/CMakeLists.txt +++ b/src/dawnpokergame/scenes/CMakeLists.txt @@ -6,5 +6,6 @@ # Sources target_sources(${DAWN_TARGET_NAME} PRIVATE + PixelVNScene.cpp PokerVNScene.cpp ) \ No newline at end of file diff --git a/src/dawnpokergame/scenes/PixelVNScene.cpp b/src/dawnpokergame/scenes/PixelVNScene.cpp new file mode 100644 index 00000000..0a97d05e --- /dev/null +++ b/src/dawnpokergame/scenes/PixelVNScene.cpp @@ -0,0 +1,28 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "PixelVNScene.hpp" + +using namespace Dawn; + +PixelVNScene::PixelVNScene(DawnGame *game) : + SimpleVNScene(game), + renderTarget(320, 180) +{ + +} + +std::vector PixelVNScene::getRequiredAssets() { + auto assMan = &this->game->assetManager; + std::vector assets; + vectorAppend(&assets, SimpleVNScene::getRequiredAssets()); + return assets; +} + +void PixelVNScene::vnStage() { + this->renderTarget.setClearColor(COLOR_RED); + this->camera->setRenderTarget(&this->renderTarget); + auto pixelPerfectCamera = this->camera->item->addComponent(); +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/PixelVNScene.hpp b/src/dawnpokergame/scenes/PixelVNScene.hpp new file mode 100644 index 00000000..984403e7 --- /dev/null +++ b/src/dawnpokergame/scenes/PixelVNScene.hpp @@ -0,0 +1,29 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "visualnovel/scene/SimpleVNScene.hpp" +#include "display/TextureRenderTarget.hpp" +#include "game/DawnGame.hpp" + +namespace Dawn { + class PixelVNScene : public SimpleVNScene { + protected: + void vnStage() override; + + public: + TextureRenderTarget renderTarget; + + /** + * Create a simple Poker Visual Novel Scene. Simplifies some of the less + * interesting parts of a poker VN game. + * + * @param game Game that this poker scene belongs to. + */ + PixelVNScene(DawnGame *game); + + std::vector getRequiredAssets() override; + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/PokerVNScene.cpp b/src/dawnpokergame/scenes/PokerVNScene.cpp index 82524755..4c85a96e 100644 --- a/src/dawnpokergame/scenes/PokerVNScene.cpp +++ b/src/dawnpokergame/scenes/PokerVNScene.cpp @@ -7,27 +7,20 @@ using namespace Dawn; -PokerVNScene::PokerVNScene(DawnGame *game) : - SimpleVNScene(game), - renderTarget(320, 180) -{ +PokerVNScene::PokerVNScene(DawnGame *game) : PixelVNScene(game) { } std::vector PokerVNScene::getRequiredAssets() { auto assMan = &this->game->assetManager; std::vector assets; - vectorAppend(&assets, SimpleVNScene::getRequiredAssets()); + vectorAppend(&assets, PixelVNScene::getRequiredAssets()); vectorAppend(&assets, PokerPlayerDisplay::getAssets(assMan)); return assets; } void PokerVNScene::vnStage() { - this->renderTarget.setClearColor(COLOR_BLACK); - this->camera->setRenderTarget(&this->renderTarget); - - auto pixelPerfectCamera = this->camera->item->addComponent(); - + PixelVNScene::vnStage(); auto pokerGameItem = this->createSceneItem(); this->pokerGame = pokerGameItem->addComponent(); diff --git a/src/dawnpokergame/scenes/PokerVNScene.hpp b/src/dawnpokergame/scenes/PokerVNScene.hpp index 213e6fa8..b4a00632 100644 --- a/src/dawnpokergame/scenes/PokerVNScene.hpp +++ b/src/dawnpokergame/scenes/PokerVNScene.hpp @@ -4,15 +4,14 @@ // https://opensource.org/licenses/MIT #pragma once -#include "visualnovel/scene/SimpleVNScene.hpp" +#include "scenes/PixelVNScene.hpp" #include "poker/PokerGame.hpp" #include "visualnovel/events/PokerBetLoopEvent.hpp" #include "visualnovel/events/PokerInitialEvent.hpp" #include "ui/PokerPlayerDisplay.hpp" -#include "display/TextureRenderTarget.hpp" namespace Dawn { - class PokerVNScene : public SimpleVNScene { + class PokerVNScene : public PixelVNScene { protected: void vnStage() override; std::vector getRequiredAssets() override; @@ -24,10 +23,7 @@ namespace Dawn { */ virtual std::vector getPokerPlayers() = 0; - - public: - TextureRenderTarget renderTarget; PokerGame *pokerGame; std::vector pokerPlayers; std::map pokerPlayerDisplays; diff --git a/src/dawnpokergame/scenes/Scene_1.hpp b/src/dawnpokergame/scenes/Scene_1.hpp new file mode 100644 index 00000000..264ac684 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_1.hpp @@ -0,0 +1,47 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scenes/PixelVNScene.hpp" +#include "scenes/Scene_2.hpp" + +namespace Dawn { + class Scene_1 : public PixelVNScene { + protected: + void vnStage() override { + PixelVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + auto assets = game->scene->getRequiredAssets(); + game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + + start + ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.1.1")) + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_1::onSceneEnded)) + ; + + return start; + } + + public: + Scene_1(DawnGame *game) : PixelVNScene(game) { + + } + + std::vector getRequiredAssets() override { + std::vector assets = PixelVNScene::getRequiredAssets(); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_10.hpp b/src/dawnpokergame/scenes/Scene_10.hpp new file mode 100644 index 00000000..143f2143 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_10.hpp @@ -0,0 +1,46 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scenes/PixelVNScene.hpp" +#include "scenes/Scene_11.hpp" + +namespace Dawn { + class Scene_10 : public PixelVNScene { + protected: + void vnStage() override { + PixelVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + auto assets = game->scene->getRequiredAssets(); + game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + + start + ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.10.1")) + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_10::onSceneEnded)) + ; + + return start; + } + + public: + Scene_10(DawnGame *game) : PixelVNScene(game) { + } + + std::vector getRequiredAssets() override { + std::vector assets = PixelVNScene::getRequiredAssets(); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_11.hpp b/src/dawnpokergame/scenes/Scene_11.hpp new file mode 100644 index 00000000..0c0494a8 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_11.hpp @@ -0,0 +1,46 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scenes/PixelVNScene.hpp" +#include "scenes/Scene_12.hpp" + +namespace Dawn { + class Scene_11 : public PixelVNScene { + protected: + void vnStage() override { + PixelVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + auto assets = game->scene->getRequiredAssets(); + game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + + start + ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.11.1")) + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_11::onSceneEnded)) + ; + + return start; + } + + public: + Scene_11(DawnGame *game) : PixelVNScene(game) { + } + + std::vector getRequiredAssets() override { + std::vector assets = PixelVNScene::getRequiredAssets(); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_12.hpp b/src/dawnpokergame/scenes/Scene_12.hpp new file mode 100644 index 00000000..aa41628c --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_12.hpp @@ -0,0 +1,66 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "PokerVNScene.hpp" +#include "prefabs/characters/PennyPrefab.hpp" + +namespace Dawn { + class Scene_12 : public PokerVNScene { + protected: + PennyPrefab *penny; + PennyPrefab *julie; + PennyPrefab *sammy; + PennyPrefab *lucy; + + void vnStage() override { + penny = PennyPrefab::create(this); + julie = PennyPrefab::create(this); + sammy = PennyPrefab::create(this); + lucy = PennyPrefab::create(this); + + PokerVNScene::vnStage(); + } + + void onSceneEnded() { + // auto scene = new SubSceneRendererScene(this->game); + // auto assets = game->scene->getRequiredAssets(); + // game->assetManager.queueSwap(assets, this->getRequiredAssets()); + // game->assetManager.syncLoad(); + // scene->stage(); + // this->game->sceneCutover(scene); + } + + std::vector getPokerPlayers() override { + return std::vector{ + this->penny->getComponent(), + this->julie->getComponent(), + this->sammy->getComponent(), + this->lucy->getComponent() + }; + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelTextboxEvent(vnManager, penny->vnCharacter, "scene.12.1"); + + start + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_12::onSceneEnded)) + ; + + return start; + } + + public: + Scene_12(DawnGame *game) : PokerVNScene(game) {} + + std::vector getRequiredAssets() override { + auto assMan = &this->game->assetManager; + std::vector assets; + vectorAppend(&assets, PokerVNScene::getRequiredAssets()); + vectorAppend(&assets, PennyPrefab::getRequiredAssets(assMan)); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_1_1.hpp b/src/dawnpokergame/scenes/Scene_1_1.hpp deleted file mode 100644 index b0d7622c..00000000 --- a/src/dawnpokergame/scenes/Scene_1_1.hpp +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "visualnovel/scene/SimpleVNScene.hpp" - -namespace Dawn { - class Scene_1_1 : public SimpleVNScene { - protected: - void vnStage() override { - } - - std::vector getRequiredAssets() override { - auto assMan = &this->game->assetManager; - std::vector assets = SimpleVNScene::getRequiredAssets(); - return assets; - } - - IVisualNovelEvent * getVNEvent() override { - auto start = new VisualNovelTextboxEvent(vnManager,nullptr,"scene.1.1"); - return start; - } - - public: - Scene_1_1(DawnGame *game) : SimpleVNScene(game) {} - }; -} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_2.hpp b/src/dawnpokergame/scenes/Scene_2.hpp new file mode 100644 index 00000000..292ca808 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_2.hpp @@ -0,0 +1,47 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scenes/PixelVNScene.hpp" +#include "scenes/Scene_3.hpp" + +namespace Dawn { + class Scene_2 : public PixelVNScene { + protected: + void vnStage() override { + PixelVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + auto assets = game->scene->getRequiredAssets(); + game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + + start + ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.2.1")) + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_2::onSceneEnded)) + ; + + return start; + } + + public: + Scene_2(DawnGame *game) : PixelVNScene(game) { + + } + + std::vector getRequiredAssets() override { + std::vector assets = PixelVNScene::getRequiredAssets(); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_3.hpp b/src/dawnpokergame/scenes/Scene_3.hpp new file mode 100644 index 00000000..8af934c4 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_3.hpp @@ -0,0 +1,47 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scenes/PixelVNScene.hpp" +#include "scenes/Scene_4.hpp" + +namespace Dawn { + class Scene_3 : public PixelVNScene { + protected: + void vnStage() override { + PixelVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + auto assets = game->scene->getRequiredAssets(); + game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + + start + ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.3.1")) + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_3::onSceneEnded)) + ; + + return start; + } + + public: + Scene_3(DawnGame *game) : PixelVNScene(game) { + + } + + std::vector getRequiredAssets() override { + std::vector assets = PixelVNScene::getRequiredAssets(); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_4.hpp b/src/dawnpokergame/scenes/Scene_4.hpp new file mode 100644 index 00000000..8a21dc65 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_4.hpp @@ -0,0 +1,67 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "PokerVNScene.hpp" +#include "prefabs/characters/PennyPrefab.hpp" +#include "scenes/Scene_5.hpp" + +namespace Dawn { + class Scene_4 : public PokerVNScene { + protected: + PennyPrefab *penny; + PennyPrefab *julie; + PennyPrefab *sammy; + PennyPrefab *lucy; + + void vnStage() override { + penny = PennyPrefab::create(this); + julie = PennyPrefab::create(this); + sammy = PennyPrefab::create(this); + lucy = PennyPrefab::create(this); + + PokerVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + auto assets = game->scene->getRequiredAssets(); + game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + std::vector getPokerPlayers() override { + return std::vector{ + this->penny->getComponent(), + this->julie->getComponent(), + this->sammy->getComponent(), + this->lucy->getComponent() + }; + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelTextboxEvent(vnManager, penny->vnCharacter, "scene.4.1"); + + start + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_4::onSceneEnded)) + ; + + return start; + } + + public: + Scene_4(DawnGame *game) : PokerVNScene(game) {} + + std::vector getRequiredAssets() override { + auto assMan = &this->game->assetManager; + std::vector assets; + vectorAppend(&assets, PokerVNScene::getRequiredAssets()); + vectorAppend(&assets, PennyPrefab::getRequiredAssets(assMan)); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_5.hpp b/src/dawnpokergame/scenes/Scene_5.hpp new file mode 100644 index 00000000..3cba6555 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_5.hpp @@ -0,0 +1,47 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scenes/PixelVNScene.hpp" +#include "scenes/Scene_6.hpp" + +namespace Dawn { + class Scene_5 : public PixelVNScene { + protected: + void vnStage() override { + PixelVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + auto assets = game->scene->getRequiredAssets(); + game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + + start + ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.5.1")) + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_5::onSceneEnded)) + ; + + return start; + } + + public: + Scene_5(DawnGame *game) : PixelVNScene(game) { + + } + + std::vector getRequiredAssets() override { + std::vector assets = PixelVNScene::getRequiredAssets(); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_6.hpp b/src/dawnpokergame/scenes/Scene_6.hpp new file mode 100644 index 00000000..dca05c74 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_6.hpp @@ -0,0 +1,47 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scenes/PixelVNScene.hpp" +#include "scenes/Scene_7.hpp" + +namespace Dawn { + class Scene_6 : public PixelVNScene { + protected: + void vnStage() override { + PixelVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + auto assets = game->scene->getRequiredAssets(); + game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + + start + ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.6.1")) + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_6::onSceneEnded)) + ; + + return start; + } + + public: + Scene_6(DawnGame *game) : PixelVNScene(game) { + + } + + std::vector getRequiredAssets() override { + std::vector assets = PixelVNScene::getRequiredAssets(); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_7.hpp b/src/dawnpokergame/scenes/Scene_7.hpp new file mode 100644 index 00000000..8feaf23a --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_7.hpp @@ -0,0 +1,46 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scenes/PixelVNScene.hpp" +#include "scenes/Scene_8.hpp" + +namespace Dawn { + class Scene_7 : public PixelVNScene { + protected: + void vnStage() override { + PixelVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + auto assets = game->scene->getRequiredAssets(); + game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + + start + ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.7.1")) + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_7::onSceneEnded)) + ; + + return start; + } + + public: + Scene_7(DawnGame *game) : PixelVNScene(game) { + } + + std::vector getRequiredAssets() override { + std::vector assets = PixelVNScene::getRequiredAssets(); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_8.hpp b/src/dawnpokergame/scenes/Scene_8.hpp new file mode 100644 index 00000000..546cd796 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_8.hpp @@ -0,0 +1,67 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "PokerVNScene.hpp" +#include "prefabs/characters/PennyPrefab.hpp" +#include "scenes/Scene_9.hpp" + +namespace Dawn { + class Scene_8 : public PokerVNScene { + protected: + PennyPrefab *penny; + PennyPrefab *julie; + PennyPrefab *sammy; + PennyPrefab *lucy; + + void vnStage() override { + penny = PennyPrefab::create(this); + julie = PennyPrefab::create(this); + sammy = PennyPrefab::create(this); + lucy = PennyPrefab::create(this); + + PokerVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + auto assets = game->scene->getRequiredAssets(); + game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + std::vector getPokerPlayers() override { + return std::vector{ + this->penny->getComponent(), + this->julie->getComponent(), + this->sammy->getComponent(), + this->lucy->getComponent() + }; + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelTextboxEvent(vnManager, penny->vnCharacter, "scene.8.1"); + + start + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_8::onSceneEnded)) + ; + + return start; + } + + public: + Scene_8(DawnGame *game) : PokerVNScene(game) {} + + std::vector getRequiredAssets() override { + auto assMan = &this->game->assetManager; + std::vector assets; + vectorAppend(&assets, PokerVNScene::getRequiredAssets()); + vectorAppend(&assets, PennyPrefab::getRequiredAssets(assMan)); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_9.hpp b/src/dawnpokergame/scenes/Scene_9.hpp new file mode 100644 index 00000000..58f5c026 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_9.hpp @@ -0,0 +1,46 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scenes/PixelVNScene.hpp" +#include "scenes/Scene_10.hpp" + +namespace Dawn { + class Scene_9 : public PixelVNScene { + protected: + void vnStage() override { + PixelVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + auto assets = game->scene->getRequiredAssets(); + game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + + start + ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.9.1")) + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_9::onSceneEnded)) + ; + + return start; + } + + public: + Scene_9(DawnGame *game) : PixelVNScene(game) { + } + + std::vector getRequiredAssets() override { + std::vector assets = PixelVNScene::getRequiredAssets(); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/SubsceneTest.hpp b/src/dawnpokergame/scenes/SubSceneRendererScene.hpp similarity index 81% rename from src/dawnpokergame/scenes/SubsceneTest.hpp rename to src/dawnpokergame/scenes/SubSceneRendererScene.hpp index 5b8a27aa..8e366cc2 100644 --- a/src/dawnpokergame/scenes/SubsceneTest.hpp +++ b/src/dawnpokergame/scenes/SubSceneRendererScene.hpp @@ -6,16 +6,16 @@ #pragma once #include "scene/Scene.hpp" #include "game/DawnGame.hpp" -#include "scenes/TestScene.hpp" namespace Dawn { - class SubsceneTest : public Scene { + template + class SubSceneRendererScene : public Scene { public: Camera *camera; SceneItem *sceneItem; - TestScene subScene; + T subScene; - SubsceneTest(DawnGame *game) : Scene(game), subScene(game) { + SubSceneRendererScene(DawnGame *game) : Scene(game), subScene(game) { } @@ -24,10 +24,14 @@ namespace Dawn { } void stage() override { - this->camera = Camera::create(this); - + // Stage subscene this->subScene.stage(); + // Create camera to render. + this->camera = Camera::create(this); + this->camera->getRenderTarget()->setClearColor(COLOR_BLACK); + + // Add render quad. this->sceneItem = this->createSceneItem(); auto host = this->sceneItem->addComponent(); auto renderer = this->sceneItem->addComponent();