PKHeX/PKHeX.Core/Legality/Structures/ILocation.cs
Kurt 1486b7f14a Misc style & minor tweaks
Remove move combobox flicker hack (no longer necessary)
Add more Array.Empty usages
cache mysterygift sizes
seal some classes

no functionality changes
2018-08-02 20:11:42 -07:00

35 lines
987 B
C#

namespace PKHeX.Core
{
public interface ILocation
{
int Location { get; set; }
int EggLocation { get; set; }
}
public static partial class Extensions
{
public static int GetLocation(this ILocation encounter)
{
if (encounter == null)
return -1;
return encounter.Location != 0
? encounter.Location
: encounter.EggLocation;
}
internal static string GetEncounterLocation(this ILocation Encounter, int gen, int version = -1)
{
int loc = Encounter.GetLocation();
if (loc < 0)
return null;
if (version == 15) // handle C/XD locations
{
var locs = GameInfo.Strings.metCXD_00000;
return loc >= locs.Length ? null : locs[loc];
}
return GameInfo.GetLocationName(loc != Encounter.Location, loc, gen, gen);
}
}
}