Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
210 lines (173 loc) · 4.61 KB

SDL_systimer.c

File metadata and controls

210 lines (173 loc) · 4.61 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 Sam Lantinga
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
19
20
21
Sam Lantinga
slouken@libsdl.org
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 14, 2006
Apr 14, 2006
24
25
#ifdef SDL_TIMER_WINCE
Jan 25, 2011
Jan 25, 2011
26
#include "../../core/windows/SDL_windows.h"
27
28
#include <mmsystem.h>
Mar 11, 2006
Mar 11, 2006
29
#include "SDL_thread.h"
30
#include "SDL_timer.h"
Feb 16, 2006
Feb 16, 2006
31
#include "../SDL_timer_c.h"
32
33
34
35
static Uint64 start_date;
static Uint64 start_ticks;
Jul 10, 2006
Jul 10, 2006
36
37
static Uint64
wce_ticks(void)
Jul 10, 2006
Jul 10, 2006
39
return ((Uint64) GetTickCount());
40
41
}
Jul 10, 2006
Jul 10, 2006
42
43
static Uint64
wce_date(void)
Jul 10, 2006
Jul 10, 2006
45
46
47
48
49
50
51
52
53
54
55
56
57
union
{
FILETIME ftime;
Uint64 itime;
} ftime;
SYSTEMTIME stime;
GetSystemTime(&stime);
SystemTimeToFileTime(&stime, &ftime.ftime);
ftime.itime /= 10000; // Convert 100ns intervals to 1ms intervals
// Remove ms portion, which can't be relied on
ftime.itime -= (ftime.itime % 1000);
return (ftime.itime);
58
59
}
Jul 10, 2006
Jul 10, 2006
60
61
static Sint32
wce_rel_ticks(void)
Jul 10, 2006
Jul 10, 2006
63
return ((Sint32) (wce_ticks() - start_ticks));
64
65
}
Jul 10, 2006
Jul 10, 2006
66
67
static Sint32
wce_rel_date(void)
Jul 10, 2006
Jul 10, 2006
69
return ((Sint32) (wce_date() - start_date));
70
71
72
}
/* Return time in ms relative to when SDL was started */
Jul 10, 2006
Jul 10, 2006
73
74
Uint32
SDL_GetTicks()
Jul 10, 2006
Jul 10, 2006
76
77
Sint32 offset = wce_rel_date() - wce_rel_ticks();
if ((offset < -1000) || (offset > 1000)) {
78
// fprintf(stderr,"Time desync(%+d), resyncing\n",offset/1000);
Jul 10, 2006
Jul 10, 2006
79
80
start_ticks -= offset;
}
Jul 10, 2006
Jul 10, 2006
82
return ((Uint32) wce_rel_ticks());
83
84
85
}
/* Give up approx. givem milliseconds to the OS. */
Jul 10, 2006
Jul 10, 2006
86
87
void
SDL_Delay(Uint32 ms)
Jul 10, 2006
Jul 10, 2006
89
Sleep(ms);
90
91
92
}
/* Recard start-time of application for reference */
Jul 10, 2006
Jul 10, 2006
93
94
void
SDL_StartTicks(void)
Jul 10, 2006
Jul 10, 2006
96
97
start_date = wce_date();
start_ticks = wce_ticks();
98
99
100
101
}
static UINT WIN_timer;
Mar 11, 2006
Mar 11, 2006
102
103
104
105
106
#if ( _WIN32_WCE <= 420 )
static HANDLE timersThread = 0;
static HANDLE timersQuitEvent = 0;
Jul 10, 2006
Jul 10, 2006
107
108
DWORD
TimersThreadProc(void *data)
Mar 11, 2006
Mar 11, 2006
109
{
Jul 10, 2006
Jul 10, 2006
110
111
112
113
while (WaitForSingleObject(timersQuitEvent, 10) == WAIT_TIMEOUT) {
SDL_ThreadedTimerCheck();
}
return 0;
Mar 11, 2006
Mar 11, 2006
114
115
}
Jul 10, 2006
Jul 10, 2006
116
117
int
SDL_SYS_TimerInit(void)
118
{
Jul 10, 2006
Jul 10, 2006
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// create a thread to process a threaded timers
// SetTimer does not suit the needs because
// TimerCallbackProc will be called only when WM_TIMER occured
timersQuitEvent = CreateEvent(0, TRUE, FALSE, 0);
if (!timersQuitEvent) {
SDL_SetError("Cannot create event for timers thread");
return -1;
}
timersThread = CreateThread(NULL, 0, TimersThreadProc, 0, 0, 0);
if (!timersThread) {
SDL_SetError
("Cannot create timers thread, check amount of RAM available");
return -1;
}
SetThreadPriority(timersThread, THREAD_PRIORITY_HIGHEST);
return (SDL_SetTimerThreaded(1));
137
138
}
Jul 10, 2006
Jul 10, 2006
139
140
void
SDL_SYS_TimerQuit(void)
141
{
Jul 10, 2006
Jul 10, 2006
142
143
144
145
146
147
SetEvent(timersQuitEvent);
if (WaitForSingleObject(timersThread, 2000) == WAIT_TIMEOUT)
TerminateThread(timersThread, 0);
CloseHandle(timersThread);
CloseHandle(timersQuitEvent);
return;
148
149
}
Mar 11, 2006
Mar 11, 2006
150
151
152
153
154
155
#else
#pragma comment(lib, "mmtimer.lib")
/* Data to handle a single periodic alarm */
static UINT timerID = 0;
156
Jul 10, 2006
Jul 10, 2006
157
158
static void CALLBACK
HandleAlarm(UINT uID, UINT uMsg, DWORD dwUser, DWORD dw1, DWORD dw2)
159
{
Jul 10, 2006
Jul 10, 2006
160
SDL_ThreadedTimerCheck();
161
162
}
Mar 11, 2006
Mar 11, 2006
163
Jul 10, 2006
Jul 10, 2006
164
165
int
SDL_SYS_TimerInit(void)
166
{
Jul 10, 2006
Jul 10, 2006
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
MMRESULT result;
/* Set timer resolution */
result = timeBeginPeriod(TIMER_RESOLUTION);
if (result != TIMERR_NOERROR) {
SDL_SetError("Warning: Can't set %d ms timer resolution",
TIMER_RESOLUTION);
}
/* Allow 10 ms of drift so we don't chew on CPU */
timerID =
timeSetEvent(TIMER_RESOLUTION, 1, HandleAlarm, 0, TIME_PERIODIC);
if (!timerID) {
SDL_SetError("timeSetEvent() failed");
return (-1);
}
return (SDL_SetTimerThreaded(1));
183
184
}
Jul 10, 2006
Jul 10, 2006
185
186
void
SDL_SYS_TimerQuit(void)
187
{
Jul 10, 2006
Jul 10, 2006
188
189
190
191
if (timerID) {
timeKillEvent(timerID);
}
timeEndPeriod(TIMER_RESOLUTION);
192
193
}
Mar 11, 2006
Mar 11, 2006
194
195
#endif
Jul 10, 2006
Jul 10, 2006
196
197
int
SDL_SYS_StartTimer(void)
Mar 11, 2006
Mar 11, 2006
198
{
Jul 10, 2006
Jul 10, 2006
199
200
SDL_SetError("Internal logic error: WinCE uses threaded timer");
return (-1);
Mar 11, 2006
Mar 11, 2006
201
202
}
Jul 10, 2006
Jul 10, 2006
203
204
void
SDL_SYS_StopTimer(void)
Mar 11, 2006
Mar 11, 2006
205
{
Jul 10, 2006
Jul 10, 2006
206
return;
Mar 11, 2006
Mar 11, 2006
207
}
Apr 14, 2006
Apr 14, 2006
208
209
#endif /* SDL_TIMER_WINCE */
Jul 10, 2006
Jul 10, 2006
210
/* vi: set ts=4 sw=4 expandtab: */