2018-06-21 08:16:23 -07:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
2018-08-14 19:37:12 -07:00
|
|
|
#include "core/file_sys/vfs.h"
|
2018-06-21 08:16:23 -07:00
|
|
|
#include "core/loader/loader.h"
|
2018-08-14 19:37:12 -07:00
|
|
|
|
2020-09-16 05:19:25 -07:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2018-08-14 19:37:12 -07:00
|
|
|
namespace FileSys {
|
|
|
|
class NCA;
|
|
|
|
}
|
2018-06-21 08:16:23 -07:00
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
|
2018-08-14 19:37:12 -07:00
|
|
|
class AppLoader_DeconstructedRomDirectory;
|
|
|
|
|
2018-06-21 08:16:23 -07:00
|
|
|
/// Loads an NCA file
|
|
|
|
class AppLoader_NCA final : public AppLoader {
|
|
|
|
public:
|
2018-07-18 18:07:11 -07:00
|
|
|
explicit AppLoader_NCA(FileSys::VirtualFile file);
|
2018-08-14 19:37:12 -07:00
|
|
|
~AppLoader_NCA() override;
|
2018-06-21 08:16:23 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the type of the file
|
2018-07-18 18:07:11 -07:00
|
|
|
* @param file std::shared_ptr<VfsFile> open file
|
2018-06-21 08:16:23 -07:00
|
|
|
* @return FileType found, or FileType::Error if this loader doesn't know it
|
|
|
|
*/
|
2018-07-18 18:07:11 -07:00
|
|
|
static FileType IdentifyType(const FileSys::VirtualFile& file);
|
2018-06-21 08:16:23 -07:00
|
|
|
|
2018-12-05 14:42:41 -08:00
|
|
|
FileType GetFileType() const override {
|
2018-07-18 18:07:11 -07:00
|
|
|
return IdentifyType(file);
|
2018-06-21 08:16:23 -07:00
|
|
|
}
|
|
|
|
|
2020-09-16 05:19:25 -07:00
|
|
|
LoadResult Load(Kernel::Process& process, Core::System& system) override;
|
2018-06-21 08:16:23 -07:00
|
|
|
|
2018-07-18 18:07:11 -07:00
|
|
|
ResultStatus ReadRomFS(FileSys::VirtualFile& dir) override;
|
2018-08-28 19:37:42 -07:00
|
|
|
u64 ReadRomFSIVFCOffset() const override;
|
2018-07-28 09:32:16 -07:00
|
|
|
ResultStatus ReadProgramId(u64& out_program_id) override;
|
2018-07-07 20:24:51 -07:00
|
|
|
|
2019-01-15 12:56:52 -08:00
|
|
|
ResultStatus ReadBanner(std::vector<u8>& buffer) override;
|
|
|
|
ResultStatus ReadLogo(std::vector<u8>& buffer) override;
|
|
|
|
|
2019-05-26 08:40:41 -07:00
|
|
|
ResultStatus ReadNSOModules(Modules& modules) override;
|
|
|
|
|
2018-06-21 08:16:23 -07:00
|
|
|
private:
|
2018-07-18 18:07:11 -07:00
|
|
|
std::unique_ptr<FileSys::NCA> nca;
|
2018-08-05 15:27:05 -07:00
|
|
|
std::unique_ptr<AppLoader_DeconstructedRomDirectory> directory_loader;
|
2018-06-21 08:16:23 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Loader
|