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