Files
eden/src/core/loader/nca.h
T

43 lines
1.0 KiB
C++
Raw Normal View History

2018-06-21 11:16:23 -04:00
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <string>
#include "common/common_types.h"
2018-07-06 10:51:32 -04:00
#include "core/file_sys/content_archive.h"
2018-06-21 11:16:23 -04:00
#include "core/file_sys/program_metadata.h"
#include "core/hle/kernel/kernel.h"
#include "core/loader/loader.h"
namespace Loader {
/// Loads an NCA file
class AppLoader_NCA final : public AppLoader {
public:
2018-07-06 10:51:32 -04:00
explicit AppLoader_NCA(FileSys::VirtualFile file);
2018-06-21 11:16:23 -04:00
/**
* Returns the type of the file
2018-07-06 10:51:32 -04:00
* @param file std::shared_ptr<VfsFile> open file
2018-06-21 11:16:23 -04:00
* @return FileType found, or FileType::Error if this loader doesn't know it
*/
2018-07-06 10:51:32 -04:00
static FileType IdentifyType(const FileSys::VirtualFile& file);
2018-06-21 11:16:23 -04:00
FileType GetFileType() override {
2018-07-06 10:51:32 -04:00
return IdentifyType(file);
2018-06-21 11:16:23 -04:00
}
ResultStatus Load(Kernel::SharedPtr<Kernel::Process>& process) override;
~AppLoader_NCA();
private:
FileSys::ProgramMetadata metadata;
2018-07-06 10:51:32 -04:00
std::unique_ptr<FileSys::NCA> nca;
2018-06-21 11:16:23 -04:00
};
} // namespace Loader