////////////////////////////////////////////////////////////////////////////
/**
- johan@linkdata.se 2002-08-20:
- Now returns only valid, functioning
- joysticks, counting from the first
- available and upwards.
+ johan@linkdata.se 2002-08-20:
+ Now returns only valid, functioning
+ joysticks, counting from the first
+ available and upwards.
*/
wxJoystick::wxJoystick(int joystick)
{
JOYINFO joyInfo;
- int i, maxsticks;
-
- maxsticks = joyGetNumDevs();
- for( i=0; i<maxsticks; i++ )
- {
- if( joyGetPos(i, & joyInfo) == JOYERR_NOERROR )
- {
- if( !joystick )
- {
- /* Found the one we want, store actual OS id and return */
- m_joystick = i;
- return;
- }
- joystick --;
- }
- }
-
- /* No such joystick, return ID 0 */
- m_joystick = 0;
- return;
+ int i, maxsticks;
+
+ maxsticks = joyGetNumDevs();
+ for( i=0; i<maxsticks; i++ )
+ {
+ if( joyGetPos(i, & joyInfo) == JOYERR_NOERROR )
+ {
+ if( !joystick )
+ {
+ /* Found the one we want, store actual OS id and return */
+ m_joystick = i;
+ return;
+ }
+ joystick --;
+ }
+ }
+
+ /* No such joystick, return ID 0 */
+ m_joystick = 0;
+ return;
};
wxPoint wxJoystick::GetPosition() const
if (res == JOYERR_NOERROR )
return wxPoint(joyInfo.wXpos, joyInfo.wYpos);
else
- return wxPoint(0, 0);
+ return wxPoint(0,0);
}
int wxJoystick::GetZPosition() const
}
/**
- johan@linkdata.se 2002-08-20:
- Return a bitmap with all button states in it,
- like the GTK version does and Win32 does.
+ johan@linkdata.se 2002-08-20:
+ Return a bitmap with all button states in it,
+ like the GTK version does and Win32 does.
*/
int wxJoystick::GetButtonState() const
{
MMRESULT res = joyGetPos(m_joystick, & joyInfo);
if (res == JOYERR_NOERROR )
{
- return joyInfo.wButtons;
+ return joyInfo.wButtons;
#if 0
int buttons = 0;
}
/**
- JLI 2002-08-20:
- Returns -1 to signify error.
+ JLI 2002-08-20:
+ Returns -1 to signify error.
*/
int wxJoystick::GetPOVPosition() const
{
}
/**
- johan@linkdata.se 2002-08-20:
- Returns -1 to signify error.
+ johan@linkdata.se 2002-08-20:
+ Returns -1 to signify error.
*/
int wxJoystick::GetPOVCTSPosition() const
{
////////////////////////////////////////////////////////////////////////////
/**
- johan@linkdata.se 2002-08-20:
- Now returns the number of connected, functioning
- joysticks, as intended.
+ johan@linkdata.se 2002-08-20:
+ Now returns the number of connected, functioning
+ joysticks, as intended.
*/
int wxJoystick::GetNumberJoysticks()
{
JOYINFO joyInfo;
- int i, maxsticks, actualsticks;
- maxsticks = joyGetNumDevs();
- actualsticks = 0;
- for( i=0; i<maxsticks; i++ )
- {
- if( joyGetPos( i, & joyInfo ) == JOYERR_NOERROR )
- {
- actualsticks ++;
- }
- }
+ int i, maxsticks, actualsticks;
+ maxsticks = joyGetNumDevs();
+ actualsticks = 0;
+ for( i=0; i<maxsticks; i++ )
+ {
+ if( joyGetPos( i, & joyInfo ) == JOYERR_NOERROR )
+ {
+ actualsticks ++;
+ }
+ }
return actualsticks;
}
/**
- johan@linkdata.se 2002-08-20:
- The old code returned true if there were any
- joystick capable drivers loaded (=always).
+ johan@linkdata.se 2002-08-20:
+ The old code returned true if there were any
+ joystick capable drivers loaded (=always).
*/
bool wxJoystick::IsOk() const
{
#if defined(__WIN32__)
JOYCAPS joyCaps;
if (joyGetDevCaps(m_joystick, & joyCaps, sizeof(JOYCAPS)) != JOYERR_NOERROR)
- return FALSE;
+ return false;
else
return ((joyCaps.wCaps & JOYCAPS_HASR) == JOYCAPS_HASR);
#else
- return FALSE;
+ return false;
#endif
}
#if defined(__WIN32__)
JOYCAPS joyCaps;
if (joyGetDevCaps(m_joystick, & joyCaps, sizeof(JOYCAPS)) != JOYERR_NOERROR)
- return FALSE;
+ return false;
else
return ((joyCaps.wCaps & JOYCAPS_HASZ) == JOYCAPS_HASZ);
#else
- return FALSE;
+ return false;
#endif
}
#if defined(__WIN32__)
JOYCAPS joyCaps;
if (joyGetDevCaps(m_joystick, & joyCaps, sizeof(JOYCAPS)) != JOYERR_NOERROR)
- return FALSE;
+ return false;
else
return ((joyCaps.wCaps & JOYCAPS_HASU) == JOYCAPS_HASU);
#else
- return FALSE;
+ return false;
#endif
}
#if defined(__WIN32__)
JOYCAPS joyCaps;
if (joyGetDevCaps(m_joystick, & joyCaps, sizeof(JOYCAPS)) != JOYERR_NOERROR)
- return FALSE;
+ return false;
else
return ((joyCaps.wCaps & JOYCAPS_HASV) == JOYCAPS_HASV);
#else
- return FALSE;
+ return false;
#endif
}
#if defined(__WIN32__)
JOYCAPS joyCaps;
if (joyGetDevCaps(m_joystick, & joyCaps, sizeof(JOYCAPS)) != JOYERR_NOERROR)
- return FALSE;
+ return false;
else
return ((joyCaps.wCaps & JOYCAPS_HASPOV) == JOYCAPS_HASPOV);
#else
- return FALSE;
+ return false;
#endif
}
#if defined(__WIN32__)
JOYCAPS joyCaps;
if (joyGetDevCaps(m_joystick, & joyCaps, sizeof(JOYCAPS)) != JOYERR_NOERROR)
- return FALSE;
+ return false;
else
return ((joyCaps.wCaps & JOYCAPS_POV4DIR) == JOYCAPS_POV4DIR);
#else
- return FALSE;
+ return false;
#endif
}
#if defined(__WIN32__)
JOYCAPS joyCaps;
if (joyGetDevCaps(m_joystick, & joyCaps, sizeof(JOYCAPS)) != JOYERR_NOERROR)
- return FALSE;
+ return false;
else
return ((joyCaps.wCaps & JOYCAPS_POVCTS) == JOYCAPS_POVCTS);
#else
- return FALSE;
+ return false;
#endif
}