From 563d978b4ba721370441eaaca3f8471ec383deff Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 20 Oct 2017 08:00:57 -0400 Subject: arrow rotation and actual pausing --- src/gametime.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/gametime.cpp') 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) { -- cgit v1.2.3