2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <cstddef>
|
|
|
|
#include <string>
|
2008-12-08 04:46:09 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2014-02-21 00:47:53 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DiscIO/Filesystem.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
|
|
|
|
2014-02-21 00:47:53 +00:00
|
|
|
class IVolume;
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
class CFileSystemGCWii : public IFileSystem
|
|
|
|
{
|
|
|
|
public:
|
2013-03-03 22:51:26 +00:00
|
|
|
CFileSystemGCWii(const IVolume* _rVolume);
|
2008-12-08 04:46:09 +00:00
|
|
|
virtual ~CFileSystemGCWii();
|
2014-03-08 00:54:44 +00:00
|
|
|
virtual bool IsValid() const override { return m_Valid; }
|
2014-03-12 19:33:41 +00:00
|
|
|
virtual u64 GetFileSize(const std::string& _rFullPath) override;
|
2014-03-08 00:54:44 +00:00
|
|
|
virtual size_t GetFileList(std::vector<const SFileInfo *> &_rFilenames) override;
|
2014-03-15 03:38:14 +00:00
|
|
|
virtual const std::string GetFileName(u64 _Address) override;
|
2014-03-12 19:33:41 +00:00
|
|
|
virtual u64 ReadFile(const std::string& _rFullPath, u8* _pBuffer, size_t _MaxBufferSize) override;
|
|
|
|
virtual bool ExportFile(const std::string& _rFullPath, const std::string&_rExportFilename) override;
|
|
|
|
virtual bool ExportApploader(const std::string& _rExportFolder) const override;
|
|
|
|
virtual bool ExportDOL(const std::string& _rExportFolder) const override;
|
2014-03-08 00:54:44 +00:00
|
|
|
virtual bool GetBootDOL(u8* &buffer, u32 DolSize) const override;
|
|
|
|
virtual u32 GetBootDOLSize() const override;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-07-03 03:26:23 +00:00
|
|
|
private:
|
2008-12-08 04:46:09 +00:00
|
|
|
bool m_Initialized;
|
2010-06-03 20:59:55 +00:00
|
|
|
bool m_Valid;
|
2008-12-08 04:46:09 +00:00
|
|
|
u32 m_OffsetShift; // WII offsets are all shifted
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2009-07-03 03:26:23 +00:00
|
|
|
std::vector <SFileInfo> m_FileInfoVector;
|
2008-12-08 04:46:09 +00:00
|
|
|
u32 Read32(u64 _Offset) const;
|
2013-03-03 22:51:26 +00:00
|
|
|
std::string GetStringFromOffset(u64 _Offset) const;
|
2014-03-12 19:33:41 +00:00
|
|
|
const SFileInfo* FindFileInfo(const std::string& _rFullPath);
|
2010-06-03 20:37:32 +00:00
|
|
|
bool DetectFileSystem();
|
|
|
|
void InitFileSystem();
|
2014-03-15 03:38:14 +00:00
|
|
|
size_t BuildFilenames(const size_t _FirstIndex, const size_t _LastIndex, const std::string& _szDirectory, u64 _NameTableOffset);
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|