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:43:35 +00:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <cinttypes>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
2014-11-15 18:25:21 +00:00
|
|
|
#include <memory>
|
2008-12-08 05:30:24 +00:00
|
|
|
#include <string>
|
2015-04-09 15:44:53 +00:00
|
|
|
#include <utility>
|
2008-12-08 05:30:24 +00:00
|
|
|
#include <vector>
|
2014-11-18 01:11:34 +00:00
|
|
|
#include <wx/app.h>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/bitmap.h>
|
|
|
|
#include <wx/filefn.h>
|
|
|
|
#include <wx/image.h>
|
2015-05-08 14:04:40 +00:00
|
|
|
#include <wx/toplevel.h>
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/ChunkFile.h"
|
|
|
|
#include "Common/CommonPaths.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "Common/Hash.h"
|
|
|
|
#include "Common/IniFile.h"
|
|
|
|
#include "Common/StringUtil.h"
|
|
|
|
|
|
|
|
#include "Core/ConfigManager.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Core/CoreParameter.h"
|
|
|
|
#include "Core/Boot/Boot.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
|
|
|
|
#include "DiscIO/CompressedBlob.h"
|
|
|
|
#include "DiscIO/Filesystem.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "DiscIO/Volume.h"
|
|
|
|
#include "DiscIO/VolumeCreator.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
|
|
|
|
#include "DolphinWX/ISOFile.h"
|
|
|
|
#include "DolphinWX/WxUtils.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2015-05-29 19:14:02 +00:00
|
|
|
static const u32 CACHE_REVISION = 0x124;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
#define DVD_BANNER_WIDTH 96
|
|
|
|
#define DVD_BANNER_HEIGHT 32
|
|
|
|
|
2015-05-08 21:28:03 +00:00
|
|
|
static std::string GetLanguageString(DiscIO::IVolume::ELanguage language, std::map<DiscIO::IVolume::ELanguage, std::string> strings)
|
2015-04-09 15:44:53 +00:00
|
|
|
{
|
|
|
|
auto end = strings.end();
|
|
|
|
auto it = strings.find(language);
|
|
|
|
if (it != end)
|
|
|
|
return it->second;
|
|
|
|
|
|
|
|
// English tends to be a good fallback when the requested language isn't available
|
2015-05-08 21:28:03 +00:00
|
|
|
if (language != DiscIO::IVolume::ELanguage::LANGUAGE_ENGLISH)
|
2015-04-09 15:44:53 +00:00
|
|
|
{
|
2015-05-08 21:28:03 +00:00
|
|
|
it = strings.find(DiscIO::IVolume::ELanguage::LANGUAGE_ENGLISH);
|
2015-04-09 15:44:53 +00:00
|
|
|
if (it != end)
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If English isn't available either, just pick something
|
|
|
|
if (!strings.empty())
|
|
|
|
return strings.cbegin()->second;
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2009-02-03 15:03:34 +00:00
|
|
|
GameListItem::GameListItem(const std::string& _rFileName)
|
2008-12-08 05:30:24 +00:00
|
|
|
: m_FileName(_rFileName)
|
2011-03-25 18:12:40 +00:00
|
|
|
, m_emu_state(0)
|
2008-12-08 05:30:24 +00:00
|
|
|
, m_FileSize(0)
|
2013-04-17 03:29:01 +00:00
|
|
|
, m_Revision(0)
|
2008-12-08 05:30:24 +00:00
|
|
|
, m_Valid(false)
|
|
|
|
, m_BlobCompressed(false)
|
2013-09-25 07:05:36 +00:00
|
|
|
, m_ImageWidth(0)
|
|
|
|
, m_ImageHeight(0)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-02-03 15:03:34 +00:00
|
|
|
if (LoadFromCache())
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
m_Valid = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DiscIO::IVolume* pVolume = DiscIO::CreateVolumeFromFilename(_rFileName);
|
|
|
|
|
2014-03-09 20:14:26 +00:00
|
|
|
if (pVolume != nullptr)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2015-01-17 12:21:02 +00:00
|
|
|
if (!pVolume->IsWadFile())
|
|
|
|
m_Platform = pVolume->IsWiiDisc() ? WII_DISC : GAMECUBE_DISC;
|
2009-06-07 02:54:07 +00:00
|
|
|
else
|
|
|
|
m_Platform = WII_WAD;
|
2009-05-27 06:41:01 +00:00
|
|
|
|
2015-04-10 20:10:49 +00:00
|
|
|
m_names = pVolume->GetNames();
|
|
|
|
m_descriptions = pVolume->GetDescriptions();
|
|
|
|
m_company = pVolume->GetCompany();
|
2011-12-19 06:01:46 +00:00
|
|
|
|
2015-01-17 12:21:02 +00:00
|
|
|
m_Country = pVolume->GetCountry();
|
2013-04-09 17:58:56 +00:00
|
|
|
m_FileSize = pVolume->GetRawSize();
|
2008-12-08 05:30:24 +00:00
|
|
|
m_VolumeSize = pVolume->GetSize();
|
2009-06-06 07:36:22 +00:00
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
m_UniqueID = pVolume->GetUniqueID();
|
2014-03-12 19:33:41 +00:00
|
|
|
m_BlobCompressed = DiscIO::IsCompressedBlob(_rFileName);
|
2015-05-29 19:14:02 +00:00
|
|
|
m_disc_number = pVolume->GetDiscNumber();
|
2013-04-17 03:29:01 +00:00
|
|
|
m_Revision = pVolume->GetRevision();
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2015-04-10 20:10:49 +00:00
|
|
|
std::vector<u32> Buffer = pVolume->GetBanner(&m_ImageWidth, &m_ImageHeight);
|
|
|
|
u32* pData = Buffer.data();
|
|
|
|
m_pImage.resize(m_ImageWidth * m_ImageHeight * 3);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2015-04-10 20:10:49 +00:00
|
|
|
for (int i = 0; i < m_ImageWidth * m_ImageHeight; i++)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2015-04-10 20:10:49 +00:00
|
|
|
m_pImage[i * 3 + 0] = (pData[i] & 0xFF0000) >> 16;
|
|
|
|
m_pImage[i * 3 + 1] = (pData[i] & 0x00FF00) >> 8;
|
|
|
|
m_pImage[i * 3 + 2] = (pData[i] & 0x0000FF) >> 0;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
delete pVolume;
|
|
|
|
|
|
|
|
m_Valid = true;
|
|
|
|
|
2011-03-23 21:54:14 +00:00
|
|
|
// Create a cache file only if we have an image.
|
2014-11-14 19:46:49 +00:00
|
|
|
// Wii ISOs create their images after you have generated the first savegame
|
2011-03-23 21:54:14 +00:00
|
|
|
if (!m_pImage.empty())
|
2008-12-08 05:30:24 +00:00
|
|
|
SaveToCache();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-24 15:41:53 +00:00
|
|
|
if (m_company.empty() && m_UniqueID.size() >= 6)
|
|
|
|
m_company = DiscIO::GetCompanyFromID(m_UniqueID.substr(4, 2));
|
|
|
|
|
2011-03-23 04:31:00 +00:00
|
|
|
if (IsValid())
|
|
|
|
{
|
2015-02-07 20:27:26 +00:00
|
|
|
IniFile ini = SCoreStartupParameter::LoadGameIni(m_UniqueID, m_Revision);
|
|
|
|
ini.GetIfExists("EmuState", "EmulationStateId", &m_emu_state);
|
|
|
|
ini.GetIfExists("EmuState", "EmulationIssues", &m_issues);
|
2011-03-23 04:31:00 +00:00
|
|
|
}
|
|
|
|
|
2011-03-22 07:27:23 +00:00
|
|
|
if (!m_pImage.empty())
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2013-09-25 07:05:36 +00:00
|
|
|
wxImage Image(m_ImageWidth, m_ImageHeight, &m_pImage[0], true);
|
2014-11-18 01:11:34 +00:00
|
|
|
double Scale = wxTheApp->GetTopWindow()->GetContentScaleFactor();
|
2013-09-25 07:05:36 +00:00
|
|
|
// Note: This uses nearest neighbor, which subjectively looks a lot
|
2015-04-10 20:10:49 +00:00
|
|
|
// better for GC banners than smooth scaling.
|
2013-09-25 07:05:36 +00:00
|
|
|
Image.Rescale(DVD_BANNER_WIDTH * Scale, DVD_BANNER_HEIGHT * Scale);
|
|
|
|
#ifdef __APPLE__
|
|
|
|
m_Bitmap = wxBitmap(Image, -1, Scale);
|
|
|
|
#else
|
|
|
|
m_Bitmap = wxBitmap(Image, -1);
|
|
|
|
#endif
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// default banner
|
2013-09-25 07:05:36 +00:00
|
|
|
m_Bitmap.LoadFile(StrToWxStr(File::GetThemeDir(SConfig::GetInstance().m_LocalCoreStartupParameter.theme_name)) + "nobanner.png", wxBITMAP_TYPE_PNG);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GameListItem::~GameListItem()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GameListItem::LoadFromCache()
|
|
|
|
{
|
|
|
|
return CChunkFileReader::Load<GameListItem>(CreateCacheFilename(), CACHE_REVISION, *this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GameListItem::SaveToCache()
|
|
|
|
{
|
2011-03-01 03:06:14 +00:00
|
|
|
if (!File::IsDirectory(File::GetUserPath(D_CACHE_IDX)))
|
|
|
|
File::CreateDir(File::GetUserPath(D_CACHE_IDX));
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
CChunkFileReader::Save<GameListItem>(CreateCacheFilename(), CACHE_REVISION, *this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GameListItem::DoState(PointerWrap &p)
|
|
|
|
{
|
2015-04-10 20:10:49 +00:00
|
|
|
p.Do(m_names);
|
2013-03-03 01:46:55 +00:00
|
|
|
p.Do(m_descriptions);
|
2015-04-10 20:10:49 +00:00
|
|
|
p.Do(m_company);
|
2008-12-08 05:30:24 +00:00
|
|
|
p.Do(m_UniqueID);
|
|
|
|
p.Do(m_FileSize);
|
|
|
|
p.Do(m_VolumeSize);
|
|
|
|
p.Do(m_Country);
|
|
|
|
p.Do(m_BlobCompressed);
|
2011-03-22 07:27:23 +00:00
|
|
|
p.Do(m_pImage);
|
2013-09-25 07:05:36 +00:00
|
|
|
p.Do(m_ImageWidth);
|
|
|
|
p.Do(m_ImageHeight);
|
2009-06-06 07:36:22 +00:00
|
|
|
p.Do(m_Platform);
|
2015-05-29 19:14:02 +00:00
|
|
|
p.Do(m_disc_number);
|
2013-04-17 03:29:01 +00:00
|
|
|
p.Do(m_Revision);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string GameListItem::CreateCacheFilename()
|
|
|
|
{
|
2010-12-08 06:46:59 +00:00
|
|
|
std::string Filename, LegalPathname, extension;
|
|
|
|
SplitPath(m_FileName, &LegalPathname, &Filename, &extension);
|
2009-04-08 16:38:41 +00:00
|
|
|
|
2009-04-28 02:30:50 +00:00
|
|
|
if (Filename.empty()) return Filename; // Disc Drive
|
2010-11-11 09:17:57 +00:00
|
|
|
|
2010-12-08 06:46:59 +00:00
|
|
|
// Filename.extension_HashOfFolderPath_Size.cache
|
2010-11-11 09:17:57 +00:00
|
|
|
// Append hash to prevent ISO name-clashing in different folders.
|
2014-02-12 20:08:23 +00:00
|
|
|
Filename.append(StringFromFormat("%s_%x_%" PRIx64 ".cache",
|
2010-12-08 06:46:59 +00:00
|
|
|
extension.c_str(), HashFletcher((const u8 *)LegalPathname.c_str(), LegalPathname.size()),
|
2011-03-01 03:06:14 +00:00
|
|
|
File::GetSize(m_FileName)));
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2011-02-28 20:40:15 +00:00
|
|
|
std::string fullname(File::GetUserPath(D_CACHE_IDX));
|
2008-12-08 05:30:24 +00:00
|
|
|
fullname += Filename;
|
|
|
|
return fullname;
|
|
|
|
}
|
2009-02-03 15:03:34 +00:00
|
|
|
|
2013-03-03 01:46:55 +00:00
|
|
|
std::string GameListItem::GetCompany() const
|
2009-02-03 15:03:34 +00:00
|
|
|
{
|
2015-04-09 15:44:53 +00:00
|
|
|
return m_company;
|
2009-02-03 15:03:34 +00:00
|
|
|
}
|
|
|
|
|
2015-05-08 21:28:03 +00:00
|
|
|
std::string GameListItem::GetDescription(DiscIO::IVolume::ELanguage language) const
|
2009-02-03 15:03:34 +00:00
|
|
|
{
|
2015-04-09 15:44:53 +00:00
|
|
|
return GetLanguageString(language, m_descriptions);
|
2009-02-03 15:03:34 +00:00
|
|
|
}
|
2009-04-28 02:30:50 +00:00
|
|
|
|
2015-04-09 15:44:53 +00:00
|
|
|
std::string GameListItem::GetDescription() const
|
2013-03-04 00:29:56 +00:00
|
|
|
{
|
2015-04-09 15:44:53 +00:00
|
|
|
return GetDescription(SConfig::GetInstance().m_LocalCoreStartupParameter.GetCurrentLanguage(m_Platform != GAMECUBE_DISC));
|
2013-03-04 00:29:56 +00:00
|
|
|
}
|
|
|
|
|
2015-05-08 21:28:03 +00:00
|
|
|
std::string GameListItem::GetName(DiscIO::IVolume::ELanguage language) const
|
2015-04-09 15:44:53 +00:00
|
|
|
{
|
2015-04-10 20:10:49 +00:00
|
|
|
return GetLanguageString(language, m_names);
|
2013-03-04 00:29:56 +00:00
|
|
|
}
|
2013-03-03 01:46:55 +00:00
|
|
|
|
2015-04-10 20:10:49 +00:00
|
|
|
std::string GameListItem::GetName() const
|
2013-03-04 00:29:56 +00:00
|
|
|
{
|
2015-04-10 20:10:49 +00:00
|
|
|
std::string name = GetName(SConfig::GetInstance().m_LocalCoreStartupParameter.GetCurrentLanguage(m_Platform != GAMECUBE_DISC));
|
2013-03-04 00:29:56 +00:00
|
|
|
if (name.empty())
|
|
|
|
{
|
|
|
|
// No usable name, return filename (better than nothing)
|
2014-03-09 20:14:26 +00:00
|
|
|
SplitPath(GetFileName(), nullptr, &name, nullptr);
|
2013-03-04 00:29:56 +00:00
|
|
|
}
|
|
|
|
return name;
|
2011-12-19 06:01:46 +00:00
|
|
|
}
|
|
|
|
|
2015-05-08 21:28:03 +00:00
|
|
|
std::vector<DiscIO::IVolume::ELanguage> GameListItem::GetLanguages() const
|
2015-04-09 15:44:53 +00:00
|
|
|
{
|
2015-05-08 21:28:03 +00:00
|
|
|
std::vector<DiscIO::IVolume::ELanguage> languages;
|
|
|
|
for (std::pair<DiscIO::IVolume::ELanguage, std::string> name : m_names)
|
2015-04-10 20:10:49 +00:00
|
|
|
languages.push_back(name.first);
|
2015-04-09 15:44:53 +00:00
|
|
|
return languages;
|
|
|
|
}
|
|
|
|
|
2009-05-02 18:06:42 +00:00
|
|
|
const std::string GameListItem::GetWiiFSPath() const
|
|
|
|
{
|
2014-03-12 19:33:41 +00:00
|
|
|
DiscIO::IVolume *iso = DiscIO::CreateVolumeFromFilename(m_FileName);
|
2011-01-06 13:57:46 +00:00
|
|
|
std::string ret;
|
2009-05-02 18:06:42 +00:00
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
if (iso == nullptr)
|
2011-01-06 13:57:46 +00:00
|
|
|
return ret;
|
|
|
|
|
2015-01-17 12:21:02 +00:00
|
|
|
if (iso->IsWiiDisc() || iso->IsWadFile())
|
2009-05-02 18:06:42 +00:00
|
|
|
{
|
2014-08-28 01:35:20 +00:00
|
|
|
u64 title = 0;
|
2009-05-02 18:06:42 +00:00
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
iso->GetTitleID((u8*)&title);
|
|
|
|
title = Common::swap64(title);
|
2009-05-02 18:06:42 +00:00
|
|
|
|
2014-11-18 01:59:14 +00:00
|
|
|
const std::string path = StringFromFormat("%s/title/%08x/%08x/data/",
|
|
|
|
File::GetUserPath(D_WIIROOT_IDX).c_str(), (u32)(title>>32), (u32)title);
|
2009-05-02 18:06:42 +00:00
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
if (!File::Exists(path))
|
|
|
|
File::CreateFullPath(path);
|
2009-05-02 18:06:42 +00:00
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
if (path[0] == '.')
|
|
|
|
ret = WxStrToStr(wxGetCwd()) + path.substr(strlen(ROOT_DIR));
|
2011-01-06 13:57:46 +00:00
|
|
|
else
|
2014-03-12 19:33:41 +00:00
|
|
|
ret = path;
|
2009-05-02 18:06:42 +00:00
|
|
|
}
|
2014-03-12 19:33:41 +00:00
|
|
|
delete iso;
|
2009-05-02 18:06:42 +00:00
|
|
|
|
2010-01-14 07:19:10 +00:00
|
|
|
return ret;
|
2009-05-02 18:06:42 +00:00
|
|
|
}
|
|
|
|
|