2019-12-12 17:32:41 +01:00
|
|
|
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
2021-08-27 17:55:04 +02:00
|
|
|
#ifndef IRR_C_IRR_C_TIMER_H_INCLUDED
|
|
|
|
#define IRR_C_IRR_C_TIMER_H_INCLUDED
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
#include "ITimer.h"
|
|
|
|
#include "os.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
//! Device independent implementation of the timer
|
|
|
|
class CTimer : public ITimer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
CTimer(bool usePerformanceTimer=true)
|
|
|
|
{
|
|
|
|
os::Timer::initTimer(usePerformanceTimer);
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Returns current real time in milliseconds of the system.
|
|
|
|
/** This value does not start with 0 when the application starts.
|
|
|
|
For example in one implementation the value returned could be the
|
|
|
|
amount of milliseconds which have elapsed since the system was started. */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual u32 getRealTime() const IRR_OVERRIDE
|
2019-12-12 17:32:41 +01:00
|
|
|
{
|
|
|
|
return os::Timer::getRealTime();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Get current time and date in calendar form
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual RealTimeDate getRealTimeAndDate() const IRR_OVERRIDE
|
2019-12-12 17:32:41 +01:00
|
|
|
{
|
|
|
|
return os::Timer::getRealTimeAndDate();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Returns current virtual time in milliseconds.
|
|
|
|
/** This value starts with 0 and can be manipulated using setTime(), stopTimer(),
|
|
|
|
startTimer(), etc. This value depends on the set speed of the timer if the timer
|
|
|
|
is stopped, etc. If you need the system time, use getRealTime() */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual u32 getTime() const IRR_OVERRIDE
|
2019-12-12 17:32:41 +01:00
|
|
|
{
|
|
|
|
return os::Timer::getTime();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! sets current virtual time
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setTime(u32 time) IRR_OVERRIDE
|
2019-12-12 17:32:41 +01:00
|
|
|
{
|
|
|
|
os::Timer::setTime(time);
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Stops the game timer.
|
|
|
|
/** The timer is reference counted, which means everything which calls
|
|
|
|
stopTimer() will also have to call startTimer(), otherwise the timer may not start/stop
|
|
|
|
corretly again. */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void stop() IRR_OVERRIDE
|
2019-12-12 17:32:41 +01:00
|
|
|
{
|
|
|
|
os::Timer::stopTimer();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Starts the game timer.
|
|
|
|
/** The timer is reference counted, which means everything which calls
|
|
|
|
stopTimer() will also have to call startTimer(), otherwise the timer may not start/stop
|
|
|
|
corretly again. */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void start() IRR_OVERRIDE
|
2019-12-12 17:32:41 +01:00
|
|
|
{
|
|
|
|
os::Timer::startTimer();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Sets the speed of the timer
|
|
|
|
/** The speed is the factor with which the time is running faster or slower then the
|
|
|
|
real system time. */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setSpeed(f32 speed = 1.0f) IRR_OVERRIDE
|
2019-12-12 17:32:41 +01:00
|
|
|
{
|
|
|
|
os::Timer::setSpeed(speed);
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Returns current speed of the timer
|
|
|
|
/** The speed is the factor with which the time is running faster or slower then the
|
|
|
|
real system time. */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual f32 getSpeed() const IRR_OVERRIDE
|
2019-12-12 17:32:41 +01:00
|
|
|
{
|
|
|
|
return os::Timer::getSpeed();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Returns if game timer is currently stopped
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool isStopped() const IRR_OVERRIDE
|
2019-12-12 17:32:41 +01:00
|
|
|
{
|
|
|
|
bool ret = os::Timer::isStopped();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Advances the virtual time
|
|
|
|
/** Makes the virtual timer update the time value based on the real time. This is
|
|
|
|
called automatically when calling IrrlichtDevice::run(), but you can call it manually
|
|
|
|
if you don't use this method. */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void tick() IRR_OVERRIDE
|
2019-12-12 17:32:41 +01:00
|
|
|
{
|
|
|
|
os::Timer::tick();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace
|
|
|
|
|
|
|
|
#endif
|