Skip to content

Latest commit

 

History

History
1377 lines (1179 loc) · 41 KB

SDL_sysjoystick.c

File metadata and controls

1377 lines (1179 loc) · 41 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
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_LINUX
#ifndef SDL_INPUT_LINUXEV
#error SDL now requires a Linux 2.4+ kernel with /dev/input/event support.
#endif
/* This is the Linux implementation of the SDL joystick API */
#include <sys/stat.h>
Aug 9, 2018
Aug 9, 2018
32
#include <errno.h> /* errno, strerror */
33
34
#include <fcntl.h>
#include <limits.h> /* For the definition of PATH_MAX */
Aug 9, 2018
Aug 9, 2018
35
36
#include <sys/ioctl.h>
#include <unistd.h>
Jun 25, 2019
Jun 25, 2019
37
#include <dirent.h>
38
39
40
#include <linux/joystick.h>
#include "SDL_assert.h"
Jul 21, 2020
Jul 21, 2020
41
#include "SDL_hints.h"
42
43
#include "SDL_joystick.h"
#include "SDL_endian.h"
Jun 25, 2019
Jun 25, 2019
44
#include "SDL_timer.h"
Sep 22, 2017
Sep 22, 2017
45
#include "../../events/SDL_events_c.h"
46
47
#include "../SDL_sysjoystick.h"
#include "../SDL_joystick_c.h"
Sep 22, 2017
Sep 22, 2017
48
#include "../steam/SDL_steamcontroller.h"
49
#include "SDL_sysjoystick_c.h"
Aug 9, 2018
Aug 9, 2018
50
#include "../hidapi/SDL_hidapijoystick_c.h"
51
52
53
54
55
/* This isn't defined in older Linux kernel headers */
#ifndef SYN_DROPPED
#define SYN_DROPPED 3
#endif
Jun 9, 2020
Jun 9, 2020
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#ifndef BTN_SOUTH
#define BTN_SOUTH 0x130
#endif
#ifndef BTN_EAST
#define BTN_EAST 0x131
#endif
#ifndef BTN_NORTH
#define BTN_NORTH 0x133
#endif
#ifndef BTN_WEST
#define BTN_WEST 0x134
#endif
#ifndef BTN_DPAD_UP
#define BTN_DPAD_UP 0x220
#endif
#ifndef BTN_DPAD_DOWN
#define BTN_DPAD_DOWN 0x221
#endif
#ifndef BTN_DPAD_LEFT
#define BTN_DPAD_LEFT 0x222
#endif
#ifndef BTN_DPAD_RIGHT
#define BTN_DPAD_RIGHT 0x223
#endif
80
81
82
#include "../../core/linux/SDL_udev.h"
Jun 28, 2020
Jun 28, 2020
83
84
85
86
#if 0
#define DEBUG_INPUT_EVENTS 1
#endif
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
static int MaybeAddDevice(const char *path);
#if SDL_USE_LIBUDEV
static int MaybeRemoveDevice(const char *path);
#endif /* SDL_USE_LIBUDEV */
/* A linked list of available joysticks */
typedef struct SDL_joylist_item
{
int device_instance;
char *path; /* "/dev/input/event2" or whatever */
char *name; /* "SideWinder 3D Pro" or whatever */
SDL_JoystickGUID guid;
dev_t devnum;
struct joystick_hwdata *hwdata;
struct SDL_joylist_item *next;
Sep 22, 2017
Sep 22, 2017
102
103
104
/* Steam Controller support */
SDL_bool m_bSteamController;
105
106
107
108
109
110
} SDL_joylist_item;
static SDL_joylist_item *SDL_joylist = NULL;
static SDL_joylist_item *SDL_joylist_tail = NULL;
static int numjoysticks = 0;
Jun 25, 2019
Jun 25, 2019
111
#if !SDL_USE_LIBUDEV
Nov 21, 2019
Nov 21, 2019
112
113
static Uint32 last_joy_detect_time;
static time_t last_input_dir_mtime;
Jun 25, 2019
Jun 25, 2019
114
#endif
Sep 22, 2017
Sep 22, 2017
115
116
117
118
119
#define test_bit(nr, addr) \
(((1UL << ((nr) % (sizeof(long) * 8))) & ((addr)[(nr) / (sizeof(long) * 8)])) != 0)
#define NBITS(x) ((((x)-1)/(sizeof(long) * 8))+1)
Jan 23, 2020
Jan 23, 2020
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
static void
FixupDeviceInfoForMapping(int fd, struct input_id *inpid)
{
if (inpid->vendor == 0x045e && inpid->product == 0x0b05 && inpid->version == 0x0903) {
/* This is a Microsoft Xbox One Elite Series 2 controller */
unsigned long keybit[NBITS(KEY_MAX)] = { 0 };
/* The first version of the firmware duplicated all the inputs */
if ((ioctl(fd, EVIOCGBIT(EV_KEY, sizeof(keybit)), keybit) >= 0) &&
test_bit(0x2c0, keybit)) {
/* Change the version to 0x0902, so we can map it differently */
inpid->version = 0x0902;
}
}
}
Mar 23, 2020
Mar 23, 2020
136
137
138
139
140
141
142
143
144
145
146
147
#ifdef SDL_JOYSTICK_HIDAPI
static SDL_bool
IsVirtualJoystick(Uint16 vendor, Uint16 product, Uint16 version, const char *name)
{
if (vendor == USB_VENDOR_MICROSOFT && product == USB_PRODUCT_XBOX_ONE_S && version == 0 &&
SDL_strcmp(name, "Xbox One S Controller") == 0) {
/* This is the virtual device created by the xow driver */
return SDL_TRUE;
}
return SDL_FALSE;
}
#endif /* SDL_JOYSTICK_HIDAPI */
Jan 23, 2020
Jan 23, 2020
148
Mar 13, 2020
Mar 13, 2020
150
IsJoystick(int fd, char **name_return, SDL_JoystickGUID *guid)
151
152
{
struct input_id inpid;
Nov 11, 2016
Nov 11, 2016
153
Uint16 *guid16 = (Uint16 *)guid->data;
Mar 13, 2020
Mar 13, 2020
154
155
char *name;
char product_string[128];
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#if !SDL_USE_LIBUDEV
/* When udev is enabled we only get joystick devices here, so there's no need to test them */
unsigned long evbit[NBITS(EV_MAX)] = { 0 };
unsigned long keybit[NBITS(KEY_MAX)] = { 0 };
unsigned long absbit[NBITS(ABS_MAX)] = { 0 };
if ((ioctl(fd, EVIOCGBIT(0, sizeof(evbit)), evbit) < 0) ||
(ioctl(fd, EVIOCGBIT(EV_KEY, sizeof(keybit)), keybit) < 0) ||
(ioctl(fd, EVIOCGBIT(EV_ABS, sizeof(absbit)), absbit) < 0)) {
return (0);
}
if (!(test_bit(EV_KEY, evbit) && test_bit(EV_ABS, evbit) &&
test_bit(ABS_X, absbit) && test_bit(ABS_Y, absbit))) {
return 0;
}
#endif
Dec 12, 2019
Dec 12, 2019
175
if (ioctl(fd, EVIOCGID, &inpid) < 0) {
Mar 13, 2020
Mar 13, 2020
179
180
181
if (ioctl(fd, EVIOCGNAME(sizeof(product_string)), product_string) < 0) {
return 0;
}
Dec 10, 2019
Dec 10, 2019
182
Mar 13, 2020
Mar 13, 2020
183
184
185
name = SDL_CreateJoystickName(inpid.vendor, inpid.product, NULL, product_string);
if (!name) {
return 0;
Aug 9, 2018
Aug 9, 2018
188
#ifdef SDL_JOYSTICK_HIDAPI
Mar 23, 2020
Mar 23, 2020
189
190
if (!IsVirtualJoystick(inpid.vendor, inpid.product, inpid.version, name) &&
HIDAPI_IsDevicePresent(inpid.vendor, inpid.product, inpid.version, name)) {
Aug 9, 2018
Aug 9, 2018
191
/* The HIDAPI driver is taking care of this device */
Mar 13, 2020
Mar 13, 2020
192
SDL_free(name);
Aug 9, 2018
Aug 9, 2018
193
194
195
196
return 0;
}
#endif
Jan 23, 2020
Jan 23, 2020
197
198
FixupDeviceInfoForMapping(fd, &inpid);
199
#ifdef DEBUG_JOYSTICK
Mar 13, 2020
Mar 13, 2020
200
printf("Joystick: %s, bustype = %d, vendor = 0x%.4x, product = 0x%.4x, version = %d\n", name, inpid.bustype, inpid.vendor, inpid.product, inpid.version);
201
202
203
204
205
206
#endif
SDL_memset(guid->data, 0, sizeof(guid->data));
/* We only need 16 bits for each of these; space them out to fill 128. */
/* Byteswap so devices get same GUID on little/big endian platforms. */
Nov 11, 2016
Nov 11, 2016
207
208
209
210
211
212
213
214
215
216
*guid16++ = SDL_SwapLE16(inpid.bustype);
*guid16++ = 0;
if (inpid.vendor && inpid.product) {
*guid16++ = SDL_SwapLE16(inpid.vendor);
*guid16++ = 0;
*guid16++ = SDL_SwapLE16(inpid.product);
*guid16++ = 0;
*guid16++ = SDL_SwapLE16(inpid.version);
*guid16++ = 0;
Mar 13, 2020
Mar 13, 2020
218
SDL_strlcpy((char*)guid16, name, sizeof(guid->data) - 4);
Mar 13, 2020
Mar 13, 2020
221
222
if (SDL_ShouldIgnoreJoystick(name, *guid)) {
SDL_free(name);
Aug 9, 2017
Aug 9, 2017
223
224
return 0;
}
Mar 13, 2020
Mar 13, 2020
225
*name_return = name;
226
227
228
229
return 1;
}
#if SDL_USE_LIBUDEV
Jun 11, 2017
Jun 11, 2017
230
static void joystick_udev_callback(SDL_UDEV_deviceevent udev_type, int udev_class, const char *devpath)
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
{
if (devpath == NULL) {
return;
}
switch (udev_type) {
case SDL_UDEV_DEVICEADDED:
if (!(udev_class & SDL_UDEV_DEVICE_JOYSTICK)) {
return;
}
MaybeAddDevice(devpath);
break;
case SDL_UDEV_DEVICEREMOVED:
MaybeRemoveDevice(devpath);
break;
default:
break;
}
}
#endif /* SDL_USE_LIBUDEV */
static int
MaybeAddDevice(const char *path)
{
struct stat sb;
int fd = -1;
int isstick = 0;
Mar 13, 2020
Mar 13, 2020
261
char *name = NULL;
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
SDL_JoystickGUID guid;
SDL_joylist_item *item;
if (path == NULL) {
return -1;
}
if (stat(path, &sb) == -1) {
return -1;
}
/* Check to make sure it's not already in list. */
for (item = SDL_joylist; item != NULL; item = item->next) {
if (sb.st_rdev == item->devnum) {
return -1; /* already have this one */
}
}
fd = open(path, O_RDONLY, 0);
if (fd < 0) {
return -1;
}
#ifdef DEBUG_INPUT_EVENTS
printf("Checking %s\n", path);
#endif
Mar 13, 2020
Mar 13, 2020
289
isstick = IsJoystick(fd, &name, &guid);
290
291
292
293
294
295
296
297
298
299
300
301
302
close(fd);
if (!isstick) {
return -1;
}
item = (SDL_joylist_item *) SDL_malloc(sizeof (SDL_joylist_item));
if (item == NULL) {
return -1;
}
SDL_zerop(item);
item->devnum = sb.st_rdev;
item->path = SDL_strdup(path);
Mar 13, 2020
Mar 13, 2020
303
item->name = name;
304
305
item->guid = guid;
Aug 9, 2018
Aug 9, 2018
306
if ((item->path == NULL) || (item->name == NULL)) {
307
308
309
310
311
312
SDL_free(item->path);
SDL_free(item->name);
SDL_free(item);
return -1;
}
Aug 9, 2018
Aug 9, 2018
313
item->device_instance = SDL_GetNextJoystickInstanceID();
314
315
316
317
318
319
320
321
322
323
if (SDL_joylist_tail == NULL) {
SDL_joylist = SDL_joylist_tail = item;
} else {
SDL_joylist_tail->next = item;
SDL_joylist_tail = item;
}
/* Need to increment the joystick count before we post the event */
++numjoysticks;
Aug 9, 2018
Aug 9, 2018
324
SDL_PrivateJoystickAdded(item->device_instance);
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
return numjoysticks;
}
#if SDL_USE_LIBUDEV
static int
MaybeRemoveDevice(const char *path)
{
SDL_joylist_item *item;
SDL_joylist_item *prev = NULL;
if (path == NULL) {
return -1;
}
for (item = SDL_joylist; item != NULL; item = item->next) {
/* found it, remove it. */
if (SDL_strcmp(path, item->path) == 0) {
const int retval = item->device_instance;
if (item->hwdata) {
item->hwdata->item = NULL;
}
if (prev != NULL) {
prev->next = item->next;
} else {
SDL_assert(SDL_joylist == item);
SDL_joylist = item->next;
}
if (item == SDL_joylist_tail) {
SDL_joylist_tail = prev;
}
/* Need to decrement the joystick count before we post the event */
--numjoysticks;
Aug 26, 2016
Aug 26, 2016
360
SDL_PrivateJoystickRemoved(item->device_instance);
361
362
363
364
365
366
367
368
369
370
371
372
373
SDL_free(item->path);
SDL_free(item->name);
SDL_free(item);
return retval;
}
prev = item;
}
return -1;
}
#endif
Jun 25, 2019
Jun 25, 2019
374
375
static void
HandlePendingRemovals(void)
Jun 25, 2019
Jun 25, 2019
377
378
SDL_joylist_item *prev = NULL;
SDL_joylist_item *item = SDL_joylist;
Jun 25, 2019
Jun 25, 2019
380
381
382
while (item != NULL) {
if (item->hwdata && item->hwdata->gone) {
item->hwdata->item = NULL;
Jun 25, 2019
Jun 25, 2019
384
385
386
387
388
389
390
391
392
if (prev != NULL) {
prev->next = item->next;
} else {
SDL_assert(SDL_joylist == item);
SDL_joylist = item->next;
}
if (item == SDL_joylist_tail) {
SDL_joylist_tail = prev;
}
Jun 25, 2019
Jun 25, 2019
394
395
/* Need to decrement the joystick count before we post the event */
--numjoysticks;
Jun 25, 2019
Jun 25, 2019
397
SDL_PrivateJoystickRemoved(item->device_instance);
Jun 25, 2019
Jun 25, 2019
399
400
401
402
403
404
405
406
407
408
409
410
411
412
SDL_free(item->path);
SDL_free(item->name);
SDL_free(item);
if (prev != NULL) {
item = prev->next;
} else {
item = SDL_joylist;
}
} else {
prev = item;
item = item->next;
}
}
Sep 22, 2017
Sep 22, 2017
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
static SDL_bool SteamControllerConnectedCallback(const char *name, SDL_JoystickGUID guid, int *device_instance)
{
SDL_joylist_item *item;
item = (SDL_joylist_item *) SDL_calloc(1, sizeof (SDL_joylist_item));
if (item == NULL) {
return SDL_FALSE;
}
item->path = SDL_strdup("");
item->name = SDL_strdup(name);
item->guid = guid;
item->m_bSteamController = SDL_TRUE;
if ((item->path == NULL) || (item->name == NULL)) {
SDL_free(item->path);
SDL_free(item->name);
SDL_free(item);
return SDL_FALSE;
}
Aug 9, 2018
Aug 9, 2018
436
*device_instance = item->device_instance = SDL_GetNextJoystickInstanceID();
Sep 22, 2017
Sep 22, 2017
437
438
439
440
441
442
443
444
445
446
if (SDL_joylist_tail == NULL) {
SDL_joylist = SDL_joylist_tail = item;
} else {
SDL_joylist_tail->next = item;
SDL_joylist_tail = item;
}
/* Need to increment the joystick count before we post the event */
++numjoysticks;
Aug 9, 2018
Aug 9, 2018
447
SDL_PrivateJoystickAdded(item->device_instance);
Sep 22, 2017
Sep 22, 2017
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
return SDL_TRUE;
}
static void SteamControllerDisconnectedCallback(int device_instance)
{
SDL_joylist_item *item;
SDL_joylist_item *prev = NULL;
for (item = SDL_joylist; item != NULL; item = item->next) {
/* found it, remove it. */
if (item->device_instance == device_instance) {
if (item->hwdata) {
item->hwdata->item = NULL;
}
if (prev != NULL) {
prev->next = item->next;
} else {
SDL_assert(SDL_joylist == item);
SDL_joylist = item->next;
}
if (item == SDL_joylist_tail) {
SDL_joylist_tail = prev;
}
/* Need to decrement the joystick count before we post the event */
--numjoysticks;
SDL_PrivateJoystickRemoved(item->device_instance);
SDL_free(item->name);
SDL_free(item);
return;
}
prev = item;
}
}
Jun 25, 2019
Jun 25, 2019
486
487
488
489
490
491
492
493
494
495
static void
LINUX_JoystickDetect(void)
{
#if SDL_USE_LIBUDEV
SDL_UDEV_Poll();
#else
const Uint32 SDL_JOY_DETECT_INTERVAL_MS = 3000; /* Update every 3 seconds */
Uint32 now = SDL_GetTicks();
if (!last_joy_detect_time || SDL_TICKS_PASSED(now, last_joy_detect_time + SDL_JOY_DETECT_INTERVAL_MS)) {
Nov 21, 2019
Nov 21, 2019
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
struct stat sb;
/* Opening input devices can generate synchronous device I/O, so avoid it if we can */
if (stat("/dev/input", &sb) == 0 && sb.st_mtime != last_input_dir_mtime) {
DIR *folder;
struct dirent *dent;
folder = opendir("/dev/input");
if (folder) {
while ((dent = readdir(folder))) {
int len = SDL_strlen(dent->d_name);
if (len > 5 && SDL_strncmp(dent->d_name, "event", 5) == 0) {
char path[PATH_MAX];
SDL_snprintf(path, SDL_arraysize(path), "/dev/input/%s", dent->d_name);
MaybeAddDevice(path);
}
Jun 25, 2019
Jun 25, 2019
512
}
Nov 21, 2019
Nov 21, 2019
513
514
closedir(folder);
Jun 25, 2019
Jun 25, 2019
515
516
}
Nov 21, 2019
Nov 21, 2019
517
last_input_dir_mtime = sb.st_mtime;
Jun 25, 2019
Jun 25, 2019
518
519
520
521
522
523
524
525
526
527
528
}
last_joy_detect_time = now;
}
#endif
HandlePendingRemovals();
SDL_UpdateSteamControllers();
}
Aug 9, 2018
Aug 9, 2018
529
530
static int
LINUX_JoystickInit(void)
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
{
/* First see if the user specified one or more joysticks to use */
if (SDL_getenv("SDL_JOYSTICK_DEVICE") != NULL) {
char *envcopy, *envpath, *delim;
envcopy = SDL_strdup(SDL_getenv("SDL_JOYSTICK_DEVICE"));
envpath = envcopy;
while (envpath != NULL) {
delim = SDL_strchr(envpath, ':');
if (delim != NULL) {
*delim++ = '\0';
}
MaybeAddDevice(envpath);
envpath = delim;
}
SDL_free(envcopy);
}
Sep 22, 2017
Sep 22, 2017
548
549
550
SDL_InitSteamControllers(SteamControllerConnectedCallback,
SteamControllerDisconnectedCallback);
Jun 25, 2019
Jun 25, 2019
552
553
554
555
556
557
558
559
560
561
562
563
564
if (SDL_UDEV_Init() < 0) {
return SDL_SetError("Could not initialize UDEV");
}
/* Set up the udev callback */
if (SDL_UDEV_AddCallback(joystick_udev_callback) < 0) {
SDL_UDEV_Quit();
return SDL_SetError("Could not set up joystick <-> udev callback");
}
/* Force a scan to build the initial device list */
SDL_UDEV_Scan();
#else
Nov 21, 2019
Nov 21, 2019
565
566
567
568
/* Force immediate joystick detection */
last_joy_detect_time = 0;
last_input_dir_mtime = 0;
Jun 25, 2019
Jun 25, 2019
569
570
/* Report all devices currently present */
LINUX_JoystickDetect();
Nov 14, 2016
Nov 14, 2016
571
#endif
Jun 25, 2019
Jun 25, 2019
572
573
return 0;
Aug 9, 2018
Aug 9, 2018
576
577
static int
LINUX_JoystickGetCount(void)
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
{
return numjoysticks;
}
static SDL_joylist_item *
JoystickByDevIndex(int device_index)
{
SDL_joylist_item *item = SDL_joylist;
if ((device_index < 0) || (device_index >= numjoysticks)) {
return NULL;
}
while (device_index > 0) {
SDL_assert(item != NULL);
device_index--;
item = item->next;
}
return item;
}
/* Function to get the device-dependent name of a joystick */
Aug 9, 2018
Aug 9, 2018
601
602
static const char *
LINUX_JoystickGetDeviceName(int device_index)
603
604
605
606
{
return JoystickByDevIndex(device_index)->name;
}
Oct 25, 2018
Oct 25, 2018
607
608
609
610
611
612
static int
LINUX_JoystickGetDevicePlayerIndex(int device_index)
{
return -1;
}
Dec 21, 2019
Dec 21, 2019
613
614
615
616
617
static void
LINUX_JoystickSetDevicePlayerIndex(int device_index, int player_index)
{
}
Aug 9, 2018
Aug 9, 2018
618
619
620
621
622
623
static SDL_JoystickGUID
LINUX_JoystickGetDeviceGUID( int device_index )
{
return JoystickByDevIndex(device_index)->guid;
}
624
/* Function to perform the mapping from device index to the instance id for this index */
Aug 9, 2018
Aug 9, 2018
625
626
static SDL_JoystickID
LINUX_JoystickGetDeviceInstanceID(int device_index)
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
{
return JoystickByDevIndex(device_index)->device_instance;
}
static int
allocate_hatdata(SDL_Joystick * joystick)
{
int i;
joystick->hwdata->hats =
(struct hwdata_hat *) SDL_malloc(joystick->nhats *
sizeof(struct hwdata_hat));
if (joystick->hwdata->hats == NULL) {
return (-1);
}
for (i = 0; i < joystick->nhats; ++i) {
joystick->hwdata->hats[i].axis[0] = 1;
joystick->hwdata->hats[i].axis[1] = 1;
}
return (0);
}
static int
allocate_balldata(SDL_Joystick * joystick)
{
int i;
joystick->hwdata->balls =
(struct hwdata_ball *) SDL_malloc(joystick->nballs *
sizeof(struct hwdata_ball));
if (joystick->hwdata->balls == NULL) {
return (-1);
}
for (i = 0; i < joystick->nballs; ++i) {
joystick->hwdata->balls[i].axis[0] = 0;
joystick->hwdata->balls[i].axis[1] = 0;
}
return (0);
}
static void
ConfigJoystick(SDL_Joystick * joystick, int fd)
{
int i, t;
unsigned long keybit[NBITS(KEY_MAX)] = { 0 };
unsigned long absbit[NBITS(ABS_MAX)] = { 0 };
unsigned long relbit[NBITS(REL_MAX)] = { 0 };
Aug 9, 2018
Aug 9, 2018
674
unsigned long ffbit[NBITS(FF_MAX)] = { 0 };
675
676
677
678
679
680
681
682
683
684
685
686
/* See if this device uses the new unified event API */
if ((ioctl(fd, EVIOCGBIT(EV_KEY, sizeof(keybit)), keybit) >= 0) &&
(ioctl(fd, EVIOCGBIT(EV_ABS, sizeof(absbit)), absbit) >= 0) &&
(ioctl(fd, EVIOCGBIT(EV_REL, sizeof(relbit)), relbit) >= 0)) {
/* Get the number of buttons, axes, and other thingamajigs */
for (i = BTN_JOYSTICK; i < KEY_MAX; ++i) {
if (test_bit(i, keybit)) {
#ifdef DEBUG_INPUT_EVENTS
printf("Joystick has button: 0x%x\n", i);
#endif
Nov 23, 2016
Nov 23, 2016
687
joystick->hwdata->key_map[i] = joystick->nbuttons;
May 29, 2020
May 29, 2020
688
joystick->hwdata->has_key[i] = SDL_TRUE;
689
690
691
++joystick->nbuttons;
}
}
Nov 23, 2016
Nov 23, 2016
692
for (i = 0; i < BTN_JOYSTICK; ++i) {
693
694
695
696
if (test_bit(i, keybit)) {
#ifdef DEBUG_INPUT_EVENTS
printf("Joystick has button: 0x%x\n", i);
#endif
Nov 23, 2016
Nov 23, 2016
697
joystick->hwdata->key_map[i] = joystick->nbuttons;
May 29, 2020
May 29, 2020
698
joystick->hwdata->has_key[i] = SDL_TRUE;
699
700
701
702
703
704
705
706
707
708
709
++joystick->nbuttons;
}
}
for (i = 0; i < ABS_MAX; ++i) {
/* Skip hats */
if (i == ABS_HAT0X) {
i = ABS_HAT3Y;
continue;
}
if (test_bit(i, absbit)) {
struct input_absinfo absinfo;
Jul 21, 2020
Jul 21, 2020
710
SDL_bool hint_used = SDL_GetHintBoolean(SDL_HINT_LINUX_JOYSTICK_DEADZONES, SDL_TRUE);
711
712
713
714
715
716
717
718
719
720
721
if (ioctl(fd, EVIOCGABS(i), &absinfo) < 0) {
continue;
}
#ifdef DEBUG_INPUT_EVENTS
printf("Joystick has absolute axis: 0x%.2x\n", i);
printf("Values = { %d, %d, %d, %d, %d }\n",
absinfo.value, absinfo.minimum, absinfo.maximum,
absinfo.fuzz, absinfo.flat);
#endif /* DEBUG_INPUT_EVENTS */
joystick->hwdata->abs_map[i] = joystick->naxes;
May 29, 2020
May 29, 2020
722
joystick->hwdata->has_abs[i] = SDL_TRUE;
723
724
725
if (absinfo.minimum == absinfo.maximum) {
joystick->hwdata->abs_correct[i].used = 0;
} else {
Jul 21, 2020
Jul 21, 2020
726
joystick->hwdata->abs_correct[i].used = hint_used;
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
joystick->hwdata->abs_correct[i].coef[0] =
(absinfo.maximum + absinfo.minimum) - 2 * absinfo.flat;
joystick->hwdata->abs_correct[i].coef[1] =
(absinfo.maximum + absinfo.minimum) + 2 * absinfo.flat;
t = ((absinfo.maximum - absinfo.minimum) - 4 * absinfo.flat);
if (t != 0) {
joystick->hwdata->abs_correct[i].coef[2] =
(1 << 28) / t;
} else {
joystick->hwdata->abs_correct[i].coef[2] = 0;
}
}
++joystick->naxes;
}
}
for (i = ABS_HAT0X; i <= ABS_HAT3Y; i += 2) {
if (test_bit(i, absbit) || test_bit(i + 1, absbit)) {
struct input_absinfo absinfo;
Jun 12, 2019
Jun 12, 2019
745
int hat_index = (i - ABS_HAT0X) / 2;
746
747
748
749
750
if (ioctl(fd, EVIOCGABS(i), &absinfo) < 0) {
continue;
}
#ifdef DEBUG_INPUT_EVENTS
Jun 12, 2019
Jun 12, 2019
751
printf("Joystick has hat %d\n", hat_index);
752
753
754
755
printf("Values = { %d, %d, %d, %d, %d }\n",
absinfo.value, absinfo.minimum, absinfo.maximum,
absinfo.fuzz, absinfo.flat);
#endif /* DEBUG_INPUT_EVENTS */
Feb 4, 2020
Feb 4, 2020
756
joystick->hwdata->hats_indices[hat_index] = joystick->nhats++;
May 29, 2020
May 29, 2020
757
joystick->hwdata->has_hat[hat_index] = SDL_TRUE;
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
}
}
if (test_bit(REL_X, relbit) || test_bit(REL_Y, relbit)) {
++joystick->nballs;
}
/* Allocate data to keep track of these thingamajigs */
if (joystick->nhats > 0) {
if (allocate_hatdata(joystick) < 0) {
joystick->nhats = 0;
}
}
if (joystick->nballs > 0) {
if (allocate_balldata(joystick) < 0) {
joystick->nballs = 0;
}
}
}
Aug 9, 2018
Aug 9, 2018
776
777
778
779
780
781
782
783
784
if (ioctl(fd, EVIOCGBIT(EV_FF, sizeof(ffbit)), ffbit) >= 0) {
if (test_bit(FF_RUMBLE, ffbit)) {
joystick->hwdata->ff_rumble = SDL_TRUE;
}
if (test_bit(FF_SINE, ffbit)) {
joystick->hwdata->ff_sine = SDL_TRUE;
}
}
785
786
787
788
789
790
791
792
}
/* Function to open a joystick for use.
The joystick to open is specified by the device index.
This should fill the nbuttons and naxes fields of the joystick structure.
It returns 0, or -1 if there is an error.
*/
Aug 9, 2018
Aug 9, 2018
793
794
static int
LINUX_JoystickOpen(SDL_Joystick * joystick, int device_index)
795
796
797
798
799
800
801
802
803
{
SDL_joylist_item *item = JoystickByDevIndex(device_index);
if (item == NULL) {
return SDL_SetError("No such device");
}
joystick->instance_id = item->device_instance;
joystick->hwdata = (struct joystick_hwdata *)
Sep 22, 2017
Sep 22, 2017
804
SDL_calloc(1, sizeof(*joystick->hwdata));
805
806
807
808
809
if (joystick->hwdata == NULL) {
return SDL_OutOfMemory();
}
joystick->hwdata->item = item;
joystick->hwdata->guid = item->guid;
Aug 9, 2018
Aug 9, 2018
810
joystick->hwdata->effect.id = -1;
Sep 22, 2017
Sep 22, 2017
811
joystick->hwdata->m_bSteamController = item->m_bSteamController;
Nov 14, 2018
Nov 14, 2018
812
SDL_memset(joystick->hwdata->abs_map, 0xFF, sizeof(joystick->hwdata->abs_map));
Sep 22, 2017
Sep 22, 2017
813
814
815
816
817
818
819
if (item->m_bSteamController) {
joystick->hwdata->fd = -1;
SDL_GetSteamControllerInputs(&joystick->nbuttons,
&joystick->naxes,
&joystick->nhats);
} else {
Aug 9, 2018
Aug 9, 2018
820
int fd = open(item->path, O_RDWR, 0);
Sep 22, 2017
Sep 22, 2017
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
if (fd < 0) {
SDL_free(joystick->hwdata);
joystick->hwdata = NULL;
return SDL_SetError("Unable to open %s", item->path);
}
joystick->hwdata->fd = fd;
joystick->hwdata->fname = SDL_strdup(item->path);
if (joystick->hwdata->fname == NULL) {
SDL_free(joystick->hwdata);
joystick->hwdata = NULL;
close(fd);
return SDL_OutOfMemory();
}
/* Set the joystick to non-blocking read mode */
fcntl(fd, F_SETFL, O_NONBLOCK);
/* Get the number of buttons and axes on the joystick */
ConfigJoystick(joystick, fd);
841
842
843
844
845
846
}
SDL_assert(item->hwdata == NULL);
item->hwdata = joystick->hwdata;
/* mark joystick as fresh and ready */
Jun 28, 2020
Jun 28, 2020
847
joystick->hwdata->fresh = SDL_TRUE;
848
849
850
851
return (0);
}
Aug 9, 2018
Aug 9, 2018
852
static int
Feb 4, 2020
Feb 4, 2020
853
LINUX_JoystickRumble(SDL_Joystick * joystick, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble)
Aug 9, 2018
Aug 9, 2018
854
855
856
{
struct input_event event;
Oct 16, 2018
Oct 16, 2018
857
858
859
860
if (joystick->hwdata->ff_rumble) {
struct ff_effect *effect = &joystick->hwdata->effect;
effect->type = FF_RUMBLE;
Feb 4, 2020
Feb 4, 2020
861
effect->replay.length = SDL_MAX_RUMBLE_DURATION_MS;
Oct 16, 2018
Oct 16, 2018
862
863
864
865
866
867
868
869
effect->u.rumble.strong_magnitude = low_frequency_rumble;
effect->u.rumble.weak_magnitude = high_frequency_rumble;
} else if (joystick->hwdata->ff_sine) {
/* Scale and average the two rumble strengths */
Sint16 magnitude = (Sint16)(((low_frequency_rumble / 2) + (high_frequency_rumble / 2)) / 2);
struct ff_effect *effect = &joystick->hwdata->effect;
effect->type = FF_PERIODIC;
Feb 4, 2020
Feb 4, 2020
870
effect->replay.length = SDL_MAX_RUMBLE_DURATION_MS;
Oct 16, 2018
Oct 16, 2018
871
872
873
874
effect->u.periodic.waveform = FF_SINE;
effect->u.periodic.magnitude = magnitude;
} else {
return SDL_Unsupported();
Aug 9, 2018
Aug 9, 2018
875
876
877
}
if (ioctl(joystick->hwdata->fd, EVIOCSFF, &joystick->hwdata->effect) < 0) {
Jan 11, 2020
Jan 11, 2020
878
879
880
881
882
/* The kernel may have lost this effect, try to allocate a new one */
joystick->hwdata->effect.id = -1;
if (ioctl(joystick->hwdata->fd, EVIOCSFF, &joystick->hwdata->effect) < 0) {
return SDL_SetError("Couldn't update rumble effect: %s", strerror(errno));
}
Aug 9, 2018
Aug 9, 2018
883
884
885
886
887
888
889
890
891
892
893
}
event.type = EV_FF;
event.code = joystick->hwdata->effect.id;
event.value = 1;
if (write(joystick->hwdata->fd, &event, sizeof(event)) < 0) {
return SDL_SetError("Couldn't start rumble effect: %s", strerror(errno));
}
return 0;
}
894
895
896
897
898
899
900
901
902
903
static SDL_INLINE void
HandleHat(SDL_Joystick * stick, Uint8 hat, int axis, int value)
{
struct hwdata_hat *the_hat;
const Uint8 position_map[3][3] = {
{SDL_HAT_LEFTUP, SDL_HAT_UP, SDL_HAT_RIGHTUP},
{SDL_HAT_LEFT, SDL_HAT_CENTERED, SDL_HAT_RIGHT},
{SDL_HAT_LEFTDOWN, SDL_HAT_DOWN, SDL_HAT_RIGHTDOWN}
};
Jun 12, 2019
Jun 12, 2019
904
the_hat = &stick->hwdata->hats[hat];
905
906
907
908
909
910
911
912
913
if (value < 0) {
value = 0;
} else if (value == 0) {
value = 1;
} else if (value > 0) {
value = 2;
}
if (value != the_hat->axis[axis]) {
the_hat->axis[axis] = value;
Jun 12, 2019
Jun 12, 2019
914
SDL_PrivateJoystickHat(stick, hat,
Jun 12, 2019
Jun 12, 2019
915
position_map[the_hat->axis[1]][the_hat->axis[0]]);
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
}
}
static SDL_INLINE void
HandleBall(SDL_Joystick * stick, Uint8 ball, int axis, int value)
{
stick->hwdata->balls[ball].axis[axis] += value;
}
static SDL_INLINE int
AxisCorrect(SDL_Joystick * joystick, int which, int value)
{
struct axis_correct *correct;
correct = &joystick->hwdata->abs_correct[which];
if (correct->used) {
value *= 2;
if (value > correct->coef[0]) {
if (value < correct->coef[1]) {
return 0;
}
value -= correct->coef[1];
} else {
value -= correct->coef[0];
}
value *= correct->coef[2];
value >>= 13;
}
/* Clamp and return */
if (value < -32768)
return -32768;
if (value > 32767)
return 32767;
return value;
}
static SDL_INLINE void
PollAllValues(SDL_Joystick * joystick)
{
struct input_absinfo absinfo;
Jun 28, 2020
Jun 28, 2020
959
unsigned long keyinfo[NBITS(KEY_MAX)];
Jun 8, 2019
Jun 8, 2019
960
int i;
961
962
/* Poll all axis */
Jun 8, 2019
Jun 8, 2019
963
for (i = ABS_X; i < ABS_MAX; i++) {
Jun 28, 2020
Jun 28, 2020
964
if (i == ABS_HAT0X) { /* we handle hats in the next loop, skip them for now. */
Jun 8, 2019
Jun 8, 2019
965
966
967
968
969
970
i = ABS_HAT3Y;
continue;
}
if (joystick->hwdata->abs_correct[i].used) {
if (ioctl(joystick->hwdata->fd, EVIOCGABS(i), &absinfo) >= 0) {
absinfo.value = AxisCorrect(joystick, i, absinfo.value);
971
972
#ifdef DEBUG_INPUT_EVENTS
Jun 8, 2019
Jun 8, 2019
973
974
printf("Joystick : Re-read Axis %d (%d) val= %d\n",
joystick->hwdata->abs_map[i], i, absinfo.value);
Jun 8, 2019
Jun 8, 2019
976
977
978
SDL_PrivateJoystickAxis(joystick,
joystick->hwdata->abs_map[i],
absinfo.value);
Jun 28, 2020
Jun 28, 2020
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Poll all hats */
for (i = ABS_HAT0X; i <= ABS_HAT3Y; i++) {
const int baseaxis = i - ABS_HAT0X;
const int hatidx = baseaxis / 2;
SDL_assert(hatidx < SDL_arraysize(joystick->hwdata->has_hat));
if (joystick->hwdata->has_hat[hatidx]) {
if (ioctl(joystick->hwdata->fd, EVIOCGABS(i), &absinfo) >= 0) {
const int hataxis = baseaxis % 2;
HandleHat(joystick, joystick->hwdata->hats_indices[hatidx], hataxis, absinfo.value);
}
}
}
/* Poll all buttons */
SDL_zeroa(keyinfo);
if (ioctl(joystick->hwdata->fd, EVIOCGKEY(sizeof (keyinfo)), keyinfo) >= 0) {
for (i = 0; i < KEY_MAX; i++) {
if (joystick->hwdata->has_key[i]) {