misc. fixes

add ctrl+c handler to linuxraw_input
This commit is contained in:
Toad King 2012-06-19 14:49:38 -04:00
parent 3e1b621e7a
commit ed14c8c6b8
3 changed files with 318 additions and 325 deletions

View File

@ -14,7 +14,6 @@
* If not, see <http://www.gnu.org/licenses/>. * If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <assert.h>
#include <math.h> #include <math.h>
#include <unistd.h> #include <unistd.h>
#include <bcm_host.h> #include <bcm_host.h>
@ -24,9 +23,7 @@
#include <EGL/eglext.h> #include <EGL/eglext.h>
#include "../libretro.h" #include "../libretro.h"
#include "../general.h" #include "../general.h"
//#include "../input/linuxraw_input.h" #include "../input/linuxraw_input.h"
// SDL include messing with some defines
typedef struct linuxraw_input linuxraw_input_t;
#include "../driver.h" #include "../driver.h"
#ifdef HAVE_FREETYPE #ifdef HAVE_FREETYPE
@ -113,24 +110,24 @@ static void *rpi_init(const video_info_t *video, const input_driver_t **input, v
// get an EGL display connection // get an EGL display connection
rpi->mDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY); rpi->mDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
assert(rpi->mDisplay != EGL_NO_DISPLAY); rarch_assert(rpi->mDisplay != EGL_NO_DISPLAY);
// initialize the EGL display connection // initialize the EGL display connection
result = eglInitialize(rpi->mDisplay, NULL, NULL); result = eglInitialize(rpi->mDisplay, NULL, NULL);
assert(result != EGL_FALSE); rarch_assert(result != EGL_FALSE);
eglBindAPI(EGL_OPENVG_API); eglBindAPI(EGL_OPENVG_API);
// get an appropriate EGL frame buffer configuration // get an appropriate EGL frame buffer configuration
result = eglChooseConfig(rpi->mDisplay, attribute_list, &config, 1, &num_config); result = eglChooseConfig(rpi->mDisplay, attribute_list, &config, 1, &num_config);
assert(result != EGL_FALSE); rarch_assert(result != EGL_FALSE);
// create an EGL rendering context // create an EGL rendering context
rpi->mContext = eglCreateContext(rpi->mDisplay, config, EGL_NO_CONTEXT, NULL); rpi->mContext = eglCreateContext(rpi->mDisplay, config, EGL_NO_CONTEXT, NULL);
assert(rpi->mContext != EGL_NO_CONTEXT); rarch_assert(rpi->mContext != EGL_NO_CONTEXT);
// create an EGL window surface // create an EGL window surface
success = graphics_get_display_size(0 /* LCD */, &rpi->mScreenWidth, &rpi->mScreenHeight); success = graphics_get_display_size(0 /* LCD */, &rpi->mScreenWidth, &rpi->mScreenHeight);
assert(success >= 0); rarch_assert(success >= 0);
dst_rect.x = 0; dst_rect.x = 0;
dst_rect.y = 0; dst_rect.y = 0;
@ -156,11 +153,11 @@ static void *rpi_init(const video_info_t *video, const input_driver_t **input, v
vc_dispmanx_update_submit_sync(dispman_update); vc_dispmanx_update_submit_sync(dispman_update);
rpi->mSurface = eglCreateWindowSurface(rpi->mDisplay, config, &nativewindow, NULL); rpi->mSurface = eglCreateWindowSurface(rpi->mDisplay, config, &nativewindow, NULL);
assert(rpi->mSurface != EGL_NO_SURFACE); rarch_assert(rpi->mSurface != EGL_NO_SURFACE);
// connect the context to the surface // connect the context to the surface
result = eglMakeCurrent(rpi->mDisplay, rpi->mSurface, rpi->mSurface, rpi->mContext); result = eglMakeCurrent(rpi->mDisplay, rpi->mSurface, rpi->mSurface, rpi->mContext);
assert(result != EGL_FALSE); rarch_assert(result != EGL_FALSE);
rpi->mTexType = video->rgb32 ? VG_sABGR_8888 : VG_sARGB_1555; rpi->mTexType = video->rgb32 ? VG_sABGR_8888 : VG_sARGB_1555;
rpi->mKeepAspect = video->force_aspect; rpi->mKeepAspect = video->force_aspect;
@ -426,12 +423,6 @@ static bool rpi_focus(void *data)
return true; return true;
} }
static void rpi_set_rotation(void *data, unsigned rotation)
{
(void)data;
(void)rotation;
}
const video_driver_t video_rpi = { const video_driver_t video_rpi = {
rpi_init, rpi_init,
rpi_frame, rpi_frame,
@ -440,6 +431,5 @@ const video_driver_t video_rpi = {
rpi_focus, rpi_focus,
NULL, NULL,
rpi_free, rpi_free,
"rpi", "rpi"
rpi_set_rotation,
}; };

View File

@ -1,303 +1,306 @@
/* RetroArch - A frontend for libretro. /* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen * Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2012 - Michael Lelli * Copyright (C) 2012 - Michael Lelli
* *
* RetroArch is free software: you can redistribute it and/or modify it under the terms * RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found- * of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version. * ation, either version 3 of the License, or (at your option) any later version.
* *
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * RetroArch 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 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details. * PURPOSE. See the GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with RetroArch. * You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>. * If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "../driver.h" #include "../driver.h"
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <linux/input.h> #include <linux/input.h>
#include <linux/kd.h> #include <linux/kd.h>
#include <termios.h> #include <termios.h>
#include <unistd.h> #include <unistd.h>
#include <signal.h> #include <signal.h>
#include "../general.h" #include "../general.h"
#include "linuxraw_input.h" #include "linuxraw_input.h"
#include "rarch_sdl_input.h" #include "rarch_sdl_input.h"
static long oldKbmd = 0xFFFF; static long oldKbmd = 0xFFFF;
static struct termios oldTerm, newTerm; static struct termios oldTerm, newTerm;
struct key_bind struct key_bind
{ {
uint8_t x; uint8_t x;
enum rarch_key sk; enum rarch_key sk;
}; };
static unsigned keysym_lut[SK_LAST]; static unsigned keysym_lut[SK_LAST];
static const struct key_bind lut_binds[] = { static const struct key_bind lut_binds[] = {
{ KEY_ESC, SK_ESCAPE }, { KEY_ESC, SK_ESCAPE },
{ KEY_1, SK_1 }, { KEY_1, SK_1 },
{ KEY_2, SK_2 }, { KEY_2, SK_2 },
{ KEY_3, SK_3}, { KEY_3, SK_3},
{ KEY_4, SK_4 }, { KEY_4, SK_4 },
{ KEY_5, SK_5 }, { KEY_5, SK_5 },
{ KEY_6, SK_6 }, { KEY_6, SK_6 },
{ KEY_7, SK_7 }, { KEY_7, SK_7 },
{ KEY_8, SK_8 }, { KEY_8, SK_8 },
{ KEY_9, SK_9 }, { KEY_9, SK_9 },
{ KEY_0, SK_0 }, { KEY_0, SK_0 },
{ KEY_MINUS, SK_MINUS }, { KEY_MINUS, SK_MINUS },
{ KEY_EQUAL, SK_EQUALS }, { KEY_EQUAL, SK_EQUALS },
{ KEY_BACKSPACE, SK_BACKSPACE }, { KEY_BACKSPACE, SK_BACKSPACE },
{ KEY_TAB, SK_TAB }, { KEY_TAB, SK_TAB },
{ KEY_Q, SK_q }, { KEY_Q, SK_q },
{ KEY_W, SK_w }, { KEY_W, SK_w },
{ KEY_E, SK_e }, { KEY_E, SK_e },
{ KEY_R, SK_r }, { KEY_R, SK_r },
{ KEY_T, SK_t }, { KEY_T, SK_t },
{ KEY_Y, SK_y }, { KEY_Y, SK_y },
{ KEY_U, SK_u }, { KEY_U, SK_u },
{ KEY_I, SK_i }, { KEY_I, SK_i },
{ KEY_O, SK_o }, { KEY_O, SK_o },
{ KEY_P, SK_p }, { KEY_P, SK_p },
{ KEY_LEFTBRACE, SK_LEFTBRACKET }, { KEY_LEFTBRACE, SK_LEFTBRACKET },
{ KEY_RIGHTBRACE, SK_RIGHTBRACKET }, { KEY_RIGHTBRACE, SK_RIGHTBRACKET },
{ KEY_ENTER, SK_RETURN }, { KEY_ENTER, SK_RETURN },
{ KEY_LEFTCTRL, SK_LCTRL }, { KEY_LEFTCTRL, SK_LCTRL },
{ KEY_A, SK_a }, { KEY_A, SK_a },
{ KEY_S, SK_s }, { KEY_S, SK_s },
{ KEY_D, SK_d }, { KEY_D, SK_d },
{ KEY_F, SK_f }, { KEY_F, SK_f },
{ KEY_G, SK_g }, { KEY_G, SK_g },
{ KEY_H, SK_h }, { KEY_H, SK_h },
{ KEY_J, SK_j }, { KEY_J, SK_j },
{ KEY_K, SK_k }, { KEY_K, SK_k },
{ KEY_L, SK_l }, { KEY_L, SK_l },
{ KEY_SEMICOLON, SK_SEMICOLON }, { KEY_SEMICOLON, SK_SEMICOLON },
{ KEY_APOSTROPHE, SK_QUOTE }, { KEY_APOSTROPHE, SK_QUOTE },
{ KEY_GRAVE, SK_BACKQUOTE }, { KEY_GRAVE, SK_BACKQUOTE },
{ KEY_LEFTSHIFT, SK_LSHIFT }, { KEY_LEFTSHIFT, SK_LSHIFT },
{ KEY_BACKSLASH, SK_BACKSLASH }, { KEY_BACKSLASH, SK_BACKSLASH },
{ KEY_Z, SK_z }, { KEY_Z, SK_z },
{ KEY_X, SK_x }, { KEY_X, SK_x },
{ KEY_C, SK_c }, { KEY_C, SK_c },
{ KEY_V, SK_v }, { KEY_V, SK_v },
{ KEY_B, SK_b }, { KEY_B, SK_b },
{ KEY_N, SK_n }, { KEY_N, SK_n },
{ KEY_M, SK_m }, { KEY_M, SK_m },
{ KEY_COMMA, SK_COMMA }, { KEY_COMMA, SK_COMMA },
{ KEY_DOT, SK_PERIOD }, { KEY_DOT, SK_PERIOD },
{ KEY_SLASH, SK_SLASH }, { KEY_SLASH, SK_SLASH },
{ KEY_RIGHTSHIFT, SK_RSHIFT }, { KEY_RIGHTSHIFT, SK_RSHIFT },
{ KEY_KPASTERISK, SK_KP_MULTIPLY }, { KEY_KPASTERISK, SK_KP_MULTIPLY },
{ KEY_LEFTALT, SK_LALT }, { KEY_LEFTALT, SK_LALT },
{ KEY_SPACE, SK_SPACE }, { KEY_SPACE, SK_SPACE },
{ KEY_CAPSLOCK, SK_CAPSLOCK }, { KEY_CAPSLOCK, SK_CAPSLOCK },
{ KEY_F1, SK_F1 }, { KEY_F1, SK_F1 },
{ KEY_F2, SK_F2 }, { KEY_F2, SK_F2 },
{ KEY_F3, SK_F3 }, { KEY_F3, SK_F3 },
{ KEY_F4, SK_F4 }, { KEY_F4, SK_F4 },
{ KEY_F5, SK_F5 }, { KEY_F5, SK_F5 },
{ KEY_F6, SK_F6 }, { KEY_F6, SK_F6 },
{ KEY_F7, SK_F7 }, { KEY_F7, SK_F7 },
{ KEY_F8, SK_F8 }, { KEY_F8, SK_F8 },
{ KEY_F9, SK_F9 }, { KEY_F9, SK_F9 },
{ KEY_F10, SK_F10 }, { KEY_F10, SK_F10 },
{ KEY_NUMLOCK, SK_NUMLOCK }, { KEY_NUMLOCK, SK_NUMLOCK },
{ KEY_SCROLLLOCK, SK_SCROLLOCK }, { KEY_SCROLLLOCK, SK_SCROLLOCK },
{ KEY_KP7, SK_KP7 }, { KEY_KP7, SK_KP7 },
{ KEY_KP8, SK_KP8 }, { KEY_KP8, SK_KP8 },
{ KEY_KP9, SK_KP9 }, { KEY_KP9, SK_KP9 },
{ KEY_KPMINUS, SK_KP_MINUS }, { KEY_KPMINUS, SK_KP_MINUS },
{ KEY_KP4, SK_KP4 }, { KEY_KP4, SK_KP4 },
{ KEY_KP5, SK_KP5 }, { KEY_KP5, SK_KP5 },
{ KEY_KP6, SK_KP6 }, { KEY_KP6, SK_KP6 },
{ KEY_KPPLUS, SK_KP_PLUS }, { KEY_KPPLUS, SK_KP_PLUS },
{ KEY_KP1, SK_KP1 }, { KEY_KP1, SK_KP1 },
{ KEY_KP2, SK_KP2 }, { KEY_KP2, SK_KP2 },
{ KEY_KP3, SK_KP3 }, { KEY_KP3, SK_KP3 },
{ KEY_KP0, SK_KP0 }, { KEY_KP0, SK_KP0 },
{ KEY_KPDOT, SK_KP_PERIOD }, { KEY_KPDOT, SK_KP_PERIOD },
{ KEY_F11, SK_F11 }, { KEY_F11, SK_F11 },
{ KEY_F12, SK_F12 }, { KEY_F12, SK_F12 },
{ KEY_KPENTER, SK_KP_ENTER }, { KEY_KPENTER, SK_KP_ENTER },
{ KEY_RIGHTCTRL, SK_RCTRL }, { KEY_RIGHTCTRL, SK_RCTRL },
{ KEY_KPSLASH, SK_KP_DIVIDE }, { KEY_KPSLASH, SK_KP_DIVIDE },
{ KEY_SYSRQ, SK_PRINT }, { KEY_SYSRQ, SK_PRINT },
{ KEY_RIGHTALT, SK_RALT }, { KEY_RIGHTALT, SK_RALT },
{ KEY_HOME, SK_HOME }, { KEY_HOME, SK_HOME },
{ KEY_UP, SK_UP }, { KEY_UP, SK_UP },
{ KEY_PAGEUP, SK_PAGEUP }, { KEY_PAGEUP, SK_PAGEUP },
{ KEY_LEFT, SK_LEFT }, { KEY_LEFT, SK_LEFT },
{ KEY_RIGHT, SK_RIGHT }, { KEY_RIGHT, SK_RIGHT },
{ KEY_END, SK_END }, { KEY_END, SK_END },
{ KEY_DOWN, SK_DOWN }, { KEY_DOWN, SK_DOWN },
{ KEY_PAGEDOWN, SK_PAGEDOWN }, { KEY_PAGEDOWN, SK_PAGEDOWN },
{ KEY_INSERT, SK_INSERT }, { KEY_INSERT, SK_INSERT },
{ KEY_DELETE, SK_DELETE }, { KEY_DELETE, SK_DELETE },
{ KEY_PAUSE, SK_PAUSE }, { KEY_PAUSE, SK_PAUSE },
}; };
static void init_lut(void) static void init_lut(void)
{ {
memset(keysym_lut, 0, sizeof(keysym_lut)); memset(keysym_lut, 0, sizeof(keysym_lut));
for (unsigned i = 0; i < sizeof(lut_binds) / sizeof(lut_binds[0]); i++) for (unsigned i = 0; i < sizeof(lut_binds) / sizeof(lut_binds[0]); i++)
keysym_lut[lut_binds[i].sk] = lut_binds[i].x; keysym_lut[lut_binds[i].sk] = lut_binds[i].x;
} }
static void linuxraw_resetKbmd() static void linuxraw_resetKbmd()
{ {
if (oldKbmd != 0xFFFF) if (oldKbmd != 0xFFFF)
{ {
ioctl(0, KDSKBMODE, oldKbmd); ioctl(0, KDSKBMODE, oldKbmd);
tcsetattr(0, TCSAFLUSH, &oldTerm); tcsetattr(0, TCSAFLUSH, &oldTerm);
oldKbmd = 0xFFFF; oldKbmd = 0xFFFF;
} }
} }
static void linuxraw_exitGracefully(int sig) static void linuxraw_exitGracefully(int sig)
{ {
linuxraw_resetKbmd(); linuxraw_resetKbmd();
kill(getpid(), sig); kill(getpid(), sig);
} }
static void *linuxraw_input_init(void) static void *linuxraw_input_init(void)
{ {
// only work on terminals // only work on terminals
if (!isatty(0)) if (!isatty(0))
return NULL; return NULL;
linuxraw_input_t *linuxraw = (linuxraw_input_t*)calloc(1, sizeof(*linuxraw)); linuxraw_input_t *linuxraw = (linuxraw_input_t*)calloc(1, sizeof(*linuxraw));
if (!linuxraw) if (!linuxraw)
return NULL; return NULL;
if (oldKbmd == 0xFFFF) if (oldKbmd == 0xFFFF)
{ {
tcgetattr(0, &oldTerm); tcgetattr(0, &oldTerm);
newTerm = oldTerm; newTerm = oldTerm;
newTerm.c_lflag &= ~(ECHO | ICANON | ISIG); newTerm.c_lflag &= ~(ECHO | ICANON | ISIG);
newTerm.c_iflag &= ~(ISTRIP | IGNCR | ICRNL | INLCR | IXOFF | IXON); newTerm.c_iflag &= ~(ISTRIP | IGNCR | ICRNL | INLCR | IXOFF | IXON);
newTerm.c_cc[VMIN] = 0; newTerm.c_cc[VMIN] = 0;
newTerm.c_cc[VTIME] = 0; newTerm.c_cc[VTIME] = 0;
if (ioctl(0, KDGKBMODE, &oldKbmd) != 0) if (ioctl(0, KDGKBMODE, &oldKbmd) != 0)
return NULL; return NULL;
} }
tcsetattr(0, TCSAFLUSH, &newTerm); tcsetattr(0, TCSAFLUSH, &newTerm);
if (ioctl(0, KDSKBMODE, K_MEDIUMRAW) != 0) if (ioctl(0, KDSKBMODE, K_MEDIUMRAW) != 0)
{ {
linuxraw_resetKbmd(); linuxraw_resetKbmd();
return NULL; return NULL;
} }
struct sigaction sa; struct sigaction sa;
sa.sa_handler = linuxraw_exitGracefully; sa.sa_handler = linuxraw_exitGracefully;
sa.sa_flags = SA_RESTART | SA_RESETHAND; sa.sa_flags = SA_RESTART | SA_RESETHAND;
sigemptyset(&sa.sa_mask); sigemptyset(&sa.sa_mask);
// trap some standard termination codes so we can restore the keyboard before we lose control // trap some standard termination codes so we can restore the keyboard before we lose control
sigaction(SIGABRT, &sa, NULL); sigaction(SIGABRT, &sa, NULL);
sigaction(SIGBUS, &sa, NULL); sigaction(SIGBUS, &sa, NULL);
sigaction(SIGFPE, &sa, NULL); sigaction(SIGFPE, &sa, NULL);
sigaction(SIGILL, &sa, NULL); sigaction(SIGILL, &sa, NULL);
sigaction(SIGQUIT, &sa, NULL); sigaction(SIGQUIT, &sa, NULL);
sigaction(SIGSEGV, &sa, NULL); sigaction(SIGSEGV, &sa, NULL);
atexit(linuxraw_resetKbmd); atexit(linuxraw_resetKbmd);
linuxraw->sdl = (sdl_input_t*)input_sdl.init(); linuxraw->sdl = (sdl_input_t*)input_sdl.init();
if (!linuxraw->sdl) if (!linuxraw->sdl)
{ {
linuxraw_resetKbmd(); linuxraw_resetKbmd();
free(linuxraw); free(linuxraw);
return NULL; return NULL;
} }
init_lut(); init_lut();
linuxraw->sdl->use_keyboard = false; linuxraw->sdl->use_keyboard = false;
return linuxraw; return linuxraw;
} }
static bool linuxraw_key_pressed(linuxraw_input_t *linuxraw, int key) static bool linuxraw_key_pressed(linuxraw_input_t *linuxraw, int key)
{ {
return linuxraw->state[keysym_lut[key]]; return linuxraw->state[keysym_lut[key]];
} }
static bool linuxraw_is_pressed(linuxraw_input_t *linuxraw, const struct snes_keybind *binds, unsigned id) static bool linuxraw_is_pressed(linuxraw_input_t *linuxraw, const struct snes_keybind *binds, unsigned id)
{ {
if (id < RARCH_BIND_LIST_END) if (id < RARCH_BIND_LIST_END)
{ {
const struct snes_keybind *bind = &binds[id]; const struct snes_keybind *bind = &binds[id];
return bind->valid && linuxraw_key_pressed(linuxraw, binds[id].key); return bind->valid && linuxraw_key_pressed(linuxraw, binds[id].key);
} }
else else
return false; return false;
} }
static bool linuxraw_bind_button_pressed(void *data, int key) static bool linuxraw_bind_button_pressed(void *data, int key)
{ {
linuxraw_input_t *linuxraw = (linuxraw_input_t*)data; linuxraw_input_t *linuxraw = (linuxraw_input_t*)data;
return linuxraw_is_pressed(linuxraw, g_settings.input.binds[0], key) || return linuxraw_is_pressed(linuxraw, g_settings.input.binds[0], key) ||
input_sdl.key_pressed(linuxraw->sdl, key); input_sdl.key_pressed(linuxraw->sdl, key);
} }
static int16_t linuxraw_input_state(void *data, const struct snes_keybind **binds, unsigned port, unsigned device, unsigned index, unsigned id) static int16_t linuxraw_input_state(void *data, const struct snes_keybind **binds, unsigned port, unsigned device, unsigned index, unsigned id)
{ {
linuxraw_input_t *linuxraw = (linuxraw_input_t*)data; linuxraw_input_t *linuxraw = (linuxraw_input_t*)data;
switch (device) switch (device)
{ {
case RETRO_DEVICE_JOYPAD: case RETRO_DEVICE_JOYPAD:
return linuxraw_is_pressed(linuxraw, binds[port], id) || return linuxraw_is_pressed(linuxraw, binds[port], id) ||
input_sdl.input_state(linuxraw->sdl, binds, port, device, index, id); input_sdl.input_state(linuxraw->sdl, binds, port, device, index, id);
default: default:
return 0; return 0;
} }
} }
static void linuxraw_input_free(void *data) static void linuxraw_input_free(void *data)
{ {
linuxraw_input_t *linuxraw = (linuxraw_input_t*)data; linuxraw_input_t *linuxraw = (linuxraw_input_t*)data;
input_sdl.free(linuxraw->sdl); input_sdl.free(linuxraw->sdl);
linuxraw_resetKbmd(); linuxraw_resetKbmd();
free(data); free(data);
} }
static void linuxraw_input_poll(void *data) static void linuxraw_input_poll(void *data)
{ {
linuxraw_input_t *linuxraw = (linuxraw_input_t*)data; linuxraw_input_t *linuxraw = (linuxraw_input_t*)data;
uint8_t c; uint8_t c;
uint16_t t; uint16_t t;
while (read(0, &c, 1)) while (read(0, &c, 1) > 0)
{ {
bool pressed = !(c & 0x80); bool pressed = !(c & 0x80);
c &= ~0x80; c &= ~0x80;
// ignore extended scancodes // ignore extended scancodes
if (!c) if (!c)
read(0, &t, 2); read(0, &t, 2);
else
linuxraw->state[c] = pressed; linuxraw->state[c] = pressed;
} }
input_sdl.poll(linuxraw->sdl); if (linuxraw->state[KEY_C] && (linuxraw->state[KEY_LEFTCTRL] || linuxraw->state[KEY_RIGHTCTRL]))
} kill(getpid(), SIGINT);
const input_driver_t input_linuxraw = { input_sdl.poll(linuxraw->sdl);
linuxraw_input_init, }
linuxraw_input_poll,
linuxraw_input_state, const input_driver_t input_linuxraw = {
linuxraw_bind_button_pressed, linuxraw_input_init,
linuxraw_input_free, linuxraw_input_poll,
"linuxraw" linuxraw_input_state,
}; linuxraw_bind_button_pressed,
linuxraw_input_free,
"linuxraw"
};

View File

@ -14,12 +14,12 @@
* If not, see <http://www.gnu.org/licenses/>. * If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "../general.h"
#include "rarch_sdl_input.h"
#ifndef _LINUXRAW_INPUT_H #ifndef _LINUXRAW_INPUT_H
#define _LINUXRAW_INPUT_H #define _LINUXRAW_INPUT_H
#include "../general.h"
#include "rarch_sdl_input.h"
typedef struct linuxraw_input typedef struct linuxraw_input
{ {
sdl_input_t *sdl; sdl_input_t *sdl;