mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
4c280c4c6d
Read without splitting the arrays by using span instead.
77 lines
3.5 KiB
C#
77 lines
3.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Miscellaneous setup utility for legality checking <see cref="IEncounterTemplate"/> data sources.
|
|
/// </summary>
|
|
internal static class EncounterUtil
|
|
{
|
|
internal static BinLinkerAccessor Get(string resource, string ident) => BinLinkerAccessor.Get(Util.GetBinaryResource($"encounter_{resource}.pkl"), ident);
|
|
|
|
/// <summary>
|
|
/// Gets the relevant <see cref="EncounterStatic"/> objects that appear in the relevant game.
|
|
/// </summary>
|
|
/// <param name="source">Table of valid encounters that appear for the game pairing</param>
|
|
/// <param name="game">Game to filter for</param>
|
|
/// <returns>Array of encounter objects that can be encountered in the input game</returns>
|
|
internal static T[] GetEncounters<T>(T[] source, GameVersion game) where T : EncounterStatic
|
|
{
|
|
return Array.FindAll(source, s => s.Version.Contains(game));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Loads the language string lists into the <see cref="T"/> objects.
|
|
/// </summary>
|
|
/// <typeparam name="T">Encounter template type</typeparam>
|
|
/// <param name="table">Trade templates</param>
|
|
/// <param name="strings">Localization strings, grouped by language.</param>
|
|
/// <remarks>
|
|
/// The first half of strings in the language resource array are <see cref="EncounterTrade.Nicknames"/>
|
|
/// The second half of strings in the language resource strings are <see cref="EncounterTrade.TrainerNames"/>
|
|
/// </remarks>
|
|
internal static void MarkEncounterTradeStrings<T>(T[] table, string[][] strings) where T : EncounterTrade
|
|
{
|
|
uint languageCount = (uint)strings[1].Length / 2;
|
|
for (uint i = 0; i < languageCount; i++)
|
|
{
|
|
var t = table[i];
|
|
t.Nicknames = GetNamesForLanguage(strings, i);
|
|
t.TrainerNames = GetNamesForLanguage(strings, languageCount + i);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Loads the language string lists into the <see cref="T"/> objects.
|
|
/// </summary>
|
|
/// <typeparam name="T">Encounter template type</typeparam>
|
|
/// <param name="table">Trade templates</param>
|
|
/// <param name="strings">Localization strings, grouped by language.</param>
|
|
internal static void MarkEncounterTradeNicknames<T>(T[] table, string[][] strings) where T : EncounterTrade
|
|
{
|
|
for (uint i = 0; i < table.Length; i++)
|
|
{
|
|
var t = table[i];
|
|
t.Nicknames = GetNamesForLanguage(strings, i);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Grabs the localized names for individual templates for all languages from the specified <see cref="index"/> of the <see cref="names"/> list.
|
|
/// </summary>
|
|
/// <param name="names">Arrays of strings grouped by language</param>
|
|
/// <param name="index">Index to grab from the language arrays</param>
|
|
/// <returns>Row of localized strings for the template.</returns>
|
|
private static string[] GetNamesForLanguage(IReadOnlyList<string[]> names, uint index)
|
|
{
|
|
var result = new string[names.Count];
|
|
for (int i = 0; i < result.Length; i++)
|
|
{
|
|
var arr = names[i];
|
|
result[i] = index < arr.Length ? arr[index] : string.Empty;
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
}
|