├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── Roboto.ttf ├── daemon ├── exports.yml └── main.c ├── data └── VitaDB │ ├── bg.mp4 │ └── bg.ogg ├── kernel ├── exports.yml └── main.c ├── livearea ├── bg0.png ├── default_gate.png ├── icon0.png └── template.xml ├── source ├── adrenaline.h ├── crypt.h ├── database.cpp ├── database.h ├── dialogs.cpp ├── dialogs.h ├── extractor.cpp ├── extractor.h ├── fios.c ├── fios.h ├── head.h ├── ioapi.c ├── ioapi.h ├── main.cpp ├── md5.c ├── md5.h ├── network.cpp ├── network.h ├── player.cpp ├── player.h ├── promoter.cpp ├── promoter.h ├── renderer.cpp ├── renderer.h ├── sha1.c ├── sha1.h ├── shaders │ ├── bubble_shader_f.h │ ├── bubble_shader_v.h │ ├── simple_shader_f.h │ └── simple_shader_v.h ├── stb_image.h ├── unzip.c ├── unzip.h ├── utils.cpp └── utils.h ├── star.png ├── trophy.png └── user ├── exports.yml └── main.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | eboot.bin 2 | build -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/README.md -------------------------------------------------------------------------------- /Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/Roboto.ttf -------------------------------------------------------------------------------- /daemon/exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/daemon/exports.yml -------------------------------------------------------------------------------- /daemon/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/daemon/main.c -------------------------------------------------------------------------------- /data/VitaDB/bg.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/data/VitaDB/bg.mp4 -------------------------------------------------------------------------------- /data/VitaDB/bg.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/data/VitaDB/bg.ogg -------------------------------------------------------------------------------- /kernel/exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/kernel/exports.yml -------------------------------------------------------------------------------- /kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/kernel/main.c -------------------------------------------------------------------------------- /livearea/bg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/livearea/bg0.png -------------------------------------------------------------------------------- /livearea/default_gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/livearea/default_gate.png -------------------------------------------------------------------------------- /livearea/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/livearea/icon0.png -------------------------------------------------------------------------------- /livearea/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/livearea/template.xml -------------------------------------------------------------------------------- /source/adrenaline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/adrenaline.h -------------------------------------------------------------------------------- /source/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/crypt.h -------------------------------------------------------------------------------- /source/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/database.cpp -------------------------------------------------------------------------------- /source/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/database.h -------------------------------------------------------------------------------- /source/dialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/dialogs.cpp -------------------------------------------------------------------------------- /source/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/dialogs.h -------------------------------------------------------------------------------- /source/extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/extractor.cpp -------------------------------------------------------------------------------- /source/extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/extractor.h -------------------------------------------------------------------------------- /source/fios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/fios.c -------------------------------------------------------------------------------- /source/fios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/fios.h -------------------------------------------------------------------------------- /source/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/head.h -------------------------------------------------------------------------------- /source/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/ioapi.c -------------------------------------------------------------------------------- /source/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/ioapi.h -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/md5.c -------------------------------------------------------------------------------- /source/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/md5.h -------------------------------------------------------------------------------- /source/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/network.cpp -------------------------------------------------------------------------------- /source/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/network.h -------------------------------------------------------------------------------- /source/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/player.cpp -------------------------------------------------------------------------------- /source/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/player.h -------------------------------------------------------------------------------- /source/promoter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/promoter.cpp -------------------------------------------------------------------------------- /source/promoter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/promoter.h -------------------------------------------------------------------------------- /source/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/renderer.cpp -------------------------------------------------------------------------------- /source/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/renderer.h -------------------------------------------------------------------------------- /source/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/sha1.c -------------------------------------------------------------------------------- /source/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/sha1.h -------------------------------------------------------------------------------- /source/shaders/bubble_shader_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/shaders/bubble_shader_f.h -------------------------------------------------------------------------------- /source/shaders/bubble_shader_v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/shaders/bubble_shader_v.h -------------------------------------------------------------------------------- /source/shaders/simple_shader_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/shaders/simple_shader_f.h -------------------------------------------------------------------------------- /source/shaders/simple_shader_v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/shaders/simple_shader_v.h -------------------------------------------------------------------------------- /source/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/stb_image.h -------------------------------------------------------------------------------- /source/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/unzip.c -------------------------------------------------------------------------------- /source/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/unzip.h -------------------------------------------------------------------------------- /source/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/utils.cpp -------------------------------------------------------------------------------- /source/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/source/utils.h -------------------------------------------------------------------------------- /star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/star.png -------------------------------------------------------------------------------- /trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/trophy.png -------------------------------------------------------------------------------- /user/exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/user/exports.yml -------------------------------------------------------------------------------- /user/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rinnegatamante/VitaDB-Downloader/HEAD/user/main.c --------------------------------------------------------------------------------