mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
103aa9aa4b
EncounterArea now stores a more specific type'd array for encounter slots. Better iteration and less casting, as the nonspecific `Slots` fetch is rarely referenced. EncounterType renamed to GroundTile to reflect how it actually works in Gen4. Was previously an ambiguous field that was clarified a little; we can describe it a little better now. Keep the GUI the same to not scare the end users. Change Trash Byte properties to get/set a Span. Trash Byte legality checking easier on the garbage collector?
70 lines
2.2 KiB
C#
70 lines
2.2 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <inheritdoc cref="EncounterArea" />
|
|
/// <summary>
|
|
/// <see cref="GameVersion.GG"/> encounter area
|
|
/// </summary>
|
|
public sealed record EncounterArea7b : EncounterArea
|
|
{
|
|
public readonly EncounterSlot7b[] Slots;
|
|
|
|
protected override IReadOnlyList<EncounterSlot> Raw => Slots;
|
|
|
|
public static EncounterArea7b[] GetAreas(byte[][] input, GameVersion game)
|
|
{
|
|
var result = new EncounterArea7b[input.Length];
|
|
for (int i = 0; i < input.Length; i++)
|
|
result[i] = new EncounterArea7b(input[i], game);
|
|
return result;
|
|
}
|
|
|
|
private EncounterArea7b(byte[] data, GameVersion game) : base(game)
|
|
{
|
|
Location = data[0] | (data[1] << 8);
|
|
Slots = ReadSlots(data);
|
|
}
|
|
|
|
private EncounterSlot7b[] ReadSlots(byte[] data)
|
|
{
|
|
const int size = 4;
|
|
int count = (data.Length - 2) / size;
|
|
var slots = new EncounterSlot7b[count];
|
|
for (int i = 0; i < slots.Length; i++)
|
|
{
|
|
int offset = 2 + (size * i);
|
|
int species = data[offset]; // always < 255; only original 151
|
|
// form is always 0
|
|
int min = data[offset + 2];
|
|
int max = data[offset + 3];
|
|
slots[i] = new EncounterSlot7b(this, species, min, max);
|
|
}
|
|
|
|
return slots;
|
|
}
|
|
|
|
private const int CatchComboBonus = 1;
|
|
|
|
public override IEnumerable<EncounterSlot> GetMatchingSlots(PKM pkm, IReadOnlyList<EvoCriteria> chain)
|
|
{
|
|
foreach (var slot in Slots)
|
|
{
|
|
foreach (var evo in chain)
|
|
{
|
|
if (slot.Species != evo.Species)
|
|
continue;
|
|
|
|
var met = pkm.Met_Level;
|
|
if (!slot.IsLevelWithinRange(met, 0, CatchComboBonus))
|
|
break;
|
|
if (slot.Form != evo.Form)
|
|
break;
|
|
|
|
yield return slot;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|