2018-05-19 19:07:50 +00:00
|
|
|
using System;
|
2019-03-23 17:36:28 +00:00
|
|
|
using System.Collections.Generic;
|
2018-05-19 19:07:50 +00:00
|
|
|
|
|
|
|
namespace PKHeX.Core
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Generation 7 Evolution Branch Entries
|
|
|
|
/// </summary>
|
2019-03-23 17:36:28 +00:00
|
|
|
public static class EvolutionSet7
|
2018-05-19 19:07:50 +00:00
|
|
|
{
|
|
|
|
private const int SIZE = 8;
|
2018-09-15 05:37:47 +00:00
|
|
|
|
2019-03-23 17:36:28 +00:00
|
|
|
private static EvolutionMethod[] GetMethods(byte[] data)
|
2018-05-19 19:07:50 +00:00
|
|
|
{
|
2019-03-23 17:36:28 +00:00
|
|
|
var evos = new EvolutionMethod[data.Length / SIZE];
|
2018-05-19 19:07:50 +00:00
|
|
|
for (int i = 0; i < data.Length; i += SIZE)
|
|
|
|
{
|
2019-03-23 17:36:28 +00:00
|
|
|
evos[i / SIZE] = new EvolutionMethod
|
2018-05-19 19:07:50 +00:00
|
|
|
{
|
|
|
|
Method = BitConverter.ToUInt16(data, i + 0),
|
|
|
|
Argument = BitConverter.ToUInt16(data, i + 2),
|
|
|
|
Species = BitConverter.ToUInt16(data, i + 4),
|
|
|
|
Form = (sbyte)data[i + 6],
|
|
|
|
Level = data[i + 7],
|
|
|
|
};
|
|
|
|
}
|
2019-03-23 17:36:28 +00:00
|
|
|
return evos;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static IReadOnlyList<EvolutionMethod[]> GetArray(IReadOnlyList<byte[]> data)
|
|
|
|
{
|
|
|
|
var evos = new EvolutionMethod[data.Count][];
|
|
|
|
for (int i = 0; i < evos.Length; i++)
|
|
|
|
evos[i] = GetMethods(data[i]);
|
|
|
|
return evos;
|
2018-05-19 19:07:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|