mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
0296f98777
calling Japanese ? X : Y on every single access is too excessive, just compute one layout for each type whenever the first sav1 requires it. could probably reduce the amount of properties by reusing others + shift value; offsets are different due to string lengths being different
74 lines
2.5 KiB
C#
74 lines
2.5 KiB
C#
namespace PKHeX.Core
|
|
{
|
|
internal class SAV1Offsets
|
|
{
|
|
public static readonly SAV1Offsets INT = GetINT();
|
|
public static readonly SAV1Offsets JPN = GetJPN();
|
|
|
|
private static SAV1Offsets GetINT() => new SAV1Offsets
|
|
{
|
|
DexCaught = 0x25A3,
|
|
DexSeen = 0x25B6,
|
|
Items = 0x25C9,
|
|
Money = 0x25F3,
|
|
Options = 0x2601,
|
|
Badges = 0x2602,
|
|
TID = 0x2605,
|
|
PikaFriendship = 0x271C,
|
|
PCItems = 0x27E6,
|
|
CurrentBoxIndex = 0x284C,
|
|
Coin = 0x2850,
|
|
ObjectSpawnFlags = 0x2852, // 2 bytes after Coin
|
|
Starter = 0x29C3,
|
|
EventFlag = 0x29F3,
|
|
PlayTime = 0x2CED,
|
|
Daycare = 0x2CF4,
|
|
Party = 0x2F2C,
|
|
CurrentBox = 0x30C0,
|
|
ChecksumOfs = 0x3523,
|
|
};
|
|
|
|
private static SAV1Offsets GetJPN() => new SAV1Offsets
|
|
{
|
|
DexCaught = 0x259E,
|
|
DexSeen = 0x25B1,
|
|
Items = 0x25C4,
|
|
Money = 0x25EE,
|
|
Options = 0x25F7,
|
|
Badges = 0x25F8,
|
|
TID = 0x25FB,
|
|
PikaFriendship = 0x2712,
|
|
PCItems = 0x27DC,
|
|
CurrentBoxIndex = 0x2842,
|
|
Coin = 0x2846,
|
|
ObjectSpawnFlags = 0x2848, // 2 bytes after Coin
|
|
Starter = 0x29B9,
|
|
EventFlag = 0x29E9,
|
|
PlayTime = 0x2CA0,
|
|
Daycare = 0x2CA7,
|
|
Party = 0x2ED5,
|
|
CurrentBox = 0x302D,
|
|
ChecksumOfs = 0x3594,
|
|
};
|
|
|
|
public int DexCaught { get; private set; }
|
|
public int DexSeen { get; private set; }
|
|
public int Items { get; private set; }
|
|
public int Money { get; private set; }
|
|
public int Options { get; private set; }
|
|
public int Badges { get; private set; }
|
|
public int TID { get; private set; }
|
|
public int PikaFriendship { get; private set; }
|
|
public int PCItems { get; private set; }
|
|
public int CurrentBoxIndex { get; private set; }
|
|
public int Coin { get; private set; }
|
|
public int ObjectSpawnFlags { get; private set; }
|
|
public int Starter { get; private set; }
|
|
public int EventFlag { get; private set; }
|
|
public int PlayTime { get; private set; }
|
|
public int Daycare { get; private set; }
|
|
public int Party { get; private set; }
|
|
public int CurrentBox { get; private set; }
|
|
public int ChecksumOfs { get; private set; }
|
|
}
|
|
}
|