Skip to content

Latest commit

 

History

History
98 lines (81 loc) · 3.93 KB

SDL_hidapijoystick_c.h

File metadata and controls

98 lines (81 loc) · 3.93 KB
 
1
2
/*
Simple DirectMedia Layer
Jan 5, 2019
Jan 5, 2019
3
Copyright (C) 1997-2019 Sam Lantinga <slouken@libsdl.org>
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "../../SDL_internal.h"
#ifndef SDL_JOYSTICK_HIDAPI_H
#define SDL_JOYSTICK_HIDAPI_H
#include "../../hidapi/hidapi/hidapi.h"
/* This is the full set of HIDAPI drivers available */
#define SDL_JOYSTICK_HIDAPI_PS4
#define SDL_JOYSTICK_HIDAPI_SWITCH
#define SDL_JOYSTICK_HIDAPI_XBOX360
#define SDL_JOYSTICK_HIDAPI_XBOXONE
Mar 13, 2019
Mar 13, 2019
33
#define SDL_JOYSTICK_HIDAPI_GAMECUBE
Aug 16, 2018
Aug 16, 2018
36
/* On Windows, Xbox One controllers are handled by the Xbox 360 driver */
37
#undef SDL_JOYSTICK_HIDAPI_XBOXONE
Oct 5, 2018
Oct 5, 2018
38
39
/* It turns out HIDAPI for Xbox controllers doesn't allow background input */
#undef SDL_JOYSTICK_HIDAPI_XBOX360
40
41
42
43
44
45
46
#endif
#ifdef __MACOSX__
/* On Mac OS X, Xbox One controllers are handled by the Xbox 360 driver */
#undef SDL_JOYSTICK_HIDAPI_XBOXONE
#endif
Mar 13, 2019
Mar 13, 2019
47
48
49
50
51
52
typedef struct _SDL_HIDAPI_DriverData
{
hid_device *device;
void *context;
} SDL_HIDAPI_DriverData;
53
54
55
56
typedef struct _SDL_HIDAPI_DeviceDriver
{
const char *hint;
SDL_bool enabled;
Sep 1, 2018
Sep 1, 2018
57
SDL_bool (*IsSupportedDevice)(Uint16 vendor_id, Uint16 product_id, Uint16 version, int interface_number);
58
const char *(*GetDeviceName)(Uint16 vendor_id, Uint16 product_id);
Mar 13, 2019
Mar 13, 2019
59
60
61
62
63
64
65
66
67
SDL_bool (*InitDriver)(SDL_HIDAPI_DriverData *context,
Uint16 vendor_id, Uint16 product_id, int *num_joysticks);
void (*QuitDriver)(SDL_HIDAPI_DriverData *context,
SDL_bool send_event,
int *num_joysticks);
SDL_bool (*UpdateDriver)(SDL_HIDAPI_DriverData *context,
int *num_joysticks);
int (*NumJoysticks)(SDL_HIDAPI_DriverData *context);
Jun 8, 2019
Jun 8, 2019
68
69
int (*PlayerIndexForIndex)(SDL_HIDAPI_DriverData *context,
int index);
Mar 13, 2019
Mar 13, 2019
70
71
72
73
74
75
76
77
78
SDL_JoystickID (*InstanceIDForIndex)(SDL_HIDAPI_DriverData *context,
int index);
SDL_bool (*OpenJoystick)(SDL_HIDAPI_DriverData *context,
SDL_Joystick *joystick);
int (*Rumble)(SDL_HIDAPI_DriverData *context,
SDL_Joystick *joystick,
Uint16 low_frequency_rumble,
Uint16 high_frequency_rumble,
Uint32 duration_ms);
79
80
81
82
83
84
85
86
87
} SDL_HIDAPI_DeviceDriver;
/* HIDAPI device support */
extern SDL_HIDAPI_DeviceDriver SDL_HIDAPI_DriverPS4;
extern SDL_HIDAPI_DeviceDriver SDL_HIDAPI_DriverSteam;
extern SDL_HIDAPI_DeviceDriver SDL_HIDAPI_DriverSwitch;
extern SDL_HIDAPI_DeviceDriver SDL_HIDAPI_DriverXbox360;
extern SDL_HIDAPI_DeviceDriver SDL_HIDAPI_DriverXboxOne;
Mar 13, 2019
Mar 13, 2019
88
extern SDL_HIDAPI_DeviceDriver SDL_HIDAPI_DriverGameCube;
89
90
/* Return true if a HID device is present and supported as a joystick */
Aug 16, 2018
Aug 16, 2018
91
extern SDL_bool HIDAPI_IsDevicePresent(Uint16 vendor_id, Uint16 product_id, Uint16 version);
Aug 16, 2018
Aug 16, 2018
93
94
95
/* Return the name of an Xbox 360 or Xbox One controller */
extern const char *HIDAPI_XboxControllerName(Uint16 vendor_id, Uint16 product_id);
96
97
98
#endif /* SDL_JOYSTICK_HIDAPI_H */
/* vi: set ts=4 sw=4 expandtab: */