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

Latest commit

 

History

History
519 lines (458 loc) · 13.3 KB

SDL_events.c

File metadata and controls

519 lines (458 loc) · 13.3 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
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
Apr 26, 2001
Apr 26, 2001
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.
Apr 26, 2001
Apr 26, 2001
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.
Apr 26, 2001
Apr 26, 2001
14
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
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
26
27
28
/* General event handling code for SDL */
#include "SDL.h"
#include "SDL_syswm.h"
#include "SDL_sysevents.h"
Feb 16, 2006
Feb 16, 2006
29
30
31
32
33
#include "SDL_events_c.h"
#include "../timer/SDL_timer_c.h"
#if !SDL_JOYSTICK_DISABLED
#include "../joystick/SDL_joystick_c.h"
#endif
Apr 26, 2001
Apr 26, 2001
34
35
36
37
38
39
40
41
/* Public data -- the event filter */
SDL_EventFilter SDL_EventOK = NULL;
Uint8 SDL_ProcessEvents[SDL_NUMEVENTS];
static Uint32 SDL_eventstate = 0;
/* Private data -- event queue */
#define MAXEVENTS 128
May 28, 2006
May 28, 2006
42
43
44
45
46
47
48
49
50
static struct
{
SDL_mutex *lock;
int active;
int head;
int tail;
SDL_Event event[MAXEVENTS];
int wmmsg_next;
struct SDL_SysWMmsg wmmsg[MAXEVENTS];
Apr 26, 2001
Apr 26, 2001
51
52
53
} SDL_EventQ;
/* Private data -- event locking structure */
May 28, 2006
May 28, 2006
54
55
56
57
static struct
{
SDL_mutex *lock;
int safe;
Apr 26, 2001
Apr 26, 2001
58
59
60
} SDL_EventLock;
/* Thread functions */
May 28, 2006
May 28, 2006
61
62
static SDL_Thread *SDL_EventThread = NULL; /* Thread handle */
static Uint32 event_thread; /* The event thread id */
Apr 26, 2001
Apr 26, 2001
63
May 28, 2006
May 28, 2006
64
void
May 29, 2006
May 29, 2006
65
SDL_Lock_EventThread(void)
Apr 26, 2001
Apr 26, 2001
66
{
May 29, 2006
May 29, 2006
67
if (SDL_EventThread && (SDL_ThreadID() != event_thread)) {
May 28, 2006
May 28, 2006
68
/* Grab lock and spin until we're sure event thread stopped */
May 29, 2006
May 29, 2006
69
SDL_mutexP(SDL_EventLock.lock);
May 28, 2006
May 28, 2006
70
while (!SDL_EventLock.safe) {
May 29, 2006
May 29, 2006
71
SDL_Delay(1);
May 28, 2006
May 28, 2006
72
73
}
}
Apr 26, 2001
Apr 26, 2001
74
}
May 28, 2006
May 28, 2006
75
void
May 29, 2006
May 29, 2006
76
SDL_Unlock_EventThread(void)
Apr 26, 2001
Apr 26, 2001
77
{
May 29, 2006
May 29, 2006
78
79
if (SDL_EventThread && (SDL_ThreadID() != event_thread)) {
SDL_mutexV(SDL_EventLock.lock);
May 28, 2006
May 28, 2006
80
}
Apr 26, 2001
Apr 26, 2001
81
82
}
Nov 23, 2005
Nov 23, 2005
83
84
85
86
87
88
89
90
91
92
93
#ifdef __OS2__
/*
* We'll increase the priority of GobbleEvents thread, so it will process
* events in time for sure! For this, we need the DosSetPriority() API
* from the os2.h include file.
*/
#define INCL_DOSPROCESS
#include <os2.h>
#include <time.h>
#endif
May 28, 2006
May 28, 2006
94
static int SDLCALL
May 29, 2006
May 29, 2006
95
SDL_GobbleEvents(void *unused)
Apr 26, 2001
Apr 26, 2001
96
{
May 29, 2006
May 29, 2006
97
event_thread = SDL_ThreadID();
Nov 23, 2005
Nov 23, 2005
98
99
100
#ifdef __OS2__
#ifdef USE_DOSSETPRIORITY
May 28, 2006
May 28, 2006
101
/* Increase thread priority, so it will process events in time for sure! */
May 29, 2006
May 29, 2006
102
DosSetPriority(PRTYS_THREAD, PRTYC_REGULAR, +16, 0);
Nov 23, 2005
Nov 23, 2005
103
104
105
#endif
#endif
May 28, 2006
May 28, 2006
106
while (SDL_EventQ.active) {
May 29, 2006
May 29, 2006
107
SDL_VideoDevice *_this = SDL_GetVideoDevice();
Apr 26, 2001
Apr 26, 2001
108
May 28, 2006
May 28, 2006
109
110
/* Get events from the video subsystem */
if (_this) {
May 29, 2006
May 29, 2006
111
_this->PumpEvents(_this);
May 28, 2006
May 28, 2006
112
}
Apr 26, 2001
Apr 26, 2001
113
May 28, 2006
May 28, 2006
114
/* Queue pending key-repeat events */
May 29, 2006
May 29, 2006
115
SDL_CheckKeyRepeat();
Apr 26, 2001
Apr 26, 2001
116
Feb 16, 2006
Feb 16, 2006
117
#if !SDL_JOYSTICK_DISABLED
May 28, 2006
May 28, 2006
118
119
/* Check for joystick state change */
if (SDL_numjoysticks && (SDL_eventstate & SDL_JOYEVENTMASK)) {
May 29, 2006
May 29, 2006
120
SDL_JoystickUpdate();
May 28, 2006
May 28, 2006
121
}
Apr 26, 2001
Apr 26, 2001
122
123
#endif
May 28, 2006
May 28, 2006
124
125
126
/* Give up the CPU for the rest of our timeslice */
SDL_EventLock.safe = 1;
if (SDL_timer_running) {
May 29, 2006
May 29, 2006
127
SDL_ThreadedTimerCheck();
May 28, 2006
May 28, 2006
128
}
May 29, 2006
May 29, 2006
129
SDL_Delay(1);
May 28, 2006
May 28, 2006
130
131
132
133
134
135
136
137
138
/* Check for event locking.
On the P of the lock mutex, if the lock is held, this thread
will wait until the lock is released before continuing. The
safe flag will be set, meaning that the other thread can go
about it's business. The safe flag is reset before the V,
so as soon as the mutex is free, other threads can see that
it's not safe to interfere with the event thread.
*/
May 29, 2006
May 29, 2006
139
SDL_mutexP(SDL_EventLock.lock);
May 28, 2006
May 28, 2006
140
SDL_EventLock.safe = 0;
May 29, 2006
May 29, 2006
141
SDL_mutexV(SDL_EventLock.lock);
May 28, 2006
May 28, 2006
142
}
May 29, 2006
May 29, 2006
143
SDL_SetTimerThreaded(0);
May 28, 2006
May 28, 2006
144
145
event_thread = 0;
return (0);
Apr 26, 2001
Apr 26, 2001
146
147
}
May 28, 2006
May 28, 2006
148
static int
May 29, 2006
May 29, 2006
149
SDL_StartEventThread(Uint32 flags)
Apr 26, 2001
Apr 26, 2001
150
{
May 28, 2006
May 28, 2006
151
152
/* Reset everything to zero */
SDL_EventThread = NULL;
May 29, 2006
May 29, 2006
153
SDL_memset(&SDL_EventLock, 0, sizeof(SDL_EventLock));
Apr 26, 2001
Apr 26, 2001
154
May 28, 2006
May 28, 2006
155
/* Create the lock and set ourselves active */
Feb 16, 2006
Feb 16, 2006
156
#if !SDL_THREADS_DISABLED
May 29, 2006
May 29, 2006
157
SDL_EventQ.lock = SDL_CreateMutex();
May 28, 2006
May 28, 2006
158
159
160
if (SDL_EventQ.lock == NULL) {
#ifdef __MACOS__ /* MacOS classic you can't multithread, so no lock needed */
;
Apr 26, 2001
Apr 26, 2001
161
#else
May 28, 2006
May 28, 2006
162
return (-1);
Apr 26, 2001
Apr 26, 2001
163
#endif
May 28, 2006
May 28, 2006
164
}
Feb 16, 2006
Feb 16, 2006
165
#endif /* !SDL_THREADS_DISABLED */
May 28, 2006
May 28, 2006
166
SDL_EventQ.active = 1;
Apr 26, 2001
Apr 26, 2001
167
May 28, 2006
May 28, 2006
168
if ((flags & SDL_INIT_EVENTTHREAD) == SDL_INIT_EVENTTHREAD) {
May 29, 2006
May 29, 2006
169
SDL_EventLock.lock = SDL_CreateMutex();
May 28, 2006
May 28, 2006
170
171
172
173
if (SDL_EventLock.lock == NULL) {
return (-1);
}
SDL_EventLock.safe = 0;
Apr 26, 2001
Apr 26, 2001
174
May 28, 2006
May 28, 2006
175
/* The event thread will handle timers too */
May 29, 2006
May 29, 2006
176
SDL_SetTimerThreaded(2);
Feb 21, 2006
Feb 21, 2006
177
#if (defined(__WIN32__) && !defined(_WIN32_WCE)) && !defined(HAVE_LIBC)
Feb 6, 2006
Feb 6, 2006
178
#undef SDL_CreateThread
May 28, 2006
May 28, 2006
179
SDL_EventThread =
May 29, 2006
May 29, 2006
180
SDL_CreateThread(SDL_GobbleEvents, NULL, NULL, NULL);
Feb 6, 2006
Feb 6, 2006
181
#else
May 29, 2006
May 29, 2006
182
SDL_EventThread = SDL_CreateThread(SDL_GobbleEvents, NULL);
Feb 6, 2006
Feb 6, 2006
183
#endif
May 28, 2006
May 28, 2006
184
185
186
187
188
189
190
if (SDL_EventThread == NULL) {
return (-1);
}
} else {
event_thread = 0;
}
return (0);
Apr 26, 2001
Apr 26, 2001
191
192
}
May 28, 2006
May 28, 2006
193
static void
May 29, 2006
May 29, 2006
194
SDL_StopEventThread(void)
Apr 26, 2001
Apr 26, 2001
195
{
May 28, 2006
May 28, 2006
196
197
SDL_EventQ.active = 0;
if (SDL_EventThread) {
May 29, 2006
May 29, 2006
198
SDL_WaitThread(SDL_EventThread, NULL);
May 28, 2006
May 28, 2006
199
SDL_EventThread = NULL;
May 29, 2006
May 29, 2006
200
SDL_DestroyMutex(SDL_EventLock.lock);
May 28, 2006
May 28, 2006
201
}
Sep 8, 2005
Sep 8, 2005
202
#ifndef IPOD
May 29, 2006
May 29, 2006
203
SDL_DestroyMutex(SDL_EventQ.lock);
Sep 8, 2005
Sep 8, 2005
204
#endif
Apr 26, 2001
Apr 26, 2001
205
206
}
May 28, 2006
May 28, 2006
207
Uint32
May 29, 2006
May 29, 2006
208
SDL_EventThreadID(void)
Apr 26, 2001
Apr 26, 2001
209
{
May 28, 2006
May 28, 2006
210
return (event_thread);
Apr 26, 2001
Apr 26, 2001
211
212
213
214
}
/* Public functions */
May 28, 2006
May 28, 2006
215
void
May 29, 2006
May 29, 2006
216
SDL_StopEventLoop(void)
Apr 26, 2001
Apr 26, 2001
217
{
May 28, 2006
May 28, 2006
218
/* Halt the event thread, if running */
May 29, 2006
May 29, 2006
219
SDL_StopEventThread();
May 28, 2006
May 28, 2006
220
221
/* Shutdown event handlers */
May 29, 2006
May 29, 2006
222
223
224
SDL_KeyboardQuit();
SDL_MouseQuit();
SDL_QuitQuit();
May 28, 2006
May 28, 2006
225
226
227
228
229
/* Clean out EventQ */
SDL_EventQ.head = 0;
SDL_EventQ.tail = 0;
SDL_EventQ.wmmsg_next = 0;
Apr 26, 2001
Apr 26, 2001
230
231
232
}
/* This function (and associated calls) may be called more than once */
May 28, 2006
May 28, 2006
233
int
May 29, 2006
May 29, 2006
234
SDL_StartEventLoop(Uint32 flags)
Apr 26, 2001
Apr 26, 2001
235
{
May 28, 2006
May 28, 2006
236
237
238
239
240
int retcode;
/* Clean out the event queue */
SDL_EventThread = NULL;
SDL_EventQ.lock = NULL;
May 29, 2006
May 29, 2006
241
SDL_StopEventLoop();
May 28, 2006
May 28, 2006
242
243
244
/* No filter to start with, process most event types */
SDL_EventOK = NULL;
May 29, 2006
May 29, 2006
245
SDL_memset(SDL_ProcessEvents, SDL_ENABLE, sizeof(SDL_ProcessEvents));
May 28, 2006
May 28, 2006
246
247
248
249
250
251
252
SDL_eventstate = ~0;
/* It's not save to call SDL_EventState() yet */
SDL_eventstate &= ~(0x00000001 << SDL_SYSWMEVENT);
SDL_ProcessEvents[SDL_SYSWMEVENT] = SDL_IGNORE;
/* Initialize event handlers */
retcode = 0;
May 29, 2006
May 29, 2006
253
254
255
retcode += SDL_KeyboardInit();
retcode += SDL_MouseInit();
retcode += SDL_QuitInit();
May 28, 2006
May 28, 2006
256
257
258
259
260
261
if (retcode < 0) {
/* We don't expect them to fail, but... */
return (-1);
}
/* Create the lock and event thread */
May 29, 2006
May 29, 2006
262
263
if (SDL_StartEventThread(flags) < 0) {
SDL_StopEventLoop();
May 28, 2006
May 28, 2006
264
265
266
return (-1);
}
return (0);
Apr 26, 2001
Apr 26, 2001
267
268
269
270
}
/* Add an event to the event queue -- called with the queue locked */
May 28, 2006
May 28, 2006
271
static int
May 29, 2006
May 29, 2006
272
SDL_AddEvent(SDL_Event * event)
Apr 26, 2001
Apr 26, 2001
273
{
May 28, 2006
May 28, 2006
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
int tail, added;
tail = (SDL_EventQ.tail + 1) % MAXEVENTS;
if (tail == SDL_EventQ.head) {
/* Overflow, drop event */
added = 0;
} else {
SDL_EventQ.event[SDL_EventQ.tail] = *event;
if (event->type == SDL_SYSWMEVENT) {
/* Note that it's possible to lose an event */
int next = SDL_EventQ.wmmsg_next;
SDL_EventQ.wmmsg[next] = *event->syswm.msg;
SDL_EventQ.event[SDL_EventQ.tail].syswm.msg =
&SDL_EventQ.wmmsg[next];
SDL_EventQ.wmmsg_next = (next + 1) % MAXEVENTS;
}
SDL_EventQ.tail = tail;
added = 1;
}
return (added);
Apr 26, 2001
Apr 26, 2001
294
295
296
297
}
/* Cut an event, and return the next valid spot, or the tail */
/* -- called with the queue locked */
May 28, 2006
May 28, 2006
298
static int
May 29, 2006
May 29, 2006
299
SDL_CutEvent(int spot)
Apr 26, 2001
Apr 26, 2001
300
{
May 28, 2006
May 28, 2006
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
if (spot == SDL_EventQ.head) {
SDL_EventQ.head = (SDL_EventQ.head + 1) % MAXEVENTS;
return (SDL_EventQ.head);
} else if ((spot + 1) % MAXEVENTS == SDL_EventQ.tail) {
SDL_EventQ.tail = spot;
return (SDL_EventQ.tail);
} else
/* We cut the middle -- shift everything over */
{
int here, next;
/* This can probably be optimized with SDL_memcpy() -- careful! */
if (--SDL_EventQ.tail < 0) {
SDL_EventQ.tail = MAXEVENTS - 1;
}
for (here = spot; here != SDL_EventQ.tail; here = next) {
next = (here + 1) % MAXEVENTS;
SDL_EventQ.event[here] = SDL_EventQ.event[next];
}
return (spot);
}
/* NOTREACHED */
Apr 26, 2001
Apr 26, 2001
323
324
325
}
/* Lock the event queue, take a peep at it, and unlock it */
May 28, 2006
May 28, 2006
326
int
May 29, 2006
May 29, 2006
327
328
SDL_PeepEvents(SDL_Event * events, int numevents, SDL_eventaction action,
Uint32 mask)
Apr 26, 2001
Apr 26, 2001
329
{
May 28, 2006
May 28, 2006
330
331
332
333
334
335
336
337
int i, used;
/* Don't look after we've quit */
if (!SDL_EventQ.active) {
return (-1);
}
/* Lock the event queue */
used = 0;
May 29, 2006
May 29, 2006
338
if (SDL_mutexP(SDL_EventQ.lock) == 0) {
May 28, 2006
May 28, 2006
339
340
if (action == SDL_ADDEVENT) {
for (i = 0; i < numevents; ++i) {
May 29, 2006
May 29, 2006
341
used += SDL_AddEvent(&events[i]);
May 28, 2006
May 28, 2006
342
343
344
345
346
347
348
349
350
351
352
353
354
}
} else {
SDL_Event tmpevent;
int spot;
/* If 'events' is NULL, just see if they exist */
if (events == NULL) {
action = SDL_PEEKEVENT;
numevents = 1;
events = &tmpevent;
}
spot = SDL_EventQ.head;
while ((used < numevents) && (spot != SDL_EventQ.tail)) {
May 29, 2006
May 29, 2006
355
if (mask & SDL_EVENTMASK(SDL_EventQ.event[spot].type)) {
May 28, 2006
May 28, 2006
356
357
events[used++] = SDL_EventQ.event[spot];
if (action == SDL_GETEVENT) {
May 29, 2006
May 29, 2006
358
spot = SDL_CutEvent(spot);
May 28, 2006
May 28, 2006
359
360
361
362
363
364
365
366
} else {
spot = (spot + 1) % MAXEVENTS;
}
} else {
spot = (spot + 1) % MAXEVENTS;
}
}
}
May 29, 2006
May 29, 2006
367
SDL_mutexV(SDL_EventQ.lock);
May 28, 2006
May 28, 2006
368
} else {
May 29, 2006
May 29, 2006
369
SDL_SetError("Couldn't lock event queue");
May 28, 2006
May 28, 2006
370
371
372
used = -1;
}
return (used);
Apr 26, 2001
Apr 26, 2001
373
374
375
}
/* Run the system dependent event loops */
May 28, 2006
May 28, 2006
376
void
May 29, 2006
May 29, 2006
377
SDL_PumpEvents(void)
Apr 26, 2001
Apr 26, 2001
378
{
May 28, 2006
May 28, 2006
379
if (!SDL_EventThread) {
May 29, 2006
May 29, 2006
380
SDL_VideoDevice *_this = SDL_GetVideoDevice();
Apr 26, 2001
Apr 26, 2001
381
May 28, 2006
May 28, 2006
382
383
/* Get events from the video subsystem */
if (_this) {
May 29, 2006
May 29, 2006
384
_this->PumpEvents(_this);
May 28, 2006
May 28, 2006
385
}
Apr 26, 2001
Apr 26, 2001
386
May 28, 2006
May 28, 2006
387
/* Queue pending key-repeat events */
May 29, 2006
May 29, 2006
388
SDL_CheckKeyRepeat();
Apr 26, 2001
Apr 26, 2001
389
Feb 16, 2006
Feb 16, 2006
390
#if !SDL_JOYSTICK_DISABLED
May 28, 2006
May 28, 2006
391
392
/* Check for joystick state change */
if (SDL_numjoysticks && (SDL_eventstate & SDL_JOYEVENTMASK)) {
May 29, 2006
May 29, 2006
393
SDL_JoystickUpdate();
May 28, 2006
May 28, 2006
394
}
Apr 26, 2001
Apr 26, 2001
395
#endif
May 28, 2006
May 28, 2006
396
}
Apr 26, 2001
Apr 26, 2001
397
398
399
400
}
/* Public functions */
May 28, 2006
May 28, 2006
401
int
May 29, 2006
May 29, 2006
402
SDL_PollEvent(SDL_Event * event)
Apr 26, 2001
Apr 26, 2001
403
{
May 29, 2006
May 29, 2006
404
SDL_PumpEvents();
Apr 26, 2001
Apr 26, 2001
405
May 28, 2006
May 28, 2006
406
/* We can't return -1, just return 0 (no event) on error */
May 29, 2006
May 29, 2006
407
if (SDL_PeepEvents(event, 1, SDL_GETEVENT, SDL_ALLEVENTS) <= 0)
May 28, 2006
May 28, 2006
408
409
return 0;
return 1;
Apr 26, 2001
Apr 26, 2001
410
411
}
May 28, 2006
May 28, 2006
412
int
May 29, 2006
May 29, 2006
413
SDL_WaitEvent(SDL_Event * event)
Apr 26, 2001
Apr 26, 2001
414
{
May 28, 2006
May 28, 2006
415
while (1) {
May 29, 2006
May 29, 2006
416
417
SDL_PumpEvents();
switch (SDL_PeepEvents(event, 1, SDL_GETEVENT, SDL_ALLEVENTS)) {
May 28, 2006
May 28, 2006
418
419
420
421
422
case -1:
return 0;
case 1:
return 1;
case 0:
May 29, 2006
May 29, 2006
423
SDL_Delay(10);
May 28, 2006
May 28, 2006
424
425
}
}
Apr 26, 2001
Apr 26, 2001
426
427
}
May 28, 2006
May 28, 2006
428
int
May 29, 2006
May 29, 2006
429
SDL_PushEvent(SDL_Event * event)
Apr 26, 2001
Apr 26, 2001
430
{
May 29, 2006
May 29, 2006
431
if (SDL_PeepEvents(event, 1, SDL_ADDEVENT, 0) <= 0)
May 28, 2006
May 28, 2006
432
433
return -1;
return 0;
Apr 26, 2001
Apr 26, 2001
434
435
}
May 28, 2006
May 28, 2006
436
void
May 29, 2006
May 29, 2006
437
SDL_SetEventFilter(SDL_EventFilter filter)
Apr 26, 2001
Apr 26, 2001
438
{
May 28, 2006
May 28, 2006
439
SDL_Event bitbucket;
Apr 26, 2001
Apr 26, 2001
440
May 28, 2006
May 28, 2006
441
442
/* Set filter and discard pending events */
SDL_EventOK = filter;
May 29, 2006
May 29, 2006
443
while (SDL_PollEvent(&bitbucket) > 0);
Apr 26, 2001
Apr 26, 2001
444
445
}
May 28, 2006
May 28, 2006
446
SDL_EventFilter
May 29, 2006
May 29, 2006
447
SDL_GetEventFilter(void)
Apr 26, 2001
Apr 26, 2001
448
{
May 28, 2006
May 28, 2006
449
return (SDL_EventOK);
Apr 26, 2001
Apr 26, 2001
450
451
}
May 28, 2006
May 28, 2006
452
Uint8
May 29, 2006
May 29, 2006
453
SDL_EventState(Uint8 type, int state)
Apr 26, 2001
Apr 26, 2001
454
{
May 28, 2006
May 28, 2006
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
SDL_Event bitbucket;
Uint8 current_state;
/* If SDL_ALLEVENTS was specified... */
if (type == 0xFF) {
current_state = SDL_IGNORE;
for (type = 0; type < SDL_NUMEVENTS; ++type) {
if (SDL_ProcessEvents[type] != SDL_IGNORE) {
current_state = SDL_ENABLE;
}
SDL_ProcessEvents[type] = state;
if (state == SDL_ENABLE) {
SDL_eventstate |= (0x00000001 << (type));
} else {
SDL_eventstate &= ~(0x00000001 << (type));
}
}
May 29, 2006
May 29, 2006
472
while (SDL_PollEvent(&bitbucket) > 0);
May 28, 2006
May 28, 2006
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
return (current_state);
}
/* Just set the state for one event type */
current_state = SDL_ProcessEvents[type];
switch (state) {
case SDL_IGNORE:
case SDL_ENABLE:
/* Set state and discard pending events */
SDL_ProcessEvents[type] = state;
if (state == SDL_ENABLE) {
SDL_eventstate |= (0x00000001 << (type));
} else {
SDL_eventstate &= ~(0x00000001 << (type));
}
May 29, 2006
May 29, 2006
488
while (SDL_PollEvent(&bitbucket) > 0);
May 28, 2006
May 28, 2006
489
490
491
492
493
494
break;
default:
/* Querying state? */
break;
}
return (current_state);
Apr 26, 2001
Apr 26, 2001
495
496
497
498
}
/* This is a generic event handler.
*/
May 28, 2006
May 28, 2006
499
int
May 29, 2006
May 29, 2006
500
SDL_PrivateSysWMEvent(SDL_SysWMmsg * message)
Apr 26, 2001
Apr 26, 2001
501
{
May 28, 2006
May 28, 2006
502
503
504
505
506
int posted;
posted = 0;
if (SDL_ProcessEvents[SDL_SYSWMEVENT] == SDL_ENABLE) {
SDL_Event event;
May 29, 2006
May 29, 2006
507
SDL_memset(&event, 0, sizeof(event));
May 28, 2006
May 28, 2006
508
509
510
511
event.type = SDL_SYSWMEVENT;
event.syswm.msg = message;
if ((SDL_EventOK == NULL) || (*SDL_EventOK) (&event)) {
posted = 1;
May 29, 2006
May 29, 2006
512
SDL_PushEvent(&event);
May 28, 2006
May 28, 2006
513
514
515
516
}
}
/* Update internal event state */
return (posted);
Apr 26, 2001
Apr 26, 2001
517
}
May 28, 2006
May 28, 2006
518
519
/* vi: set ts=4 sw=4 expandtab: */