mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-24 13:06:32 +00:00
200 lines
6.3 KiB
C#
200 lines
6.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.IO;
|
|
using System.Windows;
|
|
|
|
namespace MinecraftUSkinEditor
|
|
{
|
|
public class PCK
|
|
{
|
|
|
|
public class MineFile
|
|
{
|
|
public int filesize;
|
|
public int type;
|
|
public string name;
|
|
public byte[] data;
|
|
public List<object[]> entries = new List<object[]>();
|
|
}
|
|
|
|
public int pckType = 0;
|
|
|
|
public Dictionary<int, string> types = new Dictionary<int, string>();
|
|
public Dictionary<string, int> typeCodes = new Dictionary<string, int>();
|
|
public List<MineFile> mineFiles = new List<MineFile>();
|
|
|
|
public PCK()
|
|
{
|
|
|
|
}
|
|
|
|
public PCK(string filename)
|
|
{
|
|
Read(File.ReadAllBytes(filename));
|
|
}
|
|
|
|
private static byte[] endianReverseUnicode(byte[] str)
|
|
{
|
|
byte[] newStr = new byte[str.Length];
|
|
for (int i = 0; i < str.Length; i += 2)
|
|
{
|
|
newStr[i] = str[i + 1];
|
|
newStr[i + 1] = str[i];
|
|
}
|
|
return newStr;
|
|
}
|
|
|
|
public static string readMineString(FileData f)
|
|
{
|
|
int length = f.readInt() * 2;
|
|
Console.WriteLine(length.ToString());
|
|
return Encoding.Unicode.GetString(endianReverseUnicode(f.readBytes(length)));
|
|
|
|
}
|
|
|
|
public static string readMineStringVita(FileData f)
|
|
{
|
|
int length = f.readInt() / 20000000;
|
|
Console.WriteLine(length.ToString() + " - caught");
|
|
return Encoding.Unicode.GetString(endianReverseUnicode(f.readBytes(length)));
|
|
|
|
}
|
|
|
|
public static string readMineStringVita2(FileData f)
|
|
{
|
|
int length = (f.readInt() / 20000000) * 2;
|
|
Console.WriteLine(length.ToString() + " - caught");
|
|
return Encoding.Unicode.GetString(endianReverseUnicode(f.readBytes(length)));
|
|
|
|
}
|
|
|
|
public void Read(byte[] data)
|
|
{
|
|
FileData fileData = new FileData(data);
|
|
fileData.Endian = Endianness.Big;
|
|
fileData.readInt();
|
|
int entryTypeCount = fileData.readInt();
|
|
for (int i = 0; i < entryTypeCount; i++)
|
|
{
|
|
int unk = fileData.readInt();
|
|
string text = "";
|
|
try
|
|
{
|
|
text = readMineString(fileData);
|
|
}
|
|
catch
|
|
{
|
|
text = "Hello!";
|
|
}
|
|
types.Add(unk, text);
|
|
typeCodes.Add(text, unk);
|
|
fileData.skip(4);
|
|
}
|
|
|
|
int itemCount = fileData.readInt();
|
|
|
|
// no metadata
|
|
if (entryTypeCount == 0)
|
|
{
|
|
Console.WriteLine("PckType0");
|
|
}
|
|
// type 1 or 2
|
|
else if (itemCount < 3)
|
|
{
|
|
pckType = itemCount;
|
|
if (pckType == 1)
|
|
{
|
|
Console.WriteLine("PckType1");
|
|
itemCount = fileData.readInt();
|
|
}
|
|
if (pckType == 2)
|
|
Console.WriteLine("PckType2");
|
|
}
|
|
// regular pck
|
|
else
|
|
{
|
|
Console.WriteLine("NormalPCK");
|
|
}
|
|
|
|
|
|
for (int j = 0; j < itemCount; j++)
|
|
{
|
|
MineFile mineFile = new MineFile();
|
|
mineFile.filesize = fileData.readInt();
|
|
mineFile.type = fileData.readInt();
|
|
int length = fileData.readInt() * 2;
|
|
mineFile.name = Encoding.Unicode.GetString(endianReverseUnicode(fileData.readBytes(length)));
|
|
fileData.skip(4);
|
|
mineFiles.Add(mineFile);
|
|
}
|
|
|
|
foreach (MineFile mineFile2 in mineFiles)
|
|
{
|
|
int num4 = fileData.readInt();
|
|
for (int k = 0; k < num4; k++)
|
|
{
|
|
object[] array = new object[2];
|
|
int key = fileData.readInt();
|
|
array[0] = types[key];
|
|
array[1] = readMineString(fileData);
|
|
fileData.skip(4);
|
|
mineFile2.entries.Add(array);
|
|
}
|
|
mineFile2.data = fileData.readBytes(mineFile2.filesize);
|
|
}
|
|
}
|
|
|
|
private static void writeMinecraftString(FileOutput f, string str)
|
|
{
|
|
byte[] bytes = Encoding.Unicode.GetBytes(str);
|
|
f.writeInt(bytes.Length / 2);
|
|
f.writeBytes(PCK.endianReverseUnicode(bytes));
|
|
f.writeInt(0);
|
|
}
|
|
|
|
public byte[] Rebuild()
|
|
{
|
|
FileOutput fileOutput = new FileOutput();
|
|
fileOutput.Endian = Endianness.Big;
|
|
fileOutput.writeInt(3);
|
|
fileOutput.writeInt(this.types.Count);
|
|
foreach (int num in this.types.Keys)
|
|
{
|
|
fileOutput.writeInt(num);
|
|
PCK.writeMinecraftString(fileOutput, this.types[num]);
|
|
}
|
|
fileOutput.writeInt(this.mineFiles.Count);
|
|
foreach (PCK.MineFile mineFile in this.mineFiles)
|
|
{
|
|
fileOutput.writeInt(mineFile.data.Length);
|
|
fileOutput.writeInt(mineFile.type);
|
|
PCK.writeMinecraftString(fileOutput, mineFile.name);
|
|
}
|
|
foreach (PCK.MineFile mineFile2 in this.mineFiles)
|
|
{
|
|
string str = "";
|
|
try
|
|
{
|
|
fileOutput.writeInt(mineFile2.entries.Count);
|
|
foreach (object[] array in mineFile2.entries)
|
|
{
|
|
str = array[0].ToString();
|
|
fileOutput.writeInt(this.typeCodes[(string)array[0]]);
|
|
PCK.writeMinecraftString(fileOutput, (string)array[1]);
|
|
}
|
|
fileOutput.writeBytes(mineFile2.data);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
MessageBox.Show(str + " is not in the main metadatabase");
|
|
break;
|
|
}
|
|
}
|
|
return fileOutput.getBytes();
|
|
}
|
|
}
|
|
}
|