Skip to content

Latest commit

 

History

History
130 lines (107 loc) · 4.89 KB

SDL_hidapijoystick_c.h

File metadata and controls

130 lines (107 loc) · 4.89 KB
 
1
2
/*
Simple DirectMedia Layer
Jan 17, 2020
Jan 17, 2020
3
Copyright (C) 1997-2020 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
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
Feb 4, 2020
Feb 4, 2020
26
27
28
29
#include "SDL_atomic.h"
#include "SDL_mutex.h"
#include "SDL_joystick.h"
#include "SDL_gamecontroller.h"
30
#include "../../hidapi/hidapi/hidapi.h"
Jan 18, 2020
Jan 18, 2020
31
#include "../usb_ids.h"
32
33
34
35
36
37
/* 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
Dec 19, 2019
Dec 19, 2019
38
#define SDL_JOYSTICK_HIDAPI_GAMECUBE
Aug 16, 2018
Aug 16, 2018
41
/* On Windows, Xbox One controllers are handled by the Xbox 360 driver */
42
43
44
45
46
47
48
49
#undef SDL_JOYSTICK_HIDAPI_XBOXONE
#endif
#ifdef __MACOSX__
/* On Mac OS X, Xbox One controllers are handled by the Xbox 360 driver */
#undef SDL_JOYSTICK_HIDAPI_XBOXONE
#endif
Jan 30, 2020
Jan 30, 2020
50
51
52
53
54
#if defined(__IPHONEOS__) || defined(__TVOS__) || defined(__ANDROID__)
/* Very basic Steam Controller support on mobile devices */
#define SDL_JOYSTICK_HIDAPI_STEAM
#endif
Feb 4, 2020
Feb 4, 2020
55
56
57
/* The maximum size of a USB packet for HID devices */
#define USB_PACKET_LENGTH 64
Dec 19, 2019
Dec 19, 2019
58
59
60
61
62
63
64
65
66
67
68
69
/* Forward declaration */
struct _SDL_HIDAPI_DeviceDriver;
typedef struct _SDL_HIDAPI_Device
{
char *name;
char *path;
Uint16 vendor_id;
Uint16 product_id;
Uint16 version;
SDL_JoystickGUID guid;
int interface_number; /* Available on Windows and Linux */
Jan 18, 2020
Jan 18, 2020
70
71
72
int interface_class;
int interface_subclass;
int interface_protocol;
Dec 19, 2019
Dec 19, 2019
73
74
75
76
77
Uint16 usage_page; /* Available on Windows and Mac OS X */
Uint16 usage; /* Available on Windows and Mac OS X */
struct _SDL_HIDAPI_DeviceDriver *driver;
void *context;
Feb 4, 2020
Feb 4, 2020
78
SDL_mutex *dev_lock;
Dec 19, 2019
Dec 19, 2019
79
hid_device *dev;
Feb 4, 2020
Feb 4, 2020
80
SDL_atomic_t rumble_pending;
Dec 19, 2019
Dec 19, 2019
81
82
83
84
85
86
87
88
89
int num_joysticks;
SDL_JoystickID *joysticks;
/* Used during scanning for device changes */
SDL_bool seen;
struct _SDL_HIDAPI_Device *next;
} SDL_HIDAPI_Device;
90
91
92
93
typedef struct _SDL_HIDAPI_DeviceDriver
{
const char *hint;
SDL_bool enabled;
Jan 19, 2020
Jan 19, 2020
94
SDL_bool (*IsSupportedDevice)(const char *name, SDL_GameControllerType type, Uint16 vendor_id, Uint16 product_id, Uint16 version, int interface_number, int interface_class, int interface_subclass, int interface_protocol);
95
const char *(*GetDeviceName)(Uint16 vendor_id, Uint16 product_id);
Dec 19, 2019
Dec 19, 2019
96
SDL_bool (*InitDevice)(SDL_HIDAPI_Device *device);
Dec 21, 2019
Dec 21, 2019
97
98
int (*GetDevicePlayerIndex)(SDL_HIDAPI_Device *device, SDL_JoystickID instance_id);
void (*SetDevicePlayerIndex)(SDL_HIDAPI_Device *device, SDL_JoystickID instance_id, int player_index);
Dec 19, 2019
Dec 19, 2019
99
100
SDL_bool (*UpdateDevice)(SDL_HIDAPI_Device *device);
SDL_bool (*OpenJoystick)(SDL_HIDAPI_Device *device, SDL_Joystick *joystick);
Feb 4, 2020
Feb 4, 2020
101
int (*RumbleJoystick)(SDL_HIDAPI_Device *device, SDL_Joystick *joystick, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble);
Dec 19, 2019
Dec 19, 2019
102
103
void (*CloseJoystick)(SDL_HIDAPI_Device *device, SDL_Joystick *joystick);
void (*FreeDevice)(SDL_HIDAPI_Device *device);
Mar 16, 2020
Mar 16, 2020
104
105
106
107
void (*PostUpdate)(void);
#ifdef SDL_JOYSTICK_RAWINPUT
void (*HandleStatePacketFromRAWINPUT)(SDL_HIDAPI_Device *device, SDL_Joystick *joystick, Uint8 *data, int size);
#endif
108
109
110
} SDL_HIDAPI_DeviceDriver;
Feb 4, 2020
Feb 4, 2020
111
112
113
114
115
116
/* 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;
Dec 19, 2019
Dec 19, 2019
117
extern SDL_HIDAPI_DeviceDriver SDL_HIDAPI_DriverXbox360W;
118
extern SDL_HIDAPI_DeviceDriver SDL_HIDAPI_DriverXboxOne;
Dec 19, 2019
Dec 19, 2019
119
extern SDL_HIDAPI_DeviceDriver SDL_HIDAPI_DriverGameCube;
120
121
/* Return true if a HID device is present and supported as a joystick */
Oct 22, 2019
Oct 22, 2019
122
extern SDL_bool HIDAPI_IsDevicePresent(Uint16 vendor_id, Uint16 product_id, Uint16 version, const char *name);
Dec 19, 2019
Dec 19, 2019
124
extern void HIDAPI_UpdateDevices(void);
Mar 16, 2020
Mar 16, 2020
125
126
extern SDL_bool HIDAPI_JoystickConnected(SDL_HIDAPI_Device *device, SDL_JoystickID *pJoystickID, SDL_bool is_external);
extern void HIDAPI_JoystickDisconnected(SDL_HIDAPI_Device *device, SDL_JoystickID joystickID, SDL_bool is_external);
Dec 19, 2019
Dec 19, 2019
127
128
129
130
#endif /* SDL_JOYSTICK_HIDAPI_H */
/* vi: set ts=4 sw=4 expandtab: */