2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2012-05-03 14:09:01 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2012-05-03 14:09:01 +00:00
|
|
|
|
2015-12-07 04:15:51 +00:00
|
|
|
#include <memory>
|
2014-03-12 19:33:41 +00:00
|
|
|
#include <string>
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "DiscIO/Blob.h"
|
2012-05-03 14:09:01 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
|
|
|
class WbfsFileReader : public IBlobReader
|
|
|
|
{
|
2014-09-01 19:48:02 +00:00
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
~WbfsFileReader();
|
2014-09-01 19:48:02 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static std::unique_ptr<WbfsFileReader> Create(const std::string& filename);
|
2015-09-17 08:58:54 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
BlobType GetBlobType() const override { return BlobType::WBFS; }
|
|
|
|
// 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;
|
2015-09-17 08:58:54 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
u64 GetRawSize() const override { return m_size; }
|
|
|
|
bool Read(u64 offset, u64 nbytes, u8* out_ptr) override;
|
2014-09-01 19:48:02 +00:00
|
|
|
|
|
|
|
private:
|
2016-06-24 08:43:46 +00:00
|
|
|
WbfsFileReader(const std::string& filename);
|
2012-05-03 14:09:01 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
bool OpenFiles(const std::string& filename);
|
|
|
|
bool ReadHeader();
|
2012-05-03 14:09:01 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
File::IOFile& SeekToCluster(u64 offset, u64* available);
|
|
|
|
bool IsGood() { return m_good; }
|
|
|
|
struct file_entry
|
|
|
|
{
|
|
|
|
File::IOFile file;
|
|
|
|
u64 base_address;
|
|
|
|
u64 size;
|
|
|
|
};
|
2012-05-03 14:09:01 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
std::vector<std::unique_ptr<file_entry>> m_files;
|
2012-05-03 14:09:01 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
u32 m_total_files;
|
|
|
|
u64 m_size;
|
2012-05-03 14:09:01 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
u64 m_hd_sector_size;
|
|
|
|
u64 m_wbfs_sector_size;
|
|
|
|
u64 m_wbfs_sector_count;
|
|
|
|
u64 m_disc_info_size;
|
2012-05-03 14:09:01 +00:00
|
|
|
|
2015-09-17 22:00:14 +00:00
|
|
|
#pragma pack(1)
|
2016-06-24 08:43:46 +00:00
|
|
|
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;
|
2015-09-17 22:00:14 +00:00
|
|
|
#pragma pack()
|
2012-05-03 14:09:01 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
std::vector<u16> m_wlba_table;
|
|
|
|
u64 m_blocks_per_disc;
|
2013-03-19 13:59:41 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
bool m_good;
|
2012-05-03 14:09:01 +00:00
|
|
|
};
|
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
bool IsWbfsBlob(const std::string& filename);
|
2012-05-03 14:09:01 +00:00
|
|
|
|
|
|
|
} // namespace
|