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>
45 /*this should be defined in a header file */
46 #define MAX_NUM_JOYSTICKS 2
47 extern SFG_Joystick *fgJoystick [ MAX_NUM_JOYSTICKS ];
49 void fgPlatformJoystickRawRead( SFG_Joystick* joy, int* buttons, float* axes )
53 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__)
56 if ( joy->pJoystick.os->is_analog )
58 int status = read ( joy->pJoystick.os->fd, &joy->pJoystick.os->ajs, sizeof(joy->pJoystick.os->ajs) );
59 if ( status != sizeof(joy->pJoystick.os->ajs) ) {
60 perror ( joy->pJoystick.os->fname );
64 if ( buttons != NULL )
65 *buttons = ( joy->pJoystick.os->ajs.b1 ? 1 : 0 ) | ( joy->pJoystick.os->ajs.b2 ? 2 : 0 );
69 axes[0] = (float) joy->pJoystick.os->ajs.x;
70 axes[1] = (float) joy->pJoystick.os->ajs.y;
77 while ( ( len = read ( joy->pJoystick.os->fd, joy->pJoystick.os->hid_data_buf, joy->pJoystick.os->hid_dlen ) ) == joy->pJoystick.os->hid_dlen )
81 for ( h = joy->pJoystick.os->hids; h; h = h->next )
83 int d = hid_get_data ( joy->pJoystick.os->hid_data_buf, h );
85 int page = HID_PAGE ( h->usage );
86 int usage = HID_USAGE ( h->usage );
88 if ( page == HUP_GENERIC_DESKTOP )
91 for ( i = 0; i < joy->num_axes; i++ )
92 if (joy->pJoystick.os->axes_usage[i] == usage)
94 if (usage == HUG_HAT_SWITCH)
98 joy->pJoystick.os->cache_axes[i] = (float)hatmap_x[d];
99 joy->pJoystick.os->cache_axes[i + 1] = (float)hatmap_y[d];
103 joy->pJoystick.os->cache_axes[i] = (float)d;
108 else if (page == HUP_BUTTON)
110 if (usage > 0 && usage < _JS_MAX_BUTTONS + 1)
113 joy->pJoystick.os->cache_buttons |= (1 << ( usage - 1 ));
115 joy->pJoystick.os->cache_buttons &= ~(1 << ( usage - 1 ));
120 if ( len < 0 && errno != EAGAIN )
122 perror( joy->pJoystick.os->fname );
125 if ( buttons != NULL ) *buttons = joy->pJoystick.os->cache_buttons;
127 memcpy ( axes, joy->pJoystick.os->cache_axes, sizeof(float) * joy->num_axes );
135 status = read ( joy->pJoystick.fd, &joy->pJoystick.js, sizeof(struct js_event) );
137 if ( status != sizeof( struct js_event ) )
139 if ( errno == EAGAIN )
141 /* Use the old values */
143 *buttons = joy->pJoystick.tmp_buttons;
145 memcpy( axes, joy->pJoystick.tmp_axes,
146 sizeof( float ) * joy->num_axes );
150 fgWarning ( "%s", joy->pJoystick.fname );
151 joy->error = GL_TRUE;
155 switch ( joy->pJoystick.js.type & ~JS_EVENT_INIT )
157 case JS_EVENT_BUTTON:
158 if( joy->pJoystick.js.value == 0 ) /* clear the flag */
159 joy->pJoystick.tmp_buttons &= ~( 1 << joy->pJoystick.js.number );
161 joy->pJoystick.tmp_buttons |= ( 1 << joy->pJoystick.js.number );
165 if ( joy->pJoystick.js.number < joy->num_axes )
167 joy->pJoystick.tmp_axes[ joy->pJoystick.js.number ] = ( float )joy->pJoystick.js.value;
170 memcpy( axes, joy->pJoystick.tmp_axes, sizeof(float) * joy->num_axes );
175 fgWarning ( "PLIB_JS: Unrecognised /dev/js return!?!" );
177 /* use the old values */
179 if ( buttons != NULL ) *buttons = joy->pJoystick.tmp_buttons;
181 memcpy ( axes, joy->pJoystick.tmp_axes, sizeof(float) * joy->num_axes );
187 *buttons = joy->pJoystick.tmp_buttons;
191 status = read( joy->pJoystick.fd, &joy->pJoystick.js, JS_RETURN );
193 if ( status != JS_RETURN )
195 fgWarning( "%s", joy->pJoystick.fname );
196 joy->error = GL_TRUE;
201 # if defined( __FreeBSD__ ) || defined(__FreeBSD_kernel__) || defined( __NetBSD__ )
202 *buttons = ( joy->pJoystick.js.b1 ? 1 : 0 ) | ( joy->pJoystick.js.b2 ? 2 : 0 ); /* XXX Should not be here -- BSD is handled earlier */
204 *buttons = joy->pJoystick.js.buttons;
209 axes[ 0 ] = (float) joy->pJoystick.js.x;
210 axes[ 1 ] = (float) joy->pJoystick.js.y;
216 void fgPlatformJoystickOpen( SFG_Joystick* joy )
218 #if defined( __FreeBSD__ ) || defined(__FreeBSD_kernel__) || defined( __NetBSD__ )
226 # if defined( __linux__ ) || TARGET_HOST_SOLARIS
232 #if defined( __FreeBSD__ ) || defined(__FreeBSD_kernel__) || defined( __NetBSD__ )
233 for( i = 0; i < _JS_MAX_AXES; i++ )
234 joy->pJoystick.os->cache_axes[ i ] = 0.0f;
236 joy->pJoystick.os->cache_buttons = 0;
238 joy->pJoystick.os->fd = open( joy->pJoystick.os->fname, O_RDONLY | O_NONBLOCK);
240 if( joy->pJoystick.os->fd < 0 && errno == EACCES )
241 fgWarning ( "%s exists but is not readable by you", joy->pJoystick.os->fname );
243 joy->error =( joy->pJoystick.os->fd < 0 );
249 joy->num_buttons = 0;
250 if( joy->pJoystick.os->is_analog )
253 char joyfname[ 1024 ];
254 int noargs, in_no_axes;
256 float axes [ _JS_MAX_AXES ];
257 int buttons[ _JS_MAX_AXES ];
260 joy->num_buttons = 32;
262 fghJoystickRawRead( joy, buttons, axes );
263 joy->error = axes[ 0 ] < -1000000000.0f;
267 snprintf( joyfname, sizeof(joyfname), "%s/.joy%drc", getenv( "HOME" ), joy->id );
269 joyfile = fopen( joyfname, "r" );
270 joy->error =( joyfile == NULL );
274 noargs = fscanf( joyfile, "%d%f%f%f%f%f%f", &in_no_axes,
275 &joy->min[ 0 ], &joy->center[ 0 ], &joy->max[ 0 ],
276 &joy->min[ 1 ], &joy->center[ 1 ], &joy->max[ 1 ] );
277 joy->error = noargs != 7 || in_no_axes != _JS_MAX_AXES;
282 for( i = 0; i < _JS_MAX_AXES; i++ )
284 joy->dead_band[ i ] = 0.0f;
285 joy->saturate [ i ] = 1.0f;
288 return; /* End of analog code */
292 if( ! fghJoystickInitializeHID( joy->pJoystick.os, &joy->num_axes,
293 &joy->num_buttons ) )
295 close( joy->pJoystick.os->fd );
296 joy->error = GL_TRUE;
300 cp = strrchr( joy->pJoystick.os->fname, '/' );
303 if( fghJoystickFindUSBdev( &cp[1], joy->name, sizeof( joy->name ) ) ==
305 strcpy( joy->name, &cp[1] );
308 if( joy->num_axes > _JS_MAX_AXES )
309 joy->num_axes = _JS_MAX_AXES;
311 for( i = 0; i < _JS_MAX_AXES; i++ )
313 /* We really should get this from the HID, but that data seems
314 * to be quite unreliable for analog-to-USB converters. Punt for
317 if( joy->pJoystick.os->axes_usage[ i ] == HUG_HAT_SWITCH )
319 joy->max [ i ] = 1.0f;
320 joy->center[ i ] = 0.0f;
321 joy->min [ i ] = -1.0f;
325 joy->max [ i ] = 255.0f;
326 joy->center[ i ] = 127.0f;
327 joy->min [ i ] = 0.0f;
330 joy->dead_band[ i ] = 0.0f;
331 joy->saturate[ i ] = 1.0f;
336 #if defined( __linux__ ) || TARGET_HOST_SOLARIS
337 /* Default for older Linux systems. */
339 joy->num_buttons = 32;
342 for( i = 0; i < _JS_MAX_AXES; i++ )
343 joy->pJoystick.tmp_axes[ i ] = 0.0f;
345 joy->pJoystick.tmp_buttons = 0;
348 joy->pJoystick.fd = open( joy->pJoystick.fname, O_RDONLY );
350 joy->error =( joy->pJoystick.fd < 0 );
355 /* Set the correct number of axes for the linux driver */
357 /* Melchior Franz's fixes for big-endian Linuxes since writing
358 * to the upper byte of an uninitialized word doesn't work.
361 ioctl( joy->pJoystick.fd, JSIOCGAXES, &u );
363 ioctl( joy->pJoystick.fd, JSIOCGBUTTONS, &u );
364 joy->num_buttons = u;
365 ioctl( joy->pJoystick.fd, JSIOCGNAME( sizeof( joy->name ) ), joy->name );
366 fcntl( joy->pJoystick.fd, F_SETFL, O_NONBLOCK );
370 * The Linux driver seems to return 512 for all axes
371 * when no stick is present - but there is a chance
372 * that could happen by accident - so it's gotta happen
373 * on both axes for at least 100 attempts.
375 * PWO: shouldn't be that done somehow wiser on the kernel level?
382 fghJoystickRawRead( joy, NULL, joy->center );
384 } while( !joy->error &&
386 joy->center[ 0 ] == 512.0f &&
387 joy->center[ 1 ] == 512.0f );
389 if ( counter >= 100 )
390 joy->error = GL_TRUE;
393 for( i = 0; i < _JS_MAX_AXES; i++ )
396 joy->max [ i ] = 32767.0f;
397 joy->center[ i ] = 0.0f;
398 joy->min [ i ] = -32767.0f;
400 joy->max[ i ] = joy->center[ i ] * 2.0f;
401 joy->min[ i ] = 0.0f;
403 joy->dead_band[ i ] = 0.0f;
404 joy->saturate [ i ] = 1.0f;
410 void fgPlatformJoystickInit( SFG_Joystick *fgJoystick[], int ident )
412 #if defined( __FreeBSD__ ) || defined(__FreeBSD_kernel__) || defined( __NetBSD__ )
413 fgJoystick[ ident ]->id = ident;
414 fgJoystick[ ident ]->error = GL_FALSE;
416 fgJoystick[ ident ]->pJoystick.os = calloc( 1, sizeof( struct os_specific_s ) );
417 memset( fgJoystick[ ident ]->pJoystick.os, 0, sizeof( struct os_specific_s ) );
418 if( ident < USB_IDENT_OFFSET )
419 fgJoystick[ ident ]->pJoystick.os->is_analog = 1;
420 if( fgJoystick[ ident ]->pJoystick.os->is_analog )
421 snprintf( fgJoystick[ ident ]->pJoystick.os->fname, sizeof(fgJoystick[ ident ]->pJoystick.os->fname), "%s%d", AJSDEV, ident );
423 snprintf( fgJoystick[ ident ]->pJoystick.os->fname, sizeof(fgJoystick[ ident ]->pJoystick.os->fname), "%s%d", UHIDDEV,
424 ident - USB_IDENT_OFFSET );
425 #elif defined( __linux__ )
426 fgJoystick[ ident ]->id = ident;
427 fgJoystick[ ident ]->error = GL_FALSE;
429 snprintf( fgJoystick[ident]->pJoystick.fname, sizeof(fgJoystick[ident]->pJoystick.fname), "/dev/input/js%d", ident );
431 if( access( fgJoystick[ ident ]->pJoystick.fname, F_OK ) != 0 )
432 snprintf( fgJoystick[ ident ]->pJoystick.fname, sizeof(fgJoystick[ ident ]->pJoystick.fname), "/dev/js%d", ident );
437 void fgPlatformJoystickClose ( int ident )
439 #if defined( __FreeBSD__ ) || defined(__FreeBSD_kernel__) || defined( __NetBSD__ )
440 if( fgJoystick[ident]->pJoystick.os )
442 if( ! fgJoystick[ ident ]->error )
443 close( fgJoystick[ ident ]->pJoystick.os->fd );
445 if( fgJoystick[ ident ]->pJoystick.os->hids )
446 free (fgJoystick[ ident ]->pJoystick.os->hids);
447 if( fgJoystick[ ident ]->pJoystick.os->hid_data_buf )
448 free( fgJoystick[ ident ]->pJoystick.os->hid_data_buf );
450 free( fgJoystick[ident]->pJoystick.os );
454 if( ! fgJoystick[ident]->error )
455 close( fgJoystick[ ident ]->pJoystick.fd );