├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── arm7 ├── Makefile └── source │ ├── fpsAdjust.h │ └── main.c ├── arm9 ├── Makefile ├── ds_arm9_hi.mem ├── ds_arm9_hi.specs └── source │ ├── file_browse.cpp │ ├── file_browse.h │ ├── gl2d.c │ ├── gl2d.h │ ├── graphics │ ├── FontGraphic.cpp │ ├── FontGraphic.h │ ├── TextEntry.cpp │ ├── TextEntry.h │ ├── TextPane.cpp │ ├── TextPane.h │ ├── fontHandler.cpp │ ├── fontHandler.h │ ├── lodepng.cpp │ ├── lodepng.h │ ├── uvcoord_date_time_font.h │ └── uvcoord_large_font.h │ ├── gui.cpp │ ├── gui.h │ ├── lz77.cpp │ ├── lz77.h │ ├── main.cpp │ ├── myDma.h │ ├── nitrofs.c │ ├── nitrofs.h │ ├── rvidHeader.cpp │ ├── rvidHeader.h │ ├── singleton.h │ ├── tonccpy.c │ ├── tonccpy.h │ ├── userpal.c │ └── userpal.h ├── clean and compile.bat ├── clean.bat ├── compile.bat ├── data └── top.png.bin ├── gfx ├── buttons.grit ├── buttons.png ├── large_buttons.grit ├── large_buttons.png ├── large_font.grit ├── large_font.png ├── small_font.grit └── small_font.png ├── icon.bmp ├── libs └── libfat4 │ ├── .gitignore │ ├── Makefile │ ├── include │ └── fat.h │ ├── nds │ └── Makefile │ └── source │ ├── bit_ops.h │ ├── cache.c │ ├── cache.h │ ├── common.h │ ├── directory.c │ ├── directory.h │ ├── disc.c │ ├── disc.h │ ├── fatdir.c │ ├── fatdir.h │ ├── fatfile.c │ ├── fatfile.h │ ├── file_allocation_table.c │ ├── file_allocation_table.h │ ├── filetime.c │ ├── filetime.h │ ├── libfat.c │ ├── lock.c │ ├── lock.h │ ├── mem_allocate.h │ ├── partition.c │ └── partition.h ├── make_cia ├── make_cia.exe └── resources ├── RVP.ZIP ├── RocketVideo logo (v2).xcf ├── RocketVideo logo.xcf ├── Top screen convert.bat ├── Top screen.xcf ├── dsividplayer.xcf ├── icon.xcf ├── iconfinder_theaters_326711.png ├── large_buttons.xcf ├── logo (2019).png ├── logo (2019).xcf ├── logo.png └── logo.xcf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/README.md -------------------------------------------------------------------------------- /arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm7/Makefile -------------------------------------------------------------------------------- /arm7/source/fpsAdjust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm7/source/fpsAdjust.h -------------------------------------------------------------------------------- /arm7/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm7/source/main.c -------------------------------------------------------------------------------- /arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/Makefile -------------------------------------------------------------------------------- /arm9/ds_arm9_hi.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/ds_arm9_hi.mem -------------------------------------------------------------------------------- /arm9/ds_arm9_hi.specs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/ds_arm9_hi.specs -------------------------------------------------------------------------------- /arm9/source/file_browse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/file_browse.cpp -------------------------------------------------------------------------------- /arm9/source/file_browse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/file_browse.h -------------------------------------------------------------------------------- /arm9/source/gl2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/gl2d.c -------------------------------------------------------------------------------- /arm9/source/gl2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/gl2d.h -------------------------------------------------------------------------------- /arm9/source/graphics/FontGraphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/graphics/FontGraphic.cpp -------------------------------------------------------------------------------- /arm9/source/graphics/FontGraphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/graphics/FontGraphic.h -------------------------------------------------------------------------------- /arm9/source/graphics/TextEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/graphics/TextEntry.cpp -------------------------------------------------------------------------------- /arm9/source/graphics/TextEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/graphics/TextEntry.h -------------------------------------------------------------------------------- /arm9/source/graphics/TextPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/graphics/TextPane.cpp -------------------------------------------------------------------------------- /arm9/source/graphics/TextPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/graphics/TextPane.h -------------------------------------------------------------------------------- /arm9/source/graphics/fontHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/graphics/fontHandler.cpp -------------------------------------------------------------------------------- /arm9/source/graphics/fontHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/graphics/fontHandler.h -------------------------------------------------------------------------------- /arm9/source/graphics/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/graphics/lodepng.cpp -------------------------------------------------------------------------------- /arm9/source/graphics/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/graphics/lodepng.h -------------------------------------------------------------------------------- /arm9/source/graphics/uvcoord_date_time_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/graphics/uvcoord_date_time_font.h -------------------------------------------------------------------------------- /arm9/source/graphics/uvcoord_large_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/graphics/uvcoord_large_font.h -------------------------------------------------------------------------------- /arm9/source/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/gui.cpp -------------------------------------------------------------------------------- /arm9/source/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/gui.h -------------------------------------------------------------------------------- /arm9/source/lz77.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/lz77.cpp -------------------------------------------------------------------------------- /arm9/source/lz77.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/lz77.h -------------------------------------------------------------------------------- /arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/main.cpp -------------------------------------------------------------------------------- /arm9/source/myDma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/myDma.h -------------------------------------------------------------------------------- /arm9/source/nitrofs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/nitrofs.c -------------------------------------------------------------------------------- /arm9/source/nitrofs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/nitrofs.h -------------------------------------------------------------------------------- /arm9/source/rvidHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/rvidHeader.cpp -------------------------------------------------------------------------------- /arm9/source/rvidHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/rvidHeader.h -------------------------------------------------------------------------------- /arm9/source/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/singleton.h -------------------------------------------------------------------------------- /arm9/source/tonccpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/tonccpy.c -------------------------------------------------------------------------------- /arm9/source/tonccpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/tonccpy.h -------------------------------------------------------------------------------- /arm9/source/userpal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/userpal.c -------------------------------------------------------------------------------- /arm9/source/userpal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/arm9/source/userpal.h -------------------------------------------------------------------------------- /clean and compile.bat: -------------------------------------------------------------------------------- 1 | make clean 2 | make 3 | pause 4 | -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- 1 | make clean 2 | pause 3 | -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- 1 | make 2 | pause 3 | -------------------------------------------------------------------------------- /data/top.png.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/data/top.png.bin -------------------------------------------------------------------------------- /gfx/buttons.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/gfx/buttons.grit -------------------------------------------------------------------------------- /gfx/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/gfx/buttons.png -------------------------------------------------------------------------------- /gfx/large_buttons.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/gfx/large_buttons.grit -------------------------------------------------------------------------------- /gfx/large_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/gfx/large_buttons.png -------------------------------------------------------------------------------- /gfx/large_font.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/gfx/large_font.grit -------------------------------------------------------------------------------- /gfx/large_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/gfx/large_font.png -------------------------------------------------------------------------------- /gfx/small_font.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/gfx/small_font.grit -------------------------------------------------------------------------------- /gfx/small_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/gfx/small_font.png -------------------------------------------------------------------------------- /icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/icon.bmp -------------------------------------------------------------------------------- /libs/libfat4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/.gitignore -------------------------------------------------------------------------------- /libs/libfat4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/Makefile -------------------------------------------------------------------------------- /libs/libfat4/include/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/include/fat.h -------------------------------------------------------------------------------- /libs/libfat4/nds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/nds/Makefile -------------------------------------------------------------------------------- /libs/libfat4/source/bit_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/bit_ops.h -------------------------------------------------------------------------------- /libs/libfat4/source/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/cache.c -------------------------------------------------------------------------------- /libs/libfat4/source/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/cache.h -------------------------------------------------------------------------------- /libs/libfat4/source/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/common.h -------------------------------------------------------------------------------- /libs/libfat4/source/directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/directory.c -------------------------------------------------------------------------------- /libs/libfat4/source/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/directory.h -------------------------------------------------------------------------------- /libs/libfat4/source/disc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/disc.c -------------------------------------------------------------------------------- /libs/libfat4/source/disc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/disc.h -------------------------------------------------------------------------------- /libs/libfat4/source/fatdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/fatdir.c -------------------------------------------------------------------------------- /libs/libfat4/source/fatdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/fatdir.h -------------------------------------------------------------------------------- /libs/libfat4/source/fatfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/fatfile.c -------------------------------------------------------------------------------- /libs/libfat4/source/fatfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/fatfile.h -------------------------------------------------------------------------------- /libs/libfat4/source/file_allocation_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/file_allocation_table.c -------------------------------------------------------------------------------- /libs/libfat4/source/file_allocation_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/file_allocation_table.h -------------------------------------------------------------------------------- /libs/libfat4/source/filetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/filetime.c -------------------------------------------------------------------------------- /libs/libfat4/source/filetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/filetime.h -------------------------------------------------------------------------------- /libs/libfat4/source/libfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/libfat.c -------------------------------------------------------------------------------- /libs/libfat4/source/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/lock.c -------------------------------------------------------------------------------- /libs/libfat4/source/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/lock.h -------------------------------------------------------------------------------- /libs/libfat4/source/mem_allocate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/mem_allocate.h -------------------------------------------------------------------------------- /libs/libfat4/source/partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/partition.c -------------------------------------------------------------------------------- /libs/libfat4/source/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/libs/libfat4/source/partition.h -------------------------------------------------------------------------------- /make_cia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/make_cia -------------------------------------------------------------------------------- /make_cia.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/make_cia.exe -------------------------------------------------------------------------------- /resources/RVP.ZIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/resources/RVP.ZIP -------------------------------------------------------------------------------- /resources/RocketVideo logo (v2).xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/resources/RocketVideo logo (v2).xcf -------------------------------------------------------------------------------- /resources/RocketVideo logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/resources/RocketVideo logo.xcf -------------------------------------------------------------------------------- /resources/Top screen convert.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/resources/Top screen convert.bat -------------------------------------------------------------------------------- /resources/Top screen.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/resources/Top screen.xcf -------------------------------------------------------------------------------- /resources/dsividplayer.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/resources/dsividplayer.xcf -------------------------------------------------------------------------------- /resources/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/resources/icon.xcf -------------------------------------------------------------------------------- /resources/iconfinder_theaters_326711.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/resources/iconfinder_theaters_326711.png -------------------------------------------------------------------------------- /resources/large_buttons.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/resources/large_buttons.xcf -------------------------------------------------------------------------------- /resources/logo (2019).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/resources/logo (2019).png -------------------------------------------------------------------------------- /resources/logo (2019).xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/resources/logo (2019).xcf -------------------------------------------------------------------------------- /resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/resources/logo.png -------------------------------------------------------------------------------- /resources/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketRobz/RocketVideoPlayer/HEAD/resources/logo.xcf --------------------------------------------------------------------------------