2013-06-10 20:06:51 +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.
|
|
|
|
|
|
|
|
// 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>
|
|
|
|
|
2021-05-09 13:25:12 +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"
|
2013-07-21 11:31:46 +00:00
|
|
|
#include "UI/MiscScreens.h"
|
2020-10-03 22:25:21 +00:00
|
|
|
#include "Common/File/PathBrowser.h"
|
2013-06-10 20:06:51 +00:00
|
|
|
|
2019-10-06 19:40:00 +00:00
|
|
|
enum GameBrowserFlags {
|
|
|
|
FLAG_HOMEBREWSTOREBUTTON = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class BrowseFlags {
|
|
|
|
NONE = 0,
|
|
|
|
NAVIGATE = 1,
|
|
|
|
ARCHIVES = 2,
|
|
|
|
PIN = 4,
|
|
|
|
HOMEBREW_STORE = 8,
|
|
|
|
STANDARD = 1 | 2 | 4,
|
|
|
|
};
|
2020-05-22 00:57:41 +00:00
|
|
|
ENUM_CLASS_BITOPS(BrowseFlags);
|
2019-10-06 19:40:00 +00:00
|
|
|
|
2021-05-05 23:31:38 +00:00
|
|
|
bool LaunchFile(ScreenManager *screenManager, const Path &path);
|
2021-01-31 13:42:40 +00:00
|
|
|
|
2015-06-11 18:22:16 +00:00
|
|
|
class GameBrowser : public UI::LinearLayout {
|
|
|
|
public:
|
2021-05-09 17:06:02 +00:00
|
|
|
GameBrowser(const Path &path, BrowseFlags browseFlags, bool *gridStyle, ScreenManager *screenManager, std::string lastText, std::string lastLink, UI::LayoutParams *layoutParams = nullptr);
|
2015-06-11 18:22:16 +00:00
|
|
|
|
|
|
|
UI::Event OnChoice;
|
|
|
|
UI::Event OnHoldChoice;
|
|
|
|
UI::Event OnHighlight;
|
|
|
|
|
2021-05-05 23:31:38 +00:00
|
|
|
void FocusGame(const Path &gamePath);
|
|
|
|
void SetPath(const Path &path);
|
2020-03-01 14:34:35 +00:00
|
|
|
void Draw(UIContext &dc) override;
|
2019-10-06 18:49:35 +00:00
|
|
|
void Update() override;
|
|
|
|
|
2016-07-04 03:48:27 +00:00
|
|
|
protected:
|
|
|
|
virtual bool DisplayTopBar();
|
2021-05-09 13:25:12 +00:00
|
|
|
virtual bool HasSpecialFiles(std::vector<Path> &filenames);
|
2016-07-04 03:48:27 +00:00
|
|
|
|
2015-06-11 18:22:16 +00:00
|
|
|
void Refresh();
|
2016-07-04 03:48:27 +00:00
|
|
|
|
|
|
|
private:
|
2015-06-11 18:22:16 +00:00
|
|
|
bool IsCurrentPathPinned();
|
2021-05-09 13:25:12 +00:00
|
|
|
const std::vector<Path> GetPinnedPaths();
|
2015-06-11 18:22:16 +00:00
|
|
|
const std::string GetBaseName(const std::string &path);
|
|
|
|
|
|
|
|
UI::EventReturn GameButtonClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn GameButtonHoldClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn GameButtonHighlight(UI::EventParams &e);
|
|
|
|
UI::EventReturn NavigateClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn LayoutChange(UI::EventParams &e);
|
|
|
|
UI::EventReturn LastClick(UI::EventParams &e);
|
2020-03-30 20:45:29 +00:00
|
|
|
UI::EventReturn BrowseClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn StorageClick(UI::EventParams &e);
|
2015-06-11 18:22:16 +00:00
|
|
|
UI::EventReturn HomeClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn PinToggleClick(UI::EventParams &e);
|
2020-03-01 14:34:35 +00:00
|
|
|
UI::EventReturn GridSettingsClick(UI::EventParams &e);
|
2020-03-02 07:34:26 +00:00
|
|
|
UI::EventReturn OnRecentClear(UI::EventParams &e);
|
2020-05-17 12:57:12 +00:00
|
|
|
UI::EventReturn OnHomebrewStore(UI::EventParams &e);
|
2015-06-11 18:22:16 +00:00
|
|
|
|
2019-10-06 18:49:35 +00:00
|
|
|
UI::ViewGroup *gameList_ = nullptr;
|
2015-06-11 18:22:16 +00:00
|
|
|
PathBrowser path_;
|
2020-05-17 12:57:12 +00:00
|
|
|
bool *gridStyle_ = nullptr;
|
2019-10-06 19:40:00 +00:00
|
|
|
BrowseFlags browseFlags_;
|
2015-06-11 18:22:16 +00:00
|
|
|
std::string lastText_;
|
|
|
|
std::string lastLink_;
|
2021-05-05 23:31:38 +00:00
|
|
|
Path focusGamePath_;
|
2019-10-06 18:49:35 +00:00
|
|
|
bool listingPending_ = false;
|
2020-03-01 14:34:35 +00:00
|
|
|
float lastScale_ = 1.0f;
|
|
|
|
bool lastLayoutWasGrid_ = true;
|
|
|
|
ScreenManager *screenManager_;
|
2015-06-11 18:22:16 +00:00
|
|
|
};
|
2013-06-10 20:06:51 +00:00
|
|
|
|
2016-07-04 03:48:27 +00:00
|
|
|
class RemoteISOBrowseScreen;
|
|
|
|
|
2013-07-21 11:31:46 +00:00
|
|
|
class MainScreen : public UIScreenWithBackground {
|
2013-06-10 20:06:51 +00:00
|
|
|
public:
|
2013-12-04 18:21:39 +00:00
|
|
|
MainScreen();
|
2014-06-22 15:02:04 +00:00
|
|
|
~MainScreen();
|
2013-06-10 20:06:51 +00:00
|
|
|
|
2016-10-01 18:23:24 +00:00
|
|
|
bool isTopLevel() const override { return true; }
|
2013-09-04 08:51:14 +00:00
|
|
|
|
2013-12-06 11:29:27 +00:00
|
|
|
// Horrible hack to show the demos & homebrew tab after having installed a game from a zip file.
|
|
|
|
static bool showHomebrewTab;
|
|
|
|
|
2013-06-10 20:06:51 +00:00
|
|
|
protected:
|
2016-10-01 18:23:24 +00:00
|
|
|
void CreateViews() override;
|
|
|
|
void DrawBackground(UIContext &dc) override;
|
2017-03-15 05:01:18 +00:00
|
|
|
void update() override;
|
2016-10-01 18:23:24 +00:00
|
|
|
void sendMessage(const char *message, const char *value) override;
|
|
|
|
void dialogFinished(const Screen *dialog, DialogResult result) override;
|
2013-06-10 20:06:51 +00:00
|
|
|
|
2016-07-04 03:48:27 +00:00
|
|
|
bool UseVerticalLayout() const;
|
2021-05-05 23:31:38 +00:00
|
|
|
bool DrawBackgroundFor(UIContext &dc, const Path &gamePath, float progress);
|
2014-06-22 01:04:27 +00:00
|
|
|
|
2013-06-10 20:06:51 +00:00
|
|
|
UI::EventReturn OnGameSelected(UI::EventParams &e);
|
2013-08-16 10:52:16 +00:00
|
|
|
UI::EventReturn OnGameSelectedInstant(UI::EventParams &e);
|
2014-06-22 01:04:27 +00:00
|
|
|
UI::EventReturn OnGameHighlight(UI::EventParams &e);
|
2013-06-10 20:06:51 +00:00
|
|
|
// Event handlers
|
2013-06-27 14:28:11 +00:00
|
|
|
UI::EventReturn OnLoadFile(UI::EventParams &e);
|
2013-08-16 10:52:16 +00:00
|
|
|
UI::EventReturn OnGameSettings(UI::EventParams &e);
|
2013-06-10 20:06:51 +00:00
|
|
|
UI::EventReturn OnCredits(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnSupport(UI::EventParams &e);
|
2013-08-19 22:49:25 +00:00
|
|
|
UI::EventReturn OnPPSSPPOrg(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnForums(UI::EventParams &e);
|
2013-06-28 12:31:10 +00:00
|
|
|
UI::EventReturn OnExit(UI::EventParams &e);
|
2013-11-26 13:04:29 +00:00
|
|
|
UI::EventReturn OnDownloadUpgrade(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDismissUpgrade(UI::EventParams &e);
|
2015-12-17 21:41:50 +00:00
|
|
|
UI::EventReturn OnAllowStorage(UI::EventParams &e);
|
2021-01-08 19:05:43 +00:00
|
|
|
UI::EventReturn OnFullScreenToggle(UI::EventParams &e);
|
2013-11-26 13:04:29 +00:00
|
|
|
|
2020-05-17 12:57:12 +00:00
|
|
|
UI::LinearLayout *upgradeBar_ = nullptr;
|
|
|
|
UI::TabHolder *tabHolder_ = nullptr;
|
2021-01-08 19:05:43 +00:00
|
|
|
UI::Button *fullscreenButton_ = nullptr;
|
2013-11-20 15:36:58 +00:00
|
|
|
|
2021-05-05 23:31:38 +00:00
|
|
|
Path restoreFocusGamePath_;
|
2016-02-08 01:15:19 +00:00
|
|
|
std::vector<GameBrowser *> gameBrowsers_;
|
|
|
|
|
2021-05-05 23:31:38 +00:00
|
|
|
Path highlightedGamePath_;
|
|
|
|
Path prevHighlightedGamePath_;
|
2020-05-17 12:57:12 +00:00
|
|
|
float highlightProgress_ = 0.0f;
|
|
|
|
float prevHighlightProgress_ = 0.0f;
|
|
|
|
bool backFromStore_ = false;
|
|
|
|
bool lockBackgroundAudio_ = false;
|
2014-06-29 19:02:32 +00:00
|
|
|
bool lastVertical_;
|
2018-06-02 23:32:55 +00:00
|
|
|
bool confirmedTemporary_ = false;
|
2020-11-23 09:06:48 +00:00
|
|
|
UI::ScrollView *scrollAllGames_ = nullptr;
|
2014-06-29 19:02:32 +00:00
|
|
|
|
2016-07-04 03:48:27 +00:00
|
|
|
friend class RemoteISOBrowseScreen;
|
2013-06-28 12:31:10 +00:00
|
|
|
};
|
2013-07-21 11:31:46 +00:00
|
|
|
|
2013-11-24 03:02:36 +00:00
|
|
|
class UmdReplaceScreen : public UIDialogScreenWithBackground {
|
|
|
|
public:
|
|
|
|
UmdReplaceScreen() {}
|
|
|
|
|
|
|
|
protected:
|
2016-10-01 18:23:24 +00:00
|
|
|
void CreateViews() override;
|
2017-03-15 05:01:18 +00:00
|
|
|
void update() override;
|
2013-11-24 03:02:36 +00:00
|
|
|
//virtual void sendMessage(const char *message, const char *value);
|
|
|
|
|
|
|
|
private:
|
|
|
|
UI::EventReturn OnGameSelected(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnGameSelectedInstant(UI::EventParams &e);
|
2013-11-24 04:14:44 +00:00
|
|
|
|
|
|
|
UI::EventReturn OnCancel(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnGameSettings(UI::EventParams &e);
|
2013-11-24 03:02:36 +00:00
|
|
|
};
|
2020-03-01 14:34:35 +00:00
|
|
|
|
|
|
|
class GridSettingsScreen : public PopupScreen {
|
|
|
|
public:
|
|
|
|
GridSettingsScreen(std::string label) : PopupScreen(label) {}
|
|
|
|
void CreatePopupContents(UI::ViewGroup *parent) override;
|
2020-03-02 07:34:26 +00:00
|
|
|
UI::Event OnRecentChanged;
|
2020-03-01 14:34:35 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
UI::EventReturn GridPlusClick(UI::EventParams &e);
|
|
|
|
UI::EventReturn GridMinusClick(UI::EventParams &e);
|
2020-03-02 07:34:26 +00:00
|
|
|
UI::EventReturn OnRecentClearClick(UI::EventParams &e);
|
2020-03-03 09:45:23 +00:00
|
|
|
const float MAX_GAME_GRID_SCALE = 3.0f;
|
|
|
|
const float MIN_GAME_GRID_SCALE = 0.8f;
|
2020-03-01 14:34:35 +00:00
|
|
|
};
|