new editor image for infoblock
[supertux.git] / src / timer.cpp
index 0fd6c18..ee63f83 100644 (file)
-//
-// C Implementation: timer
-//
-// Description:
-//
-//
-// Author: Tobias Glaesser <tobi.web@gmx.de>, (C) 2004
-//
-// Copyright: See COPYING file that comes with this distribution
-//
-//
+#include <config.h>
 
-#include "SDL.h"
-#include "defines.h"
+#include <math.h>
 #include "timer.h"
 
-unsigned int st_pause_ticks, st_pause_count;
+float global_time = 0;
 
-unsigned int st_get_ticks(void)
+Timer2::Timer2()
+  : period(0), cycle_start(0), cyclic(false)
 {
-  if(st_pause_count != 0)
-    return /*SDL_GetTicks()*/ - st_pause_ticks /*- SDL_GetTicks()*/ + st_pause_count;
-  else
-    return SDL_GetTicks() - st_pause_ticks;
 }
 
-void st_pause_ticks_init(void)
+Timer2::~Timer2()
 {
-  st_pause_ticks = 0;
-  st_pause_count = 0;
-}
-
-void st_pause_ticks_start(void)
-{
-  if(st_pause_count == 0)
-    st_pause_count = SDL_GetTicks();
-}
-
-void st_pause_ticks_stop(void)
-{
-if(st_pause_count == 0)
-return;
-
-  st_pause_ticks += SDL_GetTicks() - st_pause_count;
-  st_pause_count = 0;
-}
-
-void
-Timer::init(bool st_ticks)
-{
-  period    = 0;
-  time      = 0;
-  get_ticks = st_ticks ? st_get_ticks : SDL_GetTicks;
-}
-
-void
-Timer::start(unsigned int period_)
-{
-  time   = get_ticks();
-  period = period_;
 }
 
 void
-Timer::stop()
+Timer2::start(float period, bool cyclic)
 {
-  if(get_ticks == st_get_ticks)
-    init(true);
-  else
-    init(false);
+  this->period = period;
+  this->cyclic = cyclic;
+  cycle_start = global_time;
 }
 
-int
-Timer::check()
+bool
+Timer2::check()
 {
-  if((time != 0) && (time + period > get_ticks()))
-    return true;
-  else
-    {
-      time = 0;
-      return false;
+  if(period == 0)
+    return false;
+  
+  if(global_time - cycle_start >= period) {
+    if(cyclic) {
+      cycle_start = global_time - fmodf(global_time - cycle_start, period);
+    } else {
+      period = 0;
     }
-}
-
-int
-Timer::started()
-{
-  if(time != 0)
     return true;
-  else
-    return false;
-}
-
-int
-Timer::get_left()
-{
-  return (period - (get_ticks() - time));
-}
-
-int
-Timer::get_gone()
-{
-  return (get_ticks() - time);
-}
-
-void
-Timer::fwrite(FILE* fi)
-{
-  unsigned int diff_ticks;
-  int tick_mode;
-  if(time != 0)
-    diff_ticks = get_ticks() - time;
-  else
-    diff_ticks = 0;
-
-  ::fwrite(&period,sizeof(unsigned int),1,fi);
-  ::fwrite(&diff_ticks,sizeof(unsigned int),1,fi);
-  if(get_ticks == st_get_ticks)
-      tick_mode = true;
-  else
-      tick_mode = false;
-  ::fwrite(&tick_mode,sizeof(unsigned int),1,fi);
-}
-
-void
-Timer::fread(FILE* fi)
-{
-  unsigned int diff_ticks;
-  int tick_mode;
-
-  ::fread(&period,sizeof(unsigned int),1,fi);
-  ::fread(&diff_ticks,sizeof(unsigned int),1,fi);
-  ::fread(&tick_mode,sizeof(unsigned int),1,fi);
-
-  if (tick_mode)
-    get_ticks = st_get_ticks;
-  else
-    get_ticks = SDL_GetTicks;
-
-  if (diff_ticks != 0)
-    time = get_ticks() - diff_ticks;
-  else
-    time = 0;
+  }
 
+  return false;
 }
 
-/* EOF */