├── .gitignore ├── Gruntfile.js ├── README.md ├── assets ├── blue.png ├── fonts │ ├── gretoonhighlight-webfont.eot │ ├── gretoonhighlight-webfont.svg │ ├── gretoonhighlight-webfont.ttf │ └── gretoonhighlight-webfont.woff ├── highlight.png ├── noise.png ├── red.png ├── replay.jpg ├── start.jpg ├── wallpaper.jpg └── yellow.png ├── game.css ├── index.html ├── lib ├── common.js ├── game │ ├── blob.js │ ├── game_loop.js │ ├── particle.js │ ├── particle_emitter.js │ └── world.js └── math │ ├── rectangle.js │ └── vector_2d.js ├── package.json ├── server.js ├── squirts.js └── test ├── chai.js ├── game └── blob_test.js ├── index.html ├── mocha.css └── mocha.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/README.md -------------------------------------------------------------------------------- /assets/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/assets/blue.png -------------------------------------------------------------------------------- /assets/fonts/gretoonhighlight-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/assets/fonts/gretoonhighlight-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/gretoonhighlight-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/assets/fonts/gretoonhighlight-webfont.svg -------------------------------------------------------------------------------- /assets/fonts/gretoonhighlight-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/assets/fonts/gretoonhighlight-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/gretoonhighlight-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/assets/fonts/gretoonhighlight-webfont.woff -------------------------------------------------------------------------------- /assets/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/assets/highlight.png -------------------------------------------------------------------------------- /assets/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/assets/noise.png -------------------------------------------------------------------------------- /assets/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/assets/red.png -------------------------------------------------------------------------------- /assets/replay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/assets/replay.jpg -------------------------------------------------------------------------------- /assets/start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/assets/start.jpg -------------------------------------------------------------------------------- /assets/wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/assets/wallpaper.jpg -------------------------------------------------------------------------------- /assets/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/assets/yellow.png -------------------------------------------------------------------------------- /game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/game.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/index.html -------------------------------------------------------------------------------- /lib/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/lib/common.js -------------------------------------------------------------------------------- /lib/game/blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/lib/game/blob.js -------------------------------------------------------------------------------- /lib/game/game_loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/lib/game/game_loop.js -------------------------------------------------------------------------------- /lib/game/particle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/lib/game/particle.js -------------------------------------------------------------------------------- /lib/game/particle_emitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/lib/game/particle_emitter.js -------------------------------------------------------------------------------- /lib/game/world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/lib/game/world.js -------------------------------------------------------------------------------- /lib/math/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/lib/math/rectangle.js -------------------------------------------------------------------------------- /lib/math/vector_2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/lib/math/vector_2d.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/server.js -------------------------------------------------------------------------------- /squirts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/squirts.js -------------------------------------------------------------------------------- /test/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/test/chai.js -------------------------------------------------------------------------------- /test/game/blob_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/test/game/blob_test.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/test/index.html -------------------------------------------------------------------------------- /test/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/test/mocha.css -------------------------------------------------------------------------------- /test/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrofDrakula/squirts/HEAD/test/mocha.js --------------------------------------------------------------------------------