yuzu-mainline/src/core/file_sys/romfs.h

32 lines
896 B
C++
Raw Normal View History

2018-07-27 15:14:03 -07:00
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <array>
2018-09-19 19:04:51 -07:00
#include <map>
2018-07-27 15:14:03 -07:00
#include "common/common_funcs.h"
#include "common/common_types.h"
2018-07-27 15:14:03 -07:00
#include "common/swap.h"
#include "core/file_sys/vfs.h"
namespace FileSys {
enum class RomFSExtractionType {
Full, // Includes data directory
Truncated, // Traverses into data directory
SingleDiscard, // Traverses into the first subdirectory of root
};
2018-07-27 15:14:03 -07:00
// Converts a RomFS binary blob to VFS Filesystem
// Returns nullptr on failure
VirtualDir ExtractRomFS(VirtualFile file,
RomFSExtractionType type = RomFSExtractionType::Truncated);
2018-09-19 19:04:51 -07:00
// Converts a VFS filesystem into a RomFS binary
// Returns nullptr on failure
VirtualFile CreateRomFS(VirtualDir dir, VirtualDir ext = nullptr);
2018-07-27 15:14:03 -07:00
} // namespace FileSys