mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
3c232505e5
In this pull request I've changed a ton of method signatures to reflect the more-narrow types of Species, Move# and Form; additionally, I've narrowed other large collections that stored lists of species / permitted values, and reworked them to be more performant with the latest API spaghetti that PKHeX provides. Roamer met locations, usually in a range of [max-min]<64, can be quickly checked using a bitflag operation on a UInt64. Other collections (like "Is this from Colosseum or XD") were eliminated -- shadow state is not transferred COLO<->XD, so having a Shadow ID or matching the met location from a gift/wild encounter is a sufficient check for "originated in XD".
77 lines
2.1 KiB
C#
77 lines
2.1 KiB
C#
using System;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Logic for filling in template data for <see cref="PKM"/> objects.
|
|
/// </summary>
|
|
public static class EntityTemplates
|
|
{
|
|
/// <summary>
|
|
/// Applies junk data to a <see cref="SaveFile.BlankPKM"/>, which is preferable to a completely empty entity.
|
|
/// </summary>
|
|
/// <param name="pk">Blank data</param>
|
|
/// <param name="tr">Trainer info to apply</param>
|
|
public static void TemplateFields(PKM pk, ITrainerInfo tr)
|
|
{
|
|
pk.Move1 = (int)Move.Pound;
|
|
pk.HealPP();
|
|
pk.Ball = 4;
|
|
pk.MetDate = DateTime.Today;
|
|
|
|
if (tr.Game >= 0)
|
|
pk.Version = tr.Game;
|
|
|
|
pk.Species = GetTemplateSpecies(pk, tr);
|
|
pk.Language = GetTemplateLanguage(tr);
|
|
pk.Gender = pk.GetSaneGender();
|
|
|
|
pk.ClearNickname();
|
|
|
|
pk.OT_Name = tr.OT;
|
|
pk.OT_Gender = tr.Gender;
|
|
pk.TID = tr.TID;
|
|
pk.SID = tr.SID;
|
|
if (tr is IRegionOrigin o && pk is IRegionOrigin gt)
|
|
{
|
|
gt.ConsoleRegion = o.ConsoleRegion;
|
|
gt.Country = o.Country;
|
|
gt.Region = o.Region;
|
|
}
|
|
|
|
ApplyTrashBytes(pk, tr);
|
|
pk.RefreshChecksum();
|
|
}
|
|
|
|
private static void ApplyTrashBytes(PKM pk, ITrainerInfo tr)
|
|
{
|
|
// Copy OT trash bytes for sensitive games (Gen1/2)
|
|
if (pk is not GBPKM pk12)
|
|
return;
|
|
switch (tr)
|
|
{
|
|
case SAV1 s1:
|
|
s1.OT_Trash.CopyTo(pk12.OT_Trash);
|
|
break;
|
|
case SAV2 s2:
|
|
s2.OT_Trash.CopyTo(pk12.OT_Trash);
|
|
break;
|
|
}
|
|
}
|
|
|
|
private static ushort GetTemplateSpecies(PKM pk, ITrainerInfo tr)
|
|
{
|
|
ushort species = tr is IGameValueLimit s ? s.MaxSpeciesID : ((GameVersion)pk.Version).GetMaxSpeciesID();
|
|
if (species <= 0)
|
|
species = pk.MaxSpeciesID;
|
|
return species;
|
|
}
|
|
|
|
private static int GetTemplateLanguage(ITrainerInfo tr)
|
|
{
|
|
var lang = tr.Language;
|
|
if (lang <= 0)
|
|
lang = (int)LanguageID.English;
|
|
return lang;
|
|
}
|
|
}
|