2021-08-22 00:01:50 +00:00
|
|
|
|
using System.Collections.Generic;
|
2018-08-03 03:11:42 +00:00
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
2018-03-09 05:18:32 +00:00
|
|
|
|
{
|
2019-09-10 07:21:51 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Shadow Pokémon Encounter found in <see cref="GameVersion.CXD"/>
|
|
|
|
|
/// </summary>
|
2020-11-27 19:51:02 +00:00
|
|
|
|
/// <inheritdoc cref="EncounterStatic"/>
|
2021-12-09 09:08:46 +00:00
|
|
|
|
/// <param name="ID">Initial Shadow Gauge value.</param>
|
|
|
|
|
/// <param name="Gauge">Initial Shadow Gauge value.</param>
|
|
|
|
|
/// <param name="Locks">Team Specification with required <see cref="Species"/>, <see cref="Nature"/> and Gender.</param>
|
|
|
|
|
// ReSharper disable NotAccessedPositionalProperty.Global
|
|
|
|
|
public sealed record EncounterStaticShadow(GameVersion Version, byte ID, short Gauge, TeamLock[] Locks) : EncounterStatic(Version)
|
2018-03-09 05:18:32 +00:00
|
|
|
|
{
|
2021-12-09 09:08:46 +00:00
|
|
|
|
// ReSharper restore NotAccessedPositionalProperty.Global
|
2020-09-13 21:40:10 +00:00
|
|
|
|
public override int Generation => 3;
|
|
|
|
|
|
2019-09-10 07:21:51 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Originates from the EReader scans (Japanese Only)
|
|
|
|
|
/// </summary>
|
2020-09-13 21:40:10 +00:00
|
|
|
|
public bool EReader => ReferenceEquals(IVs, EReaderEmpty);
|
|
|
|
|
|
|
|
|
|
public static readonly IReadOnlyList<int> EReaderEmpty = new[] {0,0,0,0,0,0};
|
2018-08-03 03:11:42 +00:00
|
|
|
|
|
2020-08-30 17:23:22 +00:00
|
|
|
|
protected override bool IsMatchLocation(PKM pkm)
|
|
|
|
|
{
|
|
|
|
|
if (pkm.Format != 3)
|
|
|
|
|
return true; // transfer location verified later
|
|
|
|
|
|
|
|
|
|
var met = pkm.Met_Location;
|
2021-08-22 00:01:50 +00:00
|
|
|
|
if (met == Location)
|
|
|
|
|
return true;
|
2020-08-30 17:23:22 +00:00
|
|
|
|
|
2021-08-22 00:01:50 +00:00
|
|
|
|
// XD can re-battle with Miror B
|
|
|
|
|
// Realgam Tower, Rock, Oasis, Cave, Pyrite Town
|
|
|
|
|
return Version == GameVersion.XD && met is (59 or 90 or 91 or 92 or 113);
|
2020-08-30 17:23:22 +00:00
|
|
|
|
}
|
2020-09-13 21:40:10 +00:00
|
|
|
|
|
|
|
|
|
protected override bool IsMatchLevel(PKM pkm, DexLevel evo)
|
|
|
|
|
{
|
|
|
|
|
if (pkm.Format != 3) // Met Level lost on PK3=>PK4
|
|
|
|
|
return Level <= evo.Level;
|
|
|
|
|
|
|
|
|
|
return pkm.Met_Level == Level;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void ApplyDetails(ITrainerInfo sav, EncounterCriteria criteria, PKM pk)
|
|
|
|
|
{
|
|
|
|
|
base.ApplyDetails(sav, criteria, pk);
|
|
|
|
|
((IRibbonSetEvent3)pk).RibbonNational = true;
|
|
|
|
|
}
|
2021-01-31 03:42:58 +00:00
|
|
|
|
|
|
|
|
|
protected override void SetPINGA(PKM pk, EncounterCriteria criteria)
|
2022-02-09 17:26:10 +00:00
|
|
|
|
{
|
|
|
|
|
if (!EReader)
|
|
|
|
|
SetPINGA_Regular(pk, criteria);
|
|
|
|
|
else
|
|
|
|
|
SetPINGA_EReader(pk);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void SetPINGA_Regular(PKM pk, EncounterCriteria criteria)
|
2021-01-31 03:42:58 +00:00
|
|
|
|
{
|
|
|
|
|
var pi = pk.PersonalInfo;
|
|
|
|
|
int gender = criteria.GetGender(-1, pi);
|
|
|
|
|
int nature = (int)criteria.GetNature(Nature.Random);
|
2021-03-24 00:05:15 +00:00
|
|
|
|
int ability = criteria.GetAbilityFromNumber(0);
|
2021-01-31 03:42:58 +00:00
|
|
|
|
|
|
|
|
|
// Ensure that any generated specimen has valid Shadow Locks
|
|
|
|
|
// This can be kinda slow, depending on how many locks / how strict they are.
|
|
|
|
|
// Cancel this operation if too many attempts are made to prevent infinite loops.
|
|
|
|
|
int ctr = 0;
|
|
|
|
|
const int max = 100_000;
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
PIDGenerator.SetRandomWildPID(pk, 3, nature, ability, gender, PIDType.CXD);
|
|
|
|
|
var pidiv = MethodFinder.Analyze(pk);
|
|
|
|
|
var result = LockFinder.IsAllShadowLockValid(this, pidiv, pk);
|
|
|
|
|
if (result)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
while (++ctr <= max);
|
|
|
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
|
System.Diagnostics.Debug.Assert(ctr < 100_000);
|
|
|
|
|
#endif
|
2022-02-09 17:26:10 +00:00
|
|
|
|
}
|
2021-01-31 03:42:58 +00:00
|
|
|
|
|
2022-02-09 17:26:10 +00:00
|
|
|
|
private void SetPINGA_EReader(PKM pk)
|
|
|
|
|
{
|
2021-01-31 03:42:58 +00:00
|
|
|
|
// E-Reader have all IVs == 0
|
2022-02-09 17:26:10 +00:00
|
|
|
|
for (int i = 0; i < IVs.Count; i++)
|
|
|
|
|
pk.SetIV(i, 0);
|
|
|
|
|
|
|
|
|
|
// All E-Reader shadows are actually nature/gender locked.
|
|
|
|
|
var locked = Locks[0].Locks[^1];
|
|
|
|
|
var (nature, gender) = locked.GetLock;
|
|
|
|
|
|
|
|
|
|
// Ensure that any generated specimen has valid Shadow Locks
|
|
|
|
|
// This can be kinda slow, depending on how many locks / how strict they are.
|
|
|
|
|
// Cancel this operation if too many attempts are made to prevent infinite loops.
|
|
|
|
|
int ctr = 0;
|
|
|
|
|
const int max = 100_000;
|
|
|
|
|
do
|
2021-01-31 03:42:58 +00:00
|
|
|
|
{
|
2022-02-09 17:26:10 +00:00
|
|
|
|
var seed = Util.Rand32();
|
|
|
|
|
PIDGenerator.SetValuesFromSeedXDRNG_EReader(pk, seed);
|
|
|
|
|
if (pk.Nature != nature || pk.Gender != gender)
|
|
|
|
|
continue;
|
|
|
|
|
var pidiv = new PIDIV(PIDType.CXD, seed);
|
|
|
|
|
var result = LockFinder.IsAllShadowLockValid(this, pidiv, pk);
|
|
|
|
|
if (result)
|
|
|
|
|
break;
|
2021-01-31 03:42:58 +00:00
|
|
|
|
}
|
2022-02-09 17:26:10 +00:00
|
|
|
|
while (++ctr <= max);
|
|
|
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
|
System.Diagnostics.Debug.Assert(ctr < 100_000);
|
|
|
|
|
#endif
|
2021-01-31 03:42:58 +00:00
|
|
|
|
}
|
2018-10-21 02:03:04 +00:00
|
|
|
|
}
|
2020-08-30 17:23:22 +00:00
|
|
|
|
}
|