X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Ffreeglut_joystick.c;h=3c2fa9ec14aa0a9d8ce0aafee155805f3822cdc4;hb=1c741248e3ad67f24a57742cb5cc511f0ee87805;hp=a61a708a787518b484d8ef932d72038a56a6a0db;hpb=41e63805080267e9dbd100d30deac6ba0b34678e;p=freeglut diff --git a/src/freeglut_joystick.c b/src/freeglut_joystick.c index a61a708..3c2fa9e 100644 --- a/src/freeglut_joystick.c +++ b/src/freeglut_joystick.c @@ -31,16 +31,11 @@ * Many thanks for Steve Baker for permission to pull from that library. */ -#if defined( __FreeBSD__ ) || defined( __NetBSD__ ) -# include -#endif - -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif - #include #include "freeglut_internal.h" +#if HAVE_SYS_PARAM_H +# include +#endif /* * Initial defines from "js.h" starting around line 33 with the existing "freeglut_joystick.c" @@ -65,18 +60,23 @@ # define _JS_MAX_AXES 8 # include # include -# include # include #endif #if TARGET_HOST_UNIX_X11 # define _JS_MAX_AXES 16 +# if HAVE_SYS_IOCTL_H +# include +# endif +# if HAVE_FCNTL_H +# include +# endif +# include # if defined(__FreeBSD__) || defined(__NetBSD__) /* XXX The below hack is done until freeglut's autoconf is updated. */ # define HAVE_USB_JS 1 -# include # if defined(__FreeBSD__) && __FreeBSD_version >= 500000 # include # else @@ -93,12 +93,7 @@ # define JS_RETURN (sizeof(struct JS_DATA_TYPE)) # endif -# include -# include -# include - # if defined(__linux__) -# include # include /* check the joystick driver version */ @@ -450,7 +445,6 @@ static void fghJoystickAddHatElement ( SFG_Joystick* joy, CFDictionaryRef hat ); * The static joystick structure pointer */ #define MAX_NUM_JOYSTICKS 2 -static int fgNumberOfJoysticks = 0; static SFG_Joystick *fgJoystick [ MAX_NUM_JOYSTICKS ]; @@ -926,7 +920,9 @@ static void fghJoystickElementEnumerator ( SFG_Joystick *joy, void *element, voi /** element enumerator function : pass NULL for top-level*/ static void fghJoystickEnumerateElements ( SFG_Joystick *joy, CFTypeRef element ) { - assert(CFGetTypeID(element) == CFArrayGetTypeID()); + FREEGLUT_INTERNAL_ERROR_EXIT( (CFGetTypeID(element) == CFArrayGetTypeID(), + "Joystick element type mismatch", + "fghJoystickEnumerateElements" ); CFRange range = {0, CFArrayGetCount ((CFArrayRef)element)}; CFArrayApplyFunction((CFArrayRef) element, range, @@ -944,7 +940,7 @@ static void fghJoystickParseElement ( SFG_Joystick *joy, CFDictionaryRef element CFDictionaryGetValue ((CFDictionaryRef) element, CFSTR(kIOHIDElementTypeKey)), kCFNumberLongType, &type); - switch ( typ e) { + switch ( type ) { case kIOHIDElementTypeInput_Misc: case kIOHIDElementTypeInput_Axis: case kIOHIDElementTypeInput_Button: @@ -1528,7 +1524,7 @@ static void fghJoystickOpen( SFG_Joystick* joy ) /* * This function replaces the constructor method in the JS library. */ -void fgJoystickInit( int ident ) +static void fghJoystickInit( int ident ) { if( ident >= MAX_NUM_JOYSTICKS ) fgError( "Too large a joystick number: %d", ident ); @@ -1639,6 +1635,22 @@ void fgJoystickInit( int ident ) } /* + * Try initializing all the joysticks (well, both of them) + */ +void fgInitialiseJoysticks ( void ) +{ + /* Initialization courtesy of OpenGLUT -- do we want it? */ + if( !fgState.JoysticksInitialised ) + { + int ident ; + for ( ident = 0; ident < MAX_NUM_JOYSTICKS; ident++ ) + fghJoystickInit( ident ); + + fgState.JoysticksInitialised = GL_TRUE; + } +} + +/* * */ void fgJoystickClose( void ) @@ -1722,63 +1734,102 @@ void fgJoystickPollWindow( SFG_Window* window ) } /* - * PWO: These jsJoystick class methods have not been implemented. + * Implementation for glutDeviceGet(GLUT_HAS_JOYSTICK) + */ +int fgJoystickDetect( void ) +{ + int ident; + + fgInitialiseJoysticks (); + + if ( !fgJoystick ) + return 0; + + if ( !fgState.JoysticksInitialised ) + return 0; + + for( ident=0; identerror ) + return 1; + + return 0; +} + +/* + * Joystick information functions */ int glutJoystickGetNumAxes( int ident ) { + FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutJoystickGetNumAxes" ); return fgJoystick[ ident ]->num_axes; } +int glutJoystickGetNumButtons( int ident ) +{ + FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutJoystickGetNumButtons" ); + return fgJoystick[ ident ]->num_buttons; +} int glutJoystickNotWorking( int ident ) { + FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutJoystickNotWorking" ); return fgJoystick[ ident ]->error; } float glutJoystickGetDeadBand( int ident, int axis ) { + FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutJoystickGetDeadBand" ); return fgJoystick[ ident ]->dead_band [ axis ]; } void glutJoystickSetDeadBand( int ident, int axis, float db ) { + FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutJoystickSetDeadBand" ); fgJoystick[ ident ]->dead_band[ axis ] = db; } float glutJoystickGetSaturation( int ident, int axis ) { + FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutJoystickGetSaturation" ); return fgJoystick[ ident ]->saturate[ axis ]; } void glutJoystickSetSaturation( int ident, int axis, float st ) { + FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutJoystickSetSaturation" ); fgJoystick[ ident ]->saturate [ axis ] = st; } void glutJoystickSetMinRange( int ident, float *axes ) { + FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutJoystickSetMinRange" ); memcpy( fgJoystick[ ident ]->min, axes, fgJoystick[ ident ]->num_axes * sizeof( float ) ); } void glutJoystickSetMaxRange( int ident, float *axes ) { + FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutJoystickSetMaxRange" ); memcpy( fgJoystick[ ident ]->max, axes, fgJoystick[ ident ]->num_axes * sizeof( float ) ); } void glutJoystickSetCenter( int ident, float *axes ) { + FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutJoystickSetCenter" ); memcpy( fgJoystick[ ident ]->center, axes, fgJoystick[ ident ]->num_axes * sizeof( float ) ); } void glutJoystickGetMinRange( int ident, float *axes ) { + FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutJoystickGetMinRange" ); memcpy( axes, fgJoystick[ ident ]->min, fgJoystick[ ident ]->num_axes * sizeof( float ) ); } void glutJoystickGetMaxRange( int ident, float *axes ) { + FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutJoystickGetMaxRange" ); memcpy( axes, fgJoystick[ ident ]->max, fgJoystick[ ident ]->num_axes * sizeof( float ) ); } void glutJoystickGetCenter( int ident, float *axes ) { + FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutJoystickGetCenter" ); memcpy( axes, fgJoystick[ ident ]->center, fgJoystick[ ident ]->num_axes * sizeof( float ) ); }