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