mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-23 19:03:11 +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`
52 lines
1.4 KiB
C#
52 lines
1.4 KiB
C#
using System;
|
|
using PKHeX.Core;
|
|
|
|
namespace PKHeX.WinForms.Controls;
|
|
|
|
public partial class PKMEditor
|
|
{
|
|
private void PopulateFieldsPK5()
|
|
{
|
|
if (Entity is not PK5 pk5)
|
|
throw new FormatException(nameof(Entity));
|
|
|
|
LoadMisc1(pk5);
|
|
LoadMisc2(pk5);
|
|
LoadMisc3(pk5);
|
|
LoadMisc4(pk5);
|
|
CB_GroundTile.SelectedValue = pk5.Gen4 ? (int)pk5.GroundTile : 0;
|
|
CB_GroundTile.Visible = Label_GroundTile.Visible = pk5.Gen4;
|
|
CHK_NSparkle.Checked = pk5.NSparkle;
|
|
|
|
if (HaX)
|
|
DEV_Ability.SelectedValue = pk5.Ability;
|
|
else if (pk5.HiddenAbility)
|
|
CB_Ability.SelectedIndex = CB_Ability.Items.Count - 1;
|
|
else
|
|
LoadAbility4(pk5);
|
|
|
|
LoadPartyStats(pk5);
|
|
UpdateStats();
|
|
}
|
|
|
|
private PK5 PreparePK5()
|
|
{
|
|
if (Entity is not PK5 pk5)
|
|
throw new FormatException(nameof(Entity));
|
|
|
|
SaveMisc1(pk5);
|
|
SaveMisc2(pk5);
|
|
SaveMisc3(pk5);
|
|
SaveMisc4(pk5);
|
|
|
|
pk5.GroundTile = (GroundTileType)WinFormsUtil.GetIndex(CB_GroundTile);
|
|
pk5.NSparkle = CHK_NSparkle.Checked;
|
|
if (!HaX) // specify via extra 0x42 instead
|
|
pk5.HiddenAbility = CB_Ability.SelectedIndex > 1; // not 0 or 1
|
|
|
|
SavePartyStats(pk5);
|
|
pk5.FixMoves();
|
|
pk5.RefreshChecksum();
|
|
return pk5;
|
|
}
|
|
}
|