Take out libretro_device from global struct

This commit is contained in:
twinaphex 2016-10-01 06:22:57 +02:00
parent 2dcc5b8e43
commit 4567fdef52
4 changed files with 35 additions and 25 deletions

View File

@ -1131,11 +1131,9 @@ static void config_set_defaults(void)
for (i = 0; i < MAX_USERS; i++) for (i = 0; i < MAX_USERS; i++)
{ {
global_t *global = global_get_ptr();
settings->input.joypad_map[i] = i; settings->input.joypad_map[i] = i;
settings->input.analog_dpad_mode[i] = ANALOG_DPAD_NONE; settings->input.analog_dpad_mode[i] = ANALOG_DPAD_NONE;
if (!global->has_set.libretro_device[i]) if (!retroarch_override_setting_is_set(RARCH_OVERRIDE_SETTING_LIBRETRO_DEVICE, &i))
settings->input.libretro_device[i] = RETRO_DEVICE_JOYPAD; settings->input.libretro_device[i] = RETRO_DEVICE_JOYPAD;
} }
@ -1874,7 +1872,7 @@ static bool config_load_file(const char *path, bool set_defaults,
snprintf(buf, sizeof(buf), "input_player%u_analog_dpad_mode", i + 1); snprintf(buf, sizeof(buf), "input_player%u_analog_dpad_mode", i + 1);
CONFIG_GET_INT_BASE(conf, settings, input.analog_dpad_mode[i], buf); CONFIG_GET_INT_BASE(conf, settings, input.analog_dpad_mode[i], buf);
if (!global->has_set.libretro_device[i]) if (!retroarch_override_setting_is_set(RARCH_OVERRIDE_SETTING_LIBRETRO_DEVICE, &i))
{ {
snprintf(buf, sizeof(buf), "input_libretro_device_p%u", i + 1); snprintf(buf, sizeof(buf), "input_libretro_device_p%u", i + 1);
CONFIG_GET_INT_BASE(conf, settings, input.libretro_device[i], buf); CONFIG_GET_INT_BASE(conf, settings, input.libretro_device[i], buf);

View File

@ -21,6 +21,7 @@
#include "input_remapping.h" #include "input_remapping.h"
#include "../configuration.h" #include "../configuration.h"
#include "../paths.h" #include "../paths.h"
#include "../retroarch.h"
#include "../runloop.h" #include "../runloop.h"
/** /**
@ -36,7 +37,6 @@ bool input_remapping_load_file(void *data, const char *path)
unsigned i, j; unsigned i, j;
config_file_t *conf = (config_file_t*)data; config_file_t *conf = (config_file_t*)data;
settings_t *settings = config_get_ptr(); settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
if (!conf || string_is_empty(path)) if (!conf || string_is_empty(path))
return false; return false;
@ -88,7 +88,7 @@ bool input_remapping_load_file(void *data, const char *path)
snprintf(buf, sizeof(buf), "input_player%u_analog_dpad_mode", i + 1); snprintf(buf, sizeof(buf), "input_player%u_analog_dpad_mode", i + 1);
CONFIG_GET_INT_BASE(conf, settings, input.analog_dpad_mode[i], buf); CONFIG_GET_INT_BASE(conf, settings, input.analog_dpad_mode[i], buf);
if (!global->has_set.libretro_device[i]) if (!retroarch_override_setting_is_set(RARCH_OVERRIDE_SETTING_LIBRETRO_DEVICE, &i))
{ {
snprintf(buf, sizeof(buf), "input_libretro_device_p%u", i + 1); snprintf(buf, sizeof(buf), "input_libretro_device_p%u", i + 1);
CONFIG_GET_INT_BASE(conf, settings, input.libretro_device[i], buf); CONFIG_GET_INT_BASE(conf, settings, input.libretro_device[i], buf);

View File

@ -393,9 +393,11 @@ static void retroarch_print_help(const char *arg0)
static void retroarch_parse_input(int argc, char *argv[]) static void retroarch_parse_input(int argc, char *argv[])
{ {
const char *optstring = NULL; const char *optstring = NULL;
global_t *global = global_get_ptr();
settings_t *settings = config_get_ptr();
bool explicit_menu = false; bool explicit_menu = false;
settings_t *settings = config_get_ptr();
#ifdef HAVE_NETWORKING
global_t *global = global_get_ptr();
#endif
const struct option opts[] = { const struct option opts[] = {
#ifdef HAVE_DYNAMIC #ifdef HAVE_DYNAMIC
@ -519,6 +521,7 @@ static void retroarch_parse_input(int argc, char *argv[])
case 'd': case 'd':
{ {
unsigned new_port;
unsigned id = 0; unsigned id = 0;
struct string_list *list = string_split(optarg, ":"); struct string_list *list = string_split(optarg, ":");
@ -537,12 +540,17 @@ static void retroarch_parse_input(int argc, char *argv[])
retroarch_print_help(argv[0]); retroarch_print_help(argv[0]);
retroarch_fail(1, "retroarch_parse_input()"); retroarch_fail(1, "retroarch_parse_input()");
} }
settings->input.libretro_device[port - 1] = id; new_port = port -1;
global->has_set.libretro_device[port - 1] = true; settings->input.libretro_device[new_port] = id;
retroarch_override_setting_set(
RARCH_OVERRIDE_SETTING_LIBRETRO_DEVICE, &new_port);
break; break;
} }
case 'A': case 'A':
{
unsigned new_port;
port = strtol(optarg, NULL, 0); port = strtol(optarg, NULL, 0);
if (port < 1 || port > MAX_USERS) if (port < 1 || port > MAX_USERS)
{ {
@ -550,8 +558,12 @@ static void retroarch_parse_input(int argc, char *argv[])
retroarch_print_help(argv[0]); retroarch_print_help(argv[0]);
retroarch_fail(1, "retroarch_parse_input()"); retroarch_fail(1, "retroarch_parse_input()");
} }
settings->input.libretro_device[port - 1] = RETRO_DEVICE_ANALOG; new_port = port - 1;
global->has_set.libretro_device[port - 1] = true;
settings->input.libretro_device[new_port] = RETRO_DEVICE_ANALOG;
retroarch_override_setting_set(
RARCH_OVERRIDE_SETTING_LIBRETRO_DEVICE, &new_port);
}
break; break;
case 's': case 's':
@ -577,6 +589,8 @@ static void retroarch_parse_input(int argc, char *argv[])
break; break;
case 'N': case 'N':
{
unsigned new_port;
port = strtol(optarg, NULL, 0); port = strtol(optarg, NULL, 0);
if (port < 1 || port > MAX_USERS) if (port < 1 || port > MAX_USERS)
{ {
@ -585,8 +599,11 @@ static void retroarch_parse_input(int argc, char *argv[])
retroarch_print_help(argv[0]); retroarch_print_help(argv[0]);
retroarch_fail(1, "retroarch_parse_input()"); retroarch_fail(1, "retroarch_parse_input()");
} }
new_port = port - 1;
settings->input.libretro_device[port - 1] = RETRO_DEVICE_NONE; settings->input.libretro_device[port - 1] = RETRO_DEVICE_NONE;
global->has_set.libretro_device[port - 1] = true; retroarch_override_setting_set(
RARCH_OVERRIDE_SETTING_LIBRETRO_DEVICE, &new_port);
}
break; break;
case 'c': case 'c':

View File

@ -136,11 +136,6 @@ typedef struct rarch_resolution
typedef struct global typedef struct global
{ {
struct
{
bool libretro_device[MAX_USERS];
} has_set;
#ifdef HAVE_NETWORKING #ifdef HAVE_NETWORKING
/* Netplay. */ /* Netplay. */
struct struct