Skip to content

Latest commit

 

History

History
194 lines (162 loc) · 4.49 KB

SDL_systimer.c

File metadata and controls

194 lines (162 loc) · 4.49 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
Simple DirectMedia Layer
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "SDL_config.h"
#ifdef SDL_TIMER_WINDOWS
#include "../../core/windows/SDL_windows.h"
#include <mmsystem.h>
#include "SDL_timer.h"
#include "SDL_hints.h"
/* The first (low-resolution) ticks value of the application */
static DWORD start;
Aug 18, 2013
Aug 18, 2013
34
static BOOL ticks_started = FALSE;
35
36
37
38
39
40
41
42
43
44
#ifndef USE_GETTICKCOUNT
/* Store if a high-resolution performance counter exists on the system */
static BOOL hires_timer_available;
/* The first high-resolution ticks value of the application */
static LARGE_INTEGER hires_start_ticks;
/* The number of ticks per second of the high-resolution performance counter */
static LARGE_INTEGER hires_ticks_per_second;
#endif
Aug 14, 2013
Aug 14, 2013
45
#ifndef __WINRT__
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
static void
timeSetPeriod(UINT uPeriod)
{
static UINT timer_period = 0;
if (uPeriod != timer_period) {
if (timer_period) {
timeEndPeriod(timer_period);
}
timer_period = uPeriod;
if (timer_period) {
timeBeginPeriod(timer_period);
}
}
}
static void
SDL_TimerResolutionChanged(void *userdata, const char *name, const char *oldValue, const char *hint)
{
UINT uPeriod;
/* Unless the hint says otherwise, let's have good sleep precision */
if (hint && *hint) {
uPeriod = SDL_atoi(hint);
} else {
uPeriod = 1;
}
if (uPeriod || oldValue != hint) {
timeSetPeriod(uPeriod);
}
}
Aug 14, 2013
Aug 14, 2013
79
#endif /* ifndef __WINRT__ */
Aug 17, 2013
Aug 17, 2013
82
SDL_InitTicks(void)
Aug 17, 2013
Aug 17, 2013
84
85
86
87
88
if (ticks_started) {
return;
}
ticks_started = TRUE;
89
90
91
92
93
94
95
96
97
98
99
100
/* Set first ticks value */
#ifdef USE_GETTICKCOUNT
start = GetTickCount();
#else
/* QueryPerformanceCounter has had problems in the past, but lots of games
use it, so we'll rely on it here.
*/
if (QueryPerformanceFrequency(&hires_ticks_per_second) == TRUE) {
hires_timer_available = TRUE;
QueryPerformanceCounter(&hires_start_ticks);
} else {
hires_timer_available = FALSE;
Aug 14, 2013
Aug 14, 2013
101
102
103
#ifdef __WINRT__
start = 0; /* the timer failed to start! */
#else
104
105
timeSetPeriod(1); /* use 1 ms timer precision */
start = timeGetTime();
Aug 14, 2013
Aug 14, 2013
106
#endif /* ifdef __WINRT__ */
Aug 14, 2013
Aug 14, 2013
110
#ifndef __WINRT__
111
112
SDL_AddHintCallback(SDL_HINT_TIMER_RESOLUTION,
SDL_TimerResolutionChanged, NULL);
Aug 14, 2013
Aug 14, 2013
113
#endif
114
115
116
117
118
119
120
121
122
123
}
Uint32
SDL_GetTicks(void)
{
DWORD now;
#ifndef USE_GETTICKCOUNT
LARGE_INTEGER hires_now;
#endif
Aug 18, 2013
Aug 18, 2013
124
125
126
127
if (!ticks_started) {
SDL_InitTicks();
}
128
129
130
131
132
133
134
135
136
137
138
139
#ifdef USE_GETTICKCOUNT
now = GetTickCount();
#else
if (hires_timer_available) {
QueryPerformanceCounter(&hires_now);
hires_now.QuadPart -= hires_start_ticks.QuadPart;
hires_now.QuadPart *= 1000;
hires_now.QuadPart /= hires_ticks_per_second.QuadPart;
return (DWORD) hires_now.QuadPart;
} else {
Aug 14, 2013
Aug 14, 2013
140
141
142
#ifdef __WINRT__
now = 0;
#else
143
now = timeGetTime();
Aug 14, 2013
Aug 14, 2013
144
#endif // ifdef __WINRT__
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
}
#endif
return (now - start);
}
Uint64
SDL_GetPerformanceCounter(void)
{
LARGE_INTEGER counter;
if (!QueryPerformanceCounter(&counter)) {
return SDL_GetTicks();
}
return counter.QuadPart;
}
Uint64
SDL_GetPerformanceFrequency(void)
{
LARGE_INTEGER frequency;
if (!QueryPerformanceFrequency(&frequency)) {
return 1000;
}
return frequency.QuadPart;
}
Mar 9, 2014
Mar 9, 2014
173
174
175
176
177
178
179
180
181
182
183
#ifdef __WINRT__
static void
Sleep(DWORD timeout)
{
static HANDLE mutex = 0;
if ( ! mutex )
{
mutex = CreateEventEx(0, 0, 0, EVENT_ALL_ACCESS);
}
WaitForSingleObjectEx(mutex, timeout, FALSE);
}
Aug 14, 2013
Aug 14, 2013
184
185
#endif
186
187
188
189
190
191
192
193
194
void
SDL_Delay(Uint32 ms)
{
Sleep(ms);
}
#endif /* SDL_TIMER_WINDOWS */
/* vi: set ts=4 sw=4 expandtab: */