| 
									
										
										
										
											2013-04-17 23:09:55 -04:00
										 |  |  | // Copyright 2013 Dolphin Emulator Project
 | 
					
						
							|  |  |  | // Licensed under GPLv2
 | 
					
						
							|  |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2011-01-01 21:09:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-10 13:54:46 -05:00
										 |  |  | #pragma once
 | 
					
						
							| 
									
										
										
										
											2011-01-01 21:09:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-21 01:47:53 +01:00
										 |  |  | #include <cstdio>
 | 
					
						
							| 
									
										
										
										
											2014-03-12 15:33:41 -04:00
										 |  |  | #include <string>
 | 
					
						
							| 
									
										
										
										
											2014-02-21 01:47:53 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "Common/CommonTypes.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "Common/FileUtil.h"
 | 
					
						
							|  |  |  | #include "DiscIO/Blob.h"
 | 
					
						
							| 
									
										
										
										
											2011-01-01 21:09:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace DiscIO | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-12 15:33:41 -04:00
										 |  |  | bool IsCISOBlob(const std::string& filename); | 
					
						
							| 
									
										
										
										
											2011-01-01 21:09:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-05 00:28:41 -06:00
										 |  |  | static const u32 CISO_HEADER_SIZE = 0x8000; | 
					
						
							|  |  |  | static const u32 CISO_MAP_SIZE = CISO_HEADER_SIZE - sizeof(u32) - sizeof(char) * 4; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct CISOHeader | 
					
						
							| 
									
										
										
										
											2011-01-01 21:09:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-05 00:28:41 -06:00
										 |  |  | 	// "CISO"
 | 
					
						
							|  |  |  | 	char magic[4]; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-05 00:28:41 -06:00
										 |  |  | 	// little endian
 | 
					
						
							|  |  |  | 	u32 block_size; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-05 00:28:41 -06:00
										 |  |  | 	// 0=unused, 1=used, others=invalid
 | 
					
						
							|  |  |  | 	u8 map[CISO_MAP_SIZE]; | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2011-01-01 21:09:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class CISOFileReader : public IBlobReader | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2014-03-12 15:33:41 -04:00
										 |  |  | 	static CISOFileReader* Create(const std::string& filename); | 
					
						
							| 
									
										
										
										
											2011-03-11 10:21:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-08 01:54:44 +01:00
										 |  |  | 	u64 GetDataSize() const override; | 
					
						
							|  |  |  | 	u64 GetRawSize() const override; | 
					
						
							|  |  |  | 	bool Read(u64 offset, u64 nbytes, u8* out_ptr) override; | 
					
						
							| 
									
										
										
										
											2011-01-01 21:09:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2013-03-05 00:28:41 -06:00
										 |  |  | 	CISOFileReader(std::FILE* file); | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-05 00:28:41 -06:00
										 |  |  | 	typedef u16 MapType; | 
					
						
							|  |  |  | 	static const MapType UNUSED_BLOCK_ID = -1; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-05 00:28:41 -06:00
										 |  |  | 	File::IOFile m_file; | 
					
						
							|  |  |  | 	u64 m_size; | 
					
						
							|  |  |  | 	u32 m_block_size; | 
					
						
							|  |  |  | 	MapType m_ciso_map[CISO_MAP_SIZE]; | 
					
						
							| 
									
										
										
										
											2011-01-01 21:09:56 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }  // namespace
 |