2013-10-20 02:40:52 +00:00
// Copyright (c) 2013- PPSSPP Project.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 2.0 or later versions.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License 2.0 for more details.
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
2020-10-04 21:24:14 +00:00
# include "Common/Render/TextureAtlas.h"
2023-03-26 09:21:34 +00:00
# include "Common/Data/Text/I18n.h"
2023-06-20 08:20:26 +00:00
# include "Common/StringUtils.h"
2020-02-29 20:51:14 +00:00
2013-10-20 02:40:52 +00:00
# include "Core/Config.h"
2023-03-26 09:21:34 +00:00
# include "UI/TouchControlVisibilityScreen.h"
# include "UI/CustomButtonMappingScreen.h"
2013-10-20 02:40:52 +00:00
2018-06-17 06:25:46 +00:00
static const int leftColumnWidth = 140 ;
2018-06-17 06:32:34 +00:00
class CheckBoxChoice : public UI : : Choice {
public :
2024-01-19 12:44:49 +00:00
CheckBoxChoice ( std : : string_view text , UI : : CheckBox * checkbox , UI : : LayoutParams * lp )
2018-06-17 06:32:34 +00:00
: Choice ( text , lp ) , checkbox_ ( checkbox ) {
OnClick . Handle ( this , & CheckBoxChoice : : HandleClick ) ;
}
CheckBoxChoice ( ImageID imgID , UI : : CheckBox * checkbox , UI : : LayoutParams * lp )
: Choice ( imgID , lp ) , checkbox_ ( checkbox ) {
OnClick . Handle ( this , & CheckBoxChoice : : HandleClick ) ;
}
private :
UI : : EventReturn HandleClick ( UI : : EventParams & e ) ;
UI : : CheckBox * checkbox_ ;
} ;
2013-10-20 02:40:52 +00:00
void TouchControlVisibilityScreen : : CreateViews ( ) {
using namespace UI ;
2023-03-26 08:48:59 +00:00
using namespace CustomKeyData ;
2013-10-20 02:40:52 +00:00
2023-04-05 22:34:50 +00:00
auto di = GetI18NCategory ( I18NCat : : DIALOG ) ;
auto co = GetI18NCategory ( I18NCat : : CONTROLS ) ;
2018-06-17 06:25:46 +00:00
root_ = new AnchorLayout ( new LayoutParams ( FILL_PARENT , FILL_PARENT ) ) ;
Choice * back = new Choice ( di - > T ( " Back " ) , " " , false , new AnchorLayoutParams ( leftColumnWidth - 10 , WRAP_CONTENT , 10 , NONE , NONE , 10 ) ) ;
root_ - > Add ( back ) - > OnClick . Handle < UIScreen > ( this , & UIScreen : : OnBack ) ;
Choice * toggleAll = new Choice ( di - > T ( " Toggle All " ) , " " , false , new AnchorLayoutParams ( leftColumnWidth - 10 , WRAP_CONTENT , 10 , NONE , NONE , 84 ) ) ;
root_ - > Add ( toggleAll ) - > OnClick . Handle ( this , & TouchControlVisibilityScreen : : OnToggleAll ) ;
TabHolder * tabHolder = new TabHolder ( ORIENT_VERTICAL , leftColumnWidth , new AnchorLayoutParams ( 10 , 0 , 10 , 0 , false ) ) ;
tabHolder - > SetTag ( " TouchControlVisibility " ) ;
root_ - > Add ( tabHolder ) ;
ScrollView * rightPanel = new ScrollView ( ORIENT_VERTICAL ) ;
tabHolder - > AddTab ( co - > T ( " Visibility " ) , rightPanel ) ;
LinearLayout * vert = rightPanel - > Add ( new LinearLayout ( ORIENT_VERTICAL , new LayoutParams ( FILL_PARENT , FILL_PARENT ) ) ) ;
vert - > SetSpacing ( 0 ) ;
2013-10-20 03:56:04 +00:00
vert - > Add ( new ItemHeader ( co - > T ( " Touch Control Visibility " ) ) ) ;
2013-10-20 02:40:52 +00:00
2018-06-17 06:25:46 +00:00
const int cellSize = 380 ;
2013-10-20 02:40:52 +00:00
UI : : GridLayoutSettings gridsettings ( cellSize , 64 , 5 ) ;
gridsettings . fillCells = true ;
2021-02-22 02:41:08 +00:00
GridLayout * grid = vert - > Add ( new GridLayoutList ( gridsettings , new LayoutParams ( FILL_PARENT , WRAP_CONTENT ) ) ) ;
2013-10-20 02:40:52 +00:00
2018-06-17 06:11:56 +00:00
toggles_ . clear ( ) ;
2021-03-04 09:37:35 +00:00
toggles_ . push_back ( { " Circle " , & g_Config . bShowTouchCircle , ImageID ( " I_CIRCLE " ) , nullptr } ) ;
toggles_ . push_back ( { " Cross " , & g_Config . bShowTouchCross , ImageID ( " I_CROSS " ) , nullptr } ) ;
toggles_ . push_back ( { " Square " , & g_Config . bShowTouchSquare , ImageID ( " I_SQUARE " ) , nullptr } ) ;
toggles_ . push_back ( { " Triangle " , & g_Config . bShowTouchTriangle , ImageID ( " I_TRIANGLE " ) , nullptr } ) ;
toggles_ . push_back ( { " L " , & g_Config . touchLKey . show , ImageID ( " I_L " ) , nullptr } ) ;
toggles_ . push_back ( { " R " , & g_Config . touchRKey . show , ImageID ( " I_R " ) , nullptr } ) ;
toggles_ . push_back ( { " Start " , & g_Config . touchStartKey . show , ImageID ( " I_START " ) , nullptr } ) ;
toggles_ . push_back ( { " Select " , & g_Config . touchSelectKey . show , ImageID ( " I_SELECT " ) , nullptr } ) ;
toggles_ . push_back ( { " Dpad " , & g_Config . touchDpad . show , ImageID : : invalid ( ) , nullptr } ) ;
toggles_ . push_back ( { " Analog Stick " , & g_Config . touchAnalogStick . show , ImageID : : invalid ( ) , nullptr } ) ;
toggles_ . push_back ( { " Right Analog Stick " , & g_Config . touchRightAnalogStick . show , ImageID : : invalid ( ) , [ = ] ( EventParams & e ) {
2022-11-22 21:53:54 +00:00
screenManager ( ) - > push ( new RightAnalogMappingScreen ( gamePath_ ) ) ;
2021-03-04 09:37:35 +00:00
return UI : : EVENT_DONE ;
} } ) ;
2021-08-17 14:48:47 +00:00
toggles_ . push_back ( { " Fast-forward " , & g_Config . touchFastForwardKey . show , ImageID : : invalid ( ) , nullptr } ) ;
2023-06-20 07:30:38 +00:00
for ( int i = 0 ; i < Config : : CUSTOM_BUTTON_COUNT ; i + + ) {
char temp [ 256 ] ;
snprintf ( temp , sizeof ( temp ) , " Custom %d " , i + 1 ) ;
toggles_ . push_back ( { temp , & g_Config . touchCustom [ i ] . show , ImageID : : invalid ( ) , [ = ] ( EventParams & e ) {
screenManager ( ) - > push ( new CustomButtonMappingScreen ( gamePath_ , i ) ) ;
return UI : : EVENT_DONE ;
} } ) ;
}
2013-10-20 02:40:52 +00:00
2023-04-05 22:34:50 +00:00
auto mc = GetI18NCategory ( I18NCat : : MAPPABLECONTROLS ) ;
2018-06-17 06:11:56 +00:00
for ( auto toggle : toggles_ ) {
2013-10-20 02:40:52 +00:00
LinearLayout * row = new LinearLayout ( ORIENT_HORIZONTAL , new LinearLayoutParams ( FILL_PARENT , WRAP_CONTENT ) ) ;
row - > SetSpacing ( 0 ) ;
2013-10-27 05:27:25 +00:00
2018-06-17 06:11:56 +00:00
CheckBox * checkbox = new CheckBox ( toggle . show , " " , " " , new LinearLayoutParams ( 50 , WRAP_CONTENT ) ) ;
2013-10-27 05:27:25 +00:00
row - > Add ( checkbox ) ;
2021-03-04 09:37:35 +00:00
Choice * choice ;
if ( toggle . handle ) {
2023-06-20 08:20:26 +00:00
// Handle custom button strings differently, and hackily. But will extend to arbitrary button counts.
char translated [ 256 ] ;
int i = 0 ;
if ( sscanf ( toggle . key . c_str ( ) , " Custom %d " , & i ) = = 1 ) {
2024-01-19 12:44:49 +00:00
snprintf ( translated , sizeof ( translated ) , mc - > T_cstr ( " Custom %d " ) , i ) ;
2023-06-20 08:20:26 +00:00
} else {
2024-01-19 12:44:49 +00:00
truncate_cpy ( translated , sizeof ( translated ) , mc - > T ( toggle . key ) ) ;
2023-06-20 08:20:26 +00:00
}
2024-01-19 12:44:49 +00:00
choice = new Choice ( std : : string ( translated ) + " ( " + std : : string ( mc - > T ( " tap to customize " ) ) + " ) " , " " , false , new LinearLayoutParams ( 1.0f ) ) ;
2021-03-04 09:37:35 +00:00
choice - > OnClick . Add ( toggle . handle ) ;
} else if ( toggle . img . isValid ( ) ) {
choice = new CheckBoxChoice ( toggle . img , checkbox , new LinearLayoutParams ( 1.0f ) ) ;
2013-10-20 02:40:52 +00:00
} else {
2021-03-04 09:37:35 +00:00
choice = new CheckBoxChoice ( mc - > T ( toggle . key ) , checkbox , new LinearLayoutParams ( 1.0f ) ) ;
2013-10-20 02:40:52 +00:00
}
2021-03-04 09:37:35 +00:00
choice - > SetCentered ( true ) ;
row - > Add ( choice ) ;
2013-10-20 02:40:52 +00:00
grid - > Add ( row ) ;
}
}
2013-10-25 11:19:08 +00:00
void TouchControlVisibilityScreen : : onFinish ( DialogResult result ) {
2019-02-23 09:49:49 +00:00
g_Config . Save ( " TouchControlVisibilityScreen::onFinish " ) ;
2013-10-20 02:40:52 +00:00
}
2019-11-13 17:55:18 +00:00
void RightAnalogMappingScreen : : CreateViews ( ) {
using namespace UI ;
2023-04-05 22:34:50 +00:00
auto di = GetI18NCategory ( I18NCat : : DIALOG ) ;
auto co = GetI18NCategory ( I18NCat : : CONTROLS ) ;
auto mc = GetI18NCategory ( I18NCat : : MAPPABLECONTROLS ) ;
2019-11-13 17:55:18 +00:00
root_ = new AnchorLayout ( new LayoutParams ( FILL_PARENT , FILL_PARENT ) ) ;
Choice * back = new Choice ( di - > T ( " Back " ) , " " , false , new AnchorLayoutParams ( leftColumnWidth - 10 , WRAP_CONTENT , 10 , NONE , NONE , 10 ) ) ;
root_ - > Add ( back ) - > OnClick . Handle < UIScreen > ( this , & UIScreen : : OnBack ) ;
TabHolder * tabHolder = new TabHolder ( ORIENT_VERTICAL , leftColumnWidth , new AnchorLayoutParams ( 10 , 0 , 10 , 0 , false ) ) ;
root_ - > Add ( tabHolder ) ;
ScrollView * rightPanel = new ScrollView ( ORIENT_VERTICAL ) ;
tabHolder - > AddTab ( co - > T ( " Binds " ) , rightPanel ) ;
LinearLayout * vert = rightPanel - > Add ( new LinearLayout ( ORIENT_VERTICAL , new LayoutParams ( FILL_PARENT , FILL_PARENT ) ) ) ;
vert - > SetSpacing ( 0 ) ;
2024-07-16 13:45:33 +00:00
static const char * rightAnalogButton [ ] = { " None " , " L " , " R " , " Square " , " Triangle " , " Circle " , " Cross " , " D-pad up " , " D-pad down " , " D-pad left " , " D-pad right " , " Start " , " Select " , " RightAn.Up " , " RightAn.Down " , " RightAn.Left " , " RightAn.Right " , " An.Up " , " An.Down " , " An.Left " , " An.Right " } ;
2021-08-07 10:47:50 +00:00
vert - > Add ( new ItemHeader ( co - > T ( " Analog Style " ) ) ) ;
2021-03-04 09:37:35 +00:00
vert - > Add ( new CheckBox ( & g_Config . touchRightAnalogStick . show , co - > T ( " Visible " ) ) ) ;
2019-11-13 17:55:18 +00:00
vert - > Add ( new CheckBox ( & g_Config . bRightAnalogCustom , co - > T ( " Use custom right analog " ) ) ) ;
2021-08-07 10:47:50 +00:00
vert - > Add ( new CheckBox ( & g_Config . bRightAnalogDisableDiagonal , co - > T ( " Disable diagonal input " ) ) ) - > SetEnabledPtr ( & g_Config . bRightAnalogCustom ) ;
vert - > Add ( new ItemHeader ( co - > T ( " Analog Binding " ) ) ) ;
2023-04-05 22:34:50 +00:00
PopupMultiChoice * rightAnalogUp = vert - > Add ( new PopupMultiChoice ( & g_Config . iRightAnalogUp , mc - > T ( " RightAn.Up " ) , rightAnalogButton , 0 , ARRAY_SIZE ( rightAnalogButton ) , I18NCat : : MAPPABLECONTROLS , screenManager ( ) ) ) ;
PopupMultiChoice * rightAnalogDown = vert - > Add ( new PopupMultiChoice ( & g_Config . iRightAnalogDown , mc - > T ( " RightAn.Down " ) , rightAnalogButton , 0 , ARRAY_SIZE ( rightAnalogButton ) , I18NCat : : MAPPABLECONTROLS , screenManager ( ) ) ) ;
PopupMultiChoice * rightAnalogLeft = vert - > Add ( new PopupMultiChoice ( & g_Config . iRightAnalogLeft , mc - > T ( " RightAn.Left " ) , rightAnalogButton , 0 , ARRAY_SIZE ( rightAnalogButton ) , I18NCat : : MAPPABLECONTROLS , screenManager ( ) ) ) ;
PopupMultiChoice * rightAnalogRight = vert - > Add ( new PopupMultiChoice ( & g_Config . iRightAnalogRight , mc - > T ( " RightAn.Right " ) , rightAnalogButton , 0 , ARRAY_SIZE ( rightAnalogButton ) , I18NCat : : MAPPABLECONTROLS , screenManager ( ) ) ) ;
2024-07-16 13:45:33 +00:00
PopupMultiChoice * rightAnalogPress = vert - > Add ( new PopupMultiChoice ( & g_Config . iRightAnalogPress , co - > T ( " Keep this button pressed when right analog is pressed " ) , rightAnalogButton , 0 , ARRAY_SIZE ( rightAnalogButton ) - 8 , I18NCat : : MAPPABLECONTROLS , screenManager ( ) ) ) ;
2019-11-13 17:55:18 +00:00
rightAnalogUp - > SetEnabledPtr ( & g_Config . bRightAnalogCustom ) ;
rightAnalogDown - > SetEnabledPtr ( & g_Config . bRightAnalogCustom ) ;
rightAnalogLeft - > SetEnabledPtr ( & g_Config . bRightAnalogCustom ) ;
rightAnalogRight - > SetEnabledPtr ( & g_Config . bRightAnalogCustom ) ;
rightAnalogPress - > SetEnabledPtr ( & g_Config . bRightAnalogCustom ) ;
}
2013-10-20 02:40:52 +00:00
UI : : EventReturn TouchControlVisibilityScreen : : OnToggleAll ( UI : : EventParams & e ) {
2018-06-17 06:11:56 +00:00
for ( auto toggle : toggles_ ) {
* toggle . show = nextToggleAll_ ;
2013-10-20 15:57:35 +00:00
}
2018-06-17 06:11:56 +00:00
nextToggleAll_ = ! nextToggleAll_ ;
2013-10-21 20:57:00 +00:00
2013-10-20 02:40:52 +00:00
return UI : : EVENT_DONE ;
}
2013-10-27 05:27:25 +00:00
2018-06-17 06:32:34 +00:00
UI : : EventReturn CheckBoxChoice : : HandleClick ( UI : : EventParams & e ) {
2013-10-27 05:27:25 +00:00
checkbox_ - > Toggle ( ) ;
return UI : : EVENT_DONE ;
} ;