├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── assets ├── background.png ├── bullet.png ├── bullet.wav ├── font.ttf ├── hud.png ├── janet.png ├── letter-explosion.png ├── letter-explosion.wav ├── music.ogg ├── repository ├── screenshot-1.png ├── screenshot-2.png ├── word-explosion.png ├── word-explosion.wav └── wrong-letter.wav ├── boot.janet ├── game.make ├── premake5.lua ├── script ├── background.janet ├── colors.janet ├── config.janet ├── engine.janet ├── entities │ ├── base.janet │ ├── bullet.janet │ ├── letter-explosion.janet │ ├── letter.janet │ ├── player.janet │ ├── word-explosion.janet │ └── word.janet ├── game.janet ├── globals.janet ├── hud.janet ├── keys.janet ├── menu.janet ├── profile.janet └── utils.janet └── src ├── cfuncs.h ├── janet.c ├── janet.h ├── janetconf.h └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/README.md -------------------------------------------------------------------------------- /assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/background.png -------------------------------------------------------------------------------- /assets/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/bullet.png -------------------------------------------------------------------------------- /assets/bullet.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/bullet.wav -------------------------------------------------------------------------------- /assets/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/font.ttf -------------------------------------------------------------------------------- /assets/hud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/hud.png -------------------------------------------------------------------------------- /assets/janet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/janet.png -------------------------------------------------------------------------------- /assets/letter-explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/letter-explosion.png -------------------------------------------------------------------------------- /assets/letter-explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/letter-explosion.wav -------------------------------------------------------------------------------- /assets/music.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/music.ogg -------------------------------------------------------------------------------- /assets/repository: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/repository -------------------------------------------------------------------------------- /assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/screenshot-1.png -------------------------------------------------------------------------------- /assets/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/screenshot-2.png -------------------------------------------------------------------------------- /assets/word-explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/word-explosion.png -------------------------------------------------------------------------------- /assets/word-explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/word-explosion.wav -------------------------------------------------------------------------------- /assets/wrong-letter.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/assets/wrong-letter.wav -------------------------------------------------------------------------------- /boot.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/boot.janet -------------------------------------------------------------------------------- /game.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/game.make -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/premake5.lua -------------------------------------------------------------------------------- /script/background.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/background.janet -------------------------------------------------------------------------------- /script/colors.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/colors.janet -------------------------------------------------------------------------------- /script/config.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/config.janet -------------------------------------------------------------------------------- /script/engine.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/engine.janet -------------------------------------------------------------------------------- /script/entities/base.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/entities/base.janet -------------------------------------------------------------------------------- /script/entities/bullet.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/entities/bullet.janet -------------------------------------------------------------------------------- /script/entities/letter-explosion.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/entities/letter-explosion.janet -------------------------------------------------------------------------------- /script/entities/letter.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/entities/letter.janet -------------------------------------------------------------------------------- /script/entities/player.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/entities/player.janet -------------------------------------------------------------------------------- /script/entities/word-explosion.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/entities/word-explosion.janet -------------------------------------------------------------------------------- /script/entities/word.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/entities/word.janet -------------------------------------------------------------------------------- /script/game.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/game.janet -------------------------------------------------------------------------------- /script/globals.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/globals.janet -------------------------------------------------------------------------------- /script/hud.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/hud.janet -------------------------------------------------------------------------------- /script/keys.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/keys.janet -------------------------------------------------------------------------------- /script/menu.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/menu.janet -------------------------------------------------------------------------------- /script/profile.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/profile.janet -------------------------------------------------------------------------------- /script/utils.janet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/script/utils.janet -------------------------------------------------------------------------------- /src/cfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/src/cfuncs.h -------------------------------------------------------------------------------- /src/janet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/src/janet.c -------------------------------------------------------------------------------- /src/janet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/src/janet.h -------------------------------------------------------------------------------- /src/janetconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/src/janetconf.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepisoad/super-janet-typist/HEAD/src/main.c --------------------------------------------------------------------------------