2018-02-21 22:57:28 -08:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
|
|
|
* Copyright (C) 2016-2017 - Andrés Suárez
|
|
|
|
*
|
|
|
|
* 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 HID_DRIVER_H__
|
|
|
|
#define HID_DRIVER_H__
|
|
|
|
|
|
|
|
#include "../connect/joypad_connection.h"
|
|
|
|
#include "../input_driver.h"
|
|
|
|
|
|
|
|
/* what is 1? */
|
2021-10-15 16:02:34 -07:00
|
|
|
#define HID_REPORT_INPUT 1
|
|
|
|
#define HID_REPORT_OUTPUT 2
|
2018-02-21 22:57:28 -08:00
|
|
|
#define HID_REPORT_FEATURE 3
|
2021-10-15 16:02:34 -07:00
|
|
|
#define HID_REPORT_COUNT 4
|
2018-02-21 22:57:28 -08:00
|
|
|
/* are there more? */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the interface for the HID subsystem.
|
|
|
|
*
|
|
|
|
* The handle parameter is the pointer returned by init() and stores the implementation
|
|
|
|
* state data for the HID driver.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct hid_driver
|
|
|
|
{
|
2018-03-31 22:25:30 -07:00
|
|
|
void *(*init)(void);
|
2018-02-21 22:57:28 -08:00
|
|
|
bool (*query_pad)(void *handle, unsigned pad);
|
|
|
|
void (*free)(const void *handle);
|
2020-07-18 19:51:14 +02:00
|
|
|
int16_t (*button)(void *handle, unsigned pad, uint16_t button);
|
2020-07-19 03:23:07 +02:00
|
|
|
int16_t (*state)(void *data, rarch_joypad_info_t *joypad_info,
|
2020-07-19 03:25:30 +02:00
|
|
|
const void *binds_data, unsigned port);
|
2018-04-14 14:34:13 -07:00
|
|
|
void (*get_buttons)(void *handle, unsigned pad, input_bits_t *state);
|
2018-02-21 22:57:28 -08:00
|
|
|
int16_t (*axis)(void *handle, unsigned pad, uint32_t axis);
|
|
|
|
void (*poll)(void *handle);
|
|
|
|
bool (*set_rumble)(void *handle, unsigned pad, enum retro_rumble_effect effect, uint16_t);
|
|
|
|
const char *(*name)(void *handle, unsigned pad);
|
|
|
|
const char *ident;
|
|
|
|
void (*send_control)(void *handle, uint8_t *buf, size_t size);
|
2021-10-16 14:45:20 -07:00
|
|
|
int32_t (*set_report)(void *handle, uint8_t report_type, uint8_t report_id, uint8_t *data, size_t length);
|
|
|
|
int32_t (*get_report)(void *handle, uint8_t report_type, uint8_t report_id, uint8_t *data, size_t length);
|
2018-02-21 22:57:28 -08:00
|
|
|
int32_t (*set_idle)(void *handle, uint8_t amount);
|
|
|
|
int32_t (*set_protocol)(void *handle, uint8_t protocol);
|
|
|
|
int32_t (*read)(void *handle, void *buf, size_t size);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* HID_DRIVER_H__ */
|