├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.MD ├── include ├── appStates │ ├── appState.hpp │ ├── mainState.hpp │ └── threadState.hpp ├── biggestDump.hpp ├── console.hpp ├── input.hpp ├── io.hpp ├── logger.hpp ├── strings.hpp ├── threadFunctions.hpp └── zip.hpp ├── romfs ├── DE.json ├── ENGB.json ├── ENUS.json ├── ES.json ├── ES419.json ├── FR.json ├── FRCA.json ├── IT.json ├── JA.json ├── KO.json ├── NL.json ├── PT.json ├── PTBR.json ├── RU.json ├── ZHCN.json └── ZHTW.json └── source ├── appStates └── mainState.cpp ├── biggestDump.cpp ├── input.cpp ├── io.cpp ├── logger.cpp ├── main.cpp ├── strings.cpp ├── threadFunctions.cpp └── zip.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/Makefile -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/README.MD -------------------------------------------------------------------------------- /include/appStates/appState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/include/appStates/appState.hpp -------------------------------------------------------------------------------- /include/appStates/mainState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/include/appStates/mainState.hpp -------------------------------------------------------------------------------- /include/appStates/threadState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/include/appStates/threadState.hpp -------------------------------------------------------------------------------- /include/biggestDump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/include/biggestDump.hpp -------------------------------------------------------------------------------- /include/console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/include/console.hpp -------------------------------------------------------------------------------- /include/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/include/input.hpp -------------------------------------------------------------------------------- /include/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/include/io.hpp -------------------------------------------------------------------------------- /include/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/include/logger.hpp -------------------------------------------------------------------------------- /include/strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/include/strings.hpp -------------------------------------------------------------------------------- /include/threadFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/include/threadFunctions.hpp -------------------------------------------------------------------------------- /include/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/include/zip.hpp -------------------------------------------------------------------------------- /romfs/DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/DE.json -------------------------------------------------------------------------------- /romfs/ENGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/ENGB.json -------------------------------------------------------------------------------- /romfs/ENUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/ENUS.json -------------------------------------------------------------------------------- /romfs/ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/ES.json -------------------------------------------------------------------------------- /romfs/ES419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/ES419.json -------------------------------------------------------------------------------- /romfs/FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/FR.json -------------------------------------------------------------------------------- /romfs/FRCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/FRCA.json -------------------------------------------------------------------------------- /romfs/IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/IT.json -------------------------------------------------------------------------------- /romfs/JA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/JA.json -------------------------------------------------------------------------------- /romfs/KO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/KO.json -------------------------------------------------------------------------------- /romfs/NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/NL.json -------------------------------------------------------------------------------- /romfs/PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/PT.json -------------------------------------------------------------------------------- /romfs/PTBR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/PTBR.json -------------------------------------------------------------------------------- /romfs/RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/RU.json -------------------------------------------------------------------------------- /romfs/ZHCN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/ZHCN.json -------------------------------------------------------------------------------- /romfs/ZHTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/romfs/ZHTW.json -------------------------------------------------------------------------------- /source/appStates/mainState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/source/appStates/mainState.cpp -------------------------------------------------------------------------------- /source/biggestDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/source/biggestDump.cpp -------------------------------------------------------------------------------- /source/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/source/input.cpp -------------------------------------------------------------------------------- /source/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/source/io.cpp -------------------------------------------------------------------------------- /source/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/source/logger.cpp -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/source/strings.cpp -------------------------------------------------------------------------------- /source/threadFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/source/threadFunctions.cpp -------------------------------------------------------------------------------- /source/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-D-K/biggestDump/HEAD/source/zip.cpp --------------------------------------------------------------------------------