Page 1 of 1
13kb HTML5/JS Game Competition
Posted: Thu Aug 14, 2014 9:33 am
by Verahta
http://js13kgames.com
Js13kGames is a JavaScript coding competition for HTML5 game developers. The fun part of the compo is the file size limit set to 13 kilobytes. Theme for 2014 is The Elements: Earth, Water, Air and Fire. The competition started at 13:00 CEST, 13th August 2014 and will end at 13:00 CEST, 13th September 2014. See the Rules for details, good luck and have fun!
Re: 13kb HTML5/JS Game Competition
Posted: Thu Aug 14, 2014 4:45 pm
by Jackolantern
An ASCII-based Roguelike could work really well for this.
Kiwi.JS has a started package (a "Blueprint") for one
here.
Re: 13kb HTML5/JS Game Competition
Posted: Thu Aug 14, 2014 7:11 pm
by Verahta
I don't understand how last years winners got these games to fit in a minimized and zipped package at just 13kb:
http://2013.js13kgames.com/#winners
Wow, this is fun and impressive for 13kb (2013 winner):
http://2013.js13kgames.com/games/radius-raid/index.html
2012 winner:
http://2012.js13kgames.com/games/spacepi/index.html
Looks like Jack Rugile is the guy to beat, he won first place prize each year. I just realized there is a first place winner in three categories: Desktop, Mobile, and Server (node.js).
Re: 13kb HTML5/JS Game Competition
Posted: Thu Aug 14, 2014 7:41 pm
by Verahta
How to Minify Your HTML5 Game for the Js13kGames Competition
http://gamedevelopment.tutsplus.com/art ... -cms-21883
Re: 13kb HTML5/JS Game Competition
Posted: Thu Aug 14, 2014 7:43 pm
by Jackolantern
They are probably procedurally drawing most the graphics, which would explain why they are more colored shapes than images. Images and sounds will bloat the file size more than anything else, so they have to be avoided as much as possible. You could get a lot more out of each sound with the Web Audio API, and draw a lot of your graphics.
Re: 13kb HTML5/JS Game Competition
Posted: Fri Aug 15, 2014 4:09 am
by a_bertrand
code wise 13K is not small... but for the remaining content indeed it can be really a limitation. I would participate, however I simply doubt I have the time for it.
Re: 13kb HTML5/JS Game Competition
Posted: Fri Aug 15, 2014 1:07 pm
by Jackolantern
Yeah, once you add in minification and gzipping, 13kb can be a ton of code. More than enough to do a lot of drawing and use Web Audio API.