2019-01-15 05:31:53 +00:00
|
|
|
using System;
|
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;
|
2019-01-15 05:31:53 +00:00
|
|
|
using System.Security.Cryptography;
|
2022-01-03 05:35:59 +00:00
|
|
|
using static System.Buffers.Binary.BinaryPrimitives;
|
2019-01-15 05:31:53 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Generation 4 <see cref="SaveFile"/> object for My Pokémon Ranch saves.
|
|
|
|
/// </summary>
|
|
|
|
public sealed class SAV4Ranch : BulkStorage, ISaveFileRevision
|
2019-01-15 05:31:53 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
protected override int SIZE_STORED => 0x88 + 0x1C;
|
|
|
|
protected override int SIZE_PARTY => SIZE_STORED;
|
|
|
|
|
|
|
|
public int SaveRevision => Version == GameVersion.DP ? 0 : 1;
|
|
|
|
public string SaveRevisionString => Version == GameVersion.DP ? "-DP" : "-Pt";
|
|
|
|
|
|
|
|
public override int BoxCount { get; }
|
|
|
|
public override int SlotCount { get; }
|
|
|
|
|
Refactoring: Move Source (Legality) (#3560)
Rewrites a good amount of legality APIs pertaining to:
* Legal moves that can be learned
* Evolution chains & cross-generation paths
* Memory validation with forgotten moves
In generation 8, there are 3 separate contexts an entity can exist in: SW/SH, BD/SP, and LA. Not every entity can cross between them, and not every entity from generation 7 can exist in generation 8 (Gogoat, etc). By creating class models representing the restrictions to cross each boundary, we are able to better track and validate data.
The old implementation of validating moves was greedy: it would iterate for all generations and evolutions, and build a full list of every move that can be learned, storing it on the heap. Now, we check one game group at a time to see if the entity can learn a move that hasn't yet been validated. End result is an algorithm that requires 0 allocation, and a smaller/quicker search space.
The old implementation of storing move parses was inefficient; for each move that was parsed, a new object is created and adjusted depending on the parse. Now, move parse results are `struct` and store the move parse contiguously in memory. End result is faster parsing and 0 memory allocation.
* `PersonalTable` objects have been improved with new API methods to check if a species+form can exist in the game.
* `IEncounterTemplate` objects have been improved to indicate the `EntityContext` they originate in (similar to `Generation`).
* Some APIs have been extended to accept `Span<T>` instead of Array/IEnumerable
2022-08-03 23:15:27 +00:00
|
|
|
public override IPersonalTable Personal => PersonalTable.Pt;
|
2022-06-18 18:04:24 +00:00
|
|
|
public override IReadOnlyList<ushort> HeldItems => Legal.HeldItems_Pt;
|
|
|
|
protected override SaveFile CloneInternal() => new SAV4Ranch((byte[])Data.Clone());
|
|
|
|
public override string PlayTimeString => $"{Checksums.CRC16Invert(Data):X4}";
|
|
|
|
protected internal override string ShortSummary => $"{OT} {PlayTimeString}";
|
|
|
|
public override string Extension => ".bin";
|
|
|
|
|
|
|
|
protected override PKM GetPKM(byte[] data) => new PK4(data);
|
|
|
|
protected override byte[] DecryptPKM(byte[] data) => PokeCrypto.DecryptArray45(data);
|
|
|
|
public override StorageSlotSource GetSlotFlags(int index) => index >= SlotCount ? StorageSlotSource.Locked : StorageSlotSource.None;
|
|
|
|
protected override bool IsSlotSwapProtected(int box, int slot) => IsSlotOverwriteProtected(box, slot);
|
|
|
|
|
|
|
|
public SAV4Ranch(byte[] data) : base(data, typeof(PK4), 0)
|
|
|
|
{
|
|
|
|
Version = Data.Length == SaveUtil.SIZE_G4RANCH_PLAT ? GameVersion.Pt : GameVersion.DP;
|
|
|
|
|
|
|
|
OT = GetString(0x770, 0x12);
|
|
|
|
|
|
|
|
// 0x18 starts the header table
|
|
|
|
// Block 00, Offset = ???
|
|
|
|
// Block 01, Offset = Mii Data
|
|
|
|
// Block 02, Offset = Mii Link Data
|
|
|
|
// Block 03, Offset = Pokemon Data
|
|
|
|
// Block 04, Offset = ??
|
|
|
|
|
|
|
|
// Unpack the binary a little:
|
|
|
|
// size, count, Mii data[count]
|
|
|
|
// size, count, Mii Link data[count]
|
|
|
|
// size, count, Pokemon (PK4 + metadata)[count]
|
|
|
|
// size, count, ???
|
|
|
|
|
|
|
|
/* ====Metadata====
|
|
|
|
* uint8_t poke_type;// 01 trainer, 04 hayley, 05 traded
|
|
|
|
* uint8_t tradeable;// 02 is tradeable, normal 00
|
|
|
|
* uint16_t tid;
|
|
|
|
* uint16_t sid;
|
|
|
|
* uint32_t name1;
|
|
|
|
* uint32_t name2;
|
|
|
|
* uint32_t name3;
|
|
|
|
* uint32_t name4;
|
|
|
|
*/
|
|
|
|
|
|
|
|
var pkCountOffset = ReadInt32BigEndian(Data.AsSpan(0x34)) + 4;
|
|
|
|
SlotCount = ReadInt32BigEndian(Data.AsSpan(pkCountOffset));
|
|
|
|
BoxCount = (int)Math.Ceiling((decimal)SlotCount / SlotsPerBox);
|
|
|
|
|
|
|
|
Box = pkCountOffset + 4;
|
|
|
|
|
|
|
|
FinalCountOffset = ReadInt32BigEndian(Data.AsSpan(0x3C));
|
|
|
|
FinalCount = ReadInt32BigEndian(Data.AsSpan(FinalCountOffset));
|
|
|
|
}
|
|
|
|
|
|
|
|
private readonly int FinalCount;
|
|
|
|
private readonly int FinalCountOffset;
|
|
|
|
|
|
|
|
protected override void SetChecksums()
|
|
|
|
{
|
|
|
|
// ensure the final data is written if the user screws stuff up
|
|
|
|
WriteInt32BigEndian(Data.AsSpan(FinalCountOffset), FinalCount);
|
|
|
|
var goodlen = (FinalCountOffset + 4);
|
|
|
|
Array.Clear(Data, goodlen, Data.Length - goodlen);
|
|
|
|
|
|
|
|
// 20 byte SHA checksum at the top of the file, which covers all data that follows.
|
|
|
|
using var hash = SHA1.Create();
|
|
|
|
var result = hash.ComputeHash(Data, 20, Data.Length - 20);
|
|
|
|
SetData(result, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override string GetString(ReadOnlySpan<byte> data) => StringConverter4GC.GetStringUnicode(data);
|
|
|
|
|
|
|
|
public override int SetString(Span<byte> destBuffer, ReadOnlySpan<char> value, int maxLength, StringConverterOption option)
|
2019-01-15 05:31:53 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
return StringConverter4GC.SetStringUnicode(value, destBuffer, maxLength, option);
|
2019-01-15 05:31:53 +00:00
|
|
|
}
|
2022-01-03 05:35:59 +00:00
|
|
|
}
|