2013-06-08 20:42:31 +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/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ui/ui_screen.h"
|
2013-07-21 11:31:46 +00:00
|
|
|
#include "UI/MiscScreens.h"
|
2013-06-08 20:42:31 +00:00
|
|
|
|
|
|
|
// Per-game settings screen - enables you to configure graphic options, control options, etc
|
|
|
|
// per game.
|
2014-02-09 21:15:53 +00:00
|
|
|
class GameSettingsScreen : public UIDialogScreenWithGameBackground {
|
2013-06-08 20:42:31 +00:00
|
|
|
public:
|
2013-08-30 18:13:59 +00:00
|
|
|
GameSettingsScreen(std::string gamePath, std::string gameID = "")
|
2014-05-03 20:24:46 +00:00
|
|
|
: UIDialogScreenWithGameBackground(gamePath), gameID_(gameID), enableReports_(false) {}
|
2013-07-21 11:31:46 +00:00
|
|
|
|
|
|
|
virtual void update(InputState &input);
|
2013-10-25 11:19:08 +00:00
|
|
|
virtual void onFinish(DialogResult result);
|
2013-06-08 20:42:31 +00:00
|
|
|
|
2013-09-07 16:44:28 +00:00
|
|
|
UI::Event OnRecentChanged;
|
2013-09-01 20:29:23 +00:00
|
|
|
|
2013-06-08 20:42:31 +00:00
|
|
|
protected:
|
|
|
|
virtual void CreateViews();
|
2013-09-04 02:06:05 +00:00
|
|
|
virtual void sendMessage(const char *message, const char *value);
|
2013-09-28 06:21:59 +00:00
|
|
|
void CallbackRestoreDefaults(bool yes);
|
2013-06-08 20:42:31 +00:00
|
|
|
|
|
|
|
private:
|
2014-02-09 21:15:53 +00:00
|
|
|
std::string gameID_;
|
2013-06-08 20:42:31 +00:00
|
|
|
|
|
|
|
// As we load metadata in the background, we need to be able to update these after the fact.
|
|
|
|
UI::TextView *tvTitle_;
|
|
|
|
UI::TextView *tvGameSize_;
|
2013-09-01 20:08:47 +00:00
|
|
|
UI::CheckBox *enableReportsCheckbox_;
|
2013-10-20 15:40:18 +00:00
|
|
|
UI::Choice *layoutEditorChoice_;
|
2013-10-30 10:28:14 +00:00
|
|
|
UI::Choice *postProcChoice_;
|
2013-10-30 11:12:14 +00:00
|
|
|
UI::PopupMultiChoice *resolutionChoice_;
|
2014-02-11 17:32:26 +00:00
|
|
|
UI::CheckBox *frameSkipAuto_;
|
2013-07-17 23:04:11 +00:00
|
|
|
|
2013-07-20 14:03:52 +00:00
|
|
|
// Event handlers
|
2013-07-29 00:16:06 +00:00
|
|
|
UI::EventReturn OnControlMapping(UI::EventParams &e);
|
2013-10-09 20:15:56 +00:00
|
|
|
UI::EventReturn OnTouchControlLayout(UI::EventParams &e);
|
2013-08-18 17:51:40 +00:00
|
|
|
UI::EventReturn OnDumpNextFrameToLog(UI::EventParams &e);
|
2013-08-18 17:57:50 +00:00
|
|
|
UI::EventReturn OnReloadCheats(UI::EventParams &e);
|
2013-12-14 12:55:57 +00:00
|
|
|
UI::EventReturn OnTiltTypeChange(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnTiltCuztomize(UI::EventParams &e);
|
2013-08-18 17:57:50 +00:00
|
|
|
|
2013-08-20 16:03:52 +00:00
|
|
|
// Global settings handlers
|
|
|
|
UI::EventReturn OnLanguage(UI::EventParams &e);
|
2013-09-01 20:29:23 +00:00
|
|
|
UI::EventReturn OnLanguageChange(UI::EventParams &e);
|
2013-10-12 00:05:55 +00:00
|
|
|
UI::EventReturn OnPostProcShader(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnPostProcShaderChange(UI::EventParams &e);
|
2013-08-20 16:03:52 +00:00
|
|
|
UI::EventReturn OnDeveloperTools(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnChangeNickname(UI::EventParams &e);
|
2014-05-25 05:19:56 +00:00
|
|
|
UI::EventReturn OnChangeproAdhocServerAddress(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnChangeMacAddress(UI::EventParams &e);
|
2013-08-25 19:36:34 +00:00
|
|
|
UI::EventReturn OnClearRecents(UI::EventParams &e);
|
2013-10-13 17:24:49 +00:00
|
|
|
UI::EventReturn OnFullscreenChange(UI::EventParams &e);
|
2013-09-10 22:19:34 +00:00
|
|
|
UI::EventReturn OnResolutionChange(UI::EventParams &e);
|
2014-02-11 17:32:26 +00:00
|
|
|
UI::EventReturn OnFrameSkipChange(UI::EventParams &e);
|
2013-10-22 11:00:19 +00:00
|
|
|
UI::EventReturn OnShaderChange(UI::EventParams &e);
|
2013-09-28 06:21:59 +00:00
|
|
|
UI::EventReturn OnRestoreDefaultSettings(UI::EventParams &e);
|
2013-10-29 15:22:36 +00:00
|
|
|
UI::EventReturn OnRenderingMode(UI::EventParams &e);
|
2014-05-27 06:39:53 +00:00
|
|
|
UI::EventReturn OnJitAffectingSetting(UI::EventParams &e);
|
2014-06-10 18:00:11 +00:00
|
|
|
UI::EventReturn OnSoftwareRendering(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnHardwareTransform(UI::EventParams &e);
|
2013-08-20 16:03:52 +00:00
|
|
|
|
2014-02-04 11:58:37 +00:00
|
|
|
UI::EventReturn OnScreenRotation(UI::EventParams &e);
|
2014-02-09 22:16:08 +00:00
|
|
|
UI::EventReturn OnImmersiveModeChange(UI::EventParams &e);
|
2014-02-04 11:58:37 +00:00
|
|
|
|
2013-07-17 23:04:11 +00:00
|
|
|
// Temporaries to convert bools to int settings
|
|
|
|
bool cap60FPS_;
|
2013-08-18 16:53:45 +00:00
|
|
|
int iAlternateSpeedPercent_;
|
2013-08-30 18:13:59 +00:00
|
|
|
bool enableReports_;
|
2014-06-10 21:28:13 +00:00
|
|
|
|
|
|
|
// Cached booleans
|
|
|
|
bool hwTransformEnable;
|
|
|
|
bool vtxCacheEnable;
|
|
|
|
bool renderModeEnable;
|
|
|
|
bool blockTransferEnable;
|
|
|
|
bool swSkinningEnable;
|
|
|
|
bool texBackoffEnable;
|
|
|
|
bool mipmapEnable;
|
|
|
|
bool texScalingEnable;
|
|
|
|
bool texSecondaryEnable;
|
|
|
|
bool beziersEnable;
|
|
|
|
bool stencilTestEnable;
|
|
|
|
bool depthWriteEnable;
|
|
|
|
bool prescaleEnable;
|
|
|
|
bool texScalingTypeEnable;
|
|
|
|
bool desposterizeEnable;
|
|
|
|
bool anisotropicEnable;
|
|
|
|
bool texFilteringEnable;
|
2014-06-10 21:32:37 +00:00
|
|
|
bool postProcEnable;
|
|
|
|
bool resolutionEnable;
|
2014-06-10 21:58:32 +00:00
|
|
|
bool alphaHackEnable;
|
2013-07-17 20:27:05 +00:00
|
|
|
};
|
|
|
|
|
2013-08-12 22:06:48 +00:00
|
|
|
class DeveloperToolsScreen : public UIDialogScreenWithBackground {
|
2013-07-18 09:39:54 +00:00
|
|
|
public:
|
|
|
|
DeveloperToolsScreen() {}
|
2013-10-25 11:19:08 +00:00
|
|
|
virtual void onFinish(DialogResult result);
|
2013-07-18 09:39:54 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void CreateViews();
|
|
|
|
|
|
|
|
private:
|
|
|
|
UI::EventReturn OnBack(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnRunCPUTests(UI::EventParams &e);
|
2013-08-17 22:41:19 +00:00
|
|
|
UI::EventReturn OnSysInfo(UI::EventParams &e);
|
2013-08-17 23:24:34 +00:00
|
|
|
UI::EventReturn OnLoggingChanged(UI::EventParams &e);
|
2013-08-18 17:51:40 +00:00
|
|
|
UI::EventReturn OnLoadLanguageIni(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnSaveLanguageIni(UI::EventParams &e);
|
2013-09-07 11:38:37 +00:00
|
|
|
UI::EventReturn OnLogConfig(UI::EventParams &e);
|
2014-05-27 06:55:48 +00:00
|
|
|
UI::EventReturn OnJitAffectingSetting(UI::EventParams &e);
|
2013-07-29 00:16:06 +00:00
|
|
|
};
|
2014-06-02 06:15:07 +00:00
|
|
|
|
|
|
|
class ProAdhocServerScreen : public UIDialogScreenWithBackground {
|
|
|
|
public:
|
|
|
|
ProAdhocServerScreen() {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void CreateViews();
|
|
|
|
|
|
|
|
private:
|
2014-06-02 10:28:16 +00:00
|
|
|
std::string tempProAdhocServer;
|
2014-06-02 10:21:34 +00:00
|
|
|
UI::TextView *addrView_;
|
2014-06-02 06:15:07 +00:00
|
|
|
UI::EventReturn OnBack(UI::EventParams &e);
|
|
|
|
UI::EventReturn On0Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On1Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On2Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On3Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On4Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On5Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On6Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On7Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On8Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On9Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnPointClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDeleteClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDeleteAllClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnOKClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnCancelClick(UI::EventParams &e);
|
|
|
|
};
|
|
|
|
|
|
|
|
class MacAddressScreen : public UIDialogScreenWithBackground {
|
|
|
|
public:
|
|
|
|
MacAddressScreen() {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void CreateViews();
|
|
|
|
|
|
|
|
private:
|
2014-06-02 10:28:16 +00:00
|
|
|
std::string tempMacAddress;
|
2014-06-02 10:21:34 +00:00
|
|
|
UI::TextView *addrView_;
|
2014-06-02 06:15:07 +00:00
|
|
|
UI::EventReturn OnBack(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnAClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnBClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnCClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnEClick(UI::EventParams &e);
|
2014-06-02 08:40:37 +00:00
|
|
|
UI::EventReturn OnFClick(UI::EventParams &e);
|
2014-06-02 06:15:07 +00:00
|
|
|
UI::EventReturn On0Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On1Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On2Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On3Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On4Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On5Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On6Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On7Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On8Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn On9Click(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDeleteClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDeleteAllClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnOKClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnCancelClick(UI::EventParams &e);
|
|
|
|
};
|