keybits_t keystate[SDLK_LAST / KEYBITS_WORD_BITS + 1];
};
+static void (*ext_event_handler)(void *event);
+
static const char * const in_sdl_keys[SDLK_LAST] = {
[SDLK_BACKSPACE] = "backspace",
[SDLK_TAB] = "tab",
int *kc_out, int *down_out)
{
if (event->type != SDL_KEYDOWN && event->type != SDL_KEYUP)
- return 0;
+ return -1;
update_keystate(state->keystate, event->key.keysym.sym,
event->type == SDL_KEYDOWN);
down = event->jbutton.state == SDL_PRESSED;
ret = 1;
break;
+ default:
+ return -1;
}
if (ret)
else
ret = handle_event(state,
&events[i], one_kc, one_down);
+ if (ret == -1) {
+ if (ext_event_handler != NULL)
+ ext_event_handler(&events[i]);
+ continue;
+ }
+
retval |= ret;
if (one_kc != NULL && ret)
goto out;
.menu_translate = in_sdl_menu_translate,
};
-void in_sdl_init(const struct in_default_bind *defbinds)
+void in_sdl_init(const struct in_default_bind *defbinds,
+ void (*handler)(void *event))
{
in_register_driver(&in_sdl_drv, defbinds);
+ ext_event_handler = handler;
}
-
struct in_default_bind;
-void in_sdl_init(const struct in_default_bind *defbinds);
+void in_sdl_init(const struct in_default_bind *defbinds,
+ void (*handler)(void *event));