├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── dar-extract_pc.c ├── dar-extract_psp.c ├── dar-extract_psx.c ├── dat-extract_enc.c ├── dat-merge.c ├── face-extract.c ├── gcx-decompile.c ├── lodepng ├── lodepng.c └── lodepng.h ├── qar-extract_psp.c ├── simple-hash-list.c ├── simple-hash.c ├── stage-dictionary.c ├── stage-dictionary.h ├── stage-extract.c ├── strcode ├── strcode.c └── strcode.h ├── txp-convert.c └── zar-extract.c /.gitattributes: -------------------------------------------------------------------------------- 1 | *.h linguist-language=C 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/README.md -------------------------------------------------------------------------------- /dar-extract_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/dar-extract_pc.c -------------------------------------------------------------------------------- /dar-extract_psp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/dar-extract_psp.c -------------------------------------------------------------------------------- /dar-extract_psx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/dar-extract_psx.c -------------------------------------------------------------------------------- /dat-extract_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/dat-extract_enc.c -------------------------------------------------------------------------------- /dat-merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/dat-merge.c -------------------------------------------------------------------------------- /face-extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/face-extract.c -------------------------------------------------------------------------------- /gcx-decompile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/gcx-decompile.c -------------------------------------------------------------------------------- /lodepng/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/lodepng/lodepng.c -------------------------------------------------------------------------------- /lodepng/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/lodepng/lodepng.h -------------------------------------------------------------------------------- /qar-extract_psp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/qar-extract_psp.c -------------------------------------------------------------------------------- /simple-hash-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/simple-hash-list.c -------------------------------------------------------------------------------- /simple-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/simple-hash.c -------------------------------------------------------------------------------- /stage-dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/stage-dictionary.c -------------------------------------------------------------------------------- /stage-dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/stage-dictionary.h -------------------------------------------------------------------------------- /stage-extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/stage-extract.c -------------------------------------------------------------------------------- /strcode/strcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/strcode/strcode.c -------------------------------------------------------------------------------- /strcode/strcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/strcode/strcode.h -------------------------------------------------------------------------------- /txp-convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/txp-convert.c -------------------------------------------------------------------------------- /zar-extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joy-Division/tools-mgs/HEAD/zar-extract.c --------------------------------------------------------------------------------