Skip to content

Latest commit

 

History

History
1087 lines (934 loc) · 27.9 KB

SDL_sysjoystick.c

File metadata and controls

1087 lines (934 loc) · 27.9 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
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
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
23
24
25
*/
/* This is the system specific header for the SDL joystick API */
#include <stdio.h> /* For the definition of NULL */
Feb 7, 2006
Feb 7, 2006
26
#include <stdlib.h> /* For SDL_getenv() prototype */
Apr 26, 2001
Apr 26, 2001
27
28
29
30
31
32
#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 */
May 20, 2002
May 20, 2002
33
34
35
#ifdef __arm__
#include <linux/limits.h> /* Arm cross-compiler needs this */
#endif
Apr 26, 2001
Apr 26, 2001
36
37
38
39
40
41
42
43
44
45
#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"
Dec 2, 2002
Dec 2, 2002
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* Special joystick configurations */
static struct {
const char *name;
int naxes;
int nhats;
int nballs;
} special_joysticks[] = {
{ "MadCatz Panther XL", 3, 2, 1 }, /* We don't handle 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 Digital 3D", 4, 1, 0 },
{ "Microsoft SideWinder Precision 2 Joystick", 4, 1, 0 },
{ "Logitech Inc. WingMan Extreme Digital 3D", 4, 1, 0 },
{ "Saitek Saitek X45", 6, 1, 0 }
Apr 26, 2001
Apr 26, 2001
63
64
};
May 16, 2004
May 16, 2004
65
66
#ifndef NO_LOGICAL_JOYSTICKS
Sep 11, 2004
Sep 11, 2004
67
static struct joystick_logical_values {
May 16, 2004
May 16, 2004
68
69
int njoy;
int nthing;
Sep 11, 2004
Sep 11, 2004
70
} joystick_logical_values[] = {
May 16, 2004
May 16, 2004
71
Sep 11, 2004
Sep 11, 2004
72
73
74
75
/* +0 */
/* MP-8800 axes map - map to {logical joystick #, logical axis #} */
{0,0},{0,1},{0,2},{1,0},{1,1},{0,3},{1,2},{1,3},{2,0},{2,1},{2,2},{2,3},
{3,0},{3,1},{3,2},{3,3},{0,4},{1,4},{2,4},
May 16, 2004
May 16, 2004
76
Sep 11, 2004
Sep 11, 2004
77
78
79
/* +19 */
/* MP-8800 hat map - map to {logical joystick #, logical hat #} */
{0,0},{1,0},{2,0},{3,0},
May 16, 2004
May 16, 2004
80
Sep 11, 2004
Sep 11, 2004
81
82
/* +23 */
/* MP-8800 button map - map to {logical joystick #, logical button #} */
May 16, 2004
May 16, 2004
83
84
85
{0,0},{0,1},{0,2},{0,3},{0,4},{0,5},{0,6},{0,7},{0,8},{0,9},{0,10},{0,11},
{1,0},{1,1},{1,2},{1,3},{1,4},{1,5},{1,6},{1,7},{1,8},{1,9},{1,10},{1,11},
{2,0},{2,1},{2,2},{2,3},{2,4},{2,5},{2,6},{2,7},{2,8},{2,9},{2,10},{2,11},
Jan 31, 2006
Jan 31, 2006
86
{3,0},{3,1},{3,2},{3,3},{3,4},{3,5},{3,6},{3,7},{3,8},{3,9},{3,10},{3,11}
May 16, 2004
May 16, 2004
87
88
};
Sep 11, 2004
Sep 11, 2004
89
static struct joystick_logical_layout {
May 16, 2004
May 16, 2004
90
91
92
93
int naxes;
int nhats;
int nballs;
int nbuttons;
Sep 11, 2004
Sep 11, 2004
94
95
96
97
98
} joystick_logical_layout[] = {
/* MP-8800 logical layout */
{5, 1, 0, 12},
{5, 1, 0, 12},
{5, 1, 0, 12},
Jan 31, 2006
Jan 31, 2006
99
{4, 1, 0, 12}
May 16, 2004
May 16, 2004
100
101
102
};
/*
Sep 11, 2004
Sep 11, 2004
103
104
105
Some USB HIDs show up as a single joystick even though they actually
control 2 or more joysticks. This array sets up a means of mapping
a single physical joystick to multiple logical joysticks. (djm)
May 16, 2004
May 16, 2004
106
107
108
109
110
111
112
113
114
115
njoys
the number of logical joysticks
layouts
an array of layout structures, one to describe each logical joystick
axes, hats, balls, buttons
arrays that map a physical thingy to a logical thingy
*/
Sep 11, 2004
Sep 11, 2004
116
static struct joystick_logicalmap {
May 16, 2004
May 16, 2004
117
118
const char *name;
int njoys;
Sep 11, 2004
Sep 11, 2004
119
120
121
122
123
124
125
126
127
struct joystick_logical_layout *layouts;
struct joystick_logical_values *axes;
struct joystick_logical_values *hats;
struct joystick_logical_values *balls;
struct joystick_logical_values *buttons;
} joystick_logicalmap[] = {
{"WiseGroup.,Ltd MP-8800 Quad USB Joypad", 4, joystick_logical_layout,
joystick_logical_values, joystick_logical_values+19, NULL,
Jan 31, 2006
Jan 31, 2006
128
joystick_logical_values+23}
May 16, 2004
May 16, 2004
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
};
/* find the head of a linked list, given a point in it
*/
#define SDL_joylist_head(i, start)\
for(i = start; SDL_joylist[i].fname == NULL;) i = SDL_joylist[i].prev;
#define SDL_logical_joydecl(d) d
#else
#define SDL_logical_joydecl(d)
#endif /* USE_LOGICAL_JOYSTICKS */
Apr 26, 2001
Apr 26, 2001
145
146
147
148
/* The maximum number of joysticks we'll detect */
#define MAX_JOYSTICKS 32
/* A list of available joysticks */
May 16, 2004
May 16, 2004
149
150
151
152
153
154
155
156
157
158
159
160
static struct
{
char* fname;
#ifndef NO_LOGICAL_JOYSTICKS
SDL_Joystick* joy;
struct joystick_logicalmap* map;
int prev;
int next;
int logicalno;
#endif /* USE_LOGICAL_JOYSTICKS */
} SDL_joylist[MAX_JOYSTICKS];
Apr 26, 2001
Apr 26, 2001
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/* 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 */
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 */
#ifdef USE_INPUT_EVENTS
Dec 2, 2002
Dec 2, 2002
176
SDL_bool is_hid;
Apr 26, 2001
Apr 26, 2001
177
178
179
180
181
182
183
184
185
186
187
188
189
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;
Feb 7, 2006
Feb 7, 2006
190
newstring = (char *)SDL_malloc(SDL_strlen(string)+1);
Apr 26, 2001
Apr 26, 2001
191
if ( newstring ) {
Feb 7, 2006
Feb 7, 2006
192
SDL_strcpy(newstring, string);
Apr 26, 2001
Apr 26, 2001
193
194
195
196
}
return(newstring);
}
May 16, 2004
May 16, 2004
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#ifndef NO_LOGICAL_JOYSTICKS
static int CountLogicalJoysticks(int max)
{
register int i, j, k, ret, prev;
const char* name;
ret = 0;
for(i = 0; i < max; i++) {
name = SDL_SYS_JoystickName(i);
if (name) {
for(j = 0; j < SDL_TABLESIZE(joystick_logicalmap); j++) {
Feb 7, 2006
Feb 7, 2006
212
if (!SDL_strcmp(name, joystick_logicalmap[j].name)) {
Sep 11, 2004
Sep 11, 2004
213
May 16, 2004
May 16, 2004
214
prev = i;
Sep 11, 2004
Sep 11, 2004
215
SDL_joylist[prev].map = joystick_logicalmap+j;
May 16, 2004
May 16, 2004
216
217
218
for(k = 1; k < joystick_logicalmap[j].njoys; k++) {
SDL_joylist[prev].next = max + ret;
Sep 11, 2004
Sep 11, 2004
219
220
221
222
if (prev != i)
SDL_joylist[max+ret].prev = prev;
May 16, 2004
May 16, 2004
223
224
prev = max + ret;
SDL_joylist[prev].logicalno = k;
Sep 11, 2004
Sep 11, 2004
225
SDL_joylist[prev].map = joystick_logicalmap+j;
May 16, 2004
May 16, 2004
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
ret++;
}
break;
}
}
}
}
return ret;
}
static void LogicalSuffix(int logicalno, char* namebuf, int len)
{
register int slen;
const static char suffixs[] =
"01020304050607080910111213141516171819"
"20212223242526272829303132";
const char* suffix;
Sep 11, 2004
Sep 11, 2004
245
Feb 7, 2006
Feb 7, 2006
246
slen = SDL_strlen(namebuf);
Sep 11, 2004
Sep 11, 2004
247
May 16, 2004
May 16, 2004
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
suffix = NULL;
if (logicalno*2<sizeof(suffixs))
suffix = suffixs + (logicalno*2);
if (slen + 4 < len && suffix) {
namebuf[slen++] = ' ';
namebuf[slen++] = '#';
namebuf[slen++] = suffix[0];
namebuf[slen++] = suffix[1];
namebuf[slen++] = 0;
}
}
#endif /* USE_LOGICAL_JOYSTICKS */
Apr 26, 2001
Apr 26, 2001
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
#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 */
Nov 26, 2001
Nov 26, 2001
291
const char *joydev_pattern[] = {
Apr 26, 2001
Apr 26, 2001
292
#ifdef USE_INPUT_EVENTS
Nov 26, 2001
Nov 26, 2001
293
"/dev/input/event%d",
Apr 26, 2001
Apr 26, 2001
294
#endif
Dec 2, 2002
Dec 2, 2002
295
296
"/dev/input/js%d",
"/dev/js%d"
Apr 26, 2001
Apr 26, 2001
297
298
};
int numjoysticks;
Dec 2, 2002
Dec 2, 2002
299
int i, j;
Apr 26, 2001
Apr 26, 2001
300
301
302
303
304
305
306
307
308
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 */
Feb 7, 2006
Feb 7, 2006
309
310
if ( SDL_getenv("SDL_JOYSTICK_DEVICE") != NULL ) {
SDL_strncpy(path, SDL_getenv("SDL_JOYSTICK_DEVICE"), sizeof(path));
Apr 26, 2001
Apr 26, 2001
311
312
313
314
315
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. */
May 16, 2004
May 16, 2004
316
317
SDL_joylist[numjoysticks].fname =mystrdup(path);
if ( SDL_joylist[numjoysticks].fname ) {
Apr 26, 2001
Apr 26, 2001
318
319
320
321
322
323
324
dev_nums[numjoysticks] = sb.st_rdev;
++numjoysticks;
}
close(fd);
}
}
}
Dec 2, 2002
Dec 2, 2002
325
Apr 26, 2001
Apr 26, 2001
326
for ( i=0; i<SDL_TABLESIZE(joydev_pattern); ++i ) {
Dec 2, 2002
Dec 2, 2002
327
for ( j=0; j < MAX_JOYSTICKS; ++j ) {
Apr 26, 2001
Apr 26, 2001
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
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
Dec 2, 2002
Dec 2, 2002
356
if ( (i == 0) && ! EV_IsJoystick(fd) ) {
Apr 26, 2001
Apr 26, 2001
357
358
359
360
361
362
363
close(fd);
continue;
}
#endif
close(fd);
/* We're fine, add this joystick */
May 16, 2004
May 16, 2004
364
365
SDL_joylist[numjoysticks].fname =mystrdup(path);
if ( SDL_joylist[numjoysticks].fname ) {
Apr 26, 2001
Apr 26, 2001
366
367
368
dev_nums[numjoysticks] = sb.st_rdev;
++numjoysticks;
}
Dec 2, 2002
Dec 2, 2002
369
370
} else
break;
Apr 26, 2001
Apr 26, 2001
371
}
Dec 2, 2002
Dec 2, 2002
372
373
374
375
376
377
378
379
380
381
382
383
#ifdef USE_INPUT_EVENTS
/* This is a special case...
If the event devices are valid then the joystick devices
will be duplicates but without extra information about their
hats or balls. Unfortunately, the event devices can't
currently be calibrated, so it's a win-lose situation.
So : /dev/input/eventX = /dev/input/jsY = /dev/jsY
*/
if ( (i == 0) && (numjoysticks > 0) )
break;
#endif
Apr 26, 2001
Apr 26, 2001
384
}
May 16, 2004
May 16, 2004
385
386
387
#ifndef NO_LOGICAL_JOYSTICKS
numjoysticks += CountLogicalJoysticks(numjoysticks);
#endif
Dec 2, 2002
Dec 2, 2002
388
Apr 26, 2001
Apr 26, 2001
389
390
391
392
393
394
395
396
397
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;
May 16, 2004
May 16, 2004
398
SDL_logical_joydecl(int oindex = index);
Apr 26, 2001
Apr 26, 2001
399
May 16, 2004
May 16, 2004
400
401
402
#ifndef NO_LOGICAL_JOYSTICKS
SDL_joylist_head(index, index);
#endif
Apr 26, 2001
Apr 26, 2001
403
name = NULL;
May 16, 2004
May 16, 2004
404
fd = open(SDL_joylist[index].fname, O_RDONLY, 0);
Apr 26, 2001
Apr 26, 2001
405
406
407
408
409
410
if ( fd >= 0 ) {
if (
#ifdef USE_INPUT_EVENTS
(ioctl(fd, EVIOCGNAME(sizeof(namebuf)), namebuf) <= 0) &&
#endif
(ioctl(fd, JSIOCGNAME(sizeof(namebuf)), namebuf) <= 0) ) {
May 16, 2004
May 16, 2004
411
name = SDL_joylist[index].fname;
Apr 26, 2001
Apr 26, 2001
412
413
414
415
} else {
name = namebuf;
}
close(fd);
May 16, 2004
May 16, 2004
416
417
#ifndef NO_LOGICAL_JOYSTICKS
Sep 11, 2004
Sep 11, 2004
418
if (SDL_joylist[oindex].prev || SDL_joylist[oindex].next)
May 16, 2004
May 16, 2004
419
420
LogicalSuffix(SDL_joylist[oindex].logicalno, namebuf, 128);
#endif
Apr 26, 2001
Apr 26, 2001
421
422
423
424
425
426
427
428
}
return name;
}
static int allocate_hatdata(SDL_Joystick *joystick)
{
int i;
Feb 7, 2006
Feb 7, 2006
429
joystick->hwdata->hats = (struct hwdata_hat *)SDL_malloc(
Apr 26, 2001
Apr 26, 2001
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
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;
Feb 7, 2006
Feb 7, 2006
445
joystick->hwdata->balls = (struct hwdata_ball *)SDL_malloc(
Apr 26, 2001
Apr 26, 2001
446
447
448
449
450
451
452
453
454
455
456
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);
}
Dec 2, 2002
Dec 2, 2002
457
static SDL_bool JS_ConfigJoystick(SDL_Joystick *joystick, int fd)
Apr 26, 2001
Apr 26, 2001
458
459
{
SDL_bool handled;
Dec 2, 2002
Dec 2, 2002
460
461
462
463
464
465
466
unsigned char n;
int old_axes, tmp_naxes, tmp_nhats, tmp_nballs;
const char *name;
char *env, env_name[128];
int i;
handled = SDL_FALSE;
Apr 26, 2001
Apr 26, 2001
467
Dec 2, 2002
Dec 2, 2002
468
469
470
471
472
/* Default joystick device settings */
if ( ioctl(fd, JSIOCGAXES, &n) < 0 ) {
joystick->naxes = 2;
} else {
joystick->naxes = n;
Apr 26, 2001
Apr 26, 2001
473
}
Dec 2, 2002
Dec 2, 2002
474
475
if ( ioctl(fd, JSIOCGBUTTONS, &n) < 0 ) {
joystick->nbuttons = 2;
Apr 26, 2001
Apr 26, 2001
476
} else {
Dec 2, 2002
Dec 2, 2002
477
joystick->nbuttons = n;
Apr 26, 2001
Apr 26, 2001
478
479
}
Dec 2, 2002
Dec 2, 2002
480
481
482
483
name = SDL_SYS_JoystickName(joystick->index);
old_axes = joystick->naxes;
/* Generic analog joystick support */
Feb 7, 2006
Feb 7, 2006
484
485
if ( SDL_strstr(name, "Analog") == name && SDL_strstr(name, "-hat") ) {
if ( SDL_sscanf(name,"Analog %d-axis %*d-button %d-hat",
Dec 2, 2002
Dec 2, 2002
486
487
488
489
490
491
492
493
494
495
496
&tmp_naxes, &tmp_nhats) == 2 ) {
joystick->naxes = tmp_naxes;
joystick->nhats = tmp_nhats;
handled = SDL_TRUE;
}
}
/* Special joystick support */
for ( i=0; i < SDL_TABLESIZE(special_joysticks); ++i ) {
Feb 7, 2006
Feb 7, 2006
497
if ( SDL_strcmp(name, special_joysticks[i].name) == 0 ) {
Dec 2, 2002
Dec 2, 2002
498
499
500
501
502
503
504
505
506
507
508
joystick->naxes = special_joysticks[i].naxes;
joystick->nhats = special_joysticks[i].nhats;
joystick->nballs = special_joysticks[i].nballs;
handled = SDL_TRUE;
break;
}
}
/* User environment joystick support */
Feb 7, 2006
Feb 7, 2006
509
510
511
512
513
514
if ( (env = SDL_getenv("SDL_LINUX_JOYSTICK")) ) {
SDL_strcpy(env_name, "");
if ( *env == '\'' && SDL_sscanf(env, "'%[^']s'", env_name) == 1 )
env += SDL_strlen(env_name)+2;
else if ( SDL_sscanf(env, "%s", env_name) == 1 )
env += SDL_strlen(env_name);
Dec 2, 2002
Dec 2, 2002
515
Feb 7, 2006
Feb 7, 2006
516
if ( SDL_strcmp(name, env_name) == 0 ) {
Dec 2, 2002
Dec 2, 2002
517
Feb 7, 2006
Feb 7, 2006
518
if ( SDL_sscanf(env, "%d %d %d", &tmp_naxes, &tmp_nhats,
Dec 2, 2002
Dec 2, 2002
519
520
521
522
523
524
525
526
527
528
529
530
531
&tmp_nballs) == 3 ) {
joystick->naxes = tmp_naxes;
joystick->nhats = tmp_nhats;
joystick->nballs = tmp_nballs;
handled = SDL_TRUE;
}
}
}
/* Remap hats and balls */
if (handled) {
Apr 26, 2001
Apr 26, 2001
532
if ( joystick->nhats > 0 ) {
Feb 1, 2003
Feb 1, 2003
533
534
if ( allocate_hatdata(joystick) < 0 ) {
joystick->nhats = 0;
Apr 26, 2001
Apr 26, 2001
535
536
537
538
539
540
541
542
}
}
if ( joystick->nballs > 0 ) {
if ( allocate_balldata(joystick) < 0 ) {
joystick->nballs = 0;
}
}
}
Dec 2, 2002
Dec 2, 2002
543
Apr 26, 2001
Apr 26, 2001
544
545
546
547
548
549
550
return(handled);
}
#ifdef USE_INPUT_EVENTS
static SDL_bool EV_ConfigJoystick(SDL_Joystick *joystick, int fd)
{
Mar 5, 2004
Mar 5, 2004
551
int i, t;
Apr 26, 2001
Apr 26, 2001
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
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];
May 16, 2004
May 16, 2004
592
593
if ( ioctl(fd, EVIOCGABS(i), values) < 0 )
continue;
Apr 26, 2001
Apr 26, 2001
594
595
596
597
598
599
600
601
602
603
604
#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;
Mar 6, 2004
Mar 6, 2004
605
606
607
608
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];
Mar 5, 2004
Mar 5, 2004
609
610
611
t = ((values[2] - values[1]) / 2 - 2 * values[4]);
if ( t != 0 ) {
joystick->hwdata->abs_correct[i].coef[2] = (1 << 29) / t;
Mar 6, 2004
Mar 6, 2004
612
613
} else {
joystick->hwdata->abs_correct[i].coef[2] = 0;
Mar 5, 2004
Mar 5, 2004
614
}
Apr 26, 2001
Apr 26, 2001
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
}
++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 */
May 16, 2004
May 16, 2004
648
649
650
651
652
#ifndef NO_LOGICAL_JOYSTICKS
static void ConfigLogicalJoystick(SDL_Joystick *joystick)
{
struct joystick_logical_layout* layout;
Sep 11, 2004
Sep 11, 2004
653
layout = SDL_joylist[joystick->index].map->layouts +
May 16, 2004
May 16, 2004
654
655
656
657
658
659
660
661
662
663
SDL_joylist[joystick->index].logicalno;
joystick->nbuttons = layout->nbuttons;
joystick->nhats = layout->nhats;
joystick->naxes = layout->naxes;
joystick->nballs = layout->nballs;
}
#endif
Apr 26, 2001
Apr 26, 2001
664
665
666
667
668
669
670
671
/* 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)
{
int fd;
May 16, 2004
May 16, 2004
672
673
SDL_logical_joydecl(int realindex);
SDL_logical_joydecl(SDL_Joystick *realjoy = NULL);
Apr 26, 2001
Apr 26, 2001
674
675
/* Open the joystick and set the joystick file descriptor */
May 16, 2004
May 16, 2004
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
#ifndef NO_LOGICAL_JOYSTICKS
if (SDL_joylist[joystick->index].fname == NULL) {
SDL_joylist_head(realindex, joystick->index);
realjoy = SDL_JoystickOpen(realindex);
if (realjoy == NULL)
return(-1);
fd = realjoy->hwdata->fd;
} else {
fd = open(SDL_joylist[joystick->index].fname, O_RDONLY, 0);
}
SDL_joylist[joystick->index].joy = joystick;
#else
fd = open(SDL_joylist[joystick->index].fname, O_RDONLY, 0);
#endif
Apr 26, 2001
Apr 26, 2001
694
695
696
697
698
699
if ( fd < 0 ) {
SDL_SetError("Unable to open %s\n",
SDL_joylist[joystick->index]);
return(-1);
}
joystick->hwdata = (struct joystick_hwdata *)
Feb 7, 2006
Feb 7, 2006
700
SDL_malloc(sizeof(*joystick->hwdata));
Apr 26, 2001
Apr 26, 2001
701
702
703
704
705
if ( joystick->hwdata == NULL ) {
SDL_OutOfMemory();
close(fd);
return(-1);
}
Feb 7, 2006
Feb 7, 2006
706
SDL_memset(joystick->hwdata, 0, sizeof(*joystick->hwdata));
Apr 26, 2001
Apr 26, 2001
707
708
709
710
711
712
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 */
May 16, 2004
May 16, 2004
713
714
715
716
717
#ifndef NO_LOGICAL_JOYSTICKS
if (realjoy)
ConfigLogicalJoystick(joystick);
else
#endif
Apr 26, 2001
Apr 26, 2001
718
719
720
#ifdef USE_INPUT_EVENTS
if ( ! EV_ConfigJoystick(joystick, fd) )
#endif
Dec 2, 2002
Dec 2, 2002
721
722
JS_ConfigJoystick(joystick, fd);
Apr 26, 2001
Apr 26, 2001
723
724
725
return(0);
}
May 16, 2004
May 16, 2004
726
727
728
#ifndef NO_LOGICAL_JOYSTICKS
static SDL_Joystick* FindLogicalJoystick(
Sep 11, 2004
Sep 11, 2004
729
SDL_Joystick *joystick, struct joystick_logical_values* v)
May 16, 2004
May 16, 2004
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
{
SDL_Joystick *logicaljoy;
register int i;
i = joystick->index;
logicaljoy = NULL;
/* get the fake joystick that will receive the event
*/
for(;;) {
if (SDL_joylist[i].logicalno == v->njoy) {
logicaljoy = SDL_joylist[i].joy;
break;
}
if (SDL_joylist[i].next == 0)
break;
i = SDL_joylist[i].next;
}
return logicaljoy;
}
static int LogicalJoystickButton(
SDL_Joystick *joystick, Uint8 button, Uint8 state){
Sep 11, 2004
Sep 11, 2004
758
struct joystick_logical_values* buttons;
May 16, 2004
May 16, 2004
759
760
761
762
763
764
765
766
767
SDL_Joystick *logicaljoy = NULL;
/* if there's no map then this is just a regular joystick
*/
if (SDL_joylist[joystick->index].map == NULL)
return 0;
/* get the logical joystick that will receive the event
*/
Sep 11, 2004
Sep 11, 2004
768
buttons = SDL_joylist[joystick->index].map->buttons+button;
May 16, 2004
May 16, 2004
769
770
771
772
773
774
775
776
777
778
779
780
781
logicaljoy = FindLogicalJoystick(joystick, buttons);
if (logicaljoy == NULL)
return 1;
SDL_PrivateJoystickButton(logicaljoy, buttons->nthing, state);
return 1;
}
static int LogicalJoystickAxis(
SDL_Joystick *joystick, Uint8 axis, Sint16 value)
{
Sep 11, 2004
Sep 11, 2004
782
struct joystick_logical_values* axes;
May 16, 2004
May 16, 2004
783
784
785
786
787
788
789
790
791
SDL_Joystick *logicaljoy = NULL;
/* if there's no map then this is just a regular joystick
*/
if (SDL_joylist[joystick->index].map == NULL)
return 0;
/* get the logical joystick that will receive the event
*/
Sep 11, 2004
Sep 11, 2004
792
axes = SDL_joylist[joystick->index].map->axes+axis;
May 16, 2004
May 16, 2004
793
794
795
796
797
798
799
800
801
802
803
logicaljoy = FindLogicalJoystick(joystick, axes);
if (logicaljoy == NULL)
return 1;
SDL_PrivateJoystickAxis(logicaljoy, axes->nthing, value);
return 1;
}
#endif /* USE_LOGICAL_JOYSTICKS */
Apr 26, 2001
Apr 26, 2001
804
805
806
807
808
809
810
811
812
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 }
};
May 16, 2004
May 16, 2004
813
SDL_logical_joydecl(SDL_Joystick *logicaljoy = NULL);
Sep 11, 2004
Sep 11, 2004
814
SDL_logical_joydecl(struct joystick_logical_values* hats = NULL);
Apr 26, 2001
Apr 26, 2001
815
816
817
818
819
820
821
822
823
824
825
826
827
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;
May 16, 2004
May 16, 2004
828
829
830
831
832
833
834
835
#ifndef NO_LOGICAL_JOYSTICKS
/* if there's no map then this is just a regular joystick
*/
if (SDL_joylist[stick->index].map != NULL) {
/* get the fake joystick that will receive the event
*/
Sep 11, 2004
Sep 11, 2004
836
hats = SDL_joylist[stick->index].map->hats+hat;
May 16, 2004
May 16, 2004
837
838
839
840
841
842
843
844
845
logicaljoy = FindLogicalJoystick(stick, hats);
}
if (logicaljoy) {
stick = logicaljoy;
hat = hats->nthing;
}
#endif /* USE_LOGICAL_JOYSTICKS */
Apr 26, 2001
Apr 26, 2001
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
SDL_PrivateJoystickHat(stick, hat,
position_map[the_hat->axis[1]][the_hat->axis[0]]);
}
}
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;
May 16, 2004
May 16, 2004
868
869
870
871
872
873
874
#ifndef NO_LOGICAL_JOYSTICKS
if (SDL_joylist[joystick->index].fname == NULL) {
SDL_joylist_head(i, joystick->index);
return JS_HandleEvents(SDL_joylist[i].joy);
}
#endif
Apr 26, 2001
Apr 26, 2001
875
876
877
878
879
880
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 ) {
May 16, 2004
May 16, 2004
881
882
883
884
#ifndef NO_LOGICAL_JOYSTICKS
if (!LogicalJoystickAxis(joystick,
events[i].number, events[i].value))
#endif
Apr 26, 2001
Apr 26, 2001
885
886
887
888
889
SDL_PrivateJoystickAxis(joystick,
events[i].number, events[i].value);
break;
}
events[i].number -= joystick->naxes;
Feb 1, 2003
Feb 1, 2003
890
891
892
893
894
895
other_axis = (events[i].number / 2);
if ( other_axis < joystick->nhats ) {
HandleHat(joystick, other_axis,
events[i].number%2,
events[i].value);
break;
Apr 26, 2001
Apr 26, 2001
896
897
898
899
900
901
902
903
904
905
906
}
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:
May 16, 2004
May 16, 2004
907
908
909
910
#ifndef NO_LOGICAL_JOYSTICKS
if (!LogicalJoystickButton(joystick,
events[i].number, events[i].value))
#endif
Apr 26, 2001
Apr 26, 2001
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
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;
}
Dec 2, 2002
Dec 2, 2002
939
Apr 26, 2001
Apr 26, 2001
940
/* Clamp and return */
Jan 27, 2006
Jan 27, 2006
941
if ( value < -32768 ) return -32768;
Dec 2, 2002
Dec 2, 2002
942
943
if ( value > 32767 ) return 32767;
Apr 26, 2001
Apr 26, 2001
944
945
946
947
948
949
950
951
952
return value;
}
static __inline__ void EV_HandleEvents(SDL_Joystick *joystick)
{
struct input_event events[32];
int i, len;
int code;
May 16, 2004
May 16, 2004
953
954
955
956
957
958
959
#ifndef NO_LOGICAL_JOYSTICKS
if (SDL_joylist[joystick->index].fname == NULL) {
SDL_joylist_head(i, joystick->index);
return EV_HandleEvents(SDL_joylist[i].joy);
}
#endif
Apr 26, 2001
Apr 26, 2001
960
961
962
963
964
965
966
967
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;
May 16, 2004
May 16, 2004
968
969
970
971
972
#ifndef NO_LOGICAL_JOYSTICKS
if (!LogicalJoystickButton(joystick,
joystick->hwdata->key_map[code],
events[i].value))
#endif
Apr 26, 2001
Apr 26, 2001
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
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);
May 16, 2004
May 16, 2004
994
995
996
997
998
#ifndef NO_LOGICAL_JOYSTICKS
if (!LogicalJoystickAxis(joystick,
joystick->hwdata->abs_map[code],
events[i].value))
#endif
Apr 26, 2001
Apr 26, 2001
999
1000
SDL_PrivateJoystickAxis(joystick,
joystick->hwdata->abs_map[code],