2013-06-08 22:42:31 +02: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
|
|
|
|
|
2019-02-18 09:15:15 -08:00
|
|
|
#include "ppsspp_config.h"
|
2019-08-17 18:24:57 -07:00
|
|
|
#include <condition_variable>
|
|
|
|
#include <mutex>
|
|
|
|
#include <thread>
|
2013-06-08 22:42:31 +02:00
|
|
|
#include "ui/ui_screen.h"
|
2013-07-21 13:31:46 +02:00
|
|
|
#include "UI/MiscScreens.h"
|
2013-06-08 22:42:31 +02:00
|
|
|
|
2016-08-14 14:27:36 -07:00
|
|
|
class SettingInfoMessage;
|
|
|
|
|
2013-06-08 22:42:31 +02:00
|
|
|
// Per-game settings screen - enables you to configure graphic options, control options, etc
|
|
|
|
// per game.
|
2014-02-09 13:15:53 -08:00
|
|
|
class GameSettingsScreen : public UIDialogScreenWithGameBackground {
|
2013-06-08 22:42:31 +02:00
|
|
|
public:
|
2014-12-14 20:33:20 +01:00
|
|
|
GameSettingsScreen(std::string gamePath, std::string gameID = "", bool editThenRestore = false);
|
2013-07-21 13:31:46 +02:00
|
|
|
|
2017-12-03 17:49:49 -08:00
|
|
|
void update() override;
|
|
|
|
void onFinish(DialogResult result) override;
|
2017-12-02 11:45:59 -08:00
|
|
|
std::string tag() const override { return "settings"; }
|
2013-09-01 13:29:23 -07:00
|
|
|
|
2013-06-08 22:42:31 +02:00
|
|
|
protected:
|
2017-12-03 17:49:49 -08:00
|
|
|
void CreateViews() override;
|
2013-09-28 14:21:59 +08:00
|
|
|
void CallbackRestoreDefaults(bool yes);
|
2014-09-14 06:59:27 -04:00
|
|
|
void CallbackRenderingBackend(bool yes);
|
2018-09-30 00:53:21 -07:00
|
|
|
void CallbackRenderingDevice(bool yes);
|
2020-03-02 19:21:15 -08:00
|
|
|
void CallbackInflightFrames(bool yes);
|
2019-02-18 09:15:15 -08:00
|
|
|
#if PPSSPP_PLATFORM(ANDROID)
|
|
|
|
void CallbackMemstickFolder(bool yes);
|
|
|
|
#endif
|
2014-07-22 10:37:20 +02:00
|
|
|
bool UseVerticalLayout() const;
|
|
|
|
|
2013-06-08 22:42:31 +02:00
|
|
|
private:
|
2014-02-09 13:15:53 -08:00
|
|
|
std::string gameID_;
|
2014-07-22 10:37:20 +02:00
|
|
|
bool lastVertical_;
|
2013-09-01 13:08:47 -07:00
|
|
|
UI::CheckBox *enableReportsCheckbox_;
|
2013-10-20 17:40:18 +02:00
|
|
|
UI::Choice *layoutEditorChoice_;
|
2013-10-30 11:28:14 +01:00
|
|
|
UI::Choice *postProcChoice_;
|
2015-10-24 14:40:29 +02:00
|
|
|
UI::Choice *displayEditor_;
|
2017-04-02 10:50:09 -07:00
|
|
|
UI::Choice *backgroundChoice_ = nullptr;
|
2013-10-30 12:12:14 +01:00
|
|
|
UI::PopupMultiChoice *resolutionChoice_;
|
2014-02-11 18:32:26 +01:00
|
|
|
UI::CheckBox *frameSkipAuto_;
|
2016-08-14 14:27:36 -07:00
|
|
|
SettingInfoMessage *settingInfo_;
|
2014-10-27 19:58:13 +08:00
|
|
|
#ifdef _WIN32
|
2014-10-23 22:22:11 +08:00
|
|
|
UI::CheckBox *SavePathInMyDocumentChoice;
|
|
|
|
UI::CheckBox *SavePathInOtherChoice;
|
2014-11-03 01:53:15 +01:00
|
|
|
// Used to enable/disable the above two options.
|
|
|
|
bool installed_;
|
|
|
|
bool otherinstalled_;
|
2014-10-27 19:58:13 +08:00
|
|
|
#endif
|
2013-07-18 01:04:11 +02:00
|
|
|
|
2013-07-20 22:03:52 +08:00
|
|
|
// Event handlers
|
2013-07-29 08:16:06 +08:00
|
|
|
UI::EventReturn OnControlMapping(UI::EventParams &e);
|
2013-10-10 01:45:56 +05:30
|
|
|
UI::EventReturn OnTouchControlLayout(UI::EventParams &e);
|
2013-08-18 19:51:40 +02:00
|
|
|
UI::EventReturn OnDumpNextFrameToLog(UI::EventParams &e);
|
2013-12-14 18:25:57 +05:30
|
|
|
UI::EventReturn OnTiltTypeChange(UI::EventParams &e);
|
2015-04-03 11:50:03 +02:00
|
|
|
UI::EventReturn OnTiltCustomize(UI::EventParams &e);
|
2017-04-17 20:33:22 -07:00
|
|
|
UI::EventReturn OnComboKey(UI::EventParams &e);
|
2013-08-18 19:57:50 +02:00
|
|
|
|
2013-08-20 18:03:52 +02:00
|
|
|
// Global settings handlers
|
|
|
|
UI::EventReturn OnLanguage(UI::EventParams &e);
|
2013-09-01 13:29:23 -07:00
|
|
|
UI::EventReturn OnLanguageChange(UI::EventParams &e);
|
2014-07-22 09:55:12 +02:00
|
|
|
UI::EventReturn OnAutoFrameskip(UI::EventParams &e);
|
2013-10-12 02:05:55 +02:00
|
|
|
UI::EventReturn OnPostProcShader(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnPostProcShaderChange(UI::EventParams &e);
|
2013-08-20 18:03:52 +02:00
|
|
|
UI::EventReturn OnDeveloperTools(UI::EventParams &e);
|
2016-07-03 10:24:33 -07:00
|
|
|
UI::EventReturn OnRemoteISO(UI::EventParams &e);
|
2017-07-06 21:43:39 +08:00
|
|
|
UI::EventReturn OnChangeQuickChat0(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnChangeQuickChat1(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnChangeQuickChat2(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnChangeQuickChat3(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnChangeQuickChat4(UI::EventParams &e);
|
2013-08-20 18:03:52 +02:00
|
|
|
UI::EventReturn OnChangeNickname(UI::EventParams &e);
|
2014-05-25 13:19:56 +08:00
|
|
|
UI::EventReturn OnChangeproAdhocServerAddress(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnChangeMacAddress(UI::EventParams &e);
|
2017-04-02 10:50:09 -07:00
|
|
|
UI::EventReturn OnChangeBackground(UI::EventParams &e);
|
2013-10-13 13:24:49 -04:00
|
|
|
UI::EventReturn OnFullscreenChange(UI::EventParams &e);
|
2015-10-24 14:40:29 +02:00
|
|
|
UI::EventReturn OnDisplayLayoutEditor(UI::EventParams &e);
|
2013-09-11 00:19:34 +02:00
|
|
|
UI::EventReturn OnResolutionChange(UI::EventParams &e);
|
2014-07-18 21:49:54 +02:00
|
|
|
UI::EventReturn OnHwScaleChange(UI::EventParams &e);
|
2013-09-28 14:21:59 +08:00
|
|
|
UI::EventReturn OnRestoreDefaultSettings(UI::EventParams &e);
|
2013-10-29 16:22:36 +01:00
|
|
|
UI::EventReturn OnRenderingMode(UI::EventParams &e);
|
2014-09-14 06:59:27 -04:00
|
|
|
UI::EventReturn OnRenderingBackend(UI::EventParams &e);
|
2018-09-30 00:53:21 -07:00
|
|
|
UI::EventReturn OnRenderingDevice(UI::EventParams &e);
|
2020-03-02 19:21:15 -08:00
|
|
|
UI::EventReturn OnInflightFramesChoice(UI::EventParams &e);
|
2020-01-09 15:57:09 +02:00
|
|
|
UI::EventReturn OnCameraDeviceChange(UI::EventParams& e);
|
2019-09-15 13:23:48 -07:00
|
|
|
UI::EventReturn OnAudioDevice(UI::EventParams &e);
|
2014-05-26 23:39:53 -07:00
|
|
|
UI::EventReturn OnJitAffectingSetting(UI::EventParams &e);
|
2019-02-18 09:15:15 -08:00
|
|
|
#if PPSSPP_PLATFORM(ANDROID)
|
|
|
|
UI::EventReturn OnChangeMemStickDir(UI::EventParams &e);
|
|
|
|
#elif defined(_WIN32) && !PPSSPP_PLATFORM(UWP)
|
2014-10-23 22:22:11 +08:00
|
|
|
UI::EventReturn OnSavePathMydoc(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnSavePathOther(UI::EventParams &e);
|
|
|
|
#endif
|
2014-06-10 14:00:11 -04:00
|
|
|
UI::EventReturn OnSoftwareRendering(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnHardwareTransform(UI::EventParams &e);
|
2013-08-20 18:03:52 +02:00
|
|
|
|
2014-02-04 12:58:37 +01:00
|
|
|
UI::EventReturn OnScreenRotation(UI::EventParams &e);
|
2014-02-09 23:16:08 +01:00
|
|
|
UI::EventReturn OnImmersiveModeChange(UI::EventParams &e);
|
2017-06-09 15:29:57 +02:00
|
|
|
UI::EventReturn OnSustainedPerformanceModeChange(UI::EventParams &e);
|
2014-02-04 12:58:37 +01:00
|
|
|
|
2015-01-29 22:15:42 +01:00
|
|
|
UI::EventReturn OnAdhocGuides(UI::EventParams &e);
|
|
|
|
|
2015-06-12 20:37:42 +02:00
|
|
|
UI::EventReturn OnSavedataManager(UI::EventParams &e);
|
2015-06-28 17:56:04 -07:00
|
|
|
UI::EventReturn OnSysInfo(UI::EventParams &e);
|
2015-06-12 20:37:42 +02:00
|
|
|
|
2020-03-21 18:49:36 -07:00
|
|
|
// Temporaries to convert setting types, cache enabled, etc.
|
2018-06-16 20:07:11 -07:00
|
|
|
int iAlternateSpeedPercent1_;
|
|
|
|
int iAlternateSpeedPercent2_;
|
2020-03-21 18:49:36 -07:00
|
|
|
int prevInflightFrames_;
|
2013-08-30 20:13:59 +02:00
|
|
|
bool enableReports_;
|
2020-03-21 18:49:36 -07:00
|
|
|
bool tessHWEnable_;
|
2014-06-10 17:28:13 -04:00
|
|
|
|
2016-08-05 10:46:11 -07:00
|
|
|
//edit the game-specific settings and restore the global settings after exiting
|
|
|
|
bool editThenRestore_;
|
|
|
|
|
2019-02-18 09:15:15 -08:00
|
|
|
#if PPSSPP_PLATFORM(ANDROID)
|
|
|
|
std::string pendingMemstickFolder_;
|
|
|
|
#endif
|
2013-07-17 22:27:05 +02:00
|
|
|
};
|
|
|
|
|
2017-06-03 09:38:37 -07:00
|
|
|
class SettingInfoMessage : public UI::LinearLayout {
|
2016-08-14 14:27:36 -07:00
|
|
|
public:
|
2017-06-03 09:38:37 -07:00
|
|
|
SettingInfoMessage(int align, UI::AnchorLayoutParams *lp);
|
2016-08-14 14:27:36 -07:00
|
|
|
|
|
|
|
void SetBottomCutoff(float y) {
|
|
|
|
cutOffY_ = y;
|
|
|
|
}
|
|
|
|
void Show(const std::string &text, UI::View *refView = nullptr);
|
|
|
|
|
|
|
|
void Draw(UIContext &dc);
|
|
|
|
|
|
|
|
private:
|
2017-06-03 09:38:37 -07:00
|
|
|
UI::TextView *text_ = nullptr;
|
|
|
|
double timeShown_ = 0.0;
|
2016-08-14 14:27:36 -07:00
|
|
|
float cutOffY_;
|
|
|
|
};
|
|
|
|
|
2013-08-13 00:06:48 +02:00
|
|
|
class DeveloperToolsScreen : public UIDialogScreenWithBackground {
|
2013-07-18 11:39:54 +02:00
|
|
|
public:
|
|
|
|
DeveloperToolsScreen() {}
|
2018-04-21 14:17:33 -07:00
|
|
|
void update() override;
|
2017-12-03 17:49:49 -08:00
|
|
|
void onFinish(DialogResult result) override;
|
2013-07-18 11:39:54 +02:00
|
|
|
|
|
|
|
protected:
|
2017-12-03 17:49:49 -08:00
|
|
|
void CreateViews() override;
|
2013-07-18 11:39:54 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
UI::EventReturn OnRunCPUTests(UI::EventParams &e);
|
2013-08-18 01:24:34 +02:00
|
|
|
UI::EventReturn OnLoggingChanged(UI::EventParams &e);
|
2013-08-18 19:51:40 +02:00
|
|
|
UI::EventReturn OnLoadLanguageIni(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnSaveLanguageIni(UI::EventParams &e);
|
2016-06-22 00:33:06 +02:00
|
|
|
UI::EventReturn OnOpenTexturesIniFile(UI::EventParams &e);
|
2013-09-07 13:38:37 +02:00
|
|
|
UI::EventReturn OnLogConfig(UI::EventParams &e);
|
2014-05-26 23:55:48 -07:00
|
|
|
UI::EventReturn OnJitAffectingSetting(UI::EventParams &e);
|
2019-02-04 13:00:08 +01:00
|
|
|
UI::EventReturn OnJitDebugTools(UI::EventParams &e);
|
2018-04-21 14:17:33 -07:00
|
|
|
UI::EventReturn OnRemoteDebugger(UI::EventParams &e);
|
2018-12-16 21:48:35 +01:00
|
|
|
UI::EventReturn OnGPUDriverTest(UI::EventParams &e);
|
2019-10-02 22:03:02 +02:00
|
|
|
UI::EventReturn OnTouchscreenTest(UI::EventParams &e);
|
2018-04-21 14:17:33 -07:00
|
|
|
|
|
|
|
bool allowDebugger_ = false;
|
|
|
|
bool canAllowDebugger_ = true;
|
2013-07-29 08:16:06 +08:00
|
|
|
};
|
2014-06-02 14:15:07 +08:00
|
|
|
|
2019-08-17 17:14:31 -07:00
|
|
|
class HostnameSelectScreen : public PopupScreen {
|
2014-06-02 14:15:07 +08:00
|
|
|
public:
|
2019-08-17 17:14:31 -07:00
|
|
|
HostnameSelectScreen(std::string *value, const std::string &title)
|
|
|
|
: PopupScreen(title, "OK", "Cancel"), value_(value) {
|
2019-08-17 18:24:57 -07:00
|
|
|
resolver_ = std::thread([](HostnameSelectScreen *thiz) {
|
|
|
|
thiz->ResolverThread();
|
|
|
|
}, this);
|
|
|
|
}
|
|
|
|
~HostnameSelectScreen() {
|
|
|
|
resolverState_ = ResolverState::QUIT;
|
|
|
|
resolverCond_.notify_one();
|
|
|
|
resolver_.join();
|
2019-08-17 17:14:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void CreatePopupContents(UI::ViewGroup *parent) override;
|
2014-06-02 14:15:07 +08:00
|
|
|
|
|
|
|
protected:
|
2019-08-17 17:14:31 -07:00
|
|
|
void OnCompleted(DialogResult result) override;
|
2019-08-17 18:24:57 -07:00
|
|
|
bool CanComplete(DialogResult result) override;
|
2014-06-02 14:15:07 +08:00
|
|
|
|
2019-08-17 16:42:19 -07:00
|
|
|
private:
|
2019-08-17 18:24:57 -07:00
|
|
|
void ResolverThread();
|
2019-08-17 17:38:29 -07:00
|
|
|
void SendEditKey(int keyCode, int flags = 0);
|
2019-08-17 17:14:31 -07:00
|
|
|
UI::EventReturn OnNumberClick(UI::EventParams &e);
|
2014-06-02 14:15:07 +08:00
|
|
|
UI::EventReturn OnPointClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDeleteClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDeleteAllClick(UI::EventParams &e);
|
2019-08-17 17:14:31 -07:00
|
|
|
|
2019-08-17 18:24:57 -07:00
|
|
|
enum class ResolverState {
|
|
|
|
WAITING,
|
|
|
|
QUEUED,
|
|
|
|
PROGRESS,
|
|
|
|
READY,
|
|
|
|
QUIT,
|
|
|
|
};
|
|
|
|
|
2019-08-17 17:14:31 -07:00
|
|
|
std::string *value_;
|
2019-08-17 18:24:57 -07:00
|
|
|
UI::TextEdit *addrView_ = nullptr;
|
|
|
|
UI::TextView *errorView_ = nullptr;
|
|
|
|
UI::TextView *progressView_ = nullptr;
|
|
|
|
|
|
|
|
std::thread resolver_;
|
|
|
|
ResolverState resolverState_ = ResolverState::WAITING;
|
|
|
|
std::mutex resolverLock_;
|
|
|
|
std::condition_variable resolverCond_;
|
|
|
|
std::string toResolve_ = "";
|
|
|
|
bool toResolveResult_ = false;
|
|
|
|
std::string lastResolved_ = "";
|
|
|
|
bool lastResolvedResult_ = false;
|
2014-06-02 14:15:07 +08:00
|
|
|
};
|