mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
88830e0d00
Updates from net46->net7, dropping support for mono in favor of using the latest runtime (along with the performance/API improvements). Releases will be posted as 64bit only for now. Refactors a good amount of internal API methods to be more performant and more customizable for future updates & fixes. Adds functionality for Batch Editor commands to `>`, `<` and <=/>= TID/SID properties renamed to TID16/SID16 for clarity; other properties exposed for Gen7 / display variants. Main window has a new layout to account for DPI scaling (8 point grid) Fixed: Tatsugiri and Paldean Tauros now output Showdown form names as Showdown expects Changed: Gen9 species now interact based on the confirmed National Dex IDs (closes #3724) Fixed: Pokedex set all no longer clears species with unavailable non-base forms (closes #3720) Changed: Hyper Training suggestions now apply for level 50 in SV. (closes #3714) Fixed: B2/W2 hatched egg met locations exclusive to specific versions are now explicitly checked (closes #3691) Added: Properties for ribbon/mark count (closes #3659) Fixed: Traded SV eggs are now checked correctly (closes #3692)
77 lines
2.2 KiB
C#
77 lines
2.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using static System.Buffers.Binary.BinaryPrimitives;
|
|
|
|
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<EncounterSlot7b> Raw => Slots;
|
|
|
|
public static EncounterArea7b[] GetAreas(BinLinkerAccessor input, GameVersion game)
|
|
{
|
|
var result = new EncounterArea7b[input.Length];
|
|
for (int i = 0; i < result.Length; i++)
|
|
result[i] = new EncounterArea7b(input[i], game);
|
|
return result;
|
|
}
|
|
|
|
private EncounterArea7b(ReadOnlySpan<byte> data, GameVersion game) : base(game)
|
|
{
|
|
Location = ReadInt16LittleEndian(data);
|
|
Slots = ReadSlots(data);
|
|
}
|
|
|
|
private EncounterSlot7b[] ReadSlots(ReadOnlySpan<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);
|
|
var entry = data.Slice(offset, size);
|
|
slots[i] = ReadSlot(entry);
|
|
}
|
|
|
|
return slots;
|
|
}
|
|
|
|
private EncounterSlot7b ReadSlot(ReadOnlySpan<byte> entry)
|
|
{
|
|
ushort species = entry[0]; // always < 255; only original 151
|
|
// form is always 0
|
|
byte min = entry[2];
|
|
byte max = entry[3];
|
|
return new EncounterSlot7b(this, species, min, max);
|
|
}
|
|
|
|
private const int CatchComboBonus = 1;
|
|
|
|
public override IEnumerable<EncounterSlot7b> GetMatchingSlots(PKM pk, EvoCriteria[] chain)
|
|
{
|
|
foreach (var slot in Slots)
|
|
{
|
|
foreach (var evo in chain)
|
|
{
|
|
if (slot.Species != evo.Species)
|
|
continue;
|
|
|
|
var met = pk.Met_Level;
|
|
if (!slot.IsLevelWithinRange(met, 0, CatchComboBonus))
|
|
break;
|
|
if (slot.Form != evo.Form)
|
|
break;
|
|
|
|
yield return slot;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|