219 lines
6.0 KiB
C++
219 lines
6.0 KiB
C++
#include "global.h"
|
|
#include "JoystickDevice.h"
|
|
#include "RageUtil.h"
|
|
|
|
using namespace std;
|
|
using __gnu_cxx::hash_map;
|
|
|
|
Joystick::Joystick() : id( DEVICE_NONE ),
|
|
x_axis( DeviceButton_Invalid ),
|
|
y_axis( DeviceButton_Invalid ),
|
|
z_axis( DeviceButton_Invalid ),
|
|
x_min( 0 ), y_min( 0 ), z_min( 0 ),
|
|
x_max( 0 ), y_max( 0 ), z_max( 0 )
|
|
{
|
|
}
|
|
|
|
|
|
bool JoystickDevice::AddLogicalDevice( int usagePage, int usage )
|
|
{
|
|
if( usagePage != kHIDPage_GenericDesktop )
|
|
return false;
|
|
switch( usage )
|
|
{
|
|
case kHIDUsage_GD_Joystick:
|
|
case kHIDUsage_GD_GamePad:
|
|
break;
|
|
default:
|
|
return false;
|
|
}
|
|
m_vSticks.push_back( Joystick() );
|
|
return true;
|
|
}
|
|
|
|
void JoystickDevice::AddElement( int usagePage, int usage, int cookie, const CFDictionaryRef properties )
|
|
{
|
|
ASSERT( m_vSticks.size() );
|
|
Joystick& js = m_vSticks.back();
|
|
|
|
switch( usagePage )
|
|
{
|
|
case kHIDPage_GenericDesktop:
|
|
{
|
|
int iMin = 0;
|
|
int iMax = 0;
|
|
|
|
IntValue( CFDictionaryGetValue(properties, CFSTR(kIOHIDElementMinKey)), iMin );
|
|
IntValue( CFDictionaryGetValue(properties, CFSTR(kIOHIDElementMaxKey)), iMax );
|
|
|
|
switch( usage )
|
|
{
|
|
case kHIDUsage_GD_X:
|
|
js.x_axis = cookie;
|
|
js.x_min = iMin;
|
|
js.x_max = iMax;
|
|
break;
|
|
case kHIDUsage_GD_Y:
|
|
js.y_axis = cookie;
|
|
js.y_min = iMin;
|
|
js.y_max = iMax;
|
|
break;
|
|
case kHIDUsage_GD_Z:
|
|
js.z_axis = cookie;
|
|
js.z_min = iMin;
|
|
js.z_max = iMax;
|
|
break;
|
|
case kHIDUsage_GD_DPadUp:
|
|
js.mapping[cookie] = JOY_UP;
|
|
break;
|
|
case kHIDUsage_GD_DPadDown:
|
|
js.mapping[cookie] = JOY_DOWN;
|
|
break;
|
|
case kHIDUsage_GD_DPadRight:
|
|
js.mapping[cookie] = JOY_RIGHT;
|
|
break;
|
|
case kHIDUsage_GD_DPadLeft:
|
|
js.mapping[cookie] = JOY_LEFT;
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
case kHIDPage_Button:
|
|
{
|
|
// button n has usage = n, subtract 1 to ensure
|
|
// button 1 = JOY_BUTTON_1
|
|
const DeviceButton buttonID = enum_add2( JOY_BUTTON_1, usage - 1 );
|
|
|
|
if( buttonID <= JOY_BUTTON_32 )
|
|
js.mapping[cookie] = buttonID;
|
|
break;
|
|
}
|
|
} // end switch (usagePage)
|
|
}
|
|
|
|
void JoystickDevice::Open()
|
|
{
|
|
// Add elements to the queue for each Joystick
|
|
FOREACH_CONST( Joystick, m_vSticks, i )
|
|
{
|
|
const Joystick& js = *i;
|
|
|
|
if( js.x_axis )
|
|
AddElementToQueue( js.x_axis );
|
|
if( js.y_axis )
|
|
AddElementToQueue( js.y_axis );
|
|
if( js.z_axis )
|
|
AddElementToQueue( js.z_axis );
|
|
|
|
for( hash_map<int,DeviceButton>::const_iterator j = js.mapping.begin(); j != js.mapping.end(); ++j )
|
|
AddElementToQueue( j->first );
|
|
}
|
|
}
|
|
bool JoystickDevice::SupportsVidPid( int vid, int pid )
|
|
{
|
|
if( vid != 0x0507 || pid != 0x0011 )
|
|
return true;
|
|
// It's a Para controller so try to power it on.
|
|
uint8_t powerOn = 1;
|
|
IOReturn ret = SetReport( kIOHIDReportTypeFeature, 0, &powerOn, 1, 10 );
|
|
|
|
if( ret )
|
|
LOG->Warn( "Failed to power on the Para controller: %#08x", ret );
|
|
return true;
|
|
}
|
|
|
|
void JoystickDevice::GetButtonPresses( vector<pair<DeviceInput, bool> >& vPresses, int cookie,
|
|
int value, const RageTimer& now ) const
|
|
{
|
|
typedef pair<DeviceInput, bool> dib;
|
|
FOREACH_CONST( Joystick, m_vSticks, i )
|
|
{
|
|
const Joystick& js = *i;
|
|
|
|
if( js.x_axis == cookie )
|
|
{
|
|
float level = SCALE( value, js.x_min, js.x_max, -1.0f, 1.0f );
|
|
|
|
vPresses.push_back( dib(DeviceInput(js.id, JOY_LEFT, max(-level, 0.0f), now), level < -0.5f) );
|
|
vPresses.push_back( dib(DeviceInput(js.id, JOY_RIGHT, max(level, 0.0f), now), level > 0.5f) );
|
|
break;
|
|
}
|
|
else if( js.y_axis == cookie )
|
|
{
|
|
float level = SCALE( value, js.y_min, js.y_max, -1.0f, 1.0f );
|
|
|
|
vPresses.push_back( dib(DeviceInput(js.id, JOY_UP, max(-level, 0.0f), now), level < -0.5f) );
|
|
vPresses.push_back( dib(DeviceInput(js.id, JOY_DOWN, max(level, 0.0f), now), level > 0.5f) );
|
|
break;
|
|
}
|
|
else if( js.z_axis == cookie )
|
|
{
|
|
float level = SCALE( value, js.z_min, js.z_max, -1.0f, 1.0f );
|
|
|
|
vPresses.push_back( dib(DeviceInput(js.id, JOY_Z_UP, max(-level, 0.0f), now), level < -0.5f) );
|
|
vPresses.push_back( dib(DeviceInput(js.id, JOY_Z_DOWN, max(level, 0.0f), now), level > 0.5f) );
|
|
break;
|
|
}
|
|
else
|
|
{
|
|
// hash_map<T,U>::operator[] is not const
|
|
hash_map<int, DeviceButton>::const_iterator iter;
|
|
|
|
iter = js.mapping.find( cookie );
|
|
if( iter != js.mapping.end() )
|
|
{
|
|
vPresses.push_back( dib(DeviceInput(js.id, iter->second, value, now), value) );
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
int JoystickDevice::AssignIDs( InputDevice startID )
|
|
{
|
|
if( startID < DEVICE_JOY1 || startID > DEVICE_JOY16 )
|
|
return -1;
|
|
FOREACH( Joystick, m_vSticks, i )
|
|
{
|
|
if( startID > DEVICE_JOY16 )
|
|
{
|
|
m_vSticks.erase( i, m_vSticks.end() );
|
|
break;
|
|
}
|
|
i->id = startID;
|
|
enum_add( startID, 1 );
|
|
}
|
|
return m_vSticks.size();
|
|
}
|
|
|
|
void JoystickDevice::GetDevicesAndDescriptions( vector<InputDeviceInfo>& vDevices ) const
|
|
{
|
|
FOREACH_CONST( Joystick, m_vSticks, i )
|
|
vDevices.push_back( InputDeviceInfo(i->id,GetDescription()) );
|
|
}
|
|
|
|
/*
|
|
* (c) 2005-2006 Steve Checkoway
|
|
* All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, and/or sell copies of the Software, and to permit persons to
|
|
* whom the Software is furnished to do so, provided that the above
|
|
* copyright notice(s) and this permission notice appear in all copies of
|
|
* the Software and that both the above copyright notice(s) and this
|
|
* permission notice appear in supporting documentation.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
|
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
|
|
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|