File: VolumeGC.h

package info (click to toggle)
dolphin-emu 5.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 28,976 kB
  • ctags: 35,666
  • sloc: cpp: 213,139; java: 6,252; asm: 2,277; xml: 1,998; ansic: 1,514; python: 462; sh: 279; pascal: 247; makefile: 124; perl: 97
file content (87 lines) | stat: -rw-r--r-- 2,584 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Copyright 2008 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/Blob.h"
#include "DiscIO/Volume.h"

// --- this volume type is used for GC disc images ---

namespace DiscIO
{

class CVolumeGC : public IVolume
{
public:
	CVolumeGC(std::unique_ptr<IBlobReader> reader);
	~CVolumeGC();
	bool Read(u64 _Offset, u64 _Length, u8* _pBuffer, bool decrypt = false) const override;
	std::string GetUniqueID() const override;
	std::string GetMakerID() const override;
	u16 GetRevision() const override;
	std::string GetInternalName() const override;
	std::map<ELanguage, std::string> GetNames(bool prefer_long) const override;
	std::map<ELanguage, std::string> GetDescriptions() const override;
	std::string GetCompany() const override;
	std::vector<u32> GetBanner(int* width, int* height) const override;
	u64 GetFSTSize() const override;
	std::string GetApploaderDate() const override;
	u8 GetDiscNumber() const override;

	EPlatform GetVolumeType() const override;
	ECountry GetCountry() const override;
	BlobType GetBlobType() const override;
	u64 GetSize() const override;
	u64 GetRawSize() const override;

private:
	bool LoadBannerFile() const;
	std::map<ELanguage, std::string> ReadMultiLanguageStrings(bool description, bool prefer_long = true) const;

	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;
	mutable GCBanner m_banner_file;

	std::unique_ptr<IBlobReader> m_pReader;
};

} // namespace