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-18 05:09:55 +02:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2014-02-10 19:54:46 +01:00
|
|
|
#pragma once
|
2008-12-08 05:46:09 +01: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 05:46:09 +01:00
|
|
|
#include <vector>
|
|
|
|
|
2014-02-21 01:47:53 +01:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 11:18:15 +01:00
|
|
|
#include "DiscIO/Filesystem.h"
|
2008-12-08 05:46:09 +01: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
|
|
|
|
2017-06-06 11:49:01 +02:00
|
|
|
class FileSystemGCWii : public FileSystem
|
2008-12-08 05:46:09 +01:00
|
|
|
{
|
|
|
|
public:
|
2017-06-06 11:49:01 +02:00
|
|
|
FileSystemGCWii(const Volume* _rVolume, const Partition& partition);
|
|
|
|
virtual ~FileSystemGCWii();
|
2016-06-24 10:43:46 +02:00
|
|
|
|
|
|
|
bool IsValid() const override { return m_Valid; }
|
|
|
|
u64 GetFileSize(const std::string& _rFullPath) override;
|
2017-06-06 11:49:01 +02:00
|
|
|
const std::vector<FileInfo>& GetFileList() override;
|
2016-09-18 18:31:40 +02:00
|
|
|
std::string GetFileName(u64 _Address) override;
|
2016-06-24 10:43:46 +02:00
|
|
|
u64 ReadFile(const std::string& _rFullPath, u8* _pBuffer, u64 _MaxBufferSize,
|
|
|
|
u64 _OffsetInFile) override;
|
|
|
|
bool ExportFile(const std::string& _rFullPath, const std::string& _rExportFilename) override;
|
|
|
|
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 05:46:09 +01:00
|
|
|
|
2009-07-03 05:26:23 +02:00
|
|
|
private:
|
2016-06-24 10:43:46 +02:00
|
|
|
bool m_Initialized;
|
|
|
|
bool m_Valid;
|
2015-06-13 20:50:03 +02:00
|
|
|
u32 m_offset_shift;
|
2017-06-06 11:49:01 +02:00
|
|
|
std::vector<FileInfo> m_FileInfoVector;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
|
|
|
std::string GetStringFromOffset(u64 _Offset) const;
|
2017-06-06 11:49:01 +02:00
|
|
|
const FileInfo* FindFileInfo(const std::string& _rFullPath);
|
2016-06-24 10:43:46 +02:00
|
|
|
bool DetectFileSystem();
|
|
|
|
void InitFileSystem();
|
|
|
|
size_t BuildFilenames(const size_t _FirstIndex, const size_t _LastIndex,
|
|
|
|
const std::string& _szDirectory, u64 _NameTableOffset);
|
2008-12-08 05:46:09 +01:00
|
|
|
};
|
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
} // namespace
|