RetroArch/input/sdl_input.c

291 lines
7.8 KiB
C
Raw Normal View History

2012-04-21 21:13:50 +00:00
/* RetroArch - A frontend for libretro.
2013-01-01 00:37:37 +00:00
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
*
2012-04-21 21:13:50 +00:00
* 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-
* ation, either version 3 of the License, or (at your option) any later version.
*
2012-04-21 21:13:50 +00:00
* 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
* PURPOSE. See the GNU General Public License for more details.
*
2012-04-21 21:31:57 +00:00
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
2011-12-24 23:59:46 +00:00
#include "../driver.h"
2012-09-28 20:38:42 +00:00
#include "SDL.h"
#include "../gfx/gfx_context.h"
2011-12-24 12:46:12 +00:00
#include "../boolean.h"
2011-12-24 23:59:46 +00:00
#include "../general.h"
#include <stdint.h>
#include <stdlib.h>
2012-04-07 09:55:37 +00:00
#include "../libretro.h"
2012-09-22 07:57:04 +00:00
#include "input_common.h"
2012-09-28 20:38:42 +00:00
typedef struct sdl_input
{
const rarch_joypad_driver_t *joypad;
int mouse_x, mouse_y;
int mouse_abs_x, mouse_abs_y;
int mouse_l, mouse_r, mouse_m;
2012-09-28 20:38:42 +00:00
} sdl_input_t;
2011-11-02 18:31:36 +00:00
static void *sdl_input_init(void)
{
input_init_keyboard_lut(rarch_key_map_sdl);
2011-12-24 12:46:12 +00:00
sdl_input_t *sdl = (sdl_input_t*)calloc(1, sizeof(*sdl));
if (!sdl)
return NULL;
2013-05-04 08:22:31 +00:00
sdl->joypad = input_joypad_init_driver(g_settings.input.joypad_driver);
return sdl;
}
2011-01-08 21:15:02 +00:00
static bool sdl_key_pressed(int key)
{
2012-09-15 13:17:34 +00:00
if (key >= RETROK_LAST)
return false;
int sym = input_translate_rk_to_keysym((enum retro_key)key);
2012-09-15 13:17:34 +00:00
int num_keys;
Uint8 *keymap = SDL_GetKeyState(&num_keys);
if (sym < 0 || sym >= num_keys)
2012-09-15 13:17:34 +00:00
return false;
return keymap[sym];
}
2013-04-26 12:36:36 +00:00
static bool sdl_is_pressed(sdl_input_t *sdl, unsigned port_num, const struct retro_keybind *binds, unsigned key)
2011-01-08 21:15:02 +00:00
{
2013-04-26 12:36:36 +00:00
if (sdl_key_pressed(binds[key].key))
2011-01-08 21:15:02 +00:00
return true;
2013-04-26 12:36:36 +00:00
return input_joypad_pressed(sdl->joypad, port_num, binds, key);
2011-01-08 21:15:02 +00:00
}
static int16_t sdl_analog_pressed(sdl_input_t *sdl, const struct retro_keybind *binds,
unsigned index, unsigned id)
{
unsigned id_minus = 0;
unsigned id_plus = 0;
input_conv_analog_id_to_bind_id(index, id, &id_minus, &id_plus);
int16_t pressed_minus = sdl_key_pressed(binds[id_minus].key) ? -0x7fff : 0;
int16_t pressed_plus = sdl_key_pressed(binds[id_plus].key) ? 0x7fff : 0;
return pressed_plus + pressed_minus;
}
static bool sdl_bind_button_pressed(void *data, int key)
{
2012-07-07 15:19:32 +00:00
const struct retro_keybind *binds = g_settings.input.binds[0];
2012-04-21 21:25:32 +00:00
if (key >= 0 && key < RARCH_BIND_LIST_END)
2013-04-26 12:36:36 +00:00
return sdl_is_pressed((sdl_input_t*)data, 0, binds, key);
2012-01-30 00:45:18 +00:00
else
return false;
}
2012-07-07 15:19:32 +00:00
static int16_t sdl_joypad_device_state(sdl_input_t *sdl, const struct retro_keybind **binds_,
2012-01-30 00:45:18 +00:00
unsigned port_num, unsigned id)
{
2012-07-07 15:19:32 +00:00
const struct retro_keybind *binds = binds_[port_num];
2012-04-21 21:25:32 +00:00
if (id < RARCH_BIND_LIST_END)
2013-04-26 12:36:36 +00:00
return binds[id].valid && sdl_is_pressed(sdl, port_num, binds, id);
2012-01-30 00:45:18 +00:00
else
return 0;
}
2012-09-28 20:38:42 +00:00
static int16_t sdl_analog_device_state(sdl_input_t *sdl, const struct retro_keybind **binds,
2012-06-28 15:57:50 +00:00
unsigned port_num, unsigned index, unsigned id)
{
int16_t ret = sdl_analog_pressed(sdl, binds[port_num], index, id);
if (!ret)
ret = input_joypad_analog(sdl->joypad, port_num, index, id, binds[port_num]);
return ret;
2012-06-28 15:57:50 +00:00
}
static int16_t sdl_keyboard_device_state(sdl_input_t *sdl, unsigned id)
{
2012-09-28 20:38:42 +00:00
return sdl_key_pressed(id);
}
static int16_t sdl_mouse_device_state(sdl_input_t *sdl, unsigned id)
{
switch (id)
{
2012-04-07 09:55:37 +00:00
case RETRO_DEVICE_ID_MOUSE_LEFT:
2011-01-10 13:29:00 +00:00
return sdl->mouse_l;
2012-04-07 09:55:37 +00:00
case RETRO_DEVICE_ID_MOUSE_RIGHT:
2011-01-10 13:29:00 +00:00
return sdl->mouse_r;
2012-04-07 09:55:37 +00:00
case RETRO_DEVICE_ID_MOUSE_X:
2011-01-10 13:29:00 +00:00
return sdl->mouse_x;
2012-04-07 09:55:37 +00:00
case RETRO_DEVICE_ID_MOUSE_Y:
2011-01-10 13:29:00 +00:00
return sdl->mouse_y;
default:
2011-01-10 13:29:00 +00:00
return 0;
}
}
2013-01-11 15:23:04 +00:00
static int16_t sdl_pointer_device_state(sdl_input_t *sdl, unsigned index, unsigned id, bool screen)
{
2012-12-27 11:26:13 +00:00
if (index != 0)
return 0;
2013-01-11 15:23:04 +00:00
int16_t res_x = 0, res_y = 0, res_screen_x = 0, res_screen_y = 0;
bool valid = input_translate_coord_viewport(sdl->mouse_abs_x, sdl->mouse_abs_y,
&res_x, &res_y, &res_screen_x, &res_screen_y);
if (!valid)
return 0;
2013-01-11 15:23:04 +00:00
if (screen)
{
res_x = res_screen_x;
res_y = res_screen_y;
}
2013-04-20 07:01:38 +00:00
bool inside = (res_x >= -0x7fff) && (res_y >= -0x7fff);
if (!inside)
return 0;
switch (id)
{
case RETRO_DEVICE_ID_POINTER_X:
return res_x;
case RETRO_DEVICE_ID_POINTER_Y:
return res_y;
case RETRO_DEVICE_ID_POINTER_PRESSED:
return sdl->mouse_l;
default:
return 0;
}
}
2012-04-07 09:55:37 +00:00
static int16_t sdl_lightgun_device_state(sdl_input_t *sdl, unsigned id)
{
switch (id)
{
2012-04-07 09:55:37 +00:00
case RETRO_DEVICE_ID_LIGHTGUN_X:
return sdl->mouse_x;
2012-04-07 09:55:37 +00:00
case RETRO_DEVICE_ID_LIGHTGUN_Y:
return sdl->mouse_y;
2012-04-07 09:55:37 +00:00
case RETRO_DEVICE_ID_LIGHTGUN_TRIGGER:
return sdl->mouse_l;
2012-04-07 09:55:37 +00:00
case RETRO_DEVICE_ID_LIGHTGUN_CURSOR:
return sdl->mouse_m;
2012-04-07 09:55:37 +00:00
case RETRO_DEVICE_ID_LIGHTGUN_TURBO:
return sdl->mouse_r;
2012-04-15 15:08:43 +00:00
case RETRO_DEVICE_ID_LIGHTGUN_START:
return sdl->mouse_m && sdl->mouse_r;
case RETRO_DEVICE_ID_LIGHTGUN_PAUSE:
return sdl->mouse_m && sdl->mouse_l;
default:
return 0;
}
}
2012-07-07 15:19:32 +00:00
static int16_t sdl_input_state(void *data_, const struct retro_keybind **binds, unsigned port, unsigned device, unsigned index, unsigned id)
{
2011-12-24 12:46:12 +00:00
sdl_input_t *data = (sdl_input_t*)data_;
switch (device)
{
2012-04-07 09:55:37 +00:00
case RETRO_DEVICE_JOYPAD:
return sdl_joypad_device_state(data, binds, port, id);
2012-06-28 15:57:50 +00:00
case RETRO_DEVICE_ANALOG:
return sdl_analog_device_state(data, binds, port, index, id);
2012-04-07 09:55:37 +00:00
case RETRO_DEVICE_MOUSE:
return sdl_mouse_device_state(data, id);
case RETRO_DEVICE_POINTER:
2013-01-11 15:23:04 +00:00
case RARCH_DEVICE_POINTER_SCREEN:
return sdl_pointer_device_state(data, index, id, device == RARCH_DEVICE_POINTER_SCREEN);
case RETRO_DEVICE_KEYBOARD:
return sdl_keyboard_device_state(data, id);
2012-04-07 09:55:37 +00:00
case RETRO_DEVICE_LIGHTGUN:
return sdl_lightgun_device_state(data, id);
default:
return 0;
}
}
static void sdl_input_free(void *data)
{
2012-09-28 20:38:42 +00:00
if (!data)
return;
// Flush out all pending events.
SDL_Event event;
while (SDL_PollEvent(&event));
sdl_input_t *sdl = (sdl_input_t*)data;
if (sdl->joypad)
sdl->joypad->destroy();
free(data);
}
static bool sdl_set_rumble(void *data, unsigned port, enum retro_rumble_effect effect, uint16_t strength)
{
sdl_input_t *sdl = (sdl_input_t*)data;
return input_joypad_set_rumble(sdl->joypad, port, effect, strength);
}
static const rarch_joypad_driver_t *sdl_get_joypad_driver(void *data)
{
sdl_input_t *sdl = (sdl_input_t*)data;
return sdl->joypad;
}
2011-01-10 13:29:00 +00:00
static void sdl_poll_mouse(sdl_input_t *sdl)
{
Uint8 btn = SDL_GetRelativeMouseState(&sdl->mouse_x, &sdl->mouse_y);
SDL_GetMouseState(&sdl->mouse_abs_x, &sdl->mouse_abs_y);
sdl->mouse_l = SDL_BUTTON(SDL_BUTTON_LEFT) & btn ? 1 : 0;
sdl->mouse_r = SDL_BUTTON(SDL_BUTTON_RIGHT) & btn ? 1 : 0;
sdl->mouse_m = SDL_BUTTON(SDL_BUTTON_MIDDLE) & btn ? 1 : 0;
2011-01-10 13:29:00 +00:00
}
static void sdl_input_poll(void *data)
{
SDL_PumpEvents();
2011-12-24 12:46:12 +00:00
sdl_input_t *sdl = (sdl_input_t*)data;
2011-06-10 16:01:44 +00:00
2012-09-28 22:26:21 +00:00
input_joypad_poll(sdl->joypad);
sdl_poll_mouse(sdl);
}
static uint64_t sdl_get_capabilities(void *data)
{
uint64_t caps = 0;
caps |= (1 << RETRO_DEVICE_JOYPAD);
caps |= (1 << RETRO_DEVICE_MOUSE);
caps |= (1 << RETRO_DEVICE_KEYBOARD);
caps |= (1 << RETRO_DEVICE_LIGHTGUN);
caps |= (1 << RETRO_DEVICE_POINTER);
caps |= (1 << RETRO_DEVICE_ANALOG);
return caps;
}
const input_driver_t input_sdl = {
2011-12-24 12:46:12 +00:00
sdl_input_init,
sdl_input_poll,
sdl_input_state,
sdl_bind_button_pressed,
sdl_input_free,
NULL,
NULL,
sdl_get_capabilities,
2012-09-28 20:38:42 +00:00
"sdl",
NULL,
sdl_set_rumble,
sdl_get_joypad_driver,
};