/* RetroArch - A frontend for libretro. * Copyright (C) 2013-2014 - Jason Fetters * Copyright (C) 2011-2015 - Daniel De Matteis * * 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 . */ #include "../../general.h" #include "../input_hid_driver.h" typedef struct null_hid { void *empty; } null_hid_t; static bool null_hid_joypad_query(void *data, unsigned pad) { return pad < MAX_USERS; } static const char *null_hid_joypad_name(void *data, unsigned pad) { /* TODO/FIXME - implement properly */ if (pad >= MAX_USERS) return NULL; return NULL; } static uint64_t null_hid_joypad_get_buttons(void *data, unsigned port) { (void)data; (void)port; return 0; } static bool null_hid_joypad_button(void *data, unsigned port, uint16_t joykey) { (void)data; (void)port; (void)joykey; return false; } static bool null_hid_joypad_rumble(void *data, unsigned pad, enum retro_rumble_effect effect, uint16_t strength) { (void)data; (void)pad; (void)effect; (void)strength; return false; } static int16_t null_hid_joypad_axis(void *data, unsigned port, uint32_t joyaxis) { (void)data; (void)port; (void)joyaxis; return 0; } static void *null_hid_init(void) { return (null_hid_t*)calloc(1, sizeof(null_hid_t)); } static void null_hid_free(void *data) { null_hid_t *hid_null = (null_hid_t*)data; if (hid_null) free(hid_null); } static void null_hid_poll(void *data) { (void)data; } hid_driver_t null_hid = { null_hid_init, null_hid_joypad_query, null_hid_free, null_hid_joypad_button, null_hid_joypad_get_buttons, null_hid_joypad_axis, null_hid_poll, null_hid_joypad_rumble, null_hid_joypad_name, "null", };