2019-09-13 06:20:52 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
2021-01-01 18:55:33 +00:00
|
|
|
|
/// <inheritdoc cref="EncounterArea" />
|
2019-09-13 06:20:52 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// <see cref="GameVersion.Gen3"/> encounter area
|
|
|
|
|
/// </summary>
|
2021-01-01 18:55:33 +00:00
|
|
|
|
public sealed record EncounterArea3 : EncounterArea
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2020-08-30 17:23:22 +00:00
|
|
|
|
public readonly int Rate;
|
2021-06-30 03:58:06 +00:00
|
|
|
|
public readonly EncounterSlot3[] Slots;
|
|
|
|
|
|
|
|
|
|
protected override IReadOnlyList<EncounterSlot> Raw => Slots;
|
2020-08-30 17:23:22 +00:00
|
|
|
|
|
|
|
|
|
public static EncounterArea3[] GetAreas(byte[][] input, GameVersion game)
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2020-08-30 17:23:22 +00:00
|
|
|
|
var result = new EncounterArea3[input.Length];
|
|
|
|
|
for (int i = 0; i < input.Length; i++)
|
|
|
|
|
result[i] = new EncounterArea3(input[i], game);
|
|
|
|
|
return result;
|
2019-09-13 06:20:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-30 17:23:22 +00:00
|
|
|
|
public static EncounterArea3[] GetAreasSwarm(byte[][] input, GameVersion game)
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2020-08-30 17:23:22 +00:00
|
|
|
|
var result = new EncounterArea3[input.Length];
|
|
|
|
|
for (int i = 0; i < input.Length; i++)
|
2021-06-03 19:04:19 +00:00
|
|
|
|
result[i] = new EncounterArea3(input[i], game, SlotType.Swarm | SlotType.Grass);
|
2020-08-30 17:23:22 +00:00
|
|
|
|
return result;
|
2019-09-13 06:20:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-30 18:08:21 +00:00
|
|
|
|
private EncounterArea3(byte[] data, GameVersion game) : base(game)
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2020-08-30 17:23:22 +00:00
|
|
|
|
Location = data[0] | (data[1] << 8);
|
|
|
|
|
Type = (SlotType)data[2];
|
|
|
|
|
Rate = data[3];
|
|
|
|
|
|
2020-08-30 18:08:21 +00:00
|
|
|
|
Slots = ReadRegularSlots(data);
|
2019-09-13 06:20:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 19:04:19 +00:00
|
|
|
|
private EncounterArea3(byte[] data, GameVersion game, SlotType type) : base(game)
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2020-08-30 17:23:22 +00:00
|
|
|
|
Location = data[0] | (data[1] << 8);
|
2021-06-03 19:04:19 +00:00
|
|
|
|
Type = type;
|
2020-08-30 17:23:22 +00:00
|
|
|
|
Rate = data[3];
|
2019-09-13 06:20:52 +00:00
|
|
|
|
|
2020-08-30 18:08:21 +00:00
|
|
|
|
Slots = ReadSwarmSlots(data);
|
2019-09-13 06:20:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-30 18:08:21 +00:00
|
|
|
|
private EncounterSlot3[] ReadRegularSlots(byte[] data)
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2020-08-30 17:23:22 +00:00
|
|
|
|
const int size = 10;
|
|
|
|
|
int count = (data.Length - 4) / size;
|
|
|
|
|
var slots = new EncounterSlot3[count];
|
|
|
|
|
for (int i = 0; i < slots.Length; i++)
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2020-08-30 17:23:22 +00:00
|
|
|
|
int offset = 4 + (size * i);
|
|
|
|
|
|
|
|
|
|
int species = BitConverter.ToUInt16(data, offset + 0);
|
|
|
|
|
int form = data[offset + 2];
|
|
|
|
|
int slotNum = data[offset + 3];
|
|
|
|
|
int min = data[offset + 4];
|
|
|
|
|
int max = data[offset + 5];
|
|
|
|
|
|
|
|
|
|
int mpi = data[offset + 6];
|
|
|
|
|
int mpc = data[offset + 7];
|
|
|
|
|
int sti = data[offset + 8];
|
|
|
|
|
int stc = data[offset + 9];
|
2020-08-30 18:08:21 +00:00
|
|
|
|
slots[i] = new EncounterSlot3(this, species, form, min, max, slotNum, mpi, mpc, sti, stc);
|
2020-08-30 17:23:22 +00:00
|
|
|
|
}
|
2019-09-13 06:20:52 +00:00
|
|
|
|
|
2020-08-30 17:23:22 +00:00
|
|
|
|
return slots;
|
2019-09-13 06:20:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-30 18:08:21 +00:00
|
|
|
|
private EncounterSlot3[] ReadSwarmSlots(byte[] data)
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2020-08-30 17:23:22 +00:00
|
|
|
|
const int size = 14;
|
|
|
|
|
int count = (data.Length - 4) / size;
|
|
|
|
|
var slots = new EncounterSlot3[count];
|
|
|
|
|
for (int i = 0; i < slots.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
int offset = 4 + (size * i);
|
|
|
|
|
|
|
|
|
|
int species = BitConverter.ToUInt16(data, offset + 0);
|
|
|
|
|
// form always 0
|
|
|
|
|
int slotNum = data[offset + 3];
|
|
|
|
|
int min = data[offset + 4];
|
|
|
|
|
int max = data[offset + 5];
|
|
|
|
|
|
|
|
|
|
int[] moves =
|
|
|
|
|
{
|
|
|
|
|
BitConverter.ToUInt16(data, offset + 6),
|
|
|
|
|
BitConverter.ToUInt16(data, offset + 8),
|
|
|
|
|
BitConverter.ToUInt16(data, offset + 10),
|
|
|
|
|
BitConverter.ToUInt16(data, offset + 12),
|
|
|
|
|
};
|
|
|
|
|
|
2020-08-30 18:08:21 +00:00
|
|
|
|
slots[i] = new EncounterSlot3Swarm(this, species, min, max, slotNum, moves);
|
2020-08-30 17:23:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return slots;
|
2019-09-13 06:20:52 +00:00
|
|
|
|
}
|
2019-09-19 23:19:07 +00:00
|
|
|
|
|
2020-08-21 23:35:49 +00:00
|
|
|
|
public override IEnumerable<EncounterSlot> GetMatchingSlots(PKM pkm, IReadOnlyList<EvoCriteria> chain)
|
2019-09-19 23:19:07 +00:00
|
|
|
|
{
|
2020-08-21 23:35:49 +00:00
|
|
|
|
if (pkm.Format != 3) // Met Location and Met Level are changed on PK3->PK4
|
|
|
|
|
return GetSlotsFuzzy(chain);
|
|
|
|
|
if (pkm.Met_Location != Location)
|
|
|
|
|
return Array.Empty<EncounterSlot>();
|
|
|
|
|
return GetSlotsMatching(chain, pkm.Met_Level);
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-30 03:58:06 +00:00
|
|
|
|
private IEnumerable<EncounterSlot3> GetSlotsMatching(IReadOnlyList<EvoCriteria> chain, int lvl)
|
2020-08-21 23:35:49 +00:00
|
|
|
|
{
|
|
|
|
|
foreach (var slot in Slots)
|
|
|
|
|
{
|
|
|
|
|
foreach (var evo in chain)
|
|
|
|
|
{
|
|
|
|
|
if (slot.Species != evo.Species)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (slot.Form != evo.Form)
|
|
|
|
|
break;
|
|
|
|
|
if (!slot.IsLevelWithinRange(lvl))
|
|
|
|
|
break;
|
2019-09-19 23:19:07 +00:00
|
|
|
|
|
2020-08-21 23:35:49 +00:00
|
|
|
|
yield return slot;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-09-19 23:19:07 +00:00
|
|
|
|
}
|
2020-02-05 01:38:35 +00:00
|
|
|
|
|
2021-06-30 03:58:06 +00:00
|
|
|
|
private IEnumerable<EncounterSlot3> GetSlotsFuzzy(IReadOnlyList<EvoCriteria> chain)
|
2020-02-05 01:38:35 +00:00
|
|
|
|
{
|
2020-08-21 23:35:49 +00:00
|
|
|
|
foreach (var slot in Slots)
|
|
|
|
|
{
|
|
|
|
|
foreach (var evo in chain)
|
|
|
|
|
{
|
|
|
|
|
if (slot.Species != evo.Species)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (slot.Form != evo.Form)
|
|
|
|
|
break;
|
2020-08-30 17:23:22 +00:00
|
|
|
|
if (slot.LevelMin > evo.Level)
|
2020-08-21 23:35:49 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
yield return slot;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-05 01:38:35 +00:00
|
|
|
|
}
|
2019-09-13 06:20:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|