| 
									
										
										
										
											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.
 | 
					
						
							| 
									
										
										
										
											2012-05-04 00:09:01 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-10 13:54:46 -05:00
										 |  |  | #pragma once
 | 
					
						
							| 
									
										
										
										
											2012-05-04 00:09:01 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-06 23:15:51 -05:00
										 |  |  | #include <memory>
 | 
					
						
							| 
									
										
										
										
											2014-03-12 15:33:41 -04:00
										 |  |  | #include <string>
 | 
					
						
							| 
									
										
										
										
											2014-02-21 01:47:53 +01:00
										 |  |  | #include <vector>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "Common/CommonTypes.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "Common/FileUtil.h"
 | 
					
						
							|  |  |  | #include "DiscIO/Blob.h"
 | 
					
						
							| 
									
										
										
										
											2012-05-04 00:09:01 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace DiscIO | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class WbfsFileReader : public IBlobReader | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-09-01 15:48:02 -04:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2015-12-06 23:15:51 -05:00
										 |  |  | 	~WbfsFileReader(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static std::unique_ptr<WbfsFileReader> Create(const std::string& filename); | 
					
						
							| 
									
										
										
										
											2014-09-01 15:48:02 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-27 14:01:12 +02:00
										 |  |  | 	BlobType GetBlobType() const override { return BlobType::WBFS; } | 
					
						
							| 
									
										
										
										
											2015-09-17 10:58:54 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// The WBFS format does not save the original file size.
 | 
					
						
							|  |  |  | 	// This function returns a constant upper bound
 | 
					
						
							|  |  |  | 	// (the size of a double-layer Wii disc).
 | 
					
						
							|  |  |  | 	u64 GetDataSize() const override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 15:48:02 -04:00
										 |  |  | 	u64 GetRawSize() const override { return m_size; } | 
					
						
							|  |  |  | 	bool Read(u64 offset, u64 nbytes, u8* out_ptr) override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2014-03-12 15:33:41 -04:00
										 |  |  | 	WbfsFileReader(const std::string& filename); | 
					
						
							| 
									
										
										
										
											2012-05-04 00:09:01 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-12 15:33:41 -04:00
										 |  |  | 	bool OpenFiles(const std::string& filename); | 
					
						
							| 
									
										
										
										
											2012-05-04 00:09:01 +10:00
										 |  |  | 	bool ReadHeader(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	File::IOFile& SeekToCluster(u64 offset, u64* available); | 
					
						
							|  |  |  | 	bool IsGood() {return m_good;} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct file_entry | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		File::IOFile file; | 
					
						
							|  |  |  | 		u64 base_address; | 
					
						
							|  |  |  | 		u64 size; | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-07 19:53:42 -05:00
										 |  |  | 	std::vector<std::unique_ptr<file_entry>> m_files; | 
					
						
							| 
									
										
										
										
											2012-05-04 00:09:01 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	u32 m_total_files; | 
					
						
							|  |  |  | 	u64 m_size; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 15:48:02 -04:00
										 |  |  | 	u64 m_hd_sector_size; | 
					
						
							|  |  |  | 	u64 m_wbfs_sector_size; | 
					
						
							|  |  |  | 	u64 m_wbfs_sector_count; | 
					
						
							| 
									
										
										
										
											2012-05-04 00:09:01 +10:00
										 |  |  | 	u64 m_disc_info_size; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-18 00:00:14 +02:00
										 |  |  | #pragma pack(1)
 | 
					
						
							|  |  |  | 	struct WbfsHeader | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		char magic[4]; | 
					
						
							|  |  |  | 		u32 hd_sector_count; | 
					
						
							|  |  |  | 		u8 hd_sector_shift; | 
					
						
							|  |  |  | 		u8 wbfs_sector_shift; | 
					
						
							|  |  |  | 		u8 padding[2]; | 
					
						
							|  |  |  | 		u8 disc_table[500]; | 
					
						
							|  |  |  | 	} m_header; | 
					
						
							|  |  |  | #pragma pack()
 | 
					
						
							| 
									
										
										
										
											2012-05-04 00:09:01 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-07 19:53:42 -05:00
										 |  |  | 	std::vector<u16> m_wlba_table; | 
					
						
							| 
									
										
										
										
											2012-05-04 00:09:01 +10:00
										 |  |  | 	u64 m_blocks_per_disc; | 
					
						
							| 
									
										
										
										
											2013-03-19 09:59:41 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-04 00:09:01 +10:00
										 |  |  | 	bool m_good; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-12 15:33:41 -04:00
										 |  |  | bool IsWbfsBlob(const std::string& filename); | 
					
						
							| 
									
										
										
										
											2012-05-04 00:09:01 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }  // namespace
 |