mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-11 21:22:41 +00:00
79 lines
1.9 KiB
C#
79 lines
1.9 KiB
C#
|
using System;
|
||
|
|
||
|
namespace PKHeX.Core;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Exposes details about base stat values.
|
||
|
/// </summary>
|
||
|
public interface IBaseStat
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Base HP
|
||
|
/// </summary>
|
||
|
int HP { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Base Attack
|
||
|
/// </summary>
|
||
|
int ATK { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Base Defense
|
||
|
/// </summary>
|
||
|
int DEF { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Base Special Attack
|
||
|
/// </summary>
|
||
|
int SPA { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Base Special Defense
|
||
|
/// </summary>
|
||
|
int SPD { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Base Speed
|
||
|
/// </summary>
|
||
|
int SPE { get; set; }
|
||
|
}
|
||
|
|
||
|
public static class IBaseStatExtensions
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Base Stat Total sum of all stats.
|
||
|
/// </summary>
|
||
|
public static int GetBaseStatTotal(this IBaseStat stats) => stats.HP + stats.ATK + stats.DEF + stats.SPA + stats.SPD + stats.SPE;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets the requested Base Stat value with the requested <see cref="index"/>.
|
||
|
/// </summary>
|
||
|
public static int GetBaseStatValue(this IBaseStat stats, int index) => index switch
|
||
|
{
|
||
|
0 => stats.HP,
|
||
|
1 => stats.ATK,
|
||
|
2 => stats.DEF,
|
||
|
3 => stats.SPE,
|
||
|
4 => stats.SPA,
|
||
|
5 => stats.SPD,
|
||
|
_ => throw new ArgumentOutOfRangeException(nameof(index)),
|
||
|
};
|
||
|
|
||
|
public static void GetSortedStatIndexes(this IBaseStat pi, Span<(int Index, int Stat)> span)
|
||
|
{
|
||
|
for (int i = 0; i < span.Length; i++)
|
||
|
span[i] = (i, pi.GetBaseStatValue(i));
|
||
|
|
||
|
// Bubble sort based off Stat value
|
||
|
// Higher stat values go to lower indexes in the span.
|
||
|
for (int i = 0; i < span.Length - 1; i++)
|
||
|
{
|
||
|
for (int j = 0; j < span.Length - 1 - i; j++)
|
||
|
{
|
||
|
if (span[j].Stat < span[j + 1].Stat)
|
||
|
(span[j], span[j + 1]) = (span[j + 1], span[j]);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|