2019-09-13 06:20:52 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc cref="EncounterArea" />
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <see cref="GameVersion.GSC"/> encounter area
|
|
|
|
|
/// </summary>
|
|
|
|
|
public sealed record EncounterArea2 : EncounterArea
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
private static readonly byte[] BCC_SlotRates = { 20, 20, 10, 10, 05, 05, 10, 10, 05, 05 };
|
|
|
|
|
private static readonly byte[] RatesGrass = { 30, 30, 20, 10, 5, 4, 1 };
|
|
|
|
|
private static readonly byte[] RatesSurf = { 60, 30, 10 };
|
2019-09-13 06:20:52 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
internal readonly EncounterTime Time;
|
|
|
|
|
public readonly byte Rate;
|
|
|
|
|
public readonly IReadOnlyList<byte> Rates;
|
|
|
|
|
public readonly EncounterSlot2[] Slots;
|
2021-06-30 03:58:06 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
protected override IReadOnlyList<EncounterSlot> Raw => Slots;
|
2019-09-13 06:20:52 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static EncounterArea2[] GetAreas(BinLinkerAccessor input, GameVersion game)
|
|
|
|
|
{
|
|
|
|
|
var result = new EncounterArea2[input.Length];
|
|
|
|
|
for (int i = 0; i < result.Length; i++)
|
|
|
|
|
result[i] = new EncounterArea2(input[i], game);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2019-09-13 06:20:52 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
private EncounterArea2(ReadOnlySpan<byte> data, GameVersion game) : base(game)
|
|
|
|
|
{
|
|
|
|
|
Location = data[0];
|
|
|
|
|
Time = (EncounterTime)data[1];
|
|
|
|
|
var type = (Type = (SlotType)data[2]) & (SlotType)0xF;
|
|
|
|
|
Rate = data[3];
|
2019-09-13 06:20:52 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
var next = data[4..];
|
|
|
|
|
if (type is > SlotType.Surf and not SlotType.BugContest) // Not Grass/Surf
|
|
|
|
|
{
|
|
|
|
|
const int size = 5;
|
|
|
|
|
int count = next.Length / size;
|
|
|
|
|
Rates = next[..count].ToArray();
|
|
|
|
|
Slots = ReadSlots(next[count..], count);
|
2019-12-06 07:04:24 +00:00
|
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
|
else
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2022-03-07 06:47:03 +00:00
|
|
|
|
const int size = 4;
|
2022-06-18 18:04:24 +00:00
|
|
|
|
int count = next.Length / size;
|
|
|
|
|
Rates = type switch
|
2019-09-13 06:20:52 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
SlotType.BugContest => BCC_SlotRates,
|
|
|
|
|
SlotType.Grass => RatesGrass,
|
|
|
|
|
_ => RatesSurf,
|
|
|
|
|
};
|
|
|
|
|
Slots = ReadSlots(next, count);
|
2019-09-13 06:20:52 +00:00
|
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
|
}
|
2020-07-19 18:32:40 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
private EncounterSlot2[] ReadSlots(ReadOnlySpan<byte> data, int count)
|
|
|
|
|
{
|
|
|
|
|
const int size = 4;
|
|
|
|
|
var slots = new EncounterSlot2[count];
|
|
|
|
|
for (int i = 0; i < slots.Length; i++)
|
2020-07-19 18:32:40 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
var entry = data.Slice(i * size, size);
|
|
|
|
|
byte max = entry[3];
|
|
|
|
|
byte min = entry[2];
|
|
|
|
|
byte slotNum = entry[1];
|
|
|
|
|
byte species = entry[0];
|
|
|
|
|
slots[i] = new EncounterSlot2(this, species, min, max, slotNum);
|
2020-07-19 18:32:40 +00:00
|
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
|
return slots;
|
|
|
|
|
}
|
2020-07-19 18:32:40 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public override IEnumerable<EncounterSlot> GetMatchingSlots(PKM pk, EvoCriteria[] chain)
|
|
|
|
|
{
|
|
|
|
|
if (pk is not ICaughtData2 {CaughtData: not 0} pk2)
|
|
|
|
|
return GetSlotsFuzzy(chain);
|
|
|
|
|
|
|
|
|
|
if (pk2.Met_Location != Location)
|
|
|
|
|
return Array.Empty<EncounterSlot>();
|
|
|
|
|
return GetSlotsSpecificLevelTime(chain, pk2.Met_TimeOfDay, pk2.Met_Level);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private IEnumerable<EncounterSlot2> GetSlotsSpecificLevelTime(EvoCriteria[] chain, int time, int lvl)
|
|
|
|
|
{
|
|
|
|
|
foreach (var slot in Slots)
|
2020-07-19 18:32:40 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
foreach (var evo in chain)
|
2020-08-21 23:35:49 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
if (slot.Species != evo.Species)
|
|
|
|
|
continue;
|
2020-08-21 23:35:49 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
if (slot.Form != evo.Form)
|
|
|
|
|
{
|
|
|
|
|
if (slot.Species != (int)Species.Unown || evo.Form >= 26) // Don't yield !? forms
|
2020-08-21 23:35:49 +00:00
|
|
|
|
break;
|
2022-06-18 18:04:24 +00:00
|
|
|
|
}
|
2020-08-21 23:35:49 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
if (!slot.IsLevelWithinRange(lvl))
|
|
|
|
|
break;
|
2020-08-21 23:35:49 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
if (!Time.Contains(time))
|
2020-08-21 23:35:49 +00:00
|
|
|
|
break;
|
2022-06-18 18:04:24 +00:00
|
|
|
|
|
|
|
|
|
yield return slot;
|
|
|
|
|
break;
|
2020-08-21 23:35:49 +00:00
|
|
|
|
}
|
2020-07-19 18:32:40 +00:00
|
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
|
}
|
2020-07-19 18:32:40 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
private IEnumerable<EncounterSlot2> GetSlotsFuzzy(EvoCriteria[] chain)
|
|
|
|
|
{
|
|
|
|
|
foreach (var slot in Slots)
|
2020-07-19 18:32:40 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
foreach (var evo in chain)
|
2020-08-21 23:35:49 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
if (slot.Species != evo.Species)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (slot.Form != evo.Form)
|
2020-08-21 23:35:49 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
if (slot.Species != (int) Species.Unown || evo.Form >= 26) // Don't yield !? forms
|
2020-08-21 23:35:49 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
|
if (slot.LevelMin > evo.LevelMax)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
yield return slot;
|
|
|
|
|
break;
|
2020-08-21 23:35:49 +00:00
|
|
|
|
}
|
2020-07-19 18:32:40 +00:00
|
|
|
|
}
|
2019-09-13 06:20:52 +00:00
|
|
|
|
}
|
2020-07-19 18:32:40 +00:00
|
|
|
|
}
|