2018-11-21 20:24:41 +00:00
|
|
|
|
using System;
|
2020-01-19 00:46:38 +00:00
|
|
|
|
using System.Collections.Generic;
|
2022-01-03 05:35:59 +00:00
|
|
|
|
using static System.Buffers.Binary. BinaryPrimitives;
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Generation 7 Mystery Gift Template File
|
|
|
|
|
/// </summary>
|
2021-02-02 02:35:37 +00:00
|
|
|
|
public sealed class WB7 : DataMysteryGift, ILangNick, IAwakened, INature, ILangNicknamedTemplate
|
2018-11-21 20:24:41 +00:00
|
|
|
|
{
|
|
|
|
|
public const int Size = 0x108;
|
|
|
|
|
public const int SizeFull = 0x310;
|
|
|
|
|
private const int CardStart = SizeFull - Size;
|
|
|
|
|
|
2020-12-11 04:42:30 +00:00
|
|
|
|
public override int Generation => 7;
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
PKHeX.Core Nullable cleanup (#2401)
* Handle some nullable cases
Refactor MysteryGift into a second abstract class (backed by a byte array, or fake data)
Make some classes have explicit constructors instead of { } initialization
* Handle bits more obviously without null
* Make SaveFile.BAK explicitly readonly again
* merge constructor methods to have readonly fields
* Inline some properties
* More nullable handling
* Rearrange box actions
define straightforward classes to not have any null properties
* Make extrabyte reference array immutable
* Move tooltip creation to designer
* Rearrange some logic to reduce nesting
* Cache generated fonts
* Split mystery gift album purpose
* Handle more tooltips
* Disallow null setters
* Don't capture RNG object, only type enum
* Unify learnset objects
Now have readonly properties which are never null
don't new() empty learnsets (>800 Learnset objects no longer created,
total of 2400 objects since we also new() a move & level array)
optimize g1/2 reader for early abort case
* Access rewrite
Initialize blocks in a separate object, and get via that object
removes a couple hundred "might be null" warnings since blocks are now readonly getters
some block references have been relocated, but interfaces should expose all that's needed
put HoF6 controls in a groupbox, and disable
* Readonly personal data
* IVs non nullable for mystery gift
* Explicitly initialize forced encounter moves
* Make shadow objects readonly & non-null
Put murkrow fix in binary data resource, instead of on startup
* Assign dex form fetch on constructor
Fixes legality parsing edge cases
also handle cxd parse for valid; exit before exception is thrown in FrameGenerator
* Remove unnecessary null checks
* Keep empty value until init
SetPouch sets the value to an actual one during load, but whatever
* Readonly team lock data
* Readonly locks
Put locked encounters at bottom (favor unlocked)
* Mail readonly data / offset
Rearrange some call flow and pass defaults
Add fake classes for SaveDataEditor mocking
Always party size, no need to check twice in stat editor
use a fake save file as initial data for savedata editor, and for
gamedata (wow i found a usage)
constrain eventwork editor to struct variable types (uint, int, etc),
thus preventing null assignment errors
2019-10-17 01:47:31 +00:00
|
|
|
|
public WB7() : this(new byte[SizeFull]) { }
|
|
|
|
|
public WB7(byte[] data) : base(data) { }
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
2021-08-26 22:47:44 +00:00
|
|
|
|
public override GameVersion Version { get => GameVersion.GG; set { } }
|
|
|
|
|
|
2018-11-21 20:24:41 +00:00
|
|
|
|
public byte RestrictVersion { get => Data[0]; set => Data[0] = value; }
|
|
|
|
|
|
|
|
|
|
public bool CanBeReceivedByVersion(int v)
|
|
|
|
|
{
|
2021-02-02 02:35:37 +00:00
|
|
|
|
if (v is not ((int)GameVersion.GP or (int)GameVersion.GE))
|
2018-11-21 20:24:41 +00:00
|
|
|
|
return false;
|
|
|
|
|
if (RestrictVersion == 0)
|
|
|
|
|
return true; // no data
|
2018-11-22 18:10:25 +00:00
|
|
|
|
var bitIndex = v - (int)GameVersion.GP;
|
2018-11-21 20:24:41 +00:00
|
|
|
|
var bit = 1 << bitIndex;
|
|
|
|
|
return (RestrictVersion & bit) != 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// General Card Properties
|
|
|
|
|
public override int CardID
|
|
|
|
|
{
|
2022-01-03 05:35:59 +00:00
|
|
|
|
get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0));
|
|
|
|
|
set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0), (ushort)value);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string CardTitle
|
|
|
|
|
{
|
|
|
|
|
// Max len 36 char, followed by null terminator
|
2022-01-03 05:35:59 +00:00
|
|
|
|
get => StringConverter8.GetString(Data.AsSpan(CardStart + 2, 0x4A));
|
|
|
|
|
set => StringConverter8.SetString(Data.AsSpan(CardStart + 2, 0x4A), value.AsSpan(), 36, StringConverterOption.ClearZero);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private uint RawDate
|
|
|
|
|
{
|
2022-01-03 05:35:59 +00:00
|
|
|
|
get => ReadUInt32LittleEndian(Data.AsSpan(CardStart + 0x4C));
|
|
|
|
|
set => WriteUInt32LittleEndian(Data.AsSpan(CardStart + 0x4C), value);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private uint Year
|
|
|
|
|
{
|
|
|
|
|
get => (RawDate / 10000) + 2000;
|
2018-12-11 04:32:08 +00:00
|
|
|
|
set => RawDate = SetDate(value, Month, Day);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private uint Month
|
|
|
|
|
{
|
|
|
|
|
get => RawDate % 10000 / 100;
|
2018-12-11 04:32:08 +00:00
|
|
|
|
set => RawDate = SetDate(Year, value, Day);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private uint Day
|
|
|
|
|
{
|
|
|
|
|
get => RawDate % 100;
|
2018-12-11 04:32:08 +00:00
|
|
|
|
set => RawDate = SetDate(Year, Month, value);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-10 07:21:51 +00:00
|
|
|
|
private static uint SetDate(uint year, uint month, uint day) => (Math.Max(0, year - 2000) * 10000) + (month * 100) + day;
|
2018-12-11 04:32:08 +00:00
|
|
|
|
|
2018-11-21 20:24:41 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the date of the card.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime? Date
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
// Check to see if date is valid
|
2021-05-14 23:46:48 +00:00
|
|
|
|
if (!DateUtil.IsDateValid(Year, Month, Day))
|
2018-11-21 20:24:41 +00:00
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
return new DateTime((int)Year, (int)Month, (int)Day);
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (value.HasValue)
|
|
|
|
|
{
|
|
|
|
|
// Only update the properties if a value is provided.
|
|
|
|
|
Year = (ushort)value.Value.Year;
|
|
|
|
|
Month = (byte)value.Value.Month;
|
|
|
|
|
Day = (byte)value.Value.Day;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// Clear the Met Date.
|
|
|
|
|
// If code tries to access MetDate again, null will be returned.
|
|
|
|
|
Year = 0;
|
|
|
|
|
Month = 0;
|
|
|
|
|
Day = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int CardLocation { get => Data[CardStart + 0x50]; set => Data[CardStart + 0x50] = (byte)value; }
|
|
|
|
|
|
|
|
|
|
public int CardType { get => Data[CardStart + 0x51]; set => Data[CardStart + 0x51] = (byte)value; }
|
|
|
|
|
public byte CardFlags { get => Data[CardStart + 0x52]; set => Data[CardStart + 0x52] = value; }
|
|
|
|
|
|
|
|
|
|
public bool GiftRepeatable { get => (CardFlags & 1) == 0; set => CardFlags = (byte)((CardFlags & ~1) | (value ? 0 : 1)); }
|
|
|
|
|
public override bool GiftUsed { get => (CardFlags & 2) == 2; set => CardFlags = (byte)((CardFlags & ~2) | (value ? 2 : 0)); }
|
|
|
|
|
public bool GiftOncePerDay { get => (CardFlags & 4) == 4; set => CardFlags = (byte)((CardFlags & ~4) | (value ? 4 : 0)); }
|
|
|
|
|
|
2021-03-29 07:14:44 +00:00
|
|
|
|
public bool MultiObtain { get => Data[CardStart + 0x53] == 1; set => Data[CardStart + 0x53] = value ? (byte)1 : (byte)0; }
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
|
|
|
|
// Item Properties
|
|
|
|
|
public override bool IsItem { get => CardType == 1; set { if (value) CardType = 1; } }
|
2022-01-03 05:35:59 +00:00
|
|
|
|
public override int ItemID { get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0x68)); set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0x68), (ushort)value); }
|
|
|
|
|
public int GetItem(int index) => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0x68 + (0x4 * index)));
|
|
|
|
|
public void SetItem(int index, ushort item) => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0x68 + (4 * index)), item);
|
|
|
|
|
public int GetQuantity(int index) => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0x6A + (0x4 * index)));
|
|
|
|
|
public void SetQuantity(int index, ushort quantity) => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0x6A + (4 * index)), quantity);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
|
|
|
|
public override int Quantity
|
|
|
|
|
{
|
2022-01-03 05:35:59 +00:00
|
|
|
|
get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0x6A));
|
|
|
|
|
set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0x6A), (ushort)value);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Pokémon Properties
|
2022-06-11 22:32:12 +00:00
|
|
|
|
public override bool IsEntity { get => CardType == 0; set { if (value) CardType = 0; } }
|
2022-03-13 01:04:20 +00:00
|
|
|
|
public override bool IsShiny => PIDType == ShinyType6.Always;
|
|
|
|
|
|
|
|
|
|
public override Shiny Shiny => PIDType switch
|
|
|
|
|
{
|
|
|
|
|
ShinyType6.FixedValue => Shiny.FixedValue,
|
|
|
|
|
ShinyType6.Random => Shiny.Random,
|
|
|
|
|
ShinyType6.Always => Shiny.Always,
|
|
|
|
|
ShinyType6.Never => Shiny.Never,
|
|
|
|
|
_ => throw new ArgumentOutOfRangeException(),
|
|
|
|
|
};
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
|
|
|
|
public override int TID
|
|
|
|
|
{
|
2022-01-03 05:35:59 +00:00
|
|
|
|
get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0x68));
|
|
|
|
|
set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0x68), (ushort)value);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override int SID {
|
2022-01-03 05:35:59 +00:00
|
|
|
|
get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0x6A));
|
|
|
|
|
set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0x6A), (ushort)value);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int OriginGame
|
|
|
|
|
{
|
2022-01-03 05:35:59 +00:00
|
|
|
|
get => ReadInt32LittleEndian(Data.AsSpan(CardStart + 0x6C));
|
|
|
|
|
set => WriteInt32LittleEndian(Data.AsSpan(CardStart + 0x6C), value);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public uint EncryptionConstant {
|
2022-01-03 05:35:59 +00:00
|
|
|
|
get => ReadUInt32LittleEndian(Data.AsSpan(CardStart + 0x70));
|
|
|
|
|
set => WriteUInt32LittleEndian(Data.AsSpan(CardStart + 0x70), value);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override int Ball
|
|
|
|
|
{
|
|
|
|
|
get => Data[CardStart + 0x76];
|
|
|
|
|
set => Data[CardStart + 0x76] = (byte)value; }
|
|
|
|
|
|
2018-11-25 23:52:30 +00:00
|
|
|
|
public override int HeldItem // no references
|
2018-11-21 20:24:41 +00:00
|
|
|
|
{
|
2022-01-03 05:35:59 +00:00
|
|
|
|
get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0x78));
|
|
|
|
|
set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0x78), (ushort)value);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-03 05:35:59 +00:00
|
|
|
|
public int Move1 { get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0x7A)); set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0x7A), (ushort)value); }
|
|
|
|
|
public int Move2 { get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0x7C)); set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0x7C), (ushort)value); }
|
|
|
|
|
public int Move3 { get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0x7E)); set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0x7E), (ushort)value); }
|
|
|
|
|
public int Move4 { get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0x80)); set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0x80), (ushort)value); }
|
|
|
|
|
public override int Species { get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0x82)); set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0x82), (ushort)value); }
|
2018-11-21 20:24:41 +00:00
|
|
|
|
public override int Form { get => Data[CardStart + 0x84]; set => Data[CardStart + 0x84] = (byte)value; }
|
|
|
|
|
|
|
|
|
|
// public int Language { get => Data[CardStart + 0x85]; set => Data[CardStart + 0x85] = (byte)value; }
|
|
|
|
|
|
|
|
|
|
// public string Nickname
|
|
|
|
|
// {
|
|
|
|
|
// get => Util.TrimFromZero(Encoding.Unicode.GetString(Data, CardStart + 0x86, 0x1A));
|
|
|
|
|
// set => Encoding.Unicode.GetBytes(value.PadRight(12 + 1, '\0')).CopyTo(Data, CardStart + 0x86);
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
public int Nature { get => (sbyte)Data[CardStart + 0xA0]; set => Data[CardStart + 0xA0] = (byte)value; }
|
|
|
|
|
public override int Gender { get => Data[CardStart + 0xA1]; set => Data[CardStart + 0xA1] = (byte)value; }
|
2020-03-19 05:31:27 +00:00
|
|
|
|
public override int AbilityType { get => 3; set => Data[CardStart + 0xA2] = (byte)value; } // no references, always ability 0/1
|
2022-03-13 01:04:20 +00:00
|
|
|
|
public ShinyType6 PIDType { get => (ShinyType6)Data[CardStart + 0xA3]; set => Data[CardStart + 0xA3] = (byte)value; }
|
2022-01-03 05:35:59 +00:00
|
|
|
|
public override int EggLocation { get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0xA4)); set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0xA4), (ushort)value); }
|
|
|
|
|
public int MetLocation { get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0xA6)); set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0xA6), (ushort)value); }
|
2018-11-21 20:24:41 +00:00
|
|
|
|
public int MetLevel { get => Data[CardStart + 0xA8]; set => Data[CardStart + 0xA8] = (byte)value; }
|
|
|
|
|
|
|
|
|
|
public int IV_HP { get => Data[CardStart + 0xAF]; set => Data[CardStart + 0xAF] = (byte)value; }
|
|
|
|
|
public int IV_ATK { get => Data[CardStart + 0xB0]; set => Data[CardStart + 0xB0] = (byte)value; }
|
|
|
|
|
public int IV_DEF { get => Data[CardStart + 0xB1]; set => Data[CardStart + 0xB1] = (byte)value; }
|
|
|
|
|
public int IV_SPE { get => Data[CardStart + 0xB2]; set => Data[CardStart + 0xB2] = (byte)value; }
|
|
|
|
|
public int IV_SPA { get => Data[CardStart + 0xB3]; set => Data[CardStart + 0xB3] = (byte)value; }
|
|
|
|
|
public int IV_SPD { get => Data[CardStart + 0xB4]; set => Data[CardStart + 0xB4] = (byte)value; }
|
|
|
|
|
|
|
|
|
|
public int OTGender { get => Data[CardStart + 0xB5]; set => Data[CardStart + 0xB5] = (byte)value; }
|
|
|
|
|
|
|
|
|
|
// public override string OT_Name
|
|
|
|
|
// {
|
|
|
|
|
// get => Util.TrimFromZero(Encoding.Unicode.GetString(Data, CardStart + 0xB6, 0x1A));
|
|
|
|
|
// set => Encoding.Unicode.GetBytes(value.PadRight(value.Length + 1, '\0')).CopyTo(Data, CardStart + 0xB6);
|
|
|
|
|
// }
|
|
|
|
|
|
2022-03-07 07:25:47 +00:00
|
|
|
|
public override byte Level { get => Data[CardStart + 0xD0]; set => Data[CardStart + 0xD0] = value; }
|
2021-03-29 07:14:44 +00:00
|
|
|
|
public override bool IsEgg { get => Data[CardStart + 0xD1] == 1; set => Data[CardStart + 0xD1] = value ? (byte)1 : (byte)0; }
|
2022-01-03 05:35:59 +00:00
|
|
|
|
public ushort AdditionalItem { get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0xD2)); set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0xD2), value); }
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
2022-01-03 05:35:59 +00:00
|
|
|
|
public uint PID { get => ReadUInt32LittleEndian(Data.AsSpan(0xD4)); set => WriteUInt32LittleEndian(Data.AsSpan(0xD4), value); }
|
|
|
|
|
public int RelearnMove1 { get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0xD8)); set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0xD8), (ushort)value); }
|
|
|
|
|
public int RelearnMove2 { get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0xDA)); set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0xDA), (ushort)value); }
|
|
|
|
|
public int RelearnMove3 { get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0xDC)); set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0xDC), (ushort)value); }
|
|
|
|
|
public int RelearnMove4 { get => ReadUInt16LittleEndian(Data.AsSpan(CardStart + 0xDE)); set => WriteUInt16LittleEndian(Data.AsSpan(CardStart + 0xDE), (ushort)value); }
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
2022-03-06 02:46:03 +00:00
|
|
|
|
public byte AV_HP { get => Data[CardStart + 0xE5]; set => Data[CardStart + 0xE5] = value; }
|
|
|
|
|
public byte AV_ATK { get => Data[CardStart + 0xE6]; set => Data[CardStart + 0xE6] = value; }
|
|
|
|
|
public byte AV_DEF { get => Data[CardStart + 0xE7]; set => Data[CardStart + 0xE7] = value; }
|
|
|
|
|
public byte AV_SPE { get => Data[CardStart + 0xE8]; set => Data[CardStart + 0xE8] = value; }
|
|
|
|
|
public byte AV_SPA { get => Data[CardStart + 0xE9]; set => Data[CardStart + 0xE9] = value; }
|
|
|
|
|
public byte AV_SPD { get => Data[CardStart + 0xEA]; set => Data[CardStart + 0xEA] = value; }
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
|
|
|
|
// Meta Accessible Properties
|
|
|
|
|
public override int[] IVs
|
|
|
|
|
{
|
|
|
|
|
get => new[] { IV_HP, IV_ATK, IV_DEF, IV_SPE, IV_SPA, IV_SPD };
|
|
|
|
|
set
|
|
|
|
|
{
|
PKHeX.Core Nullable cleanup (#2401)
* Handle some nullable cases
Refactor MysteryGift into a second abstract class (backed by a byte array, or fake data)
Make some classes have explicit constructors instead of { } initialization
* Handle bits more obviously without null
* Make SaveFile.BAK explicitly readonly again
* merge constructor methods to have readonly fields
* Inline some properties
* More nullable handling
* Rearrange box actions
define straightforward classes to not have any null properties
* Make extrabyte reference array immutable
* Move tooltip creation to designer
* Rearrange some logic to reduce nesting
* Cache generated fonts
* Split mystery gift album purpose
* Handle more tooltips
* Disallow null setters
* Don't capture RNG object, only type enum
* Unify learnset objects
Now have readonly properties which are never null
don't new() empty learnsets (>800 Learnset objects no longer created,
total of 2400 objects since we also new() a move & level array)
optimize g1/2 reader for early abort case
* Access rewrite
Initialize blocks in a separate object, and get via that object
removes a couple hundred "might be null" warnings since blocks are now readonly getters
some block references have been relocated, but interfaces should expose all that's needed
put HoF6 controls in a groupbox, and disable
* Readonly personal data
* IVs non nullable for mystery gift
* Explicitly initialize forced encounter moves
* Make shadow objects readonly & non-null
Put murkrow fix in binary data resource, instead of on startup
* Assign dex form fetch on constructor
Fixes legality parsing edge cases
also handle cxd parse for valid; exit before exception is thrown in FrameGenerator
* Remove unnecessary null checks
* Keep empty value until init
SetPouch sets the value to an actual one during load, but whatever
* Readonly team lock data
* Readonly locks
Put locked encounters at bottom (favor unlocked)
* Mail readonly data / offset
Rearrange some call flow and pass defaults
Add fake classes for SaveDataEditor mocking
Always party size, no need to check twice in stat editor
use a fake save file as initial data for savedata editor, and for
gamedata (wow i found a usage)
constrain eventwork editor to struct variable types (uint, int, etc),
thus preventing null assignment errors
2019-10-17 01:47:31 +00:00
|
|
|
|
if (value.Length != 6) return;
|
2018-11-21 20:24:41 +00:00
|
|
|
|
IV_HP = value[0]; IV_ATK = value[1]; IV_DEF = value[2];
|
|
|
|
|
IV_SPE = value[3]; IV_SPA = value[4]; IV_SPD = value[5];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-14 02:24:08 +00:00
|
|
|
|
public override void GetIVs(Span<int> value)
|
|
|
|
|
{
|
|
|
|
|
if (value.Length != 6)
|
|
|
|
|
return;
|
|
|
|
|
value[0] = IV_HP;
|
|
|
|
|
value[1] = IV_ATK;
|
|
|
|
|
value[2] = IV_DEF;
|
|
|
|
|
value[3] = IV_SPE;
|
|
|
|
|
value[4] = IV_SPA;
|
|
|
|
|
value[5] = IV_SPD;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-21 20:24:41 +00:00
|
|
|
|
public bool GetIsNicknamed(int language) => Data[GetNicknameOffset(language)] != 0;
|
|
|
|
|
|
2019-11-19 06:48:03 +00:00
|
|
|
|
private static int GetLanguageIndex(int language)
|
2018-11-21 20:24:41 +00:00
|
|
|
|
{
|
|
|
|
|
var lang = (LanguageID) language;
|
2020-12-25 20:30:26 +00:00
|
|
|
|
if (lang is < LanguageID.Japanese or LanguageID.UNUSED_6 or > LanguageID.ChineseT)
|
2018-11-21 20:24:41 +00:00
|
|
|
|
return (int) LanguageID.English; // fallback
|
|
|
|
|
return lang < LanguageID.UNUSED_6 ? language - 1 : language - 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override int Location { get => MetLocation; set => MetLocation = (ushort)value; }
|
|
|
|
|
|
2020-01-19 00:46:38 +00:00
|
|
|
|
public override IReadOnlyList<int> Moves
|
2018-11-21 20:24:41 +00:00
|
|
|
|
{
|
|
|
|
|
get => new[] { Move1, Move2, Move3, Move4 };
|
|
|
|
|
set
|
|
|
|
|
{
|
2020-01-19 00:46:38 +00:00
|
|
|
|
if (value.Count > 0) Move1 = value[0];
|
|
|
|
|
if (value.Count > 1) Move2 = value[1];
|
|
|
|
|
if (value.Count > 2) Move3 = value[2];
|
|
|
|
|
if (value.Count > 3) Move4 = value[3];
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-19 00:46:38 +00:00
|
|
|
|
public override IReadOnlyList<int> Relearn
|
2018-11-21 20:24:41 +00:00
|
|
|
|
{
|
|
|
|
|
get => new[] { RelearnMove1, RelearnMove2, RelearnMove3, RelearnMove4 };
|
|
|
|
|
set
|
|
|
|
|
{
|
2020-01-19 00:46:38 +00:00
|
|
|
|
if (value.Count > 0) RelearnMove1 = value[0];
|
|
|
|
|
if (value.Count > 1) RelearnMove2 = value[1];
|
|
|
|
|
if (value.Count > 2) RelearnMove3 = value[2];
|
|
|
|
|
if (value.Count > 3) RelearnMove4 = value[3];
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string OT_Name { get; set; } = string.Empty;
|
|
|
|
|
public string Nickname => string.Empty;
|
|
|
|
|
public bool IsNicknamed => false;
|
|
|
|
|
public int Language => 2;
|
|
|
|
|
|
2021-02-02 02:35:37 +00:00
|
|
|
|
public int GetLanguage(int redeemLanguage)
|
|
|
|
|
{
|
|
|
|
|
var languageOffset = GetLanguageIndex(redeemLanguage);
|
2021-08-24 20:12:14 +00:00
|
|
|
|
var value = Data[0x1D8 + languageOffset];
|
|
|
|
|
if (value != 0) // Fixed receiving language
|
|
|
|
|
return value;
|
|
|
|
|
|
|
|
|
|
// Use redeeming language (clamped to legal values for our sake)
|
|
|
|
|
if (redeemLanguage is < (int)LanguageID.Japanese or (int)LanguageID.UNUSED_6 or > (int)LanguageID.ChineseT)
|
|
|
|
|
return (int)LanguageID.English; // fallback
|
|
|
|
|
return redeemLanguage;
|
2021-02-02 02:35:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-03 05:35:59 +00:00
|
|
|
|
public string GetNickname(int language) => StringConverter8.GetString(Data.AsSpan(GetNicknameOffset(language), 0x1A));
|
|
|
|
|
public void SetNickname(int language, string value) => StringConverter8.SetString(Data.AsSpan(GetNicknameOffset(language), 0x1A), value.AsSpan(), 12, StringConverterOption.ClearZero);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
2022-01-03 05:35:59 +00:00
|
|
|
|
public string GetOT(int language) => StringConverter8.GetString(Data.AsSpan(GetOTOffset(language), 0x1A));
|
|
|
|
|
public void SetOT(int language, string value) => StringConverter8.SetString(Data.AsSpan(GetOTOffset(language), 0x1A), value.AsSpan(), 12, StringConverterOption.ClearZero);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
2020-09-09 19:47:24 +00:00
|
|
|
|
private static int GetNicknameOffset(int language)
|
2018-11-21 20:24:41 +00:00
|
|
|
|
{
|
|
|
|
|
int index = GetLanguageIndex(language);
|
|
|
|
|
return 0x04 + (index * 0x1A);
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-09 19:47:24 +00:00
|
|
|
|
private static int GetOTOffset(int language)
|
2018-11-21 20:24:41 +00:00
|
|
|
|
{
|
|
|
|
|
int index = GetLanguageIndex(language);
|
|
|
|
|
return 0xEE + (index * 0x1A);
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-17 02:46:22 +00:00
|
|
|
|
public override PKM ConvertToPKM(ITrainerInfo sav, EncounterCriteria criteria)
|
2018-11-21 20:24:41 +00:00
|
|
|
|
{
|
2022-06-11 22:32:12 +00:00
|
|
|
|
if (!IsEntity)
|
|
|
|
|
throw new ArgumentException(nameof(IsEntity));
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
2020-01-26 05:49:52 +00:00
|
|
|
|
var rnd = Util.Rand;
|
|
|
|
|
|
|
|
|
|
int currentLevel = Level > 0 ? Level : rnd.Next(1, 101);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
int metLevel = MetLevel > 0 ? MetLevel : currentLevel;
|
2020-12-11 04:42:30 +00:00
|
|
|
|
var pi = PersonalTable.GG.GetFormEntry(Species, Form);
|
2021-02-02 02:35:37 +00:00
|
|
|
|
|
|
|
|
|
var redeemLanguage = sav.Language;
|
|
|
|
|
var language = GetLanguage(redeemLanguage);
|
|
|
|
|
var OT = GetOT(redeemLanguage);
|
|
|
|
|
bool isRedeemHT = OT.Length != 0;
|
2019-02-09 19:37:20 +00:00
|
|
|
|
|
2018-11-21 20:24:41 +00:00
|
|
|
|
var pk = new PB7
|
|
|
|
|
{
|
|
|
|
|
Species = Species,
|
|
|
|
|
HeldItem = HeldItem,
|
|
|
|
|
TID = TID,
|
|
|
|
|
SID = SID,
|
|
|
|
|
Met_Level = metLevel,
|
2020-12-11 04:42:30 +00:00
|
|
|
|
Form = Form,
|
2018-11-21 20:24:41 +00:00
|
|
|
|
EncryptionConstant = EncryptionConstant != 0 ? EncryptionConstant : Util.Rand32(),
|
2020-06-17 02:46:22 +00:00
|
|
|
|
Version = OriginGame != 0 ? OriginGame : sav.Game,
|
2021-02-02 02:35:37 +00:00
|
|
|
|
Language = language,
|
2018-11-21 20:24:41 +00:00
|
|
|
|
Ball = Ball,
|
2019-02-09 19:37:20 +00:00
|
|
|
|
Move1 = Move1,
|
|
|
|
|
Move2 = Move2,
|
|
|
|
|
Move3 = Move3,
|
|
|
|
|
Move4 = Move4,
|
|
|
|
|
RelearnMove1 = RelearnMove1,
|
|
|
|
|
RelearnMove2 = RelearnMove2,
|
|
|
|
|
RelearnMove3 = RelearnMove3,
|
|
|
|
|
RelearnMove4 = RelearnMove4,
|
2018-11-21 20:24:41 +00:00
|
|
|
|
Met_Location = MetLocation,
|
|
|
|
|
Egg_Location = EggLocation,
|
|
|
|
|
AV_HP = AV_HP,
|
|
|
|
|
AV_ATK = AV_ATK,
|
|
|
|
|
AV_DEF = AV_DEF,
|
|
|
|
|
AV_SPE = AV_SPE,
|
|
|
|
|
AV_SPA = AV_SPA,
|
|
|
|
|
AV_SPD = AV_SPD,
|
|
|
|
|
|
2021-02-02 02:35:37 +00:00
|
|
|
|
OT_Name = isRedeemHT ? OT : sav.OT,
|
2020-06-17 02:46:22 +00:00
|
|
|
|
OT_Gender = OTGender != 3 ? OTGender % 2 : sav.Gender,
|
2021-02-02 02:35:37 +00:00
|
|
|
|
CurrentHandler = isRedeemHT ? 1 : 0,
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
2019-11-16 01:34:18 +00:00
|
|
|
|
EXP = Experience.GetEXP(currentLevel, pi.EXPGrowth),
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
|
|
|
|
OT_Friendship = pi.BaseFriendship,
|
|
|
|
|
FatefulEncounter = true,
|
|
|
|
|
};
|
2021-02-02 02:35:37 +00:00
|
|
|
|
|
|
|
|
|
if (isRedeemHT)
|
|
|
|
|
{
|
|
|
|
|
pk.HT_Name = sav.OT;
|
|
|
|
|
pk.HT_Gender = sav.Gender;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-09 19:37:20 +00:00
|
|
|
|
pk.SetMaximumPPCurrent();
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
2020-12-11 04:42:30 +00:00
|
|
|
|
if ((sav.Generation > Generation && OriginGame == 0) || !CanBeReceivedByVersion(pk.Version))
|
2018-11-21 20:24:41 +00:00
|
|
|
|
{
|
|
|
|
|
// give random valid game
|
2020-01-26 05:49:52 +00:00
|
|
|
|
do { pk.Version = (int)GameVersion.GP + rnd.Next(2); }
|
2018-11-21 20:24:41 +00:00
|
|
|
|
while (!CanBeReceivedByVersion(pk.Version));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (OTGender == 3)
|
|
|
|
|
{
|
2020-06-17 02:46:22 +00:00
|
|
|
|
pk.TID = sav.TID;
|
|
|
|
|
pk.SID = sav.SID;
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pk.MetDate = Date ?? DateTime.Now;
|
2021-02-02 02:35:37 +00:00
|
|
|
|
pk.IsNicknamed = GetIsNicknamed(redeemLanguage);
|
|
|
|
|
pk.Nickname = pk.IsNicknamed ? GetNickname(redeemLanguage) : SpeciesName.GetSpeciesNameGeneration(Species, pk.Language, Generation);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
2019-02-09 19:37:20 +00:00
|
|
|
|
SetPINGA(pk, criteria);
|
|
|
|
|
|
|
|
|
|
if (IsEgg)
|
|
|
|
|
SetEggMetData(pk);
|
|
|
|
|
pk.CurrentFriendship = pk.IsEgg ? pi.HatchCycles : pi.BaseFriendship;
|
|
|
|
|
|
2022-03-06 02:30:35 +00:00
|
|
|
|
pk.HeightScalar = (byte)rnd.Next(0x100);
|
|
|
|
|
pk.WeightScalar = (byte)rnd.Next(0x100);
|
2019-02-09 19:37:20 +00:00
|
|
|
|
pk.ResetCalculatedValues(); // cp & dimensions
|
|
|
|
|
|
|
|
|
|
pk.RefreshChecksum();
|
|
|
|
|
return pk;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void SetEggMetData(PKM pk)
|
|
|
|
|
{
|
|
|
|
|
pk.IsEgg = true;
|
|
|
|
|
pk.EggMetDate = Date;
|
2020-12-11 04:42:30 +00:00
|
|
|
|
pk.Nickname = SpeciesName.GetSpeciesNameGeneration(0, pk.Language, Generation);
|
2019-02-09 19:37:20 +00:00
|
|
|
|
pk.IsNicknamed = true;
|
|
|
|
|
}
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
2019-02-09 19:37:20 +00:00
|
|
|
|
private void SetPINGA(PKM pk, EncounterCriteria criteria)
|
|
|
|
|
{
|
2020-12-11 04:42:30 +00:00
|
|
|
|
var pi = PersonalTable.GG.GetFormEntry(Species, Form);
|
2019-02-09 19:37:20 +00:00
|
|
|
|
pk.Nature = (int)criteria.GetNature((Nature)Nature);
|
|
|
|
|
pk.Gender = criteria.GetGender(Gender, pi);
|
2021-04-09 21:52:49 +00:00
|
|
|
|
var av = GetAbilityIndex(criteria);
|
2019-02-09 19:37:20 +00:00
|
|
|
|
pk.RefreshAbility(av);
|
|
|
|
|
SetPID(pk);
|
|
|
|
|
SetIVs(pk);
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-09 21:52:49 +00:00
|
|
|
|
private int GetAbilityIndex(EncounterCriteria criteria) => AbilityType switch
|
2019-02-09 19:37:20 +00:00
|
|
|
|
{
|
2021-01-02 01:08:49 +00:00
|
|
|
|
00 or 01 or 02 => AbilityType, // Fixed 0/1/2
|
2022-01-09 06:34:04 +00:00
|
|
|
|
03 or 04 => criteria.GetAbilityFromNumber(Ability), // 0/1 or 0/1/H
|
2021-08-21 23:51:50 +00:00
|
|
|
|
_ => throw new ArgumentOutOfRangeException(nameof(AbilityType)),
|
2021-01-02 01:08:49 +00:00
|
|
|
|
};
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
2022-01-09 06:34:04 +00:00
|
|
|
|
public override AbilityPermission Ability => AbilityType switch
|
2021-12-09 08:46:59 +00:00
|
|
|
|
{
|
2022-01-09 06:34:04 +00:00
|
|
|
|
0 => AbilityPermission.OnlyFirst,
|
|
|
|
|
1 => AbilityPermission.OnlySecond,
|
|
|
|
|
2 => AbilityPermission.OnlyHidden,
|
|
|
|
|
3 => AbilityPermission.Any12,
|
|
|
|
|
_ => AbilityPermission.Any12H,
|
2021-12-09 08:46:59 +00:00
|
|
|
|
};
|
|
|
|
|
|
2019-02-09 19:37:20 +00:00
|
|
|
|
private void SetPID(PKM pk)
|
|
|
|
|
{
|
2018-11-21 20:24:41 +00:00
|
|
|
|
switch (PIDType)
|
|
|
|
|
{
|
2022-03-13 01:04:20 +00:00
|
|
|
|
case ShinyType6.FixedValue: // Specified
|
2018-11-21 20:24:41 +00:00
|
|
|
|
pk.PID = PID;
|
|
|
|
|
break;
|
2022-03-13 01:04:20 +00:00
|
|
|
|
case ShinyType6.Random: // Random
|
2018-11-21 20:24:41 +00:00
|
|
|
|
pk.PID = Util.Rand32();
|
|
|
|
|
break;
|
2022-03-13 01:04:20 +00:00
|
|
|
|
case ShinyType6.Always: // Random Shiny
|
2018-11-21 20:24:41 +00:00
|
|
|
|
pk.PID = Util.Rand32();
|
|
|
|
|
pk.PID = (uint)(((pk.TID ^ pk.SID ^ (pk.PID & 0xFFFF)) << 16) | (pk.PID & 0xFFFF));
|
|
|
|
|
break;
|
2022-03-13 01:04:20 +00:00
|
|
|
|
case ShinyType6.Never: // Random Nonshiny
|
2018-11-21 20:24:41 +00:00
|
|
|
|
pk.PID = Util.Rand32();
|
|
|
|
|
if (pk.IsShiny) pk.PID ^= 0x10000000;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2019-02-09 19:37:20 +00:00
|
|
|
|
}
|
2018-11-21 20:24:41 +00:00
|
|
|
|
|
2019-02-09 19:37:20 +00:00
|
|
|
|
private void SetIVs(PKM pk)
|
|
|
|
|
{
|
2022-01-03 05:35:59 +00:00
|
|
|
|
Span<int> finalIVs = stackalloc int[6];
|
2022-03-14 02:24:08 +00:00
|
|
|
|
GetIVs(finalIVs);
|
|
|
|
|
var ivflag = finalIVs.Find(iv => (byte)(iv - 0xFC) < 3);
|
2020-01-26 05:49:52 +00:00
|
|
|
|
var rng = Util.Rand;
|
2019-02-09 19:37:20 +00:00
|
|
|
|
if (ivflag == 0) // Random IVs
|
|
|
|
|
{
|
2022-03-14 02:24:08 +00:00
|
|
|
|
for (int i = 0; i < finalIVs.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
if (finalIVs[i] > 31)
|
|
|
|
|
finalIVs[i] = rng.Next(32);
|
|
|
|
|
}
|
2019-02-09 19:37:20 +00:00
|
|
|
|
}
|
|
|
|
|
else // 1/2/3 perfect IVs
|
2018-11-21 20:24:41 +00:00
|
|
|
|
{
|
2019-02-09 19:37:20 +00:00
|
|
|
|
int IVCount = ivflag - 0xFB;
|
2020-01-26 05:49:52 +00:00
|
|
|
|
do { finalIVs[rng.Next(6)] = 31; }
|
2022-01-03 05:35:59 +00:00
|
|
|
|
while (finalIVs.Count(31) < IVCount);
|
2022-03-14 02:24:08 +00:00
|
|
|
|
for (int i = 0; i < finalIVs.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
if (finalIVs[i] != 31)
|
|
|
|
|
finalIVs[i] = rng.Next(32);
|
|
|
|
|
}
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
2022-01-03 05:35:59 +00:00
|
|
|
|
pk.SetIVs(finalIVs);
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
2018-12-27 09:00:08 +00:00
|
|
|
|
|
2021-02-02 02:35:37 +00:00
|
|
|
|
public bool CanHaveLanguage(int language)
|
|
|
|
|
{
|
|
|
|
|
if (language is < (int) LanguageID.Japanese or > (int) LanguageID.ChineseT)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (CanBeAnyLanguage())
|
|
|
|
|
return true;
|
|
|
|
|
|
2021-02-02 02:39:34 +00:00
|
|
|
|
return Array.IndexOf(Data, (byte)language, 0x1D8, 9) >= 0;
|
2021-02-02 02:35:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool CanBeAnyLanguage()
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < 9; i++)
|
|
|
|
|
{
|
|
|
|
|
if (Data[0x1D8 + i] != 0)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-03 06:12:36 +00:00
|
|
|
|
public bool CanHandleOT(int language) => string.IsNullOrEmpty(GetOT(language));
|
|
|
|
|
|
2022-05-08 01:29:36 +00:00
|
|
|
|
public override bool IsMatchExact(PKM pkm, EvoCriteria evo)
|
2018-12-27 09:00:08 +00:00
|
|
|
|
{
|
2022-05-31 04:43:52 +00:00
|
|
|
|
if (!IsEgg)
|
2018-12-27 09:00:08 +00:00
|
|
|
|
{
|
|
|
|
|
if (OTGender != 3)
|
|
|
|
|
{
|
|
|
|
|
if (SID != pkm.SID) return false;
|
|
|
|
|
if (TID != pkm.TID) return false;
|
|
|
|
|
if (OTGender != pkm.OT_Gender) return false;
|
|
|
|
|
}
|
|
|
|
|
var OT = GetOT(pkm.Language);
|
|
|
|
|
if (!string.IsNullOrEmpty(OT) && OT != pkm.OT_Name) return false;
|
|
|
|
|
if (OriginGame != 0 && OriginGame != pkm.Version) return false;
|
|
|
|
|
if (EncryptionConstant != 0 && EncryptionConstant != pkm.EncryptionConstant) return false;
|
2021-02-02 02:35:37 +00:00
|
|
|
|
|
2022-05-31 04:43:52 +00:00
|
|
|
|
if (!IsMatchEggLocation(pkm)) return false;
|
2021-02-02 02:35:37 +00:00
|
|
|
|
if (!CanBeAnyLanguage() && !CanHaveLanguage(pkm.Language))
|
|
|
|
|
return false;
|
2018-12-27 09:00:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-11 04:42:30 +00:00
|
|
|
|
if (Form != evo.Form && !FormInfo.IsFormChangeable(Species, Form, pkm.Form, pkm.Format))
|
2018-12-27 09:00:08 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (IsEgg)
|
|
|
|
|
{
|
|
|
|
|
if (EggLocation != pkm.Egg_Location) // traded
|
|
|
|
|
{
|
2019-05-11 03:46:49 +00:00
|
|
|
|
if (pkm.Egg_Location != Locations.LinkTrade6)
|
2018-12-27 09:00:08 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
else if (PIDType == 0 && pkm.IsShiny)
|
|
|
|
|
{
|
|
|
|
|
return false; // can't be traded away for unshiny
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pkm.IsEgg && !pkm.IsNative)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2022-03-13 01:04:20 +00:00
|
|
|
|
if (!Shiny.IsValid(pkm)) return false;
|
2022-05-31 04:43:52 +00:00
|
|
|
|
if (!IsMatchEggLocation(pkm)) return false;
|
2018-12-27 09:00:08 +00:00
|
|
|
|
if (MetLocation != pkm.Met_Location) return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (MetLevel != pkm.Met_Level) return false;
|
|
|
|
|
if (Ball != pkm.Ball) return false;
|
|
|
|
|
if (OTGender < 3 && OTGender != pkm.OT_Gender) return false;
|
2019-11-16 01:34:18 +00:00
|
|
|
|
if (Nature != -1 && pkm.Nature != Nature) return false;
|
2018-12-27 09:00:08 +00:00
|
|
|
|
if (Gender != 3 && Gender != pkm.Gender) return false;
|
|
|
|
|
|
|
|
|
|
if (pkm is IAwakened s && s.IsAwakeningBelow(this))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-21 00:47:31 +00:00
|
|
|
|
protected override bool IsMatchDeferred(PKM pkm) => Species != pkm.Species;
|
Fracture the encounter matching checks to allow progressive validation (#3137)
## Issue
We want to discard-but-remember any slots that aren't a perfect fit, on the off chance that a better one exists later in the search space. If there's no better match, then we gotta go with what we got.
## Example:
Wurmple exists in area `X`, and also has a more rare slot for Silcoon, with the same level for both slots.
* We have a Silcoon that we've leveled up a few times.
Was our Silcoon originally a Wurmple, or was it caught as a Silcoon?
* To be sure, we have to check the EC/PID if the Wurmple wouldn't evolve into Cascoon instead.
* We don't want to wholly reject that Wurmple slot, as maybe the Met Level isn't within Silcoon's slot range.
---
Existing implementation would store "deferred" matches in a list; we only need to keep 1 of these matches around (less allocation!). We also want to differentiate between a "good" deferral and a "bad" deferral; I don't think this is necessary but it's currently used by Mystery Gift matching (implemented for the Eeveelution mystery gifts which matter for evolution moves).
The existing logic didn't use inheritance, and instead had static methods being reused across generations. Quite kludgy. Also, the existing logic was a pain to modify the master encounter yield methods, as one generation's quirks had to not impact all other generations that used the method.
---
The new implementation splits out the encounter yielding methods to be separate for each generation / subset. Now, things don't have to check `WasLink` for Gen7 origin, because Pokémon Link wasn't a thing in Gen7.
---
## Future
Maybe refactoring yielders into "GameCores" that expose yielding behaviors / properties, rather than the static logic. As more generations and side-gamegroups get added (thanks LGPE/GO/GameCube), all this switch stuff gets annoying to maintain instead of just overriding/inheritance.
## Conclusion
This shouldn't impact any legality results negatively; if you notice any regressions, report them! This should reduce false flags where we didn't defer-discard an encounter when we should have (wild area mons being confused with raids).
2021-01-30 01:55:27 +00:00
|
|
|
|
protected override bool IsMatchPartial(PKM pkm) => false;
|
2018-11-21 20:24:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|