2019-10-31 18:00:42 +00:00
# include "SwitchVirtualGamepadHandler.h"
SwitchVirtualGamepadHandler : : SwitchVirtualGamepadHandler ( std : : unique_ptr < IController > & & controller )
2020-04-22 13:42:06 +00:00
: m_controller ( std : : move ( controller ) )
2019-10-31 18:00:42 +00:00
{
}
SwitchVirtualGamepadHandler : : ~ SwitchVirtualGamepadHandler ( )
{
}
Result SwitchVirtualGamepadHandler : : Initialize ( )
{
2020-04-22 13:42:06 +00:00
return m_controller - > Initialize ( ) ;
2019-10-31 18:00:42 +00:00
}
void SwitchVirtualGamepadHandler : : Exit ( )
{
2020-04-22 13:42:06 +00:00
m_controller - > Exit ( ) ;
2019-10-31 18:00:42 +00:00
}
2019-12-04 18:44:01 +00:00
void SwitchVirtualGamepadHandler : : InputThreadLoop ( void * handler )
2019-10-31 18:00:42 +00:00
{
2020-04-22 13:42:06 +00:00
do
{
2020-02-20 00:27:19 +00:00
static_cast < SwitchVirtualGamepadHandler * > ( handler ) - > UpdateInput ( ) ;
2020-04-22 13:42:06 +00:00
} while ( static_cast < SwitchVirtualGamepadHandler * > ( handler ) - > m_inputThreadIsRunning ) ;
2019-10-31 18:00:42 +00:00
}
2019-12-04 18:44:01 +00:00
void SwitchVirtualGamepadHandler : : OutputThreadLoop ( void * handler )
2019-10-31 18:00:42 +00:00
{
2020-04-22 13:42:06 +00:00
do
{
static_cast < SwitchVirtualGamepadHandler * > ( handler ) - > UpdateOutput ( ) ;
} while ( static_cast < SwitchVirtualGamepadHandler * > ( handler ) - > m_outputThreadIsRunning ) ;
2019-10-31 18:00:42 +00:00
}
2019-11-06 12:28:56 +00:00
Result SwitchVirtualGamepadHandler : : InitInputThread ( )
2019-10-31 18:00:42 +00:00
{
2020-04-18 17:10:47 +00:00
R_TRY ( m_inputThread . Initialize ( & SwitchVirtualGamepadHandler : : InputThreadLoop , this , 0x30 ) . GetValue ( ) ) ;
2020-02-20 00:27:19 +00:00
m_inputThreadIsRunning = true ;
return m_inputThread . Start ( ) . GetValue ( ) ;
2019-10-31 18:00:42 +00:00
}
void SwitchVirtualGamepadHandler : : ExitInputThread ( )
{
2020-02-20 00:27:19 +00:00
m_inputThreadIsRunning = false ;
2020-03-13 10:38:32 +00:00
m_inputThread . CancelSynchronization ( ) ;
2020-02-20 00:27:19 +00:00
m_inputThread . Join ( ) ;
2019-10-31 18:00:42 +00:00
}
2019-11-06 12:28:56 +00:00
Result SwitchVirtualGamepadHandler : : InitOutputThread ( )
2019-10-31 18:00:42 +00:00
{
2020-04-18 17:10:47 +00:00
R_TRY ( m_outputThread . Initialize ( & SwitchVirtualGamepadHandler : : OutputThreadLoop , this , 0x30 ) . GetValue ( ) ) ;
2020-02-20 00:27:19 +00:00
m_outputThreadIsRunning = true ;
return m_outputThread . Start ( ) . GetValue ( ) ;
2019-10-31 18:00:42 +00:00
}
void SwitchVirtualGamepadHandler : : ExitOutputThread ( )
{
2020-02-20 00:27:19 +00:00
m_outputThreadIsRunning = false ;
2020-04-18 14:30:51 +00:00
m_outputThread . CancelSynchronization ( ) ;
2020-02-20 00:27:19 +00:00
m_outputThread . Join ( ) ;
2020-04-22 13:42:06 +00:00
}
static_assert ( JOYSTICK_MAX = = 32767 & & JOYSTICK_MIN = = - 32767 ,
" JOYSTICK_MAX and/or JOYSTICK_MIN has incorrect values. Update libnx " ) ;
void SwitchVirtualGamepadHandler : : ConvertAxisToSwitchAxis ( float x , float y , float deadzone , s32 * x_out , s32 * y_out )
{
float floatRange = 2.0f ;
//JOYSTICK_MAX is 1 above and JOYSTICK_MIN is 1 below acceptable joystick values, causing crashes on various games including Xenoblade Chronicles 2 and Resident Evil 4
float newRange = ( JOYSTICK_MAX - JOYSTICK_MIN ) ;
* x_out = ( ( ( x + 1.0f ) * newRange ) / floatRange ) + JOYSTICK_MIN ;
* y_out = ( ( ( y + 1.0f ) * newRange ) / floatRange ) + JOYSTICK_MIN ;
/*
OldRange = ( OldMax - OldMin )
NewRange = ( NewMax - NewMin )
NewValue = ( ( ( OldValue - OldMin ) * NewRange ) / OldRange ) + NewMin
*/
}
Result SwitchVirtualGamepadHandler : : SetControllerVibration ( float strong_mag , float weak_mag )
{
strong_mag = std : : max < float > ( 0.0f , std : : min < float > ( strong_mag , 1.0f ) ) ;
weak_mag = std : : max < float > ( 0.0f , std : : min < float > ( weak_mag , 1.0f ) ) ;
return m_controller - > SetRumble ( static_cast < uint8_t > ( strong_mag * 255.0f ) , static_cast < uint8_t > ( weak_mag * 255.0f ) ) ;
2019-10-31 18:00:42 +00:00
}