2012-08-01 09:49:09 +02:00
|
|
|
/*
|
2014-04-01 07:36:42 +02:00
|
|
|
* Copyright (c) 2010-2014 OTClient <https://github.com/edubart/otclient>
|
2012-08-01 09:49:09 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "time.h"
|
2013-01-23 22:31:14 +01:00
|
|
|
#include <boost/chrono.hpp>
|
2013-11-12 13:47:53 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <thread>
|
|
|
|
#else
|
2012-08-01 09:49:09 +02:00
|
|
|
#include <unistd.h>
|
2013-11-12 13:47:53 +01:00
|
|
|
#endif
|
2012-08-01 09:49:09 +02:00
|
|
|
|
|
|
|
namespace stdext {
|
|
|
|
|
2013-01-23 22:31:14 +01:00
|
|
|
const static auto startup_time = boost::chrono::high_resolution_clock::now();
|
2012-08-01 09:49:09 +02:00
|
|
|
|
2013-03-01 09:46:55 +01:00
|
|
|
ticks_t time() {
|
|
|
|
return std::time(NULL);
|
|
|
|
}
|
|
|
|
|
2012-08-01 09:49:09 +02:00
|
|
|
ticks_t millis()
|
|
|
|
{
|
2013-01-23 22:31:14 +01:00
|
|
|
return boost::chrono::duration_cast<boost::chrono::milliseconds>(boost::chrono::high_resolution_clock::now() - startup_time).count();
|
2012-08-01 09:49:09 +02:00
|
|
|
}
|
|
|
|
ticks_t micros() {
|
2013-01-23 22:31:14 +01:00
|
|
|
return boost::chrono::duration_cast<boost::chrono::microseconds>(boost::chrono::high_resolution_clock::now() - startup_time).count();
|
2012-08-01 09:49:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void millisleep(size_t ms)
|
|
|
|
{
|
2013-11-12 13:47:53 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(ms));
|
|
|
|
#else
|
2012-08-01 09:49:09 +02:00
|
|
|
usleep(ms * 1000);
|
2013-11-12 13:47:53 +01:00
|
|
|
#endif
|
2012-08-01 09:49:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void microsleep(size_t us)
|
|
|
|
{
|
2013-11-12 13:47:53 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
std::this_thread::sleep_for(std::chrono::microseconds(us));
|
|
|
|
#else
|
2012-08-01 09:49:09 +02:00
|
|
|
usleep(us);
|
2013-11-12 13:47:53 +01:00
|
|
|
#endif
|
2012-08-01 09:49:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|