2020-08-30 17:23:22 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2019-09-13 06:20:52 +00:00
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <see cref="GameVersion.ORAS"/> encounter area
|
|
|
|
|
/// </summary>
|
2020-08-30 17:23:22 +00:00
|
|
|
|
public sealed class EncounterArea6AO : EncounterArea
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2020-08-30 17:23:22 +00:00
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
Location = data[0] | (data[1] << 8);
|
|
|
|
|
Type = (SlotType)data[2];
|
|
|
|
|
|
|
|
|
|
Slots = ReadSlots(data, game);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private EncounterSlot6AO[] ReadSlots(byte[] data, GameVersion game)
|
|
|
|
|
{
|
|
|
|
|
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, game);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return slots;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-04 02:40:31 +00:00
|
|
|
|
private const int FluteBoostMin = 4; // White Flute decreases levels.
|
|
|
|
|
private const int FluteBoostMax = 4; // Black Flute increases levels.
|
2019-09-20 05:54:53 +00:00
|
|
|
|
private const int DexNavBoost = 30; // Maximum DexNav chain
|
2019-09-13 06:20:52 +00:00
|
|
|
|
|
2020-08-21 23:35:49 +00:00
|
|
|
|
private const int RandomForm = 31;
|
2019-09-13 06:20:52 +00:00
|
|
|
|
|
2020-08-21 23:35:49 +00:00
|
|
|
|
public override IEnumerable<EncounterSlot> GetMatchingSlots(PKM pkm, IReadOnlyList<EvoCriteria> chain)
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2020-08-21 23:35:49 +00:00
|
|
|
|
foreach (var slot in Slots)
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2020-08-21 23:35:49 +00:00
|
|
|
|
foreach (var evo in chain)
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2020-08-21 23:35:49 +00:00
|
|
|
|
if (slot.Species != evo.Species)
|
|
|
|
|
continue;
|
|
|
|
|
|
2020-08-30 17:23:22 +00:00
|
|
|
|
var boostMax = Type != SlotType.Rock_Smash ? DexNavBoost : FluteBoostMax;
|
2020-08-21 23:35:49 +00:00
|
|
|
|
const int boostMin = FluteBoostMin;
|
|
|
|
|
if (!slot.IsLevelWithinRange(pkm.Met_Level, boostMin, boostMax))
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (slot.Form != evo.Form && slot.Form != RandomForm)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
var clone = (EncounterSlot6AO)slot.Clone();
|
|
|
|
|
MarkSlotDetails(pkm, clone, evo);
|
|
|
|
|
yield return clone;
|
|
|
|
|
break;
|
2019-09-13 06:20:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-08-21 23:35:49 +00:00
|
|
|
|
}
|
2019-09-13 06:20:52 +00:00
|
|
|
|
|
2020-08-21 23:35:49 +00:00
|
|
|
|
private static void MarkSlotDetails(PKM pkm, EncounterSlot6AO slot, EvoCriteria evo)
|
|
|
|
|
{
|
|
|
|
|
if (slot.LevelMin > evo.MinLevel)
|
|
|
|
|
slot.WhiteFlute = true;
|
|
|
|
|
if (slot.LevelMax + 1 <= evo.MinLevel && evo.MinLevel <= slot.LevelMax + FluteBoostMax)
|
|
|
|
|
slot.BlackFlute = true;
|
2020-08-30 17:23:22 +00:00
|
|
|
|
|
|
|
|
|
if (!slot.CanDexNav)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (slot.LevelMax != evo.MinLevel)
|
|
|
|
|
slot.DexNav = true;
|
|
|
|
|
if (pkm.RelearnMove1 != 0 || pkm.AbilityNumber == 4)
|
2020-08-21 23:35:49 +00:00
|
|
|
|
slot.DexNav = true;
|
2019-09-13 06:20:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-08-21 23:35:49 +00:00
|
|
|
|
}
|