From 50a0847f53669dd4b5ad85c5340a373a51b40f50 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Mon, 8 Jul 2024 12:27:40 -0500 Subject: [PATCH] New scene system, so simple so clean --- src/dawn/game/Game.cpp | 8 +- src/dawn/game/Game.hpp | 7 +- src/dawn/scene/CMakeLists.txt | 5 +- src/dawn/scene/Scene.cpp | 4 +- src/dawn/scene/Scene.hpp | 20 +++-- src/dawn/scene/item/CMakeLists.txt | 14 ++++ src/dawn/scene/item/SceneItem.cpp | 40 ++++++++++ src/dawn/scene/item/SceneItem.hpp | 88 ++++++++++++++++++++++ src/dawn/scene/item/SceneItem2D.cpp | 18 +++++ src/dawn/scene/item/SceneItem2D.hpp | 30 ++++++++ src/dawn/scene/item/display/CMakeLists.txt | 10 +++ src/dawn/scene/item/display/Rectangle.cpp | 18 +++++ src/dawn/scene/item/display/Rectangle.hpp | 27 +++++++ src/dawn/world/Map.hpp | 22 ------ 14 files changed, 274 insertions(+), 37 deletions(-) create mode 100644 src/dawn/scene/item/CMakeLists.txt create mode 100644 src/dawn/scene/item/SceneItem.cpp create mode 100644 src/dawn/scene/item/SceneItem.hpp create mode 100644 src/dawn/scene/item/SceneItem2D.cpp create mode 100644 src/dawn/scene/item/SceneItem2D.hpp create mode 100644 src/dawn/scene/item/display/CMakeLists.txt create mode 100644 src/dawn/scene/item/display/Rectangle.cpp create mode 100644 src/dawn/scene/item/display/Rectangle.hpp delete mode 100644 src/dawn/world/Map.hpp diff --git a/src/dawn/game/Game.cpp b/src/dawn/game/Game.cpp index f12e2188..fc19ef38 100644 --- a/src/dawn/game/Game.cpp +++ b/src/dawn/game/Game.cpp @@ -4,15 +4,18 @@ // https://opensource.org/licenses/MIT #include "Game.hpp" +#include "scene/Scene.hpp" +#include "scene/item/SceneItem2D.hpp" using namespace Dawn; - Game::Game() { + } void Game::init() { - + currentScene = std::make_shared(weak_from_this()); + auto myItem = currentScene->addSceneItem("myItem"); } void Game::update() { @@ -20,4 +23,5 @@ void Game::update() { } Game::~Game() { + } \ No newline at end of file diff --git a/src/dawn/game/Game.hpp b/src/dawn/game/Game.hpp index e96357cc..dc14d885 100644 --- a/src/dawn/game/Game.hpp +++ b/src/dawn/game/Game.hpp @@ -5,12 +5,13 @@ #pragma once #include "dawn.hpp" -#include "world/Map.hpp" namespace Dawn { - class Game { + class Scene; + + class Game : public std::enable_shared_from_this { private: - std::shared_ptr map; + std::shared_ptr currentScene; public: /** diff --git a/src/dawn/scene/CMakeLists.txt b/src/dawn/scene/CMakeLists.txt index 9c1ed757..97269e70 100644 --- a/src/dawn/scene/CMakeLists.txt +++ b/src/dawn/scene/CMakeLists.txt @@ -7,4 +7,7 @@ target_sources(${DAWN_TARGET_NAME} PRIVATE Scene.cpp -) \ No newline at end of file +) + +# Subdirs +add_subdirectory(item) \ No newline at end of file diff --git a/src/dawn/scene/Scene.cpp b/src/dawn/scene/Scene.cpp index 8dc923b1..ae114c86 100644 --- a/src/dawn/scene/Scene.cpp +++ b/src/dawn/scene/Scene.cpp @@ -7,8 +7,8 @@ using namespace Dawn; -Scene::Scene() { - +Scene::Scene(std::weak_ptr game) : SceneItem(std::weak_ptr()) { + this->game = game; } Scene::~Scene() { diff --git a/src/dawn/scene/Scene.hpp b/src/dawn/scene/Scene.hpp index e4329971..9296732a 100644 --- a/src/dawn/scene/Scene.hpp +++ b/src/dawn/scene/Scene.hpp @@ -3,20 +3,26 @@ // This software is released under the MIT License. // https://opensource.org/licenses/MIT -#pragma once -#include "dawn.hpp" +#pragma ocne +#include "scene/item/SceneItem.hpp" +#include "game/Game.hpp" namespace Dawn { - class Scene { + class Scene : public SceneItem { + private: + std::weak_ptr game; + public: /** - * Scene Constructor. + * Creates a new Scene. + * + * @param game The Game this Scene belongs to. */ - Scene(); + Scene(std::weak_ptr game); /** - * Scene Destructor. + * Destroys this scene and all of its items. */ - ~Scene(); + virtual ~Scene(); }; } \ No newline at end of file diff --git a/src/dawn/scene/item/CMakeLists.txt b/src/dawn/scene/item/CMakeLists.txt new file mode 100644 index 00000000..52b0f9e9 --- /dev/null +++ b/src/dawn/scene/item/CMakeLists.txt @@ -0,0 +1,14 @@ +# Copyright (c) 2024 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${DAWN_TARGET_NAME} + PRIVATE + SceneItem.cpp + SceneItem2D.cpp +) + +# Subdirs +add_subdirectory(display) \ No newline at end of file diff --git a/src/dawn/scene/item/SceneItem.cpp b/src/dawn/scene/item/SceneItem.cpp new file mode 100644 index 00000000..158a637f --- /dev/null +++ b/src/dawn/scene/item/SceneItem.cpp @@ -0,0 +1,40 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "SceneItem.hpp" + +using namespace Dawn; + +SceneItem::SceneItem( + std::weak_ptr parent +) : + parent(parent) +{ + +} + +std::shared_ptr SceneItem::getParent() { + return parent.lock(); +} + +void SceneItem::removeSceneItem(std::shared_ptr item) { + // I don't need to go through the trouble of removing items if I'm already + // disposing, since I'll be clearing them all anyway. + if(isDisposing) return; + + auto it = std::find(items.begin(), items.end(), item); + if(it != items.end()) items.erase(it); +} + +SceneItem::~SceneItem() { + this->isDisposing = true; + + // Clear children first, saves them trying to remove themselves from me. + this->items.clear(); + + // Now remove myself from my parent. + auto parent = this->getParent(); + if(parent) parent->removeSceneItem(shared_from_this()); +} \ No newline at end of file diff --git a/src/dawn/scene/item/SceneItem.hpp b/src/dawn/scene/item/SceneItem.hpp new file mode 100644 index 00000000..1e5ff699 --- /dev/null +++ b/src/dawn/scene/item/SceneItem.hpp @@ -0,0 +1,88 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "dawn.hpp" + +namespace Dawn { + class SceneItem : public std::enable_shared_from_this { + private: + std::weak_ptr parent; + std::vector> items; + bool_t isDisposing = false; + + public: + std::string name; + + /** + * Creates a new SceneItem. + * + * @param parent The parent SceneItem, or nullptr if root (unlikely). + */ + SceneItem(std::weak_ptr parent); + + /** + * Adds a SceneItem as a child of this SceneItem. + * + * @tparam SceneItem type to add. + * @return Pointer to the newly created SceneItem. + */ + template + std::shared_ptr addSceneItem(const std::string &name = "") { + auto item = std::make_shared(weak_from_this()); + auto asItem = std::dynamic_pointer_cast(item); + if(asItem == nullptr) { + throw std::runtime_error("SceneItem must be a SceneItem."); + } + asItem->name = name; + items.push_back(asItem); + return item; + } + + /** + * Finds a SceneItem by name. + * + * @tparam The type of SceneItem to find. + * @param name The name of the SceneItem to find. + * @return The SceneItem, or nullptr if not found. + */ + template + std::shared_ptr find(const std::string &name, const bool_t &recursive = false){ + for(auto &item : items) { + if(item->name == name) { + auto casted = std::dynamic_pointer_cast(item); + if(!casted) throw std::runtime_error("Invalid SceneItem type."); + return casted; + } + + if(recursive) { + auto childFound = item->find(name, recursive); + if(childFound) return childFound; + } + } + + return nullptr; + } + + /** + * Removes a SceneItem from this SceneItem. + * + * @param item The SceneItem to remove. + */ + void removeSceneItem(std::shared_ptr item); + + /** + * Gets the parent SceneItem. + * + * @return The parent SceneItem. + */ + std::shared_ptr getParent(); + + /** + * Destroys this SceneItem. + */ + virtual ~SceneItem(); + }; +} \ No newline at end of file diff --git a/src/dawn/scene/item/SceneItem2D.cpp b/src/dawn/scene/item/SceneItem2D.cpp new file mode 100644 index 00000000..9b7d0571 --- /dev/null +++ b/src/dawn/scene/item/SceneItem2D.cpp @@ -0,0 +1,18 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "SceneItem2D.hpp" + +using namespace Dawn; + +SceneItem2D::SceneItem2D(std::weak_ptr parent) : + SceneItem(parent) +{ + +} + +SceneItem2D::~SceneItem2D() { + +} \ No newline at end of file diff --git a/src/dawn/scene/item/SceneItem2D.hpp b/src/dawn/scene/item/SceneItem2D.hpp new file mode 100644 index 00000000..ca7cc28a --- /dev/null +++ b/src/dawn/scene/item/SceneItem2D.hpp @@ -0,0 +1,30 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scene/item/SceneItem.hpp" + +namespace Dawn { + class SceneItem2D : public SceneItem { + private: + + public: + float_t x = 0.0f; + float_t y = 0.0f; + float_t rotation = 0.0f; + + /** + * Creates a new SceneItem2D. + * + * @param parent The parent item. + */ + SceneItem2D(std::weak_ptr parent); + + /** + * Destroys this SceneItem2D. + */ + virtual ~SceneItem2D(); + }; +} \ No newline at end of file diff --git a/src/dawn/scene/item/display/CMakeLists.txt b/src/dawn/scene/item/display/CMakeLists.txt new file mode 100644 index 00000000..ce48b4ba --- /dev/null +++ b/src/dawn/scene/item/display/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2024 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${DAWN_TARGET_NAME} + PRIVATE + Rectangle.cpp +) \ No newline at end of file diff --git a/src/dawn/scene/item/display/Rectangle.cpp b/src/dawn/scene/item/display/Rectangle.cpp new file mode 100644 index 00000000..7961340a --- /dev/null +++ b/src/dawn/scene/item/display/Rectangle.cpp @@ -0,0 +1,18 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "Rectangle.hpp" + +using namespace Dawn; + +Rectangle::Rectangle(std::weak_ptr parent) : + SceneItem2D(parent) +{ + +} + +Rectangle::~Rectangle() { + +} \ No newline at end of file diff --git a/src/dawn/scene/item/display/Rectangle.hpp b/src/dawn/scene/item/display/Rectangle.hpp new file mode 100644 index 00000000..73bf86ec --- /dev/null +++ b/src/dawn/scene/item/display/Rectangle.hpp @@ -0,0 +1,27 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "display/Color.hpp" +#include "scene/item/SceneItem2D.hpp" + +namespace Dawn { + class Rectangle : public SceneItem2D { + public: + struct Color color = COLOR_WHITE; + + /** + * Creates a new Rectangle. + * + * @param parent The parent SceneItem, or nullptr if root (unlikely). + */ + Rectangle(std::weak_ptr parent); + + /** + * Destroys the Rectangle. + */ + virtual ~Rectangle(); + }; +} \ No newline at end of file diff --git a/src/dawn/world/Map.hpp b/src/dawn/world/Map.hpp deleted file mode 100644 index 3eccd413..00000000 --- a/src/dawn/world/Map.hpp +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 2024 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawn.hpp" - -namespace Dawn { - class Map { - public: - /** - * Creates Map object. - */ - Map(); - - /** - * Destroys Map object. - */ - ~Map(); - }; -} \ No newline at end of file