2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 01:08:10 +02:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 23:09:55 -04:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-21 01:47:53 +01:00
|
|
|
#include <cstddef>
|
2017-06-04 10:33:14 +02:00
|
|
|
#include <optional>
|
2014-02-21 01:47:53 +01:00
|
|
|
#include <string>
|
2008-12-08 04:46:09 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2014-02-21 01:47:53 +01:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "DiscIO/Filesystem.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2017-06-06 11:49:01 +02:00
|
|
|
class Volume;
|
2015-06-13 12:51:24 +02:00
|
|
|
struct Partition;
|
2014-02-21 01:47:53 +01:00
|
|
|
|
2015-07-28 16:56:25 +02:00
|
|
|
class FileInfoGCWii : public FileInfo
|
|
|
|
{
|
|
|
|
public:
|
2015-07-30 22:18:20 +02:00
|
|
|
// Does not take ownership of pointers
|
|
|
|
FileInfoGCWii(u8 offset_shift, const u8* fst_entry, const u8* name_table_start);
|
|
|
|
|
2015-07-28 16:56:25 +02:00
|
|
|
~FileInfoGCWii() override;
|
|
|
|
|
2015-07-30 22:18:20 +02:00
|
|
|
u64 GetOffset() const override;
|
|
|
|
u32 GetSize() const override;
|
|
|
|
bool IsDirectory() const override;
|
|
|
|
std::string GetName() const override;
|
2015-07-28 16:56:25 +02:00
|
|
|
|
|
|
|
private:
|
2015-07-30 22:18:20 +02:00
|
|
|
enum class EntryProperty
|
|
|
|
{
|
|
|
|
NAME_OFFSET = 0,
|
|
|
|
FILE_OFFSET = 1,
|
|
|
|
FILE_SIZE = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
u32 Get(EntryProperty entry_property) const;
|
|
|
|
|
|
|
|
const u8 m_offset_shift;
|
|
|
|
const u8* const m_fst_entry;
|
|
|
|
const u8* const m_name_table_start;
|
2015-07-28 16:56:25 +02:00
|
|
|
};
|
|
|
|
|
2017-06-06 11:49:01 +02:00
|
|
|
class FileSystemGCWii : public FileSystem
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-06-06 11:49:01 +02:00
|
|
|
FileSystemGCWii(const Volume* _rVolume, const Partition& partition);
|
2015-07-28 16:56:25 +02:00
|
|
|
~FileSystemGCWii() override;
|
2016-06-24 10:43:46 +02:00
|
|
|
bool IsValid() const override { return m_Valid; }
|
2015-07-31 13:36:28 +02:00
|
|
|
const std::vector<FileInfoGCWii>& GetFileList() const override;
|
|
|
|
const FileInfo* FindFileInfo(const std::string& path) const override;
|
|
|
|
const FileInfo* FindFileInfo(u64 disc_offset) const override;
|
|
|
|
std::string GetPath(u64 _Address) const override;
|
|
|
|
std::string GetPathFromFSTOffset(size_t file_info_offset) const override;
|
2015-07-30 15:06:23 +02:00
|
|
|
u64 ReadFile(const FileInfo* file_info, u8* _pBuffer, u64 _MaxBufferSize,
|
2015-07-31 13:36:28 +02:00
|
|
|
u64 _OffsetInFile) const override;
|
|
|
|
bool ExportFile(const FileInfo* file_info, const std::string& _rExportFilename) const override;
|
2016-06-24 10:43:46 +02:00
|
|
|
bool ExportApploader(const std::string& _rExportFolder) const override;
|
|
|
|
bool ExportDOL(const std::string& _rExportFolder) const override;
|
2017-06-04 10:33:14 +02:00
|
|
|
std::optional<u64> GetBootDOLOffset() const override;
|
|
|
|
std::optional<u32> GetBootDOLSize(u64 dol_offset) const override;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-07-03 03:26:23 +00:00
|
|
|
private:
|
2016-06-24 10:43:46 +02:00
|
|
|
bool m_Valid;
|
2015-06-13 20:50:03 +02:00
|
|
|
u32 m_offset_shift;
|
2015-07-28 16:56:25 +02:00
|
|
|
std::vector<FileInfoGCWii> m_FileInfoVector;
|
2015-07-30 22:18:20 +02:00
|
|
|
std::vector<u8> m_file_system_table;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2015-07-30 17:12:44 +02:00
|
|
|
const FileInfo* FindFileInfo(const std::string& path, size_t search_start_offset) const;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
} // namespace
|