RetroArch/input/null.c

86 lines
2.0 KiB
C
Raw Normal View History

2012-06-19 22:44:40 +00:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
*
* 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 "../general.h"
#include "../driver.h"
2012-11-26 23:50:29 +00:00
static void *nullinput_input_init(void)
2012-06-19 22:44:40 +00:00
{
return (void*)-1;
}
2012-11-26 23:50:29 +00:00
static void nullinput_input_poll(void *data)
2012-06-19 22:44:40 +00:00
{
(void)data;
}
2012-11-26 23:50:29 +00:00
static int16_t nullinput_input_state(void *data, const struct retro_keybind **retro_keybinds, unsigned port, unsigned device, unsigned index, unsigned id)
2012-06-19 22:44:40 +00:00
{
(void)data;
2012-07-07 15:19:32 +00:00
(void)retro_keybinds;
2012-06-19 22:44:40 +00:00
(void)port;
(void)device;
(void)index;
(void)id;
return 0;
}
2012-11-26 23:50:29 +00:00
static bool nullinput_input_key_pressed(void *data, int key)
2012-06-19 22:44:40 +00:00
{
(void)data;
(void)key;
return false;
}
2012-11-26 23:50:29 +00:00
static void nullinput_input_free_input(void *data)
2012-06-19 22:44:40 +00:00
{
(void)data;
}
2012-07-27 13:47:56 +00:00
#ifdef RARCH_CONSOLE
2012-11-26 23:50:29 +00:00
static void nullinput_set_default_keybind_lut(unsigned device, unsigned port)
{
(void)device;
(void)port;
}
2012-11-26 23:50:29 +00:00
static void nullinput_set_analog_dpad_mapping(unsigned device, unsigned map_dpad_enum, unsigned controller_id)
{
(void)device;
(void)map_dpad_enum;
(void)controller_id;
}
2012-11-26 23:50:29 +00:00
static void nullinput_input_post_init(void) {}
2012-07-27 13:47:56 +00:00
#endif
2012-06-19 22:44:40 +00:00
const input_driver_t input_null = {
2012-11-26 23:50:29 +00:00
nullinput_input_init,
nullinput_input_poll,
nullinput_input_state,
nullinput_input_key_pressed,
nullinput_input_free_input,
#ifdef RARCH_CONSOLE
2012-11-26 23:50:29 +00:00
nullinput_set_default_keybind_lut,
nullinput_set_analog_dpad_mapping,
nullinput_input_post_init,
2,
#endif
2012-06-19 22:44:40 +00:00
"null",
};