PKHeX/PKHeX.WinForms/Controls/PKM Editor/EditPK2.cs
Kurt 95fbf66a6e
Refactor: Gen3/4 Lead Encounters, property fixing (#4193)
In addition to the Method 1 (and other sibling PIDIV types) correlation, an encounter can only be triggered if the calls prior land on the Method {1} seed. The RNG community has dubbed these patterns as "Method J" (D/P/Pt), "Method K" (HG/SS), and "Method H" (Gen3, coined by yours truly). The basic gist of these is that they are pre-requisites, like the Shadow locks of Colosseum/XD. 

Rename/re-type a bunch of properties to get the codebase more in line with correct property names & more obvious underlying types.
2024-02-22 21:20:54 -06:00

70 lines
1.9 KiB
C#

using System;
using PKHeX.Core;
namespace PKHeX.WinForms.Controls;
public partial class PKMEditor
{
private void PopulateFieldsPK2()
{
if (Entity is not (GBPKM pk2 and ICaughtData2 c2))
throw new FormatException(nameof(Entity));
if (Entity is SK2 sk2)
{
var sav = RequestSaveFile;
CoerceStadium2Language(sk2, sav);
}
LoadMisc1(pk2);
LoadMisc2(pk2);
TID_Trainer.LoadIDValues(pk2, pk2.Format);
TB_MetLevel.Text = c2.MetLevel.ToString();
CB_MetLocation.SelectedValue = (int)c2.MetLocation;
CB_MetTimeOfDay.SelectedIndex = c2.MetTimeOfDay;
// Attempt to detect language
CB_Language.SelectedValue = pk2.GuessedLanguage();
LoadPartyStats(pk2);
UpdateStats();
}
private static void CoerceStadium2Language(SK2 sk2, SaveFile sav)
{
if (sk2.Japanese == (sav.Language == 1))
return;
var la = new LegalityAnalysis(sk2);
if (la.Valid || !sk2.IsPossible(sav.Language == 1))
return;
sk2.SwapLanguage();
la = new LegalityAnalysis(sk2);
if (la.Valid)
return;
var lang = SpeciesName.GetSpeciesNameLanguage(sk2.Species, sk2.Nickname, 2);
if (lang >= 1 && (lang == 1 != sk2.Japanese)) // force match language
sk2.SwapLanguage();
else if (sk2.Japanese != (sav.Language == 1)) // force match save file
sk2.SwapLanguage();
}
private GBPKM PreparePK2()
{
if (Entity is not (GBPKM pk2 and ICaughtData2 c2))
throw new FormatException(nameof(Entity));
SaveMisc1(pk2);
SaveMisc2(pk2);
c2.MetLevel = (byte)Util.ToInt32(TB_MetLevel.Text);
c2.MetLocation = (ushort)WinFormsUtil.GetIndex(CB_MetLocation);
c2.MetTimeOfDay = CB_MetTimeOfDay.SelectedIndex;
SavePartyStats(pk2);
pk2.FixMoves();
return pk2;
}
}