├── .gitignore ├── .gitlab-ci.yml ├── .jscsrc ├── .travis.yml ├── Gruntfile.js ├── doc ├── generate-statistics.sh ├── statistics.csv └── todo.md ├── grunt ├── img ├── bullet.ase ├── bullet.png ├── charset.ase ├── charset.png ├── cursor.ase ├── cursor.png ├── explosion.ase ├── explosion.png ├── glitch.ase ├── glitch.png ├── mock.ase ├── pickup-2.ase ├── pickup-2.png ├── pickup.ase ├── pickup.png ├── player.ase ├── player.png ├── rifle.png ├── tileset.ase ├── tileset.png ├── title-2.ase ├── title-dude.png ├── title-glitch.png └── title-text.png ├── package.json ├── readme.md ├── screenshots ├── 160x160.png └── 400x250.png ├── server.js ├── src ├── a-star.js ├── debug.js ├── img.js ├── index.html ├── jsfxr.js ├── main.css ├── main.js └── vec.js └── test ├── a-star.spec.js ├── karma.conf.js ├── main.spec.js └── vec.spec.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | build/* 3 | node_modules 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/.jscsrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /doc/generate-statistics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/doc/generate-statistics.sh -------------------------------------------------------------------------------- /doc/statistics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/doc/statistics.csv -------------------------------------------------------------------------------- /doc/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/doc/todo.md -------------------------------------------------------------------------------- /grunt: -------------------------------------------------------------------------------- 1 | node_modules/.bin/grunt -------------------------------------------------------------------------------- /img/bullet.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/bullet.ase -------------------------------------------------------------------------------- /img/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/bullet.png -------------------------------------------------------------------------------- /img/charset.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/charset.ase -------------------------------------------------------------------------------- /img/charset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/charset.png -------------------------------------------------------------------------------- /img/cursor.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/cursor.ase -------------------------------------------------------------------------------- /img/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/cursor.png -------------------------------------------------------------------------------- /img/explosion.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/explosion.ase -------------------------------------------------------------------------------- /img/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/explosion.png -------------------------------------------------------------------------------- /img/glitch.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/glitch.ase -------------------------------------------------------------------------------- /img/glitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/glitch.png -------------------------------------------------------------------------------- /img/mock.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/mock.ase -------------------------------------------------------------------------------- /img/pickup-2.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/pickup-2.ase -------------------------------------------------------------------------------- /img/pickup-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/pickup-2.png -------------------------------------------------------------------------------- /img/pickup.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/pickup.ase -------------------------------------------------------------------------------- /img/pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/pickup.png -------------------------------------------------------------------------------- /img/player.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/player.ase -------------------------------------------------------------------------------- /img/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/player.png -------------------------------------------------------------------------------- /img/rifle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/rifle.png -------------------------------------------------------------------------------- /img/tileset.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/tileset.ase -------------------------------------------------------------------------------- /img/tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/tileset.png -------------------------------------------------------------------------------- /img/title-2.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/title-2.ase -------------------------------------------------------------------------------- /img/title-dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/title-dude.png -------------------------------------------------------------------------------- /img/title-glitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/title-glitch.png -------------------------------------------------------------------------------- /img/title-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/img/title-text.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/readme.md -------------------------------------------------------------------------------- /screenshots/160x160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/screenshots/160x160.png -------------------------------------------------------------------------------- /screenshots/400x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/screenshots/400x250.png -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/server.js -------------------------------------------------------------------------------- /src/a-star.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/src/a-star.js -------------------------------------------------------------------------------- /src/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/src/debug.js -------------------------------------------------------------------------------- /src/img.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/src/img.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/src/index.html -------------------------------------------------------------------------------- /src/jsfxr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/src/jsfxr.js -------------------------------------------------------------------------------- /src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/src/main.css -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/src/main.js -------------------------------------------------------------------------------- /src/vec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/src/vec.js -------------------------------------------------------------------------------- /test/a-star.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/test/a-star.spec.js -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/test/karma.conf.js -------------------------------------------------------------------------------- /test/main.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/test/main.spec.js -------------------------------------------------------------------------------- /test/vec.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-monkey-business/glitch-hunters/HEAD/test/vec.spec.js --------------------------------------------------------------------------------