mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
88830e0d00
Updates from net46->net7, dropping support for mono in favor of using the latest runtime (along with the performance/API improvements). Releases will be posted as 64bit only for now. Refactors a good amount of internal API methods to be more performant and more customizable for future updates & fixes. Adds functionality for Batch Editor commands to `>`, `<` and <=/>= TID/SID properties renamed to TID16/SID16 for clarity; other properties exposed for Gen7 / display variants. Main window has a new layout to account for DPI scaling (8 point grid) Fixed: Tatsugiri and Paldean Tauros now output Showdown form names as Showdown expects Changed: Gen9 species now interact based on the confirmed National Dex IDs (closes #3724) Fixed: Pokedex set all no longer clears species with unavailable non-base forms (closes #3720) Changed: Hyper Training suggestions now apply for level 50 in SV. (closes #3714) Fixed: B2/W2 hatched egg met locations exclusive to specific versions are now explicitly checked (closes #3691) Added: Properties for ribbon/mark count (closes #3659) Fixed: Traded SV eggs are now checked correctly (closes #3692)
81 lines
2.4 KiB
C#
81 lines
2.4 KiB
C#
using static PKHeX.Core.TrainerIDFormat;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Object has Trainer ownership with a way to show the Trainer ID.
|
|
/// </summary>
|
|
public interface ITrainerID
|
|
{
|
|
/// <summary>
|
|
/// Format the stored Trainer ID is shown to the player.
|
|
/// </summary>
|
|
TrainerIDFormat TrainerIDDisplayFormat { get; }
|
|
}
|
|
|
|
public enum TrainerIDFormat
|
|
{
|
|
/// <summary>
|
|
/// Don't use me.
|
|
/// </summary>
|
|
None,
|
|
|
|
/// <summary>
|
|
/// 16-bit Trainer ID
|
|
/// </summary>
|
|
/// <remarks>Generations 1-2 only. Secret ID did not exist.</remarks>
|
|
SixteenBitSingle,
|
|
|
|
/// <summary>
|
|
/// 16-bit Trainer ID, 16-bit Secret ID
|
|
/// </summary>
|
|
/// <remarks>Generations 3-6, and Generation 1-2 transferred 7+.</remarks>
|
|
SixteenBit,
|
|
|
|
/// <summary>
|
|
/// 32-bit Trainer ID, showing the lowest 6 digits.
|
|
/// </summary>
|
|
/// <remarks>Generation 7 origin onward.</remarks>
|
|
SixDigit,
|
|
}
|
|
|
|
public static class TrainerIDExtensions
|
|
{
|
|
/// <summary>
|
|
/// Detects the correct <see cref="TrainerIDFormat"/> to use for the input <see cref="tr"/>.
|
|
/// </summary>
|
|
public static TrainerIDFormat GetTrainerIDFormat(this ITrainerID tr) => tr switch
|
|
{
|
|
PKM { Format: <= 2 } => SixteenBitSingle,
|
|
PKM { Version: 0 } pk => pk.Format >= 7 ? SixDigit : SixteenBit,
|
|
IGeneration sv => sv.Generation >= 7 ? SixDigit : SixteenBit,
|
|
_ => SixteenBit,
|
|
};
|
|
|
|
/// <summary> String format specifier for <see cref="SixDigit"/> TID. </summary>
|
|
public const string TID7 = "D6";
|
|
/// <summary> String format specifier for <see cref="SixDigit"/> SID. </summary>
|
|
public const string SID7 = "D4";
|
|
/// <summary> String format specifier for <see cref="SixteenBit"/> TID. </summary>
|
|
public const string TID16 = "D5";
|
|
/// <summary> String format specifier for <see cref="SixteenBit"/> SID. </summary>
|
|
public const string SID16 = "D5";
|
|
|
|
/// <summary>
|
|
/// Gets the string format specifier to use for the requested format TID.
|
|
/// </summary>
|
|
public static string GetTrainerIDFormatStringTID(this TrainerIDFormat format) => format switch
|
|
{
|
|
SixDigit => TID7,
|
|
_ => TID16,
|
|
};
|
|
|
|
/// <summary>
|
|
/// Gets the string format specifier to use for the requested format SID.
|
|
/// </summary>
|
|
public static string GetTrainerIDFormatStringSID(this TrainerIDFormat format) => format switch
|
|
{
|
|
SixDigit => SID7,
|
|
_ => SID16,
|
|
};
|
|
}
|