-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.min.js
603 lines (556 loc) · 95.1 KB
/
game.min.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
/*! Built with IMPACT - impactjs.com */
(function(window){"use strict";Number.prototype.map=function(istart,istop,ostart,ostop){return ostart+(ostop-ostart)*((this-istart)/(istop-istart));};Number.prototype.limit=function(min,max){return Math.min(max,Math.max(min,this));};Number.prototype.round=function(precision){precision=Math.pow(10,precision||0);return Math.round(this*precision)/precision;};Number.prototype.floor=function(){return Math.floor(this);};Number.prototype.ceil=function(){return Math.ceil(this);};Number.prototype.toInt=function(){return(this|0);};Number.prototype.toRad=function(){return(this/180)*Math.PI;};Number.prototype.toDeg=function(){return(this*180)/Math.PI;};Object.defineProperty(Array.prototype,'erase',{value:function(item){for(var i=this.length;i--;){if(this[i]===item){this.splice(i,1);}}
return this;}});Object.defineProperty(Array.prototype,'random',{value:function(item){return this[Math.floor(Math.random()*this.length)];}});Function.prototype.bind=Function.prototype.bind||function(oThis){if(typeof this!=="function"){throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");}
var aArgs=Array.prototype.slice.call(arguments,1),fToBind=this,fNOP=function(){},fBound=function(){return fToBind.apply((this instanceof fNOP&&oThis?this:oThis),aArgs.concat(Array.prototype.slice.call(arguments)));};fNOP.prototype=this.prototype;fBound.prototype=new fNOP();return fBound;};window.ig={game:null,debug:null,version:'1.24',global:window,modules:{},resources:[],ready:false,baked:false,nocache:'',ua:{},prefix:(window.ImpactPrefix||''),lib:'lib/',_current:null,_loadQueue:[],_waitForOnload:0,$:function(selector){return selector.charAt(0)=='#'?document.getElementById(selector.substr(1)):document.getElementsByTagName(selector);},$new:function(name){return document.createElement(name);},copy:function(object){if(!object||typeof(object)!='object'||object instanceof HTMLElement||object instanceof ig.Class){return object;}
else if(object instanceof Array){var c=[];for(var i=0,l=object.length;i<l;i++){c[i]=ig.copy(object[i]);}
return c;}
else{var c={};for(var i in object){c[i]=ig.copy(object[i]);}
return c;}},merge:function(original,extended){for(var key in extended){var ext=extended[key];if(typeof(ext)!='object'||ext instanceof HTMLElement||ext instanceof ig.Class||ext===null){original[key]=ext;}
else{if(!original[key]||typeof(original[key])!='object'){original[key]=(ext instanceof Array)?[]:{};}
ig.merge(original[key],ext);}}
return original;},ksort:function(obj){if(!obj||typeof(obj)!='object'){return[];}
var keys=[],values=[];for(var i in obj){keys.push(i);}
keys.sort();for(var i=0;i<keys.length;i++){values.push(obj[keys[i]]);}
return values;},setVendorAttribute:function(el,attr,val){var uc=attr.charAt(0).toUpperCase()+attr.substr(1);el[attr]=el['ms'+uc]=el['moz'+uc]=el['webkit'+uc]=el['o'+uc]=val;},getVendorAttribute:function(el,attr){var uc=attr.charAt(0).toUpperCase()+attr.substr(1);return el[attr]||el['ms'+uc]||el['moz'+uc]||el['webkit'+uc]||el['o'+uc];},normalizeVendorAttribute:function(el,attr){var prefixedVal=ig.getVendorAttribute(el,attr);if(!el[attr]&&prefixedVal){el[attr]=prefixedVal;}},getImagePixels:function(image,x,y,width,height){var canvas=ig.$new('canvas');canvas.width=image.width;canvas.height=image.height;var ctx=canvas.getContext('2d');ig.System.SCALE.CRISP(canvas,ctx);var ratio=ig.getVendorAttribute(ctx,'backingStorePixelRatio')||1;ig.normalizeVendorAttribute(ctx,'getImageDataHD');var realWidth=image.width/ratio,realHeight=image.height/ratio;canvas.width=Math.ceil(realWidth);canvas.height=Math.ceil(realHeight);ctx.drawImage(image,0,0,realWidth,realHeight);return(ratio===1)?ctx.getImageData(x,y,width,height):ctx.getImageDataHD(x,y,width,height);},module:function(name){if(ig._current){throw("Module '"+ig._current.name+"' defines nothing");}
if(ig.modules[name]&&ig.modules[name].body){throw("Module '"+name+"' is already defined");}
ig._current={name:name,requires:[],loaded:false,body:null};ig.modules[name]=ig._current;ig._loadQueue.push(ig._current);return ig;},requires:function(){ig._current.requires=Array.prototype.slice.call(arguments);return ig;},defines:function(body){ig._current.body=body;ig._current=null;ig._initDOMReady();},addResource:function(resource){ig.resources.push(resource);},setNocache:function(set){ig.nocache=set?'?'+Date.now():'';},log:function(){},assert:function(condition,msg){},show:function(name,number){},mark:function(msg,color){},_loadScript:function(name,requiredFrom){ig.modules[name]={name:name,requires:[],loaded:false,body:null};ig._waitForOnload++;var path=ig.prefix+ig.lib+name.replace(/\./g,'/')+'.js'+ig.nocache;var script=ig.$new('script');script.type='text/javascript';script.src=path;script.onload=function(){ig._waitForOnload--;ig._execModules();};script.onerror=function(){throw('Failed to load module '+name+' at '+path+' '+'required from '+requiredFrom);};ig.$('head')[0].appendChild(script);},_execModules:function(){var modulesLoaded=false;for(var i=0;i<ig._loadQueue.length;i++){var m=ig._loadQueue[i];var dependenciesLoaded=true;for(var j=0;j<m.requires.length;j++){var name=m.requires[j];if(!ig.modules[name]){dependenciesLoaded=false;ig._loadScript(name,m.name);}
else if(!ig.modules[name].loaded){dependenciesLoaded=false;}}
if(dependenciesLoaded&&m.body){ig._loadQueue.splice(i,1);m.loaded=true;m.body();modulesLoaded=true;i--;}}
if(modulesLoaded){ig._execModules();}
else if(!ig.baked&&ig._waitForOnload==0&&ig._loadQueue.length!=0){var unresolved=[];for(var i=0;i<ig._loadQueue.length;i++){var unloaded=[];var requires=ig._loadQueue[i].requires;for(var j=0;j<requires.length;j++){var m=ig.modules[requires[j]];if(!m||!m.loaded){unloaded.push(requires[j]);}}
unresolved.push(ig._loadQueue[i].name+' (requires: '+unloaded.join(', ')+')');}
throw("Unresolved (or circular?) dependencies. "+"Most likely there's a name/path mismatch for one of the listed modules "+"or a previous syntax error prevents a module from loading:\n"+
unresolved.join('\n'));}},_DOMReady:function(){if(!ig.modules['dom.ready'].loaded){if(!document.body){return setTimeout(ig._DOMReady,13);}
ig.modules['dom.ready'].loaded=true;ig._waitForOnload--;ig._execModules();}
return 0;},_boot:function(){if(document.location.href.match(/\?nocache/)){ig.setNocache(true);}
ig.ua.pixelRatio=window.devicePixelRatio||1;ig.ua.viewport={width:window.innerWidth,height:window.innerHeight};ig.ua.screen={width:window.screen.availWidth*ig.ua.pixelRatio,height:window.screen.availHeight*ig.ua.pixelRatio};ig.ua.iPhone=/iPhone/i.test(navigator.userAgent);ig.ua.iPhone4=(ig.ua.iPhone&&ig.ua.pixelRatio==2);ig.ua.iPad=/iPad/i.test(navigator.userAgent);ig.ua.android=/android/i.test(navigator.userAgent);ig.ua.winPhone=/Windows Phone/i.test(navigator.userAgent);ig.ua.iOS=ig.ua.iPhone||ig.ua.iPad;ig.ua.mobile=ig.ua.iOS||ig.ua.android||ig.ua.winPhone||/mobile/i.test(navigator.userAgent);ig.ua.touchDevice=(('ontouchstart'in window)||(window.navigator.msMaxTouchPoints));},_initDOMReady:function(){if(ig.modules['dom.ready']){ig._execModules();return;}
ig._boot();ig.modules['dom.ready']={requires:[],loaded:false,body:null};ig._waitForOnload++;if(document.readyState==='complete'){ig._DOMReady();}
else{document.addEventListener('DOMContentLoaded',ig._DOMReady,false);window.addEventListener('load',ig._DOMReady,false);}}};ig.normalizeVendorAttribute(window,'requestAnimationFrame');if(window.requestAnimationFrame){var next=1,anims={};window.ig.setAnimation=function(callback,element){var current=next++;anims[current]=true;var animate=function(){if(!anims[current]){return;}
window.requestAnimationFrame(animate,element);callback();};window.requestAnimationFrame(animate,element);return current;};window.ig.clearAnimation=function(id){delete anims[id];};}
else{window.ig.setAnimation=function(callback,element){return window.setInterval(callback,1000/60);};window.ig.clearAnimation=function(id){window.clearInterval(id);};}
var initializing=false,fnTest=/xyz/.test(function(){xyz;})?/\bparent\b/:/.*/;var lastClassId=0;window.ig.Class=function(){};var inject=function(prop){var proto=this.prototype;var parent={};for(var name in prop){if(typeof(prop[name])=="function"&&typeof(proto[name])=="function"&&fnTest.test(prop[name])){parent[name]=proto[name];proto[name]=(function(name,fn){return function(){var tmp=this.parent;this.parent=parent[name];var ret=fn.apply(this,arguments);this.parent=tmp;return ret;};})(name,prop[name]);}
else{proto[name]=prop[name];}}};window.ig.Class.extend=function(prop){var parent=this.prototype;initializing=true;var prototype=new this();initializing=false;for(var name in prop){if(typeof(prop[name])=="function"&&typeof(parent[name])=="function"&&fnTest.test(prop[name])){prototype[name]=(function(name,fn){return function(){var tmp=this.parent;this.parent=parent[name];var ret=fn.apply(this,arguments);this.parent=tmp;return ret;};})(name,prop[name]);}
else{prototype[name]=prop[name];}}
function Class(){if(!initializing){if(this.staticInstantiate){var obj=this.staticInstantiate.apply(this,arguments);if(obj){return obj;}}
for(var p in this){if(typeof(this[p])=='object'){this[p]=ig.copy(this[p]);}}
if(this.init){this.init.apply(this,arguments);}}
return this;}
Class.prototype=prototype;Class.prototype.constructor=Class;Class.extend=window.ig.Class.extend;Class.inject=inject;Class.classId=prototype.classId=++lastClassId;return Class;};if(window.ImpactMixin){ig.merge(ig,window.ImpactMixin);}})(window);
// lib/impact/image.js
ig.baked=true;ig.module('impact.image').defines(function(){"use strict";ig.Image=ig.Class.extend({data:null,width:0,height:0,loaded:false,failed:false,loadCallback:null,path:'',staticInstantiate:function(path){return ig.Image.cache[path]||null;},init:function(path){this.path=path;this.load();},load:function(loadCallback){if(this.loaded){if(loadCallback){loadCallback(this.path,true);}
return;}
else if(!this.loaded&&ig.ready){this.loadCallback=loadCallback||null;this.data=new Image();this.data.onload=this.onload.bind(this);this.data.onerror=this.onerror.bind(this);this.data.src=ig.prefix+this.path+ig.nocache;}
else{ig.addResource(this);}
ig.Image.cache[this.path]=this;},reload:function(){this.loaded=false;this.data=new Image();this.data.onload=this.onload.bind(this);this.data.src=this.path+'?'+Date.now();},onload:function(event){this.width=this.data.width;this.height=this.data.height;this.loaded=true;if(ig.system.scale!=1){this.resize(ig.system.scale);}
if(this.loadCallback){this.loadCallback(this.path,true);}},onerror:function(event){this.failed=true;if(this.loadCallback){this.loadCallback(this.path,false);}},resize:function(scale){var origPixels=ig.getImagePixels(this.data,0,0,this.width,this.height);var widthScaled=this.width*scale;var heightScaled=this.height*scale;var scaled=ig.$new('canvas');scaled.width=widthScaled;scaled.height=heightScaled;var scaledCtx=scaled.getContext('2d');var scaledPixels=scaledCtx.getImageData(0,0,widthScaled,heightScaled);for(var y=0;y<heightScaled;y++){for(var x=0;x<widthScaled;x++){var index=(Math.floor(y/scale)*this.width+Math.floor(x/scale))*4;var indexScaled=(y*widthScaled+x)*4;scaledPixels.data[indexScaled]=origPixels.data[index];scaledPixels.data[indexScaled+1]=origPixels.data[index+1];scaledPixels.data[indexScaled+2]=origPixels.data[index+2];scaledPixels.data[indexScaled+3]=origPixels.data[index+3];}}
scaledCtx.putImageData(scaledPixels,0,0);this.data=scaled;},draw:function(targetX,targetY,sourceX,sourceY,width,height){if(!this.loaded){return;}
var scale=ig.system.scale;sourceX=sourceX?sourceX*scale:0;sourceY=sourceY?sourceY*scale:0;width=(width?width:this.width)*scale;height=(height?height:this.height)*scale;ig.system.context.drawImage(this.data,sourceX,sourceY,width,height,ig.system.getDrawPos(targetX),ig.system.getDrawPos(targetY),width,height);ig.Image.drawCount++;},drawTile:function(targetX,targetY,tile,tileWidth,tileHeight,flipX,flipY){tileHeight=tileHeight?tileHeight:tileWidth;if(!this.loaded||tileWidth>this.width||tileHeight>this.height){return;}
var scale=ig.system.scale;var tileWidthScaled=Math.floor(tileWidth*scale);var tileHeightScaled=Math.floor(tileHeight*scale);var scaleX=flipX?-1:1;var scaleY=flipY?-1:1;if(flipX||flipY){ig.system.context.save();ig.system.context.scale(scaleX,scaleY);}
ig.system.context.drawImage(this.data,(Math.floor(tile*tileWidth)%this.width)*scale,(Math.floor(tile*tileWidth/this.width)*tileHeight)*scale,tileWidthScaled,tileHeightScaled,ig.system.getDrawPos(targetX)*scaleX-(flipX?tileWidthScaled:0),ig.system.getDrawPos(targetY)*scaleY-(flipY?tileHeightScaled:0),tileWidthScaled,tileHeightScaled);if(flipX||flipY){ig.system.context.restore();}
ig.Image.drawCount++;}});ig.Image.drawCount=0;ig.Image.cache={};ig.Image.reloadCache=function(){for(var path in ig.Image.cache){ig.Image.cache[path].reload();}};});
// lib/impact/font.js
ig.baked=true;ig.module('impact.font').requires('impact.image').defines(function(){"use strict";ig.Font=ig.Image.extend({widthMap:[],indices:[],firstChar:32,alpha:1,letterSpacing:1,lineSpacing:0,onload:function(ev){this._loadMetrics(this.data);this.parent(ev);},widthForString:function(text){if(text.indexOf('\n')!==-1){var lines=text.split('\n');var width=0;for(var i=0;i<lines.length;i++){width=Math.max(width,this._widthForLine(lines[i]));}
return width;}
else{return this._widthForLine(text);}},_widthForLine:function(text){var width=0;for(var i=0;i<text.length;i++){width+=this.widthMap[text.charCodeAt(i)-this.firstChar]+this.letterSpacing;}
return width;},heightForString:function(text){return text.split('\n').length*(this.height+this.lineSpacing);},draw:function(text,x,y,align){if(typeof(text)!='string'){text=text.toString();}
if(text.indexOf('\n')!==-1){var lines=text.split('\n');var lineHeight=this.height+this.lineSpacing;for(var i=0;i<lines.length;i++){this.draw(lines[i],x,y+i*lineHeight,align);}
return;}
if(align==ig.Font.ALIGN.RIGHT||align==ig.Font.ALIGN.CENTER){var width=this._widthForLine(text);x-=align==ig.Font.ALIGN.CENTER?width/2:width;}
if(this.alpha!==1){ig.system.context.globalAlpha=this.alpha;}
for(var i=0;i<text.length;i++){var c=text.charCodeAt(i);x+=this._drawChar(c-this.firstChar,x,y);}
if(this.alpha!==1){ig.system.context.globalAlpha=1;}
ig.Image.drawCount+=text.length;},_drawChar:function(c,targetX,targetY){if(!this.loaded||c<0||c>=this.indices.length){return 0;}
var scale=ig.system.scale;var charX=this.indices[c]*scale;var charY=0;var charWidth=this.widthMap[c]*scale;var charHeight=(this.height-2)*scale;ig.system.context.drawImage(this.data,charX,charY,charWidth,charHeight,ig.system.getDrawPos(targetX),ig.system.getDrawPos(targetY),charWidth,charHeight);return this.widthMap[c]+this.letterSpacing;},_loadMetrics:function(image){this.height=image.height-1;this.widthMap=[];this.indices=[];var px=ig.getImagePixels(image,0,image.height-1,image.width,1);var currentChar=0;var currentWidth=0;for(var x=0;x<image.width;x++){var index=x*4+3;if(px.data[index]>127){currentWidth++;}
else if(px.data[index]<128&¤tWidth){this.widthMap.push(currentWidth);this.indices.push(x-currentWidth);currentChar++;currentWidth=0;}}
this.widthMap.push(currentWidth);this.indices.push(x-currentWidth);}});ig.Font.ALIGN={LEFT:0,RIGHT:1,CENTER:2};});
// lib/impact/sound.js
ig.baked=true;ig.module('impact.sound').defines(function(){"use strict";ig.SoundManager=ig.Class.extend({clips:{},volume:1,format:null,init:function(){if(!ig.Sound.enabled||!window.Audio){ig.Sound.enabled=false;return;}
var probe=new Audio();for(var i=0;i<ig.Sound.use.length;i++){var format=ig.Sound.use[i];if(probe.canPlayType(format.mime)){this.format=format;break;}}
if(!this.format){ig.Sound.enabled=false;}
if(ig.Sound.enabled&&ig.Sound.useWebAudio){this.audioContext=new AudioContext();this.boundWebAudioUnlock=this.unlockWebAudio.bind(this);document.addEventListener('touchstart',this.boundWebAudioUnlock,false);}},unlockWebAudio:function(){document.removeEventListener('touchstart',this.boundWebAudioUnlock,false);var buffer=this.audioContext.createBuffer(1,1,22050);var source=this.audioContext.createBufferSource();source.buffer=buffer;source.connect(this.audioContext.destination);source.start(0);},load:function(path,multiChannel,loadCallback){if(multiChannel&&ig.Sound.useWebAudio){return this.loadWebAudio(path,multiChannel,loadCallback);}
else{return this.loadHTML5Audio(path,multiChannel,loadCallback);}},loadWebAudio:function(path,multiChannel,loadCallback){var realPath=ig.prefix+path.replace(/[^\.]+$/,this.format.ext)+ig.nocache;if(this.clips[path]){return this.clips[path];}
var audioSource=new ig.Sound.WebAudioSource()
this.clips[path]=audioSource;var request=new XMLHttpRequest();request.open('GET',realPath,true);request.responseType='arraybuffer';var that=this;request.onload=function(ev){that.audioContext.decodeAudioData(request.response,function(buffer){audioSource.buffer=buffer;loadCallback(path,true,ev);},function(ev){loadCallback(path,false,ev);});};request.onerror=function(ev){loadCallback(path,false,ev);};request.send();return audioSource;},loadHTML5Audio:function(path,multiChannel,loadCallback){var realPath=ig.prefix+path.replace(/[^\.]+$/,this.format.ext)+ig.nocache;if(this.clips[path]){if(this.clips[path]instanceof ig.Sound.WebAudioSource){return this.clips[path];}
if(multiChannel&&this.clips[path].length<ig.Sound.channels){for(var i=this.clips[path].length;i<ig.Sound.channels;i++){var a=new Audio(realPath);a.load();this.clips[path].push(a);}}
return this.clips[path][0];}
var clip=new Audio(realPath);if(loadCallback){if(ig.ua.mobile){setTimeout(function(){loadCallback(path,true,null);},0);}
else{clip.addEventListener('canplaythrough',function cb(ev){clip.removeEventListener('canplaythrough',cb,false);loadCallback(path,true,ev);},false);clip.addEventListener('error',function(ev){loadCallback(path,false,ev);},false);}}
clip.preload='auto';clip.load();this.clips[path]=[clip];if(multiChannel){for(var i=1;i<ig.Sound.channels;i++){var a=new Audio(realPath);a.load();this.clips[path].push(a);}}
return clip;},get:function(path){var channels=this.clips[path];if(channels&&channels instanceof ig.Sound.WebAudioSource){return channels;}
for(var i=0,clip;clip=channels[i++];){if(clip.paused||clip.ended){if(clip.ended){clip.currentTime=0;}
return clip;}}
channels[0].pause();channels[0].currentTime=0;return channels[0];}});ig.Music=ig.Class.extend({tracks:[],namedTracks:{},currentTrack:null,currentIndex:0,random:false,_volume:1,_loop:false,_fadeInterval:0,_fadeTimer:null,_endedCallbackBound:null,init:function(){this._endedCallbackBound=this._endedCallback.bind(this);Object.defineProperty(this,"volume",{get:this.getVolume.bind(this),set:this.setVolume.bind(this)});Object.defineProperty(this,"loop",{get:this.getLooping.bind(this),set:this.setLooping.bind(this)});},add:function(music,name){if(!ig.Sound.enabled){return;}
var path=music instanceof ig.Sound?music.path:music;var track=ig.soundManager.load(path,false);if(track instanceof ig.Sound.WebAudioSource){ig.system.stopRunLoop();throw("Sound '"+path+"' loaded as Multichannel but used for Music. "+"Set the multiChannel param to false when loading, e.g.: new ig.Sound(path, false)");}
track.loop=this._loop;track.volume=this._volume;track.addEventListener('ended',this._endedCallbackBound,false);this.tracks.push(track);if(name){this.namedTracks[name]=track;}
if(!this.currentTrack){this.currentTrack=track;}},next:function(){if(!this.tracks.length){return;}
this.stop();this.currentIndex=this.random?Math.floor(Math.random()*this.tracks.length):(this.currentIndex+1)%this.tracks.length;this.currentTrack=this.tracks[this.currentIndex];this.play();},pause:function(){if(!this.currentTrack){return;}
this.currentTrack.pause();},stop:function(){if(!this.currentTrack){return;}
this.currentTrack.pause();this.currentTrack.currentTime=0;},play:function(name){if(name&&this.namedTracks[name]){var newTrack=this.namedTracks[name];if(newTrack!=this.currentTrack){this.stop();this.currentTrack=newTrack;}}
else if(!this.currentTrack){return;}
this.currentTrack.play();},getLooping:function(){return this._loop;},setLooping:function(l){this._loop=l;for(var i in this.tracks){this.tracks[i].loop=l;}},getVolume:function(){return this._volume;},setVolume:function(v){this._volume=v.limit(0,1);for(var i in this.tracks){this.tracks[i].volume=this._volume;}},fadeOut:function(time){if(!this.currentTrack){return;}
clearInterval(this._fadeInterval);this.fadeTimer=new ig.Timer(time);this._fadeInterval=setInterval(this._fadeStep.bind(this),50);},_fadeStep:function(){var v=this.fadeTimer.delta().map(-this.fadeTimer.target,0,1,0).limit(0,1)*this._volume;if(v<=0.01){this.stop();this.currentTrack.volume=this._volume;clearInterval(this._fadeInterval);}
else{this.currentTrack.volume=v;}},_endedCallback:function(){if(this._loop){this.play();}
else{this.next();}}});ig.Sound=ig.Class.extend({path:'',volume:1,currentClip:null,multiChannel:true,_loop:false,init:function(path,multiChannel){this.path=path;this.multiChannel=(multiChannel!==false);Object.defineProperty(this,"loop",{get:this.getLooping.bind(this),set:this.setLooping.bind(this)});this.load();},getLooping:function(){return this._loop;},setLooping:function(loop){this._loop=loop;if(this.currentClip){this.currentClip.loop=loop;}},load:function(loadCallback){if(!ig.Sound.enabled){if(loadCallback){loadCallback(this.path,true);}
return;}
if(ig.ready){ig.soundManager.load(this.path,this.multiChannel,loadCallback);}
else{ig.addResource(this);}},play:function(){if(!ig.Sound.enabled){return;}
this.currentClip=ig.soundManager.get(this.path);this.currentClip.loop=this._loop;this.currentClip.volume=ig.soundManager.volume*this.volume;this.currentClip.play();},stop:function(){if(this.currentClip){this.currentClip.pause();this.currentClip.currentTime=0;}}});ig.Sound.WebAudioSource=ig.Class.extend({sources:[],gain:null,buffer:null,_loop:false,init:function(){this.gain=ig.soundManager.audioContext.createGain();this.gain.connect(ig.soundManager.audioContext.destination);Object.defineProperty(this,"loop",{get:this.getLooping.bind(this),set:this.setLooping.bind(this)});Object.defineProperty(this,"volume",{get:this.getVolume.bind(this),set:this.setVolume.bind(this)});},play:function(){if(!this.buffer){return;}
var source=ig.soundManager.audioContext.createBufferSource();source.buffer=this.buffer;source.connect(this.gain);source.loop=this._loop;var that=this;this.sources.push(source);source.onended=function(){that.sources.erase(source);}
source.start(0);},pause:function(){for(var i=0;i<this.sources.length;i++){try{this.sources[i].stop();}catch(err){}}},getLooping:function(){return this._loop;},setLooping:function(loop){this._loop=loop;for(var i=0;i<this.sources.length;i++){this.sources[i].loop=loop;}},getVolume:function(){return this.gain.gain.value;},setVolume:function(volume){this.gain.gain.value=volume;}});ig.Sound.FORMAT={MP3:{ext:'mp3',mime:'audio/mpeg'},M4A:{ext:'m4a',mime:'audio/mp4; codecs=mp4a'},OGG:{ext:'ogg',mime:'audio/ogg; codecs=vorbis'},WEBM:{ext:'webm',mime:'audio/webm; codecs=vorbis'},CAF:{ext:'caf',mime:'audio/x-caf'}};ig.Sound.use=[ig.Sound.FORMAT.OGG,ig.Sound.FORMAT.MP3];ig.Sound.channels=4;ig.Sound.enabled=true;ig.normalizeVendorAttribute(window,'AudioContext');ig.Sound.useWebAudio=!!window.AudioContext&&!window.nwf;});
// lib/impact/loader.js
ig.baked=true;ig.module('impact.loader').requires('impact.image','impact.font','impact.sound').defines(function(){"use strict";ig.Loader=ig.Class.extend({resources:[],gameClass:null,status:0,done:false,_unloaded:[],_drawStatus:0,_intervalId:0,_loadCallbackBound:null,init:function(gameClass,resources){this.gameClass=gameClass;this.resources=resources;this._loadCallbackBound=this._loadCallback.bind(this);for(var i=0;i<this.resources.length;i++){this._unloaded.push(this.resources[i].path);}},load:function(){ig.system.clear('#000');if(!this.resources.length){this.end();return;}
for(var i=0;i<this.resources.length;i++){this.loadResource(this.resources[i]);}
this._intervalId=setInterval(this.draw.bind(this),16);},loadResource:function(res){res.load(this._loadCallbackBound);},end:function(){if(this.done){return;}
this.done=true;clearInterval(this._intervalId);ig.system.setGame(this.gameClass);},draw:function(){this._drawStatus+=(this.status-this._drawStatus)/5;var s=ig.system.scale;var w=ig.system.width*0.6;var h=ig.system.height*0.1;var x=ig.system.width*0.5-w/2;var y=ig.system.height*0.5-h/2;ig.system.context.fillStyle='#000';ig.system.context.fillRect(0,0,480,320);ig.system.context.fillStyle='#fff';ig.system.context.fillRect(x*s,y*s,w*s,h*s);ig.system.context.fillStyle='#000';ig.system.context.fillRect(x*s+s,y*s+s,w*s-s-s,h*s-s-s);ig.system.context.fillStyle='#fff';ig.system.context.fillRect(x*s,y*s,w*s*this._drawStatus,h*s);},_loadCallback:function(path,status){if(status){this._unloaded.erase(path);}
else{throw('Failed to load resource: '+path);}
this.status=1-(this._unloaded.length/this.resources.length);if(this._unloaded.length==0){setTimeout(this.end.bind(this),250);}}});});
// lib/impact/timer.js
ig.baked=true;ig.module('impact.timer').defines(function(){"use strict";ig.Timer=ig.Class.extend({target:0,base:0,last:0,pausedAt:0,init:function(seconds){this.base=ig.Timer.time;this.last=ig.Timer.time;this.target=seconds||0;},set:function(seconds){this.target=seconds||0;this.base=ig.Timer.time;this.pausedAt=0;},reset:function(){this.base=ig.Timer.time;this.pausedAt=0;},tick:function(){var delta=ig.Timer.time-this.last;this.last=ig.Timer.time;return(this.pausedAt?0:delta);},delta:function(){return(this.pausedAt||ig.Timer.time)-this.base-this.target;},pause:function(){if(!this.pausedAt){this.pausedAt=ig.Timer.time;}},unpause:function(){if(this.pausedAt){this.base+=ig.Timer.time-this.pausedAt;this.pausedAt=0;}}});ig.Timer._last=0;ig.Timer.time=Number.MIN_VALUE;ig.Timer.timeScale=1;ig.Timer.maxStep=0.05;ig.Timer.step=function(){var current=Date.now();var delta=(current-ig.Timer._last)/1000;ig.Timer.time+=Math.min(delta,ig.Timer.maxStep)*ig.Timer.timeScale;ig.Timer._last=current;};});
// lib/impact/system.js
ig.baked=true;ig.module('impact.system').requires('impact.timer','impact.image').defines(function(){"use strict";ig.System=ig.Class.extend({fps:30,width:320,height:240,realWidth:320,realHeight:240,scale:1,tick:0,animationId:0,newGameClass:null,running:false,delegate:null,clock:null,canvas:null,context:null,init:function(canvasId,fps,width,height,scale){this.fps=fps;this.clock=new ig.Timer();this.canvas=ig.$(canvasId);this.resize(width,height,scale);this.context=this.canvas.getContext('2d');this.getDrawPos=ig.System.drawMode;if(this.scale!=1){ig.System.scaleMode=ig.System.SCALE.CRISP;}
ig.System.scaleMode(this.canvas,this.context);},resize:function(width,height,scale){this.width=width;this.height=height;this.scale=scale||this.scale;this.realWidth=this.width*this.scale;this.realHeight=this.height*this.scale;this.canvas.width=this.realWidth;this.canvas.height=this.realHeight;},setGame:function(gameClass){if(this.running){this.newGameClass=gameClass;}
else{this.setGameNow(gameClass);}},setGameNow:function(gameClass){ig.game=new(gameClass)();ig.system.setDelegate(ig.game);},setDelegate:function(object){if(typeof(object.run)=='function'){this.delegate=object;this.startRunLoop();}else{throw('System.setDelegate: No run() function in object');}},stopRunLoop:function(){ig.clearAnimation(this.animationId);this.running=false;},startRunLoop:function(){this.stopRunLoop();this.animationId=ig.setAnimation(this.run.bind(this),this.canvas);this.running=true;},clear:function(color){this.context.fillStyle=color;this.context.fillRect(0,0,this.realWidth,this.realHeight);},run:function(){ig.Timer.step();this.tick=this.clock.tick();this.delegate.run();ig.input.clearPressed();if(this.newGameClass){this.setGameNow(this.newGameClass);this.newGameClass=null;}},getDrawPos:null});ig.System.DRAW={AUTHENTIC:function(p){return Math.round(p)*this.scale;},SMOOTH:function(p){return Math.round(p*this.scale);},SUBPIXEL:function(p){return p*this.scale;}};ig.System.drawMode=ig.System.DRAW.SMOOTH;ig.System.SCALE={CRISP:function(canvas,context){ig.setVendorAttribute(context,'imageSmoothingEnabled',false);canvas.style.imageRendering='-moz-crisp-edges';canvas.style.imageRendering='-o-crisp-edges';canvas.style.imageRendering='-webkit-optimize-contrast';canvas.style.imageRendering='crisp-edges';canvas.style.msInterpolationMode='nearest-neighbor';},SMOOTH:function(canvas,context){ig.setVendorAttribute(context,'imageSmoothingEnabled',true);canvas.style.imageRendering='';canvas.style.msInterpolationMode='';}};ig.System.scaleMode=ig.System.SCALE.SMOOTH;});
// lib/impact/input.js
ig.baked=true;ig.module('impact.input').defines(function(){"use strict";ig.KEY={'MOUSE1':-1,'MOUSE2':-3,'MWHEEL_UP':-4,'MWHEEL_DOWN':-5,'BACKSPACE':8,'TAB':9,'ENTER':13,'PAUSE':19,'CAPS':20,'ESC':27,'SPACE':32,'PAGE_UP':33,'PAGE_DOWN':34,'END':35,'HOME':36,'LEFT_ARROW':37,'UP_ARROW':38,'RIGHT_ARROW':39,'DOWN_ARROW':40,'INSERT':45,'DELETE':46,'_0':48,'_1':49,'_2':50,'_3':51,'_4':52,'_5':53,'_6':54,'_7':55,'_8':56,'_9':57,'A':65,'B':66,'C':67,'D':68,'E':69,'F':70,'G':71,'H':72,'I':73,'J':74,'K':75,'L':76,'M':77,'N':78,'O':79,'P':80,'Q':81,'R':82,'S':83,'T':84,'U':85,'V':86,'W':87,'X':88,'Y':89,'Z':90,'NUMPAD_0':96,'NUMPAD_1':97,'NUMPAD_2':98,'NUMPAD_3':99,'NUMPAD_4':100,'NUMPAD_5':101,'NUMPAD_6':102,'NUMPAD_7':103,'NUMPAD_8':104,'NUMPAD_9':105,'MULTIPLY':106,'ADD':107,'SUBSTRACT':109,'DECIMAL':110,'DIVIDE':111,'F1':112,'F2':113,'F3':114,'F4':115,'F5':116,'F6':117,'F7':118,'F8':119,'F9':120,'F10':121,'F11':122,'F12':123,'SHIFT':16,'CTRL':17,'ALT':18,'PLUS':187,'COMMA':188,'MINUS':189,'PERIOD':190};ig.Input=ig.Class.extend({bindings:{},actions:{},presses:{},locks:{},delayedKeyup:{},isUsingMouse:false,isUsingKeyboard:false,isUsingAccelerometer:false,mouse:{x:0,y:0},accel:{x:0,y:0,z:0},initMouse:function(){if(this.isUsingMouse){return;}
this.isUsingMouse=true;var mouseWheelBound=this.mousewheel.bind(this);ig.system.canvas.addEventListener('mousewheel',mouseWheelBound,false);ig.system.canvas.addEventListener('DOMMouseScroll',mouseWheelBound,false);ig.system.canvas.addEventListener('contextmenu',this.contextmenu.bind(this),false);ig.system.canvas.addEventListener('mousedown',this.keydown.bind(this),false);ig.system.canvas.addEventListener('mouseup',this.keyup.bind(this),false);ig.system.canvas.addEventListener('mousemove',this.mousemove.bind(this),false);if(ig.ua.touchDevice){ig.system.canvas.addEventListener('touchstart',this.keydown.bind(this),false);ig.system.canvas.addEventListener('touchend',this.keyup.bind(this),false);ig.system.canvas.addEventListener('touchmove',this.mousemove.bind(this),false);ig.system.canvas.addEventListener('MSPointerDown',this.keydown.bind(this),false);ig.system.canvas.addEventListener('MSPointerUp',this.keyup.bind(this),false);ig.system.canvas.addEventListener('MSPointerMove',this.mousemove.bind(this),false);ig.system.canvas.style.msTouchAction='none';}},initKeyboard:function(){if(this.isUsingKeyboard){return;}
this.isUsingKeyboard=true;window.addEventListener('keydown',this.keydown.bind(this),false);window.addEventListener('keyup',this.keyup.bind(this),false);},initAccelerometer:function(){if(this.isUsingAccelerometer){return;}
this.isUsingAccelerometer=true;window.addEventListener('devicemotion',this.devicemotion.bind(this),false);},mousewheel:function(event){var delta=event.wheelDelta?event.wheelDelta:(event.detail*-1);var code=delta>0?ig.KEY.MWHEEL_UP:ig.KEY.MWHEEL_DOWN;var action=this.bindings[code];if(action){this.actions[action]=true;this.presses[action]=true;this.delayedKeyup[action]=true;event.stopPropagation();event.preventDefault();}},mousemove:function(event){var internalWidth=parseInt(ig.system.canvas.offsetWidth)||ig.system.realWidth;var scale=ig.system.scale*(internalWidth/ig.system.realWidth);var pos={left:0,top:0};if(ig.system.canvas.getBoundingClientRect){pos=ig.system.canvas.getBoundingClientRect();}
var ev=event.touches?event.touches[0]:event;this.mouse.x=(ev.clientX-pos.left)/scale;this.mouse.y=(ev.clientY-pos.top)/scale;},contextmenu:function(event){if(this.bindings[ig.KEY.MOUSE2]){event.stopPropagation();event.preventDefault();}},keydown:function(event){var tag=event.target.tagName;if(tag=='INPUT'||tag=='TEXTAREA'){return;}
var code=event.type=='keydown'?event.keyCode:(event.button==2?ig.KEY.MOUSE2:ig.KEY.MOUSE1);if(code<0&&!ig.ua.mobile){window.focus();}
if(event.type=='touchstart'||event.type=='mousedown'){this.mousemove(event);}
var action=this.bindings[code];if(action){this.actions[action]=true;if(!this.locks[action]){this.presses[action]=true;this.locks[action]=true;}
event.preventDefault();}},keyup:function(event){var tag=event.target.tagName;if(tag=='INPUT'||tag=='TEXTAREA'){return;}
var code=event.type=='keyup'?event.keyCode:(event.button==2?ig.KEY.MOUSE2:ig.KEY.MOUSE1);var action=this.bindings[code];if(action){this.delayedKeyup[action]=true;event.preventDefault();}},devicemotion:function(event){this.accel=event.accelerationIncludingGravity;},bind:function(key,action){if(key<0){this.initMouse();}
else if(key>0){this.initKeyboard();}
this.bindings[key]=action;},bindTouch:function(selector,action){var element=ig.$(selector);var that=this;element.addEventListener('touchstart',function(ev){that.touchStart(ev,action);},false);element.addEventListener('touchend',function(ev){that.touchEnd(ev,action);},false);element.addEventListener('MSPointerDown',function(ev){that.touchStart(ev,action);},false);element.addEventListener('MSPointerUp',function(ev){that.touchEnd(ev,action);},false);},unbind:function(key){var action=this.bindings[key];this.delayedKeyup[action]=true;this.bindings[key]=null;},unbindAll:function(){this.bindings={};this.actions={};this.presses={};this.locks={};this.delayedKeyup={};},state:function(action){return this.actions[action];},pressed:function(action){return this.presses[action];},released:function(action){return!!this.delayedKeyup[action];},clearPressed:function(){for(var action in this.delayedKeyup){this.actions[action]=false;this.locks[action]=false;}
this.delayedKeyup={};this.presses={};},touchStart:function(event,action){this.actions[action]=true;this.presses[action]=true;event.stopPropagation();event.preventDefault();return false;},touchEnd:function(event,action){this.delayedKeyup[action]=true;event.stopPropagation();event.preventDefault();return false;}});});
// lib/impact/impact.js
ig.baked=true;ig.module('impact.impact').requires('dom.ready','impact.loader','impact.system','impact.input','impact.sound').defines(function(){"use strict";ig.main=function(canvasId,gameClass,fps,width,height,scale,loaderClass){ig.system=new ig.System(canvasId,fps,width,height,scale||1);ig.input=new ig.Input();ig.soundManager=new ig.SoundManager();ig.music=new ig.Music();ig.ready=true;var loader=new(loaderClass||ig.Loader)(gameClass,ig.resources);loader.load();};});
// lib/impact/animation.js
ig.baked=true;ig.module('impact.animation').requires('impact.timer','impact.image').defines(function(){"use strict";ig.AnimationSheet=ig.Class.extend({width:8,height:8,image:null,init:function(path,width,height){this.width=width;this.height=height;this.image=new ig.Image(path);}});ig.Animation=ig.Class.extend({sheet:null,timer:null,sequence:[],flip:{x:false,y:false},pivot:{x:0,y:0},frame:0,tile:0,loopCount:0,alpha:1,angle:0,init:function(sheet,frameTime,sequence,stop){this.sheet=sheet;this.pivot={x:sheet.width/2,y:sheet.height/2};this.timer=new ig.Timer();this.frameTime=frameTime;this.sequence=sequence;this.stop=!!stop;this.tile=this.sequence[0];},rewind:function(){this.timer.set();this.loopCount=0;this.frame=0;this.tile=this.sequence[0];return this;},gotoFrame:function(f){this.timer.set(this.frameTime*-f-0.0001);this.update();},gotoRandomFrame:function(){this.gotoFrame(Math.floor(Math.random()*this.sequence.length))},update:function(){var frameTotal=Math.floor(this.timer.delta()/this.frameTime);this.loopCount=Math.floor(frameTotal/this.sequence.length);if(this.stop&&this.loopCount>0){this.frame=this.sequence.length-1;}
else{this.frame=frameTotal%this.sequence.length;}
this.tile=this.sequence[this.frame];},draw:function(targetX,targetY){var bbsize=Math.max(this.sheet.width,this.sheet.height);if(targetX>ig.system.width||targetY>ig.system.height||targetX+bbsize<0||targetY+bbsize<0){return;}
if(this.alpha!=1){ig.system.context.globalAlpha=this.alpha;}
if(this.angle==0){this.sheet.image.drawTile(targetX,targetY,this.tile,this.sheet.width,this.sheet.height,this.flip.x,this.flip.y);}
else{ig.system.context.save();ig.system.context.translate(ig.system.getDrawPos(targetX+this.pivot.x),ig.system.getDrawPos(targetY+this.pivot.y));ig.system.context.rotate(this.angle);this.sheet.image.drawTile(-this.pivot.x,-this.pivot.y,this.tile,this.sheet.width,this.sheet.height,this.flip.x,this.flip.y);ig.system.context.restore();}
if(this.alpha!=1){ig.system.context.globalAlpha=1;}}});});
// lib/impact/entity.js
ig.baked=true;ig.module('impact.entity').requires('impact.animation','impact.impact').defines(function(){"use strict";ig.Entity=ig.Class.extend({id:0,settings:{},size:{x:16,y:16},offset:{x:0,y:0},pos:{x:0,y:0},last:{x:0,y:0},vel:{x:0,y:0},accel:{x:0,y:0},friction:{x:0,y:0},maxVel:{x:100,y:100},zIndex:0,gravityFactor:1,standing:false,bounciness:0,minBounceVelocity:40,anims:{},animSheet:null,currentAnim:null,health:10,type:0,checkAgainst:0,collides:0,_killed:false,slopeStanding:{min:(44).toRad(),max:(136).toRad()},init:function(x,y,settings){this.id=++ig.Entity._lastId;this.pos.x=this.last.x=x;this.pos.y=this.last.y=y;ig.merge(this,settings);},reset:function(x,y,settings){var proto=this.constructor.prototype;this.pos.x=x;this.pos.y=y;this.last.x=x;this.last.y=y;this.vel.x=proto.vel.x;this.vel.y=proto.vel.y;this.accel.x=proto.accel.x;this.accel.y=proto.accel.y;this.health=proto.health;this._killed=proto._killed;this.standing=proto.standing;this.type=proto.type;this.checkAgainst=proto.checkAgainst;this.collides=proto.collides;ig.merge(this,settings);},addAnim:function(name,frameTime,sequence,stop){if(!this.animSheet){throw('No animSheet to add the animation '+name+' to.');}
var a=new ig.Animation(this.animSheet,frameTime,sequence,stop);this.anims[name]=a;if(!this.currentAnim){this.currentAnim=a;}
return a;},update:function(){this.last.x=this.pos.x;this.last.y=this.pos.y;this.vel.y+=ig.game.gravity*ig.system.tick*this.gravityFactor;this.vel.x=this.getNewVelocity(this.vel.x,this.accel.x,this.friction.x,this.maxVel.x);this.vel.y=this.getNewVelocity(this.vel.y,this.accel.y,this.friction.y,this.maxVel.y);var mx=this.vel.x*ig.system.tick;var my=this.vel.y*ig.system.tick;var res=ig.game.collisionMap.trace(this.pos.x,this.pos.y,mx,my,this.size.x,this.size.y);this.handleMovementTrace(res);if(this.currentAnim){this.currentAnim.update();}},getNewVelocity:function(vel,accel,friction,max){if(accel){return(vel+accel*ig.system.tick).limit(-max,max);}
else if(friction){var delta=friction*ig.system.tick;if(vel-delta>0){return vel-delta;}
else if(vel+delta<0){return vel+delta;}
else{return 0;}}
return vel.limit(-max,max);},handleMovementTrace:function(res){this.standing=false;if(res.collision.y){if(this.bounciness>0&&Math.abs(this.vel.y)>this.minBounceVelocity){this.vel.y*=-this.bounciness;}
else{if(this.vel.y>0){this.standing=true;}
this.vel.y=0;}}
if(res.collision.x){if(this.bounciness>0&&Math.abs(this.vel.x)>this.minBounceVelocity){this.vel.x*=-this.bounciness;}
else{this.vel.x=0;}}
if(res.collision.slope){var s=res.collision.slope;if(this.bounciness>0){var proj=this.vel.x*s.nx+this.vel.y*s.ny;this.vel.x=(this.vel.x-s.nx*proj*2)*this.bounciness;this.vel.y=(this.vel.y-s.ny*proj*2)*this.bounciness;}
else{var lengthSquared=s.x*s.x+s.y*s.y;var dot=(this.vel.x*s.x+this.vel.y*s.y)/lengthSquared;this.vel.x=s.x*dot;this.vel.y=s.y*dot;var angle=Math.atan2(s.x,s.y);if(angle>this.slopeStanding.min&&angle<this.slopeStanding.max){this.standing=true;}}}
this.pos=res.pos;},draw:function(){if(this.currentAnim){this.currentAnim.draw(this.pos.x-this.offset.x-ig.game._rscreen.x,this.pos.y-this.offset.y-ig.game._rscreen.y);}},kill:function(){ig.game.removeEntity(this);},receiveDamage:function(amount,from){this.health-=amount;if(this.health<=0){this.kill();}},touches:function(other){return!(this.pos.x>=other.pos.x+other.size.x||this.pos.x+this.size.x<=other.pos.x||this.pos.y>=other.pos.y+other.size.y||this.pos.y+this.size.y<=other.pos.y);},distanceTo:function(other){var xd=(this.pos.x+this.size.x/2)-(other.pos.x+other.size.x/2);var yd=(this.pos.y+this.size.y/2)-(other.pos.y+other.size.y/2);return Math.sqrt(xd*xd+yd*yd);},angleTo:function(other){return Math.atan2((other.pos.y+other.size.y/2)-(this.pos.y+this.size.y/2),(other.pos.x+other.size.x/2)-(this.pos.x+this.size.x/2));},check:function(other){},collideWith:function(other,axis){},ready:function(){},erase:function(){}});ig.Entity._lastId=0;ig.Entity.COLLIDES={NEVER:0,LITE:1,PASSIVE:2,ACTIVE:4,FIXED:8};ig.Entity.TYPE={NONE:0,A:1,B:2,BOTH:3};ig.Entity.checkPair=function(a,b){if(a.checkAgainst&b.type){a.check(b);}
if(b.checkAgainst&a.type){b.check(a);}
if(a.collides&&b.collides&&a.collides+b.collides>ig.Entity.COLLIDES.ACTIVE){ig.Entity.solveCollision(a,b);}};ig.Entity.solveCollision=function(a,b){var weak=null;if(a.collides==ig.Entity.COLLIDES.LITE||b.collides==ig.Entity.COLLIDES.FIXED){weak=a;}
else if(b.collides==ig.Entity.COLLIDES.LITE||a.collides==ig.Entity.COLLIDES.FIXED){weak=b;}
if(a.last.x+a.size.x>b.last.x&&a.last.x<b.last.x+b.size.x){if(a.last.y<b.last.y){ig.Entity.seperateOnYAxis(a,b,weak);}
else{ig.Entity.seperateOnYAxis(b,a,weak);}
a.collideWith(b,'y');b.collideWith(a,'y');}
else if(a.last.y+a.size.y>b.last.y&&a.last.y<b.last.y+b.size.y){if(a.last.x<b.last.x){ig.Entity.seperateOnXAxis(a,b,weak);}
else{ig.Entity.seperateOnXAxis(b,a,weak);}
a.collideWith(b,'x');b.collideWith(a,'x');}};ig.Entity.seperateOnXAxis=function(left,right,weak){var nudge=(left.pos.x+left.size.x-right.pos.x);if(weak){var strong=left===weak?right:left;weak.vel.x=-weak.vel.x*weak.bounciness+strong.vel.x;var resWeak=ig.game.collisionMap.trace(weak.pos.x,weak.pos.y,weak==left?-nudge:nudge,0,weak.size.x,weak.size.y);weak.pos.x=resWeak.pos.x;}
else{var v2=(left.vel.x-right.vel.x)/2;left.vel.x=-v2;right.vel.x=v2;var resLeft=ig.game.collisionMap.trace(left.pos.x,left.pos.y,-nudge/2,0,left.size.x,left.size.y);left.pos.x=Math.floor(resLeft.pos.x);var resRight=ig.game.collisionMap.trace(right.pos.x,right.pos.y,nudge/2,0,right.size.x,right.size.y);right.pos.x=Math.ceil(resRight.pos.x);}};ig.Entity.seperateOnYAxis=function(top,bottom,weak){var nudge=(top.pos.y+top.size.y-bottom.pos.y);if(weak){var strong=top===weak?bottom:top;weak.vel.y=-weak.vel.y*weak.bounciness+strong.vel.y;var nudgeX=0;if(weak==top&&Math.abs(weak.vel.y-strong.vel.y)<weak.minBounceVelocity){weak.standing=true;nudgeX=strong.vel.x*ig.system.tick;}
var resWeak=ig.game.collisionMap.trace(weak.pos.x,weak.pos.y,nudgeX,weak==top?-nudge:nudge,weak.size.x,weak.size.y);weak.pos.y=resWeak.pos.y;weak.pos.x=resWeak.pos.x;}
else if(ig.game.gravity&&(bottom.standing||top.vel.y>0)){var resTop=ig.game.collisionMap.trace(top.pos.x,top.pos.y,0,-(top.pos.y+top.size.y-bottom.pos.y),top.size.x,top.size.y);top.pos.y=resTop.pos.y;if(top.bounciness>0&&top.vel.y>top.minBounceVelocity){top.vel.y*=-top.bounciness;}
else{top.standing=true;top.vel.y=0;}}
else{var v2=(top.vel.y-bottom.vel.y)/2;top.vel.y=-v2;bottom.vel.y=v2;var nudgeX=bottom.vel.x*ig.system.tick;var resTop=ig.game.collisionMap.trace(top.pos.x,top.pos.y,nudgeX,-nudge/2,top.size.x,top.size.y);top.pos.y=resTop.pos.y;var resBottom=ig.game.collisionMap.trace(bottom.pos.x,bottom.pos.y,0,nudge/2,bottom.size.x,bottom.size.y);bottom.pos.y=resBottom.pos.y;}};});
// lib/impact/map.js
ig.baked=true;ig.module('impact.map').defines(function(){"use strict";ig.Map=ig.Class.extend({tilesize:8,width:1,height:1,data:[[]],name:null,init:function(tilesize,data){this.tilesize=tilesize;this.data=data;this.height=data.length;this.width=data[0].length;this.pxWidth=this.width*this.tilesize;this.pxHeight=this.height*this.tilesize;},getTile:function(x,y){var tx=Math.floor(x/this.tilesize);var ty=Math.floor(y/this.tilesize);if((tx>=0&&tx<this.width)&&(ty>=0&&ty<this.height)){return this.data[ty][tx];}
else{return 0;}},setTile:function(x,y,tile){var tx=Math.floor(x/this.tilesize);var ty=Math.floor(y/this.tilesize);if((tx>=0&&tx<this.width)&&(ty>=0&&ty<this.height)){this.data[ty][tx]=tile;}}});});
// lib/impact/collision-map.js
ig.baked=true;ig.module('impact.collision-map').requires('impact.map').defines(function(){"use strict";ig.CollisionMap=ig.Map.extend({lastSlope:1,tiledef:null,init:function(tilesize,data,tiledef){this.parent(tilesize,data);this.tiledef=tiledef||ig.CollisionMap.defaultTileDef;for(var t in this.tiledef){if(t|0>this.lastSlope){this.lastSlope=t|0;}}},trace:function(x,y,vx,vy,objectWidth,objectHeight){var res={collision:{x:false,y:false,slope:false},pos:{x:x,y:y},tile:{x:0,y:0}};var steps=Math.ceil(Math.max(Math.abs(vx),Math.abs(vy))/this.tilesize);if(steps>1){var sx=vx/steps;var sy=vy/steps;for(var i=0;i<steps&&(sx||sy);i++){this._traceStep(res,x,y,sx,sy,objectWidth,objectHeight,vx,vy,i);x=res.pos.x;y=res.pos.y;if(res.collision.x){sx=0;vx=0;}
if(res.collision.y){sy=0;vy=0;}
if(res.collision.slope){break;}}}
else{this._traceStep(res,x,y,vx,vy,objectWidth,objectHeight,vx,vy,0);}
return res;},_traceStep:function(res,x,y,vx,vy,width,height,rvx,rvy,step){res.pos.x+=vx;res.pos.y+=vy;var t=0;if(vx){var pxOffsetX=(vx>0?width:0);var tileOffsetX=(vx<0?this.tilesize:0);var firstTileY=Math.max(Math.floor(y/this.tilesize),0);var lastTileY=Math.min(Math.ceil((y+height)/this.tilesize),this.height);var tileX=Math.floor((res.pos.x+pxOffsetX)/this.tilesize);var prevTileX=Math.floor((x+pxOffsetX)/this.tilesize);if(step>0||tileX==prevTileX||prevTileX<0||prevTileX>=this.width){prevTileX=-1;}
if(tileX>=0&&tileX<this.width){for(var tileY=firstTileY;tileY<lastTileY;tileY++){if(prevTileX!=-1){t=this.data[tileY][prevTileX];if(t>1&&t<=this.lastSlope&&this._checkTileDef(res,t,x,y,rvx,rvy,width,height,prevTileX,tileY)){break;}}
t=this.data[tileY][tileX];if(t==1||t>this.lastSlope||(t>1&&this._checkTileDef(res,t,x,y,rvx,rvy,width,height,tileX,tileY))){if(t>1&&t<=this.lastSlope&&res.collision.slope){break;}
res.collision.x=true;res.tile.x=t;x=res.pos.x=tileX*this.tilesize-pxOffsetX+tileOffsetX;rvx=0;break;}}}}
if(vy){var pxOffsetY=(vy>0?height:0);var tileOffsetY=(vy<0?this.tilesize:0);var firstTileX=Math.max(Math.floor(res.pos.x/this.tilesize),0);var lastTileX=Math.min(Math.ceil((res.pos.x+width)/this.tilesize),this.width);var tileY=Math.floor((res.pos.y+pxOffsetY)/this.tilesize);var prevTileY=Math.floor((y+pxOffsetY)/this.tilesize);if(step>0||tileY==prevTileY||prevTileY<0||prevTileY>=this.height){prevTileY=-1;}
if(tileY>=0&&tileY<this.height){for(var tileX=firstTileX;tileX<lastTileX;tileX++){if(prevTileY!=-1){t=this.data[prevTileY][tileX];if(t>1&&t<=this.lastSlope&&this._checkTileDef(res,t,x,y,rvx,rvy,width,height,tileX,prevTileY)){break;}}
t=this.data[tileY][tileX];if(t==1||t>this.lastSlope||(t>1&&this._checkTileDef(res,t,x,y,rvx,rvy,width,height,tileX,tileY))){if(t>1&&t<=this.lastSlope&&res.collision.slope){break;}
res.collision.y=true;res.tile.y=t;res.pos.y=tileY*this.tilesize-pxOffsetY+tileOffsetY;break;}}}}},_checkTileDef:function(res,t,x,y,vx,vy,width,height,tileX,tileY){var def=this.tiledef[t];if(!def){return false;}
var lx=(tileX+def[0])*this.tilesize,ly=(tileY+def[1])*this.tilesize,lvx=(def[2]-def[0])*this.tilesize,lvy=(def[3]-def[1])*this.tilesize,solid=def[4];var tx=x+vx+(lvy<0?width:0)-lx,ty=y+vy+(lvx>0?height:0)-ly;if(lvx*ty-lvy*tx>0){if(vx*-lvy+vy*lvx<0){return solid;}
var length=Math.sqrt(lvx*lvx+lvy*lvy);var nx=lvy/length,ny=-lvx/length;var proj=tx*nx+ty*ny;var px=nx*proj,py=ny*proj;if(px*px+py*py>=vx*vx+vy*vy){return solid||(lvx*(ty-vy)-lvy*(tx-vx)<0.5);}
res.pos.x=x+vx-px;res.pos.y=y+vy-py;res.collision.slope={x:lvx,y:lvy,nx:nx,ny:ny};return true;}
return false;}});var H=1/2,N=1/3,M=2/3,SOLID=true,NON_SOLID=false;ig.CollisionMap.defaultTileDef={5:[0,1,1,M,SOLID],6:[0,M,1,N,SOLID],7:[0,N,1,0,SOLID],3:[0,1,1,H,SOLID],4:[0,H,1,0,SOLID],2:[0,1,1,0,SOLID],10:[H,1,1,0,SOLID],21:[0,1,H,0,SOLID],32:[M,1,1,0,SOLID],43:[N,1,M,0,SOLID],54:[0,1,N,0,SOLID],27:[0,0,1,N,SOLID],28:[0,N,1,M,SOLID],29:[0,M,1,1,SOLID],25:[0,0,1,H,SOLID],26:[0,H,1,1,SOLID],24:[0,0,1,1,SOLID],11:[0,0,H,1,SOLID],22:[H,0,1,1,SOLID],33:[0,0,N,1,SOLID],44:[N,0,M,1,SOLID],55:[M,0,1,1,SOLID],16:[1,N,0,0,SOLID],17:[1,M,0,N,SOLID],18:[1,1,0,M,SOLID],14:[1,H,0,0,SOLID],15:[1,1,0,H,SOLID],13:[1,1,0,0,SOLID],8:[H,1,0,0,SOLID],19:[1,1,H,0,SOLID],30:[N,1,0,0,SOLID],41:[M,1,N,0,SOLID],52:[1,1,M,0,SOLID],38:[1,M,0,1,SOLID],39:[1,N,0,M,SOLID],40:[1,0,0,N,SOLID],36:[1,H,0,1,SOLID],37:[1,0,0,H,SOLID],35:[1,0,0,1,SOLID],9:[1,0,H,1,SOLID],20:[H,0,0,1,SOLID],31:[1,0,M,1,SOLID],42:[M,0,N,1,SOLID],53:[N,0,0,1,SOLID],12:[0,0,1,0,NON_SOLID],23:[1,1,0,1,NON_SOLID],34:[1,0,1,1,NON_SOLID],45:[0,1,0,0,NON_SOLID]};ig.CollisionMap.staticNoCollision={trace:function(x,y,vx,vy){return{collision:{x:false,y:false,slope:false},pos:{x:x+vx,y:y+vy},tile:{x:0,y:0}};}};});
// lib/impact/background-map.js
ig.baked=true;ig.module('impact.background-map').requires('impact.map','impact.image').defines(function(){"use strict";ig.BackgroundMap=ig.Map.extend({tiles:null,scroll:{x:0,y:0},distance:1,repeat:false,tilesetName:'',foreground:false,enabled:true,preRender:false,preRenderedChunks:null,chunkSize:512,debugChunks:false,anims:{},init:function(tilesize,data,tileset){this.parent(tilesize,data);this.setTileset(tileset);},setTileset:function(tileset){this.tilesetName=tileset instanceof ig.Image?tileset.path:tileset;this.tiles=new ig.Image(this.tilesetName);this.preRenderedChunks=null;},setScreenPos:function(x,y){this.scroll.x=x/this.distance;this.scroll.y=y/this.distance;},preRenderMapToChunks:function(){var totalWidth=this.width*this.tilesize*ig.system.scale,totalHeight=this.height*this.tilesize*ig.system.scale;this.chunkSize=Math.min(Math.max(totalWidth,totalHeight),this.chunkSize);var chunkCols=Math.ceil(totalWidth/this.chunkSize),chunkRows=Math.ceil(totalHeight/this.chunkSize);this.preRenderedChunks=[];for(var y=0;y<chunkRows;y++){this.preRenderedChunks[y]=[];for(var x=0;x<chunkCols;x++){var chunkWidth=(x==chunkCols-1)?totalWidth-x*this.chunkSize:this.chunkSize;var chunkHeight=(y==chunkRows-1)?totalHeight-y*this.chunkSize:this.chunkSize;this.preRenderedChunks[y][x]=this.preRenderChunk(x,y,chunkWidth,chunkHeight);}}},preRenderChunk:function(cx,cy,w,h){var tw=w/this.tilesize/ig.system.scale+1,th=h/this.tilesize/ig.system.scale+1;var nx=(cx*this.chunkSize/ig.system.scale)%this.tilesize,ny=(cy*this.chunkSize/ig.system.scale)%this.tilesize;var tx=Math.floor(cx*this.chunkSize/this.tilesize/ig.system.scale),ty=Math.floor(cy*this.chunkSize/this.tilesize/ig.system.scale);var chunk=ig.$new('canvas');chunk.width=w;chunk.height=h;chunk.retinaResolutionEnabled=false;var chunkContext=chunk.getContext('2d');ig.System.scaleMode(chunk,chunkContext);var screenContext=ig.system.context;ig.system.context=chunkContext;for(var x=0;x<tw;x++){for(var y=0;y<th;y++){if(x+tx<this.width&&y+ty<this.height){var tile=this.data[y+ty][x+tx];if(tile){this.tiles.drawTile(x*this.tilesize-nx,y*this.tilesize-ny,tile-1,this.tilesize);}}}}
ig.system.context=screenContext;return chunk;},draw:function(){if(!this.tiles.loaded||!this.enabled){return;}
if(this.preRender){this.drawPreRendered();}
else{this.drawTiled();}},drawPreRendered:function(){if(!this.preRenderedChunks){this.preRenderMapToChunks();}
var dx=ig.system.getDrawPos(this.scroll.x),dy=ig.system.getDrawPos(this.scroll.y);if(this.repeat){var w=this.width*this.tilesize*ig.system.scale;dx=(dx%w+w)%w;var h=this.height*this.tilesize*ig.system.scale;dy=(dy%h+h)%h;}
var minChunkX=Math.max(Math.floor(dx/this.chunkSize),0),minChunkY=Math.max(Math.floor(dy/this.chunkSize),0),maxChunkX=Math.ceil((dx+ig.system.realWidth)/this.chunkSize),maxChunkY=Math.ceil((dy+ig.system.realHeight)/this.chunkSize),maxRealChunkX=this.preRenderedChunks[0].length,maxRealChunkY=this.preRenderedChunks.length;if(!this.repeat){maxChunkX=Math.min(maxChunkX,maxRealChunkX);maxChunkY=Math.min(maxChunkY,maxRealChunkY);}
var nudgeY=0;for(var cy=minChunkY;cy<maxChunkY;cy++){var nudgeX=0;for(var cx=minChunkX;cx<maxChunkX;cx++){var chunk=this.preRenderedChunks[cy%maxRealChunkY][cx%maxRealChunkX];var x=-dx+cx*this.chunkSize-nudgeX;var y=-dy+cy*this.chunkSize-nudgeY;ig.system.context.drawImage(chunk,x,y);ig.Image.drawCount++;if(this.debugChunks){ig.system.context.strokeStyle='#f0f';ig.system.context.strokeRect(x,y,this.chunkSize,this.chunkSize);}
if(this.repeat&&chunk.width<this.chunkSize&&x+chunk.width<ig.system.realWidth){nudgeX+=this.chunkSize-chunk.width;maxChunkX++;}}
if(this.repeat&&chunk.height<this.chunkSize&&y+chunk.height<ig.system.realHeight){nudgeY+=this.chunkSize-chunk.height;maxChunkY++;}}},drawTiled:function(){var tile=0,anim=null,tileOffsetX=(this.scroll.x/this.tilesize).toInt(),tileOffsetY=(this.scroll.y/this.tilesize).toInt(),pxOffsetX=this.scroll.x%this.tilesize,pxOffsetY=this.scroll.y%this.tilesize,pxMinX=-pxOffsetX-this.tilesize,pxMinY=-pxOffsetY-this.tilesize,pxMaxX=ig.system.width+this.tilesize-pxOffsetX,pxMaxY=ig.system.height+this.tilesize-pxOffsetY;for(var mapY=-1,pxY=pxMinY;pxY<pxMaxY;mapY++,pxY+=this.tilesize){var tileY=mapY+tileOffsetY;if(tileY>=this.height||tileY<0){if(!this.repeat){continue;}
tileY=(tileY%this.height+this.height)%this.height;}
for(var mapX=-1,pxX=pxMinX;pxX<pxMaxX;mapX++,pxX+=this.tilesize){var tileX=mapX+tileOffsetX;if(tileX>=this.width||tileX<0){if(!this.repeat){continue;}
tileX=(tileX%this.width+this.width)%this.width;}
if((tile=this.data[tileY][tileX])){if((anim=this.anims[tile-1])){anim.draw(pxX,pxY);}
else{this.tiles.drawTile(pxX,pxY,tile-1,this.tilesize);}}}}}});});
// lib/impact/game.js
ig.baked=true;ig.module('impact.game').requires('impact.impact','impact.entity','impact.collision-map','impact.background-map').defines(function(){"use strict";ig.Game=ig.Class.extend({clearColor:'#000000',gravity:0,screen:{x:0,y:0},_rscreen:{x:0,y:0},entities:[],namedEntities:{},collisionMap:ig.CollisionMap.staticNoCollision,backgroundMaps:[],backgroundAnims:{},autoSort:false,sortBy:null,cellSize:64,_deferredKill:[],_levelToLoad:null,_doSortEntities:false,staticInstantiate:function(){this.sortBy=this.sortBy||ig.Game.SORT.Z_INDEX;ig.game=this;return null;},loadLevel:function(data){this.screen={x:0,y:0};this.entities=[];this.namedEntities={};for(var i=0;i<data.entities.length;i++){var ent=data.entities[i];this.spawnEntity(ent.type,ent.x,ent.y,ent.settings);}
this.sortEntities();this.collisionMap=ig.CollisionMap.staticNoCollision;this.backgroundMaps=[];for(var i=0;i<data.layer.length;i++){var ld=data.layer[i];if(ld.name=='collision'){this.collisionMap=new ig.CollisionMap(ld.tilesize,ld.data);}
else{var newMap=new ig.BackgroundMap(ld.tilesize,ld.data,ld.tilesetName);newMap.anims=this.backgroundAnims[ld.tilesetName]||{};newMap.repeat=ld.repeat;newMap.distance=ld.distance;newMap.foreground=!!ld.foreground;newMap.preRender=!!ld.preRender;newMap.name=ld.name;this.backgroundMaps.push(newMap);}}
for(var i=0;i<this.entities.length;i++){this.entities[i].ready();}},loadLevelDeferred:function(data){this._levelToLoad=data;},getMapByName:function(name){if(name=='collision'){return this.collisionMap;}
for(var i=0;i<this.backgroundMaps.length;i++){if(this.backgroundMaps[i].name==name){return this.backgroundMaps[i];}}
return null;},getEntityByName:function(name){return this.namedEntities[name];},getEntitiesByType:function(type){var entityClass=typeof(type)==='string'?ig.global[type]:type;var a=[];for(var i=0;i<this.entities.length;i++){var ent=this.entities[i];if(ent instanceof entityClass&&!ent._killed){a.push(ent);}}
return a;},spawnEntity:function(type,x,y,settings){var entityClass=typeof(type)==='string'?ig.global[type]:type;if(!entityClass){throw("Can't spawn entity of type "+type);}
var ent=new(entityClass)(x,y,settings||{});this.entities.push(ent);if(ent.name){this.namedEntities[ent.name]=ent;}
return ent;},sortEntities:function(){this.entities.sort(this.sortBy);},sortEntitiesDeferred:function(){this._doSortEntities=true;},removeEntity:function(ent){if(ent.name){delete this.namedEntities[ent.name];}
ent._killed=true;ent.type=ig.Entity.TYPE.NONE;ent.checkAgainst=ig.Entity.TYPE.NONE;ent.collides=ig.Entity.COLLIDES.NEVER;this._deferredKill.push(ent);},run:function(){this.update();this.draw();},update:function(){if(this._levelToLoad){this.loadLevel(this._levelToLoad);this._levelToLoad=null;}
this.updateEntities();this.checkEntities();for(var i=0;i<this._deferredKill.length;i++){this._deferredKill[i].erase();this.entities.erase(this._deferredKill[i]);}
this._deferredKill=[];if(this._doSortEntities||this.autoSort){this.sortEntities();this._doSortEntities=false;}
for(var tileset in this.backgroundAnims){var anims=this.backgroundAnims[tileset];for(var a in anims){anims[a].update();}}},updateEntities:function(){for(var i=0;i<this.entities.length;i++){var ent=this.entities[i];if(!ent._killed){ent.update();}}},draw:function(){if(this.clearColor){ig.system.clear(this.clearColor);}
this._rscreen.x=ig.system.getDrawPos(this.screen.x)/ig.system.scale;this._rscreen.y=ig.system.getDrawPos(this.screen.y)/ig.system.scale;var mapIndex;for(mapIndex=0;mapIndex<this.backgroundMaps.length;mapIndex++){var map=this.backgroundMaps[mapIndex];if(map.foreground){break;}
map.setScreenPos(this.screen.x,this.screen.y);map.draw();}
this.drawEntities();for(mapIndex;mapIndex<this.backgroundMaps.length;mapIndex++){var map=this.backgroundMaps[mapIndex];map.setScreenPos(this.screen.x,this.screen.y);map.draw();}},drawEntities:function(){for(var i=0;i<this.entities.length;i++){this.entities[i].draw();}},checkEntities:function(){var hash={};for(var e=0;e<this.entities.length;e++){var entity=this.entities[e];if(entity.type==ig.Entity.TYPE.NONE&&entity.checkAgainst==ig.Entity.TYPE.NONE&&entity.collides==ig.Entity.COLLIDES.NEVER){continue;}
var checked={},xmin=Math.floor(entity.pos.x/this.cellSize),ymin=Math.floor(entity.pos.y/this.cellSize),xmax=Math.floor((entity.pos.x+entity.size.x)/this.cellSize)+1,ymax=Math.floor((entity.pos.y+entity.size.y)/this.cellSize)+1;for(var x=xmin;x<xmax;x++){for(var y=ymin;y<ymax;y++){if(!hash[x]){hash[x]={};hash[x][y]=[entity];}
else if(!hash[x][y]){hash[x][y]=[entity];}
else{var cell=hash[x][y];for(var c=0;c<cell.length;c++){if(entity.touches(cell[c])&&!checked[cell[c].id]){checked[cell[c].id]=true;ig.Entity.checkPair(entity,cell[c]);}}
cell.push(entity);}}}}}});ig.Game.SORT={Z_INDEX:function(a,b){return a.zIndex-b.zIndex;},POS_X:function(a,b){return(a.pos.x+a.size.x)-(b.pos.x+b.size.x);},POS_Y:function(a,b){return(a.pos.y+a.size.y)-(b.pos.y+b.size.y);}};});
// lib/impact/entity-pool.js
ig.baked=true;ig.module('impact.entity-pool').requires('impact.game').defines(function(){"use strict";ig.EntityPool={pools:{},mixin:{staticInstantiate:function(x,y,settings){return ig.EntityPool.getFromPool(this.classId,x,y,settings);},erase:function(){ig.EntityPool.putInPool(this);}},enableFor:function(Class){Class.inject(this.mixin);},getFromPool:function(classId,x,y,settings){var pool=this.pools[classId];if(!pool||!pool.length){return null;}
var instance=pool.pop();instance.reset(x,y,settings);return instance;},putInPool:function(instance){if(!this.pools[instance.classId]){this.pools[instance.classId]=[instance];}
else{this.pools[instance.classId].push(instance);}},drainPool:function(classId){delete this.pools[classId];},drainAllPools:function(){this.pools={};}};ig.Game.inject({loadLevel:function(data){ig.EntityPool.drainAllPools();this.parent(data);}});});
// lib/game/entities/asteroids/asteroid-abstract.js
ig.baked=true;ig.module('game.entities.asteroids.asteroid-abstract').requires('impact.entity').defines(function(){AsteroidAbstract=ig.Entity.extend({maxVel:{x:500,y:500},checkAgainst:ig.Entity.TYPE.A,type:ig.Entity.TYPE.A,health:1,init:function(x,y,settings){this.parent(x,y,settings);this.initAndReset();},reset:function(x,y,settings)
{this.parent(x,y,settings);this.initAndReset();},initAndReset:function()
{this.velocity=Math.random()*100+100;this.angle=Math.random()*2*Math.PI;this.rotateSpeed=Math.random()*.05+.01;this.vel.x=Math.cos(this.angle)*this.velocity;this.vel.y=Math.sin(this.angle)*this.velocity;},checkBounds:function(){var offSet=this.size.x>this.size.y?this.size.x:this.size.y;if(this.pos.x>ig.system.width+offSet){this.pos.x=-offSet;}
else if(this.pos.x<-offSet){this.pos.x=ig.system.width+offSet;}
if(this.pos.y>ig.system.height+offSet){this.pos.y=-offSet;}
else if(this.pos.y<-offSet){this.pos.y=ig.system.height+offSet;}},check:function(other){if(other instanceof ShipEntity){var distance=this.distanceTo(other);if(this.size.x/2+other.size.x/2>distance){if(other.shield&&!other.shieldHit)this.receiveDamage(1);other.receiveDamage(1);}}
else if(other instanceof LaserEntity){this.receiveDamage(1);other.kill();}
else if(other instanceof AsteroidAbstract){this.bounce(other);}},bounce:function(other){},update:function(){if(this.vel.x>0){this.currentAnim.angle+=this.rotateSpeed;}
else{this.currentAnim.angle-=this.rotateSpeed;}
this.checkBounds();this.parent();},kill:function(){this.parent();console.log("Killed asteroid");this.manager.killedAsteroid(this);},setColor:function(color)
{this.color=color;}});});
// lib/game/entities/asteroids/asteroid-large.js
ig.baked=true;ig.module('game.entities.asteroids.asteroid-large').requires('impact.entity','game.entities.asteroids.asteroid-abstract').defines(function(){AsteroidLargeEntity=AsteroidAbstract.extend({animSheet:new ig.AnimationSheet('media/large_asteroids.png',156,148),maxHealth:3,health:3,size:{x:156,y:148},init:function(x,y,settings){this.parent(x,y,settings);this.addAnim('gray',0.1,[0,3,6],true);this.addAnim('red',0.1,[1,4,7],true);this.addAnim('brown',0.1,[2,5,8],true);},update:function(){this.parent();this.currentAnim.gotoFrame(this.maxHealth-this.health);},setColor:function(color){this.parent(color);if(color==0)
this.currentAnim=this.anims.gray;else if(color==1)
this.currentAnim=this.anims.red;else if(color==2)
this.currentAnim=this.anims.brown;else
alert("COLOR WAS INVALID : "+color);}});});
// lib/game/entities/asteroids/asteroid-medium.js
ig.baked=true;ig.module('game.entities.asteroids.asteroid-medium').requires('impact.entity','game.entities.asteroids.asteroid-abstract').defines(function(){AsteroidMediumEntity=AsteroidAbstract.extend({animSheet:new ig.AnimationSheet('media/medium_asteroids.png',65,59),maxHealth:2,health:2,size:{x:65,y:59},init:function(x,y,settings){this.parent(x,y,settings);this.addAnim('gray',0.1,[0,9],false);this.addAnim('red',0.1,[1,10],false);this.addAnim('brown',0.1,[2,11],false);},update:function(){this.parent();this.currentAnim.gotoFrame(this.maxHealth-this.health);},setColor:function(color){this.parent(color);if(color==0)
this.currentAnim=this.anims.gray;else if(color==1)
this.currentAnim=this.anims.red;else if(color==2)
this.currentAnim=this.anims.brown;else
alert("COLOR WAS INVALID : "+color);}});});
// lib/game/entities/asteroids/asteroid-small.js
ig.baked=true;ig.module('game.entities.asteroids.asteroid-small').requires('impact.entity','game.entities.asteroids.asteroid-abstract').defines(function(){AsteroidSmallEntity=AsteroidAbstract.extend({animSheet:new ig.AnimationSheet('media/small_asteroids.png',31,30),maxHealth:1,health:1,size:{x:31,y:30},init:function(x,y,settings){this.parent(x,y,settings);this.addAnim('gray1',0.1,[0],false);this.addAnim('red1',0.1,[1],false);this.addAnim('brown1',0.1,[2],false);this.addAnim('gray2',0.1,[3],false);this.addAnim('red2',0.1,[4],false);this.addAnim('brown2',0.1,[5],false);},update:function(){this.parent();},setColor:function(color){this.parent(color);if(color==0)
this.currentAnim=this.anims.gray1;else if(color==1)
this.currentAnim=this.anims.red1;else if(color==2)
this.currentAnim=this.anims.brown1;else if(color==3)
this.currentAnim=this.anims.gray2;else if(color==4)
this.currentAnim=this.anims.red2;else if(color==5)
this.currentAnim=this.anims.brown2;else
alert("COLOR WAS INVALID :"+color);}});});
// lib/game/entities/asteroids/asteroid-manager.js
ig.baked=true;ig.module('game.entities.asteroids.asteroid-manager').requires('impact.game','game.entities.asteroids.asteroid-large','game.entities.asteroids.asteroid-medium','game.entities.asteroids.asteroid-small').defines(function()
{AsteroidManager=ig.Class.extend({asteroidsAllowed:5,asteroidsAlive:0,asteroidSpawnRate:.2,asteroids:[],isRunning:false,campaignMode:false,killAll:false,coinCounter:0,init:function()
{console.log("AsteroidManager Created");},killAllAsteroids:function(){this.killAll=true;for(var i=0;i<this.asteroids.length;i++){this.asteroids[i].kill();}
this.killAll=false;},kill:function()
{this.killAllAsteroids();},startSpawn:function(amount,type)
{this.campaignMode=type;this.asteroidsAllowed=amount;this.isRunning=true;this.asteroidsAlive=0;asteroids=[];this.spawnTimer=new ig.Timer(this.asteroidSpawnRate);},stopSpawn:function()
{this.isRunning=false;this.spawnTimer.pause();},update:function()
{if(this.isRunning)
{if(this.asteroidsAlive<this.asteroidsAllowed)
{if(this.spawnTimer.delta()>=0)
{this.spawnTimer.reset();this.spawnAsteroid();}}
else if(this.campaignMode){this.stopSpawn();}}},spawnAsteroid:function()
{console.log("Spawning Asteroid");var random=Math.random()*3;if(this.campaignMode)var type=AsteroidLargeEntity;else{if(random<1)
var type=AsteroidSmallEntity;else if(random<2.5)
var type=AsteroidMediumEntity;else
var type=AsteroidLargeEntity;}
this.createAsteroid(0,0,type,Math.floor(Math.random()*3),1);},createAsteroid:function(x,y,type,color,isNewSpawn)
{var newAsteroid=ig.game.spawnEntity(type,0,0);newAsteroid.isNewSpawn=isNewSpawn;if(isNewSpawn||this.campaignMode)
this.asteroidsAlive++;newAsteroid.pos.x=x;newAsteroid.pos.y=y;newAsteroid.setColor(color);newAsteroid.manager=this;this.asteroids.push(newAsteroid);},killedAsteroid:function(asteroid)
{if(this.killAll)return;if(asteroid.isNewSpawn||this.campaignMode)
this.asteroidsAlive--;if(asteroid instanceof AsteroidSmallEntity)
{console.log("Small death");}
else if(asteroid instanceof AsteroidMediumEntity)
{console.log("Medium death "+asteroid.pos.x+","+asteroid.pos.y);this.createAsteroid(asteroid.pos.x,asteroid.pos.y,AsteroidSmallEntity,asteroid.color,0);this.createAsteroid(asteroid.pos.x,asteroid.pos.y,AsteroidSmallEntity,asteroid.color,0);}
else if(asteroid instanceof AsteroidLargeEntity)
{console.log("Large death");this.createAsteroid(asteroid.pos.x,asteroid.pos.y,AsteroidMediumEntity,asteroid.color,0);this.createAsteroid(asteroid.pos.x,asteroid.pos.y,AsteroidSmallEntity,asteroid.color,0);this.createAsteroid(asteroid.pos.x,asteroid.pos.y,AsteroidSmallEntity,asteroid.color,0);}
var numCoins=Math.random()*5;for(var i=0;i<numCoins;i++){var newCoin=ig.game.spawnEntity(CoinEntity,asteroid.pos.x,asteroid.pos.y);newCoin.manager=this;this.coinCounter++;}},killedCoin:function(){this.coinCounter--;}});});
// lib/game/entities/ship.js
ig.baked=true;ig.module('game.entities.ship').requires('impact.entity').defines(function(){ShipEntity=ig.Entity.extend({animSheet:new ig.AnimationSheet('media/ship-squished.png',87,87),maxVel:{x:500,y:500},offset:{x:4,y:4},size:{x:80,y:80},acceleration:5,rotateAccel:0.005,rotateVel:0,maxRotateVel:0.1,angle:0,health:1,shield:true,shieldHit:false,shootTimer:new ig.Timer(0.1),shieldDeactivatedTimer:new ig.Timer(2),shieldActivateTimer:new ig.Timer(5),pickedUpCoin:new ig.Sound('media/coin_pickup.*'),thruster:new ig.Sound('media/thrusters.*'),shootLaser:new ig.Sound('media/laser.*'),type:ig.Entity.TYPE.A,checkAgainst:ig.Entity.TYPE.B,init:function(x,y,settings){this.parent(x,y,settings);this.addAnim('idle',0.4,[0,4],false);this.addAnim('moving',0.4,[1,5],false);this.addAnim('turn',0.4,[2,6],false);this.addAnim('turnAndMove',0.4,[3,7],false);this.thruster.loop=true;this.shootLaser.volume=0.3;this.shootTimer.set(1/stateManager.gameMode.shipProperties.weaponLevel);},receiveDamage:function(amount){if(this.shield&&!this.shieldHit){this.shieldHit=true;this.shieldDeactivatedTimer.reset();}
else if(!this.shield){this.health--;this.kill();}},check:function(other){if(other instanceof CoinEntity){stateManager.currentState.coins++;this.pickedUpCoin.play();other.kill();}},checkInputs:function(){var moving=false;this.currentAnim=this.anims.idle;if(ig.input.state('up')||(ig.input.state('left')&&!ig.input.state('right'))||(ig.input.state('right')&&!ig.input.state('left'))){if(ig.input.state('up')){moving=true;this.thruster.volume=0.5;this.currentAnim=this.anims.moving;this.vel.x-=this.acceleration*stateManager.gameMode.shipProperties.engineLevel*Math.cos(this.angle+Math.PI/2);this.vel.y-=this.acceleration*stateManager.gameMode.shipProperties.engineLevel*Math.sin(this.angle+Math.PI/2);stateManager.gameMode.shipProperties.fuel-=.02;}
else{this.thruster.volume=0.2;}
if(ig.input.state('left')&&!ig.input.state('right')){if(stateManager.isArcade()==false)
stateManager.gameMode.shipProperties.fuel-=.005;if(moving){this.currentAnim=this.anims.turnAndMove;this.thruster.volume=0.7;}
else{this.currentAnim=this.anims.turn;}
if(this.rotateVel<=this.maxRotateVel){this.rotateVel+=this.rotateAccel;}
this.angle-=this.rotateVel;this.currentAnim.flip.x=true;}
else if(ig.input.state('right')&&!ig.input.state('left')){if(stateManager.isArcade()==false)
stateManager.gameMode.shipProperties.fuel-=.005;if(moving){this.currentAnim=this.anims.turnAndMove;this.thruster.volume=0.7;}
else{this.currentAnim=this.anims.turn;}
if(this.rotateVel<=this.maxRotateVel){this.rotateVel+=this.rotateAccel;}
this.angle+=this.rotateVel;this.currentAnim.flip.x=false;}
else{this.rotateVel=0;}}
else{this.rotateVel=0;}
if(!moving)
{this.vel.x/=1.00+stateManager.gameMode.shipProperties.engineLevel*.002;this.vel.y/=1.00+stateManager.gameMode.shipProperties.engineLevel*.002;}
this.currentAnim.angle=this.angle;if(ig.input.state('space')){if(this.shootTimer.delta()>=0){if(stateManager.gameMode.shipProperties.ammo>0)
{this.shootLaser.play();if(stateManager.isArcade()==false)
stateManager.gameMode.shipProperties.ammo--;var x=this.pos.x;var y=this.pos.y;var inGameWidth=Math.abs(Math.cos(this.angle))*this.size.x+Math.abs(Math.sin(this.angle))*this.size.y;var inGameHeight=Math.abs(Math.sin(this.angle))*this.size.x+Math.abs(Math.cos(this.angle))*this.size.y;inGameWidth-=(inGameWidth-this.size.x);inGameHeight-=(inGameHeight-this.size.y);extraX=0;extraY=0;var laserExtraX=(Math.abs(Math.cos(this.angle))*9+Math.abs(Math.sin(this.angle))*75);var laserExtraY=(Math.abs(Math.sin(this.angle))*9+Math.abs(Math.cos(this.angle))*75);laserExtraX-=(laserExtraX-9);laserExtraY-=(laserExtraY-9);ig.game.spawnEntity(LaserEntity,x+inGameWidth/2+extraX-laserExtraX/2,y+inGameHeight/2+extraY-laserExtraY/2,{angle:this.angle});this.shootTimer.reset();}}}},checkBounds:function(){var offSet=this.size.y;if(this.pos.x>ig.system.width+offSet){this.pos.x=-offSet;}
else if(this.pos.x<-offSet){this.pos.x=ig.system.width+offSet;}
if(this.pos.y>ig.system.height+offSet){this.pos.y=-offSet;}
else if(this.pos.y<-offSet){this.pos.y=ig.system.height+offSet;}},update:function(){this.parent();this.checkInputs();this.checkBounds();if(!this.shield&&this.shieldActivateTimer.delta()>=0){if(stateManager.gameMode.shipProperties.shield>0)
{this.shield=true;stateManager.gameMode.shipProperties.shield--;}}
if(this.shieldHit){if(this.shieldDeactivatedTimer.delta()>=0){this.shield=false;this.shieldHit=false;this.shieldActivateTimer.reset();}}
else if(this.shield){this.currentAnim.gotoFrame(1);}
else{this.currentAnim.gotoFrame(0);}},kill:function(){console.log("SHIIIIP");console.log(this.parent);ig.game.spawnEntity(ExplosionEntity,this.pos.x,this.pos.y);this.parent();},draw:function(){this.parent();}});});
// lib/game/entities/laser.js
ig.baked=true;ig.module('game.entities.laser').requires('impact.entity').defines(function(){LaserEntity=ig.Entity.extend({animSheet:new ig.AnimationSheet('media/laser.png',9,75),size:{x:9,y:9},offset:{x:0,y:32},maxVel:{x:2000,y:2000},velocity:2000,angle:0,type:ig.Entity.TYPE.A,init:function(x,y,settings){this.parent(x,y,settings);this.addAnim('idle',0.1,[0],false);this.initAndReset(settings.angle);},reset:function(x,y,settings){this.parent(x,y,settings);this.initAndReset(settings.angle);},initAndReset:function(angle){this.angle=angle;this.currentAnim.angle=this.angle;this.vel.x=-this.velocity*Math.cos(this.angle+Math.PI/2);this.vel.y=-this.velocity*Math.sin(this.angle+Math.PI/2);},update:function(){if(this.pos.y>ig.system.height+100||this.pos.y<-100||this.pos.x>ig.system.width+100||this.pos.x<-100){this.kill();}
this.parent();},draw:function(){this.parent();}});});
// lib/game/entities/explosion.js
ig.baked=true;ig.module('game.entities.explosion').requires('impact.entity').defines(function(){ExplosionEntity=ig.Entity.extend({animSheet:new ig.AnimationSheet('media/explosion.png',128,128),angle:0,init:function(x,y,settings){this.parent(x,y,settings);this.addAnim('idle',0.05,[0,1,2,3,4,5,6,7,8,9,10,11],true);},update:function(){if(this.currentAnim.loopCount>0){this.kill();}
this.parent();},reset:function(x,y,settings){this.anims.idle.rewind();this.parent(x,y,settings);}});});
// lib/game/entities/coin.js
ig.baked=true;ig.module('game.entities.coin').requires('impact.entity').defines(function(){CoinEntity=ig.Entity.extend({animSheet:new ig.AnimationSheet('media/coin.png',32,32),maxVel:{x:500,y:500},size:{x:32,y:32},killTimer:new ig.Timer(8),type:ig.Entity.TYPE.B,angle:0,init:function(x,y,settings){this.parent(x,y,settings);this.addAnim('idle',0.1,[0,1,2,3,4,5,6,7],false);this.initAndReset();},initAndReset:function(){this.angle=Math.random()*2*Math.PI;this.vel.x=(Math.random()*50)*(Math.random()>0.5?1:-1);this.vel.y=(Math.random()*50)*(Math.random()>0.5?1:-1);this.killTimer=new ig.Timer(4);this.killTimer.reset();},reset:function(x,y,settings){this.parent(x,y,settings);this.initAndReset();},checkBounds:function(){var offSet=this.size.x>this.size.y?this.size.x:this.size.y;if(this.pos.x>ig.system.width+offSet){this.pos.x=-offSet;}
else if(this.pos.x<-offSet){this.pos.x=ig.system.width+offSet;}
if(this.pos.y>ig.system.height+offSet){this.pos.y=-offSet;}
else if(this.pos.y<-offSet){this.pos.y=ig.system.height+offSet;}},update:function(){this.parent();this.checkBounds();if(this.killTimer.delta()>=0){this.kill();}},kill:function(){this.parent();this.manager.killedCoin();}});});
// lib/game/states/abstract-state.js
ig.baked=true;ig.module('game.states.abstract-state').defines(function()
{AbstractState=ig.Class.extend({init:function()
{console.log("AbstractState Created");},start:function()
{},kill:function()
{},update:function()
{},draw:function()
{}});});
// lib/game/menus/menu-item-abstract.js
ig.baked=true;ig.module('game.menus.menu-item-abstract').requires('impact.entity').defines(function()
{AbstractMenuItem=ig.Class.extend({x:0,y:0,w:0,h:0,selected:0,init:function(x,y,w,h,callback)
{this.x=x;this.y=y
this.w=w;this.h=h;this.callback=callback;console.log("Abstract MenuItem Created");},update:function()
{if(ig.input.pressed('enter'))
{console.log("PRESSED!");this.selected=!this.selected;}},draw:function()
{var ctx=ig.system.context;ctx.fillStyle="#5A6169";ctx.fillRect(this.x,this.y,this.w,this.h);if(this.selected)
{ctx.strokeStyle="#FF0000";ctx.strokeRect(this.x,this.y,this.w,this.h);}},click:function()
{console.log("Clicked "+this.x+" : "+this.y);if(this.callback){this.callback(this);}
else
console.log("Button is missing callback!");}});});
// lib/game/menus/text-menu-item.js
ig.baked=true;ig.module('game.menus.text-menu-item').requires('impact.entity','game.menus.menu-item-abstract').defines(function()
{var font=new ig.Font('media/font.png');TextMenuItem=AbstractMenuItem.extend({init:function(x,y,w,h,text,callback)
{this.parent(x,y,w,h,callback);this.text=text;this.textHeight=font.heightForString(this.text);console.log("TextMenuItem Created");},update:function()
{this.parent();},draw:function()
{this.parent();font.draw(this.text,this.x+this.w/2,this.y+this.h/2-this.textHeight/2,ig.Font.ALIGN.CENTER);}});});
// lib/game/menus/shop-menu-item.js
ig.baked=true;ig.module('game.menus.shop-menu-item').requires('game.menus.menu-item-abstract').defines(function()
{var font=new ig.Font('media/font.png');ShopMenuItem=AbstractMenuItem.extend({init:function(x,y,w,h,title,image,cost,callback)
{this.parent(x,y,w,h,callback);this.title=title;this.image=new Image;this.image.src=image;this.coin=new Image;this.coin.src="media/coin_shop.png";this.cost=cost;this.textHeight=font.heightForString(this.title);this.textWidth=font.widthForString(this.title);this.costTextWidth=font.widthForString(""+this.cost);console.log("ShopMenuItem Created");},update:function()
{this.parent();},draw:function()
{this.parent();font.draw(this.title,this.x+this.w/2,this.y,ig.Font.ALIGN.CENTER);var ctx=ig.system.context;ctx.drawImage(this.image,this.x+this.w/2-this.image.width/2,this.y+this.h/2-this.image.height/2);ctx.drawImage(this.coin,this.x+this.w/2-this.costTextWidth/2-this.coin.width,this.y+this.h-this.coin.height);font.draw(this.cost,this.x+this.w/2+10,this.y+this.h-this.textHeight-10,ig.Font.ALIGN.CENTER);}});});
// lib/game/menus/menu-abstract.js
ig.baked=true;ig.module('game.menus.menu-abstract').requires('impact.entity','game.menus.text-menu-item','game.menus.shop-menu-item').defines(function()
{AbstractMenu=ig.Entity.extend({x:0,y:0,w:0,h:0,selected:0,menuItems:[],canSelect:0,init:function(x,y,settings)
{this.parent(x,y,settings);this.x=x-settings.w/2;this.y=y-settings.h/2;this.w=settings.w;this.h=settings.h;console.log("Abstract Menu Created");},createButton:function(x,y,w,h,type,settings,callback)
{if(x<=1)
{x=x*this.x;}
if(y<=1)
{y=y*this.y;}
if(w<=1)
{w=w*this.w;}
if(h<=1)
{h=h*this.h;}
x+=this.x;y+=this.y;if(type=="text")
{this.menuItems.push(new TextMenuItem(x,y,w,h,settings.text,callback));}
else if(type=="shop")
{this.menuItems.push(new ShopMenuItem(x,y,w,h,settings.title,settings.image,settings.cost,callback));}
else{alert("Cannot make button of type "+type);}
if(this.menuItems.length==1)
{this.menuItems[0].selected=1;}},update:function()
{if(!ig.input.state('enter')&&this.canSelect==0)
{this.canSelect=1;}
if(ig.input.pressed('enter')&&this.canSelect)
{console.log(this);this.menuItems[this.selected].click();}},clearSelected:function()
{for(i=0;i<this.menuItems.length;i++){this.menuItems[i].selected=false;}},draw:function()
{var ctx=ig.system.context;for(i=0;i<this.menuItems.length;i++){this.menuItems[i].draw();}}});});
// lib/game/menus/menu-grid-abstract.js
ig.baked=true;ig.module('game.menus.menu-grid-abstract').requires('game.menus.menu-abstract').defines(function()
{AbstractGridMenu=AbstractMenu.extend({init:function(x,y,settings)
{this.parent(x,y,settings);this.gridX=settings.gridX||1;console.log("Abstract Grid Menu Created");},update:function()
{this.parent();if(ig.input.pressed('up'))
{if(this.selected-this.gridX>=0&&this.menuItems[this.selected-this.gridX]!=null)
this.selected-=this.gridX;this.clearSelected();this.menuItems[this.selected].selected=1;}
if(ig.input.pressed('down'))
{if(this.selected+this.gridX<this.menuItems.length&&this.menuItems[this.selected+this.gridX]!=null)
{this.selected+=this.gridX;}
this.clearSelected();this.menuItems[this.selected].selected=1;}
if(ig.input.pressed('right'))
{if(this.selected%this.gridX+1<this.gridX&&this.menuItems[this.selected+1]!=null)
this.selected++;this.clearSelected();this.menuItems[this.selected].selected=1;}
if(ig.input.pressed('left'))
{if(this.selected%this.gridX!=0&&this.menuItems[this.selected-1]!=null)
this.selected--;this.clearSelected();this.menuItems[this.selected].selected=1;}},});});
// lib/game/menus/main-menu.js
ig.baked=true;ig.module('game.menus.main-menu').requires('game.menus.menu-grid-abstract').defines(function()
{MainMenu=AbstractGridMenu.extend({init:function(x,y,settings)
{this.parent(x,y,settings);this.createButton(.15,0,.7,70,"text",{text:"Campaign"},ig.game.stateManager.startCampaign);this.createButton(.15,100,.7,70,"text",{text:"Arcade"},ig.game.stateManager.startArcade);console.log("Main Menu Created");},draw:function()
{this.parent();}});});
// lib/game/states/main-menu-state.js
ig.baked=true;ig.module('game.states.main-menu-state').requires('game.states.abstract-state','game.menus.main-menu').defines(function()
{MainMenuState=AbstractState.extend({init:function()
{console.log("MainMenuState Created");},start:function()
{this.parent();console.log("Main Menu Started");this.mainMenu=ig.game.spawnEntity(MainMenu,ig.system.width/2,ig.system.height/2,{w:400,h:400});},kill:function()
{this.parent();console.log("Main Menu Killed");if(this.mainMenu)
this.mainMenu.kill();},update:function()
{},draw:function()
{}});});
// lib/game/menus/options-menu.js
ig.baked=true;ig.module('game.menus.options-menu').requires('game.menus.menu-grid-abstract').defines(function()
{OptionMenu=AbstractGridMenu.extend({init:function(x,y,settings)
{this.parent(x,y,settings);this.createButton(.15,0,.7,70,"text",{text:"Music"},null);this.createButton(.15,100,.7,70,"text",{text:"Sound"},null);this.createButton(.15,200,.7,70,"text",{text:"Back to Menu"},ig.game.stateManager.mainMenu);console.log("Option Menu Created");},draw:function()
{this.parent();}});});
// lib/game/states/option-menu-state.js
ig.baked=true;ig.module('game.states.option-menu-state').requires('game.states.abstract-state','game.menus.options-menu').defines(function()
{OptionMenuState=AbstractState.extend({init:function()
{console.log("OptionMenuState Created");},start:function()
{this.parent();console.log("OptionMenuState Started");this.optionMenu=ig.game.spawnEntity(OptionMenu,400,100,{w:400,h:600});},kill:function()
{this.parent();console.log("OptionMenuState Killed");if(this.optionMenu)
this.optionMenu.kill();},update:function()
{},draw:function()
{}});});
// lib/game/states/help-menu-state.js
ig.baked=true;ig.module('game.states.help-menu-state').requires('game.states.abstract-state').defines(function()
{HelpMenuState=AbstractState.extend({init:function()
{console.log("HelpMenuState Created");},start:function()
{this.parent();console.log("HelpMenuState Started");},kill:function()
{this.parent();console.log("HelpMenuState Killed");},update:function()
{},draw:function()
{}});});
// lib/game/properties/shipProperties.js
ig.baked=true;ig.module('game.properties.shipProperties').defines(function()
{ShipProperties=ig.Class.extend({engineLevel:1,weaponLevel:1,shieldLevel:1,ammoLevel:1,fuelLevel:1,fuel:20,fuelMax:20,ammo:20,ammoMax:20,shield:0,init:function()
{console.log("ShipProperties Created");},upgradeEngine:function()
{this.engineLevel++;},upgradeWeapon:function()
{this.weaponLevel++;},upgradeShield:function()
{this.shieldLevel++;},upgradeAmmo:function()
{this.ammoLevel++;this.ammoMax=this.ammoLevel*10;},upgradeFuel:function()
{this.fuelLevel++;this.fuelMax=this.fuelLevel*10;},reset:function()
{this.fuel=this.fuelMax;this.ammo=this.ammoMax;this.shield=this.shieldLevel-1;}});});
// lib/game/states/abstract-game-play-state.js
ig.baked=true;ig.module('game.states.abstract-game-play-state').requires('game.states.abstract-state','game.properties.shipProperties').defines(function()
{AbstractGamePlayState=AbstractState.extend({gravity:0,ship:null,coins:0,coinImage:new ig.Image('media/coin.png'),font:new ig.Font('media/score.font.png'),init:function()
{console.log("AbstractGamePlayState Created");this.shipProperties=new ShipProperties();},start:function()
{this.parent();console.log("AbstractGamePlayState Started");this.asteroidManager=new AsteroidManager();},kill:function()
{this.parent();if(this.ship)
this.ship.kill();if(this.asteroidManager)
this.asteroidManager.kill();console.log("AbstractGamePlayState Killed");},update:function()
{this.parent();this.asteroidManager.update();if(ig.input.pressed('p'))
{stateManager.pauseGame();}},draw:function()
{this.parent();this.coinImage.drawTile(5,5,0,32);this.font.draw('x '+this.coins,45,5);}});});
// lib/game/states/game-campaign-play-state.js
ig.baked=true;ig.module('game.states.game-campaign-play-state').requires('game.states.abstract-game-play-state').defines(function()
{GamePlayCampaignState=AbstractGamePlayState.extend({font:new ig.Font('media/font.png'),ammoImg:new ig.Image('media/ammo_ui.png'),fuelImg:new ig.Image('media/fuel_ui.png'),shieldImg:new ig.Image('media/shield_ui.png'),level:0,maxLevel:15,init:function()
{this.parent();console.log("GamePlayCampaignState Created");},start:function()
{this.parent();console.log("GamePlayCampaignState Started");},kill:function()
{this.parent();console.log("GamePlayCampaignState Killed");},startNewRound:function(){this.newRound();this.startRound();},newRound:function()
{this.level++;},startRound:function()
{this.shipProperties.reset();this.ship=ig.game.spawnEntity(ShipEntity,ig.system.width/2,ig.system.height/2);this.asteroidManager.killAllAsteroids();this.asteroidManager.startSpawn(this.level,true);console.log("New Round "+this.level+" Started");},update:function()
{this.parent();if(stateManager.gameMode.shipProperties.fuel<=0)
{this.ship.health=0;}
if(this.ship.health<=0)
{this.ship.kill();console.log("Ship died");stateManager.startStore();this.asteroidManager.killAllAsteroids();this.asteroidManager.stopSpawn();}
else if(!this.asteroidManager.isRunning&&!this.asteroidManager.asteroidsAlive&&!this.asteroidManager.coinCounter){if(this.level>=this.maxLevel){console.log("hiiiiii")
stateManager.wonGame();}
else{stateManager.startStore();this.asteroidManager.killAllAsteroids();this.asteroidManager.stopSpawn();this.ship.kill();this.newRound();}}},draw:function()
{this.parent();this.ammoImg.draw(100,5);this.font.draw(' x '+this.shipProperties.ammo,180,5,ig.Font.ALIGN.CENTER);this.shieldImg.draw(230,5);this.font.draw(' x '+this.shipProperties.shield,295,5,ig.Font.ALIGN.CENTER);this.fuelImg.draw(340,5);var ctx=ig.system.context;ctx.fillStyle="#0000ff";ctx.fillRect(430,9,202,17);ctx.fillStyle="#ff0000";ctx.fillRect(431,10,200,15);ctx.fillStyle="#00ff00";ctx.fillRect(431,10,(this.shipProperties.fuel/this.shipProperties.fuelMax)*200,15);this.font.draw('Level: '+this.level,ig.system.width-100,5);}});});
// lib/game/states/game-arcade-play-state.js
ig.baked=true;ig.module('game.states.game-arcade-play-state').requires('game.states.abstract-game-play-state').defines(function()
{GamePlayArcadeState=AbstractGamePlayState.extend({init:function()
{this.parent();console.log("GamePlayArcadeState Created");},start:function()
{this.parent();this.asteroidManager.startSpawn(5,false);this.ship=ig.game.spawnEntity(ShipEntity,ig.system.width/2,ig.system.height/2);this.ship.shipProperties=this.shipProperties;console.log("GamePlayArcadeState Started");},kill:function()
{this.parent();console.log("GamePlayArcadeState Killed");},update:function()
{this.parent();if(this.ship.health<=0)
{stateManager.endGame();}},draw:function()
{this.parent();}});});
// lib/game/states/game-pause-state.js
ig.baked=true;ig.module('game.states.game-pause-state').requires('game.states.abstract-state').defines(function()
{var font=new ig.Font('media/font.png');GamePauseState=AbstractState.extend({init:function()
{console.log("GamePauseState Created");},start:function()
{this.parent();console.log("Game Pause Started");var ctx=ig.system.context;ctx.fillStyle="rgba(0,0,0,.75";ctx.fillRect(0,0,ig.system.width,ig.system.height);font.draw("Game Paused. Press 'P' to resume",ig.system.width/2,ig.system.height/2,ig.Font.ALIGN.CENTER);},kill:function()
{this.parent();console.log("Game Pause Killed");},update:function()
{if(ig.input.pressed('p'))
{stateManager.unpauseGame();}},draw:function()
{}});});
// lib/game/states/game-won-state.js
ig.baked=true;ig.module('game.states.game-won-state').requires('game.states.abstract-state').defines(function()
{GameWonState=AbstractState.extend({font:new ig.Font('media/font.png'),init:function()
{console.log("GameWonState Created");},start:function()
{this.parent();},kill:function()
{this.parent();console.log("Game Won Killed");},update:function()
{if(ig.input.state('enter'))
{stateManager.mainMenu();}},draw:function()
{var ctx=ig.system.context;ctx.fillStyle="rgba(0,0,0,.75";ctx.fillRect(0,0,ig.system.width,ig.system.height);this.font.draw("You beat the campaign mode!!! Press Enter to continue!",ig.system.width/2,ig.system.height/2,ig.Font.ALIGN.CENTER);}});});
// lib/game/states/game-over-state.js
ig.baked=true;ig.module('game.states.game-over-state').requires('game.states.abstract-state').defines(function()
{GameOverState=AbstractState.extend({font:new ig.Font('media/font.png'),init:function()
{console.log("GameOverState Created");},start:function()
{this.parent();console.log("Game Over Started");},kill:function()
{this.parent();console.log("Game Over Killed");},update:function()
{if(ig.input.state('enter'))
{stateManager.mainMenu();}},draw:function()
{var ctx=ig.system.context;ctx.fillStyle="rgba(0,0,0,.75";ctx.fillRect(0,0,ig.system.width,ig.system.height);this.font.draw("You scored "+stateManager.gameMode.coins+". Press Enter to continue!",ig.system.width/2,ig.system.height/2,ig.Font.ALIGN.CENTER);}});});
// lib/game/states/store-state.js
ig.baked=true;ig.module('game.states.store-state').requires('game.states.abstract-state').defines(function()
{StoreState=AbstractState.extend({init:function()
{console.log("StoreState Created");},start:function()
{this.parent();this.shopMenu=ig.game.spawnEntity(ShopMenu,ig.system.width/2,ig.system.height/2,{w:650,h:400});console.log("Store State Started");},kill:function()
{this.parent();if(this.shopMenu)
this.shopMenu.kill();console.log("Store State Killed");},update:function()
{},draw:function()
{}});});
// lib/game/states/state-manager.js
ig.baked=true;ig.module('game.states.state-manager').requires('game.states.main-menu-state','game.states.option-menu-state','game.states.help-menu-state','game.states.game-campaign-play-state','game.states.game-arcade-play-state','game.states.game-pause-state','game.states.game-won-state','game.states.game-over-state','game.states.store-state').defines(function()
{StateManager=ig.Class.extend({init:function()
{console.log("StateManager Created");stateManager=this;},start:function()
{this.mainMenuState=new MainMenuState();this.helpMenuState=new HelpMenuState();this.optionMenuState=new OptionMenuState();this.gamePlayCampaignState=new GamePlayCampaignState();this.gamePlayArcadeState=new GamePlayArcadeState();this.gamePauseState=new GamePauseState();this.gameWonState=new GameWonState();this.gameOverState=new GameOverState();this.storeState=new StoreState();this.mainMenu();},update:function()
{if(stateManager.currentState!=null)
stateManager.currentState.update();},draw:function()
{if(stateManager.currentState!=null)
stateManager.currentState.draw();},isGamePaused:function()
{return stateManager.currentState==stateManager.gamePauseState;},startCampaign:function()
{stateManager.gamePlayCampaignState=new GamePlayCampaignState();stateManager.gameMode=stateManager.gamePlayCampaignState;stateManager.changeState(stateManager.gamePlayCampaignState);stateManager.gamePlayCampaignState.startNewRound();},startArcade:function()
{stateManager.gamePlayArcadeState=new GamePlayArcadeState();stateManager.gameMode=stateManager.gamePlayArcadeState;stateManager.changeState(stateManager.gamePlayArcadeState);},endShop:function()
{stateManager.currentState=stateManager.gameMode;stateManager.storeState.kill();stateManager.gameMode.startRound();stateManager.currentState=stateManager.gamePlayCampaignState},endGame:function()
{stateManager.changeState(stateManager.gameOverState);},mainMenu:function()
{stateManager.changeState(stateManager.mainMenuState);},wonGame:function()
{stateManager.changeState(stateManager.gameWonState);},pauseGame:function()
{stateManager.gamePauseState.currentGame=stateManager.currentState;stateManager.currentState=stateManager.gamePauseState;stateManager.gamePauseState.start();},unpauseGame:function()
{stateManager.currentState=stateManager.gamePauseState.currentGame;stateManager.gamePauseState.kill();},startOptions:function()
{stateManager.changeState(stateManager.optionMenuState);},startHelp:function()
{stateManager.changeState(stateManager.helpMenuState);},startStore:function()
{stateManager.changeState(stateManager.storeState);},changeState:function(newState)
{if(stateManager.currentState!=null)
stateManager.currentState.kill();stateManager.currentState=newState;newState.start();},isArcade:function(){return stateManager.currentState==stateManager.gamePlayArcadeState;}});});
// lib/game/menus/shop-menu.js
ig.baked=true;ig.module('game.menus.shop-menu').requires('game.menus.menu-grid-abstract').defines(function()
{ShopMenu=AbstractGridMenu.extend({coinImage:new ig.Image('media/coin.png'),font:new ig.Font('media/score.font.png'),init:function(x,y,settings)
{settings.gridX=3;this.parent(x,y,settings);properties=stateManager.gameMode.shipProperties;var costPerLevel=4;this.createButton(0,0,150,150,"shop",{title:"Weapon",cost:costPerLevel*stateManager.gameMode.shipProperties.weaponLevel,image:"media/weapon_shop.png",level:stateManager.gameMode.shipProperties.weaponLevel},function(button){if(stateManager.gameMode.coins>=costPerLevel*stateManager.gameMode.shipProperties.weaponLevel)
{stateManager.gameMode.coins-=costPerLevel*stateManager.gameMode.shipProperties.weaponLevel;properties.upgradeWeapon();button.cost=costPerLevel*stateManager.gameMode.shipProperties.weaponLevel;console.log(JSON.stringify(stateManager.gameMode.shipProperties));}});this.createButton(200,0,150,150,"shop",{title:"Shield",cost:costPerLevel*stateManager.gameMode.shipProperties.shieldLevel,image:"media/shield_shop.png",level:properties.shieldLevel},function(button){if(stateManager.gameMode.coins>=costPerLevel*stateManager.gameMode.shipProperties.shieldLevel)
{stateManager.gameMode.coins-=costPerLevel*stateManager.gameMode.shipProperties.shieldLevel;properties.upgradeShield();button.cost=costPerLevel*stateManager.gameMode.shipProperties.shieldLevel;console.log(JSON.stringify(stateManager.gameMode.shipProperties));}});this.createButton(400,0,150,50,"text",{text:"Continue"},stateManager.endShop);this.createButton(0,200,150,150,"shop",{title:"Engine",cost:costPerLevel*stateManager.gameMode.shipProperties.engineLevel,image:"media/engine_shop.png",level:properties.engineLevel},function(button){if(stateManager.gameMode.coins>=costPerLevel*stateManager.gameMode.shipProperties.engineLevel)
{stateManager.gameMode.coins-=costPerLevel*stateManager.gameMode.shipProperties.engineLevel;properties.upgradeEngine();button.cost=costPerLevel*stateManager.gameMode.shipProperties.engineLevel;console.log(JSON.stringify(stateManager.gameMode.shipProperties));}});this.createButton(200,200,150,150,"shop",{title:"Ammo",cost:costPerLevel*stateManager.gameMode.shipProperties.ammoLevel,image:"media/ammo_shop.png",level:properties.ammoLevel,},function(button){if(stateManager.gameMode.coins>=costPerLevel*stateManager.gameMode.shipProperties.ammoLevel)
{stateManager.gameMode.coins-=costPerLevel*stateManager.gameMode.shipProperties.ammoLevel;properties.upgradeAmmo();button.cost=costPerLevel*stateManager.gameMode.shipProperties.ammoLevel;console.log(JSON.stringify(stateManager.gameMode.shipProperties));}});this.createButton(400,200,150,150,"shop",{title:"Fuel",cost:costPerLevel*stateManager.gameMode.shipProperties.fuelLevel,image:"media/fuel_shop.png",level:properties.fuelLevel,},function(button){if(stateManager.gameMode.coins>=costPerLevel*stateManager.gameMode.shipProperties.fuelLevel)
{stateManager.gameMode.coins-=costPerLevel*stateManager.gameMode.shipProperties.fuelLevel;properties.upgradeFuel();button.cost=costPerLevel*stateManager.gameMode.shipProperties.fuelLevel;console.log(JSON.stringify(stateManager.gameMode.shipProperties));}});console.log("Main Menu Created");},draw:function()
{this.parent();var xOffset=425;var yOffset=100;this.coinImage.drawTile(this.x+xOffset,this.y+yOffset,0,32);this.font.draw('x '+stateManager.gameMode.coins,this.x+45+xOffset,this.y+yOffset);}});});
// lib/game/main.js
ig.baked=true;ig.module('game.main').requires('impact.game','impact.entity','impact.entity-pool','impact.image','impact.sound','impact.font','game.entities.asteroids.asteroid-large','game.entities.asteroids.asteroid-medium','game.entities.asteroids.asteroid-small','game.entities.asteroids.asteroid-manager','game.entities.ship','game.entities.laser','game.entities.explosion','game.entities.coin','game.states.state-manager','game.menus.shop-menu').defines(function(){Asteroids=ig.Game.extend({init:function(){this.stateManager=new StateManager();this.stateManager.start();ig.input.bind(ig.KEY.LEFT_ARROW,'left');ig.input.bind(ig.KEY.RIGHT_ARROW,'right');ig.input.bind(ig.KEY.UP_ARROW,'up');ig.input.bind(ig.KEY.DOWN_ARROW,'down');ig.input.bind(ig.KEY.SPACE,'space');ig.input.bind(ig.KEY.ENTER,'enter');ig.input.bind(ig.KEY.P,'p');ig.EntityPool.enableFor(LaserEntity);ig.EntityPool.enableFor(ExplosionEntity);},update:function(){if(this.stateManager.isGamePaused()==false)
this.parent();if(ig.input.pressed('p'))
{ig.game.spawnEntity(ShopMenu,ig.system.width/2,ig.system.height/2,{w:400,h:400});}
this.stateManager.update();},draw:function(){if(this.stateManager.isGamePaused()==false)
this.parent();this.stateManager.draw();},});ig.main('#canvas',Asteroids,60,window.innerWidth,window.innerHeight,1);});