mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
846f9506fb
Mark gen7 Minior slots with 31 Mark gen2 Unown slots with 31 Mark gen4 Unown slots with 31
85 lines
3.1 KiB
C#
85 lines
3.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <inheritdoc cref="EncounterArea" />
|
|
/// <summary>
|
|
/// <see cref="GameVersion.ORAS"/> encounter area
|
|
/// </summary>
|
|
public sealed record EncounterArea6AO : EncounterArea
|
|
{
|
|
public readonly EncounterSlot6AO[] Slots;
|
|
|
|
protected override IReadOnlyList<EncounterSlot> Raw => Slots;
|
|
|
|
public static EncounterArea6AO[] GetAreas(byte[][] input, GameVersion game)
|
|
{
|
|
var result = new EncounterArea6AO[input.Length];
|
|
for (int i = 0; i < input.Length; i++)
|
|
result[i] = new EncounterArea6AO(input[i], game);
|
|
return result;
|
|
}
|
|
|
|
private EncounterArea6AO(byte[] data, GameVersion game) : base(game)
|
|
{
|
|
Location = data[0] | (data[1] << 8);
|
|
Type = (SlotType)data[2];
|
|
|
|
Slots = ReadSlots(data);
|
|
}
|
|
|
|
private EncounterSlot6AO[] ReadSlots(byte[] data)
|
|
{
|
|
const int size = 4;
|
|
int count = (data.Length - 4) / size;
|
|
var slots = new EncounterSlot6AO[count];
|
|
for (int i = 0; i < slots.Length; i++)
|
|
{
|
|
int offset = 4 + (size * i);
|
|
ushort SpecForm = BitConverter.ToUInt16(data, offset);
|
|
int species = SpecForm & 0x3FF;
|
|
int form = SpecForm >> 11;
|
|
int min = data[offset + 2];
|
|
int max = data[offset + 3];
|
|
slots[i] = new EncounterSlot6AO(this, species, form, min, max);
|
|
}
|
|
|
|
return slots;
|
|
}
|
|
|
|
private const int FluteBoostMin = 4; // White Flute decreases levels.
|
|
private const int FluteBoostMax = 4; // Black Flute increases levels.
|
|
private const int DexNavBoost = 30; // Maximum DexNav chain
|
|
|
|
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 boostMax = Type != SlotType.Rock_Smash ? DexNavBoost : FluteBoostMax;
|
|
const int boostMin = FluteBoostMin;
|
|
if (!slot.IsLevelWithinRange(pkm.Met_Level, boostMin, boostMax))
|
|
break;
|
|
|
|
if (slot.Form != evo.Form && !slot.IsRandomUnspecificForm)
|
|
break;
|
|
|
|
// Track some metadata about how this slot was matched.
|
|
var clone = slot with
|
|
{
|
|
WhiteFlute = evo.MinLevel < slot.LevelMin,
|
|
BlackFlute = evo.MinLevel > slot.LevelMax && evo.MinLevel <= slot.LevelMax + FluteBoostMax,
|
|
DexNav = slot.CanDexNav && (evo.MinLevel != slot.LevelMax || pkm.RelearnMove1 != 0 || pkm.AbilityNumber == 4),
|
|
};
|
|
yield return clone;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|