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

Latest commit

 

History

History
531 lines (461 loc) · 13.2 KB

SDL_events.c

File metadata and controls

531 lines (461 loc) · 13.2 KB
 
Apr 26, 2001
Apr 26, 2001
1
/*
Apr 8, 2011
Apr 8, 2011
2
3
Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
Apr 26, 2001
Apr 26, 2001
4
Apr 8, 2011
Apr 8, 2011
5
6
7
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.
Apr 26, 2001
Apr 26, 2001
8
Apr 8, 2011
Apr 8, 2011
9
10
11
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:
Apr 26, 2001
Apr 26, 2001
12
Apr 8, 2011
Apr 8, 2011
13
14
15
16
17
18
19
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.
Apr 26, 2001
Apr 26, 2001
20
*/
Feb 21, 2006
Feb 21, 2006
21
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
22
23
24
25
/* General event handling code for SDL */
#include "SDL.h"
Jan 4, 2009
Jan 4, 2009
26
#include "SDL_events.h"
Apr 26, 2001
Apr 26, 2001
27
#include "SDL_syswm.h"
Jan 4, 2009
Jan 4, 2009
28
#include "SDL_thread.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
Jan 28, 2011
Jan 28, 2011
34
#include "../video/SDL_sysvideo.h"
Apr 26, 2001
Apr 26, 2001
35
36
37
/* Public data -- the event filter */
SDL_EventFilter SDL_EventOK = NULL;
Jul 10, 2006
Jul 10, 2006
38
void *SDL_EventOKParam;
Mar 25, 2010
Mar 25, 2010
39
Feb 2, 2011
Feb 2, 2011
40
41
42
43
44
45
46
47
typedef struct SDL_EventWatcher {
SDL_EventFilter callback;
void *userdata;
struct SDL_EventWatcher *next;
} SDL_EventWatcher;
static SDL_EventWatcher *SDL_event_watchers = NULL;
Mar 25, 2010
Mar 25, 2010
48
49
50
51
52
53
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
54
55
56
/* Private data -- event queue */
#define MAXEVENTS 128
Jul 10, 2006
Jul 10, 2006
57
58
59
60
61
62
63
64
65
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
66
67
68
} SDL_EventQ;
Mar 25, 2010
Mar 25, 2010
69
70
71
static __inline__ SDL_bool
SDL_ShouldPollJoystick()
{
May 23, 2010
May 23, 2010
72
#if !SDL_JOYSTICK_DISABLED
Mar 25, 2010
Mar 25, 2010
73
74
75
76
77
if (SDL_numjoysticks &&
(!SDL_disabled_events[SDL_JOYAXISMOTION >> 8] ||
SDL_JoystickEventState(SDL_QUERY))) {
return SDL_TRUE;
}
May 23, 2010
May 23, 2010
78
#endif
Mar 25, 2010
Mar 25, 2010
79
80
81
return SDL_FALSE;
}
Apr 26, 2001
Apr 26, 2001
82
83
/* Public functions */
Jul 10, 2006
Jul 10, 2006
84
85
void
SDL_StopEventLoop(void)
Apr 26, 2001
Apr 26, 2001
86
{
Mar 25, 2010
Mar 25, 2010
87
88
int i;
Jan 28, 2011
Jan 28, 2011
89
90
91
92
if (SDL_EventQ.lock) {
SDL_DestroyMutex(SDL_EventQ.lock);
SDL_EventQ.lock = NULL;
}
Jul 10, 2006
Jul 10, 2006
93
94
95
96
97
/* Clean out EventQ */
SDL_EventQ.head = 0;
SDL_EventQ.tail = 0;
SDL_EventQ.wmmsg_next = 0;
Mar 25, 2010
Mar 25, 2010
98
99
100
101
102
103
104
105
/* 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;
}
}
Feb 2, 2011
Feb 2, 2011
106
107
108
109
110
111
while (SDL_event_watchers) {
SDL_EventWatcher *tmp = SDL_event_watchers;
SDL_event_watchers = tmp->next;
SDL_free(tmp);
}
Apr 26, 2001
Apr 26, 2001
112
113
114
}
/* This function (and associated calls) may be called more than once */
Jul 10, 2006
Jul 10, 2006
115
int
Jan 28, 2011
Jan 28, 2011
116
SDL_StartEventLoop(void)
Apr 26, 2001
Apr 26, 2001
117
{
Jul 10, 2006
Jul 10, 2006
118
119
120
121
122
123
/* Clean out the event queue */
SDL_EventQ.lock = NULL;
SDL_StopEventLoop();
/* No filter to start with, process most event types */
SDL_EventOK = NULL;
Mar 25, 2010
Mar 25, 2010
124
SDL_EventState(SDL_SYSWMEVENT, SDL_DISABLE);
Jul 10, 2006
Jul 10, 2006
125
Jan 28, 2011
Jan 28, 2011
126
127
128
129
/* Create the lock and set ourselves active */
#if !SDL_THREADS_DISABLED
SDL_EventQ.lock = SDL_CreateMutex();
if (SDL_EventQ.lock == NULL) {
Jul 10, 2006
Jul 10, 2006
130
131
return (-1);
}
Jan 28, 2011
Jan 28, 2011
132
133
#endif /* !SDL_THREADS_DISABLED */
SDL_EventQ.active = 1;
Jul 10, 2006
Jul 10, 2006
134
135
return (0);
Apr 26, 2001
Apr 26, 2001
136
137
138
139
}
/* Add an event to the event queue -- called with the queue locked */
Jul 10, 2006
Jul 10, 2006
140
141
static int
SDL_AddEvent(SDL_Event * event)
Apr 26, 2001
Apr 26, 2001
142
{
Jul 10, 2006
Jul 10, 2006
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
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
163
164
165
166
}
/* Cut an event, and return the next valid spot, or the tail */
/* -- called with the queue locked */
Jul 10, 2006
Jul 10, 2006
167
168
static int
SDL_CutEvent(int spot)
Apr 26, 2001
Apr 26, 2001
169
{
Jul 10, 2006
Jul 10, 2006
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
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
192
193
194
}
/* Lock the event queue, take a peep at it, and unlock it */
Jul 10, 2006
Jul 10, 2006
195
196
int
SDL_PeepEvents(SDL_Event * events, int numevents, SDL_eventaction action,
Mar 25, 2010
Mar 25, 2010
197
Uint32 minType, Uint32 maxType)
Jul 10, 2006
Jul 10, 2006
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
{
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
224
225
Uint32 type = SDL_EventQ.event[spot].type;
if (minType <= type && type <= maxType) {
Jul 10, 2006
Jul 10, 2006
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
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
246
247
248
249
250
251
252
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
253
{
Mar 25, 2010
Mar 25, 2010
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
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
271
/* Make sure the events are current */
Feb 14, 2011
Feb 14, 2011
272
273
274
275
#if 0
/* Actually, we can't do this since we might be flushing while processing
a resize event, and calling this might trigger further resize events.
*/
May 9, 2010
May 9, 2010
276
SDL_PumpEvents();
Feb 14, 2011
Feb 14, 2011
277
#endif
May 9, 2010
May 9, 2010
278
Mar 25, 2010
Mar 25, 2010
279
280
281
282
283
284
285
286
287
288
289
290
291
/* 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
292
293
294
}
/* Run the system dependent event loops */
Jul 10, 2006
Jul 10, 2006
295
296
void
SDL_PumpEvents(void)
Apr 26, 2001
Apr 26, 2001
297
{
Jan 28, 2011
Jan 28, 2011
298
SDL_VideoDevice *_this = SDL_GetVideoDevice();
Apr 26, 2001
Apr 26, 2001
299
Jan 28, 2011
Jan 28, 2011
300
301
302
303
/* Get events from the video subsystem */
if (_this) {
_this->PumpEvents(_this);
}
Feb 16, 2006
Feb 16, 2006
304
#if !SDL_JOYSTICK_DISABLED
Jan 28, 2011
Jan 28, 2011
305
306
307
/* Check for joystick state change */
if (SDL_ShouldPollJoystick()) {
SDL_JoystickUpdate();
Jul 10, 2006
Jul 10, 2006
308
}
Jan 28, 2011
Jan 28, 2011
309
#endif
Apr 26, 2001
Apr 26, 2001
310
311
312
313
}
/* Public functions */
Jul 10, 2006
Jul 10, 2006
314
315
int
SDL_PollEvent(SDL_Event * event)
Apr 26, 2001
Apr 26, 2001
316
{
Feb 17, 2009
Feb 17, 2009
317
return SDL_WaitEventTimeout(event, 0);
Apr 26, 2001
Apr 26, 2001
318
319
}
Jul 10, 2006
Jul 10, 2006
320
321
int
SDL_WaitEvent(SDL_Event * event)
Apr 26, 2001
Apr 26, 2001
322
{
Feb 17, 2009
Feb 17, 2009
323
324
325
326
327
328
329
330
331
332
333
334
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
335
SDL_PumpEvents();
Mar 25, 2010
Mar 25, 2010
336
switch (SDL_PeepEvents(event, 1, SDL_GETEVENT, SDL_FIRSTEVENT, SDL_LASTEVENT)) {
Jul 10, 2006
Jul 10, 2006
337
338
339
340
341
case -1:
return 0;
case 1:
return 1;
case 0:
Feb 17, 2009
Feb 17, 2009
342
343
344
345
346
347
348
349
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
350
SDL_Delay(10);
Feb 17, 2009
Feb 17, 2009
351
break;
Jul 10, 2006
Jul 10, 2006
352
353
}
}
Apr 26, 2001
Apr 26, 2001
354
355
}
Jul 10, 2006
Jul 10, 2006
356
357
int
SDL_PushEvent(SDL_Event * event)
Apr 26, 2001
Apr 26, 2001
358
{
Feb 2, 2011
Feb 2, 2011
359
360
SDL_EventWatcher *curr;
Jul 10, 2006
Jul 10, 2006
361
362
363
if (SDL_EventOK && !SDL_EventOK(SDL_EventOKParam, event)) {
return 0;
}
Feb 2, 2011
Feb 2, 2011
364
365
366
367
368
for (curr = SDL_event_watchers; curr; curr = curr->next) {
curr->callback(curr->userdata, event);
}
Mar 25, 2010
Mar 25, 2010
369
if (SDL_PeepEvents(event, 1, SDL_ADDEVENT, 0, 0) <= 0) {
Jul 10, 2006
Jul 10, 2006
370
371
return -1;
}
Jul 7, 2010
Jul 7, 2010
372
373
374
375
SDL_GestureProcessEvent(event);
Jul 10, 2006
Jul 10, 2006
376
return 1;
Apr 26, 2001
Apr 26, 2001
377
378
}
Jul 10, 2006
Jul 10, 2006
379
380
void
SDL_SetEventFilter(SDL_EventFilter filter, void *userdata)
Apr 26, 2001
Apr 26, 2001
381
{
Jul 10, 2006
Jul 10, 2006
382
SDL_Event bitbucket;
Apr 26, 2001
Apr 26, 2001
383
Jul 10, 2006
Jul 10, 2006
384
385
386
387
/* Set filter and discard pending events */
SDL_EventOK = filter;
SDL_EventOKParam = userdata;
while (SDL_PollEvent(&bitbucket) > 0);
Apr 26, 2001
Apr 26, 2001
388
389
}
Jul 10, 2006
Jul 10, 2006
390
391
SDL_bool
SDL_GetEventFilter(SDL_EventFilter * filter, void **userdata)
Apr 26, 2001
Apr 26, 2001
392
{
Jul 10, 2006
Jul 10, 2006
393
394
395
396
397
398
399
if (filter) {
*filter = SDL_EventOK;
}
if (userdata) {
*userdata = SDL_EventOKParam;
}
return SDL_EventOK ? SDL_TRUE : SDL_FALSE;
Apr 26, 2001
Apr 26, 2001
400
401
}
Feb 2, 2011
Feb 2, 2011
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
/* FIXME: This is not thread-safe yet */
void
SDL_AddEventWatch(SDL_EventFilter filter, void *userdata)
{
SDL_EventWatcher *watcher;
watcher = (SDL_EventWatcher *)SDL_malloc(sizeof(*watcher));
if (!watcher) {
/* Uh oh... */
return;
}
watcher->callback = filter;
watcher->userdata = userdata;
watcher->next = SDL_event_watchers;
SDL_event_watchers = watcher;
}
/* FIXME: This is not thread-safe yet */
void
SDL_DelEventWatch(SDL_EventFilter filter, void *userdata)
{
SDL_EventWatcher *prev = NULL;
SDL_EventWatcher *curr;
for (curr = SDL_event_watchers; curr; prev = curr, curr = curr->next) {
if (curr->callback == filter && curr->userdata == userdata) {
if (prev) {
prev->next = curr->next;
} else {
SDL_event_watchers = curr->next;
}
SDL_free(curr);
break;
}
}
}
Jul 10, 2006
Jul 10, 2006
439
440
void
SDL_FilterEvents(SDL_EventFilter filter, void *userdata)
Apr 26, 2001
Apr 26, 2001
441
{
Jul 10, 2006
Jul 10, 2006
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
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
458
SDL_EventState(Uint32 type, int state)
Jul 10, 2006
Jul 10, 2006
459
460
{
Uint8 current_state;
Mar 25, 2010
Mar 25, 2010
461
462
Uint8 hi = ((type >> 8) & 0xff);
Uint8 lo = (type & 0xff);
Jul 10, 2006
Jul 10, 2006
463
Mar 25, 2010
Mar 25, 2010
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
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
482
}
Mar 25, 2010
Mar 25, 2010
483
484
485
486
487
488
489
490
491
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
492
493
494
}
}
Mar 25, 2010
Mar 25, 2010
495
496
497
498
499
500
501
502
503
504
505
506
507
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
508
}
Mar 25, 2010
Mar 25, 2010
509
return event_base;
Apr 26, 2001
Apr 26, 2001
510
511
512
513
}
/* This is a generic event handler.
*/
Jul 10, 2006
Jul 10, 2006
514
515
int
SDL_SendSysWMEvent(SDL_SysWMmsg * message)
Apr 26, 2001
Apr 26, 2001
516
{
Jul 10, 2006
Jul 10, 2006
517
518
519
int posted;
posted = 0;
Mar 25, 2010
Mar 25, 2010
520
if (SDL_GetEventState(SDL_SYSWMEVENT) == SDL_ENABLE) {
Jul 10, 2006
Jul 10, 2006
521
522
523
524
525
526
527
528
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
529
}
Jul 10, 2006
Jul 10, 2006
530
531
/* vi: set ts=4 sw=4 expandtab: */