mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-03-21 17:48:28 -05:00
* Update to .NET 10 * Property fields * API signature updates * Extension method blocks * Completed dark mode support Outside of my control: - vertical tab control (pkm editor) - datetimepicker controls - lgpe event flags (no idea) - some control types having white-borders when they should really be gray Box background is 50% transparency to effectively darken the image. * Custom legality report popup * Event diff dialog, version select dialog * Add quick overwrite popup for export sav * Extension methods * Dark Mode: glow currently editing sprite * Add invalid encounter hint for trade evolutions * Extension properties * Append legality hint on hover card * Slot image loading: clear the screen-reader description if a slot is empty/invalid, rather than retain the previous description. Changing boxes would easily confuse users on this.
133 lines
4.9 KiB
C#
133 lines
4.9 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
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[] abilities;
|
|
private readonly string[] moves;
|
|
private readonly string SpeciesNumberFormat;
|
|
|
|
public KChart(SaveFile sav)
|
|
{
|
|
InitializeComponent();
|
|
Icon = Properties.Resources.Icon;
|
|
if (sav is SAV9ZA)
|
|
DGV.Columns.Add(new DataGridViewTextBoxColumn { ReadOnly = true, HeaderText = "Alpha Move" });
|
|
DGV.AllowUserToOrderColumns = true;
|
|
|
|
WinFormsUtil.TranslateInterface(this, Main.CurrentLanguage);
|
|
SAV = sav;
|
|
|
|
var pt = SAV.Personal;
|
|
var strings = GameInfo.Strings;
|
|
var species = strings.specieslist;
|
|
abilities = strings.abilitylist;
|
|
moves = strings.movelist;
|
|
SpeciesNumberFormat = sav.Generation >= 9 ? "0000" : "000";
|
|
|
|
DGV.Rows.Clear();
|
|
for (ushort s = 1; s <= pt.MaxSpeciesID; s++)
|
|
{
|
|
var fc = pt[s, 0].FormCount;
|
|
var formNames = fc <= 1
|
|
? []
|
|
: FormConverter.GetFormList(s, strings.Types, strings.forms, Main.GenderSymbols, SAV.Context);
|
|
|
|
for (byte f = 0; f < fc; f++)
|
|
{
|
|
var name = f == 0 ? species[s] : $"{species[s]}-{(f < formNames.Length ? formNames[f] : f.ToString())}";
|
|
PopEntry(s, f, name, pt);
|
|
}
|
|
}
|
|
|
|
DGV.Sort(DGV.Columns[0], ListSortDirection.Ascending);
|
|
}
|
|
|
|
private void PopEntry(ushort species, byte form, string name, IPersonalTable pt)
|
|
{
|
|
if (!pt.IsPresentInGame(species, form))
|
|
return;
|
|
|
|
var p = pt.GetFormEntry(species, form);
|
|
var row = new DataGridViewRow();
|
|
row.CreateCells(DGV);
|
|
var cells = row.Cells;
|
|
int c = 0;
|
|
|
|
var bst = p.BST;
|
|
cells[c++].Value = species.ToString(SpeciesNumberFormat) + (form > 0 ? $"-{form:00}" : string.Empty);
|
|
cells[c++].Value = SpriteUtil.GetSprite(species, form, 0, 0, 0, false, Shiny.Never, SAV.Context);
|
|
cells[c++].Value = name;
|
|
cells[c++].Value = GetIsNative(p, species);
|
|
cells[c].Style.BackColor = ColorUtil.ColorBaseStatTotal(bst);
|
|
cells[c].Style.ForeColor = Color.Black;
|
|
cells[c++].Value = bst.ToString("000");
|
|
cells[c++].Value = p.CatchRate.ToString("000");
|
|
cells[c++].Value = TypeSpriteUtil.GetTypeSpriteWide(p.Type1, SAV.Generation);
|
|
cells[c++].Value = p.Type1 == p.Type2 ? SpriteUtil.Spriter.Transparent : TypeSpriteUtil.GetTypeSpriteWide(p.Type2, SAV.Generation);
|
|
Stat(cells[c++], p.HP);
|
|
Stat(cells[c++], p.ATK);
|
|
Stat(cells[c++], p.DEF);
|
|
Stat(cells[c++], p.SPA);
|
|
Stat(cells[c++], p.SPD);
|
|
Stat(cells[c++], p.SPE);
|
|
var abils = p.AbilityCount;
|
|
cells[c++].Value = abilities[abils > 0 ? p.GetAbilityAtIndex(0) : 0];
|
|
cells[c++].Value = abilities[abils > 1 ? p.GetAbilityAtIndex(1) : 0];
|
|
cells[c++].Value = abilities[abils > 2 ? p.GetAbilityAtIndex(2) : 0];
|
|
if (p is PersonalInfo9ZA za)
|
|
cells[c].Value = moves[za.AlphaMove];
|
|
|
|
row.Height = SpriteUtil.Spriter.Height + 1;
|
|
DGV.Rows.Add(row);
|
|
|
|
static void Stat(DataGridViewCell cell, int value)
|
|
{
|
|
cell.Style.ForeColor = Color.Black;
|
|
cell.Style.BackColor = ColorUtil.ColorBaseStat(value);
|
|
cell.Value = value.ToString("000");
|
|
}
|
|
}
|
|
|
|
private static bool GetIsNative(IPersonalInfo personalInfo, ushort s) => personalInfo switch
|
|
{
|
|
PersonalInfo7 => IsAlolanNative(s),
|
|
PersonalInfo8SWSH ss => ss.IsInDex,
|
|
PersonalInfo8BDSP bs => bs.IsInDex,
|
|
PersonalInfo8LA bs => bs.IsPresentInGame,
|
|
PersonalInfo9SV sv => sv.IsInDex,
|
|
PersonalInfo9ZA za => za is { IsLumioseNative: true },
|
|
_ => true,
|
|
};
|
|
|
|
private static ReadOnlySpan<byte> PastGenAlolanNatives =>
|
|
[
|
|
0x00, 0x1C, 0xF8, 0x1E, 0xF8, 0xC7, 0xFC, 0xFF, 0x1F, 0x9F, 0x47, 0x7F, 0xF3, 0x13, 0xCA, 0xEF,
|
|
0xFF, 0xD7, 0x38, 0x00, 0xE8, 0x7F, 0x0A, 0x46, 0xFE, 0x51, 0xD6, 0xCC, 0x1A, 0xCA, 0x47, 0x00,
|
|
0x00, 0xC0, 0xFF, 0x18, 0x00, 0xCB, 0x38, 0xC0, 0xF3, 0x67, 0xB8, 0xEA, 0xA3, 0x46, 0xFE, 0x01,
|
|
0x00, 0x00, 0x00, 0x0F, 0xCC, 0x6E, 0xC0, 0xF9, 0x1F, 0x7F, 0xEC, 0x54, 0x00, 0x00, 0x00, 0x1C,
|
|
0x00, 0x70, 0x08, 0x00, 0xFC, 0xE3, 0xF2, 0x17, 0xF0, 0x09, 0x05, 0x20, 0x00, 0x6C, 0x79, 0x10,
|
|
0x00, 0x00, 0xE0, 0x28, 0x1C, 0x40, 0xD7, 0xF5, 0x3F, 0x44,
|
|
];
|
|
|
|
private static bool IsAlolanNative(ushort species)
|
|
{
|
|
if (species >= 721)
|
|
return true;
|
|
if (species == 720)
|
|
return false;
|
|
|
|
// [0, 719]; always will be a bit in the array.
|
|
return FlagUtil.GetFlag(PastGenAlolanNatives, species);
|
|
}
|
|
}
|