From 3836d680334e7d9ac6310dba1f553599c37e3f6e Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 12 Nov 2023 19:52:41 -0600 Subject: [PATCH] More standard pointers. --- src/dawn/display/RenderPipeline.cpp | 2 +- src/dawn/game/DawnGame.cpp | 4 +--- src/dawn/game/DawnGame.hpp | 2 +- src/dawn/prefab/SceneItemPrefab.hpp | 6 ++++-- src/dawn/prefabs/SimpleSpinningCubePrefab.hpp | 2 +- src/dawn/scene/Scene.cpp | 12 +++-------- src/dawn/scene/Scene.hpp | 20 ++++--------------- src/dawn/scene/SceneItem.cpp | 16 +++++++-------- src/dawn/scene/SceneItem.hpp | 6 +++--- src/dawn/scene/SceneItemComponent.cpp | 14 ++++++++----- src/dawn/scene/SceneItemComponent.hpp | 4 ++-- .../components/debug/FPSLabelComponent.cpp | 2 +- src/dawn/scene/components/display/Camera.cpp | 2 +- src/dawn/scene/components/display/Camera.hpp | 2 +- src/dawn/scene/components/ui/UIComponent.cpp | 6 +++--- src/dawnhelloworld/game/HelloGame.cpp | 2 +- src/dawnhelloworld/scenes/HelloWorldScene.hpp | 8 +++++--- 17 files changed, 48 insertions(+), 62 deletions(-) diff --git a/src/dawn/display/RenderPipeline.cpp b/src/dawn/display/RenderPipeline.cpp index 955c385a..ad349df4 100644 --- a/src/dawn/display/RenderPipeline.cpp +++ b/src/dawn/display/RenderPipeline.cpp @@ -47,7 +47,7 @@ void RenderPipeline::renderScene(std::shared_ptr scene) { continue; } - if((*itSubScene)->onlyUpdateUnpaused && scene->game->timeManager.isPaused) { + if((*itSubScene)->onlyUpdateUnpaused && scene->game.lock()->timeManager.isPaused) { ++itSubScene; continue; } diff --git a/src/dawn/game/DawnGame.cpp b/src/dawn/game/DawnGame.cpp index 687c9d36..279ccab9 100644 --- a/src/dawn/game/DawnGame.cpp +++ b/src/dawn/game/DawnGame.cpp @@ -18,9 +18,7 @@ DawnGame::DawnGame(const std::weak_ptr host) : int32_t DawnGame::init() { this->assetManager.init(); this->renderManager->init(weak_from_this()); - - this->scene = dawnGameGetInitialScene(this); - + this->scene = dawnGameGetInitialScene(weak_from_this()); return DAWN_GAME_INIT_RESULT_SUCCESS; } diff --git a/src/dawn/game/DawnGame.hpp b/src/dawn/game/DawnGame.hpp index 1c240d78..36df9cae 100644 --- a/src/dawn/game/DawnGame.hpp +++ b/src/dawn/game/DawnGame.hpp @@ -90,5 +90,5 @@ namespace Dawn { * @param game Game that is requesting this scene. * @return Pointer to a scene that you wish to have as the default scene. */ - std::shared_ptr dawnGameGetInitialScene(DawnGame *game); + std::shared_ptr dawnGameGetInitialScene(std::weak_ptr game); } \ No newline at end of file diff --git a/src/dawn/prefab/SceneItemPrefab.hpp b/src/dawn/prefab/SceneItemPrefab.hpp index 6fc24048..4ff9705d 100644 --- a/src/dawn/prefab/SceneItemPrefab.hpp +++ b/src/dawn/prefab/SceneItemPrefab.hpp @@ -22,7 +22,9 @@ namespace Dawn { */ static O * prefabCreate(Scene *scene) { O *item = scene->createSceneItemOfType(); - item->prefabInit(&scene->game->assetManager); + auto game = scene->game.lock(); + assertNotNull(game, "Game cannot be null!"); + item->prefabInit(&game->assetManager); return item; } @@ -32,7 +34,7 @@ namespace Dawn { * @param scene Scene that this prefab belongs to. * @param id ID of this scene item. */ - SceneItemPrefab(Scene *scene, sceneitemid_t id) : + SceneItemPrefab(std::weak_ptr scene, sceneitemid_t id) : SceneItem(scene, id) { } diff --git a/src/dawn/prefabs/SimpleSpinningCubePrefab.hpp b/src/dawn/prefabs/SimpleSpinningCubePrefab.hpp index 97b982d2..d0f0d368 100644 --- a/src/dawn/prefabs/SimpleSpinningCubePrefab.hpp +++ b/src/dawn/prefabs/SimpleSpinningCubePrefab.hpp @@ -23,7 +23,7 @@ namespace Dawn { return std::vector>(); } - SimpleSpinningCubePrefab(Scene *s, sceneitemid_t i) : + SimpleSpinningCubePrefab(std::weak_ptr s, sceneitemid_t i) : SceneItemPrefab(s, i) { } diff --git a/src/dawn/scene/Scene.cpp b/src/dawn/scene/Scene.cpp index 0757d626..4175da4d 100644 --- a/src/dawn/scene/Scene.cpp +++ b/src/dawn/scene/Scene.cpp @@ -10,8 +10,7 @@ using namespace Dawn; -Scene::Scene(DawnGame *game) { - assertNotNull(game, "Scene::Scene: Game cannot be null"); +Scene::Scene(std::weak_ptr game) { this->game = game; this->nextId = 0; this->physics = new ScenePhysicsManager(this); @@ -26,18 +25,13 @@ void Scene::update() { ++it; } this->itemsNotInitialized.clear(); - - #if DAWN_DEBUG_BUILD - this->debugGrid(); - this->debugOrigin(); - this->debugHitboxes(); - #endif // TODO: Cleanup old scene items // TODO: Tick scene items(?) + auto game = this->game.lock(); this->eventSceneUpdate.invoke(game->timeManager.delta); - if(!this->game->timeManager.isPaused) this->eventSceneUnpausedUpdate.invoke(game->timeManager.delta); + if(!game->timeManager.isPaused) this->eventSceneUnpausedUpdate.invoke(game->timeManager.delta); } SceneItem * Scene::createSceneItem() { diff --git a/src/dawn/scene/Scene.hpp b/src/dawn/scene/Scene.hpp index b23a1b99..58c7dfd8 100644 --- a/src/dawn/scene/Scene.hpp +++ b/src/dawn/scene/Scene.hpp @@ -25,14 +25,14 @@ namespace Dawn { template std::vector> _sceneForwardGetComponents(SceneItem *item); - class Scene : public StateOwner { + class Scene : public StateOwner, public std::enable_shared_from_this { private: sceneitemid_t nextId; std::map items; std::map itemsNotInitialized; public: - DawnGame *game; + std::weak_ptr game; ScenePhysicsManager *physics; StateEvent eventSceneUpdate; StateEvent eventSceneUnpausedUpdate; @@ -42,7 +42,7 @@ namespace Dawn { * * @param game Reference to the game that this scene belongs to. */ - Scene(DawnGame *game); + Scene(std::weak_ptr game); /** * Perform a one frame synchronous tick on the current scene. This may @@ -58,7 +58,7 @@ namespace Dawn { template T * createSceneItemOfType() { sceneitemid_t id = this->nextId++; - auto item = new T(this, id); + auto item = new T(weak_from_this(), id); assertNotNull(item, "Scene::createSceneItemOfType: Failed to create SceneItem (Memory Filled?)"); this->itemsNotInitialized[id] = item; return item; @@ -137,18 +137,6 @@ namespace Dawn { } return components; } - - // Scene debugging functions - #if DAWN_DEBUG_BUILD - std::vector debugLines; - void debugLine(struct SceneDebugLine line); - void debugRay(struct SceneDebugRay ray); - void debugCube(struct SceneDebugCube cube); - void debugOrigin(); - void debugGrid(); - void debugHitboxes(); - #endif - /** * Destroys a previously initialized Scene. */ diff --git a/src/dawn/scene/SceneItem.cpp b/src/dawn/scene/SceneItem.cpp index 1b48fa6b..9c83c69e 100644 --- a/src/dawn/scene/SceneItem.cpp +++ b/src/dawn/scene/SceneItem.cpp @@ -9,12 +9,10 @@ using namespace Dawn; -SceneItem::SceneItem(Scene *scene, sceneitemid_t id) : +SceneItem::SceneItem(std::weak_ptr scene, sceneitemid_t id) : transformLocal(1.0f), transformWorld(1.0f) { - assertNotNull(scene, "SceneItem::SceneItem: Scene cannot be null"); - this->id = id; this->scene = scene; this->updateLocalValuesFromLocalTransform(); @@ -89,7 +87,7 @@ void SceneItem::updateLocalTransformFromLocalValues() { } void SceneItem::updateWorldTransformFromLocalTransform() { - auto parent = this->getParent().lock(); + auto parent = this->getParent(); if(parent != nullptr) { auto newWorld = parent->getWorldTransform(); this->transformWorld = newWorld * transformLocal; @@ -101,7 +99,7 @@ void SceneItem::updateWorldTransformFromLocalTransform() { void SceneItem::updateLocalTransformFromWorldTransform() { glm::mat4 parentMat(1.0f); - auto parent = this->getParent().lock(); + auto parent = this->getParent(); if(parent != nullptr) parentMat = parent->getWorldTransform(); this->transformLocal = parentMat / this->transformWorld; this->updateLocalValuesFromLocalTransform(); @@ -203,7 +201,7 @@ void SceneItem::setParent(std::shared_ptr parent) { "SceneItem::setParent: Cannot set parent to self" ); - auto currentParent = this->getParent().lock(); + auto currentParent = this->getParent(); if(currentParent == parent) return; if(currentParent != nullptr) { @@ -226,14 +224,14 @@ void SceneItem::setParent(std::shared_ptr parent) { this->eventTransformUpdated.invoke(); } -std::weak_ptr SceneItem::getParent() { - return this->parent; +std::shared_ptr SceneItem::getParent() { + return this->parent.lock(); } bool_t SceneItem::isChildOf(std::shared_ptr parent) { auto current = this->getParent(); std::shared_ptr currentLocked; - while(currentLocked = current.lock()) { + while(currentLocked = current) { if(currentLocked == parent) return true; current = currentLocked->getParent(); } diff --git a/src/dawn/scene/SceneItem.hpp b/src/dawn/scene/SceneItem.hpp index 33157f51..7b1987d4 100644 --- a/src/dawn/scene/SceneItem.hpp +++ b/src/dawn/scene/SceneItem.hpp @@ -41,7 +41,7 @@ namespace Dawn { void updateChildrenTransforms(); public: - Scene *scene; + std::weak_ptr scene; sceneitemid_t id; // I have no idea if I'm keeping this StateEvent<> eventTransformUpdated; @@ -53,7 +53,7 @@ namespace Dawn { * @param scene Weak pointer to the Scene that this SceneItem belongs to. * @param id Scene Item ID that the Scene assigned this SceneItem. */ - SceneItem(Scene *scene, sceneitemid_t id); + SceneItem(std::weak_ptr scene, sceneitemid_t id); /** * Called by the Scene the frame after we were constructed so we can begin @@ -310,7 +310,7 @@ namespace Dawn { * no parent for this transform. * @return Pointer to the parent transform, or nullptr. */ - std::weak_ptr getParent(); + std::shared_ptr getParent(); /** * Returns true if this transform is a child of the given transform, this diff --git a/src/dawn/scene/SceneItemComponent.cpp b/src/dawn/scene/SceneItemComponent.cpp index 95f664b4..1c0c14ae 100644 --- a/src/dawn/scene/SceneItemComponent.cpp +++ b/src/dawn/scene/SceneItemComponent.cpp @@ -24,16 +24,20 @@ std::vector> SceneItemComponent::getDependen return {}; } -Scene * SceneItemComponent::getScene() { - return this->item->scene; +std::shared_ptr SceneItemComponent::getScene() { + auto scene = this->item->scene.lock(); + assertNotNull(scene, "Scene cannot be null!"); + return scene; } -DawnGame * SceneItemComponent::getGame() { - return this->item->scene->game; +std::shared_ptr SceneItemComponent::getGame() { + auto game = this->getScene()->game.lock(); + assertNotNull(game, "Game cannot be null!"); + return game; } ScenePhysicsManager * SceneItemComponent::getPhysics() { - return this->item->scene->physics; + return this->getScene()->physics; } void SceneItemComponent::onStart() { diff --git a/src/dawn/scene/SceneItemComponent.hpp b/src/dawn/scene/SceneItemComponent.hpp index bcf396a4..87793e5e 100644 --- a/src/dawn/scene/SceneItemComponent.hpp +++ b/src/dawn/scene/SceneItemComponent.hpp @@ -43,13 +43,13 @@ namespace Dawn { * Shorthand to return the scene that this component's item belongs to. * @return The current scene. */ - Scene * getScene(); + std::shared_ptr getScene(); /** * Shorthand to return the game that this scene belongs to. * @return The current game. */ - DawnGame * getGame(); + std::shared_ptr getGame(); /** * Shorthand to return the physics manager that the scene this item diff --git a/src/dawn/scene/components/debug/FPSLabelComponent.cpp b/src/dawn/scene/components/debug/FPSLabelComponent.cpp index 6eee6f03..3d3aa162 100644 --- a/src/dawn/scene/components/debug/FPSLabelComponent.cpp +++ b/src/dawn/scene/components/debug/FPSLabelComponent.cpp @@ -20,5 +20,5 @@ void FPSLabelComponent::onStart() { std::string strTick = std::to_string((int32_t)(delta * 1000.0f)); assertUnreachable("FPSLabelComponent::onStart: Not yet implemented");// Needs updating to new UI Label // label->text = strFps + "FPS (" + strTick + "ms)"; - }, this->item->scene->eventSceneUnpausedUpdate); + }, getScene()->eventSceneUnpausedUpdate); } \ 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 d2f9a0c7..0bc143c3 100644 --- a/src/dawn/scene/components/display/Camera.cpp +++ b/src/dawn/scene/components/display/Camera.cpp @@ -10,7 +10,7 @@ using namespace Dawn; Camera::Camera(SceneItem *item) : SceneItemComponent(item), - renderTarget(item->scene->game->renderManager->getBackBuffer()), + renderTarget(item->scene.lock()->game.lock()->renderManager->getBackBuffer()), fov(0.785398f),// 45 degrees, type(CAMERA_TYPE_PERSPECTIVE), orthoLeft(-0.5f), diff --git a/src/dawn/scene/components/display/Camera.hpp b/src/dawn/scene/components/display/Camera.hpp index 8f8994e1..bee407ca 100644 --- a/src/dawn/scene/components/display/Camera.hpp +++ b/src/dawn/scene/components/display/Camera.hpp @@ -22,7 +22,7 @@ namespace Dawn { std::function evtResized; public: - static std::shared_ptr create(Scene *scene) { + static std::shared_ptr create(std::shared_ptr scene) { auto item = scene->createSceneItem(); auto cam = item->addComponent(); return cam; diff --git a/src/dawn/scene/components/ui/UIComponent.cpp b/src/dawn/scene/components/ui/UIComponent.cpp index 8d4f19f5..35c47149 100644 --- a/src/dawn/scene/components/ui/UIComponent.cpp +++ b/src/dawn/scene/components/ui/UIComponent.cpp @@ -22,7 +22,7 @@ UIComponent::UIComponent(SceneItem *item) : } std::shared_ptr UIComponent::getParentDimensional() { - auto parent = item->getParent().lock(); + auto parent = item->getParent(); if(parent == nullptr) return nullptr; auto dimensional = parent->getComponent(); assertNotNull(dimensional, "UIComponent::getParentDimensional: Parent must have a UIComponentDimensional"); @@ -240,11 +240,11 @@ void UIComponent::calculateDimensions( std::shared_ptr UIComponent::getCanvas() { // TODO: Cache this on first hit. - auto parent = item->getParent().lock(); + auto parent = item->getParent(); while(parent) { auto canvas = parent->getComponent(); if(canvas != nullptr) return canvas; - parent = parent->getParent().lock(); + parent = parent->getParent(); } assertUnreachable("UIComponent::getCanvas: No canvas found"); return nullptr; diff --git a/src/dawnhelloworld/game/HelloGame.cpp b/src/dawnhelloworld/game/HelloGame.cpp index d402a2e6..f5406af8 100644 --- a/src/dawnhelloworld/game/HelloGame.cpp +++ b/src/dawnhelloworld/game/HelloGame.cpp @@ -8,6 +8,6 @@ using namespace Dawn; -std::shared_ptr Dawn::dawnGameGetInitialScene(DawnGame *game) { +std::shared_ptr Dawn::dawnGameGetInitialScene(std::weak_ptr game) { return std::make_shared(game); } \ No newline at end of file diff --git a/src/dawnhelloworld/scenes/HelloWorldScene.hpp b/src/dawnhelloworld/scenes/HelloWorldScene.hpp index 445a402c..cae4f8e9 100644 --- a/src/dawnhelloworld/scenes/HelloWorldScene.hpp +++ b/src/dawnhelloworld/scenes/HelloWorldScene.hpp @@ -16,7 +16,7 @@ namespace Dawn { std::shared_ptr canvas; void stage() override { - camera = Camera::create(this); + camera = Camera::create(shared_from_this()); camera->item->lookAt(glm::vec3(3, 3, 3), glm::vec3(0, 0, 0)); cube = SimpleSpinningCubePrefab::create(this); @@ -25,13 +25,15 @@ namespace Dawn { } std::vector> getRequiredAssets() override { - auto assMan = &this->game->assetManager; + auto game = this->game.lock(); + assertNotNull(game, "Game is null!"); + auto assMan = &game->assetManager; std::vector> assets; vectorAppend(assets, SimpleSpinningCubePrefab::getRequiredAssets(assMan)); return assets; } public: - HelloWorldScene(DawnGame *game) : Scene(game) {} + HelloWorldScene(std::weak_ptr game) : Scene(game) {} }; } \ No newline at end of file