├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── decompress.c ├── extract-racer-tab.py ├── out_splineblock.py ├── out_spriteblock.py ├── out_textureblock.py ├── parse-racer-tab.py ├── parse-savedata.py └── scr2wav.py /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSWE1R/swe1r-tools/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSWE1R/swe1r-tools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSWE1R/swe1r-tools/HEAD/README.md -------------------------------------------------------------------------------- /decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSWE1R/swe1r-tools/HEAD/decompress.c -------------------------------------------------------------------------------- /extract-racer-tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSWE1R/swe1r-tools/HEAD/extract-racer-tab.py -------------------------------------------------------------------------------- /out_splineblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSWE1R/swe1r-tools/HEAD/out_splineblock.py -------------------------------------------------------------------------------- /out_spriteblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSWE1R/swe1r-tools/HEAD/out_spriteblock.py -------------------------------------------------------------------------------- /out_textureblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSWE1R/swe1r-tools/HEAD/out_textureblock.py -------------------------------------------------------------------------------- /parse-racer-tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSWE1R/swe1r-tools/HEAD/parse-racer-tab.py -------------------------------------------------------------------------------- /parse-savedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSWE1R/swe1r-tools/HEAD/parse-savedata.py -------------------------------------------------------------------------------- /scr2wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSWE1R/swe1r-tools/HEAD/scr2wav.py --------------------------------------------------------------------------------