mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
14e7658bbb
Replace A,B,cross1,square1,triangle1 with number images 1-6 Rebuild the atlas, update the code to use combo keys 1-5 Also add psp_display.png from pull request #8082.
127 lines
4.4 KiB
C++
127 lines
4.4 KiB
C++
// 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/.
|
|
|
|
#include "TouchControlVisibilityScreen.h"
|
|
#include "Core/Config.h"
|
|
#include "UI/ui_atlas.h"
|
|
#include "i18n/i18n.h"
|
|
|
|
void TouchControlVisibilityScreen::CreateViews() {
|
|
using namespace UI;
|
|
|
|
root_ = new ScrollView(ORIENT_VERTICAL);
|
|
LinearLayout *vert = root_->Add(new LinearLayout(ORIENT_VERTICAL, new LayoutParams(FILL_PARENT, FILL_PARENT)));
|
|
vert->SetSpacing(0);
|
|
|
|
LinearLayout *topBar = new LinearLayout(ORIENT_HORIZONTAL);
|
|
I18NCategory *di = GetI18NCategory("Dialog");
|
|
topBar->Add(new Choice(di->T("Back")))->OnClick.Handle<UIScreen>(this, &UIScreen::OnBack);
|
|
topBar->Add(new Choice(di->T("Toggle All")))->OnClick.Handle(this, &TouchControlVisibilityScreen::OnToggleAll);
|
|
|
|
vert->Add(topBar);
|
|
I18NCategory *co = GetI18NCategory("Controls");
|
|
vert->Add(new ItemHeader(co->T("Touch Control Visibility")));
|
|
|
|
const int cellSize = 400;
|
|
|
|
UI::GridLayoutSettings gridsettings(cellSize, 64, 5);
|
|
gridsettings.fillCells = true;
|
|
GridLayout *grid = vert->Add(new GridLayout(gridsettings, new LayoutParams(FILL_PARENT, WRAP_CONTENT)));
|
|
|
|
std::map<std::string, int> keyImages;
|
|
keyImages["Circle"] = I_CIRCLE;
|
|
keyImages["Cross"] = I_CROSS;
|
|
keyImages["Square"] = I_SQUARE;
|
|
keyImages["Triangle"] = I_TRIANGLE;
|
|
keyImages["Start"] = I_START;
|
|
keyImages["Select"] = I_SELECT;
|
|
keyImages["L"] = I_L;
|
|
keyImages["R"] = I_R;
|
|
keyImages["Combo0"] = I_1;
|
|
keyImages["Combo1"] = I_2;
|
|
keyImages["Combo2"] = I_3;
|
|
keyImages["Combo3"] = I_4;
|
|
keyImages["Combo4"] = I_5;
|
|
|
|
keyToggles.clear();
|
|
keyToggles["Circle"] = &g_Config.bShowTouchCircle;
|
|
keyToggles["Cross"] = &g_Config.bShowTouchCross;
|
|
keyToggles["Square"] = &g_Config.bShowTouchSquare;
|
|
keyToggles["Triangle"] = &g_Config.bShowTouchTriangle;
|
|
keyToggles["L"] = &g_Config.bShowTouchLTrigger;
|
|
keyToggles["R"] = &g_Config.bShowTouchRTrigger;
|
|
keyToggles["Start"] = &g_Config.bShowTouchStart;
|
|
keyToggles["Select"] = &g_Config.bShowTouchSelect;
|
|
keyToggles["Dpad"] = &g_Config.bShowTouchDpad;
|
|
keyToggles["Analog Stick"] = &g_Config.bShowTouchAnalogStick;
|
|
keyToggles["Unthrottle"] = &g_Config.bShowTouchUnthrottle;
|
|
keyToggles["Combo0"] = &g_Config.bShowComboKey0;
|
|
keyToggles["Combo1"] = &g_Config.bShowComboKey1;
|
|
keyToggles["Combo2"] = &g_Config.bShowComboKey2;
|
|
keyToggles["Combo3"] = &g_Config.bShowComboKey3;
|
|
keyToggles["Combo4"] = &g_Config.bShowComboKey4;
|
|
|
|
std::map<std::string, int>::iterator imageFinder;
|
|
|
|
I18NCategory *mc = GetI18NCategory("MappableControls");
|
|
|
|
for (auto i = keyToggles.begin(); i != keyToggles.end(); ++i) {
|
|
LinearLayout *row = new LinearLayout(ORIENT_HORIZONTAL, new LinearLayoutParams(FILL_PARENT, WRAP_CONTENT));
|
|
row->SetSpacing(0);
|
|
|
|
CheckBox *checkbox = new CheckBox(i->second, "", "", new LinearLayoutParams(50, WRAP_CONTENT));
|
|
row->Add(checkbox);
|
|
|
|
imageFinder = keyImages.find(i->first);
|
|
Choice *choice;
|
|
|
|
if (imageFinder != keyImages.end()) {
|
|
choice = new Choice(keyImages[imageFinder->first], new LinearLayoutParams(1.0f));
|
|
} else {
|
|
choice = new Choice(mc->T(i->first.c_str()), new LinearLayoutParams(1.0f));
|
|
}
|
|
|
|
ChoiceEventHandler *choiceEventHandler = new ChoiceEventHandler(checkbox);
|
|
choice->OnClick.Handle(choiceEventHandler, &ChoiceEventHandler::onChoiceClick);
|
|
|
|
choice->SetCentered(true);
|
|
|
|
row->Add(choice);
|
|
grid->Add(row);
|
|
}
|
|
}
|
|
|
|
void TouchControlVisibilityScreen::onFinish(DialogResult result) {
|
|
g_Config.Save();
|
|
}
|
|
|
|
UI::EventReturn TouchControlVisibilityScreen::OnToggleAll(UI::EventParams &e) {
|
|
for (auto i = keyToggles.begin(); i != keyToggles.end(); ++i) {
|
|
*i->second = toggleSwitch;
|
|
}
|
|
|
|
toggleSwitch = !toggleSwitch;
|
|
|
|
return UI::EVENT_DONE;
|
|
}
|
|
|
|
UI::EventReturn TouchControlVisibilityScreen::ChoiceEventHandler::onChoiceClick(UI::EventParams &e){
|
|
checkbox_->Toggle();
|
|
|
|
return UI::EVENT_DONE;
|
|
};
|