chore: make yuzu REUSE compliant
[REUSE] is a specification that aims at making file copyright
information consistent, so that it can be both human and machine
readable. It basically requires that all files have a header containing
copyright and licensing information. When this isn't possible, like
when dealing with binary assets, generated files or embedded third-party
dependencies, it is permitted to insert copyright information in the
`.reuse/dep5` file.
Oh, and it also requires that all the licenses used in the project are
present in the `LICENSES` folder, that's why the diff is so huge.
This can be done automatically with `reuse download --all`.
The `reuse` tool also contains a handy subcommand that analyzes the
project and tells whether or not the project is (still) compliant,
`reuse lint`.
Following REUSE has a few advantages over the current approach:
- Copyright information is easy to access for users / downstream
- Files like `dist/license.md` do not need to exist anymore, as
`.reuse/dep5` is used instead
- `reuse lint` makes it easy to ensure that copyright information of
files like binary assets / images is always accurate and up to date
To add copyright information of files that didn't have it I looked up
who committed what and when, for each file. As yuzu contributors do not
have to sign a CLA or similar I couldn't assume that copyright ownership
was of the "yuzu Emulator Project", so I used the name and/or email of
the commit author instead.
[REUSE]: https://reuse.software
Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
2022-05-15 02:06:02 +02:00
|
|
|
// SPDX-FileCopyrightText: 2015 Citra Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2015-09-01 06:35:33 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-02-23 22:29:00 +01:00
|
|
|
#include <QFileSystemWatcher>
|
2017-04-30 04:04:39 +02:00
|
|
|
#include <QLabel>
|
|
|
|
#include <QLineEdit>
|
2019-05-05 01:52:17 +02:00
|
|
|
#include <QList>
|
2015-09-01 06:35:33 +02:00
|
|
|
#include <QStandardItemModel>
|
|
|
|
#include <QString>
|
|
|
|
#include <QTreeView>
|
2017-04-30 04:04:39 +02:00
|
|
|
#include <QVBoxLayout>
|
2019-06-08 00:51:58 +02:00
|
|
|
#include <QVector>
|
2015-09-01 06:35:33 +02:00
|
|
|
#include <QWidget>
|
|
|
|
|
2018-09-02 16:53:06 +02:00
|
|
|
#include "common/common_types.h"
|
2021-12-25 20:27:52 +01:00
|
|
|
#include "core/core.h"
|
2019-08-22 14:37:31 +02:00
|
|
|
#include "uisettings.h"
|
2018-09-10 01:09:37 +02:00
|
|
|
#include "yuzu/compatibility_list.h"
|
2018-09-02 16:53:06 +02:00
|
|
|
|
2021-12-25 20:27:52 +01:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2021-11-28 06:26:51 +01:00
|
|
|
class ControllerNavigation;
|
2015-09-01 06:35:33 +02:00
|
|
|
class GameListWorker;
|
2018-07-23 12:43:34 +02:00
|
|
|
class GameListSearchField;
|
2019-05-01 23:21:04 +02:00
|
|
|
class GameListDir;
|
2018-08-31 18:21:34 +02:00
|
|
|
class GMainWindow;
|
2021-06-08 02:22:39 +02:00
|
|
|
enum class StartGameType;
|
2018-08-31 18:21:34 +02:00
|
|
|
|
|
|
|
namespace FileSys {
|
2019-03-04 18:40:53 +01:00
|
|
|
class ManualContentProvider;
|
2018-08-31 18:21:34 +02:00
|
|
|
class VfsFilesystem;
|
2019-03-04 18:40:53 +01:00
|
|
|
} // namespace FileSys
|
2015-09-01 06:35:33 +02:00
|
|
|
|
2018-09-20 04:09:23 +02:00
|
|
|
enum class GameListOpenTarget {
|
|
|
|
SaveData,
|
|
|
|
ModData,
|
|
|
|
};
|
2018-08-21 06:46:40 +02:00
|
|
|
|
2020-07-17 11:20:27 +02:00
|
|
|
enum class GameListRemoveTarget {
|
2021-07-11 20:39:13 +02:00
|
|
|
GlShaderCache,
|
|
|
|
VkShaderCache,
|
|
|
|
AllShaderCache,
|
2020-07-17 11:20:27 +02:00
|
|
|
CustomConfiguration,
|
|
|
|
};
|
|
|
|
|
2021-06-14 23:13:08 +02:00
|
|
|
enum class DumpRomFSTarget {
|
|
|
|
Normal,
|
|
|
|
SDMC,
|
|
|
|
};
|
|
|
|
|
2020-07-17 11:20:27 +02:00
|
|
|
enum class InstalledEntryType {
|
|
|
|
Game,
|
|
|
|
Update,
|
|
|
|
AddOnContent,
|
|
|
|
};
|
|
|
|
|
2015-09-01 06:35:33 +02:00
|
|
|
class GameList : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
COLUMN_NAME,
|
2018-08-29 15:42:53 +02:00
|
|
|
COLUMN_COMPATIBILITY,
|
2018-08-26 01:06:16 +02:00
|
|
|
COLUMN_ADD_ONS,
|
2016-04-13 23:04:05 +02:00
|
|
|
COLUMN_FILE_TYPE,
|
2015-09-01 06:35:33 +02:00
|
|
|
COLUMN_SIZE,
|
|
|
|
COLUMN_COUNT, // Number of columns
|
|
|
|
};
|
|
|
|
|
2022-06-13 22:52:19 +02:00
|
|
|
explicit GameList(std::shared_ptr<FileSys::VfsFilesystem> vfs_,
|
|
|
|
FileSys::ManualContentProvider* provider_, Core::System& system_,
|
2021-07-30 15:32:26 +02:00
|
|
|
GMainWindow* parent = nullptr);
|
2015-09-01 06:35:33 +02:00
|
|
|
~GameList() override;
|
|
|
|
|
2020-09-23 17:28:08 +02:00
|
|
|
QString GetLastFilterResultItem() const;
|
|
|
|
void ClearFilter();
|
|
|
|
void SetFilterFocus();
|
|
|
|
void SetFilterVisible(bool visibility);
|
|
|
|
bool IsEmpty() const;
|
2017-04-30 04:04:39 +02:00
|
|
|
|
2018-08-29 15:42:53 +02:00
|
|
|
void LoadCompatibilityList();
|
2019-06-08 00:51:58 +02:00
|
|
|
void PopulateAsync(QVector<UISettings::GameDir>& game_dirs);
|
2015-09-01 06:35:33 +02:00
|
|
|
|
2016-01-24 21:23:55 +01:00
|
|
|
void SaveInterfaceLayout();
|
|
|
|
void LoadInterfaceLayout();
|
2015-09-07 08:51:57 +02:00
|
|
|
|
2021-12-25 20:27:52 +01:00
|
|
|
QStandardItemModel* GetModel() const;
|
|
|
|
|
2021-11-28 06:26:51 +01:00
|
|
|
/// Disables events from the emulated controller
|
|
|
|
void UnloadController();
|
|
|
|
|
2017-02-12 21:28:56 +01:00
|
|
|
static const QStringList supported_file_extensions;
|
|
|
|
|
2015-09-01 06:35:33 +02:00
|
|
|
signals:
|
2021-07-20 07:10:05 +02: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 06:35:33 +02:00
|
|
|
void ShouldCancelWorker();
|
2020-07-19 13:14:46 +02:00
|
|
|
void OpenFolderRequested(u64 program_id, GameListOpenTarget target,
|
|
|
|
const std::string& game_path);
|
2019-02-08 09:05:51 +01:00
|
|
|
void OpenTransferableShaderCacheRequested(u64 program_id);
|
2020-07-17 11:20:27 +02:00
|
|
|
void RemoveInstalledEntryRequested(u64 program_id, InstalledEntryType type);
|
2021-05-26 02:06:06 +02:00
|
|
|
void RemoveFileRequested(u64 program_id, GameListRemoveTarget target,
|
2021-06-02 21:05:45 +02:00
|
|
|
const std::string& game_path);
|
2021-06-14 23:13:08 +02:00
|
|
|
void DumpRomFSRequested(u64 program_id, const std::string& game_path, DumpRomFSTarget target);
|
2018-09-20 04:09:23 +02:00
|
|
|
void CopyTIDRequested(u64 program_id);
|
2018-09-10 01:35:05 +02:00
|
|
|
void NavigateToGamedbEntryRequested(u64 program_id,
|
|
|
|
const CompatibilityList& compatibility_list);
|
2018-12-04 19:34:46 +01:00
|
|
|
void OpenPerGameGeneralRequested(const std::string& file);
|
2019-05-03 19:21:57 +02:00
|
|
|
void OpenDirectory(const QString& directory);
|
2019-05-01 23:21:04 +02:00
|
|
|
void AddDirectory();
|
|
|
|
void ShowList(bool show);
|
2021-12-25 20:27:52 +01:00
|
|
|
void PopulatingCompleted();
|
2015-09-01 06:35:33 +02:00
|
|
|
|
2017-04-30 04:04:39 +02:00
|
|
|
private slots:
|
2020-09-23 17:28:08 +02:00
|
|
|
void OnItemExpanded(const QModelIndex& item);
|
|
|
|
void OnTextChanged(const QString& new_text);
|
|
|
|
void OnFilterCloseClicked();
|
|
|
|
void OnUpdateThemedIcons();
|
2017-04-30 04:04:39 +02:00
|
|
|
|
2015-09-01 06:35:33 +02:00
|
|
|
private:
|
2019-05-01 23:21:04 +02:00
|
|
|
void AddDirEntry(GameListDir* entry_items);
|
|
|
|
void AddEntry(const QList<QStandardItem*>& entry_items, GameListDir* parent);
|
2016-12-11 12:17:09 +01:00
|
|
|
void ValidateEntry(const QModelIndex& item);
|
2020-09-23 17:20:10 +02:00
|
|
|
void DonePopulating(const QStringList& watch_list);
|
2016-12-11 12:17:09 +01:00
|
|
|
|
2017-02-23 22:29:00 +01:00
|
|
|
void RefreshGameDirectory();
|
2016-12-15 10:55:03 +01:00
|
|
|
|
2021-04-10 11:09:01 +02:00
|
|
|
void ToggleFavorite(u64 program_id);
|
|
|
|
void AddFavorite(u64 program_id);
|
|
|
|
void RemoveFavorite(u64 program_id);
|
|
|
|
|
2019-05-01 23:21:04 +02:00
|
|
|
void PopupContextMenu(const QPoint& menu_location);
|
2020-09-23 17:20:10 +02:00
|
|
|
void AddGamePopup(QMenu& context_menu, u64 program_id, const std::string& path);
|
2019-05-01 23:21:04 +02:00
|
|
|
void AddCustomDirPopup(QMenu& context_menu, QModelIndex selected);
|
|
|
|
void AddPermDirPopup(QMenu& context_menu, QModelIndex selected);
|
2021-04-10 11:09:01 +02:00
|
|
|
void AddFavoritesPopup(QMenu& context_menu);
|
2019-05-01 23:21:04 +02:00
|
|
|
|
2022-08-20 16:49:29 +02:00
|
|
|
void changeEvent(QEvent*) override;
|
|
|
|
void RetranslateUI();
|
|
|
|
|
2018-08-31 18:21:34 +02:00
|
|
|
std::shared_ptr<FileSys::VfsFilesystem> vfs;
|
2019-03-04 18:40:53 +01:00
|
|
|
FileSys::ManualContentProvider* provider;
|
2018-07-23 12:43:34 +02:00
|
|
|
GameListSearchField* search_field;
|
2017-04-30 04:04:39 +02:00
|
|
|
GMainWindow* main_window = nullptr;
|
|
|
|
QVBoxLayout* layout = nullptr;
|
2015-09-01 06:35:33 +02:00
|
|
|
QTreeView* tree_view = nullptr;
|
|
|
|
QStandardItemModel* item_model = nullptr;
|
|
|
|
GameListWorker* current_worker = nullptr;
|
2017-04-18 04:53:40 +02:00
|
|
|
QFileSystemWatcher* watcher = nullptr;
|
2021-11-28 06:26:51 +01:00
|
|
|
ControllerNavigation* controller_navigation = nullptr;
|
2018-09-10 01:09:37 +02:00
|
|
|
CompatibilityList compatibility_list;
|
2018-07-23 12:43:34 +02:00
|
|
|
|
|
|
|
friend class GameListSearchField;
|
2021-07-30 15:32:26 +02:00
|
|
|
|
|
|
|
Core::System& system;
|
2015-09-01 06:35:33 +02:00
|
|
|
};
|
2018-08-21 06:46:40 +02:00
|
|
|
|
2019-05-01 23:21:04 +02: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:
|
2022-06-11 04:17:18 +02:00
|
|
|
void changeEvent(QEvent* event) override;
|
|
|
|
void RetranslateUI();
|
|
|
|
|
2019-05-01 23:21:04 +02:00
|
|
|
QVBoxLayout* layout = nullptr;
|
|
|
|
QLabel* image = nullptr;
|
|
|
|
QLabel* text = nullptr;
|
|
|
|
};
|