2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// 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
|
|
|
|
2015-12-08 22:49:48 +00:00
|
|
|
#include <cstring>
|
2015-04-09 15:44:53 +00:00
|
|
|
#include <map>
|
2008-12-08 04:46:09 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2015-04-21 01:10:31 +00:00
|
|
|
#include "Common/CommonFuncs.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2015-04-10 20:10:49 +00:00
|
|
|
#include "Common/StringUtil.h"
|
2016-07-06 18:33:05 +00:00
|
|
|
#include "DiscIO/Enums.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2016-07-06 18:33:05 +00:00
|
|
|
enum class BlobType;
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
class IVolume
|
|
|
|
{
|
2009-08-31 22:42:10 +00:00
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
IVolume() {}
|
|
|
|
virtual ~IVolume() {}
|
|
|
|
// decrypt parameter must be false if not reading a Wii disc
|
|
|
|
virtual bool Read(u64 _Offset, u64 _Length, u8* _pBuffer, bool decrypt) const = 0;
|
|
|
|
template <typename T>
|
|
|
|
bool ReadSwapped(u64 offset, T* buffer, bool decrypt) const
|
|
|
|
{
|
|
|
|
T temp;
|
|
|
|
if (!Read(offset, sizeof(T), reinterpret_cast<u8*>(&temp), decrypt))
|
|
|
|
return false;
|
|
|
|
*buffer = Common::FromBigEndian(temp);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool GetTitleID(u64*) const { return false; }
|
|
|
|
virtual std::vector<u8> GetTMD() const { return {}; }
|
|
|
|
virtual std::string GetUniqueID() const = 0;
|
|
|
|
virtual std::string GetMakerID() const = 0;
|
|
|
|
virtual u16 GetRevision() const = 0;
|
|
|
|
virtual std::string GetInternalName() const = 0;
|
2016-07-06 18:33:05 +00:00
|
|
|
virtual std::map<Language, std::string> GetShortNames() const { return {{}}; }
|
|
|
|
virtual std::map<Language, std::string> GetLongNames() const { return {{}}; }
|
|
|
|
virtual std::map<Language, std::string> GetShortMakers() const { return {{}}; }
|
|
|
|
virtual std::map<Language, std::string> GetLongMakers() const { return {{}}; }
|
|
|
|
virtual std::map<Language, std::string> GetDescriptions() const { return {{}}; }
|
2016-06-24 08:43:46 +00:00
|
|
|
virtual std::vector<u32> GetBanner(int* width, int* height) const = 0;
|
|
|
|
virtual u64 GetFSTSize() const = 0;
|
|
|
|
virtual std::string GetApploaderDate() const = 0;
|
|
|
|
// 0 is the first disc, 1 is the second disc
|
|
|
|
virtual u8 GetDiscNumber() const { return 0; }
|
2016-07-06 18:33:05 +00:00
|
|
|
virtual Platform GetVolumeType() const = 0;
|
2016-06-24 08:43:46 +00:00
|
|
|
virtual bool SupportsIntegrityCheck() const { return false; }
|
|
|
|
virtual bool CheckIntegrity() const { return false; }
|
|
|
|
virtual bool ChangePartition(u64 offset) { return false; }
|
2016-07-06 18:33:05 +00:00
|
|
|
virtual Country GetCountry() const = 0;
|
2016-06-24 08:43:46 +00:00
|
|
|
virtual BlobType GetBlobType() const = 0;
|
|
|
|
// Size of virtual disc (not always accurate)
|
|
|
|
virtual u64 GetSize() const = 0;
|
|
|
|
// Size on disc (compressed size)
|
|
|
|
virtual u64 GetRawSize() const = 0;
|
|
|
|
|
|
|
|
static std::vector<u32> GetWiiBanner(int* width, int* height, u64 title_id);
|
2015-12-03 16:29:59 +00:00
|
|
|
|
2015-04-10 20:10:49 +00:00
|
|
|
protected:
|
2016-06-24 08:43:46 +00:00
|
|
|
template <u32 N>
|
|
|
|
std::string DecodeString(const char (&data)[N]) const
|
|
|
|
{
|
|
|
|
// strnlen to trim NULLs
|
|
|
|
std::string string(data, strnlen(data, sizeof(data)));
|
|
|
|
|
2016-02-29 08:52:15 +00:00
|
|
|
// There doesn't seem to be any GC discs with the country set to Taiwan...
|
2016-06-24 08:43:46 +00:00
|
|
|
// But maybe they would use Shift_JIS if they existed? Not sure
|
2016-07-06 18:33:05 +00:00
|
|
|
bool use_shift_jis =
|
|
|
|
(Country::COUNTRY_JAPAN == GetCountry() || Country::COUNTRY_TAIWAN == GetCountry());
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
if (use_shift_jis)
|
|
|
|
return SHIFTJISToUTF8(string);
|
|
|
|
else
|
|
|
|
return CP1252ToUTF8(string);
|
|
|
|
}
|
|
|
|
|
2016-07-06 18:33:05 +00:00
|
|
|
static std::map<Language, std::string> ReadWiiNames(const std::vector<u8>& data);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
static const size_t NUMBER_OF_LANGUAGES = 10;
|
|
|
|
static const size_t NAME_STRING_LENGTH = 42;
|
|
|
|
static const size_t NAME_BYTES_LENGTH = NAME_STRING_LENGTH * sizeof(u16);
|
|
|
|
static const size_t NAMES_TOTAL_BYTES = NAME_BYTES_LENGTH * NUMBER_OF_LANGUAGES;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
2009-07-03 22:34:51 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
} // namespace
|