PKHeX/PKHeX.Core/Game/GameStrings/LocationSet/LocationSet4.cs
Kurt d47bb1d297
Update .NET Runtime to .NET 8.0 (#4082)
With the new version of Visual Studio bringing C# 12, we can revise our logic for better readability as well as use new methods/APIs introduced in the .NET 8.0 BCL.
2023-12-03 20:13:20 -08:00

37 lines
902 B
C#

using System;
using System.Collections.Generic;
namespace PKHeX.Core;
public sealed record LocationSet4(string[] Met0, string[] Met2, string[] Met3) : ILocationSet
{
public ReadOnlySpan<string> GetLocationNames(int bankID) => bankID switch
{
0 => Met0,
2 => Met2,
3 => Met3,
_ => [],
};
public string GetLocationName(int locationID) => locationID switch
{
>= 3000 => Get(Met3, locationID - 3000),
>= 2000 => Get(Met2, locationID - 2000),
_ => Get(Met0, locationID),
};
private static string Get(string[] names, int index)
{
if ((uint)index >= names.Length)
return string.Empty;
return names[index];
}
public IEnumerable<(int Bank, string[] Names)> GetAll()
{
yield return (0, Met0);
yield return (2, Met2);
yield return (3, Met3);
}
}