diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-24 09:53:48 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-24 09:53:48 -0400 |
commit | 2473bc452959f1c84b03c4b9202d601b3325143d (patch) | |
tree | da66fe0ca2dc01308c7d7e5271090afa25dc99aa /src/gametime.cpp | |
parent | cc2230e0039f06a7478878adcbc9ef028a223243 (diff) |
library-ized ticks
Diffstat (limited to 'src/gametime.cpp')
-rw-r--r-- | src/gametime.cpp | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/gametime.cpp b/src/gametime.cpp new file mode 100644 index 0000000..be63885 --- /dev/null +++ b/src/gametime.cpp @@ -0,0 +1,50 @@ +#include <gametime.hpp> + +#include <common.hpp> + +static unsigned int tickCount = 0; +static unsigned int deltaTime = 1; + +// millisecond timers +static unsigned int currentTime = 0; +static unsigned int prevTime, prevPrevTime; + +namespace gtime { + void setTickCount(unsigned int t) { + tickCount = t; + } + + unsigned int getTickCount(void) { + return tickCount; + } + + unsigned int getDeltaTime(void) { + return deltaTime; + } + + void tick(void) { + tickCount++; + } + + void tick(unsigned int ticks) { + tickCount += ticks; + } + + void mainLoopHandler(void) { + if (!currentTime) + currentTime = prevTime = millis(); + + currentTime = millis(); + deltaTime = currentTime - prevTime; + prevTime = currentTime; + } + + bool tickHasPassed(void) { + if (prevPrevTime + MSEC_PER_TICK <= currentTime) { + prevPrevTime = currentTime; + return true; + } + + return false; + } +} |