2013-09-07 11:38:37 +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
|
|
|
|
|
2016-10-12 09:32:24 +00:00
|
|
|
#include <functional>
|
2013-09-07 11:38:37 +00:00
|
|
|
#include <map>
|
2020-01-26 18:43:18 +00:00
|
|
|
#include <memory>
|
2013-09-07 11:38:37 +00:00
|
|
|
#include <string>
|
2016-10-12 09:32:24 +00:00
|
|
|
#include <vector>
|
2013-09-07 11:38:37 +00:00
|
|
|
|
2020-10-01 11:05:04 +00:00
|
|
|
#include "Common/Data/Text/I18n.h"
|
2020-10-04 18:48:47 +00:00
|
|
|
#include "Common/UI/UIScreen.h"
|
2013-09-07 11:38:37 +00:00
|
|
|
|
|
|
|
#include "UI/MiscScreens.h"
|
2015-10-14 15:45:21 +00:00
|
|
|
#include "GPU/Common/ShaderCommon.h"
|
2013-09-07 11:38:37 +00:00
|
|
|
|
2013-09-07 18:54:11 +00:00
|
|
|
class DevMenu : public PopupScreen {
|
|
|
|
public:
|
2020-01-26 18:43:18 +00:00
|
|
|
DevMenu(std::shared_ptr<I18NCategory> i18n) : PopupScreen(i18n->T("Dev Tools")) {}
|
2013-09-07 18:54:11 +00:00
|
|
|
|
2015-06-11 18:22:16 +00:00
|
|
|
void CreatePopupContents(UI::ViewGroup *parent) override;
|
|
|
|
void dialogFinished(const Screen *dialog, DialogResult result) override;
|
2013-09-07 20:02:55 +00:00
|
|
|
|
2013-09-07 18:54:11 +00:00
|
|
|
protected:
|
2015-01-05 00:23:03 +00:00
|
|
|
UI::EventReturn OnLogView(UI::EventParams &e);
|
2013-09-07 18:54:11 +00:00
|
|
|
UI::EventReturn OnLogConfig(UI::EventParams &e);
|
2013-09-29 11:39:25 +00:00
|
|
|
UI::EventReturn OnJitCompare(UI::EventParams &e);
|
2015-10-14 15:45:21 +00:00
|
|
|
UI::EventReturn OnShaderView(UI::EventParams &e);
|
2013-11-15 12:11:44 +00:00
|
|
|
UI::EventReturn OnFreezeFrame(UI::EventParams &e);
|
2013-11-15 15:49:13 +00:00
|
|
|
UI::EventReturn OnDumpFrame(UI::EventParams &e);
|
2013-09-07 18:54:11 +00:00
|
|
|
UI::EventReturn OnDeveloperTools(UI::EventParams &e);
|
2015-01-29 11:55:49 +00:00
|
|
|
UI::EventReturn OnToggleAudioDebug(UI::EventParams &e);
|
2013-09-07 18:54:11 +00:00
|
|
|
};
|
|
|
|
|
2019-02-04 12:00:08 +00:00
|
|
|
class JitDebugScreen : public UIDialogScreenWithBackground {
|
|
|
|
public:
|
|
|
|
JitDebugScreen() {}
|
|
|
|
virtual void CreateViews() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
UI::EventReturn OnEnableAll(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDisableAll(UI::EventParams &e);
|
|
|
|
};
|
|
|
|
|
2013-09-07 11:38:37 +00:00
|
|
|
class LogConfigScreen : public UIDialogScreenWithBackground {
|
|
|
|
public:
|
|
|
|
LogConfigScreen() {}
|
2015-06-11 18:22:16 +00:00
|
|
|
virtual void CreateViews() override;
|
2013-09-07 11:38:37 +00:00
|
|
|
|
|
|
|
private:
|
2013-09-07 18:54:11 +00:00
|
|
|
UI::EventReturn OnToggleAll(UI::EventParams &e);
|
2017-03-06 12:50:22 +00:00
|
|
|
UI::EventReturn OnEnableAll(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDisableAll(UI::EventParams &e);
|
2013-10-17 16:23:57 +00:00
|
|
|
UI::EventReturn OnLogLevel(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnLogLevelChange(UI::EventParams &e);
|
|
|
|
};
|
|
|
|
|
2015-01-05 00:23:03 +00:00
|
|
|
class LogScreen : public UIDialogScreenWithBackground {
|
|
|
|
public:
|
|
|
|
LogScreen() : toBottom_(false) {}
|
|
|
|
void CreateViews() override;
|
2017-03-15 05:01:18 +00:00
|
|
|
void update() override;
|
2015-01-05 00:23:03 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void UpdateLog();
|
|
|
|
UI::EventReturn OnSubmit(UI::EventParams &e);
|
|
|
|
UI::TextEdit *cmdLine_;
|
|
|
|
UI::LinearLayout *vert_;
|
|
|
|
UI::ScrollView *scroll_;
|
|
|
|
bool toBottom_;
|
|
|
|
};
|
|
|
|
|
2013-10-17 16:23:57 +00:00
|
|
|
class LogLevelScreen : public ListPopupScreen {
|
|
|
|
public:
|
|
|
|
LogLevelScreen(const std::string &title);
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void OnCompleted(DialogResult result);
|
|
|
|
|
2013-09-07 11:38:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class SystemInfoScreen : public UIDialogScreenWithBackground {
|
|
|
|
public:
|
|
|
|
SystemInfoScreen() {}
|
2017-12-04 01:49:49 +00:00
|
|
|
void CreateViews() override;
|
2013-09-29 11:39:25 +00:00
|
|
|
};
|
|
|
|
|
2013-11-29 06:35:03 +00:00
|
|
|
class AddressPromptScreen : public PopupScreen {
|
|
|
|
public:
|
|
|
|
AddressPromptScreen(const std::string &title) : PopupScreen(title, "OK", "Cancel"), addrView_(NULL), addr_(0) {
|
2013-11-29 07:02:04 +00:00
|
|
|
memset(buttons_, 0, sizeof(buttons_));
|
2013-11-29 06:35:03 +00:00
|
|
|
}
|
|
|
|
|
2014-06-15 11:04:59 +00:00
|
|
|
virtual bool key(const KeyInput &key) override;
|
2013-11-29 06:35:03 +00:00
|
|
|
|
|
|
|
UI::Event OnChoice;
|
|
|
|
|
|
|
|
protected:
|
2014-06-15 11:04:59 +00:00
|
|
|
virtual void CreatePopupContents(UI::ViewGroup *parent) override;
|
2015-09-17 18:29:37 +00:00
|
|
|
virtual void OnCompleted(DialogResult result) override;
|
2013-11-29 07:02:04 +00:00
|
|
|
UI::EventReturn OnDigitButton(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnBackspace(UI::EventParams &e);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void AddDigit(int n);
|
|
|
|
void BackspaceDigit();
|
|
|
|
void UpdatePreviewDigits();
|
2013-11-29 06:35:03 +00:00
|
|
|
|
|
|
|
UI::TextView *addrView_;
|
2013-11-29 07:02:04 +00:00
|
|
|
UI::Button *buttons_[16];
|
2013-11-29 06:35:03 +00:00
|
|
|
unsigned int addr_;
|
|
|
|
};
|
|
|
|
|
2013-09-29 11:39:25 +00:00
|
|
|
class JitCompareScreen : public UIDialogScreenWithBackground {
|
|
|
|
public:
|
|
|
|
JitCompareScreen() : currentBlock_(-1) {}
|
2015-09-17 18:29:37 +00:00
|
|
|
virtual void CreateViews() override;
|
2013-09-29 11:39:25 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void UpdateDisasm();
|
|
|
|
UI::EventReturn OnRandomBlock(UI::EventParams &e);
|
2015-03-16 23:54:56 +00:00
|
|
|
UI::EventReturn OnRandomFPUBlock(UI::EventParams &e);
|
2013-11-07 12:37:19 +00:00
|
|
|
UI::EventReturn OnRandomVFPUBlock(UI::EventParams &e);
|
2015-03-16 23:54:56 +00:00
|
|
|
void OnRandomBlock(int flag);
|
|
|
|
|
2013-09-29 11:39:25 +00:00
|
|
|
UI::EventReturn OnCurrentBlock(UI::EventParams &e);
|
2013-11-29 06:35:03 +00:00
|
|
|
UI::EventReturn OnSelectBlock(UI::EventParams &e);
|
2014-11-16 15:45:24 +00:00
|
|
|
UI::EventReturn OnPrevBlock(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnNextBlock(UI::EventParams &e);
|
2013-11-29 06:35:03 +00:00
|
|
|
UI::EventReturn OnBlockAddress(UI::EventParams &e);
|
2014-11-16 15:45:24 +00:00
|
|
|
UI::EventReturn OnAddressChange(UI::EventParams &e);
|
2014-11-24 20:57:27 +00:00
|
|
|
UI::EventReturn OnShowStats(UI::EventParams &e);
|
2013-09-29 11:39:25 +00:00
|
|
|
|
|
|
|
int currentBlock_;
|
|
|
|
|
2014-11-16 15:45:24 +00:00
|
|
|
UI::TextView *blockName_;
|
|
|
|
UI::TextEdit *blockAddr_;
|
|
|
|
UI::TextView *blockStats_;
|
2013-09-30 08:10:34 +00:00
|
|
|
|
2015-09-17 18:29:37 +00:00
|
|
|
UI::LinearLayout *leftDisasm_;
|
|
|
|
UI::LinearLayout *rightDisasm_;
|
2013-11-15 12:11:44 +00:00
|
|
|
};
|
2015-05-13 20:28:02 +00:00
|
|
|
|
2015-10-14 15:45:21 +00:00
|
|
|
class ShaderListScreen : public UIDialogScreenWithBackground {
|
|
|
|
public:
|
|
|
|
ShaderListScreen() {}
|
|
|
|
void CreateViews() override;
|
|
|
|
|
|
|
|
private:
|
2017-11-13 10:13:38 +00:00
|
|
|
int ListShaders(DebugShaderType shaderType, UI::LinearLayout *view);
|
2015-10-14 15:45:21 +00:00
|
|
|
|
|
|
|
UI::EventReturn OnShaderClick(UI::EventParams &e);
|
|
|
|
|
|
|
|
UI::TabHolder *tabs_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ShaderViewScreen : public UIDialogScreenWithBackground {
|
|
|
|
public:
|
|
|
|
ShaderViewScreen(std::string id, DebugShaderType type)
|
|
|
|
: id_(id), type_(type) {}
|
|
|
|
|
|
|
|
void CreateViews() override;
|
|
|
|
private:
|
|
|
|
std::string id_;
|
|
|
|
DebugShaderType type_;
|
|
|
|
};
|
2015-05-13 20:28:02 +00:00
|
|
|
|
|
|
|
void DrawProfile(UIContext &ui);
|
2020-07-15 10:10:33 +00:00
|
|
|
const char *GetCompilerABI();
|