| 
									
										
										
										
											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-12-08 16:49:48 -06:00
										 |  |  | #include <cstring>
 | 
					
						
							| 
									
										
										
										
											2015-04-09 17:44:53 +02:00
										 |  |  | #include <map>
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | #include <string>
 | 
					
						
							|  |  |  | #include <vector>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-20 21:10:31 -04:00
										 |  |  | #include "Common/CommonFuncs.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-07 20:06:58 -05:00
										 |  |  | #include "Common/CommonTypes.h"
 | 
					
						
							| 
									
										
										
										
											2015-04-10 22:10:49 +02:00
										 |  |  | #include "Common/StringUtil.h"
 | 
					
						
							| 
									
										
										
										
											2016-07-06 20:33:05 +02:00
										 |  |  | #include "DiscIO/Enums.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace DiscIO | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-07-06 20:33:05 +02: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 10:43:46 +02: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 {}; } | 
					
						
							| 
									
										
										
										
											2017-02-10 18:57:58 +01:00
										 |  |  |   virtual u64 PartitionOffsetToRawOffset(u64 offset) const { return offset; } | 
					
						
							| 
									
										
										
										
											2016-10-29 14:42:43 +02:00
										 |  |  |   virtual std::string GetGameID() const = 0; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   virtual std::string GetMakerID() const = 0; | 
					
						
							|  |  |  |   virtual u16 GetRevision() const = 0; | 
					
						
							|  |  |  |   virtual std::string GetInternalName() const = 0; | 
					
						
							| 
									
										
										
										
											2016-07-06 20:33:05 +02: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 10:43:46 +02: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 20:33:05 +02:00
										 |  |  |   virtual Platform GetVolumeType() const = 0; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   virtual bool SupportsIntegrityCheck() const { return false; } | 
					
						
							|  |  |  |   virtual bool CheckIntegrity() const { return false; } | 
					
						
							|  |  |  |   virtual bool ChangePartition(u64 offset) { return false; } | 
					
						
							| 
									
										
										
										
											2016-12-23 18:41:21 +01:00
										 |  |  |   virtual Region GetRegion() const = 0; | 
					
						
							| 
									
										
										
										
											2016-07-06 20:33:05 +02:00
										 |  |  |   virtual Country GetCountry() const = 0; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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 17:29:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-10 22:10:49 +02:00
										 |  |  | protected: | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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-12-23 18:41:21 +01:00
										 |  |  |     if (GetRegion() == Region::NTSC_J) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |       return SHIFTJISToUTF8(string); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       return CP1252ToUTF8(string); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-06 20:33:05 +02:00
										 |  |  |   static std::map<Language, std::string> ReadWiiNames(const std::vector<u8>& data); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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 10:43:46 +02:00
										 |  |  | }  // namespace
 |