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