ppsspp/UI/MainScreen.h

207 lines
6.1 KiB
C
Raw Normal View History

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
#include <functional>
#include "Common/File/Path.h"
#include "Common/UI/UIScreen.h"
#include "Common/UI/ViewGroup.h"
2013-07-21 11:31:46 +00:00
#include "UI/MiscScreens.h"
#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,
BROWSE = 2,
ARCHIVES = 4,
PIN = 8,
HOMEBREW_STORE = 16,
STANDARD = 1 | 2 | 4 | 8,
2019-10-06 19:40:00 +00:00
};
ENUM_CLASS_BITOPS(BrowseFlags);
2019-10-06 19:40:00 +00:00
bool LaunchFile(ScreenManager *screenManager, const Path &path);
class GameBrowser : public UI::LinearLayout {
public:
GameBrowser(int token, const Path &path, BrowseFlags browseFlags, bool *gridStyle, ScreenManager *screenManager, std::string_view lastText, std::string_view lastLink, UI::LayoutParams *layoutParams = nullptr);
UI::Event OnChoice;
UI::Event OnHoldChoice;
UI::Event OnHighlight;
void FocusGame(const Path &gamePath);
void SetPath(const Path &path);
void ApplySearchFilter(const std::string &filter);
2020-03-01 14:34:35 +00:00
void Draw(UIContext &dc) override;
void Update() override;
void SetHomePath(const Path &path) {
homePath_ = path;
}
2016-07-04 03:48:27 +00:00
protected:
virtual bool DisplayTopBar();
virtual bool HasSpecialFiles(std::vector<Path> &filenames);
virtual Path HomePath();
void ApplySearchFilter();
2016-07-04 03:48:27 +00:00
void Refresh();
2016-07-04 03:48:27 +00:00
Path homePath_;
2016-07-04 03:48:27 +00:00
private:
bool IsCurrentPathPinned();
const std::vector<Path> GetPinnedPaths();
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);
UI::EventReturn OnHomeClick(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);
UI::EventReturn OnHomebrewStore(UI::EventParams &e);
enum class SearchState {
MATCH,
MISMATCH,
PENDING,
};
UI::ViewGroup *gameList_ = nullptr;
PathBrowser path_;
bool *gridStyle_ = nullptr;
2019-10-06 19:40:00 +00:00
BrowseFlags browseFlags_;
std::string lastText_;
std::string lastLink_;
std::string searchFilter_;
std::vector<SearchState> searchStates_;
Path focusGamePath_;
bool listingPending_ = false;
bool searchPending_ = false;
2020-03-01 14:34:35 +00:00
float lastScale_ = 1.0f;
bool lastLayoutWasGrid_ = true;
ScreenManager *screenManager_;
int token_;
};
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();
~MainScreen();
2013-06-10 20:06:51 +00:00
2016-10-01 18:23:24 +00:00
bool isTopLevel() const override { return true; }
const char *tag() const override { return "Main"; }
// Horrible hack to show the demos & homebrew tab after having installed a game from a zip file.
static bool showHomebrewTab;
bool key(const KeyInput &touch) override;
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;
void sendMessage(UIMessage message, const char *value) override;
2016-10-01 18:23:24 +00:00
void dialogFinished(const Screen *dialog, DialogResult result) override;
2013-06-10 20:06:51 +00:00
bool DrawBackgroundFor(UIContext &dc, const Path &gamePath, float progress);
2013-06-10 20:06:51 +00:00
UI::EventReturn OnGameSelected(UI::EventParams &e);
UI::EventReturn OnGameSelectedInstant(UI::EventParams &e);
UI::EventReturn OnGameHighlight(UI::EventParams &e);
2013-06-10 20:06:51 +00:00
// Event handlers
UI::EventReturn OnLoadFile(UI::EventParams &e);
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);
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);
UI::EventReturn OnDownloadUpgrade(UI::EventParams &e);
UI::EventReturn OnDismissUpgrade(UI::EventParams &e);
UI::EventReturn OnAllowStorage(UI::EventParams &e);
UI::EventReturn OnFullScreenToggle(UI::EventParams &e);
UI::LinearLayout *upgradeBar_ = nullptr;
UI::TabHolder *tabHolder_ = nullptr;
UI::Button *fullscreenButton_ = nullptr;
Path restoreFocusGamePath_;
std::vector<GameBrowser *> gameBrowsers_;
Path highlightedGamePath_;
Path prevHighlightedGamePath_;
float highlightProgress_ = 0.0f;
float prevHighlightProgress_ = 0.0f;
bool backFromStore_ = false;
bool lockBackgroundAudio_ = false;
bool lastVertical_;
bool confirmedTemporary_ = false;
2020-11-23 09:06:48 +00:00
UI::ScrollView *scrollAllGames_ = nullptr;
bool searchKeyModifier_ = false;
bool searchChanged_ = false;
std::string searchFilter_;
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:
const char *tag() const override { return "UmdReplace"; }
2013-11-24 03:02:36 +00:00
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
private:
UI::EventReturn OnGameSelected(UI::EventParams &e);
2013-11-24 04:14:44 +00:00
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_view label) : PopupScreen(label) {}
2020-03-01 14:34:35 +00:00
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
const char *tag() const override { return "GridSettings"; }
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);
const float MAX_GAME_GRID_SCALE = 3.0f;
const float MIN_GAME_GRID_SCALE = 0.8f;
2020-03-01 14:34:35 +00:00
};