2018-06-21 15:16:23 +00: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-15 02:37:12 +00:00
|
|
|
#include "core/file_sys/vfs.h"
|
2018-06-21 15:16:23 +00:00
|
|
|
#include "core/loader/loader.h"
|
2018-08-15 02:37:12 +00:00
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
class NCA;
|
|
|
|
}
|
2018-06-21 15:16:23 +00:00
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
|
2018-08-15 02:37:12 +00:00
|
|
|
class AppLoader_DeconstructedRomDirectory;
|
|
|
|
|
2018-06-21 15:16:23 +00:00
|
|
|
/// Loads an NCA file
|
|
|
|
class AppLoader_NCA final : public AppLoader {
|
|
|
|
public:
|
2018-07-19 01:07:11 +00:00
|
|
|
explicit AppLoader_NCA(FileSys::VirtualFile file);
|
2018-08-15 02:37:12 +00:00
|
|
|
~AppLoader_NCA() override;
|
2018-06-21 15:16:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the type of the file
|
2018-07-19 01:07:11 +00:00
|
|
|
* @param file std::shared_ptr<VfsFile> open file
|
2018-06-21 15:16:23 +00:00
|
|
|
* @return FileType found, or FileType::Error if this loader doesn't know it
|
|
|
|
*/
|
2018-07-19 01:07:11 +00:00
|
|
|
static FileType IdentifyType(const FileSys::VirtualFile& file);
|
2018-06-21 15:16:23 +00:00
|
|
|
|
2018-12-05 22:42:41 +00:00
|
|
|
FileType GetFileType() const override {
|
2018-07-19 01:07:11 +00:00
|
|
|
return IdentifyType(file);
|
2018-06-21 15:16:23 +00:00
|
|
|
}
|
|
|
|
|
2019-04-09 21:03:04 +00:00
|
|
|
LoadResult Load(Kernel::Process& process) override;
|
2018-06-21 15:16:23 +00:00
|
|
|
|
2018-07-19 01:07:11 +00:00
|
|
|
ResultStatus ReadRomFS(FileSys::VirtualFile& dir) override;
|
2018-08-29 02:37:42 +00:00
|
|
|
u64 ReadRomFSIVFCOffset() const override;
|
2018-07-28 16:32:16 +00:00
|
|
|
ResultStatus ReadProgramId(u64& out_program_id) override;
|
2018-07-08 03:24:51 +00:00
|
|
|
|
2019-01-15 20:56:52 +00:00
|
|
|
ResultStatus ReadBanner(std::vector<u8>& buffer) override;
|
|
|
|
ResultStatus ReadLogo(std::vector<u8>& buffer) override;
|
|
|
|
|
2019-05-26 15:40:41 +00:00
|
|
|
ResultStatus ReadNSOModules(Modules& modules) override;
|
|
|
|
|
2018-06-21 15:16:23 +00:00
|
|
|
private:
|
2018-07-19 01:07:11 +00:00
|
|
|
std::unique_ptr<FileSys::NCA> nca;
|
2018-08-05 22:27:05 +00:00
|
|
|
std::unique_ptr<AppLoader_DeconstructedRomDirectory> directory_loader;
|
2018-06-21 15:16:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Loader
|