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
|
|
|
|
|
|
|
// 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:
|
2021-05-05 23:31:38 +00:00
|
|
|
GameScreen(const Path &gamePath);
|
2014-06-22 15:02:04 +00:00
|
|
|
~GameScreen();
|
2013-06-08 20:42:31 +00:00
|
|
|
|
2018-11-22 22:53:58 +00:00
|
|
|
void render() override;
|
2013-06-08 20:42:31 +00:00
|
|
|
|
2017-12-02 19:45:59 +00:00
|
|
|
std::string 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-08-26 17:00:16 +00:00
|
|
|
UI::EventReturn OnCreateShortcut(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);
|
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.
|
|
|
|
UI::TextView *tvTitle_;
|
|
|
|
UI::TextView *tvGameSize_;
|
2013-06-09 10:41:12 +00:00
|
|
|
UI::TextView *tvSaveDataSize_;
|
2013-10-03 12:44:16 +00:00
|
|
|
UI::TextView *tvInstallDataSize_;
|
2013-12-10 16:23:03 +00:00
|
|
|
UI::TextView *tvRegion_;
|
2021-01-31 20:27:07 +00:00
|
|
|
UI::TextView *tvCRC_;
|
2016-08-07 20:58:56 +00:00
|
|
|
|
|
|
|
UI::Choice *btnGameSettings_;
|
|
|
|
UI::Choice *btnCreateGameConfig_;
|
|
|
|
UI::Choice *btnDeleteGameConfig_;
|
|
|
|
UI::Choice *btnDeleteSaveData_;
|
2017-03-26 17:02:34 +00:00
|
|
|
UI::Choice *btnSetBackground_;
|
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;
|
2013-06-09 10:41:12 +00:00
|
|
|
};
|