mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
0087ccb44f
No more offset fetch
69 lines
2.5 KiB
C#
69 lines
2.5 KiB
C#
using System;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
public sealed class FashionBlock7 : SaveBlock<SAV7>
|
|
{
|
|
public FashionBlock7(SAV7SM sav, int offset) : base(sav) => Offset = offset;
|
|
public FashionBlock7(SAV7USUM sav, int offset) : base(sav) => Offset = offset;
|
|
|
|
private const int FashionLength = 0x1A08;
|
|
|
|
public FashionItem7[] Wardrobe
|
|
{
|
|
get
|
|
{
|
|
var data = SAV.Data.AsSpan(Offset, 0x5A8).ToArray();
|
|
return Array.ConvertAll(data, b => new FashionItem7(b));
|
|
}
|
|
set
|
|
{
|
|
if (value.Length != 0x5A8)
|
|
throw new ArgumentOutOfRangeException($"Unexpected size: 0x{value.Length:X}");
|
|
var arr = Array.ConvertAll(value, z => z.Value);
|
|
SAV.SetData(arr, Offset);
|
|
}
|
|
}
|
|
|
|
public void Clear() => Array.Clear(Data, Offset, FashionLength);
|
|
|
|
/// <summary>
|
|
/// Resets the fashion unlocks to default values.
|
|
/// </summary>
|
|
public void Reset()
|
|
{
|
|
var offsetList = GetDefaultFashionOffsets(SAV);
|
|
foreach (var ofs in offsetList)
|
|
SAV.Data[Offset + ofs] = 3; // owned | new
|
|
}
|
|
|
|
private static ReadOnlySpan<ushort> GetDefaultFashionOffsets(SAV7 sav) => sav switch
|
|
{
|
|
SAV7SM { Gender: 0 } => DefaultFashionOffsetSM_M,
|
|
SAV7SM { Gender: 1 } => DefaultFashionOffsetSM_F,
|
|
SAV7USUM { Gender: 0 } => DefaultFashionOffsetUU_M,
|
|
SAV7USUM { Gender: 1 } => DefaultFashionOffsetUU_F,
|
|
_ => throw new ArgumentOutOfRangeException(nameof(SAV)),
|
|
};
|
|
|
|
// Offsets that are set to '3' when the game starts for a specific gender.
|
|
private static ReadOnlySpan<ushort> DefaultFashionOffsetSM_M => new ushort[] { 0x000, 0x0FB, 0x124, 0x28F, 0x3B4, 0x452, 0x517 };
|
|
private static ReadOnlySpan<ushort> DefaultFashionOffsetSM_F => new ushort[] { 0x000, 0x100, 0x223, 0x288, 0x3B4, 0x452, 0x517 };
|
|
private static ReadOnlySpan<ushort> DefaultFashionOffsetUU_M => new ushort[] { 0x03A, 0x109, 0x1DA, 0x305, 0x3D9, 0x4B1, 0x584 };
|
|
private static ReadOnlySpan<ushort> DefaultFashionOffsetUU_F => new ushort[] { 0x05E, 0x208, 0x264, 0x395, 0x3B4, 0x4F9, 0x5A8 };
|
|
}
|
|
|
|
// Every fashion item is 2 bits, New Flag (high) & Owned Flag (low)
|
|
public sealed class FashionItem7
|
|
{
|
|
public bool IsOwned { get; set; }
|
|
public bool IsNew { get; set; }
|
|
|
|
public FashionItem7(byte b)
|
|
{
|
|
IsOwned = (b & 1) != 0;
|
|
IsNew = (b & 2) != 0;
|
|
}
|
|
|
|
public byte Value => (byte)((IsOwned ? 1 : 0) | (IsNew ? 2 : 0));
|
|
}
|