mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-21 09:53:14 +00:00
fc754b346b
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces) Updates all the files, one less level of indentation. Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
46 lines
1.2 KiB
C#
46 lines
1.2 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(ReadOnlySpan<byte> data)
|
|
{
|
|
int method = data[0];
|
|
int species = data[1];
|
|
var arg = data[2];
|
|
|
|
return (method == 1)
|
|
? new EvolutionMethod(method, species, level: arg)
|
|
: new EvolutionMethod(method, species, argument: arg);
|
|
}
|
|
|
|
public static IReadOnlyList<EvolutionMethod[]> GetArray(ReadOnlySpan<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.Slice(ofs, bpe));
|
|
ofs += bpe;
|
|
}
|
|
evos[i] = m;
|
|
}
|
|
return evos;
|
|
}
|
|
}
|