-
Notifications
You must be signed in to change notification settings - Fork 11
/
unlzss
executable file
·80 lines (63 loc) · 2.07 KB
/
unlzss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env python3
#
# UnLZSS - Decompress a Final Fantasy VII LZSS-compressed file
#
# Copyright (C) Christian Bauer <www.cebix.net>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
__version__ = "1.4"
import sys
import os
import struct
import ff7
# Print usage information and exit.
def usage(exitcode, error = None):
print("Usage: %s [OPTION...] <fromfile> <tofile>" % os.path.basename(sys.argv[0]))
print(" -V, --version Display version information and exit")
print(" -?, --help Show this help message")
if error is not None:
print("\nError:", error, file=sys.stderr)
sys.exit(exitcode)
# Parse command line arguments
inputFileName = None
outputFileName = None
for arg in sys.argv[1:]:
if arg == "--version" or arg == "-V":
print("UnLZSS", __version__)
sys.exit(0)
elif arg == "--help" or arg == "-?":
usage(0)
elif arg[0] == "-":
usage(64, "Invalid option '%s'" % arg)
else:
if inputFileName is None:
inputFileName = arg
elif outputFileName is None:
outputFileName = arg
else:
usage(64, "Unexpected extra argument '%s'" % arg)
if inputFileName is None:
usage(64, "No input file specified")
if outputFileName is None:
usage(64, "No output file specified")
# Read the input file
try:
inputFile = open(inputFileName, "rb")
except IOError as e:
print("Error opening file '%s': %s" % (inputFileName, e.strerror), file=sys.stderr)
sys.exit(1)
data = inputFile.read()
compressedSize = struct.unpack_from("<L", data)[0]
# Decompress it
data = ff7.decompressLzss(data[4:4 + compressedSize])
# Write data to output file
try:
outputFile = open(outputFileName, "wb")
except IOError as e:
print("Error creating file '%s': %s" % (outputFileName, e.strerror), file=sys.stderr)
sys.exit(1)
outputFile.write(data)
outputFile.close()