summaryrefslogtreecommitdiff
path: root/src/game.h
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-10-02 14:52:30 +0200
committerThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-10-08 21:03:28 +0200
commit7de0b165f196cb0c1f983b6d2ab26ef9791a2d36 (patch)
tree86f55c00b3fe17dae950351f3c33d35e6abd5a4d /src/game.h
parent59a7d5c58f8b3af21b3e19d4e78f5653bf011bfb (diff)
downloadmana-7de0b165f196cb0c1f983b6d2ab26ef9791a2d36.tar.gz
mana-7de0b165f196cb0c1f983b6d2ab26ef9791a2d36.tar.bz2
mana-7de0b165f196cb0c1f983b6d2ab26ef9791a2d36.tar.xz
mana-7de0b165f196cb0c1f983b6d2ab26ef9791a2d36.zip
Do a single logic update each frame
The logic update now uses Time::deltaTimeMs() where needed to make it framerate-independent. This means there will no longer be multiple logic calls per frame (as was usually the case with logic ticking at 100 fps whereas the game would generally run at 60 fps). At the same time, the game can be more precise at higher framerates and should now run smoother at 144 Hz, for example. Previously the game would sometimes skip logic ticks at that rate. This change affects: * Updating of animations * Being movement speed * More moving of manual time variables to Timer Notoriously, the particle system still does 100 ticks/second.
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game.h b/src/game.h
index d9797a33..9f88ba90 100644
--- a/src/game.h
+++ b/src/game.h
@@ -26,6 +26,8 @@
#include "gui/windowmenu.h"
+#include "utils/time.h"
+
class Map;
/**
@@ -91,6 +93,8 @@ class Game
Map *mCurrentMap = nullptr;
std::string mMapName;
+ Timer mParticleEngineTimer;
+
static Game *mInstance;
};