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