Files
dolphin/Source/Core/DiscIO/FileSystemGCWii.h
T

50 lines
1.6 KiB
C++
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2008-12-08 04:46:09 +00:00
#pragma once
2008-12-08 04:46:09 +00:00
#include <cstddef>
#include <string>
2008-12-08 04:46:09 +00:00
#include <vector>
#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
{
class IVolume;
2008-12-08 04:46:09 +00:00
class CFileSystemGCWii : public IFileSystem
{
public:
2013-03-03 16:51:26 -06:00
CFileSystemGCWii(const IVolume* _rVolume);
2008-12-08 04:46:09 +00:00
virtual ~CFileSystemGCWii();
2014-03-08 01:54:44 +01:00
virtual bool IsValid() const override { return m_Valid; }
2014-03-12 15:33:41 -04:00
virtual u64 GetFileSize(const std::string& _rFullPath) override;
2014-03-08 01:54:44 +01:00
virtual size_t GetFileList(std::vector<const SFileInfo *> &_rFilenames) override;
virtual const std::string GetFileName(u64 _Address) override;
2014-03-12 15:33:41 -04: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 01:54:44 +01: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
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 16:51:26 -06:00
std::string GetStringFromOffset(u64 _Offset) const;
2014-03-12 15:33:41 -04:00
const SFileInfo* FindFileInfo(const std::string& _rFullPath);
bool DetectFileSystem();
void InitFileSystem();
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