1
0
mirror of synced 2024-09-25 12:08:21 +02:00
Switch-Toolbox/File_Format_Library/FileFormats/Hashes/SAHT.cs

67 lines
1.7 KiB
C#
Raw Normal View History

2019-03-31 21:29:36 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Toolbox.Library.IO;
2019-03-31 21:29:36 +02:00
using Syroot.BinaryData;
using System.IO;
2019-03-31 21:29:36 +02:00
namespace FirstPlugin
{
public class SAHT
{
public string FileName { get; set; }
public SAHT(string fileName) {
FileName = fileName;
Read(new FileReader(fileName));
2019-03-31 21:29:36 +02:00
}
public List<HashEntry> HashEntries = new List<HashEntry>();
private void Read(FileReader reader)
{
reader.ReadSignature(4, "SAHT");
uint FileSize = reader.ReadUInt32();
uint Offset = reader.ReadUInt32();
uint EntryCount = reader.ReadUInt32();
reader.Seek(Offset, System.IO.SeekOrigin.Begin);
for (int i = 0; i <EntryCount; i++)
{
HashEntry entry = new HashEntry();
entry.Read(reader);
reader.Align(16);
HashEntries.Add(entry);
}
ToTextFile();
}
public void ToTextFile()
{
StringWriter writer = new StringWriter();
2019-03-31 21:29:36 +02:00
foreach (var entry in HashEntries)
{
writer.WriteLine($"{entry.Name}={entry.Hash.ToString("x")}");
2019-03-31 21:29:36 +02:00
}
File.WriteAllText(FileName + ".txt", writer.ToString());
2019-03-31 21:29:36 +02:00
}
public class HashEntry
{
public uint Hash { get; set; }
public string Name { get; set; }
public void Read(FileReader reader)
{
Hash = reader.ReadUInt32();
Name = reader.ReadString(BinaryStringFormat.ZeroTerminated);
}
}
}
}