A commit on behalf of John (in turn, and in part, also on behalf of
Thierry). * Renamed some of the old PLIB functions to have glut* prefixes. (I guess that there is some thought about exporting them to the API.) * Changes from Thierry for FreeBSD support, and/or results of testing? * I re-merged an XXX comment re. NetBSD/amd64 and propogated a comment on a duplicated #define for FreeBSD. We need the GNU autoconfig stuff to be updated by someone who groks it, now. git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@460 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
parent
a6d19e891d
commit
70f0afbc07
@ -79,9 +79,7 @@
|
|||||||
# define HAVE_USB_JS 1
|
# define HAVE_USB_JS 1
|
||||||
|
|
||||||
# include <sys/ioctl.h>
|
# include <sys/ioctl.h>
|
||||||
# include <machine/joystick.h> /* For analog joysticks */
|
# if defined(__FreeBSD__) && __FreeBSD_version >= 500000
|
||||||
|
|
||||||
# if __FreeBSD_version >= 500000
|
|
||||||
# include <sys/joystick.h>
|
# include <sys/joystick.h>
|
||||||
# else
|
# else
|
||||||
/*
|
/*
|
||||||
@ -91,7 +89,7 @@
|
|||||||
* XXX it lets you compile...(^& I do not think that we can do away
|
* XXX it lets you compile...(^& I do not think that we can do away
|
||||||
* XXX with this header.
|
* XXX with this header.
|
||||||
*/
|
*/
|
||||||
# include <machine/joystick.h>
|
# include <machine/joystick.h> /* For analog joysticks */
|
||||||
# endif
|
# endif
|
||||||
# define JS_DATA_TYPE joystick
|
# define JS_DATA_TYPE joystick
|
||||||
# define JS_RETURN (sizeof(struct JS_DATA_TYPE))
|
# define JS_RETURN (sizeof(struct JS_DATA_TYPE))
|
||||||
@ -153,7 +151,15 @@
|
|||||||
# include <usb.h>
|
# include <usb.h>
|
||||||
# endif
|
# endif
|
||||||
# elif defined(__FreeBSD__)
|
# elif defined(__FreeBSD__)
|
||||||
|
# if __FreeBSD_version < 500000
|
||||||
# include <libusbhid.h>
|
# include <libusbhid.h>
|
||||||
|
# else
|
||||||
|
/*
|
||||||
|
* XXX The below hack is done until freeglut's autoconf is updated.
|
||||||
|
*/
|
||||||
|
# define HAVE_USBHID_H 1
|
||||||
|
# include <usbhid.h>
|
||||||
|
# endif
|
||||||
# endif
|
# endif
|
||||||
# include <dev/usb/usb.h>
|
# include <dev/usb/usb.h>
|
||||||
# include <dev/usb/usbhid.h>
|
# include <dev/usb/usbhid.h>
|
||||||
@ -1045,7 +1051,9 @@ static void fghJoystickAddHatElement ( SFG_Joystick *joy, CFDictionaryRef button
|
|||||||
/* Inspired by
|
/* Inspired by
|
||||||
http://msdn.microsoft.com/archive/en-us/dnargame/html/msdn_sidewind3d.asp
|
http://msdn.microsoft.com/archive/en-us/dnargame/html/msdn_sidewind3d.asp
|
||||||
*/
|
*/
|
||||||
|
# if defined(_MSC_VER)
|
||||||
# pragma comment (lib, "advapi32.lib")
|
# pragma comment (lib, "advapi32.lib")
|
||||||
|
# endif
|
||||||
|
|
||||||
static int fghJoystickGetOEMProductName ( SFG_Joystick* joy, char *buf, int buf_sz )
|
static int fghJoystickGetOEMProductName ( SFG_Joystick* joy, char *buf, int buf_sz )
|
||||||
{
|
{
|
||||||
@ -1708,33 +1716,33 @@ void fgJoystickPollWindow( SFG_Window* window )
|
|||||||
* PWO: These jsJoystick class methods have not been implemented.
|
* PWO: These jsJoystick class methods have not been implemented.
|
||||||
* We might consider adding such functions to freeglut-2.0.
|
* We might consider adding such functions to freeglut-2.0.
|
||||||
*/
|
*/
|
||||||
int getNumAxes ( int ident )
|
int glutJoystickGetNumAxes ( int ident )
|
||||||
{ return fgJoystick[ident]->num_axes; }
|
{ return fgJoystick[ident]->num_axes; }
|
||||||
int notWorking ( int ident )
|
int glutJoystickNotWorking ( int ident )
|
||||||
{ return fgJoystick[ident]->error; }
|
{ return fgJoystick[ident]->error; }
|
||||||
|
|
||||||
float getDeadBand ( int ident, int axis )
|
float glutJoystickGetDeadBand ( int ident, int axis )
|
||||||
{ return fgJoystick[ident]->dead_band [ axis ]; }
|
{ return fgJoystick[ident]->dead_band [ axis ]; }
|
||||||
void setDeadBand ( int ident, int axis, float db )
|
void glutJoystickSetDeadBand ( int ident, int axis, float db )
|
||||||
{ fgJoystick[ident]->dead_band [ axis ] = db; }
|
{ fgJoystick[ident]->dead_band [ axis ] = db; }
|
||||||
|
|
||||||
float getSaturation ( int ident, int axis )
|
float glutJoystickGetSaturation ( int ident, int axis )
|
||||||
{ return fgJoystick[ident]->saturate [ axis ]; }
|
{ return fgJoystick[ident]->saturate [ axis ]; }
|
||||||
void setSaturation ( int ident, int axis, float st )
|
void glutJoystickSetSaturation ( int ident, int axis, float st )
|
||||||
{ fgJoystick[ident]->saturate [ axis ] = st; }
|
{ fgJoystick[ident]->saturate [ axis ] = st; }
|
||||||
|
|
||||||
void setMinRange ( int ident, float *axes )
|
void glutJoystickSetMinRange ( int ident, float *axes )
|
||||||
{ memcpy ( fgJoystick[ident]->min , axes, fgJoystick[ident]->num_axes * sizeof(float) ); }
|
{ memcpy ( fgJoystick[ident]->min , axes, fgJoystick[ident]->num_axes * sizeof(float) ); }
|
||||||
void setMaxRange ( int ident, float *axes )
|
void glutJoystickSetMaxRange ( int ident, float *axes )
|
||||||
{ memcpy ( fgJoystick[ident]->max , axes, fgJoystick[ident]->num_axes * sizeof(float) ); }
|
{ memcpy ( fgJoystick[ident]->max , axes, fgJoystick[ident]->num_axes * sizeof(float) ); }
|
||||||
void setCenter ( int ident, float *axes )
|
void glutJoystickSetCenter ( int ident, float *axes )
|
||||||
{ memcpy ( fgJoystick[ident]->center, axes, fgJoystick[ident]->num_axes * sizeof(float) ); }
|
{ memcpy ( fgJoystick[ident]->center, axes, fgJoystick[ident]->num_axes * sizeof(float) ); }
|
||||||
|
|
||||||
void getMinRange ( int ident, float *axes )
|
void glutJoystickGetMinRange ( int ident, float *axes )
|
||||||
{ memcpy ( axes, fgJoystick[ident]->min , fgJoystick[ident]->num_axes * sizeof(float) ); }
|
{ memcpy ( axes, fgJoystick[ident]->min , fgJoystick[ident]->num_axes * sizeof(float) ); }
|
||||||
void getMaxRange ( int ident, float *axes )
|
void glutJoystickGetMaxRange ( int ident, float *axes )
|
||||||
{ memcpy ( axes, fgJoystick[ident]->max , fgJoystick[ident]->num_axes * sizeof(float) ); }
|
{ memcpy ( axes, fgJoystick[ident]->max , fgJoystick[ident]->num_axes * sizeof(float) ); }
|
||||||
void getCenter ( int ident, float *axes )
|
void glutJoystickGetCenter ( int ident, float *axes )
|
||||||
{ memcpy ( axes, fgJoystick[ident]->center, fgJoystick[ident]->num_axes * sizeof(float) ); }
|
{ memcpy ( axes, fgJoystick[ident]->center, fgJoystick[ident]->num_axes * sizeof(float) ); }
|
||||||
|
|
||||||
/*** END OF FILE ***/
|
/*** END OF FILE ***/
|
||||||
|
Reference in New Issue
Block a user