mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
88830e0d00
Updates from net46->net7, dropping support for mono in favor of using the latest runtime (along with the performance/API improvements). Releases will be posted as 64bit only for now. Refactors a good amount of internal API methods to be more performant and more customizable for future updates & fixes. Adds functionality for Batch Editor commands to `>`, `<` and <=/>= TID/SID properties renamed to TID16/SID16 for clarity; other properties exposed for Gen7 / display variants. Main window has a new layout to account for DPI scaling (8 point grid) Fixed: Tatsugiri and Paldean Tauros now output Showdown form names as Showdown expects Changed: Gen9 species now interact based on the confirmed National Dex IDs (closes #3724) Fixed: Pokedex set all no longer clears species with unavailable non-base forms (closes #3720) Changed: Hyper Training suggestions now apply for level 50 in SV. (closes #3714) Fixed: B2/W2 hatched egg met locations exclusive to specific versions are now explicitly checked (closes #3691) Added: Properties for ribbon/mark count (closes #3659) Fixed: Traded SV eggs are now checked correctly (closes #3692)
135 lines
5.1 KiB
C#
135 lines
5.1 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using static System.Buffers.Binary.BinaryPrimitives;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Swarm and other overworld info
|
|
/// </summary>
|
|
public sealed class Encount6 : SaveBlock<SAV6>
|
|
{
|
|
public Encount6(SAV6XY SAV, int offset) : base(SAV) => Offset = offset;
|
|
public Encount6(SAV6AO SAV, int offset) : base(SAV) => Offset = offset;
|
|
|
|
public ushort RepelItemUsed { get => ReadUInt16LittleEndian(Data.AsSpan(Offset + 0x00)); set => WriteUInt16LittleEndian(Data.AsSpan(Offset + 0x00), value); }
|
|
public byte RepelSteps { get => Data[Offset + 0x02]; set => Data[Offset + 0x02] = value; }
|
|
|
|
// 0x04
|
|
|
|
public PokeRadar6 Radar
|
|
{
|
|
get => new(Data.Slice(Offset + 0x04, PokeRadar6.SIZE));
|
|
set => value.Data.CopyTo(Data, Offset + 0x04);
|
|
}
|
|
|
|
// 0x1C
|
|
|
|
public Roamer6 Roamer
|
|
{
|
|
get => new(Data.Slice(Offset + 0x1C, Roamer6.SIZE));
|
|
set => value.Data.CopyTo(Data, Offset + 0x1C);
|
|
}
|
|
|
|
// 0x44
|
|
|
|
// 4 bytes at end??
|
|
}
|
|
|
|
[TypeConverter(typeof(ValueTypeTypeConverter))]
|
|
public sealed class PokeRadar6
|
|
{
|
|
public const int SIZE = 2 + (RecordCount * PokeRadarRecord.SIZE); // 0x18
|
|
|
|
private const int MaxCharge = 50;
|
|
private const int RecordCount = 5;
|
|
|
|
public readonly byte[] Data;
|
|
|
|
public PokeRadar6(byte[] data) => Data = data;
|
|
public override string ToString() => ((Species)PokeRadarSpecies).ToString();
|
|
|
|
public ushort PokeRadarSpecies { get => ReadUInt16LittleEndian(Data.AsSpan(0x00)); set => WriteUInt16LittleEndian(Data.AsSpan(0x00), value); }
|
|
private ushort PokeRadarPacked { get => ReadUInt16LittleEndian(Data.AsSpan(0x02)); set => WriteUInt16LittleEndian(Data.AsSpan(0x02), value); }
|
|
|
|
public int PokeRadarCharge { get => PokeRadarPacked & 0x3FFF; set => PokeRadarPacked = (ushort)((PokeRadarPacked & ~0x3FFF) | Math.Min(MaxCharge, value)); }
|
|
public bool PokeRadarFlag1 { get => PokeRadarPacked >> 14 != 0; set => PokeRadarPacked = (ushort)((PokeRadarPacked & ~(1 << 14)) | (value ? (1 << 14) : 0)); }
|
|
public bool PokeRadarFlag2 { get => PokeRadarPacked >> 15 != 0; set => PokeRadarPacked = (ushort)((PokeRadarPacked & ~(1 << 15)) | (value ? (1 << 15) : 0)); }
|
|
|
|
public PokeRadarRecord GetRecord(int index) => PokeRadarRecord.ReadRecord(Data.AsSpan(GetRecordOffset(index)));
|
|
public void SetRecord(PokeRadarRecord record, int index) => record.WriteRecord(Data.AsSpan(GetRecordOffset(index)));
|
|
|
|
private static int GetRecordOffset(int index)
|
|
{
|
|
if ((uint) index >= RecordCount)
|
|
throw new ArgumentOutOfRangeException(nameof(index));
|
|
|
|
return 6 + (index * 2);
|
|
}
|
|
|
|
public PokeRadarRecord Record1 { get => GetRecord(0); set => SetRecord(value, 0); }
|
|
public PokeRadarRecord Record2 { get => GetRecord(1); set => SetRecord(value, 1); }
|
|
public PokeRadarRecord Record3 { get => GetRecord(2); set => SetRecord(value, 2); }
|
|
public PokeRadarRecord Record4 { get => GetRecord(3); set => SetRecord(value, 3); }
|
|
public PokeRadarRecord Record5 { get => GetRecord(4); set => SetRecord(value, 4); }
|
|
}
|
|
|
|
[TypeConverter(typeof(ValueTypeTypeConverter))]
|
|
public sealed class PokeRadarRecord
|
|
{
|
|
public const int SIZE = 4;
|
|
public override string ToString() => ((Species)Species).ToString();
|
|
|
|
public ushort Species { get; set; }
|
|
public ushort Count { get; set; }
|
|
|
|
private PokeRadarRecord(ushort species, ushort count)
|
|
{
|
|
Species = species;
|
|
Count = count;
|
|
}
|
|
|
|
public static PokeRadarRecord ReadRecord(ReadOnlySpan<byte> data)
|
|
{
|
|
var species = ReadUInt16LittleEndian(data);
|
|
var count = ReadUInt16LittleEndian(data[2..]);
|
|
return new PokeRadarRecord(species, count);
|
|
}
|
|
|
|
public void WriteRecord(Span<byte> data)
|
|
{
|
|
WriteUInt16LittleEndian(data, Species);
|
|
WriteUInt16LittleEndian(data[2..], Count);
|
|
}
|
|
}
|
|
|
|
[TypeConverter(typeof(ValueTypeTypeConverter))]
|
|
public sealed class Roamer6
|
|
{
|
|
public const int SIZE = 0x28;
|
|
|
|
public readonly byte[] Data;
|
|
|
|
public Roamer6(byte[] data) => Data = data;
|
|
public override string ToString() => ((Species)Species).ToString();
|
|
|
|
private ushort SpecForm { get => ReadUInt16LittleEndian(Data.AsSpan(0x00)); set => WriteUInt16LittleEndian(Data.AsSpan(0x00), value); }
|
|
public ushort Species { get => (ushort)(SpecForm & 0x3FF); set => SpecForm = (ushort)((SpecForm & ~0x3FF) | (value & 0x3FF)); }
|
|
public bool Flag1 { get => SpecForm >> 14 != 0; set => SpecForm = (ushort)((SpecForm & 0xBFFF) | (value ? (1 << 14) : 0)); }
|
|
public bool Flag2 { get => SpecForm >> 15 != 0; set => SpecForm = (ushort)((SpecForm & 0x7FFF) | (value ? (1 << 15) : 0)); }
|
|
|
|
public int CurrentLevel { get => Data[0x04]; set => Data[0x04] = (byte)value; }
|
|
private int Status { get => Data[0x07]; set => Data[0x07] = (byte)value; }
|
|
public Roamer6State RoamStatus { get => (Roamer6State)((Status >> 4) & 0xF); set => Status = (Status & 0x0F) | (((int)value << 4) & 0xF0); }
|
|
|
|
public uint TimesEncountered { get => ReadUInt32LittleEndian(Data.AsSpan(0x24)); set => WriteUInt32LittleEndian(Data.AsSpan(0x24), value); }
|
|
}
|
|
|
|
public enum Roamer6State
|
|
{
|
|
Inactive,
|
|
Roaming,
|
|
Stationary,
|
|
Defeated,
|
|
Captured,
|
|
}
|