mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
99 lines
3 KiB
C#
99 lines
3 KiB
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public abstract class EggMoves
|
|
{
|
|
public readonly int[] Moves;
|
|
protected EggMoves(int[] moves) => Moves = moves;
|
|
public bool GetHasEggMove(int move) => Moves.Contains(move);
|
|
}
|
|
|
|
public sealed class EggMoves2 : EggMoves
|
|
{
|
|
private EggMoves2(int[] moves) : base(moves) { }
|
|
|
|
public static EggMoves2[] GetArray(byte[] data, int count)
|
|
{
|
|
var entries = new EggMoves2[count + 1];
|
|
var empty = entries[0] = new EggMoves2(Array.Empty<int>());
|
|
|
|
int baseOffset = BitConverter.ToInt16(data, 0) - (count * 2);
|
|
for (int i = 1; i < entries.Length; i++)
|
|
{
|
|
int start = BitConverter.ToInt16(data, (i - 1) * 2) - baseOffset;
|
|
int end = Array.IndexOf(data, (byte)0xFF, start);
|
|
if (start == end)
|
|
{
|
|
entries[i] = empty;
|
|
continue;
|
|
}
|
|
|
|
int[] moves = new int[end - start];
|
|
for (int m = start; m < end; m++)
|
|
moves[m - start] = data[m];
|
|
|
|
entries[i] = new EggMoves2(moves);
|
|
}
|
|
|
|
return entries;
|
|
}
|
|
}
|
|
|
|
public sealed class EggMoves6 : EggMoves
|
|
{
|
|
private static readonly EggMoves6 None = new(Array.Empty<int>());
|
|
|
|
private EggMoves6(int[] moves) : base(moves) { }
|
|
|
|
private static EggMoves6 Get(byte[] data)
|
|
{
|
|
if (data.Length == 0)
|
|
return None;
|
|
|
|
int count = BitConverter.ToInt16(data, 0);
|
|
var moves = new int[count];
|
|
for (int i = 0; i < moves.Length; i++)
|
|
moves[i] = BitConverter.ToInt16(data, 2 + (i * 2));
|
|
return new EggMoves6(moves);
|
|
}
|
|
|
|
public static EggMoves6[] GetArray(byte[][] entries)
|
|
{
|
|
EggMoves6[] data = new EggMoves6[entries.Length];
|
|
for (int i = 0; i < data.Length; i++)
|
|
data[i] = Get(entries[i]);
|
|
return data;
|
|
}
|
|
}
|
|
|
|
public sealed class EggMoves7 : EggMoves
|
|
{
|
|
private static readonly EggMoves7 None = new(Array.Empty<int>());
|
|
public readonly int FormTableIndex;
|
|
|
|
private EggMoves7(int[] moves, int formIndex = 0) : base(moves) => FormTableIndex = formIndex;
|
|
|
|
private static EggMoves7 Get(byte[] data)
|
|
{
|
|
if (data.Length == 0)
|
|
return None;
|
|
|
|
int formIndex = BitConverter.ToInt16(data, 0);
|
|
int count = BitConverter.ToInt16(data, 2);
|
|
var moves = new int[count];
|
|
for (int i = 0; i < moves.Length; i++)
|
|
moves[i] = BitConverter.ToInt16(data, 4 + (i * 2));
|
|
return new EggMoves7(moves, formIndex);
|
|
}
|
|
|
|
public static EggMoves7[] GetArray(byte[][] entries)
|
|
{
|
|
EggMoves7[] data = new EggMoves7[entries.Length];
|
|
for (int i = 0; i < data.Length; i++)
|
|
data[i] = Get(entries[i]);
|
|
return data;
|
|
}
|
|
}
|
|
}
|