2020-12-22 03:13:18 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
|
|
|
|
public static partial class Util
|
|
|
|
|
{
|
|
|
|
|
private static readonly Assembly thisAssembly = typeof(Util).GetTypeInfo().Assembly;
|
2021-05-15 18:56:06 +00:00
|
|
|
|
private static readonly Dictionary<string, string> resourceNameMap = BuildLookup(thisAssembly.GetManifestResourceNames());
|
|
|
|
|
|
|
|
|
|
private static Dictionary<string, string> BuildLookup(IReadOnlyCollection<string> manifestNames)
|
|
|
|
|
{
|
|
|
|
|
var result = new Dictionary<string, string>(manifestNames.Count);
|
|
|
|
|
foreach (var resName in manifestNames)
|
|
|
|
|
{
|
|
|
|
|
var period = resName.LastIndexOf('.', resName.Length - 5);
|
|
|
|
|
var start = period + 1;
|
|
|
|
|
System.Diagnostics.Debug.Assert(start != 0);
|
|
|
|
|
|
|
|
|
|
// text file fetch excludes ".txt" (mixed case...); other extensions are used (all lowercase).
|
2021-06-24 07:36:04 +00:00
|
|
|
|
var fileName = resName.EndsWith(".txt") ? resName[start..^4].ToLowerInvariant() : resName[start..];
|
2021-05-15 18:56:06 +00:00
|
|
|
|
result.Add(fileName, resName);
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-22 03:13:18 +00:00
|
|
|
|
private static readonly Dictionary<string, string[]> stringListCache = new();
|
|
|
|
|
|
|
|
|
|
private static readonly object getStringListLoadLock = new();
|
|
|
|
|
|
|
|
|
|
#region String Lists
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a list of all Pokémon species names.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="language">Language of the Pokémon species names to select (e.g. "en", "fr", "jp", etc.)</param>
|
|
|
|
|
/// <returns>An array of strings whose indexes correspond to the IDs of each Pokémon species name.</returns>
|
|
|
|
|
public static string[] GetSpeciesList(string language) => GetStringList("species", language);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a list of all move names.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="language">Language of the move names to select (e.g. "en", "fr", "jp", etc.)</param>
|
|
|
|
|
/// <returns>An array of strings whose indexes correspond to the IDs of each move name.</returns>
|
|
|
|
|
public static string[] GetMovesList(string language) => GetStringList("moves", language);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a list of all Pokémon ability names.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="language">Language of the Pokémon ability names to select (e.g. "en", "fr", "jp", etc.)</param>
|
|
|
|
|
/// <returns>An array of strings whose indexes correspond to the IDs of each Pokémon ability name.</returns>
|
|
|
|
|
public static string[] GetAbilitiesList(string language) => GetStringList("abilities", language);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a list of all Pokémon nature names.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="language">Language of the Pokémon nature names to select (e.g. "en", "fr", "jp", etc.)</param>
|
|
|
|
|
/// <returns>An array of strings whose indexes correspond to the IDs of each Pokémon nature name.</returns>
|
|
|
|
|
public static string[] GetNaturesList(string language) => GetStringList("natures", language);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a list of all Pokémon form names.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="language">Language of the Pokémon form names to select (e.g. "en", "fr", "jp", etc.)</param>
|
|
|
|
|
/// <returns>An array of strings whose indexes correspond to the IDs of each Pokémon form name.</returns>
|
|
|
|
|
public static string[] GetFormsList(string language) => GetStringList("forms", language);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a list of all Pokémon type names.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="language">Language of the Pokémon type names to select (e.g. "en", "fr", "jp", etc.)</param>
|
|
|
|
|
/// <returns>An array of strings whose indexes correspond to the IDs of each Pokémon type name.</returns>
|
|
|
|
|
public static string[] GetTypesList(string language) => GetStringList("types", language);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a list of all Pokémon characteristic.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="language">Language of the Pokémon characteristic to select (e.g. "en", "fr", "jp", etc.)</param>
|
|
|
|
|
/// <returns>An array of strings whose indexes correspond to the IDs of each Pokémon characteristic.</returns>
|
|
|
|
|
public static string[] GetCharacteristicsList(string language) => GetStringList("character", language);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a list of all items.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="language">Language of the items to select (e.g. "en", "fr", "jp", etc.)</param>
|
|
|
|
|
/// <returns>An array of strings whose indexes correspond to the IDs of each item.</returns>
|
|
|
|
|
public static string[] GetItemsList(string language) => GetStringList("items", language);
|
|
|
|
|
|
2021-08-06 00:05:39 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Retrieves the localization index list for all requested strings for the <see cref="fileName"/> through Spanish.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="fileName">Base file name</param>
|
|
|
|
|
/// <remarks>Ignores Korean Language.</remarks>
|
2020-12-22 03:13:18 +00:00
|
|
|
|
public static string[][] GetLanguageStrings7(string fileName)
|
|
|
|
|
{
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
Array.Empty<string>(), // 0 - None
|
|
|
|
|
GetStringList(fileName, "ja"), // 1
|
|
|
|
|
GetStringList(fileName, "en"), // 2
|
|
|
|
|
GetStringList(fileName, "fr"), // 3
|
|
|
|
|
GetStringList(fileName, "it"), // 4
|
|
|
|
|
GetStringList(fileName, "de"), // 5
|
|
|
|
|
Array.Empty<string>(), // 6 - None
|
|
|
|
|
GetStringList(fileName, "es"), // 7
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-06 00:05:39 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Retrieves the localization index list for all requested strings for the <see cref="fileName"/> through Korean.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="fileName">Base file name</param>
|
2020-12-22 03:13:18 +00:00
|
|
|
|
public static string[][] GetLanguageStrings8(string fileName)
|
|
|
|
|
{
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
Array.Empty<string>(), // 0 - None
|
|
|
|
|
GetStringList(fileName, "ja"), // 1
|
|
|
|
|
GetStringList(fileName, "en"), // 2
|
|
|
|
|
GetStringList(fileName, "fr"), // 3
|
|
|
|
|
GetStringList(fileName, "it"), // 4
|
|
|
|
|
GetStringList(fileName, "de"), // 5
|
|
|
|
|
Array.Empty<string>(), // 6 - None
|
|
|
|
|
GetStringList(fileName, "es"), // 7
|
|
|
|
|
GetStringList(fileName, "ko"), // 8
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-06 00:05:39 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Retrieves the localization index list for all requested strings for the <see cref="fileName"/> through Chinese.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="fileName">Base file name</param>
|
|
|
|
|
/// <param name="zh2">String to use for the second Chinese localization.</param>
|
2020-12-22 03:13:18 +00:00
|
|
|
|
public static string[][] GetLanguageStrings10(string fileName, string zh2 = "zh")
|
|
|
|
|
{
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
Array.Empty<string>(), // 0 - None
|
|
|
|
|
GetStringList(fileName, "ja"), // 1
|
|
|
|
|
GetStringList(fileName, "en"), // 2
|
|
|
|
|
GetStringList(fileName, "fr"), // 3
|
|
|
|
|
GetStringList(fileName, "it"), // 4
|
|
|
|
|
GetStringList(fileName, "de"), // 5
|
|
|
|
|
Array.Empty<string>(), // 6 - None
|
|
|
|
|
GetStringList(fileName, "es"), // 7
|
|
|
|
|
GetStringList(fileName, "ko"), // 8
|
|
|
|
|
GetStringList(fileName, "zh"), // 9
|
|
|
|
|
GetStringList(fileName, zh2), // 10
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
public static string[] GetStringList(string fileName)
|
|
|
|
|
{
|
|
|
|
|
if (IsStringListCached(fileName, out var result))
|
|
|
|
|
return result;
|
|
|
|
|
var txt = GetStringResource(fileName); // Fetch File, \n to list.
|
|
|
|
|
return LoadStringList(fileName, txt);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool IsStringListCached(string fileName, out string[] result)
|
|
|
|
|
{
|
|
|
|
|
lock (getStringListLoadLock) // Make sure only one thread can read the cache
|
|
|
|
|
return stringListCache.TryGetValue(fileName, out result);
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-15 18:32:25 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Loads a text <see cref="file"/> into the program with a value of <see cref="txt"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>Caches the result array for future fetches.</remarks>
|
2020-12-22 03:13:18 +00:00
|
|
|
|
public static string[] LoadStringList(string file, string? txt)
|
|
|
|
|
{
|
|
|
|
|
if (txt == null)
|
|
|
|
|
return Array.Empty<string>();
|
|
|
|
|
string[] raw = txt.Split('\n');
|
|
|
|
|
for (int i = 0; i < raw.Length; i++)
|
2021-05-09 20:21:59 +00:00
|
|
|
|
{
|
2021-05-15 18:32:25 +00:00
|
|
|
|
// check for extra trimming; not all resources are "clean" with only \n line breaks.
|
2021-05-09 20:21:59 +00:00
|
|
|
|
var line = raw[i];
|
|
|
|
|
if (line.Length == 0)
|
|
|
|
|
continue;
|
2021-05-14 22:30:55 +00:00
|
|
|
|
if (line[^1] == '\r')
|
|
|
|
|
raw[i] = line[..^1];
|
2021-05-09 20:21:59 +00:00
|
|
|
|
}
|
2020-12-22 03:13:18 +00:00
|
|
|
|
|
|
|
|
|
lock (getStringListLoadLock) // Make sure only one thread can write to the cache
|
|
|
|
|
{
|
|
|
|
|
if (!stringListCache.ContainsKey(file)) // Check cache again in case of race condition
|
|
|
|
|
stringListCache.Add(file, raw);
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-11 01:41:01 +00:00
|
|
|
|
return raw;
|
2020-12-22 03:13:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-06 00:05:39 +00:00
|
|
|
|
public static string[] GetStringList(string fileName, string lang2char, string type = "text") => GetStringList(GetFullResourceName(fileName, lang2char, type));
|
|
|
|
|
|
|
|
|
|
private static string GetFullResourceName(string fileName, string lang2char, string type) => $"{type}_{fileName}_{lang2char}";
|
2020-12-22 03:13:18 +00:00
|
|
|
|
|
|
|
|
|
public static byte[] GetBinaryResource(string name)
|
|
|
|
|
{
|
2021-05-15 18:56:06 +00:00
|
|
|
|
if (!resourceNameMap.TryGetValue(name, out var resName))
|
|
|
|
|
return Array.Empty<byte>();
|
|
|
|
|
|
|
|
|
|
using var resource = thisAssembly.GetManifestResourceStream(resName);
|
2021-03-14 23:16:55 +00:00
|
|
|
|
if (resource is null)
|
|
|
|
|
return Array.Empty<byte>();
|
2021-05-15 18:56:06 +00:00
|
|
|
|
|
2020-12-22 03:13:18 +00:00
|
|
|
|
var buffer = new byte[resource.Length];
|
|
|
|
|
resource.Read(buffer, 0, (int)resource.Length);
|
|
|
|
|
return buffer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string? GetStringResource(string name)
|
|
|
|
|
{
|
2021-06-24 07:36:04 +00:00
|
|
|
|
if (!resourceNameMap.TryGetValue(name.ToLowerInvariant(), out var resourceName))
|
2021-05-15 18:56:06 +00:00
|
|
|
|
return null;
|
2020-12-22 03:13:18 +00:00
|
|
|
|
|
|
|
|
|
using var resource = thisAssembly.GetManifestResourceStream(resourceName);
|
2021-03-14 23:16:55 +00:00
|
|
|
|
if (resource is null)
|
2020-12-22 03:13:18 +00:00
|
|
|
|
return null;
|
|
|
|
|
using var reader = new StreamReader(resource);
|
|
|
|
|
return reader.ReadToEnd();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|