2015-09-01 05:35:33 +01:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-02-23 21:29:00 +00:00
|
|
|
#include <QFileSystemWatcher>
|
2017-04-30 03:04:39 +01:00
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QLineEdit>
|
2019-05-05 00:52:17 +01:00
|
|
|
#include <QList>
|
2015-09-01 05:35:33 +01:00
|
|
|
#include <QModelIndex>
|
2015-09-07 07:51:57 +01:00
|
|
|
#include <QSettings>
|
2015-09-01 05:35:33 +01:00
|
|
|
#include <QStandardItem>
|
|
|
|
#include <QStandardItemModel>
|
|
|
|
#include <QString>
|
2017-04-30 03:04:39 +01:00
|
|
|
#include <QToolButton>
|
2015-09-01 05:35:33 +01:00
|
|
|
#include <QTreeView>
|
2017-04-30 03:04:39 +01:00
|
|
|
#include <QVBoxLayout>
|
2019-06-07 23:51:58 +01:00
|
|
|
#include <QVector>
|
2015-09-01 05:35:33 +01:00
|
|
|
#include <QWidget>
|
|
|
|
|
2018-09-02 15:53:06 +01:00
|
|
|
#include "common/common_types.h"
|
2019-08-22 13:37:31 +01:00
|
|
|
#include "uisettings.h"
|
2018-09-10 00:09:37 +01:00
|
|
|
#include "yuzu/compatibility_list.h"
|
2018-09-02 15:53:06 +01:00
|
|
|
|
2015-09-01 05:35:33 +01:00
|
|
|
class GameListWorker;
|
2018-07-23 11:43:34 +01:00
|
|
|
class GameListSearchField;
|
2019-05-01 22:21:04 +01:00
|
|
|
class GameListDir;
|
2018-08-31 17:21:34 +01:00
|
|
|
class GMainWindow;
|
2021-06-08 01:22:39 +01:00
|
|
|
enum class StartGameType;
|
2018-08-31 17:21:34 +01:00
|
|
|
|
|
|
|
namespace FileSys {
|
2019-03-04 17:40:53 +00:00
|
|
|
class ManualContentProvider;
|
2018-08-31 17:21:34 +01:00
|
|
|
class VfsFilesystem;
|
2019-03-04 17:40:53 +00:00
|
|
|
} // namespace FileSys
|
2015-09-01 05:35:33 +01:00
|
|
|
|
2018-09-20 03:09:23 +01:00
|
|
|
enum class GameListOpenTarget {
|
|
|
|
SaveData,
|
|
|
|
ModData,
|
|
|
|
};
|
2018-08-21 05:46:40 +01:00
|
|
|
|
2020-07-17 10:20:27 +01:00
|
|
|
enum class GameListRemoveTarget {
|
2021-07-11 19:39:13 +01:00
|
|
|
GlShaderCache,
|
|
|
|
VkShaderCache,
|
|
|
|
AllShaderCache,
|
2020-07-17 10:20:27 +01:00
|
|
|
CustomConfiguration,
|
|
|
|
};
|
|
|
|
|
2021-06-14 22:13:08 +01:00
|
|
|
enum class DumpRomFSTarget {
|
|
|
|
Normal,
|
|
|
|
SDMC,
|
|
|
|
};
|
|
|
|
|
2020-07-17 10:20:27 +01:00
|
|
|
enum class InstalledEntryType {
|
|
|
|
Game,
|
|
|
|
Update,
|
|
|
|
AddOnContent,
|
|
|
|
};
|
|
|
|
|
2015-09-01 05:35:33 +01:00
|
|
|
class GameList : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
COLUMN_NAME,
|
2018-08-29 14:42:53 +01:00
|
|
|
COLUMN_COMPATIBILITY,
|
2018-08-26 00:06:16 +01:00
|
|
|
COLUMN_ADD_ONS,
|
2016-04-13 22:04:05 +01:00
|
|
|
COLUMN_FILE_TYPE,
|
2015-09-01 05:35:33 +01:00
|
|
|
COLUMN_SIZE,
|
|
|
|
COLUMN_COUNT, // Number of columns
|
|
|
|
};
|
|
|
|
|
2019-03-04 17:40:53 +00:00
|
|
|
explicit GameList(std::shared_ptr<FileSys::VfsFilesystem> vfs,
|
2021-07-30 14:32:26 +01:00
|
|
|
FileSys::ManualContentProvider* provider, Core::System& system_,
|
|
|
|
GMainWindow* parent = nullptr);
|
2015-09-01 05:35:33 +01:00
|
|
|
~GameList() override;
|
|
|
|
|
2020-09-23 16:28:08 +01:00
|
|
|
QString GetLastFilterResultItem() const;
|
|
|
|
void ClearFilter();
|
|
|
|
void SetFilterFocus();
|
|
|
|
void SetFilterVisible(bool visibility);
|
|
|
|
bool IsEmpty() const;
|
2017-04-30 03:04:39 +01:00
|
|
|
|
2018-08-29 14:42:53 +01:00
|
|
|
void LoadCompatibilityList();
|
2019-06-07 23:51:58 +01:00
|
|
|
void PopulateAsync(QVector<UISettings::GameDir>& game_dirs);
|
2015-09-01 05:35:33 +01:00
|
|
|
|
2016-01-24 20:23:55 +00:00
|
|
|
void SaveInterfaceLayout();
|
|
|
|
void LoadInterfaceLayout();
|
2015-09-07 07:51:57 +01:00
|
|
|
|
2017-02-12 20:28:56 +00:00
|
|
|
static const QStringList supported_file_extensions;
|
|
|
|
|
2015-09-01 05:35:33 +01:00
|
|
|
signals:
|
2021-07-20 06:10:05 +01:00
|
|
|
void BootGame(const QString& game_path, u64 program_id, std::size_t program_index,
|
|
|
|
StartGameType type);
|
|
|
|
void GameChosen(const QString& game_path, const u64 title_id = 0);
|
2015-09-01 05:35:33 +01:00
|
|
|
void ShouldCancelWorker();
|
2020-07-19 12:14:46 +01:00
|
|
|
void OpenFolderRequested(u64 program_id, GameListOpenTarget target,
|
|
|
|
const std::string& game_path);
|
2019-02-08 08:05:51 +00:00
|
|
|
void OpenTransferableShaderCacheRequested(u64 program_id);
|
2020-07-17 10:20:27 +01:00
|
|
|
void RemoveInstalledEntryRequested(u64 program_id, InstalledEntryType type);
|
2021-05-26 01:06:06 +01:00
|
|
|
void RemoveFileRequested(u64 program_id, GameListRemoveTarget target,
|
2021-06-02 20:05:45 +01:00
|
|
|
const std::string& game_path);
|
2021-06-14 22:13:08 +01:00
|
|
|
void DumpRomFSRequested(u64 program_id, const std::string& game_path, DumpRomFSTarget target);
|
2018-09-20 03:09:23 +01:00
|
|
|
void CopyTIDRequested(u64 program_id);
|
2018-09-10 00:35:05 +01:00
|
|
|
void NavigateToGamedbEntryRequested(u64 program_id,
|
|
|
|
const CompatibilityList& compatibility_list);
|
2018-12-04 18:34:46 +00:00
|
|
|
void OpenPerGameGeneralRequested(const std::string& file);
|
2019-05-03 18:21:57 +01:00
|
|
|
void OpenDirectory(const QString& directory);
|
2019-05-01 22:21:04 +01:00
|
|
|
void AddDirectory();
|
|
|
|
void ShowList(bool show);
|
2015-09-01 05:35:33 +01:00
|
|
|
|
2017-04-30 03:04:39 +01:00
|
|
|
private slots:
|
2020-09-23 16:28:08 +01:00
|
|
|
void OnItemExpanded(const QModelIndex& item);
|
|
|
|
void OnTextChanged(const QString& new_text);
|
|
|
|
void OnFilterCloseClicked();
|
|
|
|
void OnUpdateThemedIcons();
|
2017-04-30 03:04:39 +01:00
|
|
|
|
2015-09-01 05:35:33 +01:00
|
|
|
private:
|
2019-05-01 22:21:04 +01:00
|
|
|
void AddDirEntry(GameListDir* entry_items);
|
|
|
|
void AddEntry(const QList<QStandardItem*>& entry_items, GameListDir* parent);
|
2016-12-11 11:17:09 +00:00
|
|
|
void ValidateEntry(const QModelIndex& item);
|
2020-09-23 16:20:10 +01:00
|
|
|
void DonePopulating(const QStringList& watch_list);
|
2016-12-11 11:17:09 +00:00
|
|
|
|
2017-02-23 21:29:00 +00:00
|
|
|
void RefreshGameDirectory();
|
2016-12-15 09:55:03 +00:00
|
|
|
|
2021-04-10 10:09:01 +01:00
|
|
|
void ToggleFavorite(u64 program_id);
|
|
|
|
void AddFavorite(u64 program_id);
|
|
|
|
void RemoveFavorite(u64 program_id);
|
|
|
|
|
2019-05-01 22:21:04 +01:00
|
|
|
void PopupContextMenu(const QPoint& menu_location);
|
2020-09-23 16:20:10 +01:00
|
|
|
void AddGamePopup(QMenu& context_menu, u64 program_id, const std::string& path);
|
2019-05-01 22:21:04 +01:00
|
|
|
void AddCustomDirPopup(QMenu& context_menu, QModelIndex selected);
|
|
|
|
void AddPermDirPopup(QMenu& context_menu, QModelIndex selected);
|
2021-04-10 10:09:01 +01:00
|
|
|
void AddFavoritesPopup(QMenu& context_menu);
|
2019-05-01 22:21:04 +01:00
|
|
|
|
2018-08-31 17:21:34 +01:00
|
|
|
std::shared_ptr<FileSys::VfsFilesystem> vfs;
|
2019-03-04 17:40:53 +00:00
|
|
|
FileSys::ManualContentProvider* provider;
|
2018-07-23 11:43:34 +01:00
|
|
|
GameListSearchField* search_field;
|
2017-04-30 03:04:39 +01:00
|
|
|
GMainWindow* main_window = nullptr;
|
|
|
|
QVBoxLayout* layout = nullptr;
|
2015-09-01 05:35:33 +01:00
|
|
|
QTreeView* tree_view = nullptr;
|
|
|
|
QStandardItemModel* item_model = nullptr;
|
|
|
|
GameListWorker* current_worker = nullptr;
|
2017-04-18 03:53:40 +01:00
|
|
|
QFileSystemWatcher* watcher = nullptr;
|
2018-09-10 00:09:37 +01:00
|
|
|
CompatibilityList compatibility_list;
|
2018-07-23 11:43:34 +01:00
|
|
|
|
|
|
|
friend class GameListSearchField;
|
2021-07-30 14:32:26 +01:00
|
|
|
|
|
|
|
Core::System& system;
|
2015-09-01 05:35:33 +01:00
|
|
|
};
|
2018-08-21 05:46:40 +01:00
|
|
|
|
2019-05-01 22:21:04 +01:00
|
|
|
class GameListPlaceholder : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit GameListPlaceholder(GMainWindow* parent = nullptr);
|
|
|
|
~GameListPlaceholder();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void AddDirectory();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onUpdateThemedIcons();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void mouseDoubleClickEvent(QMouseEvent* event) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
QVBoxLayout* layout = nullptr;
|
|
|
|
QLabel* image = nullptr;
|
|
|
|
QLabel* text = nullptr;
|
|
|
|
};
|