aboutsummaryrefslogtreecommitdiff
path: root/game/hud/SpeedScript.cpp
diff options
context:
space:
mode:
authorJaro <59013720+JaroWMR@users.noreply.github.com>2025-01-08 09:31:14 +0100
committerGitHub <noreply@github.com>2025-01-08 09:31:14 +0100
commite75ca1c947f3cde19bebf15049732bc069c6e913 (patch)
treecdaa7a2c06ffc7f41366d4106e16f254e3b9cdc5 /game/hud/SpeedScript.cpp
parentf31bd86ae5d7df21b788a273d4f2e530136ec184 (diff)
parent0d087f23affbdf5bcfb238bc9b9d3fc05b314c44 (diff)
Merge pull request #101 from lonkaars/jaro/main-menu
Jaro/main menu
Diffstat (limited to 'game/hud/SpeedScript.cpp')
-rw-r--r--game/hud/SpeedScript.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/game/hud/SpeedScript.cpp b/game/hud/SpeedScript.cpp
new file mode 100644
index 0000000..d0a4dfe
--- /dev/null
+++ b/game/hud/SpeedScript.cpp
@@ -0,0 +1,34 @@
+#include "SpeedScript.h"
+
+#include <crepe/api/Event.h>
+#include <crepe/api/KeyCodes.h>
+#include <crepe/manager/LoopTimerManager.h>
+
+using namespace crepe;
+using namespace std;
+
+void SpeedScript::init() {
+ this->subscribe<KeyPressEvent>([this](const KeyPressEvent & ev) -> bool {
+ if (ev.key != Keycode::HOME) return false;
+ LoopTimerManager & lp = this->get_loop_timer();
+ this->toggle = !this->toggle;
+ if (this->toggle) {
+ this->timescale = lp.get_time_scale();
+ lp.set_time_scale(0);
+ } else {
+ lp.set_time_scale(this->timescale);
+ }
+
+ return true;
+ });
+}
+
+void SpeedScript::fixed_update(crepe::duration_t dt) {
+ LoopTimerManager & lp = this->get_loop_timer();
+ if (this->get_key_state(Keycode::PAGE_UP)) {
+ lp.set_time_scale(lp.get_time_scale() + 0.1);
+ }
+ if (this->get_key_state(Keycode::PAGE_DOWN)) {
+ lp.set_time_scale(lp.get_time_scale() - 0.1);
+ }
+}