Added script
parent
6ca2616a52
commit
6a08f348ed
@ -0,0 +1,9 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2010 magical
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
@ -0,0 +1,268 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
from sys import stdin, stdout, stderr, exit
|
||||
from os import SEEK_SET, SEEK_CUR, SEEK_END
|
||||
from errno import EPIPE
|
||||
from struct import pack, unpack
|
||||
|
||||
__all__ = ('decompress', 'decompress_file', 'decompress_bytes',
|
||||
'decompress_overlay', 'DecompressionError')
|
||||
|
||||
class DecompressionError(ValueError):
|
||||
pass
|
||||
|
||||
def bits(byte):
|
||||
return ((byte >> 7) & 1,
|
||||
(byte >> 6) & 1,
|
||||
(byte >> 5) & 1,
|
||||
(byte >> 4) & 1,
|
||||
(byte >> 3) & 1,
|
||||
(byte >> 2) & 1,
|
||||
(byte >> 1) & 1,
|
||||
(byte) & 1)
|
||||
|
||||
def decompress_raw_lzss10(indata, decompressed_size, _overlay=False):
|
||||
"""Decompress LZSS-compressed bytes. Returns a bytearray."""
|
||||
data = bytearray()
|
||||
|
||||
it = iter(indata)
|
||||
|
||||
if _overlay:
|
||||
disp_extra = 3
|
||||
else:
|
||||
disp_extra = 1
|
||||
|
||||
def writebyte(b):
|
||||
data.append(b)
|
||||
def readbyte():
|
||||
return next(it)
|
||||
def readshort():
|
||||
# big-endian
|
||||
a = next(it)
|
||||
b = next(it)
|
||||
return (a << 8) | b
|
||||
def copybyte():
|
||||
data.append(next(it))
|
||||
|
||||
while len(data) < decompressed_size:
|
||||
b = readbyte()
|
||||
flags = bits(b)
|
||||
for flag in flags:
|
||||
if flag == 0:
|
||||
copybyte()
|
||||
elif flag == 1:
|
||||
sh = readshort()
|
||||
count = (sh >> 0xc) + 3
|
||||
disp = (sh & 0xfff) + disp_extra
|
||||
|
||||
for _ in range(count):
|
||||
writebyte(data[-disp])
|
||||
else:
|
||||
raise ValueError(flag)
|
||||
|
||||
if decompressed_size <= len(data):
|
||||
break
|
||||
|
||||
if len(data) != decompressed_size:
|
||||
raise DecompressionError("decompressed size does not match the expected size")
|
||||
|
||||
return data
|
||||
|
||||
def decompress_raw_lzss11(indata, decompressed_size):
|
||||
"""Decompress LZSS-compressed bytes. Returns a bytearray."""
|
||||
data = bytearray()
|
||||
|
||||
it = iter(indata)
|
||||
|
||||
def writebyte(b):
|
||||
data.append(b)
|
||||
def readbyte():
|
||||
return next(it)
|
||||
def copybyte():
|
||||
data.append(next(it))
|
||||
|
||||
while len(data) < decompressed_size:
|
||||
b = readbyte()
|
||||
flags = bits(b)
|
||||
for flag in flags:
|
||||
if flag == 0:
|
||||
copybyte()
|
||||
elif flag == 1:
|
||||
b = readbyte()
|
||||
indicator = b >> 4
|
||||
|
||||
if indicator == 0:
|
||||
# 8 bit count, 12 bit disp
|
||||
# indicator is 0, don't need to mask b
|
||||
count = (b << 4)
|
||||
b = readbyte()
|
||||
count += b >> 4
|
||||
count += 0x11
|
||||
elif indicator == 1:
|
||||
# 16 bit count, 12 bit disp
|
||||
count = ((b & 0xf) << 12) + (readbyte() << 4)
|
||||
b = readbyte()
|
||||
count += b >> 4
|
||||
count += 0x111
|
||||
else:
|
||||
# indicator is count (4 bits), 12 bit disp
|
||||
count = indicator
|
||||
count += 1
|
||||
|
||||
disp = ((b & 0xf) << 8) + readbyte()
|
||||
disp += 1
|
||||
|
||||
try:
|
||||
for _ in range(count):
|
||||
writebyte(data[-disp])
|
||||
except IndexError:
|
||||
raise Exception(count, disp, len(data), sum(1 for x in it) )
|
||||
else:
|
||||
raise ValueError(flag)
|
||||
|
||||
if decompressed_size <= len(data):
|
||||
break
|
||||
|
||||
if len(data) != decompressed_size:
|
||||
raise DecompressionError("decompressed size does not match the expected size")
|
||||
|
||||
return data
|
||||
|
||||
|
||||
def decompress_overlay(f, out):
|
||||
# the compression header is at the end of the file
|
||||
f.seek(-8, SEEK_END)
|
||||
header = f.read(8)
|
||||
|
||||
# decompression goes backwards.
|
||||
# end < here < start
|
||||
|
||||
# end_delta == here - decompression end address
|
||||
# start_delta == decompression start address - here
|
||||
end_delta, start_delta = unpack("<LL", header)
|
||||
|
||||
filelen = f.tell()
|
||||
|
||||
padding = end_delta >> 0x18
|
||||
end_delta &= 0xFFFFFF
|
||||
decompressed_size = start_delta + end_delta
|
||||
|
||||
f.seek(-end_delta, SEEK_END)
|
||||
|
||||
data = bytearray()
|
||||
data.extend(f.read(end_delta - padding))
|
||||
data.reverse()
|
||||
|
||||
#stdout.write(data.tostring())
|
||||
|
||||
uncompressed_data = decompress_raw_lzss10(data, decompressed_size,
|
||||
_overlay=True)
|
||||
uncompressed_data.reverse()
|
||||
|
||||
# first we write up to the portion of the file which was "overwritten" by
|
||||
# the decompressed data, then the decompressed data itself.
|
||||
# i wonder if it's possible for decompression to overtake the compressed
|
||||
# data, so that the decompression code is reading its own output...
|
||||
f.seek(0, SEEK_SET)
|
||||
out.write(f.read(filelen - end_delta))
|
||||
out.write(uncompressed_data)
|
||||
|
||||
def decompress(obj):
|
||||
"""Decompress LZSS-compressed bytes or a file-like object.
|
||||
|
||||
Shells out to decompress_file() or decompress_bytes() depending on
|
||||
whether or not the passed-in object has a 'read' attribute or not.
|
||||
|
||||
Returns a bytearray."""
|
||||
if hasattr(obj, 'read'):
|
||||
return decompress_file(obj)
|
||||
else:
|
||||
return decompress_bytes(obj)
|
||||
|
||||
def decompress_bytes(data):
|
||||
"""Decompress LZSS-compressed bytes. Returns a bytearray."""
|
||||
header = data[:4]
|
||||
if header[0] == 0x10:
|
||||
decompress_raw = decompress_raw_lzss10
|
||||
elif header[0] == 0x11:
|
||||
decompress_raw = decompress_raw_lzss11
|
||||
else:
|
||||
raise DecompressionError("not as lzss-compressed file")
|
||||
|
||||
decompressed_size, = unpack("<L", header[1:] + b'\x00')
|
||||
|
||||
data = data[4:]
|
||||
return decompress_raw(data, decompressed_size)
|
||||
|
||||
def decompress_file(f):
|
||||
"""Decompress an LZSS-compressed file. Returns a bytearray.
|
||||
|
||||
This isn't any more efficient than decompress_bytes, as it reads
|
||||
the entire file into memory. It is offered as a convenience.
|
||||
"""
|
||||
header = f.read(4)
|
||||
if header[0] == 0x10:
|
||||
decompress_raw = decompress_raw_lzss10
|
||||
elif header[0] == 0x11:
|
||||
decompress_raw = decompress_raw_lzss11
|
||||
else:
|
||||
raise DecompressionError("not as lzss-compressed file")
|
||||
|
||||
decompressed_size, = unpack("<L", header[1:] + b'\x00')
|
||||
|
||||
data = f.read()
|
||||
return decompress_raw(data, decompressed_size)
|
||||
|
||||
def main(args=None):
|
||||
if args is None:
|
||||
args = sys.argv[1:]
|
||||
|
||||
if '--overlay' in args:
|
||||
args.remove('--overlay')
|
||||
overlay = True
|
||||
else:
|
||||
overlay = False
|
||||
|
||||
if len(args) < 1 or args[0] == '-':
|
||||
if overlay:
|
||||
print("Can't decompress overlays from stdin", file=stderr)
|
||||
return 2
|
||||
|
||||
if hasattr(stdin, 'buffer'):
|
||||
f = stdin.buffer
|
||||
else:
|
||||
f = stdin
|
||||
else:
|
||||
try:
|
||||
f = open(args[0], "rb")
|
||||
except IOError as e:
|
||||
print(e, file=stderr)
|
||||
return 2
|
||||
|
||||
stdout = sys.stdout
|
||||
if hasattr(stdout, 'buffer'):
|
||||
# grab the underlying binary stream
|
||||
stdout = stdout.buffer
|
||||
|
||||
try:
|
||||
if overlay:
|
||||
decompress_overlay(f, stdout)
|
||||
else:
|
||||
stdout.write(decompress_file(f))
|
||||
except IOError as e:
|
||||
if e.errno == EPIPE:
|
||||
# don't complain about a broken pipe
|
||||
pass
|
||||
else:
|
||||
raise
|
||||
except (DecompressionError,) as e:
|
||||
print(e, file=stderr)
|
||||
return 1
|
||||
|
||||
return 0
|
||||
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
exit(main())
|
||||
Loading…
Reference in New Issue