Skip to content

Latest commit

 

History

History
639 lines (555 loc) · 22.8 KB

SDL_hidapi_xboxone.c

File metadata and controls

639 lines (555 loc) · 22.8 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
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"
#ifdef SDL_JOYSTICK_HIDAPI
#include "SDL_hints.h"
#include "SDL_log.h"
#include "SDL_events.h"
#include "SDL_timer.h"
#include "SDL_joystick.h"
#include "SDL_gamecontroller.h"
#include "../SDL_sysjoystick.h"
#include "SDL_hidapijoystick_c.h"
Feb 4, 2020
Feb 4, 2020
33
#include "SDL_hidapi_rumble.h"
34
35
36
37
#ifdef SDL_JOYSTICK_HIDAPI_XBOXONE
Jan 16, 2020
Jan 16, 2020
38
39
40
/* Define this if you want to log all packets from the controller */
/*#define DEBUG_XBOX_PROTOCOL*/
Nov 21, 2019
Nov 21, 2019
41
/* The amount of time to wait after hotplug to send controller init sequence */
Jan 16, 2020
Jan 16, 2020
42
#define CONTROLLER_INIT_DELAY_MS 1500 /* 475 for Xbox One S, 1275 for the PDP Battlefield 1 */
Nov 21, 2019
Nov 21, 2019
43
Jan 16, 2020
Jan 16, 2020
44
45
46
/* Connect controller */
static const Uint8 xboxone_init0[] = {
0x04, 0x20, 0x00, 0x00
Nov 28, 2019
Nov 28, 2019
47
};
Jan 20, 2020
Jan 20, 2020
48
/* Initial ack */
Jan 16, 2020
Jan 16, 2020
49
50
51
static const Uint8 xboxone_init1[] = {
0x01, 0x20, 0x01, 0x09, 0x00, 0x04, 0x20, 0x3a,
0x00, 0x00, 0x00, 0x80, 0x00
Nov 28, 2019
Nov 28, 2019
52
};
Jan 16, 2020
Jan 16, 2020
53
54
55
/* Start controller - extended? */
static const Uint8 xboxone_init2[] = {
0x05, 0x20, 0x00, 0x0F, 0x06, 0x00, 0x00, 0x00,
Nov 28, 2019
Nov 28, 2019
56
57
58
0x00, 0x00, 0x00, 0x55, 0x53, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00
};
Jan 16, 2020
Jan 16, 2020
59
60
/* Start controller with input */
static const Uint8 xboxone_init3[] = {
Nov 28, 2019
Nov 28, 2019
61
62
0x05, 0x20, 0x03, 0x01, 0x00
};
Jan 16, 2020
Jan 16, 2020
63
64
65
/* Enable LED */
static const Uint8 xboxone_init4[] = {
0x0A, 0x20, 0x00, 0x03, 0x00, 0x01, 0x14
Dec 14, 2019
Dec 14, 2019
66
};
Jan 16, 2020
Jan 16, 2020
67
68
/* Start input reports? */
static const Uint8 xboxone_init5[] = {
69
70
0x06, 0x20, 0x00, 0x02, 0x01, 0x00
};
Jan 16, 2020
Jan 16, 2020
71
72
/* Start rumble? */
static const Uint8 xboxone_init6[] = {
73
0x09, 0x00, 0x00, 0x09, 0x00, 0x0F, 0x00, 0x00,
Jan 16, 2020
Jan 16, 2020
74
0x00, 0x00, 0xFF, 0x00, 0xEB
Jan 16, 2020
Jan 16, 2020
77
static const Uint8 xboxone_rumble_reset[] = {
78
79
80
81
82
83
84
85
86
87
88
89
90
0x09, 0x00, 0x00, 0x09, 0x00, 0x0F, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00
};
/*
* This specifies the selection of init packets that a gamepad
* will be sent on init *and* the order in which they will be
* sent. The correct sequence number will be added when the
* packet is going to be sent.
*/
typedef struct {
Uint16 vendor_id;
Uint16 product_id;
Jan 16, 2020
Jan 16, 2020
91
92
Uint16 exclude_vendor_id;
Uint16 exclude_product_id;
93
94
const Uint8 *data;
int size;
Jan 16, 2020
Jan 16, 2020
95
const Uint8 response[2];
96
97
} SDL_DriverXboxOne_InitPacket;
Nov 28, 2019
Nov 28, 2019
98
99
static const SDL_DriverXboxOne_InitPacket xboxone_init_packets[] = {
Jan 16, 2020
Jan 16, 2020
100
101
102
103
104
{ 0x0000, 0x0000, 0x0000, 0x0000, xboxone_init0, sizeof(xboxone_init0), { 0x04, 0xf0 } },
{ 0x0000, 0x0000, 0x0000, 0x0000, xboxone_init1, sizeof(xboxone_init1), { 0x04, 0xb0 } },
{ 0x0000, 0x0000, 0x0000, 0x0000, xboxone_init2, sizeof(xboxone_init2), { 0x00, 0x00 } },
{ 0x0000, 0x0000, 0x0000, 0x0000, xboxone_init3, sizeof(xboxone_init3), { 0x00, 0x00 } },
{ 0x0000, 0x0000, 0x0000, 0x0000, xboxone_init4, sizeof(xboxone_init4), { 0x00, 0x00 } },
Jan 16, 2020
Jan 16, 2020
105
Jan 16, 2020
Jan 16, 2020
106
/* These next packets are required for third party controllers (PowerA, PDP, HORI),
Jan 16, 2020
Jan 16, 2020
107
but aren't the correct protocol for Microsoft Xbox controllers.
Jan 16, 2020
Jan 16, 2020
108
109
110
*/
{ 0x0000, 0x0000, 0x045e, 0x0000, xboxone_init5, sizeof(xboxone_init5), { 0x00, 0x00 } },
{ 0x0000, 0x0000, 0x045e, 0x0000, xboxone_init6, sizeof(xboxone_init6), { 0x00, 0x00 } },
111
112
113
};
typedef struct {
Nov 21, 2019
Nov 21, 2019
114
115
116
117
Uint16 vendor_id;
Uint16 product_id;
Uint32 start_time;
SDL_bool initialized;
118
119
Uint8 sequence;
Uint8 last_state[USB_PACKET_LENGTH];
Jan 16, 2020
Jan 16, 2020
120
SDL_bool rumble_synchronized;
Feb 7, 2020
Feb 7, 2020
121
SDL_bool rumble_synchronization_complete;
Jan 16, 2020
Jan 16, 2020
122
SDL_bool has_paddles;
123
124
125
} SDL_DriverXboxOne_Context;
Jan 16, 2020
Jan 16, 2020
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#ifdef DEBUG_XBOX_PROTOCOL
static void
DumpPacket(const char *prefix, Uint8 *data, int size)
{
int i;
char buffer[5*USB_PACKET_LENGTH];
SDL_snprintf(buffer, sizeof(buffer), prefix, size);
for (i = 0; i < size; ++i) {
if ((i % 8) == 0) {
SDL_snprintf(&buffer[SDL_strlen(buffer)], sizeof(buffer) - SDL_strlen(buffer), "\n%.2d: ", i);
}
SDL_snprintf(&buffer[SDL_strlen(buffer)], sizeof(buffer) - SDL_strlen(buffer), " 0x%.2x", data[i]);
}
SDL_strlcat(buffer, "\n", sizeof(buffer));
SDL_Log("%s", buffer);
}
#endif /* DEBUG_XBOX_PROTOCOL */
Nov 18, 2019
Nov 18, 2019
145
146
147
148
static SDL_bool
IsBluetoothXboxOneController(Uint16 vendor_id, Uint16 product_id)
{
/* Check to see if it's the Xbox One S or Xbox One Elite Series 2 in Bluetooth mode */
Nov 28, 2019
Nov 28, 2019
149
if (vendor_id == USB_VENDOR_MICROSOFT) {
Jan 13, 2020
Jan 13, 2020
150
151
152
if (product_id == USB_PRODUCT_XBOX_ONE_S_REV1_BLUETOOTH ||
product_id == USB_PRODUCT_XBOX_ONE_S_REV2_BLUETOOTH ||
product_id == USB_PRODUCT_XBOX_ONE_ELITE_SERIES_2_BLUETOOTH) {
Nov 28, 2019
Nov 28, 2019
153
154
return SDL_TRUE;
}
Nov 18, 2019
Nov 18, 2019
155
156
157
158
}
return SDL_FALSE;
}
Jan 16, 2020
Jan 16, 2020
159
160
161
162
static SDL_bool
ControllerHasPaddles(Uint16 vendor_id, Uint16 product_id)
{
if (vendor_id == USB_VENDOR_MICROSOFT) {
Jan 22, 2020
Jan 22, 2020
163
164
if (product_id == USB_PRODUCT_XBOX_ONE_ELITE_SERIES_1 ||
product_id == USB_PRODUCT_XBOX_ONE_ELITE_SERIES_2) {
Jan 16, 2020
Jan 16, 2020
165
166
167
168
169
170
return SDL_TRUE;
}
}
return SDL_FALSE;
}
Jan 16, 2020
Jan 16, 2020
171
172
173
174
static SDL_bool
ControllerNeedsRumbleSequenceSynchronized(Uint16 vendor_id, Uint16 product_id)
{
if (vendor_id == USB_VENDOR_MICROSOFT) {
Jan 16, 2020
Jan 16, 2020
175
176
/* All Xbox One controllers, from model 1537 through Elite Series 2, appear to need this */
return SDL_TRUE;
Jan 16, 2020
Jan 16, 2020
177
178
179
180
181
}
return SDL_FALSE;
}
static SDL_bool
Feb 4, 2020
Feb 4, 2020
182
SynchronizeRumbleSequence(SDL_HIDAPI_Device *device, SDL_DriverXboxOne_Context *ctx)
Jan 16, 2020
Jan 16, 2020
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
{
Uint16 vendor_id = ctx->vendor_id;
Uint16 product_id = ctx->product_id;
if (ctx->rumble_synchronized) {
return SDL_TRUE;
}
if (ControllerNeedsRumbleSequenceSynchronized(vendor_id, product_id)) {
int i;
Uint8 init_packet[USB_PACKET_LENGTH];
SDL_memcpy(init_packet, xboxone_rumble_reset, sizeof(xboxone_rumble_reset));
for (i = 0; i < 255; ++i) {
init_packet[2] = ((ctx->sequence + i) % 255);
Feb 7, 2020
Feb 7, 2020
198
199
200
201
if (SDL_HIDAPI_LockRumble() < 0) {
return SDL_FALSE;
}
if (SDL_HIDAPI_SendRumbleAndUnlock(device, init_packet, sizeof(xboxone_rumble_reset)) != sizeof(xboxone_rumble_reset)) {
Jan 16, 2020
Jan 16, 2020
202
203
204
205
206
207
208
209
210
211
SDL_SetError("Couldn't write Xbox One initialization packet");
return SDL_FALSE;
}
}
}
ctx->rumble_synchronized = SDL_TRUE;
return SDL_TRUE;
}
Jan 13, 2020
Jan 13, 2020
212
/* Return true if this controller sends the 0x02 "waiting for init" packet */
Jan 9, 2020
Jan 9, 2020
213
static SDL_bool
Jan 13, 2020
Jan 13, 2020
214
ControllerSendsWaitingForInit(Uint16 vendor_id, Uint16 product_id)
Jan 9, 2020
Jan 9, 2020
215
{
Jan 13, 2020
Jan 13, 2020
216
217
218
219
220
if (vendor_id == USB_VENDOR_HYPERKIN) {
/* The Hyperkin controllers always send 0x02 when waiting for init,
and the Hyperkin Duke plays an Xbox startup animation, so we want
to make sure we don't send the init sequence if it isn't needed.
*/
Jan 9, 2020
Jan 9, 2020
221
return SDL_TRUE;
Jan 16, 2020
Jan 16, 2020
222
223
224
}
if (vendor_id == USB_VENDOR_PDP) {
/* The PDP Rock Candy (PID 0x0246) doesn't send 0x02 on Linux for some reason */
Jan 13, 2020
Jan 13, 2020
225
return SDL_FALSE;
Jan 9, 2020
Jan 9, 2020
226
}
Jan 16, 2020
Jan 16, 2020
227
228
229
230
/* It doesn't hurt to reinit, especially if a driver has misconfigured the controller */
/*return SDL_TRUE;*/
return SDL_FALSE;
Jan 9, 2020
Jan 9, 2020
231
232
}
Nov 21, 2019
Nov 21, 2019
233
static SDL_bool
Feb 4, 2020
Feb 4, 2020
234
SendControllerInit(SDL_HIDAPI_Device *device, SDL_DriverXboxOne_Context *ctx)
Nov 21, 2019
Nov 21, 2019
235
236
237
238
239
{
Uint16 vendor_id = ctx->vendor_id;
Uint16 product_id = ctx->product_id;
if (!IsBluetoothXboxOneController(vendor_id, product_id)) {
Jan 16, 2020
Jan 16, 2020
240
int i;
Nov 21, 2019
Nov 21, 2019
241
242
243
244
245
246
247
248
249
250
251
252
253
Uint8 init_packet[USB_PACKET_LENGTH];
for (i = 0; i < SDL_arraysize(xboxone_init_packets); ++i) {
const SDL_DriverXboxOne_InitPacket *packet = &xboxone_init_packets[i];
if (packet->vendor_id && (vendor_id != packet->vendor_id)) {
continue;
}
if (packet->product_id && (product_id != packet->product_id)) {
continue;
}
Jan 16, 2020
Jan 16, 2020
254
255
256
257
258
259
260
261
if (packet->exclude_vendor_id && (vendor_id == packet->exclude_vendor_id)) {
continue;
}
if (packet->exclude_product_id && (product_id == packet->exclude_product_id)) {
continue;
}
Nov 21, 2019
Nov 21, 2019
262
SDL_memcpy(init_packet, packet->data, packet->size);
Jan 16, 2020
Jan 16, 2020
263
264
265
if (init_packet[0] != 0x01) {
init_packet[2] = ctx->sequence++;
}
Feb 4, 2020
Feb 4, 2020
266
if (hid_write(device->dev, init_packet, packet->size) != packet->size) {
Nov 21, 2019
Nov 21, 2019
267
268
269
SDL_SetError("Couldn't write Xbox One initialization packet");
return SDL_FALSE;
}
Dec 10, 2019
Dec 10, 2019
270
Jan 16, 2020
Jan 16, 2020
271
272
273
274
275
276
277
278
279
if (packet->response[0]) {
const Uint32 RESPONSE_TIMEOUT_MS = 50;
Uint32 start = SDL_GetTicks();
SDL_bool got_response = SDL_FALSE;
while (!got_response && !SDL_TICKS_PASSED(SDL_GetTicks(), start + RESPONSE_TIMEOUT_MS)) {
Uint8 data[USB_PACKET_LENGTH];
int size;
Feb 4, 2020
Feb 4, 2020
280
while ((size = hid_read_timeout(device->dev, data, sizeof(data), 0)) > 0) {
Jan 16, 2020
Jan 16, 2020
281
#ifdef DEBUG_XBOX_PROTOCOL
Jan 16, 2020
Jan 16, 2020
282
DumpPacket("Xbox One INIT packet: size = %d", data, size);
Jan 16, 2020
Jan 16, 2020
283
284
285
286
#endif
if (size >= 2 && data[0] == packet->response[0] && data[1] == packet->response[1]) {
got_response = SDL_TRUE;
}
Dec 10, 2019
Dec 10, 2019
287
288
}
}
Jan 16, 2020
Jan 16, 2020
289
290
291
#ifdef DEBUG_XBOX_PROTOCOL
SDL_Log("Init sequence %d got response: %s\n", i, got_response ? "TRUE" : "FALSE");
#endif
Dec 10, 2019
Dec 10, 2019
292
}
Nov 21, 2019
Nov 21, 2019
293
294
}
}
Jan 16, 2020
Jan 16, 2020
295
Feb 4, 2020
Feb 4, 2020
296
SynchronizeRumbleSequence(device, ctx);
Jan 16, 2020
Jan 16, 2020
297
Nov 21, 2019
Nov 21, 2019
298
299
300
return SDL_TRUE;
}
Jan 19, 2020
Jan 19, 2020
302
HIDAPI_DriverXboxOne_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)
Nov 17, 2019
Nov 17, 2019
304
#ifdef __LINUX__
Nov 18, 2019
Nov 18, 2019
305
if (IsBluetoothXboxOneController(vendor_id, product_id)) {
Nov 17, 2019
Nov 17, 2019
306
307
308
/* We can't do rumble on this device, hid_write() fails, so don't try to open it here */
return SDL_FALSE;
}
Jan 18, 2020
Jan 18, 2020
309
if (vendor_id == USB_VENDOR_POWERA && product_id == 0x541a) {
Dec 10, 2019
Dec 10, 2019
310
/* The PowerA Mini controller, model 1240245-01, blocks while writing feature reports */
Dec 9, 2019
Dec 9, 2019
311
312
return SDL_FALSE;
}
Nov 17, 2019
Nov 17, 2019
313
#endif
Jan 19, 2020
Jan 19, 2020
314
return (type == SDL_CONTROLLER_TYPE_XBOXONE);
315
316
317
318
319
}
static const char *
HIDAPI_DriverXboxOne_GetDeviceName(Uint16 vendor_id, Uint16 product_id)
{
Dec 12, 2019
Dec 12, 2019
320
return NULL;
321
322
323
}
static SDL_bool
Dec 19, 2019
Dec 19, 2019
324
325
326
327
328
HIDAPI_DriverXboxOne_InitDevice(SDL_HIDAPI_Device *device)
{
return HIDAPI_JoystickConnected(device, NULL);
}
Dec 21, 2019
Dec 21, 2019
329
330
331
332
333
334
335
336
337
338
339
static int
HIDAPI_DriverXboxOne_GetDevicePlayerIndex(SDL_HIDAPI_Device *device, SDL_JoystickID instance_id)
{
return -1;
}
static void
HIDAPI_DriverXboxOne_SetDevicePlayerIndex(SDL_HIDAPI_Device *device, SDL_JoystickID instance_id, int player_index)
{
}
Dec 19, 2019
Dec 19, 2019
340
341
static SDL_bool
HIDAPI_DriverXboxOne_OpenJoystick(SDL_HIDAPI_Device *device, SDL_Joystick *joystick)
342
343
344
345
346
347
348
349
350
{
SDL_DriverXboxOne_Context *ctx;
ctx = (SDL_DriverXboxOne_Context *)SDL_calloc(1, sizeof(*ctx));
if (!ctx) {
SDL_OutOfMemory();
return SDL_FALSE;
}
Dec 19, 2019
Dec 19, 2019
351
352
353
354
355
356
357
358
359
360
device->dev = hid_open_path(device->path, 0);
if (!device->dev) {
SDL_free(ctx);
SDL_SetError("Couldn't open %s", device->path);
return SDL_FALSE;
}
device->context = ctx;
ctx->vendor_id = device->vendor_id;
ctx->product_id = device->product_id;
Nov 21, 2019
Nov 21, 2019
361
ctx->start_time = SDL_GetTicks();
Jan 16, 2020
Jan 16, 2020
362
ctx->sequence = 1;
Jan 16, 2020
Jan 16, 2020
363
ctx->has_paddles = ControllerHasPaddles(ctx->vendor_id, ctx->product_id);
364
365
/* Initialize the joystick capabilities */
Jan 16, 2020
Jan 16, 2020
366
joystick->nbuttons = ctx->has_paddles ? SDL_CONTROLLER_BUTTON_MAX : (SDL_CONTROLLER_BUTTON_MAX + 4);
367
368
369
370
371
372
373
joystick->naxes = SDL_CONTROLLER_AXIS_MAX;
joystick->epowerlevel = SDL_JOYSTICK_POWER_WIRED;
return SDL_TRUE;
}
static int
Feb 4, 2020
Feb 4, 2020
374
HIDAPI_DriverXboxOne_RumbleJoystick(SDL_HIDAPI_Device *device, SDL_Joystick *joystick, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble)
Dec 19, 2019
Dec 19, 2019
376
SDL_DriverXboxOne_Context *ctx = (SDL_DriverXboxOne_Context *)device->context;
377
Uint8 rumble_packet[] = { 0x09, 0x00, 0x00, 0x09, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0xFF };
Feb 7, 2020
Feb 7, 2020
378
379
380
Uint8 *pending_rumble;
int *pending_size;
int maximum_size;
Feb 4, 2020
Feb 4, 2020
382
SynchronizeRumbleSequence(device, ctx);
Nov 21, 2019
Nov 21, 2019
383
Feb 7, 2020
Feb 7, 2020
384
385
386
if (SDL_HIDAPI_LockRumble() < 0) {
return -1;
}
Feb 7, 2020
Feb 7, 2020
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
if (!ctx->rumble_synchronization_complete) {
if (!SDL_HIDAPI_GetPendingRumbleLocked(device, &pending_rumble, &pending_size, &maximum_size)) {
/* Rumble synchronization has drained */
ctx->rumble_synchronization_complete = SDL_TRUE;
}
}
/* Try to overwrite any pending rumble with the new value */
if (ctx->rumble_synchronization_complete &&
SDL_HIDAPI_GetPendingRumbleLocked(device, &pending_rumble, &pending_size, &maximum_size)) {
/* Magnitude is 1..100 so scale the 16-bit input here */
pending_rumble[8] = low_frequency_rumble / 655;
pending_rumble[9] = high_frequency_rumble / 655;
SDL_HIDAPI_UnlockRumble();
} else {
/* Magnitude is 1..100 so scale the 16-bit input here */
rumble_packet[2] = ctx->sequence++;
rumble_packet[8] = low_frequency_rumble / 655;
rumble_packet[9] = high_frequency_rumble / 655;
if (SDL_HIDAPI_SendRumbleAndUnlock(device, rumble_packet, sizeof(rumble_packet)) != sizeof(rumble_packet)) {
return SDL_SetError("Couldn't send rumble packet");
}
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
}
return 0;
}
static void
HIDAPI_DriverXboxOne_HandleStatePacket(SDL_Joystick *joystick, hid_device *dev, SDL_DriverXboxOne_Context *ctx, Uint8 *data, int size)
{
Sint16 axis;
if (ctx->last_state[4] != data[4]) {
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_START, (data[4] & 0x04) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_BACK, (data[4] & 0x08) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_A, (data[4] & 0x10) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_B, (data[4] & 0x20) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_X, (data[4] & 0x40) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_Y, (data[4] & 0x80) ? SDL_PRESSED : SDL_RELEASED);
}
if (ctx->last_state[5] != data[5]) {
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_DPAD_UP, (data[5] & 0x01) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_DPAD_DOWN, (data[5] & 0x02) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_DPAD_LEFT, (data[5] & 0x04) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_DPAD_RIGHT, (data[5] & 0x08) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_LEFTSHOULDER, (data[5] & 0x10) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_RIGHTSHOULDER, (data[5] & 0x20) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_LEFTSTICK, (data[5] & 0x40) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_RIGHTSTICK, (data[5] & 0x80) ? SDL_PRESSED : SDL_RELEASED);
}
Jan 22, 2020
Jan 22, 2020
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
/* Xbox One S report is 18 bytes
Xbox One Elite Series 1 report is 33 bytes, paddles in data[32], mode in data[32] & 0x10, both modes have mapped paddles by default
Paddle bits:
UL: 0x01 (A) UR: 0x02 (B)
LL: 0x04 (X) LR: 0x08 (Y)
Xbox One Elite Series 2 report is 38 bytes, paddles in data[18], mode in data[19], mode 0 has no mapped paddles by default
Paddle bits:
UL: 0x04 (A) UR: 0x01 (B)
LL: 0x08 (X) LR: 0x02 (Y)
*/
if (ctx->has_paddles && (size == 33 || size == 38)) {
int paddle_index;
int button1_bit;
int button2_bit;
int button3_bit;
int button4_bit;
SDL_bool paddles_mapped;
if (size == 33) {
/* XBox One Elite Series 1 */
paddle_index = 32;
button1_bit = 0x01;
button2_bit = 0x02;
button3_bit = 0x04;
button4_bit = 0x08;
/* The mapped controller state is at offset 4, the raw state is at offset 18, compare them to see if the paddles are mapped */
paddles_mapped = (SDL_memcmp(&data[4], &data[18], 14) != 0);
Jan 24, 2020
Jan 24, 2020
469
} else /* if (size == 38) */ {
Jan 22, 2020
Jan 22, 2020
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
/* XBox One Elite Series 2 */
paddle_index = 18;
button1_bit = 0x04;
button2_bit = 0x01;
button3_bit = 0x08;
button4_bit = 0x02;
paddles_mapped = (data[19] != 0);
}
#ifdef DEBUG_XBOX_PROTOCOL
SDL_Log(">>> Paddles: %d,%d,%d,%d mapped = %s\n",
(data[paddle_index] & button1_bit) ? 1 : 0,
(data[paddle_index] & button2_bit) ? 1 : 0,
(data[paddle_index] & button3_bit) ? 1 : 0,
(data[paddle_index] & button4_bit) ? 1 : 0,
paddles_mapped ? "TRUE" : "FALSE"
);
#endif
if (paddles_mapped) {
Jan 16, 2020
Jan 16, 2020
489
/* Respect that the paddles are being used for other controls and don't pass them on to the app */
Jan 22, 2020
Jan 22, 2020
490
data[paddle_index] = 0;
Jan 16, 2020
Jan 16, 2020
491
}
Jan 22, 2020
Jan 22, 2020
492
493
494
495
496
497
if (ctx->last_state[paddle_index] != data[paddle_index]) {
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_MAX+0, (data[paddle_index] & button1_bit) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_MAX+1, (data[paddle_index] & button2_bit) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_MAX+2, (data[paddle_index] & button3_bit) ? SDL_PRESSED : SDL_RELEASED);
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_MAX+3, (data[paddle_index] & button4_bit) ? SDL_PRESSED : SDL_RELEASED);
Jan 16, 2020
Jan 16, 2020
498
499
500
}
}
501
axis = ((int)*(Sint16*)(&data[6]) * 64) - 32768;
Aug 30, 2018
Aug 30, 2018
502
503
504
if (axis == 32704) {
axis = 32767;
}
505
506
SDL_PrivateJoystickAxis(joystick, SDL_CONTROLLER_AXIS_TRIGGERLEFT, axis);
axis = ((int)*(Sint16*)(&data[8]) * 64) - 32768;
Aug 30, 2018
Aug 30, 2018
507
508
509
if (axis == 32704) {
axis = 32767;
}
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
SDL_PrivateJoystickAxis(joystick, SDL_CONTROLLER_AXIS_TRIGGERRIGHT, axis);
axis = *(Sint16*)(&data[10]);
SDL_PrivateJoystickAxis(joystick, SDL_CONTROLLER_AXIS_LEFTX, axis);
axis = *(Sint16*)(&data[12]);
SDL_PrivateJoystickAxis(joystick, SDL_CONTROLLER_AXIS_LEFTY, ~axis);
axis = *(Sint16*)(&data[14]);
SDL_PrivateJoystickAxis(joystick, SDL_CONTROLLER_AXIS_RIGHTX, axis);
axis = *(Sint16*)(&data[16]);
SDL_PrivateJoystickAxis(joystick, SDL_CONTROLLER_AXIS_RIGHTY, ~axis);
SDL_memcpy(ctx->last_state, data, SDL_min(size, sizeof(ctx->last_state)));
}
static void
HIDAPI_DriverXboxOne_HandleModePacket(SDL_Joystick *joystick, hid_device *dev, SDL_DriverXboxOne_Context *ctx, Uint8 *data, int size)
{
if (data[1] == 0x30) {
/* The Xbox One S controller needs acks for mode reports */
const Uint8 seqnum = data[2];
const Uint8 ack[] = { 0x01, 0x20, seqnum, 0x09, 0x00, 0x07, 0x20, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 };
hid_write(dev, ack, sizeof(ack));
}
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_GUIDE, (data[4] & 0x01) ? SDL_PRESSED : SDL_RELEASED);
}
Aug 16, 2018
Aug 16, 2018
536
static SDL_bool
Dec 19, 2019
Dec 19, 2019
537
HIDAPI_DriverXboxOne_UpdateDevice(SDL_HIDAPI_Device *device)
Dec 19, 2019
Dec 19, 2019
539
540
SDL_DriverXboxOne_Context *ctx = (SDL_DriverXboxOne_Context *)device->context;
SDL_Joystick *joystick = NULL;
541
542
543
Uint8 data[USB_PACKET_LENGTH];
int size;
Dec 19, 2019
Dec 19, 2019
544
545
546
547
548
549
550
if (device->num_joysticks > 0) {
joystick = SDL_JoystickFromInstanceID(device->joysticks[0]);
}
if (!joystick) {
return SDL_FALSE;
}
Jan 16, 2020
Jan 16, 2020
551
552
if (!ctx->initialized &&
!ControllerSendsWaitingForInit(device->vendor_id, device->product_id)) {
Nov 21, 2019
Nov 21, 2019
553
if (SDL_TICKS_PASSED(SDL_GetTicks(), ctx->start_time + CONTROLLER_INIT_DELAY_MS)) {
Feb 4, 2020
Feb 4, 2020
554
if (!SendControllerInit(device, ctx)) {
Dec 19, 2019
Dec 19, 2019
555
HIDAPI_JoystickDisconnected(device, joystick->instance_id);
Nov 21, 2019
Nov 21, 2019
556
557
558
559
560
561
return SDL_FALSE;
}
ctx->initialized = SDL_TRUE;
}
}
Dec 19, 2019
Dec 19, 2019
562
while ((size = hid_read_timeout(device->dev, data, sizeof(data), 0)) > 0) {
Nov 17, 2019
Nov 17, 2019
563
#ifdef DEBUG_XBOX_PROTOCOL
Jan 16, 2020
Jan 16, 2020
564
DumpPacket("Xbox One packet: size = %d", data, size);
Nov 17, 2019
Nov 17, 2019
565
#endif
Jan 9, 2020
Jan 9, 2020
567
568
case 0x02:
/* Controller is connected and waiting for initialization */
Jan 16, 2020
Jan 16, 2020
569
570
571
572
if (!ctx->initialized) {
#ifdef DEBUG_XBOX_PROTOCOL
SDL_Log("Delay after init: %ums\n", SDL_GetTicks() - ctx->start_time);
#endif
Feb 4, 2020
Feb 4, 2020
573
if (!SendControllerInit(device, ctx)) {
Jan 16, 2020
Jan 16, 2020
574
575
576
577
HIDAPI_JoystickDisconnected(device, joystick->instance_id);
return SDL_FALSE;
}
ctx->initialized = SDL_TRUE;
Jan 9, 2020
Jan 9, 2020
578
579
580
581
582
}
break;
case 0x03:
/* Controller heartbeat */
break;
Dec 19, 2019
Dec 19, 2019
584
HIDAPI_DriverXboxOne_HandleStatePacket(joystick, device->dev, ctx, data, size);
Dec 19, 2019
Dec 19, 2019
587
HIDAPI_DriverXboxOne_HandleModePacket(joystick, device->dev, ctx, data, size);
588
589
590
591
592
593
594
595
596
break;
default:
#ifdef DEBUG_JOYSTICK
SDL_Log("Unknown Xbox One packet: 0x%.2x\n", data[0]);
#endif
break;
}
}
Dec 19, 2019
Dec 19, 2019
597
598
599
600
if (size < 0) {
/* Read error, device is disconnected */
HIDAPI_JoystickDisconnected(device, joystick->instance_id);
}
Aug 30, 2018
Aug 30, 2018
601
return (size >= 0);
Jun 19, 2019
Jun 19, 2019
604
static void
Dec 19, 2019
Dec 19, 2019
605
606
607
608
609
610
611
612
613
614
615
HIDAPI_DriverXboxOne_CloseJoystick(SDL_HIDAPI_Device *device, SDL_Joystick *joystick)
{
hid_close(device->dev);
device->dev = NULL;
SDL_free(device->context);
device->context = NULL;
}
static void
HIDAPI_DriverXboxOne_FreeDevice(SDL_HIDAPI_Device *device)
Jun 19, 2019
Jun 19, 2019
616
617
618
{
}
619
620
SDL_HIDAPI_DeviceDriver SDL_HIDAPI_DriverXboxOne =
{
Aug 16, 2018
Aug 16, 2018
621
SDL_HINT_JOYSTICK_HIDAPI_XBOX,
622
623
624
SDL_TRUE,
HIDAPI_DriverXboxOne_IsSupportedDevice,
HIDAPI_DriverXboxOne_GetDeviceName,
Dec 19, 2019
Dec 19, 2019
625
HIDAPI_DriverXboxOne_InitDevice,
Dec 21, 2019
Dec 21, 2019
626
627
HIDAPI_DriverXboxOne_GetDevicePlayerIndex,
HIDAPI_DriverXboxOne_SetDevicePlayerIndex,
Dec 19, 2019
Dec 19, 2019
628
629
630
631
632
HIDAPI_DriverXboxOne_UpdateDevice,
HIDAPI_DriverXboxOne_OpenJoystick,
HIDAPI_DriverXboxOne_RumbleJoystick,
HIDAPI_DriverXboxOne_CloseJoystick,
HIDAPI_DriverXboxOne_FreeDevice
633
634
635
636
637
638
639
};
#endif /* SDL_JOYSTICK_HIDAPI_XBOXONE */
#endif /* SDL_JOYSTICK_HIDAPI */
/* vi: set ts=4 sw=4 expandtab: */