| 
									
										
										
										
											2015-05-24 06:55:12 +02:00
										 |  |  | // Copyright 2008 Dolphin Emulator Project
 | 
					
						
							| 
									
										
										
										
											2015-05-18 01:08:10 +02:00
										 |  |  | // Licensed under GPLv2+
 | 
					
						
							| 
									
										
										
										
											2013-04-17 23:09:55 -04:00
										 |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-10 13:54:46 -05:00
										 |  |  | #pragma once
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-09 17:44:53 +02:00
										 |  |  | #include <map>
 | 
					
						
							| 
									
										
										
										
											2014-08-31 09:34:58 -04:00
										 |  |  | #include <memory>
 | 
					
						
							| 
									
										
										
										
											2014-02-21 01:47:53 +01:00
										 |  |  | #include <string>
 | 
					
						
							|  |  |  | #include <vector>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "Common/CommonTypes.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "DiscIO/Volume.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // --- this volume type is used for GC disc images ---
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace DiscIO | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-07-06 20:33:05 +02:00
										 |  |  | enum class BlobType; | 
					
						
							|  |  |  | enum class Country; | 
					
						
							|  |  |  | enum class Language; | 
					
						
							| 
									
										
										
										
											2016-12-23 18:41:21 +01:00
										 |  |  | enum class Region; | 
					
						
							| 
									
										
										
										
											2016-07-06 20:33:05 +02:00
										 |  |  | enum class Platform; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-16 23:51:41 -05:00
										 |  |  | class CVolumeGC : public IVolume | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   CVolumeGC(std::unique_ptr<IBlobReader> reader); | 
					
						
							|  |  |  |   ~CVolumeGC(); | 
					
						
							|  |  |  |   bool Read(u64 _Offset, u64 _Length, u8* _pBuffer, bool decrypt = false) const override; | 
					
						
							| 
									
										
										
										
											2016-10-29 14:42:43 +02:00
										 |  |  |   std::string GetGameID() const override; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   std::string GetMakerID() const override; | 
					
						
							|  |  |  |   u16 GetRevision() const override; | 
					
						
							|  |  |  |   std::string GetInternalName() const override; | 
					
						
							| 
									
										
										
										
											2016-07-06 20:33:05 +02:00
										 |  |  |   std::map<Language, std::string> GetShortNames() const override; | 
					
						
							|  |  |  |   std::map<Language, std::string> GetLongNames() const override; | 
					
						
							|  |  |  |   std::map<Language, std::string> GetShortMakers() const override; | 
					
						
							|  |  |  |   std::map<Language, std::string> GetLongMakers() const override; | 
					
						
							|  |  |  |   std::map<Language, std::string> GetDescriptions() const override; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   std::vector<u32> GetBanner(int* width, int* height) const override; | 
					
						
							|  |  |  |   u64 GetFSTSize() const override; | 
					
						
							|  |  |  |   std::string GetApploaderDate() const override; | 
					
						
							|  |  |  |   u8 GetDiscNumber() const override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-06 20:33:05 +02:00
										 |  |  |   Platform GetVolumeType() const override; | 
					
						
							| 
									
										
										
										
											2016-12-23 18:41:21 +01:00
										 |  |  |   Region GetRegion() const override; | 
					
						
							| 
									
										
										
										
											2016-07-06 20:33:05 +02:00
										 |  |  |   Country GetCountry() const override; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   BlobType GetBlobType() const override; | 
					
						
							|  |  |  |   u64 GetSize() const override; | 
					
						
							|  |  |  |   u64 GetRawSize() const override; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-10 22:10:49 +02:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   static const int GC_BANNER_WIDTH = 96; | 
					
						
							|  |  |  |   static const int GC_BANNER_HEIGHT = 32; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-29 19:52:15 +11:00
										 |  |  |   struct GCBannerInformation | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   { | 
					
						
							| 
									
										
										
										
											2016-02-29 19:52:15 +11:00
										 |  |  |     char short_name[32];    // Short game title shown in IPL menu
 | 
					
						
							|  |  |  |     char short_maker[32];   // Short developer, publisher names shown in IPL menu
 | 
					
						
							|  |  |  |     char long_name[64];     // Long game title shown in IPL game start screen
 | 
					
						
							|  |  |  |     char long_maker[64];    // Long developer, publisher names shown in IPL game
 | 
					
						
							|  |  |  |                             // start screen
 | 
					
						
							|  |  |  |     char description[128];  // Game description shown in IPL game start screen in
 | 
					
						
							|  |  |  |                             // two lines.
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   struct GCBanner | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     u32 id;  // "BNR1" for NTSC, "BNR2" for PAL
 | 
					
						
							|  |  |  |     u32 padding[7]; | 
					
						
							|  |  |  |     u16 image[GC_BANNER_WIDTH * GC_BANNER_HEIGHT];  // RGB5A3 96x32 image
 | 
					
						
							| 
									
										
										
										
											2016-02-29 19:52:15 +11:00
										 |  |  |     GCBannerInformation information[6];             // information comes in six languages
 | 
					
						
							|  |  |  |                                                     // (only one for BNR1 type)
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-29 19:52:15 +11:00
										 |  |  |   void LoadBannerFile() const; | 
					
						
							|  |  |  |   void ExtractBannerInformation(const GCBanner& banner_file, bool is_bnr1) const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   static const size_t BNR1_SIZE = sizeof(GCBanner) - sizeof(GCBannerInformation) * 5; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   static const size_t BNR2_SIZE = sizeof(GCBanner); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-06 20:33:05 +02:00
										 |  |  |   mutable std::map<Language, std::string> m_short_names; | 
					
						
							| 
									
										
										
										
											2016-02-29 19:52:15 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-06 20:33:05 +02:00
										 |  |  |   mutable std::map<Language, std::string> m_long_names; | 
					
						
							|  |  |  |   mutable std::map<Language, std::string> m_short_makers; | 
					
						
							|  |  |  |   mutable std::map<Language, std::string> m_long_makers; | 
					
						
							|  |  |  |   mutable std::map<Language, std::string> m_descriptions; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-29 19:52:15 +11:00
										 |  |  |   mutable bool m_banner_loaded = false; | 
					
						
							|  |  |  |   mutable std::vector<u32> m_image_buffer; | 
					
						
							|  |  |  |   mutable int m_image_height = 0; | 
					
						
							|  |  |  |   mutable int m_image_width = 0; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   std::unique_ptr<IBlobReader> m_pReader; | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | }  // namespace
 |