pcsx2/tools/GSDumpGUI/Library/GSDump/GSDump.cs

82 lines
2.3 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace GSDumpGUI
{
public class GSDump
{
public Int32 CRC;
public byte[] StateData;
public byte[] Registers; // 8192 bytes
public int Size
{
get
{
int size = 0;
size = 4;
size += StateData.Length;
size += Registers.Length;
foreach (var itm in Data)
{
size += itm.data.Length;
}
return size;
}
}
public List<GSData> Data;
public GSDump()
{
Data = new List<GSData>();
}
static public GSDump LoadDump(String FileName)
{
GSDump dmp = new GSDump();
BinaryReader br = new BinaryReader(System.IO.File.Open(FileName, FileMode.Open));
dmp.CRC = br.ReadInt32();
Int32 ss = br.ReadInt32();
dmp.StateData = br.ReadBytes(ss);
dmp.Registers = br.ReadBytes(8192);
while (br.PeekChar() != -1)
{
GSData data = new GSData();
data.id = (GSType)br.ReadByte();
switch (data.id)
{
case GSType.Transfer:
byte index = br.ReadByte();
Int32 size = br.ReadInt32();
List<byte> Data = new List<byte>();
Data.Add(index);
Data.AddRange(br.ReadBytes(size));
data.data = Data.ToArray();
break;
case GSType.VSync:
data.data = br.ReadBytes(1);
break;
case GSType.ReadFIFO2:
Int32 sF = br.ReadInt32();
data.data = br.ReadBytes(sF);
break;
case GSType.Registers:
data.data = br.ReadBytes(8192);
break;
}
dmp.Data.Add(data);
}
br.Close();
return dmp;
}
}
}