2018-09-07 20:08:08 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <QDir>
|
|
|
|
#include <QFileInfo>
|
|
|
|
|
|
|
|
#include "common/common_paths.h"
|
|
|
|
#include "common/file_util.h"
|
2019-03-04 17:40:53 +00:00
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/file_sys/card_image.h"
|
2018-09-07 20:08:08 +00:00
|
|
|
#include "core/file_sys/content_archive.h"
|
|
|
|
#include "core/file_sys/control_metadata.h"
|
|
|
|
#include "core/file_sys/mode.h"
|
|
|
|
#include "core/file_sys/nca_metadata.h"
|
|
|
|
#include "core/file_sys/patch_manager.h"
|
|
|
|
#include "core/file_sys/registered_cache.h"
|
2019-03-04 17:40:53 +00:00
|
|
|
#include "core/file_sys/submission_package.h"
|
2018-09-07 20:08:08 +00:00
|
|
|
#include "core/hle/service/filesystem/filesystem.h"
|
|
|
|
#include "core/loader/loader.h"
|
2018-09-09 23:09:37 +00:00
|
|
|
#include "yuzu/compatibility_list.h"
|
2018-09-07 20:08:08 +00:00
|
|
|
#include "yuzu/game_list.h"
|
|
|
|
#include "yuzu/game_list_p.h"
|
|
|
|
#include "yuzu/game_list_worker.h"
|
|
|
|
#include "yuzu/ui_settings.h"
|
|
|
|
|
|
|
|
namespace {
|
2018-10-09 18:22:31 +00:00
|
|
|
void GetMetadataFromControlNCA(const FileSys::PatchManager& patch_manager, const FileSys::NCA& nca,
|
|
|
|
std::vector<u8>& icon, std::string& name) {
|
2018-09-07 20:08:08 +00:00
|
|
|
auto [nacp, icon_file] = patch_manager.ParseControlNCA(nca);
|
|
|
|
if (icon_file != nullptr)
|
|
|
|
icon = icon_file->ReadAllBytes();
|
|
|
|
if (nacp != nullptr)
|
|
|
|
name = nacp->GetApplicationName();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HasSupportedFileExtension(const std::string& file_name) {
|
|
|
|
const QFileInfo file = QFileInfo(QString::fromStdString(file_name));
|
|
|
|
return GameList::supported_file_extensions.contains(file.suffix(), Qt::CaseInsensitive);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsExtractedNCAMain(const std::string& file_name) {
|
2019-05-20 19:07:56 +00:00
|
|
|
return QFileInfo(QString::fromStdString(file_name)).fileName() == QStringLiteral("main");
|
2018-09-07 20:08:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString FormatGameName(const std::string& physical_name) {
|
|
|
|
const QString physical_name_as_qstring = QString::fromStdString(physical_name);
|
|
|
|
const QFileInfo file_info(physical_name_as_qstring);
|
|
|
|
|
|
|
|
if (IsExtractedNCAMain(physical_name)) {
|
|
|
|
return file_info.dir().path();
|
|
|
|
}
|
|
|
|
|
|
|
|
return physical_name_as_qstring;
|
|
|
|
}
|
|
|
|
|
2018-09-25 13:21:06 +00:00
|
|
|
QString FormatPatchNameVersions(const FileSys::PatchManager& patch_manager,
|
|
|
|
Loader::AppLoader& loader, bool updatable = true) {
|
2018-09-07 20:08:08 +00:00
|
|
|
QString out;
|
2018-09-25 13:21:06 +00:00
|
|
|
FileSys::VirtualFile update_raw;
|
|
|
|
loader.ReadUpdateRaw(update_raw);
|
|
|
|
for (const auto& kv : patch_manager.GetPatchVersionNames(update_raw)) {
|
2018-12-04 18:34:46 +00:00
|
|
|
const bool is_update = kv.first == "Update" || kv.first == "[D] Update";
|
2018-10-24 15:25:55 +00:00
|
|
|
if (!updatable && is_update) {
|
2018-09-07 20:08:08 +00:00
|
|
|
continue;
|
2018-10-24 15:25:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const QString type = QString::fromStdString(kv.first);
|
2018-09-07 20:08:08 +00:00
|
|
|
|
|
|
|
if (kv.second.empty()) {
|
2018-10-24 15:25:55 +00:00
|
|
|
out.append(QStringLiteral("%1\n").arg(type));
|
2018-09-07 20:08:08 +00:00
|
|
|
} else {
|
2018-09-25 18:07:13 +00:00
|
|
|
auto ver = kv.second;
|
|
|
|
|
|
|
|
// Display container name for packed updates
|
2018-10-24 15:25:55 +00:00
|
|
|
if (is_update && ver == "PACKED") {
|
2018-09-25 18:07:13 +00:00
|
|
|
ver = Loader::GetFileTypeString(loader.GetFileType());
|
2018-10-24 15:25:55 +00:00
|
|
|
}
|
2018-09-25 18:07:13 +00:00
|
|
|
|
2018-10-24 15:25:55 +00:00
|
|
|
out.append(QStringLiteral("%1 (%2)\n").arg(type, QString::fromStdString(ver)));
|
2018-09-07 20:08:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
out.chop(1);
|
|
|
|
return out;
|
|
|
|
}
|
2018-12-02 04:23:02 +00:00
|
|
|
|
|
|
|
QList<QStandardItem*> MakeGameListEntry(const std::string& path, const std::string& name,
|
|
|
|
const std::vector<u8>& icon, Loader::AppLoader& loader,
|
|
|
|
u64 program_id, const CompatibilityList& compatibility_list,
|
|
|
|
const FileSys::PatchManager& patch) {
|
|
|
|
const auto it = FindMatchingCompatibilityEntry(compatibility_list, program_id);
|
|
|
|
|
|
|
|
// The game list uses this as compatibility number for untested games
|
2019-05-20 19:07:56 +00:00
|
|
|
QString compatibility{QStringLiteral("99")};
|
2018-12-02 04:23:02 +00:00
|
|
|
if (it != compatibility_list.end()) {
|
|
|
|
compatibility = it->second.first;
|
|
|
|
}
|
|
|
|
|
2018-12-05 22:47:03 +00:00
|
|
|
const auto file_type = loader.GetFileType();
|
|
|
|
const auto file_type_string = QString::fromStdString(Loader::GetFileTypeString(file_type));
|
|
|
|
|
2018-12-02 04:23:02 +00:00
|
|
|
QList<QStandardItem*> list{
|
2018-12-05 22:47:03 +00:00
|
|
|
new GameListItemPath(FormatGameName(path), icon, QString::fromStdString(name),
|
|
|
|
file_type_string, program_id),
|
2018-12-02 04:23:02 +00:00
|
|
|
new GameListItemCompat(compatibility),
|
2018-12-05 22:47:03 +00:00
|
|
|
new GameListItem(file_type_string),
|
2018-12-02 04:23:02 +00:00
|
|
|
new GameListItemSize(FileUtil::GetSize(path)),
|
|
|
|
};
|
|
|
|
|
|
|
|
if (UISettings::values.show_add_ons) {
|
|
|
|
list.insert(
|
|
|
|
2, new GameListItem(FormatPatchNameVersions(patch, loader, loader.IsRomFSUpdatable())));
|
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
2018-09-07 20:08:08 +00:00
|
|
|
} // Anonymous namespace
|
|
|
|
|
2019-03-04 17:40:53 +00:00
|
|
|
GameListWorker::GameListWorker(FileSys::VirtualFilesystem vfs,
|
|
|
|
FileSys::ManualContentProvider* provider, QString dir_path,
|
|
|
|
bool deep_scan, const CompatibilityList& compatibility_list)
|
|
|
|
: vfs(std::move(vfs)), provider(provider), dir_path(std::move(dir_path)), deep_scan(deep_scan),
|
2018-09-07 20:08:08 +00:00
|
|
|
compatibility_list(compatibility_list) {}
|
|
|
|
|
|
|
|
GameListWorker::~GameListWorker() = default;
|
|
|
|
|
2019-03-04 17:40:53 +00:00
|
|
|
void GameListWorker::AddTitlesToGameList() {
|
|
|
|
const auto& cache = dynamic_cast<FileSys::ContentProviderUnion&>(
|
|
|
|
Core::System::GetInstance().GetContentProvider());
|
|
|
|
const auto installed_games = cache.ListEntriesFilterOrigin(
|
|
|
|
std::nullopt, FileSys::TitleType::Application, FileSys::ContentRecordType::Program);
|
2018-09-07 20:08:08 +00:00
|
|
|
|
2019-03-04 17:40:53 +00:00
|
|
|
for (const auto& [slot, game] : installed_games) {
|
|
|
|
if (slot == FileSys::ContentProviderUnionSlot::FrontendManual)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const auto file = cache.GetEntryUnparsed(game.title_id, game.type);
|
2018-09-07 20:08:08 +00:00
|
|
|
std::unique_ptr<Loader::AppLoader> loader = Loader::GetLoader(file);
|
|
|
|
if (!loader)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
std::vector<u8> icon;
|
|
|
|
std::string name;
|
|
|
|
u64 program_id = 0;
|
|
|
|
loader->ReadProgramId(program_id);
|
|
|
|
|
|
|
|
const FileSys::PatchManager patch{program_id};
|
2018-12-02 01:32:38 +00:00
|
|
|
const auto control = cache.GetEntry(game.title_id, FileSys::ContentRecordType::Control);
|
2018-09-07 20:08:08 +00:00
|
|
|
if (control != nullptr)
|
2018-10-09 18:22:31 +00:00
|
|
|
GetMetadataFromControlNCA(patch, *control, icon, name);
|
2018-09-07 20:08:08 +00:00
|
|
|
|
2018-12-02 04:23:02 +00:00
|
|
|
emit EntryReady(MakeGameListEntry(file->GetFullPath(), name, icon, *loader, program_id,
|
|
|
|
compatibility_list, patch));
|
2018-09-07 20:08:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-04 17:40:53 +00:00
|
|
|
void GameListWorker::ScanFileSystem(ScanTarget target, const std::string& dir_path,
|
|
|
|
unsigned int recursion) {
|
|
|
|
const auto callback = [this, target, recursion](u64* num_entries_out,
|
|
|
|
const std::string& directory,
|
|
|
|
const std::string& virtual_name) -> bool {
|
2018-12-04 23:39:32 +00:00
|
|
|
if (stop_processing) {
|
|
|
|
// Breaks the callback loop.
|
|
|
|
return false;
|
|
|
|
}
|
2018-09-07 20:08:08 +00:00
|
|
|
|
2018-12-04 23:39:32 +00:00
|
|
|
const std::string physical_name = directory + DIR_SEP + virtual_name;
|
|
|
|
const bool is_dir = FileUtil::IsDirectory(physical_name);
|
2018-09-07 20:08:08 +00:00
|
|
|
if (!is_dir &&
|
|
|
|
(HasSupportedFileExtension(physical_name) || IsExtractedNCAMain(physical_name))) {
|
2019-03-04 17:40:53 +00:00
|
|
|
const auto file = vfs->OpenFile(physical_name, FileSys::Mode::Read);
|
|
|
|
auto loader = Loader::GetLoader(file);
|
2018-12-05 22:58:11 +00:00
|
|
|
if (!loader) {
|
2018-09-07 20:08:08 +00:00
|
|
|
return true;
|
2018-12-05 22:58:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const auto file_type = loader->GetFileType();
|
|
|
|
if ((file_type == Loader::FileType::Unknown || file_type == Loader::FileType::Error) &&
|
|
|
|
!UISettings::values.show_unknown) {
|
|
|
|
return true;
|
|
|
|
}
|
2018-09-07 20:08:08 +00:00
|
|
|
|
|
|
|
u64 program_id = 0;
|
|
|
|
const auto res2 = loader->ReadProgramId(program_id);
|
|
|
|
|
2019-03-04 17:40:53 +00:00
|
|
|
if (target == ScanTarget::FillManualContentProvider) {
|
|
|
|
if (res2 == Loader::ResultStatus::Success && file_type == Loader::FileType::NCA) {
|
|
|
|
provider->AddEntry(FileSys::TitleType::Application,
|
|
|
|
FileSys::GetCRTypeFromNCAType(FileSys::NCA{file}.GetType()),
|
|
|
|
program_id, file);
|
|
|
|
} else if (res2 == Loader::ResultStatus::Success &&
|
|
|
|
(file_type == Loader::FileType::XCI ||
|
|
|
|
file_type == Loader::FileType::NSP)) {
|
|
|
|
const auto nsp = file_type == Loader::FileType::NSP
|
|
|
|
? std::make_shared<FileSys::NSP>(file)
|
|
|
|
: FileSys::XCI{file}.GetSecurePartitionNSP();
|
|
|
|
for (const auto& title : nsp->GetNCAs()) {
|
|
|
|
for (const auto& entry : title.second) {
|
|
|
|
provider->AddEntry(entry.first.first, entry.first.second, title.first,
|
|
|
|
entry.second->GetBaseFile());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
std::vector<u8> icon;
|
|
|
|
const auto res1 = loader->ReadIcon(icon);
|
2018-09-07 20:08:08 +00:00
|
|
|
|
2019-03-04 17:40:53 +00:00
|
|
|
std::string name = " ";
|
|
|
|
const auto res3 = loader->ReadTitle(name);
|
2018-09-07 20:08:08 +00:00
|
|
|
|
2019-03-04 17:40:53 +00:00
|
|
|
const FileSys::PatchManager patch{program_id};
|
2018-09-07 20:08:08 +00:00
|
|
|
|
2019-03-04 17:40:53 +00:00
|
|
|
emit EntryReady(MakeGameListEntry(physical_name, name, icon, *loader, program_id,
|
|
|
|
compatibility_list, patch));
|
|
|
|
}
|
2018-09-07 20:08:08 +00:00
|
|
|
} else if (is_dir && recursion > 0) {
|
|
|
|
watch_list.append(QString::fromStdString(physical_name));
|
2019-03-04 17:40:53 +00:00
|
|
|
ScanFileSystem(target, physical_name, recursion - 1);
|
2018-09-07 20:08:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
FileUtil::ForeachDirectoryEntry(nullptr, dir_path, callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GameListWorker::run() {
|
|
|
|
stop_processing = false;
|
|
|
|
watch_list.append(dir_path);
|
2019-03-04 17:40:53 +00:00
|
|
|
provider->ClearAllEntries();
|
|
|
|
ScanFileSystem(ScanTarget::FillManualContentProvider, dir_path.toStdString(),
|
|
|
|
deep_scan ? 256 : 0);
|
|
|
|
AddTitlesToGameList();
|
|
|
|
ScanFileSystem(ScanTarget::PopulateGameList, dir_path.toStdString(), deep_scan ? 256 : 0);
|
2018-09-07 20:08:08 +00:00
|
|
|
emit Finished(watch_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GameListWorker::Cancel() {
|
|
|
|
this->disconnect();
|
|
|
|
stop_processing = true;
|
|
|
|
}
|