2016-07-06 18:33:05 +00:00
|
|
|
// Copyright 2016 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2016-07-06 18:33:05 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-03-22 19:47:05 +00:00
|
|
|
#include <optional>
|
2017-03-17 20:01:50 +00:00
|
|
|
#include <string>
|
|
|
|
|
2016-07-06 18:33:05 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2017-12-31 19:33:36 +00:00
|
|
|
// Increment CACHE_REVISION (GameFileCache.cpp) if these enums are modified
|
2016-07-06 18:33:05 +00:00
|
|
|
|
|
|
|
enum class Platform
|
|
|
|
{
|
2018-03-31 12:04:13 +00:00
|
|
|
GameCubeDisc = 0,
|
|
|
|
WiiDisc,
|
|
|
|
WiiWAD,
|
|
|
|
ELFOrDOL,
|
|
|
|
NumberOfPlatforms
|
2016-07-06 18:33:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class Country
|
|
|
|
{
|
2018-03-31 12:04:13 +00:00
|
|
|
Europe = 0,
|
|
|
|
Japan,
|
|
|
|
USA,
|
|
|
|
Australia,
|
|
|
|
France,
|
|
|
|
Germany,
|
|
|
|
Italy,
|
|
|
|
Korea,
|
|
|
|
Netherlands,
|
|
|
|
Russia,
|
|
|
|
Spain,
|
|
|
|
Taiwan,
|
|
|
|
World,
|
|
|
|
Unknown,
|
|
|
|
NumberOfCountries
|
2016-07-06 18:33:05 +00:00
|
|
|
};
|
|
|
|
|
2018-10-28 09:33:16 +00:00
|
|
|
// This numbering matches Nintendo's GameCube/Wii region numbering.
|
2016-12-23 17:41:21 +00:00
|
|
|
enum class Region
|
|
|
|
{
|
2018-03-31 12:04:13 +00:00
|
|
|
NTSC_J = 0, // Japan and Taiwan (and South Korea for GameCube only)
|
|
|
|
NTSC_U = 1, // Mainly North America
|
|
|
|
PAL = 2, // Mainly Europe and Oceania
|
2018-10-28 09:33:16 +00:00
|
|
|
Unknown = 3, // Nintendo uses this to mean region free, but we also use it for unknown regions
|
2018-03-31 12:04:13 +00:00
|
|
|
NTSC_K = 4 // South Korea (Wii only)
|
2016-12-23 17:41:21 +00:00
|
|
|
};
|
|
|
|
|
2016-07-06 18:33:05 +00:00
|
|
|
// Languages 0 - 9 match Nintendo's Wii language numbering.
|
|
|
|
// Languages 1 - 6 match Nintendo's PAL GameCube languages 0 - 5.
|
|
|
|
// NTSC GameCubes only support one language and thus don't number languages.
|
|
|
|
enum class Language
|
|
|
|
{
|
2018-03-31 12:04:13 +00:00
|
|
|
Japanese = 0,
|
|
|
|
English = 1,
|
|
|
|
German = 2,
|
|
|
|
French = 3,
|
|
|
|
Spanish = 4,
|
|
|
|
Italian = 5,
|
|
|
|
Dutch = 6,
|
2018-10-28 09:33:16 +00:00
|
|
|
SimplifiedChinese = 7, // Not selectable on any unmodded retail Wii
|
|
|
|
TraditionalChinese = 8, // Not selectable on any unmodded retail Wii
|
2018-03-31 12:04:13 +00:00
|
|
|
Korean = 9,
|
|
|
|
Unknown
|
2016-07-06 18:33:05 +00:00
|
|
|
};
|
|
|
|
|
2017-12-31 19:33:36 +00:00
|
|
|
std::string GetName(Country country, bool translate);
|
|
|
|
std::string GetName(Language language, bool translate);
|
|
|
|
|
2017-06-17 10:26:32 +00:00
|
|
|
bool IsDisc(Platform volume_type);
|
|
|
|
bool IsWii(Platform volume_type);
|
2016-12-23 20:53:36 +00:00
|
|
|
bool IsNTSC(Region region);
|
2017-07-16 12:49:28 +00:00
|
|
|
|
2020-12-29 17:10:16 +00:00
|
|
|
int ToGameCubeLanguage(Language language);
|
|
|
|
Language FromGameCubeLanguage(int language);
|
|
|
|
|
2017-03-17 20:16:59 +00:00
|
|
|
Country TypicalCountryForRegion(Region region);
|
2019-06-30 10:44:38 +00:00
|
|
|
Region SysConfCountryToRegion(u8 country_code);
|
2017-07-16 12:49:28 +00:00
|
|
|
// Avoid using this function if you can. Country codes aren't always reliable region indicators.
|
2018-10-08 11:51:21 +00:00
|
|
|
Region CountryCodeToRegion(u8 country_code, Platform platform,
|
2019-03-22 19:47:05 +00:00
|
|
|
Region expected_region = Region::Unknown,
|
|
|
|
std::optional<u16> revision = {});
|
|
|
|
Country CountryCodeToCountry(u8 country_code, Platform platform, Region region = Region::Unknown,
|
|
|
|
std::optional<u16> revision = {});
|
2017-07-16 12:49:28 +00:00
|
|
|
|
2017-03-17 20:16:59 +00:00
|
|
|
Region GetSysMenuRegion(u16 title_version);
|
2022-10-21 21:22:49 +00:00
|
|
|
std::string GetSysMenuVersionString(u16 title_version, bool is_vwii);
|
2017-07-16 12:49:28 +00:00
|
|
|
|
2017-12-31 19:33:36 +00:00
|
|
|
const std::string& GetCompanyFromID(const std::string& company_id);
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace DiscIO
|