aboutsummaryrefslogtreecommitdiffstats
path: root/include/gametime.hpp
diff options
context:
space:
mode:
authorAndy <drumsetmonkey@gmail.com>2016-12-23 08:42:15 -0500
committerAndy <drumsetmonkey@gmail.com>2016-12-23 08:42:15 -0500
commitd7d1b397197893f0ce49b28f762711b7a9ef1087 (patch)
tree6a14f9daf59cb1640f09e7f82c6325d93d0a62dc /include/gametime.hpp
parent691411cdb214178f2d10ab589943993039fe080e (diff)
parent6dd6d03bb1af3c1c482a67355446998eccc3288c (diff)
Sprites are good. Merged.
Diffstat (limited to 'include/gametime.hpp')
-rw-r--r--include/gametime.hpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/include/gametime.hpp b/include/gametime.hpp
index a809ef9..988533a 100644
--- a/include/gametime.hpp
+++ b/include/gametime.hpp
@@ -1,16 +1,52 @@
+/**
+ * @file gametime.hpp
+ * @brief Handles time related operations
+ */
+
#ifndef GAMETIME_H_
#define GAMETIME_H_
namespace game {
namespace time {
+ /**
+ * Sets the game's tick count to the desired amount.
+ * @param t desired tick count
+ */
void setTickCount(unsigned int t);
+
+ /**
+ * Gets the current tick count.
+ * @return the tick count
+ */
unsigned int getTickCount(void);
+
+ /**
+ * Calculates and returns the delta time.
+ * @return the delta time
+ */
unsigned int getDeltaTime(void);
+ /**
+ * Increments the game's tick count.
+ */
void tick(void);
+
+ /**
+ * Increments the game's tick count by the given amount of ticks.
+ * @param ticks the number of ticks to add
+ */
void tick(unsigned int ticks);
+
+ /**
+ * Determines if a tick has passed since the last call to this function.
+ * @return if a tick has passed
+ */
bool tickHasPassed(void);
+ /**
+ * Handles time updating.
+ * This should be called from the game's main loop.
+ */
void mainLoopHandler(void);
}
}