[FF7/FF8/Squaresoft Games] lzs command line tool - qt-lzs (1.3)

  • Thread starter Thread starter myst6re
  • Start date Start date
Status
Not open for further replies.
M

myst6re

Guest
For a long time I used homemade tools that I will now share. The first one, qt-lzs, is a simple command-line tool to compress/uncompress lzs files.
My implementation is based on Haruhiko Okumura code, which is really fast. But it is also not designed for large files.

I provide the source code on GitHub, and I hope that some people will help.
Contribute on GitHub
Download it on GitHub
 
Last edited:
myst6re, Can you add a command-line switch to qt-lzs so I can decompress "Another Mind" style LZS files. (The ones with the "CC FF" in the header)

Better yet, if it detects "C3 FF" at the beginning of the file to ignore them and decompress the rest. It's a pain to edit several hundred files one at a time to remove those two bytes.
 
And it's done! Version 1.1 is released, look at the first post to download it.

@halkun:

To decompress a tiz file, here is the command:

Code: [Select]
Code:
unlzs -p 2 --no-header-test foobar.tiz
 
Last edited:
neato burrito!

Aww, It's not working right :/

I can't do the following...

Code: [Select]
Code:
unlzs -p 2 --no-header-test *.tiz
...to mass decompress. Also the output data is not correct. I'm investigating.
 
Last edited:
Oh, that's right, I can add a wildcard parser for that (I've already done that for Vincent Tim).
Meanwhile, bash (or other programming language) is your friend.
 
Qt projects are easy to build on either system just install QtCreator.
 
There's no installer, so nothing can be bundled, if that's what you're referring to. It's just an archive file containing the precompiled binaries and required dlls.
 
Status
Not open for further replies.
Back
Top