2014-12-22 10:48:17 +01:00
|
|
|
// Copyright (c) 2014- 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 11:32:24 +02:00
|
|
|
#include <functional>
|
2017-05-18 12:52:03 +02:00
|
|
|
#include <memory>
|
2016-10-12 11:32:24 +02:00
|
|
|
|
2021-05-06 01:31:38 +02:00
|
|
|
#include "Common/File/Path.h"
|
2020-10-04 20:48:47 +02:00
|
|
|
#include "Common/UI/UIScreen.h"
|
|
|
|
#include "Common/UI/ViewGroup.h"
|
2014-12-22 10:48:17 +01:00
|
|
|
#include "UI/MiscScreens.h"
|
2022-11-21 20:15:22 +01:00
|
|
|
|
|
|
|
enum class PauseScreenMode {
|
|
|
|
MAIN,
|
|
|
|
DISPLAY_SETTINGS,
|
|
|
|
};
|
2014-12-22 10:48:17 +01:00
|
|
|
|
|
|
|
class GamePauseScreen : public UIDialogScreenWithGameBackground {
|
|
|
|
public:
|
2023-07-10 10:39:44 +02:00
|
|
|
GamePauseScreen(const Path &filename);
|
2022-12-10 20:32:12 -08:00
|
|
|
~GamePauseScreen();
|
2014-12-22 10:48:17 +01:00
|
|
|
|
2022-11-20 12:22:50 +01:00
|
|
|
void dialogFinished(const Screen *dialog, DialogResult dr) override;
|
2023-12-20 16:55:39 +01:00
|
|
|
bool key(const KeyInput &key) override;
|
2014-12-22 10:48:17 +01:00
|
|
|
|
2022-09-16 10:14:00 +02:00
|
|
|
const char *tag() const override { return "GamePause"; }
|
|
|
|
|
2014-12-22 10:48:17 +01:00
|
|
|
protected:
|
2022-11-20 12:22:50 +01:00
|
|
|
void CreateViews() override;
|
|
|
|
void update() override;
|
2014-12-22 10:48:17 +01:00
|
|
|
void CallbackDeleteConfig(bool yes);
|
|
|
|
|
|
|
|
private:
|
2023-06-27 14:58:39 +02:00
|
|
|
void CreateSavestateControls(UI::LinearLayout *viewGroup, bool vertical);
|
|
|
|
|
2014-12-22 10:48:17 +01:00
|
|
|
UI::EventReturn OnGameSettings(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnExitToMenu(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnReportFeedback(UI::EventParams &e);
|
|
|
|
|
|
|
|
UI::EventReturn OnRewind(UI::EventParams &e);
|
2021-08-03 10:04:49 +02:00
|
|
|
UI::EventReturn OnLoadUndo(UI::EventParams &e);
|
2021-08-07 13:28:43 +02:00
|
|
|
UI::EventReturn OnLastSaveUndo(UI::EventParams &e);
|
2014-12-22 10:48:17 +01:00
|
|
|
|
2014-12-31 20:42:28 +01:00
|
|
|
UI::EventReturn OnScreenshotClicked(UI::EventParams &e);
|
2014-12-22 10:48:17 +01:00
|
|
|
|
|
|
|
UI::EventReturn OnCreateConfig(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDeleteConfig(UI::EventParams &e);
|
|
|
|
|
2014-12-31 15:33:43 +01:00
|
|
|
UI::EventReturn OnState(UI::EventParams &e);
|
2014-12-22 10:48:17 +01:00
|
|
|
|
2014-12-31 20:42:28 +01:00
|
|
|
// hack
|
2017-11-23 09:08:39 -08:00
|
|
|
bool finishNextFrame_ = false;
|
2022-11-21 20:15:22 +01:00
|
|
|
PauseScreenMode mode_ = PauseScreenMode::MAIN;
|
2023-12-11 12:41:44 +01:00
|
|
|
|
2023-12-11 13:56:16 +01:00
|
|
|
UI::Button *playButton_ = nullptr;
|
2015-02-01 18:04:06 +01:00
|
|
|
};
|