2011-08-28 15:17:58 +02:00
|
|
|
/*
|
2013-01-08 19:21:54 +01:00
|
|
|
* Copyright (c) 2010-2013 OTClient <https://github.com/edubart/otclient>
|
2011-08-28 15:17:58 +02:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2011-12-01 23:25:32 +01:00
|
|
|
#ifndef CLOCK_H
|
|
|
|
#define CLOCK_H
|
2011-08-16 15:06:16 +02:00
|
|
|
|
|
|
|
#include "declarations.h"
|
|
|
|
|
2012-06-22 05:14:13 +02:00
|
|
|
// @bindsingleton g_clock
|
2011-12-01 23:25:32 +01:00
|
|
|
class Clock
|
2011-08-16 15:06:16 +02:00
|
|
|
{
|
|
|
|
public:
|
2011-12-01 23:25:32 +01:00
|
|
|
Clock();
|
2011-08-16 15:06:16 +02:00
|
|
|
|
2012-06-02 16:43:27 +02:00
|
|
|
void update();
|
2011-12-01 23:25:32 +01:00
|
|
|
|
2012-06-02 16:43:27 +02:00
|
|
|
ticks_t micros() { return m_currentMicros; }
|
|
|
|
ticks_t millis() { return m_currentMillis; }
|
|
|
|
float seconds() { return m_currentSeconds; }
|
2011-12-15 20:59:24 +01:00
|
|
|
|
2011-08-16 15:06:16 +02:00
|
|
|
private:
|
2012-06-02 16:43:27 +02:00
|
|
|
ticks_t m_currentMicros;
|
|
|
|
ticks_t m_currentMillis;
|
|
|
|
float m_currentSeconds;
|
2011-08-16 15:06:16 +02:00
|
|
|
};
|
|
|
|
|
2011-12-01 23:25:32 +01:00
|
|
|
extern Clock g_clock;
|
2011-08-16 15:06:16 +02:00
|
|
|
|
|
|
|
#endif
|
2011-12-01 23:25:32 +01:00
|
|
|
|