PKHeX/PKHeX.Core/PKM/Interfaces/ITrainerID32.cs
Kurt 88830e0d00
Update from .NET Framework 4.6 to .NET 7 (#3729)
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)
2023-01-21 20:02:33 -08:00

85 lines
2.9 KiB
C#

using static PKHeX.Core.TrainerIDFormat;
namespace PKHeX.Core;
/// <summary>
/// Object stores a numerical trainer ID.
/// </summary>
public interface ITrainerID32 : ITrainerID16
{
uint ID32 { get; set; }
ushort SID16 { get; set; }
}
public interface ITrainerID16 : ITrainerID
{
ushort TID16 { get; set; }
}
public static class ITrainerID32Extensions
{
/// <summary>
/// Checks if the <see cref="pid"/> is shiny when owned by the <see cref="ITrainerID32"/>.
/// </summary>
/// <param name="tr">Possessing trainer</param>
/// <param name="pid"><see cref="PKM.PID"/></param>
/// <param name="gen">Generation of origin.</param>
/// <returns>True if shiny, false if not.</returns>
public static bool IsShiny(this ITrainerID32 tr, uint pid, int gen = 7)
{
var xor = GetShinyXor(tr, pid);
var threshold = (gen >= 7 ? 16 : 8);
return xor < threshold;
}
/// <summary>
/// Calculates the <see cref="pid"/> and <see cref="ITrainerID32.ID32"/> xor.
/// </summary>
public static uint GetShinyXor(this ITrainerID32 tr, uint pid) => (pid >> 16) ^ (pid & 0xFFFF) ^ tr.SID16 ^ tr.TID16;
public static uint GetTrainerTID7(this ITrainerID32 tr) => tr.ID32 % 1000000;
public static uint GetTrainerSID7(this ITrainerID32 tr) => tr.ID32 / 1000000;
public static uint SetTrainerTID7(this ITrainerID32 tr, uint value) => tr.ID32 = ((tr.ID32 / 1000000) * 1000000) + value;
public static uint SetTrainerSID7(this ITrainerID32 tr, uint value) => tr.ID32 = (value * 1000000) + (tr.ID32 % 1000000);
public static uint SetTrainerID16(this ITrainerID32 tr, ushort tid16, ushort sid16) => tr.ID32 = ((uint)sid16 << 16) | tid16;
public static uint SetTrainerID7(this ITrainerID32 tr, uint sid7, uint tid7) => tr.ID32 = (sid7 * 1000000) + tid7;
public static uint GetDisplayTID(this ITrainerID32 tr) => tr.TrainerIDDisplayFormat switch
{
SixDigit => GetTrainerTID7(tr),
_ => tr.TID16,
};
public static uint GetDisplaySID(this ITrainerID32 tr) => tr.TrainerIDDisplayFormat switch
{
SixDigit => GetTrainerSID7(tr),
_ => tr.SID16,
};
public static void SetDisplayTID(this ITrainerID32 tr, uint value)
{
switch (tr.TrainerIDDisplayFormat)
{
case SixDigit: tr.SetTrainerTID7(value); break;
default: tr.TID16 = (ushort)value; break;
}
}
public static void SetDisplaySID(this ITrainerID32 tr, uint value)
{
switch (tr.TrainerIDDisplayFormat)
{
case SixDigit: tr.SetTrainerSID7(value); break;
default: tr.SID16 = (ushort)value; break;
}
}
public static void SetDisplayID(this ITrainerID32 tr, uint tid, uint sid)
{
switch (tr.TrainerIDDisplayFormat)
{
case SixDigit: tr.SetTrainerID7(sid, tid); break;
default: tr.SetTrainerID16((ushort)tid, (ushort)sid); break;
}
}
}