2015-09-01 04:35:33 +00: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 02:04:39 +00:00
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QLineEdit>
|
2015-09-01 04:35:33 +00:00
|
|
|
#include <QModelIndex>
|
2015-09-07 06:51:57 +00:00
|
|
|
#include <QSettings>
|
2015-09-01 04:35:33 +00:00
|
|
|
#include <QStandardItem>
|
|
|
|
#include <QStandardItemModel>
|
|
|
|
#include <QString>
|
2017-04-30 02:04:39 +00:00
|
|
|
#include <QToolButton>
|
2015-09-01 04:35:33 +00:00
|
|
|
#include <QTreeView>
|
2017-04-30 02:04:39 +00:00
|
|
|
#include <QVBoxLayout>
|
2015-09-01 04:35:33 +00:00
|
|
|
#include <QWidget>
|
|
|
|
|
2018-09-02 14:53:06 +00:00
|
|
|
#include "common/common_types.h"
|
2018-09-09 23:09:37 +00:00
|
|
|
#include "yuzu/compatibility_list.h"
|
2018-09-02 14:53:06 +00:00
|
|
|
|
2015-09-01 04:35:33 +00:00
|
|
|
class GameListWorker;
|
2018-07-23 10:43:34 +00:00
|
|
|
class GameListSearchField;
|
2018-08-31 16:21:34 +00:00
|
|
|
class GMainWindow;
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
class VfsFilesystem;
|
|
|
|
}
|
2015-09-01 04:35:33 +00:00
|
|
|
|
2018-09-20 02:09:23 +00:00
|
|
|
enum class GameListOpenTarget {
|
|
|
|
SaveData,
|
|
|
|
ModData,
|
|
|
|
};
|
2018-08-21 04:46:40 +00:00
|
|
|
|
2015-09-01 04:35:33 +00:00
|
|
|
class GameList : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
COLUMN_NAME,
|
2018-08-29 13:42:53 +00:00
|
|
|
COLUMN_COMPATIBILITY,
|
2018-08-25 23:06:16 +00:00
|
|
|
COLUMN_ADD_ONS,
|
2016-04-13 21:04:05 +00:00
|
|
|
COLUMN_FILE_TYPE,
|
2015-09-01 04:35:33 +00:00
|
|
|
COLUMN_SIZE,
|
|
|
|
COLUMN_COUNT, // Number of columns
|
|
|
|
};
|
|
|
|
|
2018-08-31 16:21:34 +00:00
|
|
|
explicit GameList(std::shared_ptr<FileSys::VfsFilesystem> vfs, GMainWindow* parent = nullptr);
|
2015-09-01 04:35:33 +00:00
|
|
|
~GameList() override;
|
|
|
|
|
2017-04-30 02:04:39 +00:00
|
|
|
void clearFilter();
|
|
|
|
void setFilterFocus();
|
2017-05-02 22:23:20 +00:00
|
|
|
void setFilterVisible(bool visibility);
|
2017-04-30 02:04:39 +00:00
|
|
|
|
2018-08-29 13:42:53 +00:00
|
|
|
void LoadCompatibilityList();
|
2015-09-01 04:35:33 +00:00
|
|
|
void PopulateAsync(const QString& dir_path, bool deep_scan);
|
|
|
|
|
2016-01-24 20:23:55 +00:00
|
|
|
void SaveInterfaceLayout();
|
|
|
|
void LoadInterfaceLayout();
|
2015-09-07 06:51:57 +00:00
|
|
|
|
2017-02-12 20:28:56 +00:00
|
|
|
static const QStringList supported_file_extensions;
|
|
|
|
|
2015-09-01 04:35:33 +00:00
|
|
|
signals:
|
|
|
|
void GameChosen(QString game_path);
|
|
|
|
void ShouldCancelWorker();
|
2018-08-21 04:46:40 +00:00
|
|
|
void OpenFolderRequested(u64 program_id, GameListOpenTarget target);
|
2018-09-20 02:09:23 +00:00
|
|
|
void DumpRomFSRequested(u64 program_id, const std::string& game_path);
|
|
|
|
void CopyTIDRequested(u64 program_id);
|
2018-09-09 23:35:05 +00:00
|
|
|
void NavigateToGamedbEntryRequested(u64 program_id,
|
|
|
|
const CompatibilityList& compatibility_list);
|
2018-12-04 18:34:46 +00:00
|
|
|
void OpenPerGameGeneralRequested(const std::string& file);
|
2015-09-01 04:35:33 +00:00
|
|
|
|
2017-04-30 02:04:39 +00:00
|
|
|
private slots:
|
|
|
|
void onTextChanged(const QString& newText);
|
|
|
|
void onFilterCloseClicked();
|
|
|
|
|
2015-09-01 04:35:33 +00:00
|
|
|
private:
|
2016-12-11 11:17:09 +00:00
|
|
|
void AddEntry(const QList<QStandardItem*>& entry_items);
|
|
|
|
void ValidateEntry(const QModelIndex& item);
|
2017-04-18 02:53:40 +00:00
|
|
|
void DonePopulating(QStringList watch_list);
|
2016-12-11 11:17:09 +00:00
|
|
|
|
2016-12-15 09:55:03 +00:00
|
|
|
void PopupContextMenu(const QPoint& menu_location);
|
2017-02-23 21:29:00 +00:00
|
|
|
void RefreshGameDirectory();
|
2016-12-15 09:55:03 +00:00
|
|
|
|
2018-08-31 16:21:34 +00:00
|
|
|
std::shared_ptr<FileSys::VfsFilesystem> vfs;
|
2018-07-23 10:43:34 +00:00
|
|
|
GameListSearchField* search_field;
|
2017-04-30 02:04:39 +00:00
|
|
|
GMainWindow* main_window = nullptr;
|
|
|
|
QVBoxLayout* layout = nullptr;
|
2015-09-01 04:35:33 +00:00
|
|
|
QTreeView* tree_view = nullptr;
|
|
|
|
QStandardItemModel* item_model = nullptr;
|
|
|
|
GameListWorker* current_worker = nullptr;
|
2017-04-18 02:53:40 +00:00
|
|
|
QFileSystemWatcher* watcher = nullptr;
|
2018-09-09 23:09:37 +00:00
|
|
|
CompatibilityList compatibility_list;
|
2018-07-23 10:43:34 +00:00
|
|
|
|
|
|
|
friend class GameListSearchField;
|
2015-09-01 04:35:33 +00:00
|
|
|
};
|
2018-08-21 04:46:40 +00:00
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(GameListOpenTarget);
|