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-07-28 03:55:23 +00:00
|
|
|
#include "core/file_sys/card_image.h"
|
2018-07-29 23:00:09 +00:00
|
|
|
#include "core/loader/loader.h"
|
2018-07-28 03:55:23 +00:00
|
|
|
#include "core/loader/nca.h"
|
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
|
|
|
|
/// 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);
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultStatus Load(Kernel::SharedPtr<Kernel::Process>& process) override;
|
|
|
|
|
|
|
|
ResultStatus ReadRomFS(FileSys::VirtualFile& dir) override;
|
|
|
|
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:
|
|
|
|
FileSys::ProgramMetadata metadata;
|
|
|
|
|
|
|
|
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
|