2022-04-23 03:59:50 -05:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-07-27 17:14:03 -05:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "core/file_sys/vfs.h"
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
2018-09-23 20:50:16 -05:00
|
|
|
enum class RomFSExtractionType {
|
2018-12-24 15:18:28 -06:00
|
|
|
Full, // Includes data directory
|
|
|
|
Truncated, // Traverses into data directory
|
|
|
|
SingleDiscard, // Traverses into the first subdirectory of root
|
2018-09-23 20:50:16 -05:00
|
|
|
};
|
|
|
|
|
2018-07-27 17:14:03 -05:00
|
|
|
// Converts a RomFS binary blob to VFS Filesystem
|
|
|
|
// Returns nullptr on failure
|
2018-09-23 20:50:16 -05:00
|
|
|
VirtualDir ExtractRomFS(VirtualFile file,
|
|
|
|
RomFSExtractionType type = RomFSExtractionType::Truncated);
|
2018-09-19 21:04:51 -05:00
|
|
|
|
|
|
|
// Converts a VFS filesystem into a RomFS binary
|
|
|
|
// Returns nullptr on failure
|
2018-10-02 07:56:56 -05:00
|
|
|
VirtualFile CreateRomFS(VirtualDir dir, VirtualDir ext = nullptr);
|
2018-07-27 17:14:03 -05:00
|
|
|
|
|
|
|
} // namespace FileSys
|