PKHeX/PKHeX.Core/Legality/Evolutions/EvolutionSets/EvolutionSet1.cs
2020-01-25 15:42:17 -08:00

46 lines
No EOL
1.4 KiB
C#

using System;
using System.Collections.Generic;
namespace PKHeX.Core
{
/// <summary>
/// Generation 1 Evolution Branch Entries
/// </summary>
public static class EvolutionSet1
{
private static EvolutionMethod GetMethod(byte[] data, int offset)
{
int method = data[offset];
int species = data[offset + 1];
int arg = data[offset + 2];
return (method == 1)
? new EvolutionMethod(method, species, level: arg)
: new EvolutionMethod(method, species, argument: arg);
}
public static IReadOnlyList<EvolutionMethod[]> GetArray(byte[] data, int maxSpecies)
{
var evos = new EvolutionMethod[maxSpecies + 1][];
int ofs = 0;
const int bpe = 3;
for (int i = 0; i < evos.Length; i++)
{
int count = data[ofs];
ofs++;
if (count == 0)
{
evos[i] = Array.Empty<EvolutionMethod>();
continue;
}
var m = new EvolutionMethod[count];
for (int j = 0; j < m.Length; j++)
{
m[j] = GetMethod(data, ofs);
ofs += bpe;
}
evos[i] = m;
}
return evos;
}
}
}