diff --git a/src/dawn/component/display/Camera.cpp b/src/dawn/component/display/Camera.cpp index 49a370c3..2c25ff00 100644 --- a/src/dawn/component/display/Camera.cpp +++ b/src/dawn/component/display/Camera.cpp @@ -18,6 +18,7 @@ void Camera::onInit() { } void Camera::onDispose() { + std::cout << "Camera Disposing" << std::endl; renderTarget = nullptr; } diff --git a/src/dawn/game/Game.cpp b/src/dawn/game/Game.cpp index 7e0ab780..9ecfc879 100644 --- a/src/dawn/game/Game.cpp +++ b/src/dawn/game/Game.cpp @@ -48,4 +48,9 @@ std::shared_ptr Game::getCurrentScene() { } Game::~Game() { + currentScene = nullptr; + nextFrameScene = nullptr; + + assertTrue(SCENE_ITEMS_ACTIVE == 0, "Some scene items are still active?"); + assertTrue(SCENE_COMPONENTS_ACTIVE == 0, "Some scene components are still active?"); } \ No newline at end of file diff --git a/src/dawn/scene/Scene.cpp b/src/dawn/scene/Scene.cpp index 735baf95..d79a1929 100644 --- a/src/dawn/scene/Scene.cpp +++ b/src/dawn/scene/Scene.cpp @@ -67,4 +67,6 @@ void Scene::removeItem(const std::shared_ptr item) { } Scene::~Scene() { + sceneItemsToRemove.clear(); + sceneItems.clear(); } \ No newline at end of file diff --git a/src/dawn/scene/SceneComponent.cpp b/src/dawn/scene/SceneComponent.cpp index 3a408b28..7c18560a 100644 --- a/src/dawn/scene/SceneComponent.cpp +++ b/src/dawn/scene/SceneComponent.cpp @@ -10,7 +10,11 @@ using namespace Dawn; +uint64_t SCENE_COMPONENTS_ACTIVE = 0; + void SceneComponent::init(const std::shared_ptr item) { + SCENE_COMPONENTS_ACTIVE++; + assertFlagOff( sceneComponentState, SCENE_COMPONENT_STATE_INIT, @@ -45,10 +49,11 @@ void SceneComponent::dispose() { this->listeners.clear(); this->onDispose(); - this->item = nullptr; + this->item.reset(); } std::shared_ptr SceneComponent::getItem() { + auto item = this->item.lock(); assertNotNull(item, "Item cannot be null?"); return item; } @@ -78,4 +83,7 @@ SceneComponent::~SceneComponent() { "SceneComponent is initialized but was not properly disposed!" ); } + + this->item.reset(); + SCENE_COMPONENTS_ACTIVE--; } \ No newline at end of file diff --git a/src/dawn/scene/SceneComponent.hpp b/src/dawn/scene/SceneComponent.hpp index 9edd8e18..018ea6b8 100644 --- a/src/dawn/scene/SceneComponent.hpp +++ b/src/dawn/scene/SceneComponent.hpp @@ -9,6 +9,8 @@ #define SCENE_COMPONENT_STATE_INIT 0x01 #define SCENE_COMPONENT_STATE_DISPOSED 0x02 +extern uint64_t SCENE_COMPONENTS_ACTIVE; + namespace Dawn { class Game; class Scene; @@ -17,7 +19,7 @@ namespace Dawn { class SceneComponent : std::enable_shared_from_this { private: - std::shared_ptr item; + std::weak_ptr item; uint_fast8_t sceneComponentState = 0; protected: diff --git a/src/dawn/scene/SceneItem.cpp b/src/dawn/scene/SceneItem.cpp index 21f01a1e..14ac6c3b 100644 --- a/src/dawn/scene/SceneItem.cpp +++ b/src/dawn/scene/SceneItem.cpp @@ -8,11 +8,15 @@ using namespace Dawn; +uint64_t SCENE_ITEMS_ACTIVE = 0; + SceneItem::SceneItem(const std::weak_ptr scene) : scene(scene), SceneItemTransform(), SceneItemComponents() { + std::cout << "Scene Item Initializing" << std::endl; + SCENE_ITEMS_ACTIVE++; } std::shared_ptr SceneItem::sceneItemComponentsSelf() { @@ -37,12 +41,6 @@ void SceneItem::remove() { } SceneItem::~SceneItem() { - std::for_each( - components.begin(), - components.end(), - [](auto &component) { - component->dispose(); - } - ); - this->components.clear(); + std::cout << "Scene Item Disposing" << std::endl; + SCENE_ITEMS_ACTIVE--; } \ No newline at end of file diff --git a/src/dawn/scene/SceneItem.hpp b/src/dawn/scene/SceneItem.hpp index 32106923..b97cd17e 100644 --- a/src/dawn/scene/SceneItem.hpp +++ b/src/dawn/scene/SceneItem.hpp @@ -7,6 +7,8 @@ #include "scene/item/SceneItemTransform.hpp" #include "scene/item/SceneItemComponents.hpp" +extern uint64_t SCENE_ITEMS_ACTIVE; + namespace Dawn { class Scene; diff --git a/src/dawn/scene/item/SceneItemComponents.cpp b/src/dawn/scene/item/SceneItemComponents.cpp index 481b1206..fb6224e3 100644 --- a/src/dawn/scene/item/SceneItemComponents.cpp +++ b/src/dawn/scene/item/SceneItemComponents.cpp @@ -21,5 +21,11 @@ void SceneItemComponents::removeComponent( } SceneItemComponents::~SceneItemComponents() { - + auto it = components.begin(); + while(it != components.end()) { + auto component = *it; + component->dispose(); + ++it; + } + components.clear(); } \ No newline at end of file diff --git a/src/dawn/scene/item/SceneItemTransform.cpp b/src/dawn/scene/item/SceneItemTransform.cpp index eb1d7851..4baffed9 100644 --- a/src/dawn/scene/item/SceneItemTransform.cpp +++ b/src/dawn/scene/item/SceneItemTransform.cpp @@ -205,4 +205,6 @@ SceneItemTransform::~SceneItemTransform() { } } ); + this->children.clear(); + this->parent.reset(); } \ No newline at end of file diff --git a/src/dawnrpg/scenes/WorldScene.cpp b/src/dawnrpg/scenes/WorldScene.cpp index 8de0ec7a..1c1cf8f7 100644 --- a/src/dawnrpg/scenes/WorldScene.cpp +++ b/src/dawnrpg/scenes/WorldScene.cpp @@ -48,6 +48,6 @@ void Dawn::worldScene(Scene &s) { auto player = createPlayerPrefab(map.map); player.player->camera = camera; - auto test = createTestEntityPrefab(map.map); - test.entity->setPosition({ 5, 0, 0 }); + // auto test = createTestEntityPrefab(map.map); + // test.entity->setPosition({ 5, 0, 0 }); } \ No newline at end of file