Add notation for language-specific save types

This commit is contained in:
Kurt 2020-09-26 13:30:17 -07:00
parent a34434f7cb
commit fb4734472b
6 changed files with 21 additions and 4 deletions

View file

@ -12,6 +12,9 @@ namespace PKHeX.Core
protected override string BAKText => $"{OT} ({Version}) - {PlayTimeString}"; protected override string BAKText => $"{OT} ({Version}) - {PlayTimeString}";
public override string Filter => "SAV File|*.sav|All Files|*.*"; public override string Filter => "SAV File|*.sav|All Files|*.*";
public override string Extension => ".sav"; public override string Extension => ".sav";
public int SaveRevision => Japanese ? 0 : 1;
public string SaveRevisionString => Japanese ? "J" : "U";
public bool Japanese { get; } public bool Japanese { get; }
public bool Korean => false; public bool Korean => false;

View file

@ -8,8 +8,12 @@ namespace PKHeX.Core
protected override string BAKText => $"{OT} ({Version}) - {PlayTimeString}"; protected override string BAKText => $"{OT} ({Version}) - {PlayTimeString}";
public override string Filter => "SAV File|*.sav|All Files|*.*"; public override string Filter => "SAV File|*.sav|All Files|*.*";
public override string Extension => ".sav"; public override string Extension => ".sav";
public int SaveRevision => Japanese ? 0 : 1;
public string SaveRevisionString => Japanese ? "J" : "U";
public bool Japanese { get; } public bool Japanese { get; }
public bool Korean => false; public bool Korean => false;
public override PersonalTable Personal => PersonalTable.Y; public override PersonalTable Personal => PersonalTable.Y;
public override int MaxEV => ushort.MaxValue; public override int MaxEV => ushort.MaxValue;
public override IReadOnlyList<ushort> HeldItems => Array.Empty<ushort>(); public override IReadOnlyList<ushort> HeldItems => Array.Empty<ushort>();

View file

@ -12,6 +12,9 @@ namespace PKHeX.Core
protected override string BAKText => $"{OT} ({Version}) - {PlayTimeString}"; protected override string BAKText => $"{OT} ({Version}) - {PlayTimeString}";
public override string Filter => "SAV File|*.sav|All Files|*.*"; public override string Filter => "SAV File|*.sav|All Files|*.*";
public override string Extension => ".sav"; public override string Extension => ".sav";
public int SaveRevision => Japanese ? 0 : !Korean ? 1 : 2;
public string SaveRevisionString => Japanese ? "J" : !Korean ? "U" : "K";
public bool Japanese { get; } public bool Japanese { get; }
public bool Korean { get; } public bool Korean { get; }

View file

@ -7,12 +7,16 @@ namespace PKHeX.Core
/// <summary> /// <summary>
/// Generation 3 <see cref="SaveFile"/> object. /// Generation 3 <see cref="SaveFile"/> object.
/// </summary> /// </summary>
public sealed class SAV3 : SaveFile public sealed class SAV3 : SaveFile, ILangDeviantSave
{ {
protected override string BAKText => $"{OT} ({Version}) - {PlayTimeString}"; protected override string BAKText => $"{OT} ({Version}) - {PlayTimeString}";
public override string Filter => "SAV File|*.sav|All Files|*.*"; public override string Filter => "SAV File|*.sav|All Files|*.*";
public override string Extension => ".sav"; public override string Extension => ".sav";
public readonly bool Japanese;
public int SaveRevision => Japanese ? 0 : 1;
public string SaveRevisionString => Japanese ? "J" : "U";
public bool Japanese { get; }
public bool Korean => false;
public bool IndeterminateGame => Version == GameVersion.Unknown; public bool IndeterminateGame => Version == GameVersion.Unknown;
/* SAV3 Structure: /* SAV3 Structure:

View file

@ -8,11 +8,14 @@ namespace PKHeX.Core
/// <summary> /// <summary>
/// Generation 4 <see cref="SaveFile"/> object for My Pokémon Ranch saves. /// Generation 4 <see cref="SaveFile"/> object for My Pokémon Ranch saves.
/// </summary> /// </summary>
public sealed class SAV4Ranch : BulkStorage public sealed class SAV4Ranch : BulkStorage, ISaveFileRevision
{ {
protected override int SIZE_STORED => 0x88 + 0x1C; protected override int SIZE_STORED => 0x88 + 0x1C;
protected override int SIZE_PARTY => SIZE_STORED; 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 BoxCount { get; }
public override int SlotCount { get; } public override int SlotCount { get; }

View file

@ -3,7 +3,7 @@
/// <summary> /// <summary>
/// <see cref="SaveFile"/> behaves differently for different languages (different structure layout). /// <see cref="SaveFile"/> behaves differently for different languages (different structure layout).
/// </summary> /// </summary>
public interface ILangDeviantSave public interface ILangDeviantSave : ISaveFileRevision
{ {
bool Japanese { get; } bool Japanese { get; }
bool Korean { get; } bool Korean { get; }