mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
02420d3e93
* 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
61 lines
No EOL
2.9 KiB
C#
61 lines
No EOL
2.9 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public class SaveBlockAccessor7b : ISaveBlockAccessor<BlockInfo7b>
|
|
{
|
|
private const int boGG = 0xB8800 - 0x200; // nowhere near 1MB (savedata.bin size)
|
|
|
|
private static readonly BlockInfo7b[] BlockInfoGG =
|
|
{
|
|
new BlockInfo7b(boGG, 00, 0x00000, 0x00D90),
|
|
new BlockInfo7b(boGG, 01, 0x00E00, 0x00200),
|
|
new BlockInfo7b(boGG, 02, 0x01000, 0x00168),
|
|
new BlockInfo7b(boGG, 03, 0x01200, 0x01800),
|
|
new BlockInfo7b(boGG, 04, 0x02A00, 0x020E8),
|
|
new BlockInfo7b(boGG, 05, 0x04C00, 0x00930),
|
|
new BlockInfo7b(boGG, 06, 0x05600, 0x00004),
|
|
new BlockInfo7b(boGG, 07, 0x05800, 0x00130),
|
|
new BlockInfo7b(boGG, 08, 0x05A00, 0x00012),
|
|
new BlockInfo7b(boGG, 09, 0x05C00, 0x3F7A0),
|
|
new BlockInfo7b(boGG, 10, 0x45400, 0x00008),
|
|
new BlockInfo7b(boGG, 11, 0x45600, 0x00E90),
|
|
new BlockInfo7b(boGG, 12, 0x46600, 0x010A4),
|
|
new BlockInfo7b(boGG, 13, 0x47800, 0x000F0),
|
|
new BlockInfo7b(boGG, 14, 0x47A00, 0x06010),
|
|
new BlockInfo7b(boGG, 15, 0x4DC00, 0x00200),
|
|
new BlockInfo7b(boGG, 16, 0x4DE00, 0x00098),
|
|
new BlockInfo7b(boGG, 17, 0x4E000, 0x00068),
|
|
new BlockInfo7b(boGG, 18, 0x4E200, 0x69780),
|
|
new BlockInfo7b(boGG, 19, 0xB7A00, 0x000B0),
|
|
new BlockInfo7b(boGG, 20, 0xB7C00, 0x00940),
|
|
};
|
|
|
|
public IReadOnlyList<BlockInfo7b> BlockInfo => BlockInfoGG;
|
|
|
|
public SaveBlockAccessor7b(SAV7b sav)
|
|
{
|
|
Zukan = new Zukan7b(sav, GetBlockOffset(BelugaBlockIndex.Zukan), 0x550);
|
|
Config = new ConfigSave7b(sav, GetBlockOffset(BelugaBlockIndex.ConfigSave));
|
|
Items = new MyItem7b(sav, GetBlockOffset(BelugaBlockIndex.MyItem));
|
|
Storage = new PokeListHeader(sav, GetBlockOffset(BelugaBlockIndex.PokeListHeader));
|
|
Status = new MyStatus7b(sav, GetBlockOffset(BelugaBlockIndex.MyStatus));
|
|
Played = new PlayTime7b(sav, GetBlockOffset(BelugaBlockIndex.PlayTime));
|
|
Misc = new Misc7b(sav, GetBlockOffset(BelugaBlockIndex.Misc));
|
|
EventWork = new EventWork7b(sav, GetBlockOffset(BelugaBlockIndex.EventWork));
|
|
GiftRecords = new WB7Records(sav, GetBlockOffset(BelugaBlockIndex.WB7Record));
|
|
}
|
|
|
|
public readonly MyItem Items;
|
|
public readonly Misc7b Misc;
|
|
public readonly Zukan7b Zukan;
|
|
public readonly MyStatus7b Status;
|
|
public readonly PlayTime7b Played;
|
|
public readonly ConfigSave7b Config;
|
|
public readonly EventWork7b EventWork;
|
|
public readonly PokeListHeader Storage;
|
|
public readonly WB7Records GiftRecords;
|
|
public BlockInfo GetBlock(BelugaBlockIndex index) => BlockInfo[(int)index];
|
|
public int GetBlockOffset(BelugaBlockIndex index) => GetBlock(index).Offset;
|
|
}
|
|
} |