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-04-09 15:44:53 +00:00
|
|
|
#include <map>
|
2014-08-31 13:34:58 +00:00
|
|
|
#include <memory>
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2015-09-27 12:01:12 +00:00
|
|
|
#include "DiscIO/Blob.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DiscIO/Volume.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
// --- this volume type is used for GC disc images ---
|
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2014-02-21 00:47:53 +00:00
|
|
|
|
2014-02-17 04:51:41 +00:00
|
|
|
class CVolumeGC : public IVolume
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-08-31 23:27:18 +00:00
|
|
|
CVolumeGC(std::unique_ptr<IBlobReader> reader);
|
2008-12-08 04:46:09 +00:00
|
|
|
~CVolumeGC();
|
2014-12-28 09:35:48 +00:00
|
|
|
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;
|
2015-05-29 19:14:02 +00:00
|
|
|
u16 GetRevision() const override;
|
2015-07-30 10:47:02 +00:00
|
|
|
std::string GetInternalName() const override;
|
2015-05-10 17:09:11 +00:00
|
|
|
std::map<ELanguage, std::string> GetNames(bool prefer_long) const override;
|
2015-04-10 20:10:49 +00:00
|
|
|
std::map<ELanguage, std::string> GetDescriptions() const override;
|
|
|
|
std::string GetCompany() const override;
|
|
|
|
std::vector<u32> GetBanner(int* width, int* height) const override;
|
2015-08-10 14:35:23 +00:00
|
|
|
u64 GetFSTSize() const override;
|
2014-03-08 00:54:44 +00:00
|
|
|
std::string GetApploaderDate() const override;
|
2015-05-29 19:14:02 +00:00
|
|
|
u8 GetDiscNumber() const override;
|
2015-02-24 05:03:59 +00:00
|
|
|
|
2015-06-04 14:26:36 +00:00
|
|
|
EPlatform GetVolumeType() const override;
|
2014-03-08 00:54:44 +00:00
|
|
|
ECountry GetCountry() const override;
|
2015-09-27 12:01:12 +00:00
|
|
|
BlobType GetBlobType() const override;
|
2014-03-08 00:54:44 +00:00
|
|
|
u64 GetSize() const override;
|
|
|
|
u64 GetRawSize() const override;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2015-04-10 20:10:49 +00:00
|
|
|
private:
|
|
|
|
bool LoadBannerFile() const;
|
2015-05-10 17:09:11 +00:00
|
|
|
std::map<ELanguage, std::string> ReadMultiLanguageStrings(bool description, bool prefer_long = true) const;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2015-04-10 20:10:49 +00:00
|
|
|
static const int GC_BANNER_WIDTH = 96;
|
|
|
|
static const int GC_BANNER_HEIGHT = 32;
|
|
|
|
|
|
|
|
// Banner Comment
|
|
|
|
struct GCBannerComment
|
|
|
|
{
|
|
|
|
char shortTitle[32]; // Short game title shown in IPL menu
|
|
|
|
char shortMaker[32]; // Short developer, publisher names shown in IPL menu
|
|
|
|
char longTitle[64]; // Long game title shown in IPL game start screen
|
|
|
|
char longMaker[64]; // Long developer, publisher names shown in IPL game start screen
|
|
|
|
char comment[128]; // Game description shown in IPL game start screen in two lines.
|
|
|
|
};
|
|
|
|
|
|
|
|
struct GCBanner
|
|
|
|
{
|
|
|
|
u32 id; // "BNR1" for NTSC, "BNR2" for PAL
|
|
|
|
u32 padding[7];
|
|
|
|
u16 image[GC_BANNER_WIDTH * GC_BANNER_HEIGHT]; // RGB5A3 96x32 image
|
|
|
|
GCBannerComment comment[6]; // Comments in six languages (only one for BNR1 type)
|
|
|
|
};
|
|
|
|
|
|
|
|
static const size_t BNR1_SIZE = sizeof(GCBanner) - sizeof(GCBannerComment) * 5;
|
|
|
|
static const size_t BNR2_SIZE = sizeof(GCBanner);
|
|
|
|
|
|
|
|
enum BannerFileType
|
|
|
|
{
|
|
|
|
BANNER_NOT_LOADED,
|
|
|
|
BANNER_INVALID,
|
|
|
|
BANNER_BNR1,
|
|
|
|
BANNER_BNR2
|
|
|
|
};
|
|
|
|
|
|
|
|
mutable BannerFileType m_banner_file_type = BANNER_NOT_LOADED;
|
2015-09-28 03:45:13 +00:00
|
|
|
mutable GCBanner m_banner_file;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-08-31 13:34:58 +00:00
|
|
|
std::unique_ptr<IBlobReader> m_pReader;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|