diff --git a/src/dawn/game/CMakeLists.txt b/src/dawn/game/CMakeLists.txt index b729632c..ea8dac6a 100644 --- a/src/dawn/game/CMakeLists.txt +++ b/src/dawn/game/CMakeLists.txt @@ -5,5 +5,5 @@ target_sources(${DAWN_TARGET_NAME} PRIVATE - Game.cpp + IGame.cpp ) \ No newline at end of file diff --git a/src/dawn/game/GameInit.hpp b/src/dawn/game/GameInit.hpp deleted file mode 100644 index fa65ee52..00000000 --- a/src/dawn/game/GameInit.hpp +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "game/Game.hpp" -#include "scene/Scene.hpp" - -namespace Dawn { - class GameInit { - public: - static std::function getInitialScene(); - }; -} \ No newline at end of file diff --git a/src/dawn/game/Game.cpp b/src/dawn/game/IGame.cpp similarity index 55% rename from src/dawn/game/Game.cpp rename to src/dawn/game/IGame.cpp index 8d843ca5..8938385e 100644 --- a/src/dawn/game/Game.cpp +++ b/src/dawn/game/IGame.cpp @@ -4,33 +4,36 @@ // https://opensource.org/licenses/MIT #include "game/Game.hpp" -#include "game/GameInit.hpp" #include "scene/Scene.hpp" using namespace Dawn; -Game::Game() { +IGame::IGame() { } -void Game::init() { +void IGame::init() { + auto selfAsGame = this->getSelfAsGame(); + renderHost = std::make_shared(); - renderHost->init(shared_from_this()); + renderHost->init(selfAsGame); assetManager = std::make_shared(); assetManager->init(); localeManager = std::make_shared(); - localeManager->init(shared_from_this()); + localeManager->init(selfAsGame); - inputManager.init(shared_from_this()); - saveManager.init(shared_from_this()); + inputManager.init(selfAsGame); + saveManager.init(selfAsGame); - auto initialScene = GameInit::getInitialScene(); - nextFrameScene = std::make_shared(shared_from_this(), initialScene); + this->initManagers(); + + auto initialScene = this->getInitialScene(); + nextFrameScene = std::make_shared(selfAsGame, initialScene); } -void Game::update() { +void IGame::update() { this->assetManager->update(); if(nextFrameScene) { @@ -41,20 +44,24 @@ void Game::update() { timeManager.update(); if(currentScene) currentScene->update(); - renderHost->update(shared_from_this()); + renderHost->update(this->getSelfAsGame()); } -bool_t Game::isCloseRequested() { +bool_t IGame::isCloseRequested() { return ( renderHost->isCloseRequested() ); } -std::shared_ptr Game::getCurrentScene() { +std::shared_ptr IGame::getCurrentScene() { return currentScene; } -Game::~Game() { +std::shared_ptr IGame::getSelfAsGame() { + return std::static_pointer_cast(shared_from_this()); +} + +IGame::~IGame() { currentScene = nullptr; nextFrameScene = nullptr; assetManager = nullptr; diff --git a/src/dawn/game/Game.hpp b/src/dawn/game/IGame.hpp similarity index 71% rename from src/dawn/game/Game.hpp rename to src/dawn/game/IGame.hpp index ef954c63..72ced819 100644 --- a/src/dawn/game/Game.hpp +++ b/src/dawn/game/IGame.hpp @@ -14,12 +14,34 @@ namespace Dawn { class Scene; + class Game; - class Game : public std::enable_shared_from_this { + class IGame : public std::enable_shared_from_this { private: std::shared_ptr currentScene = nullptr; std::shared_ptr nextFrameScene = nullptr; + protected: + /** + * Returns the initial scene for the game. Implemented by the main game + * instance. + * + * @return The initial scene. + */ + virtual std::function getInitialScene() = 0; + + /** + * Initializes the game managers. + */ + virtual void initManagers() = 0; + + /** + * Returns the game instance as a Game instance. + * + * @return The game instance as a Game instance. + */ + std::shared_ptr getSelfAsGame(); + public: std::shared_ptr renderHost; std::shared_ptr assetManager; @@ -31,7 +53,7 @@ namespace Dawn { /** * Constructs the game instance, does not initialize anything. */ - Game(); + IGame(); /** * Initialize the game and all of its components. @@ -62,6 +84,6 @@ namespace Dawn { /** * Deconstructs the game instance, does not deinitialize anything. */ - virtual ~Game(); + virtual ~IGame(); }; } \ No newline at end of file diff --git a/src/dawnrpg/game/CMakeLists.txt b/src/dawnrpg/game/CMakeLists.txt index 57b52897..9be9f469 100644 --- a/src/dawnrpg/game/CMakeLists.txt +++ b/src/dawnrpg/game/CMakeLists.txt @@ -5,5 +5,5 @@ target_sources(${DAWN_TARGET_NAME} PRIVATE - GameInit.cpp + Game.cpp ) \ No newline at end of file diff --git a/src/dawnrpg/game/Game.cpp b/src/dawnrpg/game/Game.cpp new file mode 100644 index 00000000..52ff8756 --- /dev/null +++ b/src/dawnrpg/game/Game.cpp @@ -0,0 +1,25 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "Game.hpp" +#include "scene/SceneList.hpp" + +using namespace Dawn; + +Game::Game() : IGame() { + +} + +std::function Game::getInitialScene() { + return helloWorldScene; +} + +void Game::initManagers() { + +} + +Game::~Game() { + +} \ No newline at end of file diff --git a/src/dawnrpg/game/Game.hpp b/src/dawnrpg/game/Game.hpp new file mode 100644 index 00000000..1f889e22 --- /dev/null +++ b/src/dawnrpg/game/Game.hpp @@ -0,0 +1,19 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "game/IGame.hpp" + +namespace Dawn { + class Game : public IGame { + protected: + std::function getInitialScene() override; + void initManagers() override; + + public: + Game(); + ~Game(); + }; +} \ No newline at end of file diff --git a/src/dawnrpg/game/GameInit.cpp b/src/dawnrpg/game/GameInit.cpp deleted file mode 100644 index 4aef18a2..00000000 --- a/src/dawnrpg/game/GameInit.cpp +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "game/GameInit.hpp" -#include "scene/SceneList.hpp" - -using namespace Dawn; - -std::function GameInit::getInitialScene() { - return helloWorldScene; -} \ No newline at end of file