2016-09-26 23:15:40 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Security.Cryptography;
|
|
|
|
|
|
2017-01-08 07:54:09 +00:00
|
|
|
|
namespace PKHeX.Core
|
2016-09-26 23:15:40 +00:00
|
|
|
|
{
|
2017-10-24 06:12:58 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Generation 3 <see cref="SaveFile"/> object for Pokémon Colosseum saves.
|
|
|
|
|
/// </summary>
|
2017-03-20 07:03:31 +00:00
|
|
|
|
public sealed class SAV3Colosseum : SaveFile, IDisposable
|
2016-09-26 23:15:40 +00:00
|
|
|
|
{
|
2018-07-30 04:51:45 +00:00
|
|
|
|
protected override string BAKText => $"{OT} ({Version}) - {PlayTimeString}";
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2017-04-02 14:53:46 +00:00
|
|
|
|
public override string Filter
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2017-05-13 19:51:33 +00:00
|
|
|
|
const string regular = "GameCube Save File|*.gci|All Files|*.*";
|
|
|
|
|
const string memcard = "Memory Card Raw File|*.raw|Memory Card Binary File|*.bin|";
|
|
|
|
|
return IsMemoryCardSave ? memcard + regular : regular;
|
2017-04-02 14:53:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string Extension => IsMemoryCardSave ? ".raw" : ".gci";
|
2016-09-26 23:15:40 +00:00
|
|
|
|
|
|
|
|
|
// 3 Save files are stored
|
|
|
|
|
// 0x0000-0x6000 contains memory card data
|
|
|
|
|
// 0x6000-0x60000 contains the 3 save slots
|
|
|
|
|
// 0x5A000 / 3 = 0x1E000 per save slot
|
|
|
|
|
// Checksum is SHA1 over 0-0x1DFD7, stored in the last 20 bytes of the save slot.
|
|
|
|
|
// Another SHA1 hash is 0x1DFD8, for 20 bytes. Unknown purpose.
|
|
|
|
|
// Checksum is used as the crypto key.
|
|
|
|
|
|
|
|
|
|
private const int SLOT_SIZE = 0x1E000;
|
|
|
|
|
private const int SLOT_START = 0x6000;
|
|
|
|
|
private const int SLOT_COUNT = 3;
|
|
|
|
|
|
|
|
|
|
private readonly int SaveCount = -1;
|
|
|
|
|
private readonly int SaveIndex = -1;
|
2016-10-01 02:05:35 +00:00
|
|
|
|
private readonly StrategyMemo StrategyMemo;
|
2018-09-07 03:35:55 +00:00
|
|
|
|
public int MaxShadowID => 0x80; // 128
|
2016-10-01 02:05:35 +00:00
|
|
|
|
private readonly int Memo;
|
2016-09-26 23:15:40 +00:00
|
|
|
|
private readonly ushort[] LegalItems, LegalKeyItems, LegalBalls, LegalTMHMs, LegalBerries, LegalCologne;
|
|
|
|
|
private readonly int OFS_PouchCologne;
|
2017-04-02 20:42:42 +00:00
|
|
|
|
private readonly SAV3GCMemoryCard MC;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private bool IsMemoryCardSave => MC != null;
|
2017-04-02 20:42:42 +00:00
|
|
|
|
public SAV3Colosseum(byte[] data, SAV3GCMemoryCard MC) : this(data) { this.MC = MC; BAK = MC.Data; }
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2016-09-26 23:15:40 +00:00
|
|
|
|
public SAV3Colosseum(byte[] data = null)
|
|
|
|
|
{
|
2017-12-27 05:38:19 +00:00
|
|
|
|
Data = data ?? new byte[SaveUtil.SIZE_G3COLO];
|
2016-09-26 23:15:40 +00:00
|
|
|
|
BAK = (byte[])Data.Clone();
|
2018-03-18 23:22:21 +00:00
|
|
|
|
Exportable = !IsRangeEmpty(0, Data.Length);
|
2016-09-26 23:15:40 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
if (SaveUtil.GetIsG3COLOSAV(Data) != GameVersion.COLO)
|
2016-09-26 23:15:40 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// Scan all 3 save slots for the highest counter
|
|
|
|
|
for (int i = 0; i < SLOT_COUNT; i++)
|
|
|
|
|
{
|
2018-09-15 05:37:47 +00:00
|
|
|
|
int slotOffset = SLOT_START + (i * SLOT_SIZE);
|
2016-09-26 23:15:40 +00:00
|
|
|
|
int SaveCounter = BigEndian.ToInt32(Data, slotOffset + 4);
|
|
|
|
|
if (SaveCounter <= SaveCount)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
SaveCount = SaveCounter;
|
|
|
|
|
SaveIndex = i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Decrypt most recent save slot
|
|
|
|
|
{
|
|
|
|
|
byte[] slot = new byte[SLOT_SIZE];
|
2018-09-15 05:37:47 +00:00
|
|
|
|
int slotOffset = SLOT_START + (SaveIndex * SLOT_SIZE);
|
2016-09-26 23:15:40 +00:00
|
|
|
|
Array.Copy(Data, slotOffset, slot, 0, slot.Length);
|
|
|
|
|
byte[] digest = new byte[20];
|
|
|
|
|
Array.Copy(slot, SLOT_SIZE - 20, digest, 0, digest.Length);
|
|
|
|
|
|
|
|
|
|
// Decrypt Slot
|
|
|
|
|
Data = DecryptColosseum(slot, digest);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Trainer1 = 0x00078;
|
|
|
|
|
Party = 0x000A8;
|
|
|
|
|
OFS_PouchHeldItem = 0x007F8;
|
|
|
|
|
OFS_PouchKeyItem = 0x00848;
|
2016-09-28 03:15:31 +00:00
|
|
|
|
OFS_PouchBalls = 0x008F4;
|
2016-09-26 23:15:40 +00:00
|
|
|
|
OFS_PouchTMHM = 0x00934;
|
2016-09-28 03:15:31 +00:00
|
|
|
|
OFS_PouchBerry = 0x00A34;
|
2016-09-26 23:15:40 +00:00
|
|
|
|
OFS_PouchCologne = 0x00AEC; // Cologne
|
|
|
|
|
|
|
|
|
|
Box = 0x00B90;
|
|
|
|
|
Daycare = 0x08170;
|
2016-10-01 02:05:35 +00:00
|
|
|
|
Memo = 0x082B0;
|
|
|
|
|
StrategyMemo = new StrategyMemo(Data, Memo, xd:false);
|
2016-09-26 23:15:40 +00:00
|
|
|
|
|
|
|
|
|
LegalItems = Legal.Pouch_Items_COLO;
|
|
|
|
|
LegalKeyItems = Legal.Pouch_Key_COLO;
|
|
|
|
|
LegalBalls = Legal.Pouch_Ball_RS;
|
|
|
|
|
LegalTMHMs = Legal.Pouch_TM_RS; // not HMs
|
|
|
|
|
LegalBerries = Legal.Pouch_Berries_RS;
|
2018-06-09 19:44:30 +00:00
|
|
|
|
LegalCologne = Legal.Pouch_Cologne_COLO;
|
2016-09-26 23:15:40 +00:00
|
|
|
|
|
|
|
|
|
Personal = PersonalTable.RS;
|
|
|
|
|
HeldItems = Legal.HeldItems_COLO;
|
|
|
|
|
|
|
|
|
|
if (!Exportable)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
ClearBoxes();
|
2016-10-02 04:43:23 +00:00
|
|
|
|
|
|
|
|
|
// Since PartyCount is not stored in the save file,
|
|
|
|
|
// Count up how many party slots are active.
|
|
|
|
|
for (int i = 0; i < 6; i++)
|
2018-09-15 05:37:47 +00:00
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
if (GetPartySlot(GetPartyOffset(i)).Species != 0)
|
2016-10-02 04:43:23 +00:00
|
|
|
|
PartyCount++;
|
2018-09-15 05:37:47 +00:00
|
|
|
|
}
|
2016-09-26 23:15:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-21 02:38:48 +00:00
|
|
|
|
public override byte[] Write(bool DSV, bool GCI)
|
2016-09-26 23:15:40 +00:00
|
|
|
|
{
|
2016-10-01 02:05:35 +00:00
|
|
|
|
StrategyMemo.FinalData.CopyTo(Data, Memo);
|
2017-06-18 01:37:19 +00:00
|
|
|
|
SetChecksums();
|
2016-09-26 23:15:40 +00:00
|
|
|
|
|
|
|
|
|
// Get updated save slot data
|
|
|
|
|
byte[] digest = Data.Skip(Data.Length - 20).Take(20).ToArray();
|
|
|
|
|
byte[] newSAV = EncryptColosseum(Data, digest);
|
|
|
|
|
|
|
|
|
|
// Put save slot back in original save data
|
2018-02-07 04:33:32 +00:00
|
|
|
|
byte[] newFile = MC != null ? MC.SelectedSaveData : (byte[])BAK.Clone();
|
2018-09-15 05:37:47 +00:00
|
|
|
|
Array.Copy(newSAV, 0, newFile, SLOT_START + (SaveIndex * SLOT_SIZE), newSAV.Length);
|
2017-04-02 20:42:42 +00:00
|
|
|
|
|
|
|
|
|
// Return the gci if Memory Card is not being exported
|
|
|
|
|
if (!IsMemoryCardSave || GCI)
|
|
|
|
|
return Header.Concat(newFile).ToArray();
|
|
|
|
|
|
|
|
|
|
MC.SelectedSaveData = newFile.ToArray();
|
|
|
|
|
return MC.Data;
|
2016-09-26 23:15:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Configuration
|
2016-12-27 23:05:06 +00:00
|
|
|
|
public override SaveFile Clone()
|
|
|
|
|
{
|
2017-04-21 02:38:48 +00:00
|
|
|
|
byte[] data = Write(DSV: false, GCI: true).Skip(Header.Length).ToArray();
|
2017-06-18 01:37:19 +00:00
|
|
|
|
return new SAV3Colosseum(data) { Header = (byte[])Header.Clone() };
|
2016-12-27 23:05:06 +00:00
|
|
|
|
}
|
2016-09-26 23:15:40 +00:00
|
|
|
|
|
|
|
|
|
public override int SIZE_STORED => PKX.SIZE_3CSTORED;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
protected override int SIZE_PARTY => PKX.SIZE_3CSTORED; // unused
|
2016-09-26 23:15:40 +00:00
|
|
|
|
public override PKM BlankPKM => new CK3();
|
2016-09-26 23:18:10 +00:00
|
|
|
|
public override Type PKMType => typeof(CK3);
|
2016-09-26 23:15:40 +00:00
|
|
|
|
|
2017-12-28 00:36:24 +00:00
|
|
|
|
public override int MaxMoveID => Legal.MaxMoveID_3;
|
2016-10-24 04:59:27 +00:00
|
|
|
|
public override int MaxSpeciesID => Legal.MaxSpeciesID_3;
|
2017-12-28 00:36:24 +00:00
|
|
|
|
public override int MaxAbilityID => Legal.MaxAbilityID_3;
|
|
|
|
|
public override int MaxBallID => Legal.MaxBallID_3;
|
|
|
|
|
public override int MaxItemID => Legal.MaxItemID_3_COLO;
|
|
|
|
|
public override int MaxGameID => Legal.MaxGameID_3;
|
2018-05-12 15:13:39 +00:00
|
|
|
|
|
2016-09-26 23:15:40 +00:00
|
|
|
|
public override int MaxEV => 255;
|
|
|
|
|
public override int Generation => 3;
|
|
|
|
|
protected override int GiftCountMax => 1;
|
2018-10-27 23:06:06 +00:00
|
|
|
|
public override int OTLength => 10; // as evident by Mattle Ho-Oh
|
2016-09-26 23:15:40 +00:00
|
|
|
|
public override int NickLength => 10;
|
|
|
|
|
public override int MaxMoney => 999999;
|
|
|
|
|
|
|
|
|
|
public override int BoxCount => 3;
|
2018-03-18 23:22:21 +00:00
|
|
|
|
public override bool IsPKMPresent(int Offset) => PKX.IsPKMPresentGC(Data, Offset);
|
2016-09-26 23:15:40 +00:00
|
|
|
|
|
|
|
|
|
// Checksums
|
|
|
|
|
private readonly SHA1 sha1 = SHA1.Create();
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public void Dispose() => sha1?.Dispose();
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2016-09-26 23:15:40 +00:00
|
|
|
|
private byte[] EncryptColosseum(byte[] input, byte[] digest)
|
|
|
|
|
{
|
|
|
|
|
if (input.Length != SLOT_SIZE)
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
byte[] d = (byte[])input.Clone();
|
|
|
|
|
byte[] k = (byte[])digest.Clone(); // digest
|
|
|
|
|
|
|
|
|
|
// NOT key
|
|
|
|
|
for (int i = 0; i < 20; i++)
|
|
|
|
|
k[i] = (byte)~k[i];
|
|
|
|
|
|
|
|
|
|
for (int i = 0x18; i < 0x1DFD8; i += 20)
|
|
|
|
|
{
|
|
|
|
|
for (int j = 0; j < 20; j++)
|
|
|
|
|
d[i + j] ^= k[j];
|
|
|
|
|
k = sha1.ComputeHash(d, i, 20); // update digest
|
|
|
|
|
}
|
|
|
|
|
return d;
|
|
|
|
|
}
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2016-09-26 23:15:40 +00:00
|
|
|
|
private byte[] DecryptColosseum(byte[] input, byte[] digest)
|
|
|
|
|
{
|
|
|
|
|
if (input.Length != SLOT_SIZE)
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
byte[] d = (byte[])input.Clone();
|
|
|
|
|
byte[] k = (byte[])digest.Clone();
|
|
|
|
|
|
|
|
|
|
// NOT key
|
|
|
|
|
for (int i = 0; i < 20; i++)
|
|
|
|
|
k[i] = (byte)~k[i];
|
|
|
|
|
|
|
|
|
|
for (int i = 0x18; i < 0x1DFD8; i += 20)
|
|
|
|
|
{
|
|
|
|
|
byte[] key = sha1.ComputeHash(d, i, 20); // update digest
|
|
|
|
|
for (int j = 0; j < 20; j++)
|
|
|
|
|
d[i + j] ^= k[j];
|
|
|
|
|
Array.Copy(key, k, 20); // for use in next loop
|
|
|
|
|
}
|
|
|
|
|
return d;
|
|
|
|
|
}
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
protected override void SetChecksums()
|
2016-09-26 23:15:40 +00:00
|
|
|
|
{
|
|
|
|
|
// Clear Header Checksum
|
|
|
|
|
BitConverter.GetBytes(0).CopyTo(Data, 12);
|
|
|
|
|
// Compute checksum of data
|
|
|
|
|
byte[] checksum = sha1.ComputeHash(Data, 0, 0x1DFD8);
|
|
|
|
|
// Set Checksum to end
|
|
|
|
|
Array.Copy(checksum, 0, Data, Data.Length - 20, 20);
|
|
|
|
|
|
|
|
|
|
// Header Integrity
|
|
|
|
|
byte[] H = new byte[8]; Array.Copy(checksum, 0, H, 0, 8);
|
|
|
|
|
byte[] D = new byte[8]; Array.Copy(Data, 0x18, D, 0, 8);
|
|
|
|
|
// Decrypt Checksum
|
|
|
|
|
for (int i = 0; i < 8; i++)
|
|
|
|
|
D[i] ^= (byte)~H[i];
|
|
|
|
|
|
|
|
|
|
// Compute new header checksum
|
|
|
|
|
int newHC = 0;
|
|
|
|
|
for (int i = 0; i < 0x18; i += 4)
|
|
|
|
|
newHC -= BigEndian.ToInt32(Data, i);
|
|
|
|
|
|
|
|
|
|
newHC -= BigEndian.ToInt32(D, 0);
|
|
|
|
|
newHC -= BigEndian.ToInt32(D, 4);
|
|
|
|
|
|
|
|
|
|
// Set Header Checksum
|
|
|
|
|
BigEndian.GetBytes(newHC).CopyTo(Data, 12);
|
|
|
|
|
}
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2016-09-26 23:15:40 +00:00
|
|
|
|
public override bool ChecksumsValid => !ChecksumInfo.Contains("Invalid");
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2016-09-26 23:15:40 +00:00
|
|
|
|
public override string ChecksumInfo
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
byte[] data = (byte[])Data.Clone();
|
|
|
|
|
int oldHC = BigEndian.ToInt32(data, 12);
|
|
|
|
|
// Clear Header Checksum
|
|
|
|
|
BitConverter.GetBytes(0).CopyTo(data, 12);
|
|
|
|
|
byte[] checksum = sha1.ComputeHash(data, 0, 0x1DFD8);
|
|
|
|
|
// Header Integrity
|
|
|
|
|
byte[] H = new byte[8];
|
|
|
|
|
byte[] D = new byte[8];
|
|
|
|
|
|
|
|
|
|
Array.Copy(checksum, 0, H, 0, H.Length);
|
|
|
|
|
Array.Copy(data, 0x00018, D, 0, D.Length);
|
|
|
|
|
for (int i = 0; i < 8; i++)
|
|
|
|
|
D[i] ^= (byte)~H[i];
|
|
|
|
|
|
|
|
|
|
// Compute new header checksum
|
|
|
|
|
int newHC = 0;
|
|
|
|
|
for (int i = 0; i < 0x18; i += 4)
|
|
|
|
|
newHC -= BigEndian.ToInt32(data, i);
|
|
|
|
|
|
|
|
|
|
newHC -= BigEndian.ToInt32(D, 0);
|
|
|
|
|
newHC -= BigEndian.ToInt32(D, 4);
|
|
|
|
|
|
|
|
|
|
byte[] chk = data.Skip(data.Length - 20).Take(20).ToArray();
|
|
|
|
|
|
|
|
|
|
bool header = newHC == oldHC;
|
|
|
|
|
bool body = chk.SequenceEqual(checksum);
|
2017-05-13 19:51:33 +00:00
|
|
|
|
string valid(bool s) => s ? "Valid" : "Invalid";
|
|
|
|
|
return $"Header Checksum {valid(header)}, Body Checksum {valid(body)}alid.";
|
2016-09-26 23:15:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Trainer Info
|
2017-05-13 03:32:36 +00:00
|
|
|
|
public override GameVersion Version { get => GameVersion.COLO; protected set { } }
|
2016-09-26 23:15:40 +00:00
|
|
|
|
|
|
|
|
|
// Storage
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public override int GetPartyOffset(int slot)
|
2016-09-26 23:15:40 +00:00
|
|
|
|
{
|
2018-09-15 05:37:47 +00:00
|
|
|
|
return Party + (SIZE_STORED * slot);
|
2016-09-26 23:15:40 +00:00
|
|
|
|
}
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public override int GetBoxOffset(int box)
|
2016-09-26 23:15:40 +00:00
|
|
|
|
{
|
2018-09-15 05:37:47 +00:00
|
|
|
|
return Box + (((30 * SIZE_STORED) + 0x14)*box) + 0x14;
|
2016-09-26 23:15:40 +00:00
|
|
|
|
}
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public override string GetBoxName(int box)
|
2016-09-26 23:15:40 +00:00
|
|
|
|
{
|
2018-09-15 05:37:47 +00:00
|
|
|
|
return GetString(Box + (0x24A4 * box), 16);
|
2016-09-26 23:15:40 +00:00
|
|
|
|
}
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public override void SetBoxName(int box, string value)
|
2016-09-26 23:15:40 +00:00
|
|
|
|
{
|
2018-09-15 05:37:47 +00:00
|
|
|
|
SetString(value, 8).CopyTo(Data, Box + (0x24A4 * box));
|
2016-09-26 23:15:40 +00:00
|
|
|
|
}
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public override PKM GetPKM(byte[] data)
|
2016-09-26 23:15:40 +00:00
|
|
|
|
{
|
|
|
|
|
return new CK3(data.Take(SIZE_STORED).ToArray());
|
|
|
|
|
}
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public override byte[] DecryptPKM(byte[] data)
|
2016-09-26 23:15:40 +00:00
|
|
|
|
{
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
protected override void SetPKM(PKM pkm)
|
2016-12-27 05:26:45 +00:00
|
|
|
|
{
|
2018-05-12 19:28:48 +00:00
|
|
|
|
if (!(pkm is CK3 pk))
|
2016-12-27 05:26:45 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (pk.CurrentRegion == 0)
|
|
|
|
|
pk.CurrentRegion = 2; // NTSC-U
|
|
|
|
|
if (pk.OriginalRegion == 0)
|
|
|
|
|
pk.OriginalRegion = 2; // NTSC-U
|
|
|
|
|
}
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
protected override void SetDex(PKM pkm)
|
2016-10-01 02:05:35 +00:00
|
|
|
|
{
|
|
|
|
|
// Dex Related
|
|
|
|
|
var entry = StrategyMemo.GetEntry(pkm.Species);
|
|
|
|
|
if (entry.IsEmpty) // Populate
|
|
|
|
|
{
|
|
|
|
|
entry.Species = pkm.Species;
|
|
|
|
|
entry.PID = pkm.PID;
|
|
|
|
|
entry.TID = pkm.TID;
|
|
|
|
|
entry.SID = pkm.SID;
|
|
|
|
|
}
|
|
|
|
|
if (entry.Matches(pkm.Species, pkm.PID, pkm.TID, pkm.SID))
|
|
|
|
|
{
|
|
|
|
|
entry.Seen = true;
|
|
|
|
|
entry.Owned = true;
|
|
|
|
|
}
|
|
|
|
|
StrategyMemo.SetEntry(entry);
|
|
|
|
|
}
|
2018-05-12 15:13:39 +00:00
|
|
|
|
|
2016-09-26 23:15:40 +00:00
|
|
|
|
private TimeSpan PlayedSpan
|
|
|
|
|
{
|
2017-05-13 03:32:36 +00:00
|
|
|
|
get => TimeSpan.FromSeconds((double)(BigEndian.ToUInt32(Data, 40) - 0x47000000) / 128);
|
|
|
|
|
set => BigEndian.GetBytes((uint)(value.TotalSeconds * 128) + 0x47000000).CopyTo(Data, 40);
|
2016-09-26 23:15:40 +00:00
|
|
|
|
}
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2016-09-26 23:15:40 +00:00
|
|
|
|
public override int PlayedHours
|
|
|
|
|
{
|
2017-05-13 03:32:36 +00:00
|
|
|
|
get => (ushort)PlayedSpan.Hours;
|
2016-09-26 23:15:40 +00:00
|
|
|
|
set { var time = PlayedSpan; PlayedSpan = time - TimeSpan.FromHours(time.Hours) + TimeSpan.FromHours(value); }
|
|
|
|
|
}
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2016-09-26 23:15:40 +00:00
|
|
|
|
public override int PlayedMinutes
|
|
|
|
|
{
|
2017-05-13 03:32:36 +00:00
|
|
|
|
get => (byte)PlayedSpan.Minutes;
|
2016-09-26 23:15:40 +00:00
|
|
|
|
set { var time = PlayedSpan; PlayedSpan = time - TimeSpan.FromMinutes(time.Minutes) + TimeSpan.FromMinutes(value); }
|
|
|
|
|
}
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2016-09-26 23:15:40 +00:00
|
|
|
|
public override int PlayedSeconds
|
|
|
|
|
{
|
2017-05-13 03:32:36 +00:00
|
|
|
|
get => (byte)PlayedSpan.Seconds;
|
2016-09-26 23:15:40 +00:00
|
|
|
|
set { var time = PlayedSpan; PlayedSpan = time - TimeSpan.FromSeconds(time.Seconds) + TimeSpan.FromSeconds(value); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Trainer Info (offset 0x78, length 0xB18, end @ 0xB90)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public override string OT { get => GetString(0x78, 20); set { SetString(value, 10).CopyTo(Data, 0x78); OT2 = value; } }
|
|
|
|
|
private string OT2 { get => GetString(0x8C, 20); set => SetString(value, 10).CopyTo(Data, 0x8C); }
|
2018-04-28 18:06:58 +00:00
|
|
|
|
public override int SID { get => BigEndian.ToUInt16(Data, 0xA4); set => BigEndian.GetBytes((ushort)value).CopyTo(Data, 0xA4); }
|
|
|
|
|
public override int TID { get => BigEndian.ToUInt16(Data, 0xA6); set => BigEndian.GetBytes((ushort)value).CopyTo(Data, 0xA6); }
|
2017-05-13 03:32:36 +00:00
|
|
|
|
|
|
|
|
|
public override int Gender { get => Data[0xAF8]; set => Data[0xAF8] = (byte)value; }
|
|
|
|
|
public override uint Money { get => BigEndian.ToUInt32(Data, 0xAFC); set => BigEndian.GetBytes(value).CopyTo(Data, 0xAFC); }
|
|
|
|
|
public uint Coupons { get => BigEndian.ToUInt32(Data, 0xB00); set => BigEndian.GetBytes(value).CopyTo(Data, 0xB00); }
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public string RUI_Name { get => GetString(0xB3A, 20); set => SetString(value, 10).CopyTo(Data, 0xB3A); }
|
2016-09-26 23:15:40 +00:00
|
|
|
|
|
|
|
|
|
public override InventoryPouch[] Inventory
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
InventoryPouch[] pouch =
|
|
|
|
|
{
|
2018-07-29 20:55:07 +00:00
|
|
|
|
new InventoryPouch3GC(InventoryType.Items, LegalItems, 999, OFS_PouchHeldItem, 20), // 20 COLO, 30 XD
|
|
|
|
|
new InventoryPouch3GC(InventoryType.KeyItems, LegalKeyItems, 1, OFS_PouchKeyItem, 43),
|
|
|
|
|
new InventoryPouch3GC(InventoryType.Balls, LegalBalls, 999, OFS_PouchBalls, 16),
|
|
|
|
|
new InventoryPouch3GC(InventoryType.TMHMs, LegalTMHMs, 999, OFS_PouchTMHM, 64),
|
|
|
|
|
new InventoryPouch3GC(InventoryType.Berries, LegalBerries, 999, OFS_PouchBerry, 46),
|
|
|
|
|
new InventoryPouch3GC(InventoryType.Medicine, LegalCologne, 999, OFS_PouchCologne, 3), // Cologne
|
2016-09-26 23:15:40 +00:00
|
|
|
|
};
|
|
|
|
|
foreach (var p in pouch)
|
2018-07-29 20:55:07 +00:00
|
|
|
|
p.GetPouch(Data);
|
2016-09-26 23:15:40 +00:00
|
|
|
|
return pouch;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
foreach (var p in value)
|
2018-07-29 20:55:07 +00:00
|
|
|
|
p.SetPouch(Data);
|
2016-09-26 23:15:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Daycare Structure:
|
|
|
|
|
// 0x00 -- Occupied
|
|
|
|
|
// 0x01 -- Deposited Level
|
|
|
|
|
// 0x02-0x03 -- unused?
|
|
|
|
|
// 0x04-0x07 -- Initial EXP
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public override int GetDaycareSlotOffset(int loc, int slot) { return Daycare + 8; }
|
|
|
|
|
public override uint? GetDaycareEXP(int loc, int slot) { return null; }
|
|
|
|
|
public override bool? IsDaycareOccupied(int loc, int slot) { return null; }
|
|
|
|
|
public override void SetDaycareEXP(int loc, int slot, uint EXP) { }
|
|
|
|
|
public override void SetDaycareOccupied(int loc, int slot, bool occupied) { }
|
|
|
|
|
|
2018-05-12 19:28:48 +00:00
|
|
|
|
public override string GetString(int Offset, int Length) => StringConverter.GetBEString3(Data, Offset, Length);
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public override byte[] SetString(string value, int maxLength, int PadToSize = 0, ushort PadWith = 0)
|
2017-04-09 21:06:50 +00:00
|
|
|
|
{
|
|
|
|
|
if (PadToSize == 0)
|
|
|
|
|
PadToSize = maxLength + 1;
|
2017-08-01 06:03:51 +00:00
|
|
|
|
return StringConverter.SetBEString3(value, maxLength, PadToSize, PadWith);
|
2017-04-09 21:06:50 +00:00
|
|
|
|
}
|
2016-09-26 23:15:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|