├── LICENSE ├── Makefile ├── README.md ├── compile.sh ├── compilelinux.sh ├── data ├── polymath_logo.bin ├── rules.bin ├── tigermoth.bin └── tilefaces.bin ├── music ├── tigermoth_ingame.mod └── tigermoth_title.mod └── source ├── bullets.c ├── bullets.h ├── drawing.c ├── drawing.h ├── drawing_2bpp.c ├── drawing_4bpp.c ├── drawing_fullscreen.c ├── explosions.c ├── explosions.h ├── gba.h ├── main.c ├── maths.c ├── maths.h ├── stage_gameover.c ├── stage_menu.c ├── stage_menu2.c ├── stage_play.c ├── stage_play.h ├── stage_play_leveldata.c ├── stage_play_patterns.c ├── stage_pmprog.c ├── stage_setuparena.c ├── stages.h ├── vars.c └── vars.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/README.md -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/compile.sh -------------------------------------------------------------------------------- /compilelinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/compilelinux.sh -------------------------------------------------------------------------------- /data/polymath_logo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/data/polymath_logo.bin -------------------------------------------------------------------------------- /data/rules.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/data/rules.bin -------------------------------------------------------------------------------- /data/tigermoth.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/data/tigermoth.bin -------------------------------------------------------------------------------- /data/tilefaces.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/data/tilefaces.bin -------------------------------------------------------------------------------- /music/tigermoth_ingame.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/music/tigermoth_ingame.mod -------------------------------------------------------------------------------- /music/tigermoth_title.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/music/tigermoth_title.mod -------------------------------------------------------------------------------- /source/bullets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/bullets.c -------------------------------------------------------------------------------- /source/bullets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/bullets.h -------------------------------------------------------------------------------- /source/drawing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/drawing.c -------------------------------------------------------------------------------- /source/drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/drawing.h -------------------------------------------------------------------------------- /source/drawing_2bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/drawing_2bpp.c -------------------------------------------------------------------------------- /source/drawing_4bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/drawing_4bpp.c -------------------------------------------------------------------------------- /source/drawing_fullscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/drawing_fullscreen.c -------------------------------------------------------------------------------- /source/explosions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/explosions.c -------------------------------------------------------------------------------- /source/explosions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/explosions.h -------------------------------------------------------------------------------- /source/gba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/gba.h -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/main.c -------------------------------------------------------------------------------- /source/maths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/maths.c -------------------------------------------------------------------------------- /source/maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/maths.h -------------------------------------------------------------------------------- /source/stage_gameover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/stage_gameover.c -------------------------------------------------------------------------------- /source/stage_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/stage_menu.c -------------------------------------------------------------------------------- /source/stage_menu2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/stage_menu2.c -------------------------------------------------------------------------------- /source/stage_play.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/stage_play.c -------------------------------------------------------------------------------- /source/stage_play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/stage_play.h -------------------------------------------------------------------------------- /source/stage_play_leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/stage_play_leveldata.c -------------------------------------------------------------------------------- /source/stage_play_patterns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/stage_play_patterns.c -------------------------------------------------------------------------------- /source/stage_pmprog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/stage_pmprog.c -------------------------------------------------------------------------------- /source/stage_setuparena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/stage_setuparena.c -------------------------------------------------------------------------------- /source/stages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/stages.h -------------------------------------------------------------------------------- /source/vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/vars.c -------------------------------------------------------------------------------- /source/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmprog/TigermothGBA/HEAD/source/vars.h --------------------------------------------------------------------------------