pkmn-classic-framework/library/Structures/BattleTowerRecord4.cs
2014-08-07 18:37:38 -04:00

87 lines
2.4 KiB
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using PkmnFoundations.Support;
namespace PkmnFoundations.Structures
{
public class BattleTowerRecord4
{
public BattleTowerRecord4()
{
}
public BattleTowerRecord4(byte[] data)
{
Load(data, 0);
}
public BattleTowerRecord4(byte[] data, int start)
{
Load(data, start);
}
public BattleTowerPokemon4[] Party;
public BattleTowerProfile4 Profile;
public TrendyPhrase4 PhraseChallenged;
public TrendyPhrase4 PhraseWon;
public TrendyPhrase4 PhraseLost;
public ushort Unknown3;
public byte Rank;
public byte RoomNum;
public byte BattlesWon;
public ulong Unknown5;
public int PID;
public byte[] Save()
{
byte[] data = new byte[0xe4];
MemoryStream ms = new MemoryStream(data);
BinaryWriter writer = new BinaryWriter(ms);
for (int x = 0; x < 3; x++)
{
writer.Write(Party[x].Save());
}
writer.Write(Profile.Save());
writer.Write(PhraseChallenged.Data);
writer.Write(PhraseWon.Data);
writer.Write(PhraseLost.Data);
writer.Write(Unknown3);
writer.Flush();
ms.Flush();
return data;
}
public void Load(byte[] data, int start)
{
if (start + 0xe4 > data.Length) throw new ArgumentOutOfRangeException("start");
Party = new BattleTowerPokemon4[3];
for (int x = 0; x < 3; x++)
{
Party[x] = new BattleTowerPokemon4(data, start + x * 0x38);
}
Profile = new BattleTowerProfile4(data, 0xa8 + start);
byte[] trendyPhrase = new byte[8];
Array.Copy(data, 0xca + start, trendyPhrase, 0, 8);
PhraseChallenged = new TrendyPhrase4(trendyPhrase);
trendyPhrase = new byte[8];
Array.Copy(data, 0xd2 + start, trendyPhrase, 0, 8);
PhraseWon = new TrendyPhrase4(trendyPhrase);
trendyPhrase = new byte[8];
Array.Copy(data, 0xda + start, trendyPhrase, 0, 8);
PhraseLost = new TrendyPhrase4(trendyPhrase);
Unknown3 = BitConverter.ToUInt16(data, 0xe2 + start);
}
}
}