aboutsummaryrefslogtreecommitdiffstats
path: root/src/gametime.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-10-20 08:00:57 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-10-20 08:00:57 -0400
commit563d978b4ba721370441eaaca3f8471ec383deff (patch)
tree268b04a1fdfec2ce92512722ef2d0a8b74e3659a /src/gametime.cpp
parentd79f4a7f4b5aff5931ef86edd2537ef5e3620fd4 (diff)
arrow rotation and actual pausing
Diffstat (limited to 'src/gametime.cpp')
-rw-r--r--src/gametime.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/gametime.cpp b/src/gametime.cpp
index a5272e5..6f6ac0e 100644
--- a/src/gametime.cpp
+++ b/src/gametime.cpp
@@ -5,9 +5,18 @@
static unsigned int tickCount = 0;
static unsigned int deltaTime = 1;
+static bool paused = false;
namespace game {
namespace time {
+ void togglePause(void) {
+ paused ^= true;
+ }
+
+ void togglePause(bool state) {
+ paused = state;
+ }
+
void setTickCount(unsigned int t) {
tickCount = t;
}
@@ -17,7 +26,7 @@ namespace game {
}
unsigned int getDeltaTime(void) {
- return (deltaTime > 0) ? deltaTime : 1;
+ return paused ? 0 : ((deltaTime > 0) ? deltaTime : 1);
}
void tick(void) {