// Copyright 2008 Dolphin Emulator Project // Licensed under GPLv2+ // Refer to the license.txt file included. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "Common/ChunkFile.h" #include "Common/CommonPaths.h" #include "Common/CommonTypes.h" #include "Common/FileUtil.h" #include "Common/Hash.h" #include "Common/IniFile.h" #include "Common/NandPaths.h" #include "Common/StringUtil.h" #include "Core/Boot/Boot.h" #include "Core/ConfigManager.h" #include "Core/IOS/ES/Formats.h" #include "Core/TitleDatabase.h" #include "DiscIO/Blob.h" #include "DiscIO/Enums.h" #include "DiscIO/Volume.h" #include "DolphinWX/ISOFile.h" #include "DolphinWX/WxUtils.h" static const u32 CACHE_REVISION = 0x129; // Last changed in PR 5102 static std::string GetLanguageString(DiscIO::Language language, std::map strings) { 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 if (language != DiscIO::Language::LANGUAGE_ENGLISH) { it = strings.find(DiscIO::Language::LANGUAGE_ENGLISH); if (it != end) return it->second; } // If English isn't available either, just pick something if (!strings.empty()) return strings.cbegin()->second; return ""; } GameListItem::GameListItem(const std::string& _rFileName, const Core::TitleDatabase& title_database) : m_FileName(_rFileName), m_title_id(0), m_emu_state(0), m_FileSize(0), m_region(DiscIO::Region::UNKNOWN_REGION), m_Country(DiscIO::Country::COUNTRY_UNKNOWN), m_Revision(0), m_Valid(false), m_ImageWidth(0), m_ImageHeight(0), m_disc_number(0), m_has_custom_name(false) { if (LoadFromCache()) { m_Valid = true; // Wii banners can only be read if there is a savefile, // so sometimes caches don't contain banners. Let's check // if a banner has become available after the cache was made. if (m_pImage.empty()) { std::vector buffer = DiscIO::Volume::GetWiiBanner(&m_ImageWidth, &m_ImageHeight, m_title_id); ReadVolumeBanner(buffer, m_ImageWidth, m_ImageHeight); if (!m_pImage.empty()) SaveToCache(); } } else { std::unique_ptr volume(DiscIO::CreateVolumeFromFilename(_rFileName)); if (volume != nullptr) { m_Platform = volume->GetVolumeType(); m_descriptions = volume->GetDescriptions(); m_names = volume->GetLongNames(); if (m_names.empty()) m_names = volume->GetShortNames(); m_company = GetLanguageString(DiscIO::Language::LANGUAGE_ENGLISH, volume->GetLongMakers()); if (m_company.empty()) m_company = GetLanguageString(DiscIO::Language::LANGUAGE_ENGLISH, volume->GetShortMakers()); m_region = volume->GetRegion(); m_Country = volume->GetCountry(); m_blob_type = volume->GetBlobType(); m_FileSize = volume->GetRawSize(); m_VolumeSize = volume->GetSize(); m_game_id = volume->GetGameID(); m_title_id = volume->GetTitleID().value_or(0); m_disc_number = volume->GetDiscNumber().value_or(0); m_Revision = volume->GetRevision().value_or(0); std::vector buffer = volume->GetBanner(&m_ImageWidth, &m_ImageHeight); ReadVolumeBanner(buffer, m_ImageWidth, m_ImageHeight); m_Valid = true; SaveToCache(); } } if (m_company.empty() && m_game_id.size() >= 6) m_company = DiscIO::GetCompanyFromID(m_game_id.substr(4, 2)); if (IsValid()) { const auto type = m_Platform == DiscIO::Platform::WII_WAD ? Core::TitleDatabase::TitleType::Channel : Core::TitleDatabase::TitleType::Other; m_custom_name_titles_txt = title_database.GetTitleName(m_game_id, type); ReloadINI(); } if (!IsValid() && IsElfOrDol()) { m_Valid = true; m_FileSize = File::GetSize(_rFileName); m_Platform = DiscIO::Platform::ELF_DOL; m_blob_type = DiscIO::BlobType::DIRECTORY; } std::string path, name; SplitPath(m_FileName, &path, &name, nullptr); // A bit like the Homebrew Channel icon, except there can be multiple files // in a folder with their own icons. Useful for those who don't want to have // a Homebrew Channel-style folder structure. if (ReadPNGBanner(path + name + ".png")) return; // Homebrew Channel icon. Typical for DOLs and ELFs, // but can be also used with volumes. if (ReadPNGBanner(path + "icon.png")) return; // Volume banner. Typical for everything that isn't a DOL or ELF. if (!m_pImage.empty()) { // Need to make explicit copy as wxImage uses reference counting for copies combined with only // taking a pointer, not the content, when given a buffer to its constructor. m_image.Create(m_ImageWidth, m_ImageHeight, false); std::memcpy(m_image.GetData(), m_pImage.data(), m_pImage.size()); return; } } GameListItem::~GameListItem() { } bool GameListItem::IsValid() const { if (!m_Valid) return false; if (m_Platform == DiscIO::Platform::WII_WAD && !IOS::ES::IsChannel(m_title_id)) return false; return true; } void GameListItem::ReloadINI() { if (!IsValid()) return; IniFile ini = SConfig::LoadGameIni(m_game_id, m_Revision); ini.GetIfExists("EmuState", "EmulationStateId", &m_emu_state, 0); ini.GetIfExists("EmuState", "EmulationIssues", &m_issues, std::string()); m_custom_name.clear(); m_has_custom_name = ini.GetIfExists("EmuState", "Title", &m_custom_name); if (!m_has_custom_name && !m_custom_name_titles_txt.empty()) { m_custom_name = m_custom_name_titles_txt; m_has_custom_name = true; } } bool GameListItem::LoadFromCache() { return CChunkFileReader::Load(CreateCacheFilename(), CACHE_REVISION, *this); } void GameListItem::SaveToCache() { if (!File::IsDirectory(File::GetUserPath(D_CACHE_IDX))) File::CreateDir(File::GetUserPath(D_CACHE_IDX)); CChunkFileReader::Save(CreateCacheFilename(), CACHE_REVISION, *this); } void GameListItem::DoState(PointerWrap& p) { p.Do(m_names); p.Do(m_descriptions); p.Do(m_company); p.Do(m_game_id); p.Do(m_title_id); p.Do(m_FileSize); p.Do(m_VolumeSize); p.Do(m_region); p.Do(m_Country); p.Do(m_blob_type); p.Do(m_pImage); p.Do(m_ImageWidth); p.Do(m_ImageHeight); p.Do(m_Platform); p.Do(m_disc_number); p.Do(m_Revision); } bool GameListItem::IsElfOrDol() const { if (m_FileName.size() < 4) return false; std::string name_end = m_FileName.substr(m_FileName.size() - 4); std::transform(name_end.begin(), name_end.end(), name_end.begin(), ::tolower); return name_end == ".elf" || name_end == ".dol"; } std::string GameListItem::CreateCacheFilename() const { std::string Filename, LegalPathname, extension; SplitPath(m_FileName, &LegalPathname, &Filename, &extension); if (Filename.empty()) return Filename; // Disc Drive // Filename.extension_HashOfFolderPath_Size.cache // Append hash to prevent ISO name-clashing in different folders. Filename.append( StringFromFormat("%s_%x_%" PRIx64 ".cache", extension.c_str(), HashFletcher((const u8*)LegalPathname.c_str(), LegalPathname.size()), File::GetSize(m_FileName))); std::string fullname(File::GetUserPath(D_CACHE_IDX)); fullname += Filename; return fullname; } // Outputs to m_pImage void GameListItem::ReadVolumeBanner(const std::vector& buffer, int width, int height) { m_pImage.resize(width * height * 3); for (int i = 0; i < width * height; i++) { m_pImage[i * 3 + 0] = (buffer[i] & 0xFF0000) >> 16; m_pImage[i * 3 + 1] = (buffer[i] & 0x00FF00) >> 8; m_pImage[i * 3 + 2] = (buffer[i] & 0x0000FF) >> 0; } } // Outputs to m_Bitmap bool GameListItem::ReadPNGBanner(const std::string& path) { if (!File::Exists(path)) return false; wxImage image(StrToWxStr(path), wxBITMAP_TYPE_PNG); if (!image.IsOk()) return false; m_image = image; return true; } std::string GameListItem::GetDescription(DiscIO::Language language) const { return GetLanguageString(language, m_descriptions); } std::string GameListItem::GetDescription() const { bool wii = m_Platform != DiscIO::Platform::GAMECUBE_DISC; return GetDescription(SConfig::GetInstance().GetCurrentLanguage(wii)); } std::string GameListItem::GetName(DiscIO::Language language) const { return GetLanguageString(language, m_names); } std::string GameListItem::GetName() const { if (m_has_custom_name) return m_custom_name; bool wii = m_Platform != DiscIO::Platform::GAMECUBE_DISC; std::string name = GetName(SConfig::GetInstance().GetCurrentLanguage(wii)); if (!name.empty()) return name; // No usable name, return filename (better than nothing) std::string ext; SplitPath(GetFileName(), nullptr, &name, &ext); return name + ext; } std::string GameListItem::GetUniqueIdentifier() const { const DiscIO::Language lang = DiscIO::Language::LANGUAGE_ENGLISH; std::vector info; if (!GetGameID().empty()) info.push_back(GetGameID()); if (GetRevision() != 0) { std::string rev_str = "Revision "; info.push_back(rev_str + std::to_string((long long)GetRevision())); } std::string name(GetName(lang)); if (name.empty()) name = GetName(); int disc_number = GetDiscNumber() + 1; std::string lower_name = name; std::transform(lower_name.begin(), lower_name.end(), lower_name.begin(), ::tolower); if (disc_number > 1 && lower_name.find(std::string(wxString::Format("disc %i", disc_number))) == std::string::npos && lower_name.find(std::string(wxString::Format("disc%i", disc_number))) == std::string::npos) { std::string disc_text = "Disc "; info.push_back(disc_text + std::to_string(disc_number)); } if (info.empty()) return name; std::ostringstream ss; std::copy(info.begin(), info.end() - 1, std::ostream_iterator(ss, ", ")); ss << info.back(); return name + " (" + ss.str() + ")"; } std::vector GameListItem::GetLanguages() const { std::vector languages; for (std::pair name : m_names) languages.push_back(name.first); return languages; } const std::string GameListItem::GetWiiFSPath() const { if (m_Platform != DiscIO::Platform::WII_DISC && m_Platform != DiscIO::Platform::WII_WAD) return ""; const std::string path = Common::GetTitleDataPath(m_title_id, Common::FROM_CONFIGURED_ROOT); if (path[0] == '.') return WxStrToStr(wxGetCwd()) + path.substr(strlen(ROOT_DIR)); return path; }