mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-27 21:27:12 +00:00
b4b81bd740
input_common.c
181 lines
5.0 KiB
C
181 lines
5.0 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
|
*
|
|
* 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.
|
|
*
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "input_joypad.h"
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
|
|
#include "../general.h"
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "../config.h"
|
|
#endif
|
|
|
|
const char *input_joypad_name(const rarch_joypad_driver_t *drv,
|
|
unsigned joypad)
|
|
{
|
|
if (!drv)
|
|
return NULL;
|
|
return drv->name(joypad);
|
|
}
|
|
|
|
bool input_joypad_set_rumble(const rarch_joypad_driver_t *drv,
|
|
unsigned port, enum retro_rumble_effect effect, uint16_t strength)
|
|
{
|
|
unsigned joy_idx = g_settings.input.joypad_map[port];
|
|
|
|
if (!drv || !drv->set_rumble)
|
|
return false;
|
|
|
|
if (joy_idx >= MAX_USERS)
|
|
return false;
|
|
|
|
return drv->set_rumble(joy_idx, effect, strength);
|
|
}
|
|
|
|
static bool input_joypad_is_pressed(
|
|
const rarch_joypad_driver_t *drv,
|
|
unsigned port,
|
|
const struct retro_keybind *binds,
|
|
unsigned key)
|
|
{
|
|
const struct retro_keybind *auto_binds;
|
|
float scaled_axis;
|
|
int16_t axis;
|
|
uint32_t joyaxis;
|
|
uint64_t joykey;
|
|
unsigned joy_idx = g_settings.input.joypad_map[port];
|
|
|
|
if (joy_idx >= MAX_USERS)
|
|
return false;
|
|
|
|
/* Auto-binds are per joypad, not per user. */
|
|
auto_binds = g_settings.input.autoconf_binds[joy_idx];
|
|
|
|
joykey = binds[key].joykey;
|
|
if (joykey == NO_BTN)
|
|
joykey = auto_binds[key].joykey;
|
|
|
|
if (drv->button(joy_idx, (uint16_t)joykey))
|
|
return true;
|
|
|
|
joyaxis = binds[key].joyaxis;
|
|
if (joyaxis == AXIS_NONE)
|
|
joyaxis = auto_binds[key].joyaxis;
|
|
|
|
axis = drv->axis(joy_idx, joyaxis);
|
|
scaled_axis = (float)abs(axis) / 0x8000;
|
|
return scaled_axis > g_settings.input.axis_threshold;
|
|
}
|
|
|
|
bool input_joypad_pressed(const rarch_joypad_driver_t *drv,
|
|
unsigned port, const struct retro_keybind *binds, unsigned key)
|
|
{
|
|
if (!drv)
|
|
return false;
|
|
|
|
if (!binds[key].valid)
|
|
return false;
|
|
|
|
if (input_joypad_is_pressed(drv, port, binds, key))
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
int16_t input_joypad_analog(const rarch_joypad_driver_t *drv,
|
|
unsigned port, unsigned idx, unsigned ident,
|
|
const struct retro_keybind *binds)
|
|
{
|
|
uint32_t axis_minus, axis_plus;
|
|
uint64_t key_minus, key_plus;
|
|
int16_t pressed_minus, pressed_plus, res;
|
|
unsigned ident_minus = 0, ident_plus = 0;
|
|
int16_t digital_left = 0, digital_right = 0;
|
|
const struct retro_keybind *auto_binds = NULL;
|
|
const struct retro_keybind *bind_minus = NULL;
|
|
const struct retro_keybind *bind_plus = NULL;
|
|
unsigned joy_idx = g_settings.input.joypad_map[port];
|
|
|
|
if (!drv)
|
|
return 0;
|
|
|
|
if (joy_idx >= MAX_USERS)
|
|
return 0;
|
|
|
|
/* Auto-binds are per joypad, not per user. */
|
|
auto_binds = g_settings.input.autoconf_binds[joy_idx];
|
|
|
|
input_conv_analog_id_to_bind_id(idx, ident, &ident_minus, &ident_plus);
|
|
|
|
bind_minus = &binds[ident_minus];
|
|
bind_plus = &binds[ident_plus];
|
|
if (!bind_minus->valid || !bind_plus->valid)
|
|
return 0;
|
|
|
|
axis_minus = bind_minus->joyaxis;
|
|
axis_plus = bind_plus->joyaxis;
|
|
if (axis_minus == AXIS_NONE)
|
|
axis_minus = auto_binds[ident_minus].joyaxis;
|
|
if (axis_plus == AXIS_NONE)
|
|
axis_plus = auto_binds[ident_plus].joyaxis;
|
|
|
|
pressed_minus = abs(drv->axis(joy_idx, axis_minus));
|
|
pressed_plus = abs(drv->axis(joy_idx, axis_plus));
|
|
res = pressed_plus - pressed_minus;
|
|
|
|
if (res != 0)
|
|
return res;
|
|
|
|
key_minus = bind_minus->joykey;
|
|
key_plus = bind_plus->joykey;
|
|
if (key_minus == NO_BTN)
|
|
key_minus = auto_binds[ident_minus].joykey;
|
|
if (key_plus == NO_BTN)
|
|
key_plus = auto_binds[ident_plus].joykey;
|
|
|
|
if (drv->button(joy_idx, (uint16_t)key_minus))
|
|
digital_left = -0x7fff;
|
|
if (drv->button(joy_idx, (uint16_t)key_plus))
|
|
digital_right = 0x7fff;
|
|
return digital_right + digital_left;
|
|
}
|
|
|
|
int16_t input_joypad_axis_raw(const rarch_joypad_driver_t *drv,
|
|
unsigned joypad, unsigned axis)
|
|
{
|
|
if (!drv)
|
|
return 0;
|
|
return drv->axis(joypad, AXIS_POS(axis)) +
|
|
drv->axis(joypad, AXIS_NEG(axis));
|
|
}
|
|
|
|
bool input_joypad_button_raw(const rarch_joypad_driver_t *drv,
|
|
unsigned joypad, unsigned button)
|
|
{
|
|
if (!drv)
|
|
return false;
|
|
return drv->button(joypad, button);
|
|
}
|
|
|
|
bool input_joypad_hat_raw(const rarch_joypad_driver_t *drv,
|
|
unsigned joypad, unsigned hat_dir, unsigned hat)
|
|
{
|
|
if (!drv)
|
|
return false;
|
|
return drv->button(joypad, HAT_MAP(hat, hat_dir));
|
|
}
|