2016-07-06 18:33:05 +00:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2017-03-03 19:43:52 +00:00
|
|
|
#include "DiscIO/Volume.h"
|
|
|
|
|
2016-07-06 18:33:05 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <map>
|
2017-05-19 16:33:21 +00:00
|
|
|
#include <memory>
|
2017-06-04 08:33:14 +00:00
|
|
|
#include <optional>
|
2016-07-06 18:33:05 +00:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/ColorUtil.h"
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
#include "Common/FileUtil.h"
|
2017-05-06 15:45:08 +00:00
|
|
|
#include "Common/NandPaths.h"
|
2016-07-06 18:33:05 +00:00
|
|
|
#include "Common/StringUtil.h"
|
2017-03-03 19:43:52 +00:00
|
|
|
#include "Common/Swap.h"
|
|
|
|
|
2017-05-19 16:33:21 +00:00
|
|
|
#include "DiscIO/Blob.h"
|
2016-07-06 18:33:05 +00:00
|
|
|
#include "DiscIO/Enums.h"
|
2017-05-19 16:33:21 +00:00
|
|
|
#include "DiscIO/VolumeDirectory.h"
|
|
|
|
#include "DiscIO/VolumeGC.h"
|
|
|
|
#include "DiscIO/VolumeWad.h"
|
2017-06-06 09:49:01 +00:00
|
|
|
#include "DiscIO/VolumeWii.h"
|
2016-07-06 18:33:05 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
|
|
|
static const unsigned int WII_BANNER_WIDTH = 192;
|
|
|
|
static const unsigned int WII_BANNER_HEIGHT = 64;
|
|
|
|
static const unsigned int WII_BANNER_SIZE = WII_BANNER_WIDTH * WII_BANNER_HEIGHT * 2;
|
|
|
|
static const unsigned int WII_BANNER_OFFSET = 0xA0;
|
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
const IOS::ES::TicketReader Volume::INVALID_TICKET{};
|
|
|
|
const IOS::ES::TMDReader Volume::INVALID_TMD{};
|
2017-05-20 16:33:36 +00:00
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
std::vector<u32> Volume::GetWiiBanner(int* width, int* height, u64 title_id)
|
2016-07-06 18:33:05 +00:00
|
|
|
{
|
|
|
|
*width = 0;
|
|
|
|
*height = 0;
|
|
|
|
|
2017-05-06 15:45:08 +00:00
|
|
|
const std::string file_name =
|
|
|
|
Common::GetTitleDataPath(title_id, Common::FROM_CONFIGURED_ROOT) + "banner.bin";
|
2016-07-06 18:33:05 +00:00
|
|
|
if (!File::Exists(file_name))
|
|
|
|
return std::vector<u32>();
|
|
|
|
|
|
|
|
if (File::GetSize(file_name) < WII_BANNER_OFFSET + WII_BANNER_SIZE)
|
|
|
|
return std::vector<u32>();
|
|
|
|
|
|
|
|
File::IOFile file(file_name, "rb");
|
|
|
|
if (!file.Seek(WII_BANNER_OFFSET, SEEK_SET))
|
|
|
|
return std::vector<u32>();
|
|
|
|
|
|
|
|
std::vector<u8> banner_file(WII_BANNER_SIZE);
|
|
|
|
if (!file.ReadBytes(banner_file.data(), banner_file.size()))
|
|
|
|
return std::vector<u32>();
|
|
|
|
|
|
|
|
std::vector<u32> image_buffer(WII_BANNER_WIDTH * WII_BANNER_HEIGHT);
|
|
|
|
ColorUtil::decode5A3image(image_buffer.data(), (u16*)banner_file.data(), WII_BANNER_WIDTH,
|
|
|
|
WII_BANNER_HEIGHT);
|
|
|
|
|
|
|
|
*width = WII_BANNER_WIDTH;
|
|
|
|
*height = WII_BANNER_HEIGHT;
|
|
|
|
return image_buffer;
|
|
|
|
}
|
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
std::map<Language, std::string> Volume::ReadWiiNames(const std::vector<u8>& data)
|
2016-07-06 18:33:05 +00:00
|
|
|
{
|
|
|
|
std::map<Language, std::string> names;
|
|
|
|
for (size_t i = 0; i < NUMBER_OF_LANGUAGES; ++i)
|
|
|
|
{
|
|
|
|
size_t name_start = NAME_BYTES_LENGTH * i;
|
|
|
|
size_t name_end = name_start + NAME_BYTES_LENGTH;
|
|
|
|
if (data.size() >= name_end)
|
|
|
|
{
|
|
|
|
u16* temp = (u16*)(data.data() + name_start);
|
|
|
|
std::wstring out_temp(NAME_STRING_LENGTH, '\0');
|
|
|
|
std::transform(temp, temp + out_temp.size(), out_temp.begin(), (u16(&)(u16))Common::swap16);
|
|
|
|
out_temp.erase(std::find(out_temp.begin(), out_temp.end(), 0x00), out_temp.end());
|
|
|
|
std::string name = UTF16ToUTF8(out_temp);
|
|
|
|
if (!name.empty())
|
|
|
|
names[static_cast<Language>(i)] = name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return names;
|
|
|
|
}
|
2017-05-19 16:33:21 +00:00
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
std::unique_ptr<Volume> CreateVolumeFromFilename(const std::string& filename)
|
2017-05-19 16:33:21 +00:00
|
|
|
{
|
2017-06-06 09:49:01 +00:00
|
|
|
std::unique_ptr<BlobReader> reader(CreateBlobReader(filename));
|
2017-05-19 16:33:21 +00:00
|
|
|
if (reader == nullptr)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
// Check for Wii
|
2017-06-04 08:33:14 +00:00
|
|
|
const std::optional<u32> wii_magic = reader->ReadSwapped<u32>(0x18);
|
|
|
|
if (wii_magic == u32(0x5D1C9EA3))
|
2017-06-06 09:49:01 +00:00
|
|
|
return std::make_unique<VolumeWii>(std::move(reader));
|
2017-05-19 16:33:21 +00:00
|
|
|
|
|
|
|
// Check for WAD
|
|
|
|
// 0x206962 for boot2 wads
|
2017-06-04 08:33:14 +00:00
|
|
|
const std::optional<u32> wad_magic = reader->ReadSwapped<u32>(0x02);
|
|
|
|
if (wad_magic == u32(0x00204973) || wad_magic == u32(0x00206962))
|
2017-06-06 09:49:01 +00:00
|
|
|
return std::make_unique<VolumeWAD>(std::move(reader));
|
2017-05-19 16:33:21 +00:00
|
|
|
|
|
|
|
// Check for GC
|
2017-06-04 08:33:14 +00:00
|
|
|
const std::optional<u32> gc_magic = reader->ReadSwapped<u32>(0x1C);
|
|
|
|
if (gc_magic == u32(0xC2339F3D))
|
2017-06-06 09:49:01 +00:00
|
|
|
return std::make_unique<VolumeGC>(std::move(reader));
|
2017-05-19 16:33:21 +00:00
|
|
|
|
|
|
|
// No known magic words found
|
|
|
|
return nullptr;
|
2016-07-06 18:33:05 +00:00
|
|
|
}
|
2017-05-19 16:33:21 +00:00
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
std::unique_ptr<Volume> CreateVolumeFromDirectory(const std::string& directory, bool is_wii,
|
|
|
|
const std::string& apploader,
|
|
|
|
const std::string& dol)
|
2017-05-19 16:33:21 +00:00
|
|
|
{
|
2017-06-06 09:49:01 +00:00
|
|
|
if (VolumeDirectory::IsValidDirectory(directory))
|
|
|
|
return std::make_unique<VolumeDirectory>(directory, is_wii, apploader, dol);
|
2017-05-19 16:33:21 +00:00
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|