using System; using System.Collections.Generic; using static System.Buffers.Binary.BinaryPrimitives; namespace PKHeX.Core { /// /// /// encounter area /// public sealed record EncounterArea7 : EncounterArea { public readonly EncounterSlot7[] Slots; protected override IReadOnlyList Raw => Slots; public static EncounterArea7[] GetAreas(BinLinkerAccessor input, GameVersion game) { var result = new EncounterArea7[input.Length]; for (int i = 0; i < result.Length; i++) result[i] = new EncounterArea7(input[i], game); return result; } private EncounterArea7(ReadOnlySpan data, GameVersion game) : base(game) { Location = data[0] | (data[1] << 8); Type = (SlotType)data[2]; Slots = ReadSlots(data); } private EncounterSlot7[] ReadSlots(ReadOnlySpan data) { const int size = 4; int count = (data.Length - 4) / size; var slots = new EncounterSlot7[count]; for (int i = 0; i < slots.Length; i++) { int offset = 4 + (size * i); var entry = data.Slice(offset, size); slots[i] = ReadSlot(entry); } return slots; } private EncounterSlot7 ReadSlot(ReadOnlySpan entry) { ushort species = ReadUInt16LittleEndian(entry); byte form = (byte)(species >> 11); species &= 0x3FF; byte min = entry[2]; byte max = entry[3]; return new EncounterSlot7(this, species, form, min, max); } public override IEnumerable GetMatchingSlots(PKM pkm, IReadOnlyList chain) { foreach (var slot in Slots) { foreach (var evo in chain) { if (slot.Species != evo.Species) continue; if (!slot.IsLevelWithinRange(pkm.Met_Level)) break; if (slot.Form != evo.Form && slot.Species is not ((int)Species.Furfrou or (int)Species.Oricorio)) { if (!slot.IsRandomUnspecificForm) // Minior, etc break; } yield return slot; break; } } } } }