2013-06-02 11:43:15 +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.
|
2013-06-01 21:34:50 +00:00
|
|
|
|
2013-06-02 11:43:15 +00:00
|
|
|
// 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
|
2013-06-01 21:34:50 +00:00
|
|
|
|
2016-10-12 09:32:24 +00:00
|
|
|
#include <functional>
|
|
|
|
|
2014-02-09 21:15:53 +00:00
|
|
|
#include "UI/MiscScreens.h"
|
2020-10-04 18:48:47 +00:00
|
|
|
#include "Common/UI/UIScreen.h"
|
2021-05-05 23:31:38 +00:00
|
|
|
#include "Common/File/Path.h"
|
2013-06-08 20:42:31 +00:00
|
|
|
|
2023-10-22 17:10:42 +00:00
|
|
|
class NoticeView;
|
|
|
|
|
2013-06-08 20:42:31 +00:00
|
|
|
// Game screen: Allows you to start a game, delete saves, delete the game,
|
|
|
|
// set game specific settings, etc.
|
2013-08-26 17:00:16 +00:00
|
|
|
|
2013-06-08 20:42:31 +00:00
|
|
|
// Uses GameInfoCache heavily to implement the functionality.
|
2013-08-26 17:00:16 +00:00
|
|
|
// Should possibly merge this with the PauseScreen.
|
2013-06-08 20:42:31 +00:00
|
|
|
|
2014-02-09 21:15:53 +00:00
|
|
|
class GameScreen : public UIDialogScreenWithGameBackground {
|
2013-06-08 20:42:31 +00:00
|
|
|
public:
|
2024-09-18 11:37:38 +00:00
|
|
|
GameScreen(const Path &gamePath, bool inGame);
|
2014-06-22 15:02:04 +00:00
|
|
|
~GameScreen();
|
2013-06-08 20:42:31 +00:00
|
|
|
|
2021-01-29 23:03:52 +00:00
|
|
|
void update() override;
|
|
|
|
|
2023-12-11 11:41:44 +00:00
|
|
|
ScreenRenderFlags render(ScreenRenderMode mode) override;
|
2013-06-08 20:42:31 +00:00
|
|
|
|
2022-09-16 08:14:00 +00:00
|
|
|
const char *tag() const override { return "Game"; }
|
2016-02-08 01:15:19 +00:00
|
|
|
|
2013-06-08 20:42:31 +00:00
|
|
|
protected:
|
2017-12-04 01:49:49 +00:00
|
|
|
void CreateViews() override;
|
2014-12-14 19:33:20 +00:00
|
|
|
void CallbackDeleteConfig(bool yes);
|
2013-06-09 10:41:12 +00:00
|
|
|
void CallbackDeleteSaveData(bool yes);
|
|
|
|
void CallbackDeleteGame(bool yes);
|
2021-05-05 23:31:38 +00:00
|
|
|
bool isRecentGame(const Path &gamePath);
|
2013-06-08 20:42:31 +00:00
|
|
|
|
|
|
|
private:
|
2016-08-07 20:58:56 +00:00
|
|
|
UI::Choice *AddOtherChoice(UI::Choice *choice);
|
|
|
|
|
2013-06-08 20:42:31 +00:00
|
|
|
// Event handlers
|
|
|
|
UI::EventReturn OnPlay(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnGameSettings(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDeleteSaveData(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDeleteGame(UI::EventParams &e);
|
2013-06-09 10:41:12 +00:00
|
|
|
UI::EventReturn OnSwitchBack(UI::EventParams &e);
|
2013-09-19 08:10:31 +00:00
|
|
|
UI::EventReturn OnRemoveFromRecent(UI::EventParams &e);
|
2013-12-11 19:19:30 +00:00
|
|
|
UI::EventReturn OnShowInFolder(UI::EventParams &e);
|
2014-12-14 19:33:20 +00:00
|
|
|
UI::EventReturn OnCreateConfig(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDeleteConfig(UI::EventParams &e);
|
2016-06-19 22:18:35 +00:00
|
|
|
UI::EventReturn OnCwCheat(UI::EventParams &e);
|
2017-03-26 17:02:34 +00:00
|
|
|
UI::EventReturn OnSetBackground(UI::EventParams &e);
|
2021-01-29 23:03:52 +00:00
|
|
|
UI::EventReturn OnDoCRC32(UI::EventParams& e);
|
2013-06-08 20:42:31 +00:00
|
|
|
|
|
|
|
// As we load metadata in the background, we need to be able to update these after the fact.
|
2021-08-21 18:58:25 +00:00
|
|
|
UI::TextView *tvTitle_ = nullptr;
|
|
|
|
UI::TextView *tvGameSize_ = nullptr;
|
|
|
|
UI::TextView *tvSaveDataSize_ = nullptr;
|
|
|
|
UI::TextView *tvInstallDataSize_ = nullptr;
|
|
|
|
UI::TextView *tvRegion_ = nullptr;
|
2023-11-20 10:46:36 +00:00
|
|
|
UI::TextView *tvPlayTime_ = nullptr;
|
2021-08-21 18:58:25 +00:00
|
|
|
UI::TextView *tvCRC_ = nullptr;
|
2022-03-11 06:23:42 +00:00
|
|
|
UI::TextView *tvID_ = nullptr;
|
2024-09-02 20:48:47 +00:00
|
|
|
UI::Button *tvCRCCopy_ = nullptr;
|
2023-10-22 17:10:42 +00:00
|
|
|
NoticeView *tvVerified_ = nullptr;
|
2021-08-21 18:58:25 +00:00
|
|
|
|
|
|
|
UI::Choice *btnGameSettings_ = nullptr;
|
|
|
|
UI::Choice *btnCreateGameConfig_ = nullptr;
|
|
|
|
UI::Choice *btnDeleteGameConfig_ = nullptr;
|
|
|
|
UI::Choice *btnDeleteSaveData_ = nullptr;
|
|
|
|
UI::Choice *btnSetBackground_ = nullptr;
|
|
|
|
|
|
|
|
UI::Choice *btnCalcCRC_ = nullptr;
|
|
|
|
|
2016-08-07 20:58:56 +00:00
|
|
|
std::vector<UI::Choice *> otherChoices_;
|
2021-05-05 23:31:38 +00:00
|
|
|
std::vector<Path> saveDirs;
|
2021-08-21 18:19:43 +00:00
|
|
|
std::string CRC32string;
|
2023-10-22 17:10:42 +00:00
|
|
|
|
2023-10-26 05:09:28 +00:00
|
|
|
bool isHomebrew_ = false;
|
2024-09-18 11:37:38 +00:00
|
|
|
bool inGame_ = false;
|
2013-06-09 10:41:12 +00:00
|
|
|
};
|