2018-07-28 03:55:23 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-07-29 23:00:09 +00:00
|
|
|
#include <memory>
|
|
|
|
#include "common/common_types.h"
|
2018-08-15 02:27:01 +00:00
|
|
|
#include "core/file_sys/vfs.h"
|
2018-07-29 23:00:09 +00:00
|
|
|
#include "core/loader/loader.h"
|
2018-08-15 02:27:01 +00:00
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
class NACP;
|
|
|
|
class XCI;
|
|
|
|
} // namespace FileSys
|
2018-07-28 03:55:23 +00:00
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
|
2018-08-15 02:27:01 +00:00
|
|
|
class AppLoader_NCA;
|
|
|
|
|
2018-07-28 03:55:23 +00:00
|
|
|
/// Loads an XCI file
|
|
|
|
class AppLoader_XCI final : public AppLoader {
|
|
|
|
public:
|
|
|
|
explicit AppLoader_XCI(FileSys::VirtualFile file);
|
2018-07-29 01:39:42 +00:00
|
|
|
~AppLoader_XCI();
|
2018-07-28 03:55:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the type of the file
|
|
|
|
* @param file std::shared_ptr<VfsFile> open file
|
|
|
|
* @return FileType found, or FileType::Error if this loader doesn't know it
|
|
|
|
*/
|
|
|
|
static FileType IdentifyType(const FileSys::VirtualFile& file);
|
|
|
|
|
|
|
|
FileType GetFileType() override {
|
|
|
|
return IdentifyType(file);
|
|
|
|
}
|
|
|
|
|
2018-09-29 19:57:40 +00:00
|
|
|
ResultStatus Load(Kernel::Process& process) override;
|
2018-07-28 03:55:23 +00:00
|
|
|
|
2018-09-25 13:17:14 +00:00
|
|
|
ResultStatus ReadRomFS(FileSys::VirtualFile& file) override;
|
|
|
|
u64 ReadRomFSIVFCOffset() const override;
|
2018-09-25 13:18:55 +00:00
|
|
|
ResultStatus ReadUpdateRaw(FileSys::VirtualFile& file) override;
|
2018-07-28 03:55:23 +00:00
|
|
|
ResultStatus ReadProgramId(u64& out_program_id) override;
|
2018-08-07 03:13:37 +00:00
|
|
|
ResultStatus ReadIcon(std::vector<u8>& buffer) override;
|
|
|
|
ResultStatus ReadTitle(std::string& title) override;
|
2018-07-28 03:55:23 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::unique_ptr<FileSys::XCI> xci;
|
|
|
|
std::unique_ptr<AppLoader_NCA> nca_loader;
|
2018-08-07 03:13:37 +00:00
|
|
|
|
|
|
|
FileSys::VirtualFile icon_file;
|
|
|
|
std::shared_ptr<FileSys::NACP> nacp_file;
|
2018-07-28 03:55:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Loader
|