├── .editorconfig ├── .github └── workflows │ └── build.yaml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE.txt ├── README.md ├── debian ├── changelog ├── compat ├── control └── rules ├── src ├── Arguments.h ├── ArgumentsChecker.cpp ├── ArgumentsChecker.h ├── DatFile.cpp ├── DatFile.h ├── DatFileItem.cpp ├── DatFileItem.h ├── DatFileUnpacker.cpp ├── DatFileUnpacker.h ├── Exception.cpp ├── Exception.h ├── Format.h ├── LZSS.cpp ├── LZSS.h └── main.cpp └── vcpkg.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/debian/control -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/debian/rules -------------------------------------------------------------------------------- /src/Arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/Arguments.h -------------------------------------------------------------------------------- /src/ArgumentsChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/ArgumentsChecker.cpp -------------------------------------------------------------------------------- /src/ArgumentsChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/ArgumentsChecker.h -------------------------------------------------------------------------------- /src/DatFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/DatFile.cpp -------------------------------------------------------------------------------- /src/DatFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/DatFile.h -------------------------------------------------------------------------------- /src/DatFileItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/DatFileItem.cpp -------------------------------------------------------------------------------- /src/DatFileItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/DatFileItem.h -------------------------------------------------------------------------------- /src/DatFileUnpacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/DatFileUnpacker.cpp -------------------------------------------------------------------------------- /src/DatFileUnpacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/DatFileUnpacker.h -------------------------------------------------------------------------------- /src/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/Exception.cpp -------------------------------------------------------------------------------- /src/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/Exception.h -------------------------------------------------------------------------------- /src/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/Format.h -------------------------------------------------------------------------------- /src/LZSS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/LZSS.cpp -------------------------------------------------------------------------------- /src/LZSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/LZSS.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/src/main.cpp -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falltergeist/dat-unpacker/HEAD/vcpkg.json --------------------------------------------------------------------------------