Skip to content

Latest commit

 

History

History
750 lines (684 loc) · 18.6 KB

SDL_sysjoystick.c

File metadata and controls

750 lines (684 loc) · 18.6 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
3
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997, 1998, 1999, 2000, 2001 Sam Lantinga
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
slouken@devolution.com
*/
#ifdef SAVE_RCSID
static char rcsid =
"@(#) $Id$";
#endif
/* This is the system specific header for the SDL joystick API */
#include <stdio.h> /* For the definition of NULL */
#include <stdlib.h> /* For getenv() prototype */
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <limits.h> /* For the definition of PATH_MAX */
#include <linux/joystick.h>
#ifdef USE_INPUT_EVENTS
#include <linux/input.h>
#endif
#include "SDL_error.h"
#include "SDL_joystick.h"
#include "SDL_sysjoystick.h"
#include "SDL_joystick_c.h"
/* Define this if you want to map axes to hats and trackballs */
#define FANCY_HATS_AND_BALLS
#ifdef FANCY_HATS_AND_BALLS
/* Special joystick configurations:
'JoystickName' Naxes Nhats Nballs
*/
static const char *special_joysticks[] = {
"'MadCatz Panther XL' 3 2 1", /* We don't handle a rudder (axis 8) */
"'SideWinder Precision Pro' 4 1 0",
"'SideWinder 3D Pro' 4 1 0",
"'Microsoft SideWinder 3D Pro' 4 1 0",
"'Microsoft SideWinder Dual Strike USB version 1.0' 2 1 0",
"'WingMan Interceptor' 3 3 0",
/* WingMan Extreme Analog - not recognized by default
"'Analog 3-axis 4-button joystick' 2 1",
*/
"'WingMan Extreme Digital 3D' 4 1 0",
NULL
};
#else
#undef USE_INPUT_EVENTS
#endif
/* The maximum number of joysticks we'll detect */
#define MAX_JOYSTICKS 32
/* A list of available joysticks */
static char *SDL_joylist[MAX_JOYSTICKS];
/* The private structure used to keep track of a joystick */
struct joystick_hwdata {
int fd;
/* The current linux joystick driver maps hats to two axes */
int analog_hat; /* Well, except for analog hats */
struct hwdata_hat {
int axis[2];
} *hats;
/* The current linux joystick driver maps balls to two axes */
struct hwdata_ball {
int axis[2];
} *balls;
/* Support for the Linux 2.4 unified input interface */
SDL_bool is_hid;
#ifdef USE_INPUT_EVENTS
Uint8 key_map[KEY_MAX-BTN_MISC];
Uint8 abs_map[ABS_MAX];
struct axis_correct {
int used;
int coef[3];
} abs_correct[ABS_MAX];
#endif
};
static char *mystrdup(const char *string)
{
char *newstring;
newstring = (char *)malloc(strlen(string)+1);
if ( newstring ) {
strcpy(newstring, string);
}
return(newstring);
}
#ifdef USE_INPUT_EVENTS
#define test_bit(nr, addr) \
(((1UL << ((nr) & 31)) & (((const unsigned int *) addr)[(nr) >> 5])) != 0)
static int EV_IsJoystick(int fd)
{
unsigned long evbit[40];
unsigned long keybit[40];
unsigned long absbit[40];
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) &&
(test_bit(BTN_TRIGGER, keybit) || test_bit(BTN_A, keybit) || test_bit(BTN_1, keybit)))) return 0;
return(1);
}
#endif /* USE_INPUT_EVENTS */
/* Function to scan the system for joysticks */
int SDL_SYS_JoystickInit(void)
{
/* The base path of the joystick devices */
const char *joydev_pattern[2] = {
"/dev/js%d",
#ifdef USE_INPUT_EVENTS
"/dev/input/event%d"
#endif
Oct 22, 2001
Oct 22, 2001
147
"/dev/input/js%d"
Apr 26, 2001
Apr 26, 2001
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
};
int numjoysticks;
int i, j, done;
int fd;
char path[PATH_MAX];
dev_t dev_nums[MAX_JOYSTICKS]; /* major/minor device numbers */
struct stat sb;
int n, duplicate;
numjoysticks = 0;
/* First see if the user specified a joystick to use */
if ( getenv("SDL_JOYSTICK_DEVICE") != NULL ) {
strncpy(path, getenv("SDL_JOYSTICK_DEVICE"), sizeof(path));
path[sizeof(path)-1] = '\0';
if ( stat(path, &sb) == 0 ) {
fd = open(path, O_RDONLY, 0);
if ( fd >= 0 ) {
/* Assume the user knows what they're doing. */
SDL_joylist[numjoysticks] = mystrdup(path);
if ( SDL_joylist[numjoysticks] ) {
dev_nums[numjoysticks] = sb.st_rdev;
++numjoysticks;
}
close(fd);
}
}
}
for ( i=0; i<SDL_TABLESIZE(joydev_pattern); ++i ) {
done = 0;
for ( j=0; (j < MAX_JOYSTICKS) && !done; ++j ) {
sprintf(path, joydev_pattern[i], j);
/* rcg06302000 replaced access(F_OK) call with stat().
* stat() will fail if the file doesn't exist, so it's
* equivalent behaviour.
*/
if ( stat(path, &sb) == 0 ) {
/* Check to make sure it's not already in list.
* This happens when we see a stick via symlink.
*/
duplicate = 0;
for (n=0; (n<numjoysticks) && !duplicate; ++n) {
if ( sb.st_rdev == dev_nums[n] ) {
duplicate = 1;
}
}
if (duplicate) {
continue;
}
fd = open(path, O_RDONLY, 0);
if ( fd < 0 ) {
continue;
}
#ifdef USE_INPUT_EVENTS
#ifdef DEBUG_INPUT_EVENTS
printf("Checking %s\n", path);
#endif
if ( (i > 0) && ! EV_IsJoystick(fd) ) {
close(fd);
continue;
}
#endif
close(fd);
/* We're fine, add this joystick */
SDL_joylist[numjoysticks] = mystrdup(path);
if ( SDL_joylist[numjoysticks] ) {
dev_nums[numjoysticks] = sb.st_rdev;
++numjoysticks;
}
} else {
done = 1;
}
}
Oct 22, 2001
Oct 22, 2001
224
225
226
227
228
229
230
231
232
/* This is a special case...
If we're looking at the /dev/input event devices, and we found
at least one, then we don't want to look at the input joystick
devices, since they're built on top of devices that we've already
seen, so we're done.
*/
if ( i > 0 && j > 0 ) {
done = 1;
}
Apr 26, 2001
Apr 26, 2001
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
261
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
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
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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
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
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
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
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
}
return(numjoysticks);
}
/* Function to get the device-dependent name of a joystick */
const char *SDL_SYS_JoystickName(int index)
{
int fd;
static char namebuf[128];
char *name;
name = NULL;
fd = open(SDL_joylist[index], O_RDONLY, 0);
if ( fd >= 0 ) {
if (
#ifdef USE_INPUT_EVENTS
(ioctl(fd, EVIOCGNAME(sizeof(namebuf)), namebuf) <= 0) &&
#endif
(ioctl(fd, JSIOCGNAME(sizeof(namebuf)), namebuf) <= 0) ) {
name = SDL_joylist[index];
} else {
name = namebuf;
}
close(fd);
}
return name;
}
#ifdef FANCY_HATS_AND_BALLS
static int allocate_hatdata(SDL_Joystick *joystick)
{
int i;
joystick->hwdata->hats = (struct hwdata_hat *)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 *)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 SDL_bool ConfigJoystick(SDL_Joystick *joystick,
const char *name, const char *config)
{
char cfg_name[128];
SDL_bool handled;
if ( config == NULL ) {
return(SDL_FALSE);
}
strcpy(cfg_name, "");
if ( *config == '\'' ) {
sscanf(config, "'%[^']s'", cfg_name);
config += strlen(cfg_name)+2;
} else {
sscanf(config, "%s", cfg_name);
config += strlen(cfg_name);
}
handled = SDL_FALSE;
if ( strcmp(cfg_name, name) == 0 ) {
/* Get the number of axes, hats and balls for this joystick */
int joystick_axes = joystick->naxes;
sscanf(config, "%d %d %d",
&joystick->naxes, &joystick->nhats, &joystick->nballs);
/* Allocate the extra data for mapping them */
if ( joystick->nhats > 0 ) {
/* HACK: Analog hats map to only one axis */
if (joystick_axes == (joystick->naxes+joystick->nhats)){
joystick->hwdata->analog_hat = 1;
} else {
if ( allocate_hatdata(joystick) < 0 ) {
joystick->nhats = 0;
}
joystick->hwdata->analog_hat = 0;
}
}
if ( joystick->nballs > 0 ) {
if ( allocate_balldata(joystick) < 0 ) {
joystick->nballs = 0;
}
}
handled = SDL_TRUE;
}
return(handled);
}
#ifdef USE_INPUT_EVENTS
static SDL_bool EV_ConfigJoystick(SDL_Joystick *joystick, int fd)
{
int i;
unsigned long keybit[40];
unsigned long absbit[40];
unsigned long relbit[40];
/* 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) ) {
joystick->hwdata->is_hid = SDL_TRUE;
/* 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
joystick->hwdata->key_map[i-BTN_MISC] =
joystick->nbuttons;
++joystick->nbuttons;
}
}
for ( i=BTN_MISC; i < BTN_JOYSTICK; ++i ) {
if ( test_bit(i, keybit) ) {
#ifdef DEBUG_INPUT_EVENTS
printf("Joystick has button: 0x%x\n", i);
#endif
joystick->hwdata->key_map[i-BTN_MISC] =
joystick->nbuttons;
++joystick->nbuttons;
}
}
for ( i=0; i<ABS_MAX; ++i ) {
/* Skip hats */
if ( i == ABS_HAT0X ) {
i = ABS_HAT3Y;
continue;
}
if ( test_bit(i, absbit) ) {
int values[5];
ioctl(fd, EVIOCGABS(i), values);
#ifdef DEBUG_INPUT_EVENTS
printf("Joystick has absolute axis: %x\n", i);
printf("Values = { %d, %d, %d, %d, %d }\n",
values[0], values[1],
values[2], values[3], values[4]);
#endif /* DEBUG_INPUT_EVENTS */
joystick->hwdata->abs_map[i] = joystick->naxes;
if ( values[1] == values[2] ) {
joystick->hwdata->abs_correct[i].used = 0;
} else {
joystick->hwdata->abs_correct[i].used = 1;
joystick->hwdata->abs_correct[i].coef[0] =
(values[2] + values[1]) / 2 - values[4];
joystick->hwdata->abs_correct[i].coef[1] =
(values[2] + values[1]) / 2 + values[4];
joystick->hwdata->abs_correct[i].coef[2] =
(1 << 29) / ((values[2] - values[1]) / 2 - 2 * values[4]);
}
++joystick->naxes;
}
}
for ( i=ABS_HAT0X; i <= ABS_HAT3Y; i += 2 ) {
if ( test_bit(i, absbit) || test_bit(i+1, absbit) ) {
#ifdef DEBUG_INPUT_EVENTS
printf("Joystick has hat %d\n",(i-ABS_HAT0X)/2);
#endif
++joystick->nhats;
}
}
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;
}
}
}
return(joystick->hwdata->is_hid);
}
#endif /* USE_INPUT_EVENTS */
#endif /* FANCY_HATS_AND_BALLS */
/* Function to open a joystick for use.
The joystick to open is specified by the index field of the joystick.
This should fill the nbuttons and naxes fields of the joystick structure.
It returns 0, or -1 if there is an error.
*/
int SDL_SYS_JoystickOpen(SDL_Joystick *joystick)
{
#ifdef FANCY_HATS_AND_BALLS
const char *name;
int i;
#endif
int fd;
unsigned char n;
/* Open the joystick and set the joystick file descriptor */
fd = open(SDL_joylist[joystick->index], O_RDONLY, 0);
if ( fd < 0 ) {
SDL_SetError("Unable to open %s\n",
SDL_joylist[joystick->index]);
return(-1);
}
joystick->hwdata = (struct joystick_hwdata *)
malloc(sizeof(*joystick->hwdata));
if ( joystick->hwdata == NULL ) {
SDL_OutOfMemory();
close(fd);
return(-1);
}
memset(joystick->hwdata, 0, sizeof(*joystick->hwdata));
joystick->hwdata->fd = fd;
/* Set the joystick to non-blocking read mode */
fcntl(fd, F_SETFL, O_NONBLOCK);
/* Get the number of buttons and axes on the joystick */
#ifdef USE_INPUT_EVENTS
if ( ! EV_ConfigJoystick(joystick, fd) )
#endif
{
if ( ioctl(fd, JSIOCGAXES, &n) < 0 ) {
joystick->naxes = 2;
} else {
joystick->naxes = n;
}
if ( ioctl(fd, JSIOCGBUTTONS, &n) < 0 ) {
joystick->nbuttons = 2;
} else {
joystick->nbuttons = n;
}
#ifdef FANCY_HATS_AND_BALLS
/* Check for special joystick support */
name = SDL_SYS_JoystickName(joystick->index);
for ( i=0; special_joysticks[i]; ++i ) {
if (ConfigJoystick(joystick,name,special_joysticks[i])){
break;
}
}
if ( special_joysticks[i] == NULL ) {
ConfigJoystick(joystick, name,
getenv("SDL_LINUX_JOYSTICK"));
}
#endif /* FANCY_HATS_AND_BALLS */
}
return(0);
}
static __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 }
};
the_hat = &stick->hwdata->hats[hat];
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;
SDL_PrivateJoystickHat(stick, hat,
position_map[the_hat->axis[1]][the_hat->axis[0]]);
}
}
/* This was necessary for the Wingman Extreme Analog joystick */
static __inline__
void HandleAnalogHat(SDL_Joystick *stick, Uint8 hat, int value)
{
const Uint8 position_map[] = {
SDL_HAT_UP,
SDL_HAT_RIGHT,
SDL_HAT_DOWN,
SDL_HAT_LEFT,
SDL_HAT_CENTERED
};
SDL_PrivateJoystickHat(stick, hat, position_map[(value/16000)+2]);
}
static __inline__
void HandleBall(SDL_Joystick *stick, Uint8 ball, int axis, int value)
{
stick->hwdata->balls[ball].axis[axis] += value;
}
/* Function to update the state of a joystick - called as a device poll.
* This function shouldn't update the joystick structure directly,
* but instead should call SDL_PrivateJoystick*() to deliver events
* and update joystick device state.
*/
static __inline__ void JS_HandleEvents(SDL_Joystick *joystick)
{
struct js_event events[32];
int i, len;
Uint8 other_axis;
while ((len=read(joystick->hwdata->fd, events, (sizeof events))) > 0) {
len /= sizeof(events[0]);
for ( i=0; i<len; ++i ) {
switch (events[i].type & ~JS_EVENT_INIT) {
case JS_EVENT_AXIS:
if ( events[i].number < joystick->naxes ) {
SDL_PrivateJoystickAxis(joystick,
events[i].number, events[i].value);
break;
}
events[i].number -= joystick->naxes;
if ( joystick->hwdata->analog_hat ) {
other_axis = events[i].number;
if ( other_axis < joystick->nhats ) {
HandleAnalogHat(joystick, other_axis,
events[i].value);
break;
}
} else {
other_axis = (events[i].number / 2);
if ( other_axis < joystick->nhats ) {
HandleHat(joystick, other_axis,
events[i].number%2,
events[i].value);
break;
}
}
events[i].number -= joystick->nhats*2;
other_axis = (events[i].number / 2);
if ( other_axis < joystick->nballs ) {
HandleBall(joystick, other_axis,
events[i].number%2,
events[i].value);
break;
}
break;
case JS_EVENT_BUTTON:
SDL_PrivateJoystickButton(joystick,
events[i].number, events[i].value);
break;
default:
/* ?? */
break;
}
}
}
}
#ifdef USE_INPUT_EVENTS
static __inline__ int EV_AxisCorrect(SDL_Joystick *joystick, int which, int value)
{
struct axis_correct *correct;
correct = &joystick->hwdata->abs_correct[which];
if ( correct->used ) {
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 >>= 14;
}
/* Clamp and return */
if ( value < -32767 ) {
value = -32767;
} else
if ( value > 32767 ) {
value = 32767;
}
return value;
}
static __inline__ void EV_HandleEvents(SDL_Joystick *joystick)
{
struct input_event events[32];
int i, len;
int code;
while ((len=read(joystick->hwdata->fd, events, (sizeof events))) > 0) {
len /= sizeof(events[0]);
for ( i=0; i<len; ++i ) {
code = events[i].code;
switch (events[i].type) {
case EV_KEY:
if ( code >= BTN_MISC ) {
code -= BTN_MISC;
SDL_PrivateJoystickButton(joystick,
joystick->hwdata->key_map[code],
events[i].value);
}
break;
case EV_ABS:
switch (code) {
case ABS_HAT0X:
case ABS_HAT0Y:
case ABS_HAT1X:
case ABS_HAT1Y:
case ABS_HAT2X:
case ABS_HAT2Y:
case ABS_HAT3X:
case ABS_HAT3Y:
code -= ABS_HAT0X;
HandleHat(joystick, code/2, code%2,
events[i].value);
break;
default:
events[i].value = EV_AxisCorrect(joystick, code, events[i].value);
SDL_PrivateJoystickAxis(joystick,
joystick->hwdata->abs_map[code],
events[i].value);
break;
}
break;
case EV_REL:
switch (code) {
case REL_X:
case REL_Y:
code -= REL_X;
HandleBall(joystick, code/2, code%2,
events[i].value);
break;
default:
break;
}
break;
default:
break;
}
}
}
}
#endif /* USE_INPUT_EVENTS */
void SDL_SYS_JoystickUpdate(SDL_Joystick *joystick)
{
int i;
#ifdef USE_INPUT_EVENTS
if ( joystick->hwdata->is_hid )
EV_HandleEvents(joystick);
else
#endif
JS_HandleEvents(joystick);
/* Deliver ball motion updates */
for ( i=0; i<joystick->nballs; ++i ) {
int xrel, yrel;
xrel = joystick->hwdata->balls[i].axis[0];
yrel = joystick->hwdata->balls[i].axis[1];
if ( xrel || yrel ) {
joystick->hwdata->balls[i].axis[0] = 0;
joystick->hwdata->balls[i].axis[1] = 0;
SDL_PrivateJoystickBall(joystick, (Uint8)i, xrel, yrel);
}
}
}
/* Function to close a joystick after use */
void SDL_SYS_JoystickClose(SDL_Joystick *joystick)
{
if ( joystick->hwdata ) {
close(joystick->hwdata->fd);
if ( joystick->hwdata->hats ) {
free(joystick->hwdata->hats);
}
if ( joystick->hwdata->balls ) {
free(joystick->hwdata->balls);
}
free(joystick->hwdata);
joystick->hwdata = NULL;
}
}
/* Function to perform any system-specific joystick related cleanup */
void SDL_SYS_JoystickQuit(void)
{
int i;
for ( i=0; SDL_joylist[i]; ++i ) {
free(SDL_joylist[i]);
}
SDL_joylist[0] = NULL;
}