diff options
Diffstat (limited to 'src/libjin/Time/je_timer.h')
-rw-r--r-- | src/libjin/Time/je_timer.h | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/src/libjin/Time/je_timer.h b/src/libjin/Time/je_timer.h new file mode 100644 index 0000000..c31de42 --- /dev/null +++ b/src/libjin/Time/je_timer.h @@ -0,0 +1,77 @@ +#ifndef __LIBJIN_TIMER_H +#define __LIBJIN_TIMER_H +#include "../core/je_configuration.h" +#if LIBJIN_MODULES_TIME + +#include <vector> +#include "SDL2/SDL.h" + +namespace jin +{ + namespace time + { + + class Timers + { + public: + typedef void(*timer_callback)(void* prameters); + + Timers(); + ~Timers(); + void update(int ms); + void every(int ms, timer_callback callback, void* paramters); + void after(int ms, timer_callback callback, void* paramters); + void repeat(int ms, int count, timer_callback callback, void* paramters); + + private: + class Timer + { + public: + enum Type + { + EVERY, + AFTER, + REPEAT, + }; + Timer(Type type, int duration, int count = 0, timer_callback callback = nullptr, void* paramters = nullptr); + virtual ~Timer(); + bool process(int ms); + private: + int duration; + int count; + int tickdown; + int countdown; + Type type; + timer_callback callback; + void* paramters; + }; + std::vector<Timer*> timers; + + }; + + inline void sleep(int ms) + { + #if LIBJIN_TIME_SDL + SDL_Delay(ms); + #endif + } + + inline double getSecond() + { + #if LIBJIN_TIME_SDL + return SDL_GetTicks() / 1000.f; + #endif + } + + inline double getMilliSecond() + { + #if LIBJIN_TIME_SDL + return SDL_GetTicks(); + #endif + } + + } // namespace time +} // namespace jin + +#endif // LIBJIN_MODULES_TIME +#endif // __LIBJIN_TIMER_H |