// 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); topBar->Add(new Choice("Back"))->OnClick.Handle(this, &TouchControlVisibilityScreen::OnBack); topBar->Add(new Choice("Toggle All"))->OnClick.Handle(this, &TouchControlVisibilityScreen::OnToggleAll); vert->Add(topBar); I18NCategory *co = GetI18NCategory("Control Mapping"); 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 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; 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; std::map::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); row->Add(new CheckBox(i->second, "", "", new LinearLayoutParams(50, WRAP_CONTENT))); imageFinder = keyImages.find(i->first); if (imageFinder != keyImages.end()) { row->Add(new Choice(keyImages[imageFinder->first], new LinearLayoutParams(1.0f))); } else { row->Add(new Choice(mc->T(i->first.c_str()), new LinearLayoutParams(1.0f))); } grid->Add(row); } } UI::EventReturn TouchControlVisibilityScreen::OnBack(UI::EventParams &e) { screenManager()->finishDialog(this, DR_OK); g_Config.Save(); return UI::EVENT_DONE; } UI::EventReturn TouchControlVisibilityScreen::OnToggleAll(UI::EventParams &e) { for (auto i = keyToggles.begin(); i != keyToggles.end(); ++i) *i->second = !*i->second; return UI::EVENT_DONE; }