 |
Description |
A Python source code for the compression and decompression of LZSS files.
Since LZSS is used in dozens of configuration combinations, multiple settings are exposed as upper-case variables that can be adjusted to modify how the compression algorithm works.
The default settings are adjusted to work for the N64 game, "Getter Love!! Panda Love Unit" (Pointer/offset: 10bit, length: 6bit, dictionary size: 1024, dictionary start: 958)
The code also outputs a significant amount of debug information for the user, exposes a few debug probes in the code, and is suitable for experimentation
This package contains:
* LZSS_decoder.py - Decoder's source code
* LZSS_encoder.py - Encoder’s source code
* LZSS_encoder.cpp - Encoder's source code
* helpers.py - Helper functions used by both the encoder and decoder.
Usage:
* python3 LZSS_decoder.py input_file_name output_file_name
* python3 LZSS_encoder.py input_file_name output_file_name |
|