2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <cstddef>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/ColorUtil.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-09-19 04:17:41 +00:00
|
|
|
#include "Common/MsgHandler.h"
|
|
|
|
#include "Common/Logging/Log.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DiscIO/BannerLoaderGC.h"
|
2014-02-21 00:47:53 +00:00
|
|
|
#include "DiscIO/Filesystem.h"
|
|
|
|
#include "DiscIO/Volume.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2013-03-03 04:57:49 +00:00
|
|
|
CBannerLoaderGC::CBannerLoaderGC(DiscIO::IFileSystem& _rFileSystem, DiscIO::IVolume* volume)
|
2014-06-29 19:38:48 +00:00
|
|
|
: m_country(volume->GetCountry())
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
// load the opening.bnr
|
2008-12-20 18:46:49 +00:00
|
|
|
size_t FileSize = (size_t) _rFileSystem.GetFileSize("opening.bnr");
|
2013-03-03 01:46:55 +00:00
|
|
|
if (FileSize == BNR1_SIZE || FileSize == BNR2_SIZE)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
m_pBannerFile = new u8[FileSize];
|
2009-01-21 16:31:44 +00:00
|
|
|
if (m_pBannerFile)
|
|
|
|
{
|
|
|
|
_rFileSystem.ReadFile("opening.bnr", m_pBannerFile, FileSize);
|
2010-01-11 05:07:56 +00:00
|
|
|
m_BNRType = getBannerType();
|
|
|
|
if (m_BNRType == BANNER_UNKNOWN)
|
2011-01-13 02:05:58 +00:00
|
|
|
PanicAlertT("Invalid opening.bnr found in gcm:\n%s\n You may need to redump this game.",
|
2010-01-11 05:07:56 +00:00
|
|
|
_rFileSystem.GetVolume()->GetName().c_str());
|
|
|
|
else m_IsValid = true;
|
2009-01-21 16:31:44 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2010-12-05 18:22:41 +00:00
|
|
|
else WARN_LOG(DISCIO, "Invalid opening.bnr size: %0lx",
|
|
|
|
(unsigned long)FileSize);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CBannerLoaderGC::~CBannerLoaderGC()
|
|
|
|
{
|
2009-01-21 16:31:44 +00:00
|
|
|
if (m_pBannerFile)
|
|
|
|
{
|
|
|
|
delete [] m_pBannerFile;
|
2014-03-09 20:14:26 +00:00
|
|
|
m_pBannerFile = nullptr;
|
2009-01-21 16:31:44 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2013-09-25 07:05:36 +00:00
|
|
|
std::vector<u32> CBannerLoaderGC::GetBanner(int* pWidth, int* pHeight)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2013-09-25 07:05:36 +00:00
|
|
|
std::vector<u32> Buffer;
|
|
|
|
Buffer.resize(DVD_BANNER_WIDTH * DVD_BANNER_HEIGHT);
|
2013-03-03 01:46:55 +00:00
|
|
|
auto const pBanner = (DVDBanner*)m_pBannerFile;
|
2013-10-02 22:18:54 +00:00
|
|
|
ColorUtil::decode5A3image(&Buffer[0], pBanner->image, DVD_BANNER_WIDTH, DVD_BANNER_HEIGHT);
|
2013-09-25 07:05:36 +00:00
|
|
|
*pWidth = DVD_BANNER_WIDTH;
|
|
|
|
*pHeight = DVD_BANNER_HEIGHT;
|
2013-09-27 01:15:35 +00:00
|
|
|
return Buffer;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-03 01:46:55 +00:00
|
|
|
std::vector<std::string> CBannerLoaderGC::GetNames()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2013-03-03 01:46:55 +00:00
|
|
|
std::vector<std::string> names;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
if (!IsValid())
|
|
|
|
{
|
2013-03-03 01:46:55 +00:00
|
|
|
return names;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2013-03-03 01:46:55 +00:00
|
|
|
u32 name_count = 0;
|
|
|
|
|
2009-01-21 16:31:44 +00:00
|
|
|
// find Banner type
|
2010-01-11 05:07:56 +00:00
|
|
|
switch (m_BNRType)
|
2009-01-21 16:31:44 +00:00
|
|
|
{
|
2009-01-22 07:42:17 +00:00
|
|
|
case CBannerLoaderGC::BANNER_BNR1:
|
2013-03-03 01:46:55 +00:00
|
|
|
name_count = 1;
|
2009-01-22 07:42:17 +00:00
|
|
|
break;
|
2013-03-03 01:46:55 +00:00
|
|
|
|
2009-01-22 07:42:17 +00:00
|
|
|
case CBannerLoaderGC::BANNER_BNR2:
|
2013-03-03 01:46:55 +00:00
|
|
|
name_count = 6;
|
|
|
|
break;
|
2009-01-22 07:42:17 +00:00
|
|
|
|
2013-03-03 01:46:55 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2009-02-03 15:03:34 +00:00
|
|
|
|
2013-03-03 01:46:55 +00:00
|
|
|
auto const banner = reinterpret_cast<const DVDBanner*>(m_pBannerFile);
|
|
|
|
|
2013-03-03 04:57:49 +00:00
|
|
|
for (u32 i = 0; i != name_count; ++i)
|
2013-03-03 01:46:55 +00:00
|
|
|
{
|
|
|
|
auto& comment = banner->comment[i];
|
2009-02-03 15:03:34 +00:00
|
|
|
|
2013-03-03 01:46:55 +00:00
|
|
|
if (comment.longTitle[0])
|
|
|
|
{
|
|
|
|
auto& data = comment.longTitle;
|
|
|
|
names.push_back(GetDecodedString(data));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto& data = comment.shortTitle;
|
|
|
|
names.push_back(GetDecodedString(data));
|
2009-01-21 16:31:44 +00:00
|
|
|
}
|
|
|
|
}
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-03-03 01:46:55 +00:00
|
|
|
return names;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-03 01:46:55 +00:00
|
|
|
std::string CBannerLoaderGC::GetCompany()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2013-03-03 01:46:55 +00:00
|
|
|
std::string company;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2013-03-03 01:46:55 +00:00
|
|
|
if (IsValid())
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2013-03-03 01:46:55 +00:00
|
|
|
auto const pBanner = (DVDBanner*)m_pBannerFile;
|
|
|
|
auto& data = pBanner->comment[0].shortMaker;
|
|
|
|
company = GetDecodedString(data);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2013-03-03 01:46:55 +00:00
|
|
|
return company;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-03 01:46:55 +00:00
|
|
|
std::vector<std::string> CBannerLoaderGC::GetDescriptions()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2013-03-03 01:46:55 +00:00
|
|
|
std::vector<std::string> descriptions;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
if (!IsValid())
|
|
|
|
{
|
2013-03-03 01:46:55 +00:00
|
|
|
return descriptions;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2013-03-03 01:46:55 +00:00
|
|
|
u32 desc_count = 0;
|
|
|
|
|
2009-01-21 16:31:44 +00:00
|
|
|
// find Banner type
|
2010-01-11 05:07:56 +00:00
|
|
|
switch (m_BNRType)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-01-22 07:42:17 +00:00
|
|
|
case CBannerLoaderGC::BANNER_BNR1:
|
2013-03-03 01:46:55 +00:00
|
|
|
desc_count = 1;
|
2009-01-22 07:42:17 +00:00
|
|
|
break;
|
|
|
|
|
2013-09-14 22:07:53 +00:00
|
|
|
// English, German, French, Spanish, Italian, Dutch
|
2013-03-03 01:46:55 +00:00
|
|
|
case CBannerLoaderGC::BANNER_BNR2:
|
|
|
|
desc_count = 6;
|
2009-01-22 07:42:17 +00:00
|
|
|
break;
|
2013-03-03 01:46:55 +00:00
|
|
|
|
2009-03-07 08:07:11 +00:00
|
|
|
default:
|
|
|
|
break;
|
2009-01-21 16:31:44 +00:00
|
|
|
}
|
2013-03-03 01:46:55 +00:00
|
|
|
|
|
|
|
auto banner = reinterpret_cast<const DVDBanner*>(m_pBannerFile);
|
|
|
|
|
2013-03-03 04:57:49 +00:00
|
|
|
for (u32 i = 0; i != desc_count; ++i)
|
2013-03-03 01:46:55 +00:00
|
|
|
{
|
|
|
|
auto& data = banner->comment[i].comment;
|
|
|
|
descriptions.push_back(GetDecodedString(data));
|
|
|
|
}
|
|
|
|
|
|
|
|
return descriptions;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2009-01-22 07:42:17 +00:00
|
|
|
CBannerLoaderGC::BANNER_TYPE CBannerLoaderGC::getBannerType()
|
|
|
|
{
|
|
|
|
u32 bannerSignature = *(u32*)m_pBannerFile;
|
|
|
|
CBannerLoaderGC::BANNER_TYPE type = CBannerLoaderGC::BANNER_UNKNOWN;
|
|
|
|
switch (bannerSignature)
|
|
|
|
{
|
2013-03-03 01:46:55 +00:00
|
|
|
// "BNR1"
|
2009-01-22 07:42:17 +00:00
|
|
|
case 0x31524e42:
|
|
|
|
type = CBannerLoaderGC::BANNER_BNR1;
|
|
|
|
break;
|
2013-03-03 01:46:55 +00:00
|
|
|
|
|
|
|
// "BNR2"
|
2009-01-22 07:42:17 +00:00
|
|
|
case 0x32524e42:
|
|
|
|
type = CBannerLoaderGC::BANNER_BNR2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return type;
|
|
|
|
}
|
2013-03-03 01:46:55 +00:00
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
} // namespace
|