RetroArch/input/input_remapping.c

223 lines
6.9 KiB
C
Raw Normal View History

2015-01-19 17:16:34 +00:00
/* RetroArch - A frontend for libretro.
2016-01-10 03:33:01 +00:00
* Copyright (C) 2011-2016 - Daniel De Matteis
2015-01-19 17:16:34 +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.
*
* 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 <file/config_file.h>
#include <file/file_path.h>
2015-12-26 06:54:17 +00:00
#include <string/stdstring.h>
#include "input_remapping.h"
2015-01-19 17:16:34 +00:00
#include "../general.h"
/**
* input_remapping_load_file:
* @data : Path to config file.
2015-01-19 17:16:34 +00:00
*
* Loads a remap file from disk to memory.
*
* Returns: true (1) if successful, otherwise false (0).
**/
bool input_remapping_load_file(void *data, const char *path)
2015-01-19 17:16:34 +00:00
{
unsigned i, j;
config_file_t *conf = (config_file_t*)data;
2015-03-20 20:22:38 +00:00
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
2015-01-19 17:16:34 +00:00
2015-12-26 06:54:17 +00:00
if (!conf || string_is_empty(path))
2015-01-19 17:16:34 +00:00
return false;
strlcpy(global->name.remapfile, path,
sizeof(global->name.remapfile));
2015-01-24 22:42:31 +00:00
2015-01-19 17:16:34 +00:00
for (i = 0; i < MAX_USERS; i++)
{
2016-02-05 13:11:38 +00:00
char buf[64];
2015-06-12 21:52:52 +00:00
char key_ident[RARCH_FIRST_CUSTOM_BIND + 4][128] = {{0}};
char key_strings[RARCH_FIRST_CUSTOM_BIND + 4][128] =
2016-02-05 13:06:43 +00:00
{ "b", "y", "select", "start",
"up", "down", "left", "right",
"a", "x", "l", "r", "l2", "r2",
2016-02-05 13:06:43 +00:00
"l3", "r3", "l_x", "l_y", "r_x", "r_y" };
2015-01-19 17:16:34 +00:00
snprintf(buf, sizeof(buf), "input_player%u", i + 1);
for (j = 0; j < RARCH_FIRST_CUSTOM_BIND + 4; j++)
2015-01-19 17:16:34 +00:00
{
int key_remap = -1;
2016-02-05 13:06:43 +00:00
fill_pathname_join_delim(key_ident[j], buf,
key_strings[j], '_', sizeof(key_ident[j]));
if (config_get_int(conf, key_ident[j], &key_remap)
&& key_remap < RARCH_FIRST_CUSTOM_BIND)
2015-03-20 20:22:38 +00:00
settings->input.remap_ids[i][j] = key_remap;
2015-01-19 17:16:34 +00:00
}
for (j = 0; j < 4; j++)
{
int key_remap = -1;
2015-09-29 15:35:28 +00:00
snprintf(key_ident[RARCH_FIRST_CUSTOM_BIND + j],
sizeof(key_ident[RARCH_FIRST_CUSTOM_BIND + j]),
"%s_%s",
buf,
key_strings[RARCH_FIRST_CUSTOM_BIND + j]);
2016-02-05 13:06:43 +00:00
if (config_get_int(conf, key_ident[RARCH_FIRST_CUSTOM_BIND + j],
&key_remap) && (key_remap < 4))
settings->input.remap_ids[i][RARCH_FIRST_CUSTOM_BIND + j] =
2016-02-05 13:06:43 +00:00
key_remap;
}
snprintf(buf, sizeof(buf), "input_player%u_joypad_index", i + 1);
CONFIG_GET_INT_BASE(conf, settings, input.joypad_map[i], buf);
snprintf(buf, sizeof(buf), "input_player%u_analog_dpad_mode", i + 1);
CONFIG_GET_INT_BASE(conf, settings, input.analog_dpad_mode[i], buf);
snprintf(buf, sizeof(buf), "input_player%u_joypad_index", i + 1);
CONFIG_GET_INT_BASE(conf, settings, input.joypad_map[i], buf);
snprintf(buf, sizeof(buf), "input_player%u_analog_dpad_mode", i + 1);
CONFIG_GET_INT_BASE(conf, settings, input.analog_dpad_mode[i], buf);
if (!global->has_set.libretro_device[i])
{
snprintf(buf, sizeof(buf), "input_libretro_device_p%u", i + 1);
CONFIG_GET_INT_BASE(conf, settings, input.libretro_device[i], buf);
}
2015-01-19 17:16:34 +00:00
}
config_file_free(conf);
return true;
}
/**
* input_remapping_save_file:
* @path : Path to remapping file (relative path).
*
* Saves remapping values to file.
2015-04-08 03:51:31 +00:00
*
* Returns: true (1) if successful, otherwise false (0).
2015-01-19 17:16:34 +00:00
**/
2015-04-08 03:40:42 +00:00
bool input_remapping_save_file(const char *path)
2015-01-19 17:16:34 +00:00
{
2015-04-08 03:40:42 +00:00
bool ret;
2015-01-19 17:16:34 +00:00
unsigned i, j;
2015-06-12 21:52:52 +00:00
char buf[PATH_MAX_LENGTH] = {0};
char remap_file[PATH_MAX_LENGTH] = {0};
config_file_t *conf = NULL;
settings_t *settings = config_get_ptr();
2015-01-19 17:16:34 +00:00
2016-04-28 17:26:02 +00:00
fill_pathname_join(buf, settings->directory.input_remapping,
2015-01-19 17:16:34 +00:00
path, sizeof(buf));
fill_pathname_noext(remap_file, buf, ".rmp", sizeof(remap_file));
conf = config_file_new(remap_file);
if (!conf)
2015-04-08 03:40:42 +00:00
{
conf = config_file_new(NULL);
2015-11-17 05:23:14 +00:00
if (!conf)
return false;
2015-04-08 03:40:42 +00:00
}
2015-01-19 17:16:34 +00:00
2015-03-20 20:22:38 +00:00
for (i = 0; i < settings->input.max_users; i++)
2015-01-19 17:16:34 +00:00
{
2016-03-20 04:24:05 +00:00
char buf[64] = {0};
2015-06-12 21:52:52 +00:00
char key_ident[RARCH_FIRST_CUSTOM_BIND + 4][128] = {{0}};
char key_strings[RARCH_FIRST_CUSTOM_BIND + 4][128] = {
2016-02-05 13:06:43 +00:00
"b", "y", "select", "start",
"up", "down", "left", "right",
"a", "x", "l", "r", "l2", "r2",
"l3", "r3", "l_x", "l_y", "r_x", "r_y" };
2015-01-19 17:16:34 +00:00
snprintf(buf, sizeof(buf), "input_player%u", i + 1);
for (j = 0; j < RARCH_FIRST_CUSTOM_BIND + 4; j++)
2015-01-19 17:16:34 +00:00
{
2016-02-05 13:06:43 +00:00
fill_pathname_join_delim(key_ident[j], buf,
key_strings[j], '_', sizeof(key_ident[j]));
/* only save values that have been modified */
if(j < RARCH_FIRST_CUSTOM_BIND)
{
if(settings->input.remap_ids[i][j] != j)
config_set_int(conf, key_ident[j], settings->input.remap_ids[i][j]);
else
config_unset(conf,key_ident[j]);
}
else
{
if(settings->input.remap_ids[i][j] != j - RARCH_FIRST_CUSTOM_BIND)
config_set_int(conf, key_ident[j], settings->input.remap_ids[i][j]);
else
config_unset(conf,key_ident[j]);
}
2015-01-19 17:16:34 +00:00
}
snprintf(buf, sizeof(buf), "input_libretro_device_p%u", i + 1);
config_set_int(conf, buf, settings->input.libretro_device[i]);
snprintf(buf, sizeof(buf), "input_player%u_analog_dpad_mode", i + 1);
config_set_int(conf, buf, settings->input.analog_dpad_mode[i]);
2015-01-19 17:16:34 +00:00
}
2015-04-08 03:40:42 +00:00
ret = config_file_write(conf, remap_file);
2015-01-19 17:16:34 +00:00
config_file_free(conf);
2015-04-08 03:51:31 +00:00
2015-04-08 03:40:42 +00:00
return ret;
2015-01-19 17:16:34 +00:00
}
void input_remapping_set_defaults(void)
{
unsigned i, j;
2015-03-20 20:22:38 +00:00
settings_t *settings = config_get_ptr();
for (i = 0; i < MAX_USERS; i++)
{
for (j = 0; j < RARCH_FIRST_CUSTOM_BIND; j++)
2015-03-20 20:22:38 +00:00
settings->input.remap_ids[i][j] = settings->input.binds[i][j].id;
for (j = 0; j < 4; j++)
settings->input.remap_ids[i][RARCH_FIRST_CUSTOM_BIND + j] = j;
}
}
2015-04-10 00:46:10 +00:00
void input_remapping_state(unsigned port,
unsigned *device, unsigned *idx, unsigned *id)
2015-04-10 00:46:10 +00:00
{
settings_t *settings = config_get_ptr();
2015-04-10 00:46:10 +00:00
switch (*device)
{
case RETRO_DEVICE_JOYPAD:
if (*id < RARCH_FIRST_CUSTOM_BIND)
*id = settings->input.remap_ids[port][*id];
break;
case RETRO_DEVICE_ANALOG:
if (*idx < 2 && *id < 2)
{
unsigned new_id = RARCH_FIRST_CUSTOM_BIND + (*idx * 2 + *id);
2015-06-12 21:52:52 +00:00
new_id = settings->input.remap_ids[port][new_id];
2015-06-12 21:52:52 +00:00
*idx = (new_id & 2) >> 1;
*id = new_id & 1;
}
break;
}
2015-04-10 00:46:10 +00:00
}