zaela-Server/common/timer.cpp

200 lines
4.1 KiB
C++
Raw Permalink Normal View History

2013-05-09 10:44:08 -04:00
/* EQEMu: Everquest Server Emulator
Copyright (C) 2001-2002 EQEMu Development Team (http://eqemu.org)
2013-02-16 16:14:39 -08:00
2013-05-09 10:44:08 -04:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
2013-02-16 16:14:39 -08:00
2013-05-09 10:44:08 -04:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY except by those people which sell it, which
2013-02-16 16:14:39 -08:00
are required to give you total support for your newly bought product;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR
2013-05-09 10:44:08 -04:00
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
2013-02-16 16:14:39 -08:00
2013-05-09 10:44:08 -04:00
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
2013-02-16 16:14:39 -08:00
*/
2014-12-15 22:56:44 -06:00
2013-02-16 16:14:39 -08:00
// Disgrace: for windows compile
#ifndef WIN32
#include <sys/time.h>
#else
#include <sys/timeb.h>
#endif
#include "timer.h"
uint32 current_time = 0;
uint32 last_time = 0;
Timer::Timer() {
timer_time = 0;
start_time = current_time;
set_at_trigger = timer_time;
pUseAcurateTiming = false;
enabled = false;
}
2013-02-16 16:14:39 -08:00
Timer::Timer(uint32 in_timer_time, bool iUseAcurateTiming) {
timer_time = in_timer_time;
start_time = current_time;
set_at_trigger = timer_time;
pUseAcurateTiming = iUseAcurateTiming;
if (timer_time == 0) {
enabled = false;
}
else {
enabled = true;
}
}
Timer::Timer(uint32 start, uint32 timer, bool iUseAcurateTiming = false) {
timer_time = timer;
start_time = start;
set_at_trigger = timer_time;
pUseAcurateTiming = iUseAcurateTiming;
if (timer_time == 0) {
enabled = false;
}
else {
enabled = true;
}
}
/* Reimplemented for MSVC - Bounce */
#ifdef _WINDOWS
int gettimeofday (timeval *tp, ...)
{
timeb tb;
ftime (&tb);
2013-05-09 10:44:08 -04:00
tp->tv_sec = tb.time;
2013-02-16 16:14:39 -08:00
tp->tv_usec = tb.millitm * 1000;
return 0;
}
#endif
/* This function checks if the timer triggered */
bool Timer::Check(bool iReset)
{
2013-05-09 10:44:08 -04:00
if (enabled && current_time-start_time > timer_time) {
2013-02-16 16:14:39 -08:00
if (iReset) {
if (pUseAcurateTiming)
start_time += timer_time;
else
start_time = current_time; // Reset timer
timer_time = set_at_trigger;
}
return true;
2013-05-09 10:44:08 -04:00
}
2013-05-06 13:07:41 -04:00
2013-05-09 10:44:08 -04:00
return false;
2013-02-16 16:14:39 -08:00
}
/* This function disables the timer */
void Timer::Disable() {
enabled = false;
}
void Timer::Enable() {
enabled = true;
}
/* This function set the timer and restart it */
2013-05-06 13:07:41 -04:00
void Timer::Start(uint32 set_timer_time, bool ChangeResetTimer) {
2013-05-09 10:44:08 -04:00
start_time = current_time;
2013-02-16 16:14:39 -08:00
enabled = true;
2013-05-09 10:44:08 -04:00
if (set_timer_time != 0)
{
2013-02-16 16:14:39 -08:00
timer_time = set_timer_time;
if (ChangeResetTimer)
set_at_trigger = set_timer_time;
2013-05-09 10:44:08 -04:00
}
2013-02-16 16:14:39 -08:00
}
/* This timer updates the timer without restarting it */
void Timer::SetTimer(uint32 set_timer_time) {
2013-05-09 10:44:08 -04:00
/* If we were disabled before => restart the timer */
if (!enabled) {
2013-02-16 16:14:39 -08:00
start_time = current_time;
enabled = true;
2013-05-09 10:44:08 -04:00
}
if (set_timer_time != 0) {
2013-02-16 16:14:39 -08:00
timer_time = set_timer_time;
set_at_trigger = set_timer_time;
2013-05-09 10:44:08 -04:00
}
2013-02-16 16:14:39 -08:00
}
uint32 Timer::GetRemainingTime() const
{
2013-05-09 10:44:08 -04:00
if (enabled) {
if (current_time - start_time > timer_time) {
2013-02-16 16:14:39 -08:00
return 0;
}
else {
2013-02-16 16:14:39 -08:00
return (start_time + timer_time) - current_time;
}
}
else {
2013-02-16 16:14:39 -08:00
return 0xFFFFFFFF;
}
}
void Timer::SetAtTrigger(uint32 in_set_at_trigger, bool iEnableIfDisabled, bool ChangeTimerTime) {
2013-02-16 16:14:39 -08:00
set_at_trigger = in_set_at_trigger;
if (!Enabled() && iEnableIfDisabled) {
Enable();
}
if (ChangeTimerTime)
timer_time = set_at_trigger;
2013-02-16 16:14:39 -08:00
}
void Timer::Trigger()
{
enabled = true;
timer_time = set_at_trigger;
start_time = current_time-timer_time-1;
}
const uint32 Timer::GetCurrentTime()
2013-05-06 13:07:41 -04:00
{
2013-05-09 10:44:08 -04:00
return current_time;
2013-02-16 16:14:39 -08:00
}
//just to keep all time related crap in one place... not really related to timers.
const uint32 Timer::GetTimeSeconds() {
2013-05-09 10:44:08 -04:00
struct timeval read_time;
2013-02-16 16:14:39 -08:00
2013-05-09 10:44:08 -04:00
gettimeofday(&read_time,0);
return(read_time.tv_sec);
2013-02-16 16:14:39 -08:00
}
const uint32 Timer::SetCurrentTime()
{
2013-05-09 10:44:08 -04:00
struct timeval read_time;
uint32 this_time;
2013-02-16 16:14:39 -08:00
2013-05-09 10:44:08 -04:00
gettimeofday(&read_time,0);
this_time = read_time.tv_sec * 1000 + read_time.tv_usec / 1000;
2013-02-16 16:14:39 -08:00
2013-05-09 10:44:08 -04:00
if (last_time == 0)
{
2013-02-16 16:14:39 -08:00
current_time = 0;
2013-05-09 10:44:08 -04:00
}
else
{
2013-02-16 16:14:39 -08:00
current_time += this_time - last_time;
2013-05-09 10:44:08 -04:00
}
2013-05-06 13:07:41 -04:00
2013-02-16 16:14:39 -08:00
last_time = this_time;
// cerr << "Current time:" << current_time << endl;
return current_time;
}
2013-05-09 10:44:08 -04:00