From 89139853eecb1f7d272e183b9e887507a89d761e Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Fri, 17 Nov 2023 12:27:18 -0600 Subject: [PATCH] Time, Mr. Freeman? --- src/dawn/CMakeLists.txt | 2 +- src/dawn/game/Game.cpp | 2 +- src/dawn/game/Game.hpp | 2 ++ src/dawn/time/CMakeLists.txt | 9 ++++++++ src/dawn/time/ITimeManager.cpp | 17 ++++++++++++++++ src/dawn/time/ITimeManager.hpp | 34 +++++++++++++++++++++++++++++++ src/dawnglfw/CMakeLists.txt | 2 +- src/dawnglfw/time/CMakeLists.txt | 9 ++++++++ src/dawnglfw/time/TimeManager.cpp | 17 ++++++++++++++++ src/dawnglfw/time/TimeManager.hpp | 14 +++++++++++++ 10 files changed, 105 insertions(+), 3 deletions(-) create mode 100644 src/dawn/time/CMakeLists.txt create mode 100644 src/dawn/time/ITimeManager.cpp create mode 100644 src/dawn/time/ITimeManager.hpp create mode 100644 src/dawnglfw/time/CMakeLists.txt create mode 100644 src/dawnglfw/time/TimeManager.cpp create mode 100644 src/dawnglfw/time/TimeManager.hpp diff --git a/src/dawn/CMakeLists.txt b/src/dawn/CMakeLists.txt index 545077fe..cd0cd9b6 100644 --- a/src/dawn/CMakeLists.txt +++ b/src/dawn/CMakeLists.txt @@ -31,7 +31,7 @@ add_subdirectory(game) # add_subdirectory(save) add_subdirectory(scene) # add_subdirectory(state) -# add_subdirectory(time) +add_subdirectory(time) add_subdirectory(util) # Definitions diff --git a/src/dawn/game/Game.cpp b/src/dawn/game/Game.cpp index 1d414d8a..efc33649 100644 --- a/src/dawn/game/Game.cpp +++ b/src/dawn/game/Game.cpp @@ -21,7 +21,7 @@ void Game::init() { nextFrameScene = std::make_shared(shared_from_this(), initialScene); } -void Game::update() { +void Game::update(float_t delta) { renderHost.update(shared_from_this()); if(nextFrameScene) { diff --git a/src/dawn/game/Game.hpp b/src/dawn/game/Game.hpp index c6836cc5..f3c3a4e6 100644 --- a/src/dawn/game/Game.hpp +++ b/src/dawn/game/Game.hpp @@ -7,6 +7,7 @@ #include "dawnlibs.hpp" #include "display/RenderHost.hpp" #include "input/InputManager.hpp" +#include "time/TimeManager.hpp" namespace Dawn { class Scene; @@ -19,6 +20,7 @@ namespace Dawn { public: RenderHost renderHost; InputManager inputManager; + TimeManager timeManager; /** * Constructs the game instance, does not initialize anything. diff --git a/src/dawn/time/CMakeLists.txt b/src/dawn/time/CMakeLists.txt new file mode 100644 index 00000000..20bae16f --- /dev/null +++ b/src/dawn/time/CMakeLists.txt @@ -0,0 +1,9 @@ +# Copyright (c) 2022 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +target_sources(${DAWN_TARGET_NAME} + PRIVATE + ITimeManager.cpp +) \ No newline at end of file diff --git a/src/dawn/time/ITimeManager.cpp b/src/dawn/time/ITimeManager.cpp new file mode 100644 index 00000000..f3c8a620 --- /dev/null +++ b/src/dawn/time/ITimeManager.cpp @@ -0,0 +1,17 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "ITimeManager.hpp" + +using namespace Dawn; + +void ITimeManager::tick(float_t delta) { + this->delta = delta; + this->time += delta; +} + +ITimeManager::~ITimeManager() { + +} \ No newline at end of file diff --git a/src/dawn/time/ITimeManager.hpp b/src/dawn/time/ITimeManager.hpp new file mode 100644 index 00000000..657305b7 --- /dev/null +++ b/src/dawn/time/ITimeManager.hpp @@ -0,0 +1,34 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "dawnlibs.hpp" + +namespace Dawn { + class ITimeManager { + public: + float_t delta = 0.016f; + float_t time = 0.016f; + + /** + * Ticks / updates the time management system. + * + * @param delta Time delta in seconds. + */ + void tick(float_t delta); + + /** + * Returns the real world time epoch. + * + * @return Epoch time in milliseconds. + */ + virtual int64_t getRealTime() = 0; + + /** + * Cleans up the time manager. + */ + virtual ~ITimeManager(); + }; +} \ No newline at end of file diff --git a/src/dawnglfw/CMakeLists.txt b/src/dawnglfw/CMakeLists.txt index 953fa0e3..1e3a44e4 100644 --- a/src/dawnglfw/CMakeLists.txt +++ b/src/dawnglfw/CMakeLists.txt @@ -25,4 +25,4 @@ target_include_directories(${DAWN_TARGET_NAME} # Subdirs add_subdirectory(display) add_subdirectory(input) -# add_subdirectory(time) \ No newline at end of file +add_subdirectory(time) \ No newline at end of file diff --git a/src/dawnglfw/time/CMakeLists.txt b/src/dawnglfw/time/CMakeLists.txt new file mode 100644 index 00000000..8c9c29c9 --- /dev/null +++ b/src/dawnglfw/time/CMakeLists.txt @@ -0,0 +1,9 @@ +# Copyright (c) 2022 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +target_sources(${DAWN_TARGET_NAME} + PRIVATE + TimeManager.cpp +) \ No newline at end of file diff --git a/src/dawnglfw/time/TimeManager.cpp b/src/dawnglfw/time/TimeManager.cpp new file mode 100644 index 00000000..674c2afb --- /dev/null +++ b/src/dawnglfw/time/TimeManager.cpp @@ -0,0 +1,17 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "TimeManager.hpp" +#include +#include +#include +#include + +using namespace Dawn; + +int64_t TimeManager::getRealTime() { + auto millisec_since_epoch = std::chrono::duration_cast(std::chrono::system_clock::now().time_since_epoch()) .count(); + return millisec_since_epoch; +} \ No newline at end of file diff --git a/src/dawnglfw/time/TimeManager.hpp b/src/dawnglfw/time/TimeManager.hpp new file mode 100644 index 00000000..ba49d5cf --- /dev/null +++ b/src/dawnglfw/time/TimeManager.hpp @@ -0,0 +1,14 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "time/ITimeManager.hpp" + +namespace Dawn { + class TimeManager : public ITimeManager { + public: + int64_t getRealTime() override; + }; +} \ No newline at end of file