2 * freeglut_joystick_x11.c
4 * Joystick handling code
6 * Copyright (c) 1999-2000 Pawel W. Olszta. All Rights Reserved.
7 * Written by Steve Baker, <sjbaker1@airmail.net>
8 * Copied for Platform code by Evan Felix <karcaw at gmail.com>
9 * Creation date: Thur Feb 2 2012
11 * Permission is hereby granted, free of charge, to any person obtaining a
12 * copy of this software and associated documentation files (the "Software"),
13 * to deal in the Software without restriction, including without limitation
14 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 * and/or sell copies of the Software, and to permit persons to whom the
16 * Software is furnished to do so, subject to the following conditions:
18 * The above copyright notice and this permission notice shall be included
19 * in all copies or substantial portions of the Software.
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
22 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
24 * PAWEL W. OLSZTA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
25 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 * FreeBSD port by Stephen Montgomery-Smith <stephen@math.missouri.edu>
32 * Redone by John Fay 2/4/04 with another look from the PLIB "js" library.
33 * Many thanks for Steve Baker for permission to pull from that library.
36 #include <GL/freeglut.h>
37 #include "../fg_internal.h"
38 #ifdef HAVE_SYS_PARAM_H
39 # include <sys/param.h>
43 /*this should be defined in a header file */
44 #define MAX_NUM_JOYSTICKS 2
45 extern SFG_Joystick *fgJoystick [ MAX_NUM_JOYSTICKS ];
47 void fgPlatformJoystickRawRead( SFG_Joystick* joy, int* buttons, float* axes )
51 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__)
54 if ( joy->pJoystick.os->is_analog )
56 int status = read ( joy->pJoystick.os->fd, &joy->pJoystick.os->ajs, sizeof(joy->pJoystick.os->ajs) );
57 if ( status != sizeof(joy->pJoystick.os->ajs) ) {
58 perror ( joy->pJoystick.os->fname );
62 if ( buttons != NULL )
63 *buttons = ( joy->pJoystick.os->ajs.b1 ? 1 : 0 ) | ( joy->pJoystick.os->ajs.b2 ? 2 : 0 );
67 axes[0] = (float) joy->pJoystick.os->ajs.x;
68 axes[1] = (float) joy->pJoystick.os->ajs.y;
75 while ( ( len = read ( joy->pJoystick.os->fd, joy->pJoystick.os->hid_data_buf, joy->pJoystick.os->hid_dlen ) ) == joy->pJoystick.os->hid_dlen )
79 for ( h = joy->pJoystick.os->hids; h; h = h->next )
81 int d = hid_get_data ( joy->pJoystick.os->hid_data_buf, h );
83 int page = HID_PAGE ( h->usage );
84 int usage = HID_USAGE ( h->usage );
86 if ( page == HUP_GENERIC_DESKTOP )
89 for ( i = 0; i < joy->num_axes; i++ )
90 if (joy->pJoystick.os->axes_usage[i] == usage)
92 if (usage == HUG_HAT_SWITCH)
96 joy->pJoystick.os->cache_axes[i] = (float)hatmap_x[d];
97 joy->pJoystick.os->cache_axes[i + 1] = (float)hatmap_y[d];
101 joy->pJoystick.os->cache_axes[i] = (float)d;
106 else if (page == HUP_BUTTON)
108 if (usage > 0 && usage < _JS_MAX_BUTTONS + 1)
111 joy->pJoystick.os->cache_buttons |= (1 << ( usage - 1 ));
113 joy->pJoystick.os->cache_buttons &= ~(1 << ( usage - 1 ));
119 if ( len < 0 && errno != EAGAIN )
124 perror( joy->pJoystick.os->fname );
127 if ( buttons != NULL ) *buttons = joy->pJoystick.os->cache_buttons;
129 memcpy ( axes, joy->pJoystick.os->cache_axes, sizeof(float) * joy->num_axes );
137 status = read ( joy->pJoystick.fd, &joy->pJoystick.js, sizeof(struct js_event) );
139 if ( status != sizeof( struct js_event ) )
142 if ( errno == EAGAIN )
144 /* Use the old values */
146 *buttons = joy->pJoystick.tmp_buttons;
148 memcpy( axes, joy->pJoystick.tmp_axes,
149 sizeof( float ) * joy->num_axes );
154 fgWarning ( "%s", joy->pJoystick.fname );
155 joy->error = GL_TRUE;
159 switch ( joy->pJoystick.js.type & ~JS_EVENT_INIT )
161 case JS_EVENT_BUTTON:
162 if( joy->pJoystick.js.value == 0 ) /* clear the flag */
163 joy->pJoystick.tmp_buttons &= ~( 1 << joy->pJoystick.js.number );
165 joy->pJoystick.tmp_buttons |= ( 1 << joy->pJoystick.js.number );
169 if ( joy->pJoystick.js.number < joy->num_axes )
171 joy->pJoystick.tmp_axes[ joy->pJoystick.js.number ] = ( float )joy->pJoystick.js.value;
174 memcpy( axes, joy->pJoystick.tmp_axes, sizeof(float) * joy->num_axes );
179 fgWarning ( "PLIB_JS: Unrecognised /dev/js return!?!" );
181 /* use the old values */
183 if ( buttons != NULL ) *buttons = joy->pJoystick.tmp_buttons;
185 memcpy ( axes, joy->pJoystick.tmp_axes, sizeof(float) * joy->num_axes );
191 *buttons = joy->pJoystick.tmp_buttons;
195 status = read( joy->pJoystick.fd, &joy->pJoystick.js, JS_RETURN );
197 if ( status != JS_RETURN )
199 fgWarning( "%s", joy->pJoystick.fname );
200 joy->error = GL_TRUE;
205 # if defined( __FreeBSD__ ) || defined(__FreeBSD_kernel__) || defined( __NetBSD__ )
206 *buttons = ( joy->pJoystick.js.b1 ? 1 : 0 ) | ( joy->pJoystick.js.b2 ? 2 : 0 ); /* XXX Should not be here -- BSD is handled earlier */
208 *buttons = joy->pJoystick.js.buttons;
213 axes[ 0 ] = (float) joy->pJoystick.js.x;
214 axes[ 1 ] = (float) joy->pJoystick.js.y;
220 void fgPlatformJoystickOpen( SFG_Joystick* joy )
222 #if defined( __FreeBSD__ ) || defined(__FreeBSD_kernel__) || defined( __NetBSD__ )
230 # if defined( __linux__ ) || TARGET_HOST_SOLARIS
236 #if defined( __FreeBSD__ ) || defined(__FreeBSD_kernel__) || defined( __NetBSD__ )
237 for( i = 0; i < _JS_MAX_AXES; i++ )
238 joy->pJoystick.os->cache_axes[ i ] = 0.0f;
240 joy->pJoystick.os->cache_buttons = 0;
242 joy->pJoystick.os->fd = open( joy->pJoystick.os->fname, O_RDONLY | O_NONBLOCK);
245 if( joy->pJoystick.os->fd < 0 && errno == EACCES )
246 fgWarning ( "%s exists but is not readable by you", joy->pJoystick.os->fname );
249 joy->error =( joy->pJoystick.os->fd < 0 );
255 joy->num_buttons = 0;
256 if( joy->pJoystick.os->is_analog )
259 char joyfname[ 1024 ];
260 int noargs, in_no_axes;
262 float axes [ _JS_MAX_AXES ];
263 int buttons[ _JS_MAX_AXES ];
266 joy->num_buttons = 32;
268 fghJoystickRawRead( joy, buttons, axes );
269 joy->error = axes[ 0 ] < -1000000000.0f;
273 snprintf( joyfname, sizeof(joyfname), "%s/.joy%drc", getenv( "HOME" ), joy->id );
275 joyfile = fopen( joyfname, "r" );
276 joy->error =( joyfile == NULL );
280 noargs = fscanf( joyfile, "%d%f%f%f%f%f%f", &in_no_axes,
281 &joy->min[ 0 ], &joy->center[ 0 ], &joy->max[ 0 ],
282 &joy->min[ 1 ], &joy->center[ 1 ], &joy->max[ 1 ] );
283 joy->error = noargs != 7 || in_no_axes != _JS_MAX_AXES;
288 for( i = 0; i < _JS_MAX_AXES; i++ )
290 joy->dead_band[ i ] = 0.0f;
291 joy->saturate [ i ] = 1.0f;
294 return; /* End of analog code */
298 if( ! fghJoystickInitializeHID( joy->pJoystick.os, &joy->num_axes,
299 &joy->num_buttons ) )
301 close( joy->pJoystick.os->fd );
302 joy->error = GL_TRUE;
306 cp = strrchr( joy->pJoystick.os->fname, '/' );
309 if( fghJoystickFindUSBdev( &cp[1], joy->name, sizeof( joy->name ) ) ==
311 strcpy( joy->name, &cp[1] );
314 if( joy->num_axes > _JS_MAX_AXES )
315 joy->num_axes = _JS_MAX_AXES;
317 for( i = 0; i < _JS_MAX_AXES; i++ )
319 /* We really should get this from the HID, but that data seems
320 * to be quite unreliable for analog-to-USB converters. Punt for
323 if( joy->pJoystick.os->axes_usage[ i ] == HUG_HAT_SWITCH )
325 joy->max [ i ] = 1.0f;
326 joy->center[ i ] = 0.0f;
327 joy->min [ i ] = -1.0f;
331 joy->max [ i ] = 255.0f;
332 joy->center[ i ] = 127.0f;
333 joy->min [ i ] = 0.0f;
336 joy->dead_band[ i ] = 0.0f;
337 joy->saturate[ i ] = 1.0f;
342 #if defined( __linux__ ) || TARGET_HOST_SOLARIS
343 /* Default for older Linux systems. */
345 joy->num_buttons = 32;
348 for( i = 0; i < _JS_MAX_AXES; i++ )
349 joy->pJoystick.tmp_axes[ i ] = 0.0f;
351 joy->pJoystick.tmp_buttons = 0;
354 joy->pJoystick.fd = open( joy->pJoystick.fname, O_RDONLY );
356 joy->error =( joy->pJoystick.fd < 0 );
361 /* Set the correct number of axes for the linux driver */
363 /* Melchior Franz's fixes for big-endian Linuxes since writing
364 * to the upper byte of an uninitialized word doesn't work.
367 ioctl( joy->pJoystick.fd, JSIOCGAXES, &u );
369 ioctl( joy->pJoystick.fd, JSIOCGBUTTONS, &u );
370 joy->num_buttons = u;
371 ioctl( joy->pJoystick.fd, JSIOCGNAME( sizeof( joy->name ) ), joy->name );
372 fcntl( joy->pJoystick.fd, F_SETFL, O_NONBLOCK );
376 * The Linux driver seems to return 512 for all axes
377 * when no stick is present - but there is a chance
378 * that could happen by accident - so it's gotta happen
379 * on both axes for at least 100 attempts.
381 * PWO: shouldn't be that done somehow wiser on the kernel level?
388 fghJoystickRawRead( joy, NULL, joy->center );
390 } while( !joy->error &&
392 joy->center[ 0 ] == 512.0f &&
393 joy->center[ 1 ] == 512.0f );
395 if ( counter >= 100 )
396 joy->error = GL_TRUE;
399 for( i = 0; i < _JS_MAX_AXES; i++ )
402 joy->max [ i ] = 32767.0f;
403 joy->center[ i ] = 0.0f;
404 joy->min [ i ] = -32767.0f;
406 joy->max[ i ] = joy->center[ i ] * 2.0f;
407 joy->min[ i ] = 0.0f;
409 joy->dead_band[ i ] = 0.0f;
410 joy->saturate [ i ] = 1.0f;
416 void fgPlatformJoystickInit( SFG_Joystick *fgJoystick[], int ident )
418 #if defined( __FreeBSD__ ) || defined(__FreeBSD_kernel__) || defined( __NetBSD__ )
419 fgJoystick[ ident ]->id = ident;
420 fgJoystick[ ident ]->error = GL_FALSE;
422 fgJoystick[ ident ]->pJoystick.os = calloc( 1, sizeof( struct os_specific_s ) );
423 memset( fgJoystick[ ident ]->pJoystick.os, 0, sizeof( struct os_specific_s ) );
424 if( ident < USB_IDENT_OFFSET )
425 fgJoystick[ ident ]->pJoystick.os->is_analog = 1;
426 if( fgJoystick[ ident ]->pJoystick.os->is_analog )
427 snprintf( fgJoystick[ ident ]->pJoystick.os->fname, sizeof(fgJoystick[ ident ]->pJoystick.os->fname), "%s%d", AJSDEV, ident );
429 snprintf( fgJoystick[ ident ]->pJoystick.os->fname, sizeof(fgJoystick[ ident ]->pJoystick.os->fname), "%s%d", UHIDDEV,
430 ident - USB_IDENT_OFFSET );
431 #elif defined( __linux__ )
432 fgJoystick[ ident ]->id = ident;
433 fgJoystick[ ident ]->error = GL_FALSE;
435 snprintf( fgJoystick[ident]->pJoystick.fname, sizeof(fgJoystick[ident]->pJoystick.fname), "/dev/input/js%d", ident );
437 if( access( fgJoystick[ ident ]->pJoystick.fname, F_OK ) != 0 )
438 snprintf( fgJoystick[ ident ]->pJoystick.fname, sizeof(fgJoystick[ ident ]->pJoystick.fname), "/dev/js%d", ident );
443 void fgPlatformJoystickClose ( int ident )
445 #if defined( __FreeBSD__ ) || defined(__FreeBSD_kernel__) || defined( __NetBSD__ )
446 if( fgJoystick[ident]->pJoystick.os )
448 if( ! fgJoystick[ ident ]->error )
449 close( fgJoystick[ ident ]->pJoystick.os->fd );
451 if( fgJoystick[ ident ]->pJoystick.os->hids )
452 free (fgJoystick[ ident ]->pJoystick.os->hids);
453 if( fgJoystick[ ident ]->pJoystick.os->hid_data_buf )
454 free( fgJoystick[ ident ]->pJoystick.os->hid_data_buf );
456 free( fgJoystick[ident]->pJoystick.os );
460 if( ! fgJoystick[ident]->error )
461 close( fgJoystick[ ident ]->pJoystick.fd );