X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Ftimer.cpp;h=9c94f581c421cf1fc606be0d67cae8059a919e0c;hb=605c7560d07e785a9a86c5f0eedb270e6a78f7bb;hp=f316fa57713ba47abf73699a20ce2492db094299;hpb=308f11e38981077626fe0ea9887094f3c28b02f9;p=supertux.git diff --git a/src/timer.cpp b/src/timer.cpp index f316fa577..9c94f581c 100644 --- a/src/timer.cpp +++ b/src/timer.cpp @@ -1,7 +1,7 @@ // $Id$ -// +// // SuperTux -// Copyright (C) 2004 Tobias Glaesser +// Copyright (C) 2006 Matthias Braun // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -12,157 +12,50 @@ // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. -// +// // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA // 02111-1307, USA. +#include -#include "SDL.h" +#include +#include "timer.hpp" -#include "defines.h" -#include "timer.h" - -unsigned int st_pause_ticks, st_pause_count; - -unsigned int st_get_ticks(void) -{ - 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) -{ - 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; -} - -bool st_pause_ticks_started(void) -{ -if(st_pause_count == 0) -return false; -else -return true; -} +float game_time = 0; +float real_time = 0; Timer::Timer() + : period(0), cycle_start(0), cyclic(false) { - init(true); } -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_) +Timer::~Timer() { - time = get_ticks(); - period = period_; } void -Timer::stop() +Timer::start(float period, bool cyclic) { - if(get_ticks == st_get_ticks) - init(true); - else - init(false); + this->period = period; + this->cyclic = cyclic; + cycle_start = game_time; } -int +bool Timer::check() { - if((time != 0) && (time + period > get_ticks())) - return true; - else - { - time = 0; - return false; - } -} - -int -Timer::started() -{ - if(time != 0) - return true; - else + if(period == 0) 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; + if(game_time - cycle_start >= period) { + if(cyclic) { + cycle_start = game_time - fmodf(game_time - cycle_start, period); + } else { + period = 0; + } + return true; + } + return false; } - -/* EOF */