mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
9166d0eb64
Rewrites a good amount of legality APIs pertaining to: * Legal moves that can be learned * Evolution chains & cross-generation paths * Memory validation with forgotten moves In generation 8, there are 3 separate contexts an entity can exist in: SW/SH, BD/SP, and LA. Not every entity can cross between them, and not every entity from generation 7 can exist in generation 8 (Gogoat, etc). By creating class models representing the restrictions to cross each boundary, we are able to better track and validate data. The old implementation of validating moves was greedy: it would iterate for all generations and evolutions, and build a full list of every move that can be learned, storing it on the heap. Now, we check one game group at a time to see if the entity can learn a move that hasn't yet been validated. End result is an algorithm that requires 0 allocation, and a smaller/quicker search space. The old implementation of storing move parses was inefficient; for each move that was parsed, a new object is created and adjusted depending on the parse. Now, move parse results are `struct` and store the move parse contiguously in memory. End result is faster parsing and 0 memory allocation. * `PersonalTable` objects have been improved with new API methods to check if a species+form can exist in the game. * `IEncounterTemplate` objects have been improved to indicate the `EntityContext` they originate in (similar to `Generation`). * Some APIs have been extended to accept `Span<T>` instead of Array/IEnumerable
99 lines
3.7 KiB
C#
99 lines
3.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Windows.Forms;
|
|
using PKHeX.Core;
|
|
using PKHeX.Drawing;
|
|
using PKHeX.Drawing.Misc;
|
|
using PKHeX.Drawing.PokeSprite;
|
|
|
|
namespace PKHeX.WinForms;
|
|
|
|
public partial class KChart : Form
|
|
{
|
|
private readonly SaveFile SAV;
|
|
private readonly string[] species = GameInfo.Strings.specieslist;
|
|
private readonly string[] abilities = GameInfo.Strings.abilitylist;
|
|
private readonly int[] baseForm;
|
|
private readonly int[] formVal;
|
|
|
|
public KChart(SaveFile sav)
|
|
{
|
|
InitializeComponent();
|
|
Icon = Properties.Resources.Icon;
|
|
WinFormsUtil.TranslateInterface(this, Main.CurrentLanguage);
|
|
SAV = sav;
|
|
|
|
IPersonalTable pt = SAV.Personal;
|
|
Array.Resize(ref species, pt.Count);
|
|
|
|
var forms = pt.GetFormList(species, SAV.MaxSpeciesID);
|
|
species = pt.GetPersonalEntryList(forms, species, SAV.MaxSpeciesID, out baseForm, out formVal);
|
|
|
|
DGV.Rows.Clear();
|
|
for (int i = 1; i < species.Length; i++)
|
|
PopEntry(i);
|
|
|
|
DGV.DoubleBuffered(true);
|
|
|
|
DGV.Sort(DGV.Columns[0], ListSortDirection.Ascending);
|
|
}
|
|
|
|
private void PopEntry(int index)
|
|
{
|
|
var p = SAV.Personal[index];
|
|
if (p.HP == 0)
|
|
return;
|
|
|
|
int s = index > SAV.MaxSpeciesID ? baseForm[index] : index;
|
|
var f = index <= SAV.MaxSpeciesID ? 0 : formVal[index];
|
|
|
|
var row = new DataGridViewRow();
|
|
row.CreateCells(DGV);
|
|
|
|
int r = 0;
|
|
var bst = p.GetBaseStatTotal();
|
|
row.Cells[r++].Value = s.ToString("000") + (f > 0 ? $"-{f:00}" : "");
|
|
row.Cells[r++].Value = SpriteUtil.GetSprite(s, f, 0, 0, 0, false, Shiny.Never, SAV.Generation);
|
|
row.Cells[r++].Value = species[index];
|
|
row.Cells[r++].Value = GetIsNative(p, s);
|
|
row.Cells[r].Style.BackColor = ColorUtil.ColorBaseStatTotal(bst);
|
|
row.Cells[r++].Value = bst.ToString("000");
|
|
row.Cells[r++].Value = p.CatchRate.ToString("000");
|
|
row.Cells[r++].Value = TypeSpriteUtil.GetTypeSprite(p.Type1, SAV.Generation);
|
|
row.Cells[r++].Value = p.Type1 == p.Type2 ? SpriteUtil.Spriter.Transparent : TypeSpriteUtil.GetTypeSprite(p.Type2, SAV.Generation);
|
|
row.Cells[r].Style.BackColor = ColorUtil.ColorBaseStat(p.HP);
|
|
row.Cells[r++].Value = p.HP.ToString("000");
|
|
row.Cells[r].Style.BackColor = ColorUtil.ColorBaseStat(p.ATK);
|
|
row.Cells[r++].Value = p.ATK.ToString("000");
|
|
row.Cells[r].Style.BackColor = ColorUtil.ColorBaseStat(p.DEF);
|
|
row.Cells[r++].Value = p.DEF.ToString("000");
|
|
row.Cells[r].Style.BackColor = ColorUtil.ColorBaseStat(p.SPA);
|
|
row.Cells[r++].Value = p.SPA.ToString("000");
|
|
row.Cells[r].Style.BackColor = ColorUtil.ColorBaseStat(p.SPD);
|
|
row.Cells[r++].Value = p.SPD.ToString("000");
|
|
row.Cells[r].Style.BackColor = ColorUtil.ColorBaseStat(p.SPE);
|
|
row.Cells[r++].Value = p.SPE.ToString("000");
|
|
var abils = p.Abilities;
|
|
row.Cells[r++].Value = GetAbility(abils, 0);
|
|
row.Cells[r++].Value = GetAbility(abils, 1);
|
|
row.Cells[r].Value = GetAbility(abils, 2);
|
|
row.Height = SpriteUtil.Spriter.Height + 1;
|
|
DGV.Rows.Add(row);
|
|
}
|
|
|
|
private string GetAbility(IReadOnlyList<int> abilityIDs, int index)
|
|
{
|
|
if ((uint)index >= abilityIDs.Count)
|
|
return abilities[0];
|
|
return abilities[abilityIDs[index]];
|
|
}
|
|
|
|
private static bool GetIsNative(IPersonalInfo personalInfo, int s) => personalInfo switch
|
|
{
|
|
PersonalInfo7 => s > 721 || Legal.PastGenAlolanNatives.Contains(s),
|
|
PersonalInfo8SWSH ss => ss.IsInDex,
|
|
PersonalInfo8BDSP bs => bs.IsInDex,
|
|
_ => true,
|
|
};
|
|
}
|