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
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "base/functional.h"
|
|
|
|
#include "file/file_util.h"
|
|
|
|
#include "ui/ui_screen.h"
|
|
|
|
|
|
|
|
#include "UI/MiscScreens.h"
|
|
|
|
|
2013-09-07 18:54:11 +00:00
|
|
|
class DevMenu : public PopupScreen {
|
|
|
|
public:
|
|
|
|
DevMenu() : PopupScreen("Dev Tools") {}
|
|
|
|
|
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);
|
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
|
|
|
};
|
|
|
|
|
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);
|
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;
|
|
|
|
void update(InputState &input) override;
|
|
|
|
|
|
|
|
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() {}
|
|
|
|
virtual void CreateViews();
|
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;
|
2013-11-29 06:35:03 +00:00
|
|
|
virtual void OnCompleted(DialogResult result);
|
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) {}
|
|
|
|
virtual void CreateViews();
|
|
|
|
|
|
|
|
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
|
|
|
|
2013-09-29 11:39:25 +00:00
|
|
|
UI::LinearLayout *leftDisasm_;
|
|
|
|
UI::LinearLayout *rightDisasm_;
|
2013-11-15 12:11:44 +00:00
|
|
|
};
|
2015-05-13 20:28:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
void DrawProfile(UIContext &ui);
|