PKHeX/PKHeX.Core/Legality/Data.cs

31 lines
978 B
C#
Raw Normal View History

using System;
namespace PKHeX.Core
{
public static class Data
2016-04-19 01:21:50 +00:00
{
public static byte[][] UnpackMini(byte[] fileData, string identifier)
2016-04-19 01:21:50 +00:00
{
2016-10-24 04:57:43 +00:00
if (fileData == null || fileData.Length < 4)
return null;
if (identifier[0] != fileData[0] || identifier[1] != fileData[1])
return null;
int count = BitConverter.ToUInt16(fileData, 2); int ctr = 4;
int start = BitConverter.ToInt32(fileData, ctr); ctr += 4;
byte[][] returnData = new byte[count][];
for (int i = 0; i < count; i++)
2016-04-19 01:21:50 +00:00
{
int end = BitConverter.ToInt32(fileData, ctr); ctr += 4;
int len = end - start;
byte[] data = new byte[len];
Buffer.BlockCopy(fileData, start, data, 0, len);
returnData[i] = data;
start = end;
2016-04-19 01:21:50 +00:00
}
return returnData;
2016-04-19 01:21:50 +00:00
}
}
}