PKHeX/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic1E.cs
Kurt ccf87242c1 Eliminate boxing on encounter search (criteria)
struct implementing interface is boxed when passed to method that accepts interface (not generic method).
Removes IDexLevel (no other inheritors but EvoCriteria) and uses the primitive the data is stored (array, not IReadOnlyList) for slightly better perf.
2022-05-07 18:29:36 -07:00

108 lines
3.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace PKHeX.Core
{
/// <summary>
/// Event data for Generation 1
/// </summary>
/// <inheritdoc cref="EncounterStatic1"/>
public sealed record EncounterStatic1E : EncounterStatic1, IFixedGBLanguage
{
public EncounterGBLanguage Language { get; init; } = EncounterGBLanguage.Japanese;
/// <summary> Trainer name for the event. </summary>
public string OT_Name { get; init; } = string.Empty;
public IReadOnlyList<string> OT_Names { get; init; } = Array.Empty<string>();
/// <summary> Trainer ID for the event. </summary>
public int TID { get; init; } = -1;
public EncounterStatic1E(byte species, byte level, GameVersion game) : base(species, level, game)
{
}
public override bool IsMatchExact(PKM pkm, EvoCriteria evo)
{
if (!base.IsMatchExact(pkm, evo))
return false;
if (Language != EncounterGBLanguage.Any && pkm.Japanese != (Language == EncounterGBLanguage.Japanese))
return false;
// EC/PID check doesn't exist for these, so check Shiny state here.
if (!IsShinyValid(pkm))
return false;
if (TID != -1 && pkm.TID != TID)
return false;
if (OT_Name.Length != 0)
{
if (pkm.OT_Name != OT_Name)
return false;
}
else if (OT_Names.Count != 0)
{
if (!OT_Names.Contains(pkm.OT_Name))
return false;
}
return true;
}
private bool IsShinyValid(PKM pkm) => Shiny switch
{
Shiny.Never => !pkm.IsShiny,
Shiny.Always => pkm.IsShiny,
_ => true,
};
protected override PKM GetBlank(ITrainerInfo tr) => Language switch
{
EncounterGBLanguage.Japanese => new PK1(true),
EncounterGBLanguage.International => new PK1(),
_ => new PK1(tr.Language == 1),
};
protected override void ApplyDetails(ITrainerInfo sav, EncounterCriteria criteria, PKM pk)
{
base.ApplyDetails(sav, criteria, pk);
if (Version == GameVersion.Stadium)
{
var pk1 = (PK1)pk;
// Amnesia Psyduck has different catch rates depending on language
if (Species == (int)Core.Species.Psyduck)
pk1.Catch_Rate = pk1.Japanese ? 167 : 168;
else
pk1.Catch_Rate = 167 + Util.Rand.Next(2); // 167 or 168
}
if (TID != -1)
pk.TID = TID;
if (OT_Name.Length != 0)
pk.OT_Name = OT_Name;
else if (OT_Names.Count != 0)
pk.OT_Name = OT_Names[Util.Rand.Next(OT_Names.Count)];
}
}
public interface IFixedGBLanguage
{
EncounterGBLanguage Language { get; }
}
/// <summary>
/// Generations 1 &amp; 2 cannot communicate between Japanese &amp; International versions.
/// </summary>
public enum EncounterGBLanguage
{
Japanese,
International,
Any,
}
}