├── .gitignore ├── AUTHORS.md ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── SCRIPTS.md ├── externals └── cmake-modules │ ├── FindSDL2.cmake │ └── FindSDL2_mixer.cmake ├── scrdoc.txt └── src ├── 3ds ├── Makefile ├── icon.png ├── main.c ├── main.h └── sound.c ├── assets.c ├── character.c ├── font.c ├── iact.c ├── include ├── assets.h ├── character.h ├── font.h ├── iact.h ├── input.h ├── map.h ├── objectinfo.h ├── palette.h ├── player.h ├── puzzle.h ├── screen.h ├── sound.h ├── tile.h ├── tname.h ├── ui.h ├── useful.h └── world.h ├── input.c ├── map.c ├── palette.c ├── pc ├── main.c ├── main.h └── sound.c ├── player.c ├── puzzle.c ├── render_buffer.c ├── render_gl.c ├── screen.c ├── switch ├── Makefile ├── data │ └── win95-cursor.bin ├── draw.c ├── draw.h ├── main.c ├── main.h └── sound.c ├── ui.c ├── wiiu ├── Makefile ├── draw.c ├── draw.h ├── font.c ├── main.c ├── main.h ├── memory.c ├── memory.h └── sound.c └── world.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/README.md -------------------------------------------------------------------------------- /SCRIPTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/SCRIPTS.md -------------------------------------------------------------------------------- /externals/cmake-modules/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/externals/cmake-modules/FindSDL2.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindSDL2_mixer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/externals/cmake-modules/FindSDL2_mixer.cmake -------------------------------------------------------------------------------- /scrdoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/scrdoc.txt -------------------------------------------------------------------------------- /src/3ds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/3ds/Makefile -------------------------------------------------------------------------------- /src/3ds/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/3ds/icon.png -------------------------------------------------------------------------------- /src/3ds/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/3ds/main.c -------------------------------------------------------------------------------- /src/3ds/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/3ds/main.h -------------------------------------------------------------------------------- /src/3ds/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/3ds/sound.c -------------------------------------------------------------------------------- /src/assets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/assets.c -------------------------------------------------------------------------------- /src/character.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/character.c -------------------------------------------------------------------------------- /src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/font.c -------------------------------------------------------------------------------- /src/iact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/iact.c -------------------------------------------------------------------------------- /src/include/assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/assets.h -------------------------------------------------------------------------------- /src/include/character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/character.h -------------------------------------------------------------------------------- /src/include/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/font.h -------------------------------------------------------------------------------- /src/include/iact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/iact.h -------------------------------------------------------------------------------- /src/include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/input.h -------------------------------------------------------------------------------- /src/include/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/map.h -------------------------------------------------------------------------------- /src/include/objectinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/objectinfo.h -------------------------------------------------------------------------------- /src/include/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/palette.h -------------------------------------------------------------------------------- /src/include/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/player.h -------------------------------------------------------------------------------- /src/include/puzzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/puzzle.h -------------------------------------------------------------------------------- /src/include/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/screen.h -------------------------------------------------------------------------------- /src/include/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/sound.h -------------------------------------------------------------------------------- /src/include/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/tile.h -------------------------------------------------------------------------------- /src/include/tname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/tname.h -------------------------------------------------------------------------------- /src/include/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/ui.h -------------------------------------------------------------------------------- /src/include/useful.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/useful.h -------------------------------------------------------------------------------- /src/include/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/include/world.h -------------------------------------------------------------------------------- /src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/input.c -------------------------------------------------------------------------------- /src/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/map.c -------------------------------------------------------------------------------- /src/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/palette.c -------------------------------------------------------------------------------- /src/pc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/pc/main.c -------------------------------------------------------------------------------- /src/pc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/pc/main.h -------------------------------------------------------------------------------- /src/pc/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/pc/sound.c -------------------------------------------------------------------------------- /src/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/player.c -------------------------------------------------------------------------------- /src/puzzle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/puzzle.c -------------------------------------------------------------------------------- /src/render_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/render_buffer.c -------------------------------------------------------------------------------- /src/render_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/render_gl.c -------------------------------------------------------------------------------- /src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/screen.c -------------------------------------------------------------------------------- /src/switch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/switch/Makefile -------------------------------------------------------------------------------- /src/switch/data/win95-cursor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/switch/data/win95-cursor.bin -------------------------------------------------------------------------------- /src/switch/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/switch/draw.c -------------------------------------------------------------------------------- /src/switch/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/switch/draw.h -------------------------------------------------------------------------------- /src/switch/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/switch/main.c -------------------------------------------------------------------------------- /src/switch/main.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/switch/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/switch/sound.c -------------------------------------------------------------------------------- /src/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/ui.c -------------------------------------------------------------------------------- /src/wiiu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/wiiu/Makefile -------------------------------------------------------------------------------- /src/wiiu/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/wiiu/draw.c -------------------------------------------------------------------------------- /src/wiiu/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/wiiu/draw.h -------------------------------------------------------------------------------- /src/wiiu/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/wiiu/font.c -------------------------------------------------------------------------------- /src/wiiu/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/wiiu/main.c -------------------------------------------------------------------------------- /src/wiiu/main.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/wiiu/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/wiiu/memory.c -------------------------------------------------------------------------------- /src/wiiu/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/wiiu/memory.h -------------------------------------------------------------------------------- /src/wiiu/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/wiiu/sound.c -------------------------------------------------------------------------------- /src/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/DesktopAdventures/HEAD/src/world.c --------------------------------------------------------------------------------