PKHeX/PKHeX.Core/Saves/Access/SaveBlockAccessorAO.cs

110 lines
6.5 KiB
C#
Raw Normal View History

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
using System.Collections.Generic;
namespace PKHeX.Core
{
public class SaveBlockAccessorAO : ISaveBlockAccessor<BlockInfo6>, ISaveBlock6Main
{
public const int boAO = SaveUtil.SIZE_G6ORAS - 0x200;
public static readonly BlockInfo6[] BlocksAO =
{
new BlockInfo6(boAO, 00, 0x00000, 0x002C8), // 00 Puff
new BlockInfo6(boAO, 01, 0x00400, 0x00B90), // 01 MyItem
new BlockInfo6(boAO, 02, 0x01000, 0x0002C), // 02 ItemInfo (Select Bound Items)
new BlockInfo6(boAO, 03, 0x01200, 0x00038), // 03 GameTime
new BlockInfo6(boAO, 04, 0x01400, 0x00150), // 04 Situation
new BlockInfo6(boAO, 05, 0x01600, 0x00004), // 05 RandomGroup (rand seeds)
new BlockInfo6(boAO, 06, 0x01800, 0x00008), // 06 PlayTime
new BlockInfo6(boAO, 07, 0x01A00, 0x001C0), // 07 Fashion
new BlockInfo6(boAO, 08, 0x01C00, 0x000BE), // 08 Amie minigame records
new BlockInfo6(boAO, 09, 0x01E00, 0x00024), // 09 temp variables (u32 id + 32 u8)
new BlockInfo6(boAO, 10, 0x02000, 0x02100), // 10 FieldMoveModelSave
new BlockInfo6(boAO, 11, 0x04200, 0x00130), // 11 Misc
new BlockInfo6(boAO, 12, 0x04400, 0x00440), // 12 BOX
new BlockInfo6(boAO, 13, 0x04A00, 0x00574), // 13 BattleBox
new BlockInfo6(boAO, 14, 0x05000, 0x04E28), // 14 PSS1
new BlockInfo6(boAO, 15, 0x0A000, 0x04E28), // 15 PSS2
new BlockInfo6(boAO, 16, 0x0F000, 0x04E28), // 16 PSS3
new BlockInfo6(boAO, 17, 0x14000, 0x00170), // 17 MyStatus
new BlockInfo6(boAO, 18, 0x14200, 0x0061C), // 18 PokePartySave
new BlockInfo6(boAO, 19, 0x14A00, 0x00504), // 19 EventWork
new BlockInfo6(boAO, 20, 0x15000, 0x011CC), // 20 ZukanData
new BlockInfo6(boAO, 21, 0x16200, 0x00644), // 21 hologram clips
new BlockInfo6(boAO, 22, 0x16A00, 0x00104), // 22 UnionPokemon
new BlockInfo6(boAO, 23, 0x16C00, 0x00004), // 23 ConfigSave
new BlockInfo6(boAO, 24, 0x16E00, 0x00420), // 24 Amie decoration stuff
new BlockInfo6(boAO, 25, 0x17400, 0x00064), // 25 OPower = 0x17400;
new BlockInfo6(boAO, 26, 0x17600, 0x003F0), // 26 Strength Rock position (xyz float: 84 entries, 12bytes/entry)
new BlockInfo6(boAO, 27, 0x17A00, 0x0070C), // 27 Trainer PR Video
new BlockInfo6(boAO, 28, 0x18200, 0x00180), // 28 GtsData
new BlockInfo6(boAO, 29, 0x18400, 0x00004), // 29 Packed Menu Bits
new BlockInfo6(boAO, 30, 0x18600, 0x0000C), // 30 PSS Profile Q&A (6*questions, 6*answer)
new BlockInfo6(boAO, 31, 0x18800, 0x00048), // 31 Repel Info, (Swarm?) and other overworld info (roamer)
new BlockInfo6(boAO, 32, 0x18A00, 0x00054), // 32 BOSS data fetch history (serial/mystery gift), 4byte intro & 20*4byte entries
new BlockInfo6(boAO, 33, 0x18C00, 0x00644), // 33 Streetpass history
new BlockInfo6(boAO, 34, 0x19400, 0x005C8), // 34 LiveMatchData/BattleSpotData
new BlockInfo6(boAO, 35, 0x19A00, 0x002F8), // 35 MAC Address & Network Connection Logging (0x98 per entry, 5 entries)
new BlockInfo6(boAO, 36, 0x19E00, 0x01B40), // 36 Dendou (Hall of Fame)
new BlockInfo6(boAO, 37, 0x1BA00, 0x001F4), // 37 BattleInstSave (Maison)
new BlockInfo6(boAO, 38, 0x1BC00, 0x003E0), // 38 Sodateya (Daycare)
new BlockInfo6(boAO, 39, 0x1C000, 0x00216), // 39 BattleInstSave
new BlockInfo6(boAO, 40, 0x1C400, 0x00640), // 40 BerryField
new BlockInfo6(boAO, 41, 0x1CC00, 0x01A90), // 41 MysteryGiftSave
new BlockInfo6(boAO, 42, 0x1E800, 0x00400), // 42 Storyline Records
new BlockInfo6(boAO, 43, 0x1EC00, 0x00618), // 43 PokeDiarySave
new BlockInfo6(boAO, 44, 0x1F400, 0x0025C), // 44 Record
new BlockInfo6(boAO, 45, 0x1F800, 0x00834), // 45 Friend Safari (0x15 per entry, 100 entries)
new BlockInfo6(boAO, 46, 0x20200, 0x00318), // 46 SuperTrain
new BlockInfo6(boAO, 47, 0x20600, 0x007D0), // 47 Unused (lmao)
new BlockInfo6(boAO, 48, 0x20E00, 0x00C48), // 48 LinkInfo
new BlockInfo6(boAO, 49, 0x21C00, 0x00078), // 49 PSS usage info
new BlockInfo6(boAO, 50, 0x21E00, 0x00200), // 50 GameSyncSave
new BlockInfo6(boAO, 51, 0x22000, 0x00C84), // 51 PSS Icon (bool32 data present, 40x40 u16 pic, unused)
new BlockInfo6(boAO, 52, 0x22E00, 0x00628), // 52 ValidationSave (updatabale Public Key for legal check api calls)
new BlockInfo6(boAO, 53, 0x23600, 0x00400), // 53 Contest
new BlockInfo6(boAO, 54, 0x23A00, 0x07AD0), // 54 SecretBase
new BlockInfo6(boAO, 55, 0x2B600, 0x078B0), // 55 EonTicket
new BlockInfo6(boAO, 56, 0x33000, 0x34AD0), // 56 Box
new BlockInfo6(boAO, 57, 0x67C00, 0x0E058), // 57 JPEG
};
public IReadOnlyList<BlockInfo6> BlockInfo => BlocksAO;
public MyItem Items { get; }
public ItemInfo6 ItemInfo { get; }
public GameTime6 GameTime { get; }
public Situation6 Situation { get; }
public PlayTime6 Played { get; }
public MyStatus6 Status { get; }
public Record6 Records { get; }
public Zukan6AO Zukan { get; }
public Puff6 PuffBlock { get; }
public BoxLayout6 BoxLayout { get; }
public BattleBox6 BattleBoxBlock { get; }
public OPower6 OPowerBlock { get; }
public MysteryBlock6 MysteryBlock { get; }
public SangoInfoBlock Sango { get; }
public Link6 LinkBlock { get; }
public Misc6AO Misc { get; }
public SaveBlockAccessorAO(SAV6AO sav)
{
PuffBlock = new Puff6(sav, 0x0000);
Items = new MyItem6AO(sav, 0x00400);
ItemInfo = new ItemInfo6(sav, 0x1000);
GameTime = new GameTime6(sav, 0x01200);
Situation = new Situation6(sav, 0x01400);
Played = new PlayTime6(sav, 0x01800);
Misc = new Misc6AO(sav, 0x04200);
BoxLayout = new BoxLayout6(sav, 0x04400);
BattleBoxBlock = new BattleBox6(sav, 0x04A00);
Status = new MyStatus6(sav, 0x14000);
Zukan = new Zukan6AO(sav, 0x15000, 0x400);
OPowerBlock = new OPower6(sav, 0x17400);
MysteryBlock = new MysteryBlock6(sav, 0x1CC00);
Records = new Record6(sav, 0x1F400);
Sango = new SangoInfoBlock(sav, 0x2B600);
LinkBlock = new Link6(sav, 0x20E00);
}
}
}