taisei/src/gamepad.c

828 lines
21 KiB
C
Raw Normal View History

2012-08-15 02:41:21 +02:00
/*
* This software is licensed under the terms of the MIT-License
* See COPYING for further information.
2012-08-15 02:41:21 +02:00
* ---
2018-01-04 18:14:31 +01:00
* Copyright (c) 2011-2018, Lukas Weber <laochailan@web.de>.
* Copyright (c) 2012-2018, Andrei Alexeyev <akari@alienslab.net>.
2012-08-15 02:41:21 +02:00
*/
#include "taisei.h"
2012-08-15 02:41:21 +02:00
#include "gamepad.h"
#include "config.h"
#include "events.h"
2012-08-15 16:36:39 +02:00
#include "global.h"
2012-08-15 02:41:21 +02:00
typedef struct GamepadAxisState {
int16_t raw;
int16_t analog;
int8_t digital;
} GamepadAxisState;
2012-08-15 02:41:21 +02:00
static struct {
bool initialized;
int current_devnum;
SDL_GameController *device;
SDL_JoystickID instance;
GamepadAxisState *axes;
struct {
int *id_map;
size_t count;
} devices;
2012-08-15 02:41:21 +02:00
} gamepad;
static bool gamepad_event_handler(SDL_Event *event, void *arg);
static int gamepad_load_mappings(const char *vpath, int warn_noexist) {
char *repr = vfs_repr(vpath, true);
char *errstr = NULL;
const char *const_errstr = NULL;
SDL_RWops *mappings = vfs_open(vpath, VFS_MODE_READ | VFS_MODE_SEEKABLE);
int num_loaded = -1;
LogLevel loglvl = LOG_WARN;
// Yay for gotos!
if(!mappings) {
if(!warn_noexist) {
VFSInfo vinfo = vfs_query(vpath);
if(!vinfo.error && !vinfo.exists && !vinfo.is_dir) {
loglvl = LOG_INFO;
const_errstr = errstr = strfmt("Custom mappings file '%s' does not exist (this is ok)", repr);
goto cleanup;
}
}
const_errstr = vfs_get_error();
goto cleanup;
}
if((num_loaded = SDL_GameControllerAddMappingsFromRW(mappings, true)) < 0) {
const_errstr = SDL_GetError();
}
cleanup:
if(const_errstr) {
log_custom(loglvl, "Couldn't load mappings: %s", const_errstr);
} else if(num_loaded >= 0) {
log_info("Loaded %i mappings from '%s'", num_loaded, repr);
}
free(repr);
free(errstr);
return num_loaded;
}
static void gamepad_load_all_mappings(void) {
gamepad_load_mappings("res/gamecontrollerdb.txt", true);
gamepad_load_mappings("storage/gamecontrollerdb.txt", false);
}
static const char* gamepad_device_name_unmapped(int idx) {
const char *name = SDL_GameControllerNameForIndex(idx);
if(!strcasecmp(name, "Xinput Controller")) {
// HACK: let's try to get a more descriptive name...
name = SDL_JoystickNameForIndex(idx);
}
return name;
}
const char* gamepad_device_name(int num) {
if(num < 0 || num >= gamepad.devices.count) {
return NULL;
}
return gamepad_device_name_unmapped(gamepad.devices.id_map[num]);
}
static bool gamepad_update_device_list(void) {
int cnt = SDL_NumJoysticks();
log_info("Updating gamepad devices list");
free(gamepad.devices.id_map);
memset(&gamepad.devices, 0, sizeof(gamepad.devices));
if(!cnt) {
log_info("No joysticks attached");
return false;
}
int *idmap_ptr = gamepad.devices.id_map = malloc(sizeof(int) * cnt);
for(int i = 0; i < cnt; ++i) {
SDL_JoystickGUID guid = SDL_JoystickGetDeviceGUID(i);
char guid_str[33] = { 0 };
SDL_JoystickGetGUIDString(guid, guid_str, sizeof(guid_str));
if(!*guid_str) {
log_warn("Failed to read GUID of joystick at index %i: %s", i, SDL_GetError());
continue;
}
if(!SDL_IsGameController(i)) {
log_warn("Joystick at index %i (name: \"%s\"; guid: %s) is not recognized as a game controller by SDL. "
"Most likely it just doesn't have a mapping. See https://git.io/vdvdV for solutions",
i, SDL_JoystickNameForIndex(i), guid_str);
continue;
}
*idmap_ptr = i;
int num = (int)(uintmax_t)(idmap_ptr - gamepad.devices.id_map);
++idmap_ptr;
gamepad.devices.count = (uintptr_t)(idmap_ptr - gamepad.devices.id_map);
log_info("Found device '%s' (#%i): %s", guid_str, num, gamepad_device_name_unmapped(i));
}
if(!gamepad.devices.count) {
log_info("No usable devices");
return false;
}
return true;
}
static int gamepad_find_device_by_guid(const char *guid_str, char *guid_out, size_t guid_out_sz, int *out_localdevnum) {
for(int i = 0; i < gamepad.devices.count; ++i) {
*guid_out = 0;
SDL_JoystickGUID guid = SDL_JoystickGetDeviceGUID(gamepad.devices.id_map[i]);
SDL_JoystickGetGUIDString(guid, guid_out, guid_out_sz);
if(!strcasecmp(guid_str, guid_out) || !strcasecmp(guid_str, "default")) {
*out_localdevnum = i;
return gamepad.devices.id_map[i];
}
}
*out_localdevnum = -1;
return -1;
}
static int gamepad_find_device(char *guid_out, size_t guid_out_sz, int *out_localdevnum) {
int dev;
const char *want_guid = config_get_str(CONFIG_GAMEPAD_DEVICE);
dev = gamepad_find_device_by_guid(want_guid, guid_out, guid_out_sz, out_localdevnum);
if(dev >= 0) {
return dev;
}
if(strcasecmp(want_guid, "default")) {
log_warn("Requested device '%s' is not available, trying first usable", want_guid);
dev = gamepad_find_device_by_guid("default", guid_out, guid_out_sz, out_localdevnum);
if(dev >= 0) {
return dev;
}
}
*out_localdevnum = -1;
strcpy(guid_out, want_guid);
return -1;
}
static void gamepad_cfg_enabled_callback(ConfigIndex idx, ConfigValue v) {
config_set_int(idx, v.i);
if(v.i) {
gamepad_init();
} else {
gamepad_shutdown();
}
}
static void gamepad_setup_cfg_callbacks(void) {
static bool done = false;
if(done) {
return;
}
done = true;
config_set_callback(CONFIG_GAMEPAD_ENABLED, gamepad_cfg_enabled_callback);
}
void gamepad_init(void) {
gamepad_setup_cfg_callbacks();
if(!config_get_int(CONFIG_GAMEPAD_ENABLED) || gamepad.initialized) {
2012-08-16 23:35:48 +02:00
return;
}
if(SDL_InitSubSystem(SDL_INIT_GAMECONTROLLER) < 0) {
Implemented a simple and consistent logging subsystem The goal of this change is mainly to clean up Taisei's codebase and improve its console output. I've been frustrated by files littered with inconsistent printf/fprintf/warnx/errx calls for a long time, and now I actually did something about it. All the above functions are now considered deprecated and result in a compile-time warning when used. Instead, the following macros should be used: log_debug(format, ...) log_info(format, ...) log_warn(format, ...) log_err(format, ...) As you can see, all of them have the same printf-like interface. But they have different functionality and purpose: log_debug is intended for very verbose and specific information. It does nothing in release builds, much like assert(), so don't use expressions with side-effects in its arguments. log_info is for various status updates that are expected during normal operation of the program. log_warn is for non-critical failures or other things that may be worth investigating, but don't inherently render the program non-functional. log_err is for when the only choice is to give up. Like errx, it also terminates the program. Unlike errx, it actually calls abort(), which means the cleanup functions are not ran -- but on the other hand, you get a debuggable backtrace. However, if you're trying to catch programming errors, consider using assert() instead. All of them produce output that contains a timestamp, the log level identifier, the calling function's name, and the formatted message. The newline at the end of the format string is not required -- no, it is actually *prohibited*. The logging system will take care of the line breaks by itself, don't litter the code with that shit. Internally, the logging system is based on the SDL_RWops abstraction, and may have multiple, configurable destinations. This makes it easily extensible. Currently, log_debug and log_info are set to write to stdout, log_warn and log_err to stderr, and all of them also to the file log.txt in the Taisei config directory. Consequently, the nasty freopen hacks we used to make Taisei write to log files on Windows are no longer needed -- which is a very good thing, considering they probably would break if the configdir path contains UTF-8 characters. SDL_RWFromFile does not suffer this limitation. As an added bonus, it's also thread-safe. Note about printf and fprintf: in very few cases, the logging system is not a good substitute for these functions. That is, when you care about writing exactly to stdout/stderr and about exactly how the output looks. However, I insist on keeping the deprecation warnings on them to not tempt anyone to use them for logging/debugging out of habit and/or laziness. For this reason, I've added a tsfprintf function to util.c. It is functionally identical to fprintf, except it returns void. Yes, the name is deliberately ugly. Avoid using it if possible, but if you must, only use it to write to stdout or stderr. Do not write to actual files with it, use SDL_RWops.
2017-03-13 03:51:58 +01:00
log_warn("SDL_InitSubSystem() failed: %s", SDL_GetError());
2012-08-15 02:41:21 +02:00
return;
}
gamepad.initialized = true;
gamepad_load_all_mappings();
if(!gamepad_update_device_list()) {
gamepad_shutdown();
return;
}
char guid[33];
int dev = gamepad_find_device(guid, sizeof(guid), &gamepad.current_devnum);
if(dev < 0) {
log_warn("Device '%s' is not available", guid);
2012-08-15 02:41:21 +02:00
gamepad_shutdown();
return;
}
gamepad.device = SDL_GameControllerOpen(dev);
2012-08-15 02:41:21 +02:00
if(!gamepad.device) {
log_warn("Failed to open device '%s' (#%i): %s", guid, dev, SDL_GetError());
2012-08-15 02:41:21 +02:00
gamepad_shutdown();
return;
}
SDL_Joystick *joy = SDL_GameControllerGetJoystick(gamepad.device);
gamepad.instance = SDL_JoystickInstanceID(joy);
gamepad.axes = calloc(GAMEPAD_AXIS_MAX, sizeof(GamepadAxisState));
2017-02-27 23:58:47 +01:00
log_info("Using device '%s' (#%i): %s", guid, dev, gamepad_device_name(dev));
SDL_GameControllerEventState(SDL_ENABLE);
config_set_str(CONFIG_GAMEPAD_DEVICE, guid);
events_register_handler(&(EventHandler){
.proc = gamepad_event_handler,
.priority = EPRIO_TRANSLATION,
});
2012-08-15 02:41:21 +02:00
}
void gamepad_shutdown(void) {
if(!gamepad.initialized) {
2012-08-17 14:59:06 +02:00
return;
}
log_info("Disabled the gamepad subsystem");
if(gamepad.device) {
SDL_GameControllerClose(gamepad.device);
}
free(gamepad.axes);
free(gamepad.devices.id_map);
2017-02-27 23:58:47 +01:00
SDL_GameControllerEventState(SDL_IGNORE);
SDL_QuitSubSystem(SDL_INIT_GAMECONTROLLER);
memset(&gamepad, 0, sizeof(gamepad));
events_unregister_handler(gamepad_event_handler);
2012-08-15 02:41:21 +02:00
}
void gamepad_restart(void) {
gamepad_shutdown();
gamepad_init();
}
static float gamepad_axis_sens(GamepadAxis id) {
if(id == config_get_int(CONFIG_GAMEPAD_AXIS_LR))
return config_get_float(CONFIG_GAMEPAD_AXIS_LR_SENS);
if(id == config_get_int(CONFIG_GAMEPAD_AXIS_UD))
return config_get_float(CONFIG_GAMEPAD_AXIS_UD_SENS);
return 1.0;
}
static GamepadAxis gamepad_gamekey2axis(KeyIndex key) {
switch(key) {
case KEY_UP: case KEY_DOWN: return config_get_int(CONFIG_GAMEPAD_AXIS_UD);
case KEY_LEFT: case KEY_RIGHT: return config_get_int(CONFIG_GAMEPAD_AXIS_LR);
default: return GAMEPAD_AXIS_INVALID;
}
}
static int gamepad_gamekey2axisval(KeyIndex key) {
switch(key) {
case KEY_UP: return AXISVAL_UP;
case KEY_DOWN: return AXISVAL_DOWN;
case KEY_LEFT: return AXISVAL_LEFT;
case KEY_RIGHT: return AXISVAL_RIGHT;
default: return AXISVAL_NULL;
}
}
static int gamepad_axis2menuevt(GamepadAxis id, int val) {
if(id == GAMEPAD_AXIS_LEFT_X || id == GAMEPAD_AXIS_RIGHT_X) {
return val == AXISVAL_LEFT ? TE_MENU_CURSOR_LEFT : TE_MENU_CURSOR_RIGHT;
}
if(id == GAMEPAD_AXIS_LEFT_Y || id == GAMEPAD_AXIS_RIGHT_Y) {
return val == AXISVAL_UP ? TE_MENU_CURSOR_UP : TE_MENU_CURSOR_DOWN;
}
2012-08-15 14:33:32 +02:00
return -1;
2012-08-15 02:41:21 +02:00
}
static int gamepad_axis2gameevt(GamepadAxis id) {
if(id == config_get_int(CONFIG_GAMEPAD_AXIS_LR)) {
return TE_GAME_AXIS_LR;
}
if(id == config_get_int(CONFIG_GAMEPAD_AXIS_UD)) {
return TE_GAME_AXIS_UD;
}
2012-08-15 16:36:39 +02:00
return -1;
}
static int get_axis_abs_limit(int val) {
if(val < 0) {
return -GAMEPAD_AXIS_MIN_VALUE;
}
return GAMEPAD_AXIS_MAX_VALUE;
}
static int gamepad_axis_process_value_deadzone(int raw) {
int val, vsign;
int limit = get_axis_abs_limit(raw);
float deadzone = clamp(config_get_float(CONFIG_GAMEPAD_AXIS_DEADZONE), 0.01, 0.999);
int minval = clamp(deadzone, 0, 1) * limit;
val = raw;
vsign = sign(val);
val = abs(val);
if(val < minval) {
val = 0;
} else {
val = vsign * clamp((val - minval) / (1.0 - deadzone), 0, limit);
}
return val;
}
static int gamepad_axis_process_value(GamepadAxis id, int raw) {
double sens = gamepad_axis_sens(id);
int sens_sign = sign(sens);
raw = gamepad_axis_process_value_deadzone(raw);
int limit = get_axis_abs_limit(sens_sign * raw);
double x = raw / (double)limit;
int in_sign = sign(x);
x = pow(fabs(x), 1.0 / fabs(sens)) * in_sign * sens_sign;
x = x ? x : 0;
x = clamp(x * limit, GAMEPAD_AXIS_MIN_VALUE, GAMEPAD_AXIS_MAX_VALUE);
return (int)x;
}
int gamepad_axis_value(GamepadAxis id) {
assert(id > GAMEPAD_AXIS_INVALID);
assert(id < GAMEPAD_AXIS_MAX);
return gamepad.axes[id].analog;
}
int gamepad_player_axis_value(GamepadPlrAxis paxis) {
GamepadAxis id;
if(!gamepad.initialized) {
return 0;
}
if(paxis == PLRAXIS_LR) {
id = config_get_int(CONFIG_GAMEPAD_AXIS_LR);
} else if(paxis == PLRAXIS_UD) {
id = config_get_int(CONFIG_GAMEPAD_AXIS_UD);
} else {
return INT_MAX;
}
return gamepad_axis_value(id);
}
static void gamepad_button(GamepadButton button, int state);
static void gamepad_axis(GamepadAxis id, int raw);
double gamepad_normalize_axis_value(int val) {
if(val < 0) {
return -val / (double)GAMEPAD_AXIS_MIN_VALUE;
} else if(val > 0) {
return val / (double)GAMEPAD_AXIS_MAX_VALUE;
} else {
return 0;
}
}
int gamepad_denormalize_axis_value(double val) {
if(val < 0) {
return -val * GAMEPAD_AXIS_MIN_VALUE;
} else if(val > 0) {
return val * GAMEPAD_AXIS_MAX_VALUE;
} else {
return 0;
}
}
static void gamepad_update_game_axis(GamepadAxis axis, int oldval) {
if(oldval != gamepad.axes[axis].analog) {
int evt = gamepad_axis2gameevt(axis);
if(evt >= 0) {
events_emit(evt, gamepad.axes[axis].analog, NULL, NULL);
}
}
}
static void gamepad_restrict_player_axis_vals(GamepadAxis new_axis, int new_val) {
typedef enum {
UP = (1 << 0),
DOWN = (1 << 1),
RIGHT = (1 << 3),
LEFT = (1 << 2),
} MoveDir;
GamepadAxis axis_x = config_get_int(CONFIG_GAMEPAD_AXIS_LR);
GamepadAxis axis_y = config_get_int(CONFIG_GAMEPAD_AXIS_UD);
int old_x = gamepad.axes[axis_x].analog;
int old_y = gamepad.axes[axis_y].analog;
gamepad.axes[new_axis].analog = new_val;
assert(axis_x > GAMEPAD_AXIS_INVALID && axis_x < GAMEPAD_AXIS_MAX);
assert(axis_y > GAMEPAD_AXIS_INVALID && axis_y < GAMEPAD_AXIS_MAX);
double x = gamepad_normalize_axis_value(gamepad_player_axis_value(PLRAXIS_LR));
double y = gamepad_normalize_axis_value(gamepad_player_axis_value(PLRAXIS_UD));
MoveDir move = 0;
if(x || y) {
int d = (int)rint(atan2(-y, x) / (M_PI/4));
switch(d) {
2018-01-14 04:20:16 +01:00
case 0: move = 0 | RIGHT; break;
case -1: move = UP | RIGHT; break;
case -2: move = UP | 0; break;
case -3: move = UP | LEFT; break;
case -4: case 4: move = 0 | LEFT; break;
case 3: move = DOWN | LEFT; break;
case 2: move = DOWN | 0; break;
case 1: move = DOWN | RIGHT; break;
}
}
gamepad.axes[axis_x].analog = (move & LEFT) ? GAMEPAD_AXIS_MIN_VALUE :
(move & RIGHT) ? GAMEPAD_AXIS_MAX_VALUE : 0;
gamepad.axes[axis_y].analog = (move & DOWN) ? GAMEPAD_AXIS_MIN_VALUE :
(move & UP) ? GAMEPAD_AXIS_MAX_VALUE : 0;
gamepad_update_game_axis(axis_x, old_x);
gamepad_update_game_axis(axis_y, old_y);
}
static void gamepad_axis(GamepadAxis id, int raw) {
int8_t digital = AXISVAL(gamepad_axis_process_value_deadzone(raw));
int16_t analog = gamepad_axis_process_value(id, raw);
if(digital * gamepad.axes[id].digital < 0) {
// axis changed direction without passing the '0' state
// this can be bad for digital input simulation (aka 'restricted mode')
// so we insert a fake 0 event inbetween
gamepad_axis(id, 0);
}
events_emit(TE_GAMEPAD_AXIS, id, (void*)(intptr_t)raw, NULL);
int old_analog = gamepad.axes[id].analog;
gamepad.axes[id].raw = raw;
if(config_get_int(CONFIG_GAMEPAD_AXIS_FREE)) {
gamepad.axes[id].analog = analog;
gamepad_update_game_axis(id, old_analog);
} else if(gamepad_axis2gameevt(id) >= 0) {
gamepad_restrict_player_axis_vals(id, analog);
2012-08-15 16:36:39 +02:00
}
if(digital != AXISVAL_NULL) { // simulate press
if(!gamepad.axes[id].digital) {
gamepad.axes[id].digital = digital;
int evt = gamepad_axis2menuevt(id, digital);
if(evt >= 0) {
events_emit(evt, 0, (void*)(intptr_t)INDEV_GAMEPAD, NULL);
2012-08-15 14:33:32 +02:00
}
GamepadButton btn = gamepad_button_from_axis(id);
if(btn != GAMEPAD_BUTTON_INVALID) {
gamepad_button(btn, SDL_PRESSED);
}
2012-08-15 02:41:21 +02:00
}
} else if(gamepad.axes[id].digital != AXISVAL_NULL) { // simulate release
gamepad.axes[id].digital = AXISVAL_NULL;
GamepadButton btn = gamepad_button_from_axis(id);
if(btn != GAMEPAD_BUTTON_INVALID) {
gamepad_button(btn, SDL_RELEASED);
}
2012-08-15 02:41:21 +02:00
}
}
static void gamepad_button(GamepadButton button, int state) {
int gpkey = config_gamepad_key_from_gamepad_button(button);
int key = config_key_from_gamepad_key(gpkey);
void *indev = (void*)(intptr_t)INDEV_GAMEPAD;
2012-08-15 02:41:21 +02:00
if(state == SDL_PRESSED) {
2017-10-22 01:47:02 +02:00
events_emit(TE_GAMEPAD_BUTTON_DOWN, button, indev, NULL);
switch(button) {
case GAMEPAD_BUTTON_START:
2017-10-22 01:47:02 +02:00
events_emit(TE_MENU_ACCEPT, 0, indev, NULL);
events_emit(TE_GAME_PAUSE, 0, indev, NULL);
break;
case GAMEPAD_BUTTON_BACK:
2017-10-22 01:47:02 +02:00
events_emit(TE_MENU_ABORT, 0, indev, NULL);
events_emit(TE_GAME_PAUSE, 0, indev, NULL);
break;
case GAMEPAD_BUTTON_DPAD_UP: events_emit(TE_MENU_CURSOR_UP, 0, indev, NULL); break;
case GAMEPAD_BUTTON_DPAD_DOWN: events_emit(TE_MENU_CURSOR_DOWN, 0, indev, NULL); break;
case GAMEPAD_BUTTON_DPAD_LEFT: events_emit(TE_MENU_CURSOR_LEFT, 0, indev, NULL); break;
case GAMEPAD_BUTTON_DPAD_RIGHT: events_emit(TE_MENU_CURSOR_RIGHT, 0, indev, NULL); break;
case GAMEPAD_BUTTON_A:
2017-10-22 01:47:02 +02:00
events_emit(TE_MENU_ACCEPT, 0, indev, NULL);
2017-10-01 00:09:07 +02:00
break;
case GAMEPAD_BUTTON_B:
2017-10-22 01:47:02 +02:00
events_emit(TE_MENU_ABORT, 0, indev, NULL);
2017-10-01 00:09:07 +02:00
break;
default:
2017-12-16 22:19:49 +01:00
break;
2012-08-15 02:41:21 +02:00
}
2017-12-16 22:19:49 +01:00
if(key >= 0) {
events_emit(TE_GAME_KEY_DOWN, key, indev, NULL);
}
} else {
2017-10-22 01:47:02 +02:00
events_emit(TE_GAMEPAD_BUTTON_UP, button, indev, NULL);
if(key >= 0) {
2017-10-22 01:47:02 +02:00
events_emit(TE_GAME_KEY_UP, key, indev, NULL);
}
}
2012-08-15 02:41:21 +02:00
}
static bool gamepad_event_handler(SDL_Event *event, void *arg) {
assert(gamepad.initialized);
2012-08-15 02:41:21 +02:00
switch(event->type) {
case SDL_CONTROLLERAXISMOTION:
if(event->caxis.which == gamepad.instance) {
GamepadAxis axis = gamepad_axis_from_sdl_axis(event->caxis.axis);
if(axis != GAMEPAD_AXIS_INVALID) {
gamepad_axis(axis, event->caxis.value);
}
2017-03-18 05:41:19 +01:00
}
return true;
case SDL_CONTROLLERBUTTONDOWN:
case SDL_CONTROLLERBUTTONUP:
if(event->cbutton.which == gamepad.instance) {
GamepadButton btn = gamepad_button_from_sdl_button(event->cbutton.button);
if(btn != GAMEPAD_BUTTON_INVALID) {
gamepad_button(btn, event->cbutton.state);
}
}
return true;
2012-08-15 02:41:21 +02:00
}
return false;
2012-08-15 02:41:21 +02:00
}
2012-08-16 23:35:48 +02:00
int gamepad_device_count(void) {
return gamepad.devices.count;
2012-08-16 23:35:48 +02:00
}
void gamepad_device_guid(int num, char *guid_str, size_t guid_str_sz) {
if(num < 0 || num >= gamepad.devices.count) {
return;
}
SDL_JoystickGUID guid = SDL_JoystickGetDeviceGUID(gamepad.devices.id_map[num]);
SDL_JoystickGetGUIDString(guid, guid_str, guid_str_sz);
}
int gamepad_device_num_from_guid(const char *guid_str) {
for(int i = 0; i < gamepad.devices.count; ++i) {
char guid[33] = {0};
gamepad_device_guid(i, guid, sizeof(guid));
if(!strcasecmp(guid_str, guid)) {
return i;
}
}
return -1;
}
int gamepad_current_device_num(void) {
if(gamepad.initialized) {
return gamepad.current_devnum;
}
return -1;
2012-08-16 23:35:48 +02:00
}
bool gamepad_button_pressed(GamepadButton btn) {
if(btn > GAMEPAD_BUTTON_INVALID && btn < GAMEPAD_BUTTON_MAX) {
return SDL_GameControllerGetButton(gamepad.device, (SDL_GameControllerButton)btn);
}
if(btn & GAMEPAD_BUTTON_EMULATED) {
GamepadEmulatedButton ebtn = btn & ~GAMEPAD_BUTTON_EMULATED;
if(ebtn > GAMEPAD_EMULATED_BUTTON_INVALID && ebtn < GAMEPAD_EMULATED_BUTTON_MAX) {
static GamepadAxis ebtn_to_axis[] = {
[GAMEPAD_EMULATED_BUTTON_TRIGGER_LEFT] = GAMEPAD_AXIS_TRIGGER_LEFT,
[GAMEPAD_EMULATED_BUTTON_TRIGGER_RIGHT] = GAMEPAD_AXIS_TRIGGER_RIGHT,
};
return gamepad.axes[ebtn_to_axis[ebtn]].digital;
}
}
return false;
}
bool gamepad_game_key_pressed(KeyIndex key) {
if(!gamepad.initialized)
2017-02-17 17:03:49 +01:00
return false;
if(!config_get_int(CONFIG_GAMEPAD_AXIS_FREE)) {
GamepadAxis axis = gamepad_gamekey2axis(key);
if(axis != GAMEPAD_AXIS_INVALID && gamepad.axes[axis].digital == gamepad_gamekey2axisval(key)) {
return true;
}
}
2017-02-17 17:03:49 +01:00
int gpkey = config_gamepad_key_from_key(key);
2017-02-27 23:04:30 +01:00
if(gpkey < 0) {
return false;
}
2017-02-17 17:03:49 +01:00
int cfgidx = GPKEYIDX_TO_CFGIDX(gpkey);
int button = config_get_int(cfgidx);
return gamepad_button_pressed(button);
}
static const char *const gamepad_button_names[] = {
[GAMEPAD_BUTTON_A] = "A",
[GAMEPAD_BUTTON_B] = "B",
[GAMEPAD_BUTTON_X] = "X",
[GAMEPAD_BUTTON_Y] = "Y",
[GAMEPAD_BUTTON_BACK] = "Back",
[GAMEPAD_BUTTON_GUIDE] = "Guide",
[GAMEPAD_BUTTON_START] = "Start",
[GAMEPAD_BUTTON_STICK_LEFT] = "Left Stick",
[GAMEPAD_BUTTON_STICK_RIGHT] = "Right Stick",
[GAMEPAD_BUTTON_SHOULDER_LEFT] = "Left Bumper",
[GAMEPAD_BUTTON_SHOULDER_RIGHT] = "Right Bumper",
[GAMEPAD_BUTTON_DPAD_UP] = "Up",
[GAMEPAD_BUTTON_DPAD_DOWN] = "Down",
[GAMEPAD_BUTTON_DPAD_LEFT] = "Left",
[GAMEPAD_BUTTON_DPAD_RIGHT] = "Right",
};
static const char *const gamepad_emulated_button_names[] = {
[GAMEPAD_EMULATED_BUTTON_TRIGGER_LEFT] = "Left Trigger",
[GAMEPAD_EMULATED_BUTTON_TRIGGER_RIGHT] = "Right Trigger",
};
static const char *const gamepad_axis_names[] = {
[GAMEPAD_AXIS_LEFT_X] = "Left X",
[GAMEPAD_AXIS_LEFT_Y] = "Left Y",
[GAMEPAD_AXIS_RIGHT_X] = "Right X",
[GAMEPAD_AXIS_RIGHT_Y] = "Right Y",
[GAMEPAD_AXIS_TRIGGER_LEFT] = "Left Trigger",
[GAMEPAD_AXIS_TRIGGER_RIGHT] = "Right Trigger",
};
const char* gamepad_button_name(GamepadButton btn) {
if(btn > GAMEPAD_BUTTON_INVALID && btn < GAMEPAD_BUTTON_MAX) {
return gamepad_button_names[btn];
}
if(btn & GAMEPAD_BUTTON_EMULATED) {
return gamepad_emulated_button_names[btn & ~GAMEPAD_BUTTON_EMULATED];
}
return "Unknown";
}
const char* gamepad_axis_name(GamepadAxis axis) {
if(axis > GAMEPAD_AXIS_INVALID && axis < GAMEPAD_AXIS_MAX) {
return gamepad_axis_names[axis];
}
return "Unknown";
}
GamepadButton gamepad_button_from_name(const char *name) {
for(int i = 0; i < GAMEPAD_BUTTON_MAX; ++i) {
if(!strcasecmp(gamepad_button_names[i], name)) {
return (GamepadButton)i;
}
}
for(int i = 0; i < GAMEPAD_EMULATED_BUTTON_MAX; ++i) {
if(!strcasecmp(gamepad_emulated_button_names[i], name)) {
return (GamepadButton)(i | GAMEPAD_BUTTON_EMULATED);
}
}
// for compatibility
return (GamepadButton)SDL_GameControllerGetButtonFromString(name);
}
GamepadAxis gamepad_axis_from_name(const char *name) {
for(int i = 0; i < GAMEPAD_AXIS_MAX; ++i) {
if(!strcasecmp(gamepad_axis_names[i], name)) {
return (GamepadAxis)i;
}
}
// for compatibility
return (GamepadAxis)SDL_GameControllerGetAxisFromString(name);
}
GamepadButton gamepad_button_from_sdl_button(SDL_GameControllerButton btn) {
if(btn <= SDL_CONTROLLER_BUTTON_INVALID || btn >= SDL_CONTROLLER_BUTTON_MAX) {
return GAMEPAD_BUTTON_INVALID;
}
return (GamepadButton)btn;
}
GamepadButton gamepad_button_from_axis(GamepadAxis axis) {
switch(axis) {
case GAMEPAD_AXIS_TRIGGER_LEFT:
return GAMEPAD_BUTTON_TRIGGER_LEFT;
case GAMEPAD_AXIS_TRIGGER_RIGHT:
return GAMEPAD_BUTTON_TRIGGER_RIGHT;
default:
return GAMEPAD_BUTTON_INVALID;
}
}
SDL_GameControllerButton gamepad_button_to_sdl_button(GamepadButton btn) {
if(btn <= GAMEPAD_BUTTON_INVALID || btn >= GAMEPAD_BUTTON_MAX) {
return SDL_CONTROLLER_BUTTON_INVALID;
}
return (SDL_GameControllerButton)btn;
}
GamepadAxis gamepad_axis_from_sdl_axis(SDL_GameControllerAxis axis) {
2017-12-30 16:54:09 +01:00
if(axis <= SDL_CONTROLLER_AXIS_INVALID || axis >= SDL_CONTROLLER_AXIS_MAX) {
return GAMEPAD_AXIS_INVALID;
}
return (GamepadAxis)axis;
}
SDL_GameControllerAxis gamepad_axis_to_sdl_axis(GamepadAxis axis) {
2017-12-30 16:54:09 +01:00
if(axis <= GAMEPAD_AXIS_INVALID || axis >= GAMEPAD_AXIS_MAX) {
return SDL_CONTROLLER_AXIS_INVALID;
}
return (SDL_GameControllerAxis)axis;
2012-08-16 23:35:48 +02:00
}