├── LICENSE ├── LICENSE.nim-stb-image ├── Makefile ├── assets ├── font.png ├── font.png.dat ├── map1.json ├── map10.json ├── map11.json ├── map12.json ├── map13.json ├── map14.json ├── map15.json ├── map16.json ├── map17.json ├── map18.json ├── map19.json ├── map2.json ├── map20.json ├── map21.json ├── map22.json ├── map23.json ├── map24.json ├── map25.json ├── map26.json ├── map27.json ├── map28.json ├── map29.json ├── map3.json ├── map30.json ├── map31.json ├── map32.json ├── map4.json ├── map5.json ├── map6.json ├── map7.json ├── map8.json ├── map9.json ├── mockup.png ├── mockup2.png ├── music │ ├── overworld.ogg │ └── underworld.ogg ├── palette.gpl ├── sfx │ ├── smalltrek_0.ogg │ ├── smalltrek_1.ogg │ ├── smalltrek_10.ogg │ ├── smalltrek_11.ogg │ ├── smalltrek_12.ogg │ ├── smalltrek_13.ogg │ ├── smalltrek_2.ogg │ ├── smalltrek_3.ogg │ ├── smalltrek_4.ogg │ ├── smalltrek_5.ogg │ ├── smalltrek_6.ogg │ ├── smalltrek_7.ogg │ ├── smalltrek_8.ogg │ └── smalltrek_9.ogg └── spritesheet.png └── src ├── glitch.nim ├── main.nim ├── pool.nim ├── ringbuffer.nim ├── stb_image.h ├── stb_image.nim ├── stb_image_impl.c ├── stb_image_write.h ├── stb_image_write.nim ├── stb_image_write_impl.c ├── tween.nim └── util.nim /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.nim-stb-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/LICENSE.nim-stb-image -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/Makefile -------------------------------------------------------------------------------- /assets/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/font.png -------------------------------------------------------------------------------- /assets/font.png.dat: -------------------------------------------------------------------------------- 1 | !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{}~ -------------------------------------------------------------------------------- /assets/map1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map1.json -------------------------------------------------------------------------------- /assets/map10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map10.json -------------------------------------------------------------------------------- /assets/map11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map11.json -------------------------------------------------------------------------------- /assets/map12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map12.json -------------------------------------------------------------------------------- /assets/map13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map13.json -------------------------------------------------------------------------------- /assets/map14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map14.json -------------------------------------------------------------------------------- /assets/map15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map15.json -------------------------------------------------------------------------------- /assets/map16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map16.json -------------------------------------------------------------------------------- /assets/map17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map17.json -------------------------------------------------------------------------------- /assets/map18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map18.json -------------------------------------------------------------------------------- /assets/map19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map19.json -------------------------------------------------------------------------------- /assets/map2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map2.json -------------------------------------------------------------------------------- /assets/map20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map20.json -------------------------------------------------------------------------------- /assets/map21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map21.json -------------------------------------------------------------------------------- /assets/map22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map22.json -------------------------------------------------------------------------------- /assets/map23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map23.json -------------------------------------------------------------------------------- /assets/map24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map24.json -------------------------------------------------------------------------------- /assets/map25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map25.json -------------------------------------------------------------------------------- /assets/map26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map26.json -------------------------------------------------------------------------------- /assets/map27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map27.json -------------------------------------------------------------------------------- /assets/map28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map28.json -------------------------------------------------------------------------------- /assets/map29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map29.json -------------------------------------------------------------------------------- /assets/map3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map3.json -------------------------------------------------------------------------------- /assets/map30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map30.json -------------------------------------------------------------------------------- /assets/map31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map31.json -------------------------------------------------------------------------------- /assets/map32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map32.json -------------------------------------------------------------------------------- /assets/map4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map4.json -------------------------------------------------------------------------------- /assets/map5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map5.json -------------------------------------------------------------------------------- /assets/map6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map6.json -------------------------------------------------------------------------------- /assets/map7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map7.json -------------------------------------------------------------------------------- /assets/map8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map8.json -------------------------------------------------------------------------------- /assets/map9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/map9.json -------------------------------------------------------------------------------- /assets/mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/mockup.png -------------------------------------------------------------------------------- /assets/mockup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/mockup2.png -------------------------------------------------------------------------------- /assets/music/overworld.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/music/overworld.ogg -------------------------------------------------------------------------------- /assets/music/underworld.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/music/underworld.ogg -------------------------------------------------------------------------------- /assets/palette.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/palette.gpl -------------------------------------------------------------------------------- /assets/sfx/smalltrek_0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/sfx/smalltrek_0.ogg -------------------------------------------------------------------------------- /assets/sfx/smalltrek_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/sfx/smalltrek_1.ogg -------------------------------------------------------------------------------- /assets/sfx/smalltrek_10.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/sfx/smalltrek_10.ogg -------------------------------------------------------------------------------- /assets/sfx/smalltrek_11.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/sfx/smalltrek_11.ogg -------------------------------------------------------------------------------- /assets/sfx/smalltrek_12.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/sfx/smalltrek_12.ogg -------------------------------------------------------------------------------- /assets/sfx/smalltrek_13.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/sfx/smalltrek_13.ogg -------------------------------------------------------------------------------- /assets/sfx/smalltrek_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/sfx/smalltrek_2.ogg -------------------------------------------------------------------------------- /assets/sfx/smalltrek_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/sfx/smalltrek_3.ogg -------------------------------------------------------------------------------- /assets/sfx/smalltrek_4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/sfx/smalltrek_4.ogg -------------------------------------------------------------------------------- /assets/sfx/smalltrek_5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/sfx/smalltrek_5.ogg -------------------------------------------------------------------------------- /assets/sfx/smalltrek_6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/sfx/smalltrek_6.ogg -------------------------------------------------------------------------------- /assets/sfx/smalltrek_7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/sfx/smalltrek_7.ogg -------------------------------------------------------------------------------- /assets/sfx/smalltrek_8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/sfx/smalltrek_8.ogg -------------------------------------------------------------------------------- /assets/sfx/smalltrek_9.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/sfx/smalltrek_9.ogg -------------------------------------------------------------------------------- /assets/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/assets/spritesheet.png -------------------------------------------------------------------------------- /src/glitch.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/src/glitch.nim -------------------------------------------------------------------------------- /src/main.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/src/main.nim -------------------------------------------------------------------------------- /src/pool.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/src/pool.nim -------------------------------------------------------------------------------- /src/ringbuffer.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/src/ringbuffer.nim -------------------------------------------------------------------------------- /src/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/src/stb_image.h -------------------------------------------------------------------------------- /src/stb_image.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/src/stb_image.nim -------------------------------------------------------------------------------- /src/stb_image_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/src/stb_image_impl.c -------------------------------------------------------------------------------- /src/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/src/stb_image_write.h -------------------------------------------------------------------------------- /src/stb_image_write.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/src/stb_image_write.nim -------------------------------------------------------------------------------- /src/stb_image_write_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/src/stb_image_write_impl.c -------------------------------------------------------------------------------- /src/tween.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/src/tween.nim -------------------------------------------------------------------------------- /src/util.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsf/ld38-smalltrek/HEAD/src/util.nim --------------------------------------------------------------------------------