Merge pull request #475 from binary1248/timer_resolution_fix

Increased the resolution of sf::sleep on Windows, improved the implementation of sf:sleep on Linux
This commit is contained in:
Laurent Gomila 2013-10-07 00:45:16 -07:00
commit 5931236858
3 changed files with 27 additions and 31 deletions

View File

@ -77,6 +77,9 @@ endif()
if(LINUX) if(LINUX)
set(SYSTEM_EXT_LIBS ${SYSTEM_EXT_LIBS} rt) set(SYSTEM_EXT_LIBS ${SYSTEM_EXT_LIBS} rt)
endif() endif()
if(WINDOWS)
set(SYSTEM_EXT_LIBS ${SYSTEM_EXT_LIBS} winmm)
endif()
# define the sfml-system target # define the sfml-system target
sfml_add_library(sfml-system sfml_add_library(sfml-system

View File

@ -26,9 +26,8 @@
// Headers // Headers
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
#include <SFML/System/Unix/SleepImpl.hpp> #include <SFML/System/Unix/SleepImpl.hpp>
#include <pthread.h> #include <errno.h>
#include <unistd.h> #include <time.h>
#include <sys/time.h>
namespace sf namespace sf
@ -38,38 +37,21 @@ namespace priv
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
void sleepImpl(Time time) void sleepImpl(Time time)
{ {
// usleep is not reliable enough (it might block the
// whole process instead of just the current thread)
// so we must use pthread_cond_timedwait instead
// this implementation is inspired from Qt
Uint64 usecs = time.asMicroseconds(); Uint64 usecs = time.asMicroseconds();
// get the current time // Construct the time to wait
timeval tv;
gettimeofday(&tv, NULL);
// construct the time limit (current time + time to wait)
timespec ti; timespec ti;
ti.tv_nsec = (tv.tv_usec + (usecs % 1000000)) * 1000; ti.tv_nsec = (usecs % 1000000) * 1000;
ti.tv_sec = tv.tv_sec + (usecs / 1000000) + (ti.tv_nsec / 1000000000); ti.tv_sec = usecs / 1000000;
ti.tv_nsec %= 1000000000;
// create a mutex and thread condition // Wait...
pthread_mutex_t mutex; // If nanosleep returns -1, we check errno. If it is EINTR
pthread_mutex_init(&mutex, 0); // nanosleep was interrupted and has set ti to the remaining
pthread_cond_t condition; // duration. We continue sleeping until the complete duration
pthread_cond_init(&condition, 0); // has passed. We stop sleeping if it was due to an error.
while ((nanosleep(&ti, &ti) == -1) && (errno == EINTR))
// wait... {
pthread_mutex_lock(&mutex); }
pthread_cond_timedwait(&condition, &mutex, &ti);
pthread_mutex_unlock(&mutex);
// destroy the mutex and condition
pthread_cond_destroy(&condition);
pthread_mutex_destroy(&mutex);
} }
} // namespace priv } // namespace priv

View File

@ -36,7 +36,18 @@ namespace priv
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
void sleepImpl(Time time) void sleepImpl(Time time)
{ {
// Get the supported timer resolutions on this system
TIMECAPS tc;
timeGetDevCaps(&tc, sizeof(TIMECAPS));
// Set the timer resolution to the minimum for the Sleep call
timeBeginPeriod(tc.wPeriodMin);
// Wait...
::Sleep(time.asMilliseconds()); ::Sleep(time.asMilliseconds());
// Reset the timer resolution back to the system default
timeEndPeriod(tc.wPeriodMin);
} }
} // namespace priv } // namespace priv