mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
c6342a163f
variable swaps, simplifications
83 lines
4.1 KiB
C#
83 lines
4.1 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Shared instance for fetching <see cref="GameStrings"/> data
|
|
/// </summary>
|
|
public static class GameInfo
|
|
{
|
|
private static readonly GameStrings?[] Languages = new GameStrings[GameLanguage.LanguageCount];
|
|
|
|
public static string CurrentLanguage { get; set; } = GameLanguage.DefaultLanguage;
|
|
public static readonly IReadOnlyList<string> GenderSymbolUnicode = new[] {"♂", "♀", "-"};
|
|
public static readonly IReadOnlyList<string> GenderSymbolASCII = new[] {"M", "F", "-"};
|
|
private static GameStrings _strings = GetStrings(CurrentLanguage);
|
|
|
|
public static GameStrings GetStrings(string lang)
|
|
{
|
|
int index = GameLanguage.GetLanguageIndex(lang);
|
|
return GetStrings(index);
|
|
}
|
|
|
|
public static GameStrings GetStrings(int index)
|
|
{
|
|
return Languages[index] ??= new GameStrings(GameLanguage.Language2Char(index));
|
|
}
|
|
|
|
public static GameStrings Strings
|
|
{
|
|
get => _strings;
|
|
set => Sources = new GameDataSource(_strings = value);
|
|
}
|
|
|
|
public static GameDataSource Sources { get; private set; } = new(_strings);
|
|
public static FilteredGameDataSource FilteredSources { get; set; } = new(FakeSaveFile.Default, Sources);
|
|
|
|
public static string GetVersionName(GameVersion version)
|
|
{
|
|
var list = (ComboItem[]) VersionDataSource;
|
|
var first = System.Array.Find(list, z => z.Value == (int) version);
|
|
return first == null ? version.ToString() : first.Text;
|
|
}
|
|
|
|
// DataSource providing
|
|
public static IReadOnlyList<ComboItem> ItemDataSource => FilteredSources.Items;
|
|
public static IReadOnlyList<ComboItem> SpeciesDataSource => Sources.SpeciesDataSource;
|
|
public static IReadOnlyList<ComboItem> BallDataSource => Sources.BallDataSource;
|
|
public static IReadOnlyList<ComboItem> NatureDataSource => Sources.NatureDataSource;
|
|
public static IReadOnlyList<ComboItem> AbilityDataSource => Sources.AbilityDataSource;
|
|
public static IReadOnlyList<ComboItem> VersionDataSource => Sources.VersionDataSource;
|
|
public static IReadOnlyList<ComboItem> MoveDataSource => Sources.HaXMoveDataSource;
|
|
public static IReadOnlyList<ComboItem> GroundTileDataSource => Sources.GroundTileDataSource;
|
|
public static IReadOnlyList<ComboItem> Regions => GameDataSource.Regions;
|
|
|
|
public static IReadOnlyList<ComboItem> LanguageDataSource(int gen) => GameDataSource.LanguageDataSource(gen);
|
|
|
|
/// <summary>
|
|
/// Gets the location name for the specified parameters.
|
|
/// </summary>
|
|
/// <param name="isEggLocation">Location is from the <see cref="PKM.Egg_Location"/></param>
|
|
/// <param name="location">Location value</param>
|
|
/// <param name="format">Current <see cref="PKM.Format"/></param>
|
|
/// <param name="generation"><see cref="PKM.Generation"/> of origin</param>
|
|
/// <param name="version">Current GameVersion (only applicable for <see cref="GameVersion.Gen7b"/> differentiation)</param>
|
|
/// <returns>Location name</returns>
|
|
public static string GetLocationName(bool isEggLocation, int location, int format, int generation, GameVersion version)
|
|
{
|
|
return Strings.GetLocationName(isEggLocation, location, format, generation, version);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the location list for a specific version, which can retrieve either met locations or egg locations.
|
|
/// </summary>
|
|
/// <param name="version">Version to retrieve for</param>
|
|
/// <param name="pkmFormat">Generation to retrieve for</param>
|
|
/// <param name="egg">Egg Locations are to be retrieved instead of regular Met Locations</param>
|
|
/// <returns>Consumable list of met locations</returns>
|
|
public static IReadOnlyList<ComboItem> GetLocationList(GameVersion version, int pkmFormat, bool egg = false)
|
|
{
|
|
return Sources.Met.GetLocationList(version, pkmFormat, egg);
|
|
}
|
|
}
|
|
}
|