1
0
mirror of synced 2024-12-04 03:57:20 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Compression/Formats/LZ77.cs

73 lines
2.3 KiB
C#
Raw Normal View History

2020-04-10 03:10:50 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.IO.Compression;
using System.Threading.Tasks;
using Toolbox.Library.IO;
using Toolbox.Library.Forms;
using System.Runtime.InteropServices;
using Toolbox.Library.Compression.LZ77_wii_11_compresss.Formats.Nitro;
2020-04-10 03:10:50 +02:00
namespace Toolbox.Library
{
public class LZ77 : ICompressionFormat
{
public string[] Description { get; set; } = new string[] { "LZ77 Compressed" };
public string[] Extension { get; set; } = new string[] { "*.lz", };
public bool Identify(Stream stream, string fileName)
{
if (stream.Length < 16)
return false;
using (var reader = new FileReader(stream, true))
{
if(Utils.GetExtension(fileName) == ".lz")
{
reader.SeekBegin(12);
return reader.ReadByte() == 0x11;
2020-04-10 03:10:50 +02:00
}
}
return false;
}
public bool CanCompress { get; } = false;
2020-04-10 03:10:50 +02:00
private bool UseLZMAMagicHeader = true;
public Stream Decompress(Stream stream)
{
using (var reader = new FileReader(stream, true))
2020-04-10 03:10:50 +02:00
{
reader.SeekBegin(12);
byte type = reader.ReadByte();
if (type == 0x11)
2020-04-10 03:10:50 +02:00
{
uint decomp_size = reader.ReadUInt32();
var sub = new SubStream(stream, 16);
return new MemoryStream(LZ77_WII.Decompress11(sub.ToArray(), (int)decomp_size));
}
else
{
return new MemoryStream();
}
}
}
// A modified version of dsdecmp for compressing files into the Wii LZ77 type 11 .lz -Adapted by:DanielSvoboda
2020-04-10 03:10:50 +02:00
public Stream Compress(Stream stream)
{
using (var reader = new FileReader(stream, true))
{
using (MemoryStream outstream = new MemoryStream())
{
LZ11 lz11 = new LZ11();
int compressedSize = lz11.Compress(stream, stream.Length, outstream);
return new MemoryStream(outstream.ToArray());
}
}
2020-04-10 03:10:50 +02:00
}
}
}