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

Latest commit

 

History

History
618 lines (541 loc) · 15.4 KB

SDL_events.c

File metadata and controls

618 lines (541 loc) · 15.4 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 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
/* General event handling code for SDL */
#include "SDL.h"
Jan 4, 2009
Jan 4, 2009
27
#include "SDL_events.h"
Apr 26, 2001
Apr 26, 2001
28
#include "SDL_syswm.h"
Jan 4, 2009
Jan 4, 2009
29
#include "SDL_thread.h"
Apr 26, 2001
Apr 26, 2001
30
#include "SDL_sysevents.h"
Feb 16, 2006
Feb 16, 2006
31
32
33
34
35
#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
36
37
38
/* Public data -- the event filter */
SDL_EventFilter SDL_EventOK = NULL;
Jul 10, 2006
Jul 10, 2006
39
void *SDL_EventOKParam;
Mar 25, 2010
Mar 25, 2010
40
41
42
43
44
45
46
typedef struct {
Uint32 bits[8];
} SDL_DisabledEventBlock;
static SDL_DisabledEventBlock *SDL_disabled_events[256];
static Uint32 SDL_userevents = SDL_USEREVENT;
Apr 26, 2001
Apr 26, 2001
47
48
49
/* Private data -- event queue */
#define MAXEVENTS 128
Jul 10, 2006
Jul 10, 2006
50
51
52
53
54
55
56
57
58
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
59
60
61
} SDL_EventQ;
/* Private data -- event locking structure */
Jul 10, 2006
Jul 10, 2006
62
63
64
65
static struct
{
SDL_mutex *lock;
int safe;
Apr 26, 2001
Apr 26, 2001
66
67
68
} SDL_EventLock;
/* Thread functions */
Jul 10, 2006
Jul 10, 2006
69
static SDL_Thread *SDL_EventThread = NULL; /* Thread handle */
Dec 16, 2009
Dec 16, 2009
70
static SDL_threadID event_thread; /* The event thread id */
Apr 26, 2001
Apr 26, 2001
71
Jul 10, 2006
Jul 10, 2006
72
73
void
SDL_Lock_EventThread(void)
Apr 26, 2001
Apr 26, 2001
74
{
Jul 10, 2006
Jul 10, 2006
75
76
77
78
79
80
81
if (SDL_EventThread && (SDL_ThreadID() != event_thread)) {
/* Grab lock and spin until we're sure event thread stopped */
SDL_mutexP(SDL_EventLock.lock);
while (!SDL_EventLock.safe) {
SDL_Delay(1);
}
}
Apr 26, 2001
Apr 26, 2001
82
}
Aug 27, 2008
Aug 27, 2008
83
Jul 10, 2006
Jul 10, 2006
84
85
void
SDL_Unlock_EventThread(void)
Apr 26, 2001
Apr 26, 2001
86
{
Jul 10, 2006
Jul 10, 2006
87
88
89
if (SDL_EventThread && (SDL_ThreadID() != event_thread)) {
SDL_mutexV(SDL_EventLock.lock);
}
Apr 26, 2001
Apr 26, 2001
90
91
}
Mar 25, 2010
Mar 25, 2010
92
93
94
95
96
97
98
99
100
101
102
static __inline__ SDL_bool
SDL_ShouldPollJoystick()
{
if (SDL_numjoysticks &&
(!SDL_disabled_events[SDL_JOYAXISMOTION >> 8] ||
SDL_JoystickEventState(SDL_QUERY))) {
return SDL_TRUE;
}
return SDL_FALSE;
}
Jul 10, 2006
Jul 10, 2006
103
104
static int SDLCALL
SDL_GobbleEvents(void *unused)
Apr 26, 2001
Apr 26, 2001
105
{
Jul 10, 2006
Jul 10, 2006
106
event_thread = SDL_ThreadID();
Nov 23, 2005
Nov 23, 2005
107
Jul 10, 2006
Jul 10, 2006
108
109
while (SDL_EventQ.active) {
SDL_VideoDevice *_this = SDL_GetVideoDevice();
Apr 26, 2001
Apr 26, 2001
110
Jul 10, 2006
Jul 10, 2006
111
112
113
114
/* Get events from the video subsystem */
if (_this) {
_this->PumpEvents(_this);
}
Feb 16, 2006
Feb 16, 2006
115
#if !SDL_JOYSTICK_DISABLED
Jul 10, 2006
Jul 10, 2006
116
/* Check for joystick state change */
Mar 25, 2010
Mar 25, 2010
117
if (SDL_ShouldPollJoystick()) {
Jul 10, 2006
Jul 10, 2006
118
119
SDL_JoystickUpdate();
}
Apr 26, 2001
Apr 26, 2001
120
121
#endif
Jul 10, 2006
Jul 10, 2006
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/* Give up the CPU for the rest of our timeslice */
SDL_EventLock.safe = 1;
if (SDL_timer_running) {
SDL_ThreadedTimerCheck();
}
SDL_Delay(1);
/* 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.
*/
SDL_mutexP(SDL_EventLock.lock);
SDL_EventLock.safe = 0;
SDL_mutexV(SDL_EventLock.lock);
}
SDL_SetTimerThreaded(0);
event_thread = 0;
return (0);
Apr 26, 2001
Apr 26, 2001
144
145
}
Jul 10, 2006
Jul 10, 2006
146
147
static int
SDL_StartEventThread(Uint32 flags)
Apr 26, 2001
Apr 26, 2001
148
{
Jul 10, 2006
Jul 10, 2006
149
150
151
/* Reset everything to zero */
SDL_EventThread = NULL;
SDL_memset(&SDL_EventLock, 0, sizeof(SDL_EventLock));
Apr 26, 2001
Apr 26, 2001
152
Jul 10, 2006
Jul 10, 2006
153
/* Create the lock and set ourselves active */
Feb 16, 2006
Feb 16, 2006
154
#if !SDL_THREADS_DISABLED
Jul 10, 2006
Jul 10, 2006
155
156
157
158
SDL_EventQ.lock = SDL_CreateMutex();
if (SDL_EventQ.lock == NULL) {
return (-1);
}
Feb 16, 2006
Feb 16, 2006
159
#endif /* !SDL_THREADS_DISABLED */
Jul 10, 2006
Jul 10, 2006
160
SDL_EventQ.active = 1;
Apr 26, 2001
Apr 26, 2001
161
Jul 10, 2006
Jul 10, 2006
162
163
164
165
166
167
if ((flags & SDL_INIT_EVENTTHREAD) == SDL_INIT_EVENTTHREAD) {
SDL_EventLock.lock = SDL_CreateMutex();
if (SDL_EventLock.lock == NULL) {
return (-1);
}
SDL_EventLock.safe = 0;
Apr 26, 2001
Apr 26, 2001
168
Jul 10, 2006
Jul 10, 2006
169
170
/* The event thread will handle timers too */
SDL_SetTimerThreaded(2);
Feb 21, 2006
Feb 21, 2006
171
#if (defined(__WIN32__) && !defined(_WIN32_WCE)) && !defined(HAVE_LIBC)
Feb 6, 2006
Feb 6, 2006
172
#undef SDL_CreateThread
Jul 10, 2006
Jul 10, 2006
173
174
SDL_EventThread =
SDL_CreateThread(SDL_GobbleEvents, NULL, NULL, NULL);
Feb 6, 2006
Feb 6, 2006
175
#else
Jul 10, 2006
Jul 10, 2006
176
SDL_EventThread = SDL_CreateThread(SDL_GobbleEvents, NULL);
Feb 6, 2006
Feb 6, 2006
177
#endif
Jul 10, 2006
Jul 10, 2006
178
179
180
181
182
183
184
if (SDL_EventThread == NULL) {
return (-1);
}
} else {
event_thread = 0;
}
return (0);
Apr 26, 2001
Apr 26, 2001
185
186
}
Jul 10, 2006
Jul 10, 2006
187
188
static void
SDL_StopEventThread(void)
Apr 26, 2001
Apr 26, 2001
189
{
Jul 10, 2006
Jul 10, 2006
190
191
192
193
194
SDL_EventQ.active = 0;
if (SDL_EventThread) {
SDL_WaitThread(SDL_EventThread, NULL);
SDL_EventThread = NULL;
SDL_DestroyMutex(SDL_EventLock.lock);
Jan 6, 2010
Jan 6, 2010
195
SDL_EventLock.lock = NULL;
Jul 10, 2006
Jul 10, 2006
196
}
Sep 7, 2009
Sep 7, 2009
197
198
199
200
if (SDL_EventQ.lock) {
SDL_DestroyMutex(SDL_EventQ.lock);
SDL_EventQ.lock = NULL;
}
Apr 26, 2001
Apr 26, 2001
201
202
}
Dec 16, 2009
Dec 16, 2009
203
SDL_threadID
Jul 10, 2006
Jul 10, 2006
204
SDL_EventThreadID(void)
Apr 26, 2001
Apr 26, 2001
205
{
Jul 10, 2006
Jul 10, 2006
206
return (event_thread);
Apr 26, 2001
Apr 26, 2001
207
208
209
210
}
/* Public functions */
Jul 10, 2006
Jul 10, 2006
211
212
void
SDL_StopEventLoop(void)
Apr 26, 2001
Apr 26, 2001
213
{
Mar 25, 2010
Mar 25, 2010
214
215
int i;
Jul 10, 2006
Jul 10, 2006
216
217
218
219
220
221
222
223
224
225
226
227
/* Halt the event thread, if running */
SDL_StopEventThread();
/* Shutdown event handlers */
SDL_KeyboardQuit();
SDL_MouseQuit();
SDL_QuitQuit();
/* Clean out EventQ */
SDL_EventQ.head = 0;
SDL_EventQ.tail = 0;
SDL_EventQ.wmmsg_next = 0;
Mar 25, 2010
Mar 25, 2010
228
229
230
231
232
233
234
235
/* Clear disabled event state */
for (i = 0; i < SDL_arraysize(SDL_disabled_events); ++i) {
if (SDL_disabled_events[i]) {
SDL_free(SDL_disabled_events[i]);
SDL_disabled_events[i] = NULL;
}
}
Apr 26, 2001
Apr 26, 2001
236
237
238
}
/* This function (and associated calls) may be called more than once */
Jul 10, 2006
Jul 10, 2006
239
240
int
SDL_StartEventLoop(Uint32 flags)
Apr 26, 2001
Apr 26, 2001
241
{
Jul 10, 2006
Jul 10, 2006
242
243
244
245
246
247
248
249
250
int retcode;
/* Clean out the event queue */
SDL_EventThread = NULL;
SDL_EventQ.lock = NULL;
SDL_StopEventLoop();
/* No filter to start with, process most event types */
SDL_EventOK = NULL;
Mar 25, 2010
Mar 25, 2010
251
SDL_EventState(SDL_SYSWMEVENT, SDL_DISABLE);
Jul 10, 2006
Jul 10, 2006
252
253
254
255
256
/* Initialize event handlers */
retcode = 0;
retcode += SDL_KeyboardInit();
retcode += SDL_MouseInit();
May 28, 2010
May 28, 2010
257
retcode += SDL_TouchInit();
Jul 10, 2006
Jul 10, 2006
258
259
260
261
262
263
264
265
266
267
268
269
retcode += SDL_QuitInit();
if (retcode < 0) {
/* We don't expect them to fail, but... */
return (-1);
}
/* Create the lock and event thread */
if (SDL_StartEventThread(flags) < 0) {
SDL_StopEventLoop();
return (-1);
}
return (0);
Apr 26, 2001
Apr 26, 2001
270
271
272
273
}
/* Add an event to the event queue -- called with the queue locked */
Jul 10, 2006
Jul 10, 2006
274
275
static int
SDL_AddEvent(SDL_Event * event)
Apr 26, 2001
Apr 26, 2001
276
{
Jul 10, 2006
Jul 10, 2006
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
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
297
298
299
300
}
/* Cut an event, and return the next valid spot, or the tail */
/* -- called with the queue locked */
Jul 10, 2006
Jul 10, 2006
301
302
static int
SDL_CutEvent(int spot)
Apr 26, 2001
Apr 26, 2001
303
{
Jul 10, 2006
Jul 10, 2006
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
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
326
327
328
}
/* Lock the event queue, take a peep at it, and unlock it */
Jul 10, 2006
Jul 10, 2006
329
330
int
SDL_PeepEvents(SDL_Event * events, int numevents, SDL_eventaction action,
Mar 25, 2010
Mar 25, 2010
331
Uint32 minType, Uint32 maxType)
Jul 10, 2006
Jul 10, 2006
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
{
int i, used;
/* Don't look after we've quit */
if (!SDL_EventQ.active) {
return (-1);
}
/* Lock the event queue */
used = 0;
if (SDL_mutexP(SDL_EventQ.lock) == 0) {
if (action == SDL_ADDEVENT) {
for (i = 0; i < numevents; ++i) {
used += SDL_AddEvent(&events[i]);
}
} 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)) {
Mar 25, 2010
Mar 25, 2010
358
359
Uint32 type = SDL_EventQ.event[spot].type;
if (minType <= type && type <= maxType) {
Jul 10, 2006
Jul 10, 2006
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
events[used++] = SDL_EventQ.event[spot];
if (action == SDL_GETEVENT) {
spot = SDL_CutEvent(spot);
} else {
spot = (spot + 1) % MAXEVENTS;
}
} else {
spot = (spot + 1) % MAXEVENTS;
}
}
}
SDL_mutexV(SDL_EventQ.lock);
} else {
SDL_SetError("Couldn't lock event queue");
used = -1;
}
return (used);
}
SDL_bool
Mar 25, 2010
Mar 25, 2010
380
381
382
383
384
385
386
SDL_HasEvent(Uint32 type)
{
return (SDL_PeepEvents(NULL, 0, SDL_PEEKEVENT, type, type) > 0);
}
SDL_bool
SDL_HasEvents(Uint32 minType, Uint32 maxType)
Apr 26, 2001
Apr 26, 2001
387
{
Mar 25, 2010
Mar 25, 2010
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
return (SDL_PeepEvents(NULL, 0, SDL_PEEKEVENT, minType, maxType) > 0);
}
void
SDL_FlushEvent(Uint32 type)
{
SDL_FlushEvents(type, type);
}
void
SDL_FlushEvents(Uint32 minType, Uint32 maxType)
{
/* Don't look after we've quit */
if (!SDL_EventQ.active) {
return;
}
May 9, 2010
May 9, 2010
405
406
407
/* Make sure the events are current */
SDL_PumpEvents();
Mar 25, 2010
Mar 25, 2010
408
409
410
411
412
413
414
415
416
417
418
419
420
/* Lock the event queue */
if (SDL_mutexP(SDL_EventQ.lock) == 0) {
int spot = SDL_EventQ.head;
while (spot != SDL_EventQ.tail) {
Uint32 type = SDL_EventQ.event[spot].type;
if (minType <= type && type <= maxType) {
spot = SDL_CutEvent(spot);
} else {
spot = (spot + 1) % MAXEVENTS;
}
}
SDL_mutexV(SDL_EventQ.lock);
}
Apr 26, 2001
Apr 26, 2001
421
422
423
}
/* Run the system dependent event loops */
Jul 10, 2006
Jul 10, 2006
424
425
void
SDL_PumpEvents(void)
Apr 26, 2001
Apr 26, 2001
426
{
Jul 10, 2006
Jul 10, 2006
427
428
if (!SDL_EventThread) {
SDL_VideoDevice *_this = SDL_GetVideoDevice();
Apr 26, 2001
Apr 26, 2001
429
Jul 10, 2006
Jul 10, 2006
430
431
432
433
/* Get events from the video subsystem */
if (_this) {
_this->PumpEvents(_this);
}
Feb 16, 2006
Feb 16, 2006
434
#if !SDL_JOYSTICK_DISABLED
Jul 10, 2006
Jul 10, 2006
435
/* Check for joystick state change */
Mar 25, 2010
Mar 25, 2010
436
if (SDL_ShouldPollJoystick()) {
Jul 10, 2006
Jul 10, 2006
437
438
SDL_JoystickUpdate();
}
Apr 26, 2001
Apr 26, 2001
439
#endif
Jul 10, 2006
Jul 10, 2006
440
}
Apr 26, 2001
Apr 26, 2001
441
442
443
444
}
/* Public functions */
Jul 10, 2006
Jul 10, 2006
445
446
int
SDL_PollEvent(SDL_Event * event)
Apr 26, 2001
Apr 26, 2001
447
{
Feb 17, 2009
Feb 17, 2009
448
return SDL_WaitEventTimeout(event, 0);
Apr 26, 2001
Apr 26, 2001
449
450
}
Jul 10, 2006
Jul 10, 2006
451
452
int
SDL_WaitEvent(SDL_Event * event)
Apr 26, 2001
Apr 26, 2001
453
{
Feb 17, 2009
Feb 17, 2009
454
455
456
457
458
459
460
461
462
463
464
465
return SDL_WaitEventTimeout(event, -1);
}
int
SDL_WaitEventTimeout(SDL_Event * event, int timeout)
{
Uint32 expiration = 0;
if (timeout > 0)
expiration = SDL_GetTicks() + timeout;
for (;;) {
Jul 10, 2006
Jul 10, 2006
466
SDL_PumpEvents();
Mar 25, 2010
Mar 25, 2010
467
switch (SDL_PeepEvents(event, 1, SDL_GETEVENT, SDL_FIRSTEVENT, SDL_LASTEVENT)) {
Jul 10, 2006
Jul 10, 2006
468
469
470
471
472
case -1:
return 0;
case 1:
return 1;
case 0:
Feb 17, 2009
Feb 17, 2009
473
474
475
476
477
478
479
480
if (timeout == 0) {
/* Polling and no events, just return */
return 0;
}
if (timeout > 0 && ((int) (SDL_GetTicks() - expiration) >= 0)) {
/* Timeout expired and no events */
return 0;
}
Jul 10, 2006
Jul 10, 2006
481
SDL_Delay(10);
Feb 17, 2009
Feb 17, 2009
482
break;
Jul 10, 2006
Jul 10, 2006
483
484
}
}
Apr 26, 2001
Apr 26, 2001
485
486
}
Jul 10, 2006
Jul 10, 2006
487
488
int
SDL_PushEvent(SDL_Event * event)
Apr 26, 2001
Apr 26, 2001
489
{
Jul 10, 2006
Jul 10, 2006
490
491
492
if (SDL_EventOK && !SDL_EventOK(SDL_EventOKParam, event)) {
return 0;
}
Mar 25, 2010
Mar 25, 2010
493
if (SDL_PeepEvents(event, 1, SDL_ADDEVENT, 0, 0) <= 0) {
Jul 10, 2006
Jul 10, 2006
494
495
return -1;
}
Jul 7, 2010
Jul 7, 2010
496
497
498
499
SDL_GestureProcessEvent(event);
Jul 10, 2006
Jul 10, 2006
500
return 1;
Apr 26, 2001
Apr 26, 2001
501
502
}
Jul 10, 2006
Jul 10, 2006
503
504
void
SDL_SetEventFilter(SDL_EventFilter filter, void *userdata)
Apr 26, 2001
Apr 26, 2001
505
{
Jul 10, 2006
Jul 10, 2006
506
SDL_Event bitbucket;
Apr 26, 2001
Apr 26, 2001
507
Jul 10, 2006
Jul 10, 2006
508
509
510
511
/* Set filter and discard pending events */
SDL_EventOK = filter;
SDL_EventOKParam = userdata;
while (SDL_PollEvent(&bitbucket) > 0);
Apr 26, 2001
Apr 26, 2001
512
513
}
Jul 10, 2006
Jul 10, 2006
514
515
SDL_bool
SDL_GetEventFilter(SDL_EventFilter * filter, void **userdata)
Apr 26, 2001
Apr 26, 2001
516
{
Jul 10, 2006
Jul 10, 2006
517
518
519
520
521
522
523
if (filter) {
*filter = SDL_EventOK;
}
if (userdata) {
*userdata = SDL_EventOKParam;
}
return SDL_EventOK ? SDL_TRUE : SDL_FALSE;
Apr 26, 2001
Apr 26, 2001
524
525
}
Jul 10, 2006
Jul 10, 2006
526
527
void
SDL_FilterEvents(SDL_EventFilter filter, void *userdata)
Apr 26, 2001
Apr 26, 2001
528
{
Jul 10, 2006
Jul 10, 2006
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
if (SDL_mutexP(SDL_EventQ.lock) == 0) {
int spot;
spot = SDL_EventQ.head;
while (spot != SDL_EventQ.tail) {
if (filter(userdata, &SDL_EventQ.event[spot])) {
spot = (spot + 1) % MAXEVENTS;
} else {
spot = SDL_CutEvent(spot);
}
}
}
SDL_mutexV(SDL_EventQ.lock);
}
Uint8
Mar 25, 2010
Mar 25, 2010
545
SDL_EventState(Uint32 type, int state)
Jul 10, 2006
Jul 10, 2006
546
547
{
Uint8 current_state;
Mar 25, 2010
Mar 25, 2010
548
549
Uint8 hi = ((type >> 8) & 0xff);
Uint8 lo = (type & 0xff);
Jul 10, 2006
Jul 10, 2006
550
Mar 25, 2010
Mar 25, 2010
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
if (SDL_disabled_events[hi] &&
(SDL_disabled_events[hi]->bits[lo/32] & (1 << (lo&31)))) {
current_state = SDL_DISABLE;
} else {
current_state = SDL_ENABLE;
}
if (state != current_state)
{
switch (state) {
case SDL_DISABLE:
/* Disable this event type and discard pending events */
if (!SDL_disabled_events[hi]) {
SDL_disabled_events[hi] = (SDL_DisabledEventBlock*) SDL_calloc(1, sizeof(SDL_DisabledEventBlock));
if (!SDL_disabled_events[hi]) {
/* Out of memory, nothing we can do... */
break;
}
Jul 10, 2006
Jul 10, 2006
569
}
Mar 25, 2010
Mar 25, 2010
570
571
572
573
574
575
576
577
578
SDL_disabled_events[hi]->bits[lo/32] |= (1 << (lo&31));
SDL_FlushEvent(type);
break;
case SDL_ENABLE:
SDL_disabled_events[hi]->bits[lo/32] &= ~(1 << (lo&31));
break;
default:
/* Querying state... */
break;
Jul 10, 2006
Jul 10, 2006
579
580
581
}
}
Mar 25, 2010
Mar 25, 2010
582
583
584
585
586
587
588
589
590
591
592
593
594
return current_state;
}
Uint32
SDL_RegisterEvents(int numevents)
{
Uint32 event_base;
if (SDL_userevents+numevents <= SDL_LASTEVENT) {
event_base = SDL_userevents;
SDL_userevents += numevents;
} else {
event_base = (Uint32)-1;
Jul 10, 2006
Jul 10, 2006
595
}
Mar 25, 2010
Mar 25, 2010
596
return event_base;
Apr 26, 2001
Apr 26, 2001
597
598
599
600
}
/* This is a generic event handler.
*/
Jul 10, 2006
Jul 10, 2006
601
602
int
SDL_SendSysWMEvent(SDL_SysWMmsg * message)
Apr 26, 2001
Apr 26, 2001
603
{
Jul 10, 2006
Jul 10, 2006
604
605
606
int posted;
posted = 0;
Mar 25, 2010
Mar 25, 2010
607
if (SDL_GetEventState(SDL_SYSWMEVENT) == SDL_ENABLE) {
Jul 10, 2006
Jul 10, 2006
608
609
610
611
612
613
614
615
SDL_Event event;
SDL_memset(&event, 0, sizeof(event));
event.type = SDL_SYSWMEVENT;
event.syswm.msg = message;
posted = (SDL_PushEvent(&event) > 0);
}
/* Update internal event state */
return (posted);
Apr 26, 2001
Apr 26, 2001
616
}
Jul 10, 2006
Jul 10, 2006
617
618
/* vi: set ts=4 sw=4 expandtab: */