2012-09-22 09:57:04 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 01:50:59 +01:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2015-01-07 17:46:50 +01:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2014-01-08 12:14:50 -05:00
|
|
|
*
|
2012-09-22 09:57:04 +02: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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INPUT_COMMON_H__
|
|
|
|
#define INPUT_COMMON_H__
|
|
|
|
|
2014-11-29 21:18:45 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-10-25 19:56:22 +02:00
|
|
|
#include "input_context.h"
|
2014-10-22 03:35:04 +02:00
|
|
|
#include <file/config_file.h>
|
2012-09-28 22:38:42 +02:00
|
|
|
#include <stdint.h>
|
2014-10-26 01:15:41 +02:00
|
|
|
#include "../driver.h"
|
2012-09-22 09:57:04 +02:00
|
|
|
|
2014-09-16 09:26:08 +02:00
|
|
|
typedef uint64_t retro_input_t ;
|
|
|
|
|
2014-09-02 16:50:28 +02:00
|
|
|
/* Input config. */
|
2013-04-26 11:44:54 +02:00
|
|
|
struct input_bind_map
|
|
|
|
{
|
|
|
|
bool valid;
|
2013-04-29 21:11:29 +02:00
|
|
|
|
2014-09-02 16:50:28 +02:00
|
|
|
/* Meta binds get input as prefix, not input_playerN".
|
|
|
|
* 0 = libretro related.
|
|
|
|
* 1 = Common hotkey.
|
|
|
|
* 2 = Uncommon/obscure hotkey.
|
|
|
|
*/
|
2013-04-29 21:11:29 +02:00
|
|
|
unsigned meta;
|
|
|
|
|
2013-04-26 11:44:54 +02:00
|
|
|
const char *base;
|
2013-04-26 13:25:40 +02:00
|
|
|
const char *desc;
|
2013-04-26 11:44:54 +02:00
|
|
|
unsigned retro_key;
|
|
|
|
};
|
2013-09-30 18:08:47 +02:00
|
|
|
|
2013-04-26 11:44:54 +02:00
|
|
|
extern const struct input_bind_map input_config_bind_map[];
|
2015-01-10 20:10:45 +01:00
|
|
|
|
|
|
|
bool input_translate_coord_viewport(int mouse_x, int mouse_y,
|
|
|
|
int16_t *res_x, int16_t *res_y, int16_t *res_screen_x,
|
|
|
|
int16_t *res_screen_y);
|
2013-09-30 18:08:47 +02:00
|
|
|
|
2014-09-02 16:50:28 +02:00
|
|
|
/* auto_bind can be NULL. */
|
|
|
|
void input_get_bind_string(char *buf, const struct retro_keybind *bind,
|
|
|
|
const struct retro_keybind *auto_bind, size_t size);
|
2013-04-26 11:44:54 +02:00
|
|
|
|
2013-09-30 18:27:35 +02:00
|
|
|
void input_translate_rk_to_str(enum retro_key key, char *buf, size_t size);
|
2014-01-08 18:23:58 +01:00
|
|
|
enum retro_key input_translate_str_to_rk(const char *str);
|
2013-04-26 11:44:54 +02:00
|
|
|
|
2014-12-05 14:21:04 +01:00
|
|
|
const char *input_config_get_prefix(unsigned user, bool meta);
|
2014-01-08 12:14:50 -05:00
|
|
|
|
2014-09-02 16:50:28 +02:00
|
|
|
/* Returns RARCH_BIND_LIST_END on not found. */
|
|
|
|
unsigned input_translate_str_to_bind_id(const char *str);
|
2013-04-26 11:44:54 +02:00
|
|
|
|
2014-09-02 16:50:28 +02:00
|
|
|
void input_config_parse_key(config_file_t *conf,
|
|
|
|
const char *prefix, const char *btn,
|
2013-04-26 11:44:54 +02:00
|
|
|
struct retro_keybind *bind);
|
2014-09-02 16:50:28 +02:00
|
|
|
|
2013-04-26 11:44:54 +02:00
|
|
|
void input_config_parse_joy_button(config_file_t *conf, const char *prefix,
|
|
|
|
const char *btn, struct retro_keybind *bind);
|
2014-09-02 16:50:28 +02:00
|
|
|
|
2013-04-26 11:44:54 +02:00
|
|
|
void input_config_parse_joy_axis(config_file_t *conf, const char *prefix,
|
|
|
|
const char *axis, struct retro_keybind *bind);
|
|
|
|
|
2014-01-08 17:31:14 +01:00
|
|
|
void input_push_analog_dpad(struct retro_keybind *binds, unsigned mode);
|
2014-09-02 16:50:28 +02:00
|
|
|
|
2014-01-08 17:31:14 +01:00
|
|
|
void input_pop_analog_dpad(struct retro_keybind *binds);
|
|
|
|
|
2014-01-05 23:28:34 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-09-22 09:57:04 +02:00
|
|
|
#endif
|
|
|
|
|