2001-04-26 16:45:43 +00:00
|
|
|
/*
|
2011-04-08 13:03:26 -07:00
|
|
|
Simple DirectMedia Layer
|
2013-02-15 08:47:44 -08:00
|
|
|
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2011-04-08 13:03:26 -07:00
|
|
|
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.
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2011-04-08 13:03:26 -07:00
|
|
|
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:
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2011-04-08 13:03:26 -07:00
|
|
|
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.
|
2001-04-26 16:45:43 +00:00
|
|
|
*/
|
2006-02-21 08:46:50 +00:00
|
|
|
#include "SDL_config.h"
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
/* General event handling code for SDL */
|
|
|
|
|
|
|
|
#include "SDL.h"
|
2009-01-04 05:41:52 +00:00
|
|
|
#include "SDL_events.h"
|
2001-04-26 16:45:43 +00:00
|
|
|
#include "SDL_syswm.h"
|
2009-01-04 05:41:52 +00:00
|
|
|
#include "SDL_thread.h"
|
2006-02-16 10:11:48 +00:00
|
|
|
#include "SDL_events_c.h"
|
|
|
|
#include "../timer/SDL_timer_c.h"
|
|
|
|
#if !SDL_JOYSTICK_DISABLED
|
|
|
|
#include "../joystick/SDL_joystick_c.h"
|
|
|
|
#endif
|
2011-01-27 22:44:08 -08:00
|
|
|
#include "../video/SDL_sysvideo.h"
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
/* Public data -- the event filter */
|
|
|
|
SDL_EventFilter SDL_EventOK = NULL;
|
2006-07-10 21:04:37 +00:00
|
|
|
void *SDL_EventOKParam;
|
2010-03-25 01:08:26 -07:00
|
|
|
|
2011-02-01 19:15:42 -08:00
|
|
|
typedef struct SDL_EventWatcher {
|
|
|
|
SDL_EventFilter callback;
|
|
|
|
void *userdata;
|
|
|
|
struct SDL_EventWatcher *next;
|
|
|
|
} SDL_EventWatcher;
|
|
|
|
|
|
|
|
static SDL_EventWatcher *SDL_event_watchers = NULL;
|
|
|
|
|
2010-03-25 01:08:26 -07:00
|
|
|
typedef struct {
|
|
|
|
Uint32 bits[8];
|
|
|
|
} SDL_DisabledEventBlock;
|
|
|
|
|
|
|
|
static SDL_DisabledEventBlock *SDL_disabled_events[256];
|
|
|
|
static Uint32 SDL_userevents = SDL_USEREVENT;
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
/* Private data -- event queue */
|
|
|
|
#define MAXEVENTS 128
|
2006-07-10 21:04:37 +00:00
|
|
|
static struct
|
|
|
|
{
|
|
|
|
SDL_mutex *lock;
|
|
|
|
int active;
|
|
|
|
int head;
|
|
|
|
int tail;
|
|
|
|
SDL_Event event[MAXEVENTS];
|
|
|
|
int wmmsg_next;
|
|
|
|
struct SDL_SysWMmsg wmmsg[MAXEVENTS];
|
2012-10-14 01:30:42 -07:00
|
|
|
} SDL_EventQ = { NULL, 1 };
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
|
2010-03-25 01:08:26 -07:00
|
|
|
static __inline__ SDL_bool
|
|
|
|
SDL_ShouldPollJoystick()
|
|
|
|
{
|
2010-05-23 15:12:41 +12:00
|
|
|
#if !SDL_JOYSTICK_DISABLED
|
2012-12-14 09:22:13 -08:00
|
|
|
if ((!SDL_disabled_events[SDL_JOYAXISMOTION >> 8] ||
|
|
|
|
SDL_JoystickEventState(SDL_QUERY)) &&
|
|
|
|
SDL_PrivateJoystickNeedsPolling()) {
|
2010-03-25 01:08:26 -07:00
|
|
|
return SDL_TRUE;
|
|
|
|
}
|
2010-05-23 15:12:41 +12:00
|
|
|
#endif
|
2010-03-25 01:08:26 -07:00
|
|
|
return SDL_FALSE;
|
|
|
|
}
|
|
|
|
|
2001-04-26 16:45:43 +00:00
|
|
|
/* Public functions */
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
void
|
|
|
|
SDL_StopEventLoop(void)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2010-03-25 01:08:26 -07:00
|
|
|
int i;
|
|
|
|
|
2012-09-28 03:54:39 -07:00
|
|
|
SDL_EventQ.active = 0;
|
|
|
|
|
2011-01-27 22:44:08 -08:00
|
|
|
if (SDL_EventQ.lock) {
|
|
|
|
SDL_DestroyMutex(SDL_EventQ.lock);
|
|
|
|
SDL_EventQ.lock = NULL;
|
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
|
|
|
|
/* Clean out EventQ */
|
|
|
|
SDL_EventQ.head = 0;
|
|
|
|
SDL_EventQ.tail = 0;
|
|
|
|
SDL_EventQ.wmmsg_next = 0;
|
2010-03-25 01:08:26 -07:00
|
|
|
|
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
}
|
2011-02-01 19:15:42 -08:00
|
|
|
|
|
|
|
while (SDL_event_watchers) {
|
|
|
|
SDL_EventWatcher *tmp = SDL_event_watchers;
|
|
|
|
SDL_event_watchers = tmp->next;
|
|
|
|
SDL_free(tmp);
|
|
|
|
}
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This function (and associated calls) may be called more than once */
|
2006-07-10 21:04:37 +00:00
|
|
|
int
|
2011-01-27 22:44:08 -08:00
|
|
|
SDL_StartEventLoop(void)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2012-10-14 01:30:42 -07:00
|
|
|
/* We'll leave the event queue alone, since we might have gotten
|
|
|
|
some important events at launch (like SDL_DROPFILE)
|
|
|
|
|
|
|
|
FIXME: Does this introduce any other bugs with events at startup?
|
|
|
|
*/
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2011-01-27 22:44:08 -08:00
|
|
|
/* Create the lock and set ourselves active */
|
|
|
|
#if !SDL_THREADS_DISABLED
|
2012-10-14 01:30:42 -07:00
|
|
|
if (!SDL_EventQ.lock) {
|
|
|
|
SDL_EventQ.lock = SDL_CreateMutex();
|
|
|
|
}
|
2011-01-27 22:44:08 -08:00
|
|
|
if (SDL_EventQ.lock == NULL) {
|
2006-07-10 21:04:37 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
2011-01-27 22:44:08 -08:00
|
|
|
#endif /* !SDL_THREADS_DISABLED */
|
2013-04-19 11:58:38 -04:00
|
|
|
|
|
|
|
/* No filter to start with, process most event types */
|
|
|
|
SDL_EventOK = NULL;
|
|
|
|
SDL_EventState(SDL_TEXTINPUT, SDL_DISABLE);
|
|
|
|
SDL_EventState(SDL_TEXTEDITING, SDL_DISABLE);
|
|
|
|
SDL_EventState(SDL_SYSWMEVENT, SDL_DISABLE);
|
|
|
|
|
2011-01-27 22:44:08 -08:00
|
|
|
SDL_EventQ.active = 1;
|
2006-07-10 21:04:37 +00:00
|
|
|
|
|
|
|
return (0);
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Add an event to the event queue -- called with the queue locked */
|
2006-07-10 21:04:37 +00:00
|
|
|
static int
|
|
|
|
SDL_AddEvent(SDL_Event * event)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-07-10 21:04:37 +00:00
|
|
|
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);
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Cut an event, and return the next valid spot, or the tail */
|
|
|
|
/* -- called with the queue locked */
|
2006-07-10 21:04:37 +00:00
|
|
|
static int
|
|
|
|
SDL_CutEvent(int spot)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-07-10 21:04:37 +00:00
|
|
|
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 */
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Lock the event queue, take a peep at it, and unlock it */
|
2006-07-10 21:04:37 +00:00
|
|
|
int
|
|
|
|
SDL_PeepEvents(SDL_Event * events, int numevents, SDL_eventaction action,
|
2010-03-25 01:08:26 -07:00
|
|
|
Uint32 minType, Uint32 maxType)
|
2006-07-10 21:04:37 +00:00
|
|
|
{
|
|
|
|
int i, used;
|
|
|
|
|
|
|
|
/* Don't look after we've quit */
|
|
|
|
if (!SDL_EventQ.active) {
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
/* Lock the event queue */
|
|
|
|
used = 0;
|
2013-03-07 20:12:40 -08:00
|
|
|
if (!SDL_EventQ.lock || SDL_LockMutex(SDL_EventQ.lock) == 0) {
|
2006-07-10 21:04:37 +00:00
|
|
|
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)) {
|
2010-03-25 01:08:26 -07:00
|
|
|
Uint32 type = SDL_EventQ.event[spot].type;
|
|
|
|
if (minType <= type && type <= maxType) {
|
2006-07-10 21:04:37 +00:00
|
|
|
events[used++] = SDL_EventQ.event[spot];
|
|
|
|
if (action == SDL_GETEVENT) {
|
|
|
|
spot = SDL_CutEvent(spot);
|
|
|
|
} else {
|
|
|
|
spot = (spot + 1) % MAXEVENTS;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
spot = (spot + 1) % MAXEVENTS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-03-07 20:12:40 -08:00
|
|
|
SDL_UnlockMutex(SDL_EventQ.lock);
|
2006-07-10 21:04:37 +00:00
|
|
|
} else {
|
2013-03-31 12:48:50 -04:00
|
|
|
return SDL_SetError("Couldn't lock event queue");
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
return (used);
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_bool
|
2010-03-25 01:08:26 -07:00
|
|
|
SDL_HasEvent(Uint32 type)
|
|
|
|
{
|
|
|
|
return (SDL_PeepEvents(NULL, 0, SDL_PEEKEVENT, type, type) > 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_bool
|
|
|
|
SDL_HasEvents(Uint32 minType, Uint32 maxType)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2010-03-25 01:08:26 -07:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-05-09 16:15:14 -07:00
|
|
|
/* Make sure the events are current */
|
2011-02-13 22:53:12 -08:00
|
|
|
#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.
|
|
|
|
*/
|
2010-05-09 16:15:14 -07:00
|
|
|
SDL_PumpEvents();
|
2011-02-13 22:53:12 -08:00
|
|
|
#endif
|
2010-05-09 16:15:14 -07:00
|
|
|
|
2010-03-25 01:08:26 -07:00
|
|
|
/* Lock the event queue */
|
2013-03-07 20:12:40 -08:00
|
|
|
if (SDL_LockMutex(SDL_EventQ.lock) == 0) {
|
2010-03-25 01:08:26 -07:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2013-03-07 20:12:40 -08:00
|
|
|
SDL_UnlockMutex(SDL_EventQ.lock);
|
2010-03-25 01:08:26 -07:00
|
|
|
}
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Run the system dependent event loops */
|
2006-07-10 21:04:37 +00:00
|
|
|
void
|
|
|
|
SDL_PumpEvents(void)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2011-01-27 22:44:08 -08:00
|
|
|
SDL_VideoDevice *_this = SDL_GetVideoDevice();
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2011-01-27 22:44:08 -08:00
|
|
|
/* Get events from the video subsystem */
|
|
|
|
if (_this) {
|
|
|
|
_this->PumpEvents(_this);
|
|
|
|
}
|
2006-02-16 10:11:48 +00:00
|
|
|
#if !SDL_JOYSTICK_DISABLED
|
2011-01-27 22:44:08 -08:00
|
|
|
/* Check for joystick state change */
|
|
|
|
if (SDL_ShouldPollJoystick()) {
|
|
|
|
SDL_JoystickUpdate();
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2011-01-27 22:44:08 -08:00
|
|
|
#endif
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Public functions */
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
int
|
|
|
|
SDL_PollEvent(SDL_Event * event)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2009-02-17 05:59:40 +00:00
|
|
|
return SDL_WaitEventTimeout(event, 0);
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
int
|
|
|
|
SDL_WaitEvent(SDL_Event * event)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2009-02-17 05:59:40 +00:00
|
|
|
return SDL_WaitEventTimeout(event, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
SDL_WaitEventTimeout(SDL_Event * event, int timeout)
|
|
|
|
{
|
|
|
|
Uint32 expiration = 0;
|
|
|
|
|
|
|
|
if (timeout > 0)
|
|
|
|
expiration = SDL_GetTicks() + timeout;
|
|
|
|
|
|
|
|
for (;;) {
|
2006-07-10 21:04:37 +00:00
|
|
|
SDL_PumpEvents();
|
2010-03-25 01:08:26 -07:00
|
|
|
switch (SDL_PeepEvents(event, 1, SDL_GETEVENT, SDL_FIRSTEVENT, SDL_LASTEVENT)) {
|
2006-07-10 21:04:37 +00:00
|
|
|
case -1:
|
|
|
|
return 0;
|
|
|
|
case 1:
|
|
|
|
return 1;
|
|
|
|
case 0:
|
2009-02-17 05:59:40 +00:00
|
|
|
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;
|
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
SDL_Delay(10);
|
2009-02-17 05:59:40 +00:00
|
|
|
break;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
}
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
int
|
|
|
|
SDL_PushEvent(SDL_Event * event)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2011-02-01 19:15:42 -08:00
|
|
|
SDL_EventWatcher *curr;
|
2013-03-02 17:51:32 -08:00
|
|
|
event->generic.timestamp = SDL_GetTicks();
|
2006-07-10 21:04:37 +00:00
|
|
|
if (SDL_EventOK && !SDL_EventOK(SDL_EventOKParam, event)) {
|
|
|
|
return 0;
|
|
|
|
}
|
2011-02-01 19:15:42 -08:00
|
|
|
|
|
|
|
for (curr = SDL_event_watchers; curr; curr = curr->next) {
|
|
|
|
curr->callback(curr->userdata, event);
|
|
|
|
}
|
|
|
|
|
2010-03-25 01:08:26 -07:00
|
|
|
if (SDL_PeepEvents(event, 1, SDL_ADDEVENT, 0, 0) <= 0) {
|
2006-07-10 21:04:37 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2010-07-07 04:13:08 -07:00
|
|
|
|
|
|
|
SDL_GestureProcessEvent(event);
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
return 1;
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
void
|
|
|
|
SDL_SetEventFilter(SDL_EventFilter filter, void *userdata)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-07-10 21:04:37 +00:00
|
|
|
SDL_Event bitbucket;
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
/* Set filter and discard pending events */
|
|
|
|
SDL_EventOK = filter;
|
|
|
|
SDL_EventOKParam = userdata;
|
|
|
|
while (SDL_PollEvent(&bitbucket) > 0);
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
SDL_bool
|
|
|
|
SDL_GetEventFilter(SDL_EventFilter * filter, void **userdata)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-07-10 21:04:37 +00:00
|
|
|
if (filter) {
|
|
|
|
*filter = SDL_EventOK;
|
|
|
|
}
|
|
|
|
if (userdata) {
|
|
|
|
*userdata = SDL_EventOKParam;
|
|
|
|
}
|
|
|
|
return SDL_EventOK ? SDL_TRUE : SDL_FALSE;
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2011-02-01 19:15:42 -08:00
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
void
|
|
|
|
SDL_FilterEvents(SDL_EventFilter filter, void *userdata)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2013-03-07 20:12:40 -08:00
|
|
|
if (SDL_LockMutex(SDL_EventQ.lock) == 0) {
|
2006-07-10 21:04:37 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-03-07 20:12:40 -08:00
|
|
|
SDL_UnlockMutex(SDL_EventQ.lock);
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Uint8
|
2010-03-25 01:08:26 -07:00
|
|
|
SDL_EventState(Uint32 type, int state)
|
2006-07-10 21:04:37 +00:00
|
|
|
{
|
|
|
|
Uint8 current_state;
|
2010-03-25 01:08:26 -07:00
|
|
|
Uint8 hi = ((type >> 8) & 0xff);
|
|
|
|
Uint8 lo = (type & 0xff);
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2010-03-25 01:08:26 -07:00
|
|
|
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;
|
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2010-03-25 01:08:26 -07:00
|
|
|
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;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-25 01:08:26 -07:00
|
|
|
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;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2010-03-25 01:08:26 -07:00
|
|
|
return event_base;
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This is a generic event handler.
|
|
|
|
*/
|
2006-07-10 21:04:37 +00:00
|
|
|
int
|
|
|
|
SDL_SendSysWMEvent(SDL_SysWMmsg * message)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-07-10 21:04:37 +00:00
|
|
|
int posted;
|
|
|
|
|
|
|
|
posted = 0;
|
2010-03-25 01:08:26 -07:00
|
|
|
if (SDL_GetEventState(SDL_SYSWMEVENT) == SDL_ENABLE) {
|
2006-07-10 21:04:37 +00:00
|
|
|
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);
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
|
|
|
|
/* vi: set ts=4 sw=4 expandtab: */
|