dolphin/Source/Core/DiscIO/VolumeGC.h

50 lines
1.1 KiB
C
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#include <map>
#include <memory>
#include <string>
#include <vector>
#include "Common/CommonTypes.h"
#include "DiscIO/Volume.h"
// --- this volume type is used for GC disc images ---
namespace DiscIO
{
class IBlobReader;
class CVolumeGC : public IVolume
{
public:
CVolumeGC(IBlobReader* _pReader);
~CVolumeGC();
bool Read(u64 _Offset, u64 _Length, u8* _pBuffer, bool decrypt = false) const override;
2014-03-08 00:54:44 +00:00
std::string GetUniqueID() const override;
std::string GetMakerID() const override;
int GetRevision() const override;
std::map<IVolume::ELanguage, std::string> GetNames() const override;
2014-03-08 00:54:44 +00:00
u32 GetFSTSize() const override;
std::string GetApploaderDate() const override;
2015-02-24 05:03:59 +00:00
bool IsDiscTwo() const override;
2014-03-08 00:54:44 +00:00
ECountry GetCountry() const override;
u64 GetSize() const override;
u64 GetRawSize() const override;
2013-03-03 22:51:26 +00:00
typedef std::string(*StringDecoder)(const std::string&);
2013-03-03 22:51:26 +00:00
static StringDecoder GetStringDecoder(ECountry country);
private:
std::unique_ptr<IBlobReader> m_pReader;
};
} // namespace