2022-08-27 06:43:36 +00:00
|
|
|
using System;
|
2020-11-14 20:51:24 +00:00
|
|
|
using System.Collections.Generic;
|
2022-01-03 05:35:59 +00:00
|
|
|
using static System.Buffers.Binary.BinaryPrimitives;
|
2020-11-11 06:10:53 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
/// <inheritdoc cref="EncounterArea" />
|
|
|
|
/// <summary>
|
|
|
|
/// <see cref="GameVersion.GO"/> encounter area for direct-to-HOME transfers.
|
|
|
|
/// </summary>
|
|
|
|
public sealed record EncounterArea8g : EncounterArea, ISpeciesForm
|
2020-11-11 06:10:53 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
/// <summary> Species for the area </summary>
|
|
|
|
/// <remarks> Due to how the encounter data is packaged by PKHeX, each species-form is grouped together. </remarks>
|
2022-08-27 06:43:36 +00:00
|
|
|
public ushort Species { get; }
|
2022-06-18 18:04:24 +00:00
|
|
|
/// <summary> Form of the Species </summary>
|
2022-08-27 06:43:36 +00:00
|
|
|
public byte Form { get; }
|
2022-06-18 18:04:24 +00:00
|
|
|
public readonly EncounterSlot8GO[] Slots;
|
2020-11-11 06:10:53 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
protected override IReadOnlyList<EncounterSlot> Raw => Slots;
|
2021-06-30 03:58:06 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private EncounterArea8g(ushort species, byte form, EncounterSlot8GO[] slots) : base(GameVersion.GO)
|
|
|
|
{
|
|
|
|
Species = species;
|
|
|
|
Form = form;
|
|
|
|
Location = Locations.GO8;
|
|
|
|
Slots = slots;
|
|
|
|
}
|
2020-11-11 06:10:53 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
internal static EncounterArea8g[] GetArea(BinLinkerAccessor data)
|
|
|
|
{
|
|
|
|
var areas = new EncounterArea8g[data.Length];
|
|
|
|
for (int i = 0; i < areas.Length; i++)
|
|
|
|
areas[i] = GetArea(data[i]);
|
|
|
|
return areas;
|
|
|
|
}
|
2020-11-11 06:10:53 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private const int meta = 4;
|
|
|
|
private const int entrySize = (2 * sizeof(int)) + 2;
|
2020-11-14 20:51:24 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private static EncounterArea8g GetArea(ReadOnlySpan<byte> data)
|
|
|
|
{
|
|
|
|
var species = ReadUInt16LittleEndian(data);
|
|
|
|
var form = data[2];
|
|
|
|
var import = (PogoImportFormat)data[3];
|
|
|
|
|
|
|
|
data = data[meta..];
|
|
|
|
var result = new EncounterSlot8GO[data.Length / entrySize];
|
|
|
|
var area = new EncounterArea8g(species, form, result);
|
|
|
|
for (int i = 0; i < result.Length; i++)
|
2020-11-11 06:10:53 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
var offset = i * entrySize;
|
|
|
|
var entry = data.Slice(offset, entrySize);
|
|
|
|
result[i] = ReadSlot(entry, area, species, form, import);
|
2020-11-11 06:10:53 +00:00
|
|
|
}
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
return area;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static EncounterSlot8GO ReadSlot(ReadOnlySpan<byte> entry, EncounterArea8g area, ushort species, byte form, PogoImportFormat format)
|
|
|
|
{
|
|
|
|
int start = ReadInt32LittleEndian(entry);
|
|
|
|
int end = ReadInt32LittleEndian(entry[4..]);
|
|
|
|
var sg = entry[8];
|
|
|
|
var shiny = (Shiny)(sg & 0x3F);
|
|
|
|
var gender = (Gender)(sg >> 6);
|
|
|
|
var type = (PogoType)entry[9];
|
|
|
|
return new EncounterSlot8GO(area, species, form, start, end, shiny, gender, type, format);
|
|
|
|
}
|
2020-11-11 06:10:53 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
public override IEnumerable<EncounterSlot> GetMatchingSlots(PKM pk, EvoCriteria[] chain)
|
|
|
|
{
|
|
|
|
if (pk.TSV == 0) // HOME doesn't assign TSV=0 to accounts.
|
|
|
|
yield break;
|
|
|
|
|
|
|
|
// Find the first chain that has slots defined.
|
|
|
|
// Since it is possible to evolve before transferring, we only need the highest evolution species possible.
|
|
|
|
// PoGoEncTool has already extrapolated the evolutions to separate encounters!
|
|
|
|
var sf = FindCriteriaToIterate(pk, chain);
|
|
|
|
if (sf == default)
|
|
|
|
yield break;
|
|
|
|
|
|
|
|
var species = pk.Species;
|
|
|
|
var ball = (Ball)pk.Ball;
|
|
|
|
var met = Math.Max(sf.LevelMin, pk.Met_Level);
|
|
|
|
EncounterSlot8GO? deferredIV = null;
|
|
|
|
|
|
|
|
foreach (var slot in Slots)
|
2020-11-11 06:10:53 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
if (!slot.IsLevelWithinRange(met))
|
|
|
|
continue;
|
|
|
|
if (!slot.IsBallValid(ball, species))
|
|
|
|
continue;
|
|
|
|
if (!slot.Shiny.IsValid(pk))
|
|
|
|
continue;
|
|
|
|
if (slot.Gender != Gender.Random && (int)slot.Gender != pk.Gender)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!slot.GetIVsValid(pk))
|
2020-11-14 20:51:24 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
deferredIV ??= slot;
|
|
|
|
continue;
|
2020-11-11 06:10:53 +00:00
|
|
|
}
|
2021-02-05 22:20:43 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
yield return slot;
|
2020-11-11 06:10:53 +00:00
|
|
|
}
|
2022-05-31 04:43:52 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (deferredIV != null)
|
|
|
|
yield return deferredIV;
|
|
|
|
}
|
|
|
|
|
|
|
|
private EvoCriteria FindCriteriaToIterate(PKM pk, EvoCriteria[] chain)
|
|
|
|
{
|
|
|
|
foreach (var evo in chain)
|
2022-05-31 04:43:52 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
if (evo.Species != Species)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (evo.Form == Form)
|
|
|
|
return evo;
|
|
|
|
|
|
|
|
// Check for form mismatches
|
|
|
|
if (FormInfo.IsFormChangeable(Species, Form, evo.Form, pk.Format))
|
|
|
|
return evo;
|
|
|
|
if (Species == (int)Core.Species.Burmy)
|
|
|
|
return evo;
|
|
|
|
break;
|
2022-05-31 04:43:52 +00:00
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
return default;
|
2020-11-11 06:10:53 +00:00
|
|
|
}
|
|
|
|
}
|