melonjs 10.2.0 → 10.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. package/README.md +1 -1
  2. package/dist/melonjs.js +4435 -4283
  3. package/dist/melonjs.min.js +4 -4
  4. package/dist/melonjs.module.d.ts +3348 -3833
  5. package/dist/melonjs.module.js +4025 -3920
  6. package/package.json +13 -14
  7. package/src/audio/audio.js +45 -45
  8. package/src/camera/camera2d.js +78 -101
  9. package/src/entity/draggable.js +21 -29
  10. package/src/entity/droptarget.js +24 -31
  11. package/src/entity/entity.js +34 -38
  12. package/src/game.js +8 -8
  13. package/src/{shapes → geometries}/ellipse.js +46 -46
  14. package/src/{shapes → geometries}/line.js +14 -14
  15. package/src/{shapes → geometries}/poly.js +103 -54
  16. package/src/{shapes → geometries}/rectangle.js +73 -120
  17. package/src/index.js +18 -19
  18. package/src/input/gamepad.js +20 -20
  19. package/src/input/input.js +3 -3
  20. package/src/input/keyboard.js +122 -124
  21. package/src/input/pointer.js +102 -62
  22. package/src/input/pointerevent.js +97 -42
  23. package/src/lang/deprecated.js +29 -18
  24. package/src/level/level.js +34 -26
  25. package/src/level/tiled/TMXGroup.js +12 -13
  26. package/src/level/tiled/TMXLayer.js +41 -42
  27. package/src/level/tiled/TMXObject.js +76 -70
  28. package/src/level/tiled/TMXTile.js +13 -15
  29. package/src/level/tiled/TMXTileMap.js +26 -25
  30. package/src/level/tiled/TMXTileset.js +14 -15
  31. package/src/level/tiled/TMXTilesetGroup.js +5 -6
  32. package/src/level/tiled/TMXUtils.js +13 -11
  33. package/src/level/tiled/renderer/TMXHexagonalRenderer.js +3 -4
  34. package/src/level/tiled/renderer/TMXIsometricRenderer.js +3 -4
  35. package/src/level/tiled/renderer/TMXOrthogonalRenderer.js +2 -3
  36. package/src/level/tiled/renderer/TMXRenderer.js +18 -19
  37. package/src/level/tiled/renderer/TMXStaggeredRenderer.js +2 -3
  38. package/src/loader/loader.js +46 -40
  39. package/src/loader/loadingscreen.js +7 -7
  40. package/src/math/color.js +68 -88
  41. package/src/math/math.js +33 -33
  42. package/src/math/matrix2.js +70 -71
  43. package/src/math/matrix3.js +90 -91
  44. package/src/math/observable_vector2.js +91 -92
  45. package/src/math/observable_vector3.js +110 -106
  46. package/src/math/vector2.js +116 -104
  47. package/src/math/vector3.js +129 -110
  48. package/src/particles/emitter.js +116 -126
  49. package/src/particles/particle.js +4 -5
  50. package/src/particles/particlecontainer.js +2 -3
  51. package/src/physics/body.js +82 -83
  52. package/src/physics/bounds.js +64 -66
  53. package/src/physics/collision.js +21 -22
  54. package/src/physics/detector.js +13 -13
  55. package/src/physics/quadtree.js +26 -25
  56. package/src/physics/sat.js +21 -21
  57. package/src/physics/world.js +23 -22
  58. package/src/plugin/plugin.js +12 -13
  59. package/src/renderable/GUI.js +20 -26
  60. package/src/renderable/collectable.js +6 -7
  61. package/src/renderable/colorlayer.js +11 -12
  62. package/src/renderable/container.js +98 -81
  63. package/src/renderable/imagelayer.js +33 -35
  64. package/src/renderable/nineslicesprite.js +15 -16
  65. package/src/renderable/renderable.js +112 -111
  66. package/src/renderable/sprite.js +71 -58
  67. package/src/renderable/trigger.js +17 -19
  68. package/src/state/stage.js +14 -15
  69. package/src/state/state.js +78 -78
  70. package/src/system/device.js +137 -180
  71. package/src/system/event.js +116 -104
  72. package/src/system/pooling.js +15 -15
  73. package/src/system/save.js +9 -6
  74. package/src/system/timer.js +33 -33
  75. package/src/text/bitmaptext.js +39 -46
  76. package/src/text/bitmaptextdata.js +14 -15
  77. package/src/text/text.js +55 -58
  78. package/src/tweens/easing.js +5 -5
  79. package/src/tweens/interpolation.js +5 -5
  80. package/src/tweens/tween.js +49 -40
  81. package/src/utils/agent.js +12 -11
  82. package/src/utils/array.js +8 -8
  83. package/src/utils/file.js +7 -7
  84. package/src/utils/function.js +8 -8
  85. package/src/utils/string.js +19 -19
  86. package/src/utils/utils.js +23 -23
  87. package/src/video/canvas/canvas_renderer.js +127 -128
  88. package/src/video/renderer.js +69 -69
  89. package/src/video/texture.js +80 -82
  90. package/src/video/texture_cache.js +2 -4
  91. package/src/video/video.js +38 -38
  92. package/src/video/webgl/buffer/vertex.js +11 -3
  93. package/src/video/webgl/glshader.js +31 -32
  94. package/src/video/webgl/webgl_compositor.js +145 -127
  95. package/src/video/webgl/webgl_renderer.js +196 -175
@@ -1,11 +1,11 @@
1
1
  /*!
2
- * melonJS Game Engine - v10.2.0
2
+ * melonJS Game Engine - v10.3.0
3
3
  * http://www.melonjs.org
4
4
  * melonjs is licensed under the MIT License.
5
5
  * http://www.opensource.org/licenses/mit-license
6
- * @copyright (C) 2011 - 2021 Olivier Biot
6
+ * @copyright (C) 2011 - 2022 Olivier Biot
7
7
  */
8
- !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).me={})}(this,(function(exports){"use strict";function capitalize(t){return t.charAt(0).toUpperCase()+t.slice(1)}function trimLeft(t){return t.replace(/^\s+/,"")}function trimRight(t){return t.replace(/\s+$/,"")}function isNumeric(t){return"string"==typeof t&&(t=t.trim()),!isNaN(t)&&/[+-]?([0-9]*[.])?[0-9]+/.test(t)}function isBoolean(t){var e=t.trim();return"true"===e||"false"===e}function toHex$1(t){for(var e="",i=0;i<t.length;)e+=t.charCodeAt(i++).toString(16);return e}"undefined"!=typeof window&&void 0===window.console&&(window.console={},window.console.log=function(){},window.console.assert=function(){},window.console.warn=function(){},window.console.error=function(){alert(Array.prototype.slice.call(arguments).join(", "))});var stringUtils=Object.freeze({__proto__:null,capitalize:capitalize,trimLeft:trimLeft,trimRight:trimRight,isNumeric:isNumeric,isBoolean:isBoolean,toHex:toHex$1}),vendors$1=["ms","MS","moz","webkit","o"];function prefixed(t,e){if(t in(e=e||window))return e[t];var i,o=capitalize(t);return vendors$1.some((function(t){var r=t+o;return i=r in e?e[r]:void 0})),i}function setPrefixed(t,e,i){if(t in(i=i||window))i[t]=e;else{var o=capitalize(t);vendors$1.some((function(t){var r=t+o;return r in i&&(i[r]=e,!0)}))}}var agentUtils=Object.freeze({__proto__:null,prefixed:prefixed,setPrefixed:setPrefixed}),DEG_TO_RAD=Math.PI/180,RAD_TO_DEG=180/Math.PI,TAU=2*Math.PI,ETA=.5*Math.PI,EPSILON=1e-6;function isPowerOfTwo(t){return 0==(t&t-1)}function nextPowerOfTwo(t){return t--,t|=t>>1,t|=t>>2,t|=t>>4,t|=t>>8,t|=t>>16,++t}function degToRad(t){return t*DEG_TO_RAD}function radToDeg(t){return t*RAD_TO_DEG}function clamp(t,e,i){return t<e?e:t>i?i:+t}function random$1(t,e){return~~(Math.random()*(e-t))+t}function randomFloat(t,e){return Math.random()*(e-t)+t}function weightedRandom$1(t,e){return~~(Math.pow(Math.random(),2)*(e-t))+t}function round(t,e){void 0===e&&(e=0);var i=Math.pow(10,e);return~~(.5+t*i)/i}function toBeCloseTo(t,e,i){return void 0===i&&(i=2),Math.abs(t-e)<Math.pow(10,-i)/2}var math=Object.freeze({__proto__:null,DEG_TO_RAD:DEG_TO_RAD,RAD_TO_DEG:RAD_TO_DEG,TAU:TAU,ETA:ETA,EPSILON:EPSILON,isPowerOfTwo:isPowerOfTwo,nextPowerOfTwo:nextPowerOfTwo,degToRad:degToRad,radToDeg:radToDeg,clamp:clamp,random:random$1,randomFloat:randomFloat,weightedRandom:weightedRandom$1,round:round,toBeCloseTo:toBeCloseTo});function remove(t,e){var i=Array.prototype.indexOf.call(t,e);return-1!==i&&Array.prototype.splice.call(t,i,1),t}function random(t){return t[random$1(0,t.length)]}function weightedRandom(t){return t[weightedRandom$1(0,t.length)]}var arrayUtils=Object.freeze({__proto__:null,remove:remove,random:random,weightedRandom:weightedRandom}),REMOVE_PATH=/^.*(\\|\/|\:)/,REMOVE_EXT=/\.[^\.]*$/;function getBasename(t){return t.replace(REMOVE_PATH,"").replace(REMOVE_EXT,"")}function getExtension(t){return t.substring(t.lastIndexOf(".")+1,t.length)}var fileUtils=Object.freeze({__proto__:null,getBasename:getBasename,getExtension:getExtension});function defer(t,e){for(var i=[],o=arguments.length-2;o-- >0;)i[o]=arguments[o+2];return setTimeout.apply(void 0,[t.bind(e),.01].concat(i))}function throttle(t,e,i){var o,r=window.performance.now();return"boolean"!=typeof i&&(i=!1),function(){var n=window.performance.now(),s=n-r,a=arguments;if(!(s<e))return r=n,t.apply(null,a);!1===i&&(clearTimeout(o),o=setTimeout((function(){return r=n,t.apply(null,a)}),s))}}var fnUtils=Object.freeze({__proto__:null,defer:defer,throttle:throttle}),objectClass={},instance_counter=0,pool={register:function(t,e,i){if(void 0===i&&(i=!1),void 0===e)throw new Error("Cannot register object '"+t+"', invalid class");objectClass[t]={class:e,pool:i?[]:void 0}},pull:function(t){for(var e=arguments,i=new Array(arguments.length),o=0;o<arguments.length;o++)i[o]=e[o];var r=objectClass[t];if(r){var n,s=r.class,a=r.pool;return a&&(n=a.pop())?(i.shift(),"function"==typeof n.onResetEvent&&n.onResetEvent.apply(n,i),instance_counter--):(i[0]=s,n=new(s.bind.apply(s,i)),a&&(n.className=t)),n}throw new Error("Cannot instantiate object of type '"+t+"'")},purge:function(){for(var t in objectClass)objectClass[t]&&(objectClass[t].pool=[]);instance_counter=0},push:function(t,e){if(void 0===e&&(e=!0),!this.poolable(t)){if(!0===e)throw new Error("me.pool: object "+t+" cannot be recycled");return!1}return objectClass[t.className].pool.push(t),instance_counter++,!0},exists:function(t){return t in objectClass},poolable:function(t){var e=t.className;return void 0!==e&&"function"==typeof t.onResetEvent&&e in objectClass&&"undefined"!==objectClass[e].pool},getInstanceCount:function(){return instance_counter}},Vector2d=function(){for(var t,e=[],i=arguments.length;i--;)e[i]=arguments[i];(t=this).onResetEvent.apply(t,e)};Vector2d.prototype.onResetEvent=function(t,e){return void 0===t&&(t=0),void 0===e&&(e=0),this.x=t,this.y=e,this},Vector2d.prototype._set=function(t,e){return this.x=t,this.y=e,this},Vector2d.prototype.set=function(t,e){if(t!==+t||e!==+e)throw new Error("invalid x,y parameters (not a number)");return this._set(t,e)},Vector2d.prototype.setZero=function(){return this.set(0,0)},Vector2d.prototype.setV=function(t){return this._set(t.x,t.y)},Vector2d.prototype.add=function(t){return this._set(this.x+t.x,this.y+t.y)},Vector2d.prototype.sub=function(t){return this._set(this.x-t.x,this.y-t.y)},Vector2d.prototype.scale=function(t,e){return this._set(this.x*t,this.y*(void 0!==e?e:t))},Vector2d.prototype.toIso=function(){return this._set(this.x-this.y,.5*(this.x+this.y))},Vector2d.prototype.to2d=function(){return this._set(this.y+this.x/2,this.y-this.x/2)},Vector2d.prototype.scaleV=function(t){return this._set(this.x*t.x,this.y*t.y)},Vector2d.prototype.div=function(t){return this._set(this.x/t,this.y/t)},Vector2d.prototype.abs=function(){return this._set(this.x<0?-this.x:this.x,this.y<0?-this.y:this.y)},Vector2d.prototype.clamp=function(t,e){return new Vector2d(clamp(this.x,t,e),clamp(this.y,t,e))},Vector2d.prototype.clampSelf=function(t,e){return this._set(clamp(this.x,t,e),clamp(this.y,t,e))},Vector2d.prototype.minV=function(t){return this._set(this.x<t.x?this.x:t.x,this.y<t.y?this.y:t.y)},Vector2d.prototype.maxV=function(t){return this._set(this.x>t.x?this.x:t.x,this.y>t.y?this.y:t.y)},Vector2d.prototype.floor=function(){return new Vector2d(Math.floor(this.x),Math.floor(this.y))},Vector2d.prototype.floorSelf=function(){return this._set(Math.floor(this.x),Math.floor(this.y))},Vector2d.prototype.ceil=function(){return new Vector2d(Math.ceil(this.x),Math.ceil(this.y))},Vector2d.prototype.ceilSelf=function(){return this._set(Math.ceil(this.x),Math.ceil(this.y))},Vector2d.prototype.negate=function(){return new Vector2d(-this.x,-this.y)},Vector2d.prototype.negateSelf=function(){return this._set(-this.x,-this.y)},Vector2d.prototype.copy=function(t){return this._set(t.x,t.y)},Vector2d.prototype.equals=function(){var t,e;return 2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),this.x===t&&this.y===e},Vector2d.prototype.normalize=function(){return this.div(this.length()||1)},Vector2d.prototype.perp=function(){return this._set(this.y,-this.x)},Vector2d.prototype.rotate=function(t,e){var i=0,o=0;"object"==typeof e&&(i=e.x,o=e.y);var r=this.x-i,n=this.y-o,s=Math.cos(t),a=Math.sin(t);return this._set(r*s-n*a+i,r*a+n*s+o)},Vector2d.prototype.dotProduct=function(t){return this.x*t.x+this.y*t.y},Vector2d.prototype.length2=function(){return this.dotProduct(this)},Vector2d.prototype.length=function(){return Math.sqrt(this.length2())},Vector2d.prototype.lerp=function(t,e){return this.x+=(t.x-this.x)*e,this.y+=(t.y-this.y)*e,this},Vector2d.prototype.distance=function(t){var e=this.x-t.x,i=this.y-t.y;return Math.sqrt(e*e+i*i)},Vector2d.prototype.angle=function(t){return Math.acos(clamp(this.dotProduct(t)/(this.length()*t.length()),-1,1))},Vector2d.prototype.project=function(t){return this.scale(this.dotProduct(t)/t.length2())},Vector2d.prototype.projectN=function(t){return this.scale(this.dotProduct(t))},Vector2d.prototype.clone=function(){return pool.pull("Vector2d",this.x,this.y)},Vector2d.prototype.toString=function(){return"x:"+this.x+",y:"+this.y};var toHex=function(t){return"0123456789ABCDEF".charAt(t-t%16>>4)+"0123456789ABCDEF".charAt(t%16)},rgbaRx=/^rgba?\((\d+), ?(\d+), ?(\d+)(, ?([\d\.]+))?\)$/,hex3Rx=/^#([\da-fA-F])([\da-fA-F])([\da-fA-F])$/,hex4Rx=/^#([\da-fA-F])([\da-fA-F])([\da-fA-F])([\da-fA-F])$/,hex6Rx=/^#([\da-fA-F]{2})([\da-fA-F]{2})([\da-fA-F]{2})$/,hex8Rx=/^#([\da-fA-F]{2})([\da-fA-F]{2})([\da-fA-F]{2})([\da-fA-F]{2})$/,cssToRGB=new Map;[["black",[0,0,0]],["silver",[192,192,129]],["gray",[128,128,128]],["white",[255,255,255]],["maroon",[128,0,0]],["red",[255,0,0]],["purple",[128,0,128]],["fuchsia",[255,0,255]],["green",[0,128,0]],["lime",[0,255,0]],["olive",[128,128,0]],["yellow",[255,255,0]],["navy",[0,0,128]],["blue",[0,0,255]],["teal",[0,128,128]],["aqua",[0,255,255]],["orange",[255,165,0]],["aliceblue",[240,248,245]],["antiquewhite",[250,235,215]],["aquamarine",[127,255,212]],["azure",[240,255,255]],["beige",[245,245,220]],["bisque",[255,228,196]],["blanchedalmond",[255,235,205]],["blueviolet",[138,43,226]],["brown",[165,42,42]],["burlywood",[222,184,35]],["cadetblue",[95,158,160]],["chartreuse",[127,255,0]],["chocolate",[210,105,30]],["coral",[255,127,80]],["cornflowerblue",[100,149,237]],["cornsilk",[255,248,220]],["crimson",[220,20,60]],["darkblue",[0,0,139]],["darkcyan",[0,139,139]],["darkgoldenrod",[184,134,11]],["darkgray[*]",[169,169,169]],["darkgreen",[0,100,0]],["darkgrey[*]",[169,169,169]],["darkkhaki",[189,183,107]],["darkmagenta",[139,0,139]],["darkolivegreen",[85,107,47]],["darkorange",[255,140,0]],["darkorchid",[153,50,204]],["darkred",[139,0,0]],["darksalmon",[233,150,122]],["darkseagreen",[143,188,143]],["darkslateblue",[72,61,139]],["darkslategray",[47,79,79]],["darkslategrey",[47,79,79]],["darkturquoise",[0,206,209]],["darkviolet",[148,0,211]],["deeppink",[255,20,147]],["deepskyblue",[0,191,255]],["dimgray",[105,105,105]],["dimgrey",[105,105,105]],["dodgerblue",[30,144,255]],["firebrick",[178,34,34]],["floralwhite",[255,250,240]],["forestgreen",[34,139,34]],["gainsboro",[220,220,220]],["ghostwhite",[248,248,255]],["gold",[255,215,0]],["goldenrod",[218,165,32]],["greenyellow",[173,255,47]],["grey",[128,128,128]],["honeydew",[240,255,240]],["hotpink",[255,105,180]],["indianred",[205,92,92]],["indigo",[75,0,130]],["ivory",[255,255,240]],["khaki",[240,230,140]],["lavender",[230,230,250]],["lavenderblush",[255,240,245]],["lawngreen",[124,252,0]],["lemonchiffon",[255,250,205]],["lightblue",[173,216,230]],["lightcoral",[240,128,128]],["lightcyan",[224,255,255]],["lightgoldenrodyellow",[250,250,210]],["lightgray",[211,211,211]],["lightgreen",[144,238,144]],["lightgrey",[211,211,211]],["lightpink",[255,182,193]],["lightsalmon",[255,160,122]],["lightseagreen",[32,178,170]],["lightskyblue",[135,206,250]],["lightslategray",[119,136,153]],["lightslategrey",[119,136,153]],["lightsteelblue",[176,196,222]],["lightyellow",[255,255,224]],["limegreen",[50,205,50]],["linen",[250,240,230]],["mediumaquamarine",[102,205,170]],["mediumblue",[0,0,205]],["mediumorchid",[186,85,211]],["mediumpurple",[147,112,219]],["mediumseagreen",[60,179,113]],["mediumslateblue",[123,104,238]],["mediumspringgreen",[0,250,154]],["mediumturquoise",[72,209,204]],["mediumvioletred",[199,21,133]],["midnightblue",[25,25,112]],["mintcream",[245,255,250]],["mistyrose",[255,228,225]],["moccasin",[255,228,181]],["navajowhite",[255,222,173]],["oldlace",[253,245,230]],["olivedrab",[107,142,35]],["orangered",[255,69,0]],["orchid",[218,112,214]],["palegoldenrod",[238,232,170]],["palegreen",[152,251,152]],["paleturquoise",[175,238,238]],["palevioletred",[219,112,147]],["papayawhip",[255,239,213]],["peachpuff",[255,218,185]],["peru",[205,133,63]],["pink",[255,192,203]],["plum",[221,160,221]],["powderblue",[176,224,230]],["rosybrown",[188,143,143]],["royalblue",[65,105,225]],["saddlebrown",[139,69,19]],["salmon",[250,128,114]],["sandybrown",[244,164,96]],["seagreen",[46,139,87]],["seashell",[255,245,238]],["sienna",[160,82,45]],["skyblue",[135,206,235]],["slateblue",[106,90,205]],["slategray",[112,128,144]],["slategrey",[112,128,144]],["snow",[255,250,250]],["springgreen",[0,255,127]],["steelblue",[70,130,180]],["tan",[210,180,140]],["thistle",[216,191,216]],["tomato",[255,99,71]],["turquoise",[64,224,208]],["violet",[238,130,238]],["wheat",[245,222,179]],["whitesmoke",[245,245,245]],["yellowgreen",[154,205,50]]].forEach((function(t){cssToRGB.set(t[0],t[1])}));var Color=function(){for(var t,e=[],i=arguments.length;i--;)e[i]=arguments[i];(t=this).onResetEvent.apply(t,e)},prototypeAccessors$4={r:{configurable:!0},g:{configurable:!0},b:{configurable:!0},alpha:{configurable:!0}};Color.prototype.onResetEvent=function(t,e,i,o){return void 0===t&&(t=0),void 0===e&&(e=0),void 0===i&&(i=0),void 0===o&&(o=1),void 0===this.glArray&&(this.glArray=new Float32Array([0,0,0,1])),this.setColor(t,e,i,o)},prototypeAccessors$4.r.get=function(){return~~(255*this.glArray[0])},prototypeAccessors$4.r.set=function(t){this.glArray[0]=clamp(~~t||0,0,255)/255},prototypeAccessors$4.g.get=function(){return~~(255*this.glArray[1])},prototypeAccessors$4.g.set=function(t){this.glArray[1]=clamp(~~t||0,0,255)/255},prototypeAccessors$4.b.get=function(){return~~(255*this.glArray[2])},prototypeAccessors$4.b.set=function(t){this.glArray[2]=clamp(~~t||0,0,255)/255},prototypeAccessors$4.alpha.get=function(){return this.glArray[3]},prototypeAccessors$4.alpha.set=function(t){this.glArray[3]=void 0===t?1:clamp(+t,0,1)},Color.prototype.setColor=function(t,e,i,o){return void 0===o&&(o=1),t instanceof Color?(this.glArray.set(t.glArray),t):(this.r=t,this.g=e,this.b=i,this.alpha=o,this)},Color.prototype.clone=function(){return pool.pull("Color",this)},Color.prototype.copy=function(t){return t instanceof Color?(this.glArray.set(t.glArray),this):this.parseCSS(t)},Color.prototype.add=function(t){return this.glArray[0]=clamp(this.glArray[0]+t.glArray[0],0,1),this.glArray[1]=clamp(this.glArray[1]+t.glArray[1],0,1),this.glArray[2]=clamp(this.glArray[2]+t.glArray[2],0,1),this.glArray[3]=(this.glArray[3]+t.glArray[3])/2,this},Color.prototype.darken=function(t){return t=clamp(t,0,1),this.glArray[0]*=t,this.glArray[1]*=t,this.glArray[2]*=t,this},Color.prototype.lerp=function(t,e){return e=clamp(e,0,1),this.glArray[0]+=(t.glArray[0]-this.glArray[0])*e,this.glArray[1]+=(t.glArray[1]-this.glArray[1])*e,this.glArray[2]+=(t.glArray[2]-this.glArray[2])*e,this},Color.prototype.lighten=function(t){return t=clamp(t,0,1),this.glArray[0]=clamp(this.glArray[0]+(1-this.glArray[0])*t,0,1),this.glArray[1]=clamp(this.glArray[1]+(1-this.glArray[1])*t,0,1),this.glArray[2]=clamp(this.glArray[2]+(1-this.glArray[2])*t,0,1),this},Color.prototype.random=function(t,e){return void 0===t&&(t=0),void 0===e&&(e=255),t<0&&(t=0),e>255&&(e=255),this.setColor(random$1(t,e),random$1(t,e),random$1(t,e),this.alpha)},Color.prototype.equals=function(t){return this.glArray[0]===t.glArray[0]&&this.glArray[1]===t.glArray[1]&&this.glArray[2]===t.glArray[2]&&this.glArray[3]===t.glArray[3]},Color.prototype.parseCSS=function(t){return cssToRGB.has(t)?this.setColor.apply(this,cssToRGB.get(t)):this.parseRGB(t)},Color.prototype.parseRGB=function(t){var e=rgbaRx.exec(t);return e?this.setColor(+e[1],+e[2],+e[3],+e[5]):this.parseHex(t)},Color.prototype.parseHex=function(t,e){var i;if(void 0===e&&(e=!1),i=hex8Rx.exec(t))return this.setColor(parseInt(i[!1===e?1:2],16),parseInt(i[!1===e?2:3],16),parseInt(i[!1===e?3:4],16),(clamp(parseInt(i[!1===e?4:1],16),0,255)/255).toFixed(1));if(i=hex6Rx.exec(t))return this.setColor(parseInt(i[1],16),parseInt(i[2],16),parseInt(i[3],16));if(i=hex4Rx.exec(t)){var o=i[!1===e?1:2],r=i[!1===e?2:3],n=i[!1===e?3:4],s=i[!1===e?4:1];return this.setColor(parseInt(o+o,16),parseInt(r+r,16),parseInt(n+n,16),(clamp(parseInt(s+s,16),0,255)/255).toFixed(1))}if(i=hex3Rx.exec(t))return this.setColor(parseInt(i[1]+i[1],16),parseInt(i[2]+i[2],16),parseInt(i[3]+i[3],16));throw new Error("invalid parameter: "+t)},Color.prototype.toUint32=function(t){return void 0===t&&(t=this.alpha),((255*t&255)<<24)+((255&this.r)<<16)+((255&this.g)<<8)+(255&this.b)},Color.prototype.toArray=function(){return this.glArray},Color.prototype.toHex=function(){return"#"+toHex(this.r)+toHex(this.g)+toHex(this.b)},Color.prototype.toHex8=function(){return"#"+toHex(this.r)+toHex(this.g)+toHex(this.b)+toHex(255*this.alpha)},Color.prototype.toRGB=function(){return"rgb("+this.r+","+this.g+","+this.b+")"},Color.prototype.toRGBA=function(){return"rgba("+this.r+","+this.g+","+this.b+","+this.alpha+")"},Object.defineProperties(Color.prototype,prototypeAccessors$4);var Matrix3d=function(){for(var t,e=[],i=arguments.length;i--;)e[i]=arguments[i];(t=this).onResetEvent.apply(t,e)},prototypeAccessors$3={tx:{configurable:!0},ty:{configurable:!0},tz:{configurable:!0}};Matrix3d.prototype.onResetEvent=function(){void 0===this.val&&(this.val=new Float32Array(16)),arguments.length&&arguments[0]instanceof Matrix3d?this.copy(arguments[0]):16===arguments.length?this.setTransform.apply(this,arguments):this.identity()},prototypeAccessors$3.tx.get=function(){return this.val[12]},prototypeAccessors$3.ty.get=function(){return this.val[13]},prototypeAccessors$3.tz.get=function(){return this.val[14]},Matrix3d.prototype.identity=function(){return this.setTransform(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)},Matrix3d.prototype.setTransform=function(t,e,i,o,r,n,s,a,h,l,c,u,d,p,f,y){var g=this.val;return g[0]=t,g[1]=e,g[2]=i,g[3]=o,g[4]=r,g[5]=n,g[6]=s,g[7]=a,g[8]=h,g[9]=l,g[10]=c,g[11]=u,g[12]=d,g[13]=p,g[14]=f,g[15]=y,this},Matrix3d.prototype.copy=function(t){return this.val.set(t.val),this},Matrix3d.prototype.fromMat2d=function(t){var e=t.val;return this.setTransform(e[0],e[3],e[6],0,e[1],e[4],e[7],0,e[2],e[5],e[8],0,0,0,0,1)},Matrix3d.prototype.multiply=function(t){var e=this.val,i=t.val,o=e[0],r=e[1],n=e[2],s=e[3],a=e[4],h=e[5],l=e[6],c=e[7],u=e[8],d=e[9],p=e[10],f=e[11],y=e[12],g=e[13],v=e[14],m=e[15],_=i[0],x=i[1],w=i[2],T=i[3];return e[0]=_*o+x*a+w*u+T*y,e[1]=_*r+x*h+w*d+T*g,e[2]=_*n+x*l+w*p+T*v,e[3]=_*s+x*c+w*f+T*m,_=i[4],x=i[5],w=i[6],T=i[7],e[4]=_*o+x*a+w*u+T*y,e[5]=_*r+x*h+w*d+T*g,e[6]=_*n+x*l+w*p+T*v,e[7]=_*s+x*c+w*f+T*m,_=i[8],x=i[9],w=i[10],T=i[11],e[8]=_*o+x*a+w*u+T*y,e[9]=_*r+x*h+w*d+T*g,e[10]=_*n+x*l+w*p+T*v,e[11]=_*s+x*c+w*f+T*m,_=i[12],x=i[13],w=i[14],T=i[15],e[12]=_*o+x*a+w*u+T*y,e[13]=_*r+x*h+w*d+T*g,e[14]=_*n+x*l+w*p+T*v,e[15]=_*s+x*c+w*f+T*m,this},Matrix3d.prototype.transpose=function(){var t=this.val,e=t[1],i=t[2],o=t[3],r=t[6],n=t[7],s=t[11];return t[1]=t[4],t[2]=t[8],t[3]=t[12],t[4]=e,t[6]=t[9],t[7]=t[13],t[8]=i,t[9]=r,t[11]=t[14],t[12]=o,t[13]=n,t[14]=s,this},Matrix3d.prototype.invert=function(){var t=this.val,e=t[0],i=t[1],o=t[2],r=t[3],n=t[4],s=t[5],a=t[6],h=t[7],l=t[8],c=t[9],u=t[10],d=t[11],p=t[12],f=t[13],y=t[14],g=t[15],v=e*s-i*n,m=e*a-o*n,_=e*h-r*n,x=i*a-o*s,w=i*h-r*s,T=o*h-r*a,b=l*f-c*p,E=l*y-u*p,A=l*g-d*p,S=c*y-u*f,C=c*g-d*f,R=u*g-d*y,P=v*R-m*C+_*S+x*A-w*E+T*b;return P?(P=1/P,t[0]=(s*R-a*C+h*S)*P,t[1]=(o*C-i*R-r*S)*P,t[2]=(f*T-y*w+g*x)*P,t[3]=(u*w-c*T-d*x)*P,t[4]=(a*A-n*R-h*E)*P,t[5]=(e*R-o*A+r*E)*P,t[6]=(y*_-p*T-g*m)*P,t[7]=(l*T-u*_+d*m)*P,t[8]=(n*C-s*A+h*b)*P,t[9]=(i*A-e*C-r*b)*P,t[10]=(p*w-f*_+g*v)*P,t[11]=(c*_-l*w-d*v)*P,t[12]=(s*E-n*S-a*b)*P,t[13]=(e*S-i*E+o*b)*P,t[14]=(f*m-p*x-y*v)*P,t[15]=(l*x-c*m+u*v)*P,this):null},Matrix3d.prototype.apply=function(t){var e=this.val,i=t.x,o=t.y,r=void 0!==t.z?t.z:1,n=e[3]*i+e[7]*o+e[11]*r+e[15]||1;return t.x=(e[0]*i+e[4]*o+e[8]*r+e[12])/n,t.y=(e[1]*i+e[5]*o+e[9]*r+e[13])/n,void 0!==t.z&&(t.z=(e[2]*i+e[6]*o+e[10]*r+e[14])/n),t},Matrix3d.prototype.applyInverse=function(t){var e=pool.pull("Matrix3d",this).invert();return e.apply(t),pool.push(e),t},Matrix3d.prototype.ortho=function(t,e,i,o,r,n){var s=this.val,a=1/(t-e),h=1/(i-o),l=1/(r-n);return s[0]=-2*a,s[1]=0,s[2]=0,s[3]=0,s[4]=0,s[5]=-2*h,s[6]=0,s[7]=0,s[8]=0,s[9]=0,s[10]=2*l,s[11]=0,s[12]=(t+e)*a,s[13]=(o+i)*h,s[14]=(n+r)*l,s[15]=1,this},Matrix3d.prototype.scale=function(t,e,i){var o=this.val,r=t,n=void 0===e?r:e,s=void 0===i?0:i;return o[0]=o[0]*r,o[1]=o[1]*r,o[2]=o[2]*r,o[3]=o[3]*r,o[4]=o[4]*n,o[5]=o[5]*n,o[6]=o[6]*n,o[7]=o[7]*n,o[8]=o[8]*s,o[9]=o[9]*s,o[10]=o[10]*s,o[11]=o[11]*s,this},Matrix3d.prototype.scaleV=function(t){return this.scale(t.x,t.y,t.z)},Matrix3d.prototype.scaleX=function(t){return this.scale(t,1)},Matrix3d.prototype.scaleY=function(t){return this.scale(1,t)},Matrix3d.prototype.rotate=function(t,e){var i,o,r,n,s,a,h,l,c,u,d,p,f,y,g,v,m,_,x,w,T,b,E,A,S=this.val,C=e.x,R=e.y,P=e.z,O=Math.sqrt(C*C+R*R+P*P);return O<EPSILON?null:(C*=O=1/O,R*=O,P*=O,i=Math.sin(t),r=1-(o=Math.cos(t)),n=S[0],s=S[1],a=S[2],h=S[3],l=S[4],c=S[5],u=S[6],d=S[7],p=S[8],f=S[9],y=S[10],g=S[11],v=C*C*r+o,m=R*C*r+P*i,_=P*C*r-R*i,x=C*R*r-P*i,w=R*R*r+o,T=P*R*r+C*i,b=C*P*r+R*i,E=R*P*r-C*i,A=P*P*r+o,S[0]=n*v+l*m+p*_,S[1]=s*v+c*m+f*_,S[2]=a*v+u*m+y*_,S[3]=h*v+d*m+g*_,S[4]=n*x+l*w+p*T,S[5]=s*x+c*w+f*T,S[6]=a*x+u*w+y*T,S[7]=h*x+d*w+g*T,S[8]=n*b+l*E+p*A,S[9]=s*b+c*E+f*A,S[10]=a*b+u*E+y*A,S[11]=h*b+d*E+g*A,this)},Matrix3d.prototype.translate=function(){var t,e,i,o=this.val;return arguments.length>1?(t=arguments[0],e=arguments[1],i=void 0===arguments[2]?0:arguments[2]):(t=arguments[0].x,e=arguments[0].y,i=void 0===arguments[0].z?0:arguments[0].z),o[12]=o[0]*t+o[4]*e+o[8]*i+o[12],o[13]=o[1]*t+o[5]*e+o[9]*i+o[13],o[14]=o[2]*t+o[6]*e+o[10]*i+o[14],o[15]=o[3]*t+o[7]*e+o[11]*i+o[15],this},Matrix3d.prototype.isIdentity=function(){var t=this.val;return 1===t[0]&&0===t[1]&&0===t[2]&&0===t[3]&&0===t[4]&&1===t[5]&&0===t[6]&&0===t[7]&&0===t[8]&&0===t[9]&&1===t[10]&&0===t[11]&&0===t[12]&&0===t[13]&&0===t[14]&&1===t[15]},Matrix3d.prototype.equals=function(t){var e=t.val,i=this.val;return i[0]===e[0]&&i[1]===e[1]&&i[2]===e[2]&&i[3]===e[3]&&i[4]===e[4]&&i[5]===e[5]&&i[6]===e[6]&&i[7]===e[7]&&i[8]===e[8]&&i[9]===e[9]&&i[10]===e[10]&&i[11]===e[11]&&i[12]===e[12]&&i[13]===e[13]&&i[14]===e[14]&&i[15]===e[15]},Matrix3d.prototype.clone=function(){return pool.pull("Matrix3d",this)},Matrix3d.prototype.toArray=function(){return this.val},Matrix3d.prototype.toString=function(){var t=this.val;return"me.Matrix3d("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+", "+t[9]+", "+t[10]+", "+t[11]+", "+t[12]+", "+t[13]+", "+t[14]+", "+t[15]+")"},Object.defineProperties(Matrix3d.prototype,prototypeAccessors$3);var Matrix2d=function(){for(var t,e=[],i=arguments.length;i--;)e[i]=arguments[i];(t=this).onResetEvent.apply(t,e)},prototypeAccessors$2={tx:{configurable:!0},ty:{configurable:!0}};Matrix2d.prototype.onResetEvent=function(){return void 0===this.val&&(this.val=new Float32Array(9)),arguments.length&&arguments[0]instanceof Matrix2d?this.copy(arguments[0]):arguments.length&&arguments[0]instanceof Matrix3d?this.fromMat3d(arguments[0]):arguments.length>=6?this.setTransform.apply(this,arguments):this.identity(),this},prototypeAccessors$2.tx.get=function(){return this.val[6]},prototypeAccessors$2.ty.get=function(){return this.val[7]},Matrix2d.prototype.identity=function(){return this.setTransform(1,0,0,0,1,0,0,0,1),this},Matrix2d.prototype.setTransform=function(){var t=this.val;return 9===arguments.length?(t[0]=arguments[0],t[1]=arguments[1],t[2]=arguments[2],t[3]=arguments[3],t[4]=arguments[4],t[5]=arguments[5],t[6]=arguments[6],t[7]=arguments[7],t[8]=arguments[8]):6===arguments.length&&(t[0]=arguments[0],t[1]=arguments[2],t[2]=arguments[4],t[3]=arguments[1],t[4]=arguments[3],t[5]=arguments[5],t[6]=0,t[7]=0,t[8]=1),this},Matrix2d.prototype.copy=function(t){return this.val.set(t.val),this},Matrix2d.prototype.fromMat3d=function(t){var e=t.val,i=this.val;return i[0]=e[0],i[1]=e[1],i[2]=e[2],i[3]=e[4],i[4]=e[5],i[5]=e[6],i[6]=e[8],i[7]=e[9],i[8]=e[10],this},Matrix2d.prototype.multiply=function(t){var e=t.val,i=this.val,o=i[0],r=i[1],n=i[3],s=i[4],a=e[0],h=e[1],l=e[3],c=e[4],u=e[6],d=e[7];return i[0]=o*a+n*h,i[1]=r*a+s*h,i[3]=o*l+n*c,i[4]=r*l+s*c,i[6]+=o*u+n*d,i[7]+=r*u+s*d,this},Matrix2d.prototype.transpose=function(){var t=this.val,e=t[1],i=t[2],o=t[5];return t[1]=t[3],t[2]=t[6],t[3]=e,t[5]=t[7],t[6]=i,t[7]=o,this},Matrix2d.prototype.invert=function(){var t=this.val,e=t[0],i=t[1],o=t[2],r=t[3],n=t[4],s=t[5],a=t[6],h=t[7],l=t[8],c=l*n-s*h,u=s*a-l*r,d=h*r-n*a,p=e*c+i*u+o*d;return t[0]=c/p,t[1]=(o*h-l*i)/p,t[2]=(s*i-o*n)/p,t[3]=u/p,t[4]=(l*e-o*a)/p,t[5]=(o*r-s*e)/p,t[6]=d/p,t[7]=(i*a-h*e)/p,t[8]=(n*e-i*r)/p,this},Matrix2d.prototype.apply=function(t){var e=this.val,i=t.x,o=t.y;return t.x=i*e[0]+o*e[3]+e[6],t.y=i*e[1]+o*e[4]+e[7],t},Matrix2d.prototype.applyInverse=function(t){var e=this.val,i=t.x,o=t.y,r=1/(e[0]*e[4]+e[3]*-e[1]);return t.x=e[4]*r*i+-e[3]*r*o+(e[7]*e[3]-e[6]*e[4])*r,t.y=e[0]*r*o+-e[1]*r*i+(-e[7]*e[0]+e[6]*e[1])*r,t},Matrix2d.prototype.scale=function(t,e){var i=this.val,o=t,r=void 0===e?o:e;return i[0]*=o,i[1]*=o,i[3]*=r,i[4]*=r,this},Matrix2d.prototype.scaleV=function(t){return this.scale(t.x,t.y)},Matrix2d.prototype.scaleX=function(t){return this.scale(t,1)},Matrix2d.prototype.scaleY=function(t){return this.scale(1,t)},Matrix2d.prototype.rotate=function(t){if(0!==t){var e=this.val,i=e[0],o=e[1],r=e[2],n=e[3],s=e[4],a=e[5],h=Math.sin(t),l=Math.cos(t);e[0]=l*i+h*n,e[1]=l*o+h*s,e[2]=l*r+h*a,e[3]=l*n-h*i,e[4]=l*s-h*o,e[5]=l*a-h*r}return this},Matrix2d.prototype.translate=function(){var t,e,i=this.val;return 2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),i[6]+=i[0]*t+i[3]*e,i[7]+=i[1]*t+i[4]*e,this},Matrix2d.prototype.isIdentity=function(){var t=this.val;return 1===t[0]&&0===t[1]&&0===t[2]&&0===t[3]&&1===t[4]&&0===t[5]&&0===t[6]&&0===t[7]&&1===t[8]},Matrix2d.prototype.equals=function(t){var e=t.val,i=this.val;return i[0]===e[0]&&i[1]===e[1]&&i[2]===e[2]&&i[3]===e[3]&&i[4]===e[4]&&i[5]===e[5]&&i[6]===e[6]&&i[7]===e[7]&&i[8]===e[8]},Matrix2d.prototype.clone=function(){return pool.pull("Matrix2d",this)},Matrix2d.prototype.toArray=function(){return this.val},Matrix2d.prototype.toString=function(){var t=this.val;return"me.Matrix2d("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+")"},Object.defineProperties(Matrix2d.prototype,prototypeAccessors$2);var commonjsGlobal="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},eventemitter3={exports:{}};!function(t){var e=Object.prototype.hasOwnProperty,i="~";function o(){}function r(t,e,i){this.fn=t,this.context=e,this.once=i||!1}function n(t,e,o,n,s){if("function"!=typeof o)throw new TypeError("The listener must be a function");var a=new r(o,n||t,s),h=i?i+e:e;return t._events[h]?t._events[h].fn?t._events[h]=[t._events[h],a]:t._events[h].push(a):(t._events[h]=a,t._eventsCount++),t}function s(t,e){0==--t._eventsCount?t._events=new o:delete t._events[e]}function a(){this._events=new o,this._eventsCount=0}Object.create&&(o.prototype=Object.create(null),(new o).__proto__||(i=!1)),a.prototype.eventNames=function(){var t,o,r=[];if(0===this._eventsCount)return r;for(o in t=this._events)e.call(t,o)&&r.push(i?o.slice(1):o);return Object.getOwnPropertySymbols?r.concat(Object.getOwnPropertySymbols(t)):r},a.prototype.listeners=function(t){var e=i?i+t:t,o=this._events[e];if(!o)return[];if(o.fn)return[o.fn];for(var r=0,n=o.length,s=new Array(n);r<n;r++)s[r]=o[r].fn;return s},a.prototype.listenerCount=function(t){var e=i?i+t:t,o=this._events[e];return o?o.fn?1:o.length:0},a.prototype.emit=function(t,e,o,r,n,s){var a=arguments,h=i?i+t:t;if(!this._events[h])return!1;var l,c,u=this._events[h],d=arguments.length;if(u.fn){switch(u.once&&this.removeListener(t,u.fn,void 0,!0),d){case 1:return u.fn.call(u.context),!0;case 2:return u.fn.call(u.context,e),!0;case 3:return u.fn.call(u.context,e,o),!0;case 4:return u.fn.call(u.context,e,o,r),!0;case 5:return u.fn.call(u.context,e,o,r,n),!0;case 6:return u.fn.call(u.context,e,o,r,n,s),!0}for(c=1,l=new Array(d-1);c<d;c++)l[c-1]=a[c];u.fn.apply(u.context,l)}else{var p,f=u.length;for(c=0;c<f;c++)switch(u[c].once&&this.removeListener(t,u[c].fn,void 0,!0),d){case 1:u[c].fn.call(u[c].context);break;case 2:u[c].fn.call(u[c].context,e);break;case 3:u[c].fn.call(u[c].context,e,o);break;case 4:u[c].fn.call(u[c].context,e,o,r);break;default:if(!l)for(p=1,l=new Array(d-1);p<d;p++)l[p-1]=a[p];u[c].fn.apply(u[c].context,l)}}return!0},a.prototype.on=function(t,e,i){return n(this,t,e,i,!1)},a.prototype.once=function(t,e,i){return n(this,t,e,i,!0)},a.prototype.removeListener=function(t,e,o,r){var n=i?i+t:t;if(!this._events[n])return this;if(!e)return s(this,n),this;var a=this._events[n];if(a.fn)a.fn!==e||r&&!a.once||o&&a.context!==o||s(this,n);else{for(var h=0,l=[],c=a.length;h<c;h++)(a[h].fn!==e||r&&!a[h].once||o&&a[h].context!==o)&&l.push(a[h]);l.length?this._events[n]=1===l.length?l[0]:l:s(this,n)}return this},a.prototype.removeAllListeners=function(t){var e;return t?(e=i?i+t:t,this._events[e]&&s(this,e)):(this._events=new o,this._eventsCount=0),this},a.prototype.off=a.prototype.removeListener,a.prototype.addListener=a.prototype.on,a.prefixed=i,a.EventEmitter=a,t.exports=a}(eventemitter3);var EventEmitter=eventemitter3.exports,eventEmitter=new EventEmitter,BOOT="me.boot",STATE_PAUSE="me.state.onPause",STATE_RESUME="me.state.onResume",STATE_STOP="me.state.onStop",STATE_RESTART="me.state.onRestart",VIDEO_INIT="me.video.onInit",GAME_INIT="me.game.onInit",GAME_RESET="me.game.onReset",GAME_BEFORE_UPDATE="me.game.beforeUpdate",GAME_AFTER_UPDATE="me.game.afterUpdate",GAME_UPDATE="me.game.onUpdate",GAME_BEFORE_DRAW="me.game.beforeDraw",GAME_AFTER_DRAW="me.game.afterDraw",LEVEL_LOADED="me.game.onLevelLoaded",LOADER_COMPLETE="me.loader.onload",LOADER_PROGRESS="me.loader.onProgress",KEYDOWN="me.input.keydown",KEYUP="me.input.keyup",GAMEPAD_CONNECTED="gamepad.connected",GAMEPAD_DISCONNECTED="gamepad.disconnected",GAMEPAD_UPDATE="gamepad.update",POINTERMOVE="me.event.pointermove",DRAGSTART="me.game.dragstart",DRAGEND="me.game.dragend",WINDOW_ONRESIZE="window.onresize",CANVAS_ONRESIZE="canvas.onresize",VIEWPORT_ONRESIZE="viewport.onresize",WINDOW_ONORIENTATION_CHANGE="window.orientationchange",WINDOW_ONSCROLL="window.onscroll",VIEWPORT_ONCHANGE="viewport.onchange",WEBGL_ONCONTEXT_LOST="renderer.webglcontextlost",WEBGL_ONCONTEXT_RESTORED="renderer.webglcontextrestored";function emit(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];return eventEmitter.emit.apply(eventEmitter,[t].concat(e))}function on(t,e,i){return eventEmitter.on(t,e,i)}function once(t,e,i){return eventEmitter.once(t,e,i)}function off(t,e){return eventEmitter.off(t,e)}var event=Object.freeze({__proto__:null,BOOT:BOOT,STATE_PAUSE:STATE_PAUSE,STATE_RESUME:STATE_RESUME,STATE_STOP:STATE_STOP,STATE_RESTART:STATE_RESTART,VIDEO_INIT:VIDEO_INIT,GAME_INIT:GAME_INIT,GAME_RESET:GAME_RESET,GAME_BEFORE_UPDATE:GAME_BEFORE_UPDATE,GAME_AFTER_UPDATE:GAME_AFTER_UPDATE,GAME_UPDATE:GAME_UPDATE,GAME_BEFORE_DRAW:GAME_BEFORE_DRAW,GAME_AFTER_DRAW:GAME_AFTER_DRAW,LEVEL_LOADED:LEVEL_LOADED,LOADER_COMPLETE:LOADER_COMPLETE,LOADER_PROGRESS:LOADER_PROGRESS,KEYDOWN:KEYDOWN,KEYUP:KEYUP,GAMEPAD_CONNECTED:GAMEPAD_CONNECTED,GAMEPAD_DISCONNECTED:GAMEPAD_DISCONNECTED,GAMEPAD_UPDATE:GAMEPAD_UPDATE,POINTERMOVE:POINTERMOVE,DRAGSTART:DRAGSTART,DRAGEND:DRAGEND,WINDOW_ONRESIZE:WINDOW_ONRESIZE,CANVAS_ONRESIZE:CANVAS_ONRESIZE,VIEWPORT_ONRESIZE:VIEWPORT_ONRESIZE,WINDOW_ONORIENTATION_CHANGE:WINDOW_ONORIENTATION_CHANGE,WINDOW_ONSCROLL:WINDOW_ONSCROLL,VIEWPORT_ONCHANGE:VIEWPORT_ONCHANGE,WEBGL_ONCONTEXT_LOST:WEBGL_ONCONTEXT_LOST,WEBGL_ONCONTEXT_RESTORED:WEBGL_ONCONTEXT_RESTORED,emit:emit,on:on,once:once,off:off}),howler={};
8
+ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).me={})}(this,(function(exports){"use strict";function capitalize(t){return t.charAt(0).toUpperCase()+t.slice(1)}function trimLeft(t){return t.replace(/^\s+/,"")}function trimRight(t){return t.replace(/\s+$/,"")}function isNumeric(t){return"string"==typeof t&&(t=t.trim()),!isNaN(t)&&/[+-]?([0-9]*[.])?[0-9]+/.test(t)}function isBoolean(t){var e=t.trim();return"true"===e||"false"===e}function toHex$1(t){for(var e="",i=0;i<t.length;)e+=t.charCodeAt(i++).toString(16);return e}"undefined"!=typeof window&&void 0===window.console&&(window.console={},window.console.log=function(){},window.console.assert=function(){},window.console.warn=function(){},window.console.error=function(){alert(Array.prototype.slice.call(arguments).join(", "))});var stringUtils=Object.freeze({__proto__:null,capitalize:capitalize,trimLeft:trimLeft,trimRight:trimRight,isNumeric:isNumeric,isBoolean:isBoolean,toHex:toHex$1}),vendors$1=["ms","MS","moz","webkit","o"];function prefixed(t,e){if(t in(e=e||window))return e[t];var i,o=capitalize(t);return vendors$1.some((function(t){var r=t+o;return i=r in e?e[r]:void 0})),i}function setPrefixed(t,e,i){if(!(t in(i=i||window))){var o=capitalize(t);return vendors$1.some((function(t){var r=t+o;if(r in i)return i[r]=e,!0})),!1}i[t]=e}var agentUtils=Object.freeze({__proto__:null,prefixed:prefixed,setPrefixed:setPrefixed}),DEG_TO_RAD=Math.PI/180,RAD_TO_DEG=180/Math.PI,TAU=2*Math.PI,ETA=.5*Math.PI,EPSILON=1e-6;function isPowerOfTwo(t){return 0==(t&t-1)}function nextPowerOfTwo(t){return t--,t|=t>>1,t|=t>>2,t|=t>>4,t|=t>>8,t|=t>>16,++t}function degToRad(t){return t*DEG_TO_RAD}function radToDeg(t){return t*RAD_TO_DEG}function clamp(t,e,i){return t<e?e:t>i?i:+t}function random$1(t,e){return~~(Math.random()*(e-t))+t}function randomFloat(t,e){return Math.random()*(e-t)+t}function weightedRandom$1(t,e){return~~(Math.pow(Math.random(),2)*(e-t))+t}function round(t,e){void 0===e&&(e=0);var i=Math.pow(10,e);return~~(.5+t*i)/i}function toBeCloseTo(t,e,i){return void 0===i&&(i=2),Math.abs(t-e)<Math.pow(10,-i)/2}var math=Object.freeze({__proto__:null,DEG_TO_RAD:DEG_TO_RAD,RAD_TO_DEG:RAD_TO_DEG,TAU:TAU,ETA:ETA,EPSILON:EPSILON,isPowerOfTwo:isPowerOfTwo,nextPowerOfTwo:nextPowerOfTwo,degToRad:degToRad,radToDeg:radToDeg,clamp:clamp,random:random$1,randomFloat:randomFloat,weightedRandom:weightedRandom$1,round:round,toBeCloseTo:toBeCloseTo});function remove(t,e){var i=Array.prototype.indexOf.call(t,e);return-1!==i&&Array.prototype.splice.call(t,i,1),t}function random(t){return t[random$1(0,t.length)]}function weightedRandom(t){return t[weightedRandom$1(0,t.length)]}var arrayUtils=Object.freeze({__proto__:null,remove:remove,random:random,weightedRandom:weightedRandom}),REMOVE_PATH=/^.*(\\|\/|\:)/,REMOVE_EXT=/\.[^\.]*$/;function getBasename(t){return t.replace(REMOVE_PATH,"").replace(REMOVE_EXT,"")}function getExtension(t){return t.substring(t.lastIndexOf(".")+1,t.length)}var fileUtils=Object.freeze({__proto__:null,getBasename:getBasename,getExtension:getExtension});function defer(t,e){for(var i=[],o=arguments.length-2;o-- >0;)i[o]=arguments[o+2];return setTimeout.apply(void 0,[t.bind(e),.01].concat(i))}function throttle(t,e,i){var o,r=window.performance.now();return"boolean"!=typeof i&&(i=!1),function(){var n=window.performance.now(),s=n-r,a=arguments;if(!(s<e))return r=n,t.apply(null,a);!1===i&&(clearTimeout(o),o=setTimeout((function(){return r=n,t.apply(null,a)}),s))}}var fnUtils=Object.freeze({__proto__:null,defer:defer,throttle:throttle}),objectClass={},instance_counter=0,pool={register:function(t,e,i){if(void 0===i&&(i=!1),void 0===e)throw new Error("Cannot register object '"+t+"', invalid class");objectClass[t]={class:e,pool:i?[]:void 0}},pull:function(t){for(var e=arguments,i=new Array(arguments.length),o=0;o<arguments.length;o++)i[o]=e[o];var r=objectClass[t];if(r){var n,s=r.class,a=r.pool;return a&&(n=a.pop())?(i.shift(),"function"==typeof n.onResetEvent&&n.onResetEvent.apply(n,i),instance_counter--):(i[0]=s,n=new(s.bind.apply(s,i)),a&&(n.className=t)),n}throw new Error("Cannot instantiate object of type '"+t+"'")},purge:function(){for(var t in objectClass)objectClass[t]&&(objectClass[t].pool=[]);instance_counter=0},push:function(t,e){if(void 0===e&&(e=!0),!this.poolable(t)){if(!0===e)throw new Error("me.pool: object "+t+" cannot be recycled");return!1}return objectClass[t.className].pool.push(t),instance_counter++,!0},exists:function(t){return t in objectClass},poolable:function(t){var e=t.className;return void 0!==e&&"function"==typeof t.onResetEvent&&e in objectClass&&"undefined"!==objectClass[e].pool},getInstanceCount:function(){return instance_counter}},Vector2d=function(){for(var t,e=[],i=arguments.length;i--;)e[i]=arguments[i];(t=this).onResetEvent.apply(t,e)};Vector2d.prototype.onResetEvent=function(t,e){return void 0===t&&(t=0),void 0===e&&(e=0),this.x=t,this.y=e,this},Vector2d.prototype._set=function(t,e){return this.x=t,this.y=e,this},Vector2d.prototype.set=function(t,e){if(t!==+t||e!==+e)throw new Error("invalid x,y parameters (not a number)");return this._set(t,e)},Vector2d.prototype.setZero=function(){return this.set(0,0)},Vector2d.prototype.setV=function(t){return this._set(t.x,t.y)},Vector2d.prototype.add=function(t){return this._set(this.x+t.x,this.y+t.y)},Vector2d.prototype.sub=function(t){return this._set(this.x-t.x,this.y-t.y)},Vector2d.prototype.scale=function(t,e){return this._set(this.x*t,this.y*(void 0!==e?e:t))},Vector2d.prototype.toIso=function(){return this._set(this.x-this.y,.5*(this.x+this.y))},Vector2d.prototype.to2d=function(){return this._set(this.y+this.x/2,this.y-this.x/2)},Vector2d.prototype.scaleV=function(t){return this._set(this.x*t.x,this.y*t.y)},Vector2d.prototype.div=function(t){return this._set(this.x/t,this.y/t)},Vector2d.prototype.abs=function(){return this._set(this.x<0?-this.x:this.x,this.y<0?-this.y:this.y)},Vector2d.prototype.clamp=function(t,e){return new Vector2d(clamp(this.x,t,e),clamp(this.y,t,e))},Vector2d.prototype.clampSelf=function(t,e){return this._set(clamp(this.x,t,e),clamp(this.y,t,e))},Vector2d.prototype.minV=function(t){return this._set(this.x<t.x?this.x:t.x,this.y<t.y?this.y:t.y)},Vector2d.prototype.maxV=function(t){return this._set(this.x>t.x?this.x:t.x,this.y>t.y?this.y:t.y)},Vector2d.prototype.floor=function(){return new Vector2d(Math.floor(this.x),Math.floor(this.y))},Vector2d.prototype.floorSelf=function(){return this._set(Math.floor(this.x),Math.floor(this.y))},Vector2d.prototype.ceil=function(){return new Vector2d(Math.ceil(this.x),Math.ceil(this.y))},Vector2d.prototype.ceilSelf=function(){return this._set(Math.ceil(this.x),Math.ceil(this.y))},Vector2d.prototype.negate=function(){return new Vector2d(-this.x,-this.y)},Vector2d.prototype.negateSelf=function(){return this._set(-this.x,-this.y)},Vector2d.prototype.copy=function(t){return this._set(t.x,t.y)},Vector2d.prototype.equals=function(){var t,e;return 2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),this.x===t&&this.y===e},Vector2d.prototype.normalize=function(){return this.div(this.length()||1)},Vector2d.prototype.perp=function(){return this._set(this.y,-this.x)},Vector2d.prototype.rotate=function(t,e){var i=0,o=0;"object"==typeof e&&(i=e.x,o=e.y);var r=this.x-i,n=this.y-o,s=Math.cos(t),a=Math.sin(t);return this._set(r*s-n*a+i,r*a+n*s+o)},Vector2d.prototype.dot=function(t){return this.x*t.x+this.y*t.y},Vector2d.prototype.cross=function(t){return this.x*t.y-this.y*t.x},Vector2d.prototype.length2=function(){return this.dot(this)},Vector2d.prototype.length=function(){return Math.sqrt(this.length2())},Vector2d.prototype.lerp=function(t,e){return this.x+=(t.x-this.x)*e,this.y+=(t.y-this.y)*e,this},Vector2d.prototype.distance=function(t){var e=this.x-t.x,i=this.y-t.y;return Math.sqrt(e*e+i*i)},Vector2d.prototype.angle=function(t){return Math.acos(clamp(this.dot(t)/(this.length()*t.length()),-1,1))},Vector2d.prototype.project=function(t){return this.scale(this.dot(t)/t.length2())},Vector2d.prototype.projectN=function(t){return this.scale(this.dot(t))},Vector2d.prototype.clone=function(){return pool.pull("Vector2d",this.x,this.y)},Vector2d.prototype.toString=function(){return"x:"+this.x+",y:"+this.y};var toHex=function(t){return"0123456789ABCDEF".charAt(t-t%16>>4)+"0123456789ABCDEF".charAt(t%16)},rgbaRx=/^rgba?\((\d+), ?(\d+), ?(\d+)(, ?([\d\.]+))?\)$/,hex3Rx=/^#([\da-fA-F])([\da-fA-F])([\da-fA-F])$/,hex4Rx=/^#([\da-fA-F])([\da-fA-F])([\da-fA-F])([\da-fA-F])$/,hex6Rx=/^#([\da-fA-F]{2})([\da-fA-F]{2})([\da-fA-F]{2})$/,hex8Rx=/^#([\da-fA-F]{2})([\da-fA-F]{2})([\da-fA-F]{2})([\da-fA-F]{2})$/,cssToRGB=new Map;[["black",[0,0,0]],["silver",[192,192,129]],["gray",[128,128,128]],["white",[255,255,255]],["maroon",[128,0,0]],["red",[255,0,0]],["purple",[128,0,128]],["fuchsia",[255,0,255]],["green",[0,128,0]],["lime",[0,255,0]],["olive",[128,128,0]],["yellow",[255,255,0]],["navy",[0,0,128]],["blue",[0,0,255]],["teal",[0,128,128]],["aqua",[0,255,255]],["orange",[255,165,0]],["aliceblue",[240,248,245]],["antiquewhite",[250,235,215]],["aquamarine",[127,255,212]],["azure",[240,255,255]],["beige",[245,245,220]],["bisque",[255,228,196]],["blanchedalmond",[255,235,205]],["blueviolet",[138,43,226]],["brown",[165,42,42]],["burlywood",[222,184,35]],["cadetblue",[95,158,160]],["chartreuse",[127,255,0]],["chocolate",[210,105,30]],["coral",[255,127,80]],["cornflowerblue",[100,149,237]],["cornsilk",[255,248,220]],["crimson",[220,20,60]],["darkblue",[0,0,139]],["darkcyan",[0,139,139]],["darkgoldenrod",[184,134,11]],["darkgray[*]",[169,169,169]],["darkgreen",[0,100,0]],["darkgrey[*]",[169,169,169]],["darkkhaki",[189,183,107]],["darkmagenta",[139,0,139]],["darkolivegreen",[85,107,47]],["darkorange",[255,140,0]],["darkorchid",[153,50,204]],["darkred",[139,0,0]],["darksalmon",[233,150,122]],["darkseagreen",[143,188,143]],["darkslateblue",[72,61,139]],["darkslategray",[47,79,79]],["darkslategrey",[47,79,79]],["darkturquoise",[0,206,209]],["darkviolet",[148,0,211]],["deeppink",[255,20,147]],["deepskyblue",[0,191,255]],["dimgray",[105,105,105]],["dimgrey",[105,105,105]],["dodgerblue",[30,144,255]],["firebrick",[178,34,34]],["floralwhite",[255,250,240]],["forestgreen",[34,139,34]],["gainsboro",[220,220,220]],["ghostwhite",[248,248,255]],["gold",[255,215,0]],["goldenrod",[218,165,32]],["greenyellow",[173,255,47]],["grey",[128,128,128]],["honeydew",[240,255,240]],["hotpink",[255,105,180]],["indianred",[205,92,92]],["indigo",[75,0,130]],["ivory",[255,255,240]],["khaki",[240,230,140]],["lavender",[230,230,250]],["lavenderblush",[255,240,245]],["lawngreen",[124,252,0]],["lemonchiffon",[255,250,205]],["lightblue",[173,216,230]],["lightcoral",[240,128,128]],["lightcyan",[224,255,255]],["lightgoldenrodyellow",[250,250,210]],["lightgray",[211,211,211]],["lightgreen",[144,238,144]],["lightgrey",[211,211,211]],["lightpink",[255,182,193]],["lightsalmon",[255,160,122]],["lightseagreen",[32,178,170]],["lightskyblue",[135,206,250]],["lightslategray",[119,136,153]],["lightslategrey",[119,136,153]],["lightsteelblue",[176,196,222]],["lightyellow",[255,255,224]],["limegreen",[50,205,50]],["linen",[250,240,230]],["mediumaquamarine",[102,205,170]],["mediumblue",[0,0,205]],["mediumorchid",[186,85,211]],["mediumpurple",[147,112,219]],["mediumseagreen",[60,179,113]],["mediumslateblue",[123,104,238]],["mediumspringgreen",[0,250,154]],["mediumturquoise",[72,209,204]],["mediumvioletred",[199,21,133]],["midnightblue",[25,25,112]],["mintcream",[245,255,250]],["mistyrose",[255,228,225]],["moccasin",[255,228,181]],["navajowhite",[255,222,173]],["oldlace",[253,245,230]],["olivedrab",[107,142,35]],["orangered",[255,69,0]],["orchid",[218,112,214]],["palegoldenrod",[238,232,170]],["palegreen",[152,251,152]],["paleturquoise",[175,238,238]],["palevioletred",[219,112,147]],["papayawhip",[255,239,213]],["peachpuff",[255,218,185]],["peru",[205,133,63]],["pink",[255,192,203]],["plum",[221,160,221]],["powderblue",[176,224,230]],["rosybrown",[188,143,143]],["royalblue",[65,105,225]],["saddlebrown",[139,69,19]],["salmon",[250,128,114]],["sandybrown",[244,164,96]],["seagreen",[46,139,87]],["seashell",[255,245,238]],["sienna",[160,82,45]],["skyblue",[135,206,235]],["slateblue",[106,90,205]],["slategray",[112,128,144]],["slategrey",[112,128,144]],["snow",[255,250,250]],["springgreen",[0,255,127]],["steelblue",[70,130,180]],["tan",[210,180,140]],["thistle",[216,191,216]],["tomato",[255,99,71]],["turquoise",[64,224,208]],["violet",[238,130,238]],["wheat",[245,222,179]],["whitesmoke",[245,245,245]],["yellowgreen",[154,205,50]]].forEach((function(t){cssToRGB.set(t[0],t[1])}));var Color=function(){for(var t,e=[],i=arguments.length;i--;)e[i]=arguments[i];(t=this).onResetEvent.apply(t,e)},prototypeAccessors$4={r:{configurable:!0},g:{configurable:!0},b:{configurable:!0},alpha:{configurable:!0}};Color.prototype.onResetEvent=function(t,e,i,o){return void 0===t&&(t=0),void 0===e&&(e=0),void 0===i&&(i=0),void 0===o&&(o=1),void 0===this.glArray&&(this.glArray=new Float32Array([0,0,0,1])),this.setColor(t,e,i,o)},prototypeAccessors$4.r.get=function(){return~~(255*this.glArray[0])},prototypeAccessors$4.r.set=function(t){this.glArray[0]=clamp(~~t||0,0,255)/255},prototypeAccessors$4.g.get=function(){return~~(255*this.glArray[1])},prototypeAccessors$4.g.set=function(t){this.glArray[1]=clamp(~~t||0,0,255)/255},prototypeAccessors$4.b.get=function(){return~~(255*this.glArray[2])},prototypeAccessors$4.b.set=function(t){this.glArray[2]=clamp(~~t||0,0,255)/255},prototypeAccessors$4.alpha.get=function(){return this.glArray[3]},prototypeAccessors$4.alpha.set=function(t){this.glArray[3]=void 0===t?1:clamp(+t,0,1)},Color.prototype.setColor=function(t,e,i,o){return void 0===o&&(o=1),t instanceof Color?(this.glArray.set(t.glArray),t):(this.r=t,this.g=e,this.b=i,this.alpha=o,this)},Color.prototype.clone=function(){return pool.pull("Color",this)},Color.prototype.copy=function(t){return t instanceof Color?(this.glArray.set(t.glArray),this):this.parseCSS(t)},Color.prototype.add=function(t){return this.glArray[0]=clamp(this.glArray[0]+t.glArray[0],0,1),this.glArray[1]=clamp(this.glArray[1]+t.glArray[1],0,1),this.glArray[2]=clamp(this.glArray[2]+t.glArray[2],0,1),this.glArray[3]=(this.glArray[3]+t.glArray[3])/2,this},Color.prototype.darken=function(t){return t=clamp(t,0,1),this.glArray[0]*=t,this.glArray[1]*=t,this.glArray[2]*=t,this},Color.prototype.lerp=function(t,e){return e=clamp(e,0,1),this.glArray[0]+=(t.glArray[0]-this.glArray[0])*e,this.glArray[1]+=(t.glArray[1]-this.glArray[1])*e,this.glArray[2]+=(t.glArray[2]-this.glArray[2])*e,this},Color.prototype.lighten=function(t){return t=clamp(t,0,1),this.glArray[0]=clamp(this.glArray[0]+(1-this.glArray[0])*t,0,1),this.glArray[1]=clamp(this.glArray[1]+(1-this.glArray[1])*t,0,1),this.glArray[2]=clamp(this.glArray[2]+(1-this.glArray[2])*t,0,1),this},Color.prototype.random=function(t,e){return void 0===t&&(t=0),void 0===e&&(e=255),t<0&&(t=0),e>255&&(e=255),this.setColor(random$1(t,e),random$1(t,e),random$1(t,e),this.alpha)},Color.prototype.equals=function(t){return this.glArray[0]===t.glArray[0]&&this.glArray[1]===t.glArray[1]&&this.glArray[2]===t.glArray[2]&&this.glArray[3]===t.glArray[3]},Color.prototype.parseCSS=function(t){return cssToRGB.has(t)?this.setColor.apply(this,cssToRGB.get(t)):this.parseRGB(t)},Color.prototype.parseRGB=function(t){var e=rgbaRx.exec(t);return e?this.setColor(+e[1],+e[2],+e[3],+e[5]):this.parseHex(t)},Color.prototype.parseHex=function(t,e){var i;if(void 0===e&&(e=!1),i=hex8Rx.exec(t))return this.setColor(parseInt(i[!1===e?1:2],16),parseInt(i[!1===e?2:3],16),parseInt(i[!1===e?3:4],16),(clamp(parseInt(i[!1===e?4:1],16),0,255)/255).toFixed(1));if(i=hex6Rx.exec(t))return this.setColor(parseInt(i[1],16),parseInt(i[2],16),parseInt(i[3],16));if(i=hex4Rx.exec(t)){var o=i[!1===e?1:2],r=i[!1===e?2:3],n=i[!1===e?3:4],s=i[!1===e?4:1];return this.setColor(parseInt(o+o,16),parseInt(r+r,16),parseInt(n+n,16),(clamp(parseInt(s+s,16),0,255)/255).toFixed(1))}if(i=hex3Rx.exec(t))return this.setColor(parseInt(i[1]+i[1],16),parseInt(i[2]+i[2],16),parseInt(i[3]+i[3],16));throw new Error("invalid parameter: "+t)},Color.prototype.toUint32=function(t){return void 0===t&&(t=this.alpha),((255*t&255)<<24)+((255&this.r)<<16)+((255&this.g)<<8)+(255&this.b)},Color.prototype.toArray=function(){return this.glArray},Color.prototype.toHex=function(){return"#"+toHex(this.r)+toHex(this.g)+toHex(this.b)},Color.prototype.toHex8=function(){return"#"+toHex(this.r)+toHex(this.g)+toHex(this.b)+toHex(255*this.alpha)},Color.prototype.toRGB=function(){return"rgb("+this.r+","+this.g+","+this.b+")"},Color.prototype.toRGBA=function(){return"rgba("+this.r+","+this.g+","+this.b+","+this.alpha+")"},Object.defineProperties(Color.prototype,prototypeAccessors$4);var Matrix3d=function(){for(var t,e=[],i=arguments.length;i--;)e[i]=arguments[i];(t=this).onResetEvent.apply(t,e)},prototypeAccessors$3={tx:{configurable:!0},ty:{configurable:!0},tz:{configurable:!0}};Matrix3d.prototype.onResetEvent=function(){void 0===this.val&&(this.val=new Float32Array(16)),arguments.length&&arguments[0]instanceof Matrix3d?this.copy(arguments[0]):16===arguments.length?this.setTransform.apply(this,arguments):this.identity()},prototypeAccessors$3.tx.get=function(){return this.val[12]},prototypeAccessors$3.ty.get=function(){return this.val[13]},prototypeAccessors$3.tz.get=function(){return this.val[14]},Matrix3d.prototype.identity=function(){return this.setTransform(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)},Matrix3d.prototype.setTransform=function(t,e,i,o,r,n,s,a,h,l,c,u,d,p,f,y){var g=this.val;return g[0]=t,g[1]=e,g[2]=i,g[3]=o,g[4]=r,g[5]=n,g[6]=s,g[7]=a,g[8]=h,g[9]=l,g[10]=c,g[11]=u,g[12]=d,g[13]=p,g[14]=f,g[15]=y,this},Matrix3d.prototype.copy=function(t){return this.val.set(t.val),this},Matrix3d.prototype.fromMat2d=function(t){var e=t.val;return this.setTransform(e[0],e[3],e[6],0,e[1],e[4],e[7],0,e[2],e[5],e[8],0,0,0,0,1)},Matrix3d.prototype.multiply=function(t){var e=this.val,i=t.val,o=e[0],r=e[1],n=e[2],s=e[3],a=e[4],h=e[5],l=e[6],c=e[7],u=e[8],d=e[9],p=e[10],f=e[11],y=e[12],g=e[13],v=e[14],m=e[15],_=i[0],x=i[1],w=i[2],T=i[3];return e[0]=_*o+x*a+w*u+T*y,e[1]=_*r+x*h+w*d+T*g,e[2]=_*n+x*l+w*p+T*v,e[3]=_*s+x*c+w*f+T*m,_=i[4],x=i[5],w=i[6],T=i[7],e[4]=_*o+x*a+w*u+T*y,e[5]=_*r+x*h+w*d+T*g,e[6]=_*n+x*l+w*p+T*v,e[7]=_*s+x*c+w*f+T*m,_=i[8],x=i[9],w=i[10],T=i[11],e[8]=_*o+x*a+w*u+T*y,e[9]=_*r+x*h+w*d+T*g,e[10]=_*n+x*l+w*p+T*v,e[11]=_*s+x*c+w*f+T*m,_=i[12],x=i[13],w=i[14],T=i[15],e[12]=_*o+x*a+w*u+T*y,e[13]=_*r+x*h+w*d+T*g,e[14]=_*n+x*l+w*p+T*v,e[15]=_*s+x*c+w*f+T*m,this},Matrix3d.prototype.transpose=function(){var t=this.val,e=t[1],i=t[2],o=t[3],r=t[6],n=t[7],s=t[11];return t[1]=t[4],t[2]=t[8],t[3]=t[12],t[4]=e,t[6]=t[9],t[7]=t[13],t[8]=i,t[9]=r,t[11]=t[14],t[12]=o,t[13]=n,t[14]=s,this},Matrix3d.prototype.invert=function(){var t=this.val,e=t[0],i=t[1],o=t[2],r=t[3],n=t[4],s=t[5],a=t[6],h=t[7],l=t[8],c=t[9],u=t[10],d=t[11],p=t[12],f=t[13],y=t[14],g=t[15],v=e*s-i*n,m=e*a-o*n,_=e*h-r*n,x=i*a-o*s,w=i*h-r*s,T=o*h-r*a,b=l*f-c*p,E=l*y-u*p,A=l*g-d*p,S=c*y-u*f,C=c*g-d*f,R=u*g-d*y,O=v*R-m*C+_*S+x*A-w*E+T*b;return O?(O=1/O,t[0]=(s*R-a*C+h*S)*O,t[1]=(o*C-i*R-r*S)*O,t[2]=(f*T-y*w+g*x)*O,t[3]=(u*w-c*T-d*x)*O,t[4]=(a*A-n*R-h*E)*O,t[5]=(e*R-o*A+r*E)*O,t[6]=(y*_-p*T-g*m)*O,t[7]=(l*T-u*_+d*m)*O,t[8]=(n*C-s*A+h*b)*O,t[9]=(i*A-e*C-r*b)*O,t[10]=(p*w-f*_+g*v)*O,t[11]=(c*_-l*w-d*v)*O,t[12]=(s*E-n*S-a*b)*O,t[13]=(e*S-i*E+o*b)*O,t[14]=(f*m-p*x-y*v)*O,t[15]=(l*x-c*m+u*v)*O,this):null},Matrix3d.prototype.apply=function(t){var e=this.val,i=t.x,o=t.y,r=void 0!==t.z?t.z:1,n=e[3]*i+e[7]*o+e[11]*r+e[15]||1;return t.x=(e[0]*i+e[4]*o+e[8]*r+e[12])/n,t.y=(e[1]*i+e[5]*o+e[9]*r+e[13])/n,void 0!==t.z&&(t.z=(e[2]*i+e[6]*o+e[10]*r+e[14])/n),t},Matrix3d.prototype.applyInverse=function(t){var e=pool.pull("Matrix3d",this).invert();return e.apply(t),pool.push(e),t},Matrix3d.prototype.ortho=function(t,e,i,o,r,n){var s=this.val,a=1/(t-e),h=1/(i-o),l=1/(r-n);return s[0]=-2*a,s[1]=0,s[2]=0,s[3]=0,s[4]=0,s[5]=-2*h,s[6]=0,s[7]=0,s[8]=0,s[9]=0,s[10]=2*l,s[11]=0,s[12]=(t+e)*a,s[13]=(o+i)*h,s[14]=(n+r)*l,s[15]=1,this},Matrix3d.prototype.scale=function(t,e,i){var o=this.val,r=t,n=void 0===e?r:e,s=void 0===i?0:i;return o[0]=o[0]*r,o[1]=o[1]*r,o[2]=o[2]*r,o[3]=o[3]*r,o[4]=o[4]*n,o[5]=o[5]*n,o[6]=o[6]*n,o[7]=o[7]*n,o[8]=o[8]*s,o[9]=o[9]*s,o[10]=o[10]*s,o[11]=o[11]*s,this},Matrix3d.prototype.scaleV=function(t){return this.scale(t.x,t.y,t.z)},Matrix3d.prototype.scaleX=function(t){return this.scale(t,1)},Matrix3d.prototype.scaleY=function(t){return this.scale(1,t)},Matrix3d.prototype.rotate=function(t,e){var i,o,r,n,s,a,h,l,c,u,d,p,f,y,g,v,m,_,x,w,T,b,E,A,S=this.val,C=e.x,R=e.y,O=e.z,P=Math.sqrt(C*C+R*R+O*O);return P<EPSILON?null:(C*=P=1/P,R*=P,O*=P,i=Math.sin(t),r=1-(o=Math.cos(t)),n=S[0],s=S[1],a=S[2],h=S[3],l=S[4],c=S[5],u=S[6],d=S[7],p=S[8],f=S[9],y=S[10],g=S[11],v=C*C*r+o,m=R*C*r+O*i,_=O*C*r-R*i,x=C*R*r-O*i,w=R*R*r+o,T=O*R*r+C*i,b=C*O*r+R*i,E=R*O*r-C*i,A=O*O*r+o,S[0]=n*v+l*m+p*_,S[1]=s*v+c*m+f*_,S[2]=a*v+u*m+y*_,S[3]=h*v+d*m+g*_,S[4]=n*x+l*w+p*T,S[5]=s*x+c*w+f*T,S[6]=a*x+u*w+y*T,S[7]=h*x+d*w+g*T,S[8]=n*b+l*E+p*A,S[9]=s*b+c*E+f*A,S[10]=a*b+u*E+y*A,S[11]=h*b+d*E+g*A,this)},Matrix3d.prototype.translate=function(){var t,e,i,o=this.val;return arguments.length>1?(t=arguments[0],e=arguments[1],i=void 0===arguments[2]?0:arguments[2]):(t=arguments[0].x,e=arguments[0].y,i=void 0===arguments[0].z?0:arguments[0].z),o[12]=o[0]*t+o[4]*e+o[8]*i+o[12],o[13]=o[1]*t+o[5]*e+o[9]*i+o[13],o[14]=o[2]*t+o[6]*e+o[10]*i+o[14],o[15]=o[3]*t+o[7]*e+o[11]*i+o[15],this},Matrix3d.prototype.isIdentity=function(){var t=this.val;return 1===t[0]&&0===t[1]&&0===t[2]&&0===t[3]&&0===t[4]&&1===t[5]&&0===t[6]&&0===t[7]&&0===t[8]&&0===t[9]&&1===t[10]&&0===t[11]&&0===t[12]&&0===t[13]&&0===t[14]&&1===t[15]},Matrix3d.prototype.equals=function(t){var e=t.val,i=this.val;return i[0]===e[0]&&i[1]===e[1]&&i[2]===e[2]&&i[3]===e[3]&&i[4]===e[4]&&i[5]===e[5]&&i[6]===e[6]&&i[7]===e[7]&&i[8]===e[8]&&i[9]===e[9]&&i[10]===e[10]&&i[11]===e[11]&&i[12]===e[12]&&i[13]===e[13]&&i[14]===e[14]&&i[15]===e[15]},Matrix3d.prototype.clone=function(){return pool.pull("Matrix3d",this)},Matrix3d.prototype.toArray=function(){return this.val},Matrix3d.prototype.toString=function(){var t=this.val;return"me.Matrix3d("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+", "+t[9]+", "+t[10]+", "+t[11]+", "+t[12]+", "+t[13]+", "+t[14]+", "+t[15]+")"},Object.defineProperties(Matrix3d.prototype,prototypeAccessors$3);var Matrix2d=function(){for(var t,e=[],i=arguments.length;i--;)e[i]=arguments[i];(t=this).onResetEvent.apply(t,e)},prototypeAccessors$2={tx:{configurable:!0},ty:{configurable:!0}};Matrix2d.prototype.onResetEvent=function(){return void 0===this.val&&(this.val=new Float32Array(9)),arguments.length&&arguments[0]instanceof Matrix2d?this.copy(arguments[0]):arguments.length&&arguments[0]instanceof Matrix3d?this.fromMat3d(arguments[0]):arguments.length>=6?this.setTransform.apply(this,arguments):this.identity(),this},prototypeAccessors$2.tx.get=function(){return this.val[6]},prototypeAccessors$2.ty.get=function(){return this.val[7]},Matrix2d.prototype.identity=function(){return this.setTransform(1,0,0,0,1,0,0,0,1),this},Matrix2d.prototype.setTransform=function(){var t=this.val;return 9===arguments.length?(t[0]=arguments[0],t[1]=arguments[1],t[2]=arguments[2],t[3]=arguments[3],t[4]=arguments[4],t[5]=arguments[5],t[6]=arguments[6],t[7]=arguments[7],t[8]=arguments[8]):6===arguments.length&&(t[0]=arguments[0],t[1]=arguments[2],t[2]=arguments[4],t[3]=arguments[1],t[4]=arguments[3],t[5]=arguments[5],t[6]=0,t[7]=0,t[8]=1),this},Matrix2d.prototype.copy=function(t){return this.val.set(t.val),this},Matrix2d.prototype.fromMat3d=function(t){var e=t.val,i=this.val;return i[0]=e[0],i[1]=e[1],i[2]=e[2],i[3]=e[4],i[4]=e[5],i[5]=e[6],i[6]=e[8],i[7]=e[9],i[8]=e[10],this},Matrix2d.prototype.multiply=function(t){var e=t.val,i=this.val,o=i[0],r=i[1],n=i[3],s=i[4],a=e[0],h=e[1],l=e[3],c=e[4],u=e[6],d=e[7];return i[0]=o*a+n*h,i[1]=r*a+s*h,i[3]=o*l+n*c,i[4]=r*l+s*c,i[6]+=o*u+n*d,i[7]+=r*u+s*d,this},Matrix2d.prototype.transpose=function(){var t=this.val,e=t[1],i=t[2],o=t[5];return t[1]=t[3],t[2]=t[6],t[3]=e,t[5]=t[7],t[6]=i,t[7]=o,this},Matrix2d.prototype.invert=function(){var t=this.val,e=t[0],i=t[1],o=t[2],r=t[3],n=t[4],s=t[5],a=t[6],h=t[7],l=t[8],c=l*n-s*h,u=s*a-l*r,d=h*r-n*a,p=e*c+i*u+o*d;return t[0]=c/p,t[1]=(o*h-l*i)/p,t[2]=(s*i-o*n)/p,t[3]=u/p,t[4]=(l*e-o*a)/p,t[5]=(o*r-s*e)/p,t[6]=d/p,t[7]=(i*a-h*e)/p,t[8]=(n*e-i*r)/p,this},Matrix2d.prototype.apply=function(t){var e=this.val,i=t.x,o=t.y;return t.x=i*e[0]+o*e[3]+e[6],t.y=i*e[1]+o*e[4]+e[7],t},Matrix2d.prototype.applyInverse=function(t){var e=this.val,i=t.x,o=t.y,r=1/(e[0]*e[4]+e[3]*-e[1]);return t.x=e[4]*r*i+-e[3]*r*o+(e[7]*e[3]-e[6]*e[4])*r,t.y=e[0]*r*o+-e[1]*r*i+(-e[7]*e[0]+e[6]*e[1])*r,t},Matrix2d.prototype.scale=function(t,e){var i=this.val,o=t,r=void 0===e?o:e;return i[0]*=o,i[1]*=o,i[3]*=r,i[4]*=r,this},Matrix2d.prototype.scaleV=function(t){return this.scale(t.x,t.y)},Matrix2d.prototype.scaleX=function(t){return this.scale(t,1)},Matrix2d.prototype.scaleY=function(t){return this.scale(1,t)},Matrix2d.prototype.rotate=function(t){if(0!==t){var e=this.val,i=e[0],o=e[1],r=e[2],n=e[3],s=e[4],a=e[5],h=Math.sin(t),l=Math.cos(t);e[0]=l*i+h*n,e[1]=l*o+h*s,e[2]=l*r+h*a,e[3]=l*n-h*i,e[4]=l*s-h*o,e[5]=l*a-h*r}return this},Matrix2d.prototype.translate=function(){var t,e,i=this.val;return 2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),i[6]+=i[0]*t+i[3]*e,i[7]+=i[1]*t+i[4]*e,this},Matrix2d.prototype.isIdentity=function(){var t=this.val;return 1===t[0]&&0===t[1]&&0===t[2]&&0===t[3]&&1===t[4]&&0===t[5]&&0===t[6]&&0===t[7]&&1===t[8]},Matrix2d.prototype.equals=function(t){var e=t.val,i=this.val;return i[0]===e[0]&&i[1]===e[1]&&i[2]===e[2]&&i[3]===e[3]&&i[4]===e[4]&&i[5]===e[5]&&i[6]===e[6]&&i[7]===e[7]&&i[8]===e[8]},Matrix2d.prototype.clone=function(){return pool.pull("Matrix2d",this)},Matrix2d.prototype.toArray=function(){return this.val},Matrix2d.prototype.toString=function(){var t=this.val;return"me.Matrix2d("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+")"},Object.defineProperties(Matrix2d.prototype,prototypeAccessors$2);var commonjsGlobal="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},eventemitter3={exports:{}};!function(t){var e=Object.prototype.hasOwnProperty,i="~";function o(){}function r(t,e,i){this.fn=t,this.context=e,this.once=i||!1}function n(t,e,o,n,s){if("function"!=typeof o)throw new TypeError("The listener must be a function");var a=new r(o,n||t,s),h=i?i+e:e;return t._events[h]?t._events[h].fn?t._events[h]=[t._events[h],a]:t._events[h].push(a):(t._events[h]=a,t._eventsCount++),t}function s(t,e){0==--t._eventsCount?t._events=new o:delete t._events[e]}function a(){this._events=new o,this._eventsCount=0}Object.create&&(o.prototype=Object.create(null),(new o).__proto__||(i=!1)),a.prototype.eventNames=function(){var t,o,r=[];if(0===this._eventsCount)return r;for(o in t=this._events)e.call(t,o)&&r.push(i?o.slice(1):o);return Object.getOwnPropertySymbols?r.concat(Object.getOwnPropertySymbols(t)):r},a.prototype.listeners=function(t){var e=i?i+t:t,o=this._events[e];if(!o)return[];if(o.fn)return[o.fn];for(var r=0,n=o.length,s=new Array(n);r<n;r++)s[r]=o[r].fn;return s},a.prototype.listenerCount=function(t){var e=i?i+t:t,o=this._events[e];return o?o.fn?1:o.length:0},a.prototype.emit=function(t,e,o,r,n,s){var a=arguments,h=i?i+t:t;if(!this._events[h])return!1;var l,c,u=this._events[h],d=arguments.length;if(u.fn){switch(u.once&&this.removeListener(t,u.fn,void 0,!0),d){case 1:return u.fn.call(u.context),!0;case 2:return u.fn.call(u.context,e),!0;case 3:return u.fn.call(u.context,e,o),!0;case 4:return u.fn.call(u.context,e,o,r),!0;case 5:return u.fn.call(u.context,e,o,r,n),!0;case 6:return u.fn.call(u.context,e,o,r,n,s),!0}for(c=1,l=new Array(d-1);c<d;c++)l[c-1]=a[c];u.fn.apply(u.context,l)}else{var p,f=u.length;for(c=0;c<f;c++)switch(u[c].once&&this.removeListener(t,u[c].fn,void 0,!0),d){case 1:u[c].fn.call(u[c].context);break;case 2:u[c].fn.call(u[c].context,e);break;case 3:u[c].fn.call(u[c].context,e,o);break;case 4:u[c].fn.call(u[c].context,e,o,r);break;default:if(!l)for(p=1,l=new Array(d-1);p<d;p++)l[p-1]=a[p];u[c].fn.apply(u[c].context,l)}}return!0},a.prototype.on=function(t,e,i){return n(this,t,e,i,!1)},a.prototype.once=function(t,e,i){return n(this,t,e,i,!0)},a.prototype.removeListener=function(t,e,o,r){var n=i?i+t:t;if(!this._events[n])return this;if(!e)return s(this,n),this;var a=this._events[n];if(a.fn)a.fn!==e||r&&!a.once||o&&a.context!==o||s(this,n);else{for(var h=0,l=[],c=a.length;h<c;h++)(a[h].fn!==e||r&&!a[h].once||o&&a[h].context!==o)&&l.push(a[h]);l.length?this._events[n]=1===l.length?l[0]:l:s(this,n)}return this},a.prototype.removeAllListeners=function(t){var e;return t?(e=i?i+t:t,this._events[e]&&s(this,e)):(this._events=new o,this._eventsCount=0),this},a.prototype.off=a.prototype.removeListener,a.prototype.addListener=a.prototype.on,a.prefixed=i,a.EventEmitter=a,t.exports=a}(eventemitter3);var EventEmitter=eventemitter3.exports,eventEmitter=new EventEmitter,BOOT="me.boot",STATE_PAUSE="me.state.onPause",STATE_RESUME="me.state.onResume",STATE_STOP="me.state.onStop",STATE_RESTART="me.state.onRestart",VIDEO_INIT="me.video.onInit",GAME_INIT="me.game.onInit",GAME_RESET="me.game.onReset",GAME_BEFORE_UPDATE="me.game.beforeUpdate",GAME_AFTER_UPDATE="me.game.afterUpdate",GAME_UPDATE="me.game.onUpdate",GAME_BEFORE_DRAW="me.game.beforeDraw",GAME_AFTER_DRAW="me.game.afterDraw",LEVEL_LOADED="me.game.onLevelLoaded",LOADER_COMPLETE="me.loader.onload",LOADER_PROGRESS="me.loader.onProgress",KEYDOWN="me.input.keydown",KEYUP="me.input.keyup",GAMEPAD_CONNECTED="gamepad.connected",GAMEPAD_DISCONNECTED="gamepad.disconnected",GAMEPAD_UPDATE="gamepad.update",POINTERMOVE="me.event.pointermove",POINTERLOCKCHANGE="me.event.pointerlockChange",DRAGSTART="me.game.dragstart",DRAGEND="me.game.dragend",WINDOW_ONRESIZE="window.onresize",CANVAS_ONRESIZE="canvas.onresize",VIEWPORT_ONRESIZE="viewport.onresize",WINDOW_ONORIENTATION_CHANGE="window.orientationchange",WINDOW_ONSCROLL="window.onscroll",VIEWPORT_ONCHANGE="viewport.onchange",WEBGL_ONCONTEXT_LOST="renderer.webglcontextlost",WEBGL_ONCONTEXT_RESTORED="renderer.webglcontextrestored";function emit(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];return eventEmitter.emit.apply(eventEmitter,[t].concat(e))}function on(t,e,i){return eventEmitter.on(t,e,i)}function once(t,e,i){return eventEmitter.once(t,e,i)}function off(t,e){return eventEmitter.off(t,e)}var event=Object.freeze({__proto__:null,BOOT:BOOT,STATE_PAUSE:STATE_PAUSE,STATE_RESUME:STATE_RESUME,STATE_STOP:STATE_STOP,STATE_RESTART:STATE_RESTART,VIDEO_INIT:VIDEO_INIT,GAME_INIT:GAME_INIT,GAME_RESET:GAME_RESET,GAME_BEFORE_UPDATE:GAME_BEFORE_UPDATE,GAME_AFTER_UPDATE:GAME_AFTER_UPDATE,GAME_UPDATE:GAME_UPDATE,GAME_BEFORE_DRAW:GAME_BEFORE_DRAW,GAME_AFTER_DRAW:GAME_AFTER_DRAW,LEVEL_LOADED:LEVEL_LOADED,LOADER_COMPLETE:LOADER_COMPLETE,LOADER_PROGRESS:LOADER_PROGRESS,KEYDOWN:KEYDOWN,KEYUP:KEYUP,GAMEPAD_CONNECTED:GAMEPAD_CONNECTED,GAMEPAD_DISCONNECTED:GAMEPAD_DISCONNECTED,GAMEPAD_UPDATE:GAMEPAD_UPDATE,POINTERMOVE:POINTERMOVE,POINTERLOCKCHANGE:POINTERLOCKCHANGE,DRAGSTART:DRAGSTART,DRAGEND:DRAGEND,WINDOW_ONRESIZE:WINDOW_ONRESIZE,CANVAS_ONRESIZE:CANVAS_ONRESIZE,VIEWPORT_ONRESIZE:VIEWPORT_ONRESIZE,WINDOW_ONORIENTATION_CHANGE:WINDOW_ONORIENTATION_CHANGE,WINDOW_ONSCROLL:WINDOW_ONSCROLL,VIEWPORT_ONCHANGE:VIEWPORT_ONCHANGE,WEBGL_ONCONTEXT_LOST:WEBGL_ONCONTEXT_LOST,WEBGL_ONCONTEXT_RESTORED:WEBGL_ONCONTEXT_RESTORED,emit:emit,on:on,once:once,off:off}),howler={};
9
9
  /*!
10
10
  * howler.js v2.2.3
11
11
  * howlerjs.com
@@ -27,4 +27,4 @@
27
27
  *
28
28
  * MIT License
29
29
  */
30
- function(){var t;HowlerGlobal.prototype._pos=[0,0,0],HowlerGlobal.prototype._orientation=[0,0,-1,0,1,0],HowlerGlobal.prototype.stereo=function(t){var e=this;if(!e.ctx||!e.ctx.listener)return e;for(var i=e._howls.length-1;i>=0;i--)e._howls[i].stereo(t);return e},HowlerGlobal.prototype.pos=function(t,e,i){var o=this;return o.ctx&&o.ctx.listener?(e="number"!=typeof e?o._pos[1]:e,i="number"!=typeof i?o._pos[2]:i,"number"!=typeof t?o._pos:(o._pos=[t,e,i],void 0!==o.ctx.listener.positionX?(o.ctx.listener.positionX.setTargetAtTime(o._pos[0],Howler.ctx.currentTime,.1),o.ctx.listener.positionY.setTargetAtTime(o._pos[1],Howler.ctx.currentTime,.1),o.ctx.listener.positionZ.setTargetAtTime(o._pos[2],Howler.ctx.currentTime,.1)):o.ctx.listener.setPosition(o._pos[0],o._pos[1],o._pos[2]),o)):o},HowlerGlobal.prototype.orientation=function(t,e,i,o,r,n){var s=this;if(!s.ctx||!s.ctx.listener)return s;var a=s._orientation;return e="number"!=typeof e?a[1]:e,i="number"!=typeof i?a[2]:i,o="number"!=typeof o?a[3]:o,r="number"!=typeof r?a[4]:r,n="number"!=typeof n?a[5]:n,"number"!=typeof t?a:(s._orientation=[t,e,i,o,r,n],void 0!==s.ctx.listener.forwardX?(s.ctx.listener.forwardX.setTargetAtTime(t,Howler.ctx.currentTime,.1),s.ctx.listener.forwardY.setTargetAtTime(e,Howler.ctx.currentTime,.1),s.ctx.listener.forwardZ.setTargetAtTime(i,Howler.ctx.currentTime,.1),s.ctx.listener.upX.setTargetAtTime(o,Howler.ctx.currentTime,.1),s.ctx.listener.upY.setTargetAtTime(r,Howler.ctx.currentTime,.1),s.ctx.listener.upZ.setTargetAtTime(n,Howler.ctx.currentTime,.1)):s.ctx.listener.setOrientation(t,e,i,o,r,n),s)},Howl.prototype.init=(t=Howl.prototype.init,function(e){var i=this;return i._orientation=e.orientation||[1,0,0],i._stereo=e.stereo||null,i._pos=e.pos||null,i._pannerAttr={coneInnerAngle:void 0!==e.coneInnerAngle?e.coneInnerAngle:360,coneOuterAngle:void 0!==e.coneOuterAngle?e.coneOuterAngle:360,coneOuterGain:void 0!==e.coneOuterGain?e.coneOuterGain:0,distanceModel:void 0!==e.distanceModel?e.distanceModel:"inverse",maxDistance:void 0!==e.maxDistance?e.maxDistance:1e4,panningModel:void 0!==e.panningModel?e.panningModel:"HRTF",refDistance:void 0!==e.refDistance?e.refDistance:1,rolloffFactor:void 0!==e.rolloffFactor?e.rolloffFactor:1},i._onstereo=e.onstereo?[{fn:e.onstereo}]:[],i._onpos=e.onpos?[{fn:e.onpos}]:[],i._onorientation=e.onorientation?[{fn:e.onorientation}]:[],t.call(this,e)}),Howl.prototype.stereo=function(t,i){var o=this;if(!o._webAudio)return o;if("loaded"!==o._state)return o._queue.push({event:"stereo",action:function(){o.stereo(t,i)}}),o;var r=void 0===Howler.ctx.createStereoPanner?"spatial":"stereo";if(void 0===i){if("number"!=typeof t)return o._stereo;o._stereo=t,o._pos=[t,0,0]}for(var n=o._getSoundIds(i),s=0;s<n.length;s++){var a=o._soundById(n[s]);if(a){if("number"!=typeof t)return a._stereo;a._stereo=t,a._pos=[t,0,0],a._node&&(a._pannerAttr.panningModel="equalpower",a._panner&&a._panner.pan||e(a,r),"spatial"===r?void 0!==a._panner.positionX?(a._panner.positionX.setValueAtTime(t,Howler.ctx.currentTime),a._panner.positionY.setValueAtTime(0,Howler.ctx.currentTime),a._panner.positionZ.setValueAtTime(0,Howler.ctx.currentTime)):a._panner.setPosition(t,0,0):a._panner.pan.setValueAtTime(t,Howler.ctx.currentTime)),o._emit("stereo",a._id)}}return o},Howl.prototype.pos=function(t,i,o,r){var n=this;if(!n._webAudio)return n;if("loaded"!==n._state)return n._queue.push({event:"pos",action:function(){n.pos(t,i,o,r)}}),n;if(i="number"!=typeof i?0:i,o="number"!=typeof o?-.5:o,void 0===r){if("number"!=typeof t)return n._pos;n._pos=[t,i,o]}for(var s=n._getSoundIds(r),a=0;a<s.length;a++){var h=n._soundById(s[a]);if(h){if("number"!=typeof t)return h._pos;h._pos=[t,i,o],h._node&&(h._panner&&!h._panner.pan||e(h,"spatial"),void 0!==h._panner.positionX?(h._panner.positionX.setValueAtTime(t,Howler.ctx.currentTime),h._panner.positionY.setValueAtTime(i,Howler.ctx.currentTime),h._panner.positionZ.setValueAtTime(o,Howler.ctx.currentTime)):h._panner.setPosition(t,i,o)),n._emit("pos",h._id)}}return n},Howl.prototype.orientation=function(t,i,o,r){var n=this;if(!n._webAudio)return n;if("loaded"!==n._state)return n._queue.push({event:"orientation",action:function(){n.orientation(t,i,o,r)}}),n;if(i="number"!=typeof i?n._orientation[1]:i,o="number"!=typeof o?n._orientation[2]:o,void 0===r){if("number"!=typeof t)return n._orientation;n._orientation=[t,i,o]}for(var s=n._getSoundIds(r),a=0;a<s.length;a++){var h=n._soundById(s[a]);if(h){if("number"!=typeof t)return h._orientation;h._orientation=[t,i,o],h._node&&(h._panner||(h._pos||(h._pos=n._pos||[0,0,-.5]),e(h,"spatial")),void 0!==h._panner.orientationX?(h._panner.orientationX.setValueAtTime(t,Howler.ctx.currentTime),h._panner.orientationY.setValueAtTime(i,Howler.ctx.currentTime),h._panner.orientationZ.setValueAtTime(o,Howler.ctx.currentTime)):h._panner.setOrientation(t,i,o)),n._emit("orientation",h._id)}}return n},Howl.prototype.pannerAttr=function(){var t,i,o,r=this,n=arguments;if(!r._webAudio)return r;if(0===n.length)return r._pannerAttr;if(1===n.length){if("object"!=typeof n[0])return(o=r._soundById(parseInt(n[0],10)))?o._pannerAttr:r._pannerAttr;t=n[0],void 0===i&&(t.pannerAttr||(t.pannerAttr={coneInnerAngle:t.coneInnerAngle,coneOuterAngle:t.coneOuterAngle,coneOuterGain:t.coneOuterGain,distanceModel:t.distanceModel,maxDistance:t.maxDistance,refDistance:t.refDistance,rolloffFactor:t.rolloffFactor,panningModel:t.panningModel}),r._pannerAttr={coneInnerAngle:void 0!==t.pannerAttr.coneInnerAngle?t.pannerAttr.coneInnerAngle:r._coneInnerAngle,coneOuterAngle:void 0!==t.pannerAttr.coneOuterAngle?t.pannerAttr.coneOuterAngle:r._coneOuterAngle,coneOuterGain:void 0!==t.pannerAttr.coneOuterGain?t.pannerAttr.coneOuterGain:r._coneOuterGain,distanceModel:void 0!==t.pannerAttr.distanceModel?t.pannerAttr.distanceModel:r._distanceModel,maxDistance:void 0!==t.pannerAttr.maxDistance?t.pannerAttr.maxDistance:r._maxDistance,refDistance:void 0!==t.pannerAttr.refDistance?t.pannerAttr.refDistance:r._refDistance,rolloffFactor:void 0!==t.pannerAttr.rolloffFactor?t.pannerAttr.rolloffFactor:r._rolloffFactor,panningModel:void 0!==t.pannerAttr.panningModel?t.pannerAttr.panningModel:r._panningModel})}else 2===n.length&&(t=n[0],i=parseInt(n[1],10));for(var s=r._getSoundIds(i),a=0;a<s.length;a++)if(o=r._soundById(s[a])){var h=o._pannerAttr;h={coneInnerAngle:void 0!==t.coneInnerAngle?t.coneInnerAngle:h.coneInnerAngle,coneOuterAngle:void 0!==t.coneOuterAngle?t.coneOuterAngle:h.coneOuterAngle,coneOuterGain:void 0!==t.coneOuterGain?t.coneOuterGain:h.coneOuterGain,distanceModel:void 0!==t.distanceModel?t.distanceModel:h.distanceModel,maxDistance:void 0!==t.maxDistance?t.maxDistance:h.maxDistance,refDistance:void 0!==t.refDistance?t.refDistance:h.refDistance,rolloffFactor:void 0!==t.rolloffFactor?t.rolloffFactor:h.rolloffFactor,panningModel:void 0!==t.panningModel?t.panningModel:h.panningModel};var l=o._panner;l?(l.coneInnerAngle=h.coneInnerAngle,l.coneOuterAngle=h.coneOuterAngle,l.coneOuterGain=h.coneOuterGain,l.distanceModel=h.distanceModel,l.maxDistance=h.maxDistance,l.refDistance=h.refDistance,l.rolloffFactor=h.rolloffFactor,l.panningModel=h.panningModel):(o._pos||(o._pos=r._pos||[0,0,-.5]),e(o,"spatial"))}return r},Sound.prototype.init=function(t){return function(){var e=this,i=e._parent;e._orientation=i._orientation,e._stereo=i._stereo,e._pos=i._pos,e._pannerAttr=i._pannerAttr,t.call(this),e._stereo?i.stereo(e._stereo):e._pos&&i.pos(e._pos[0],e._pos[1],e._pos[2],e._id)}}(Sound.prototype.init),Sound.prototype.reset=function(t){return function(){var e=this,i=e._parent;return e._orientation=i._orientation,e._stereo=i._stereo,e._pos=i._pos,e._pannerAttr=i._pannerAttr,e._stereo?i.stereo(e._stereo):e._pos?i.pos(e._pos[0],e._pos[1],e._pos[2],e._id):e._panner&&(e._panner.disconnect(0),e._panner=void 0,i._refreshBuffer(e)),t.call(this)}}(Sound.prototype.reset);var e=function(t,e){"spatial"===(e=e||"spatial")?(t._panner=Howler.ctx.createPanner(),t._panner.coneInnerAngle=t._pannerAttr.coneInnerAngle,t._panner.coneOuterAngle=t._pannerAttr.coneOuterAngle,t._panner.coneOuterGain=t._pannerAttr.coneOuterGain,t._panner.distanceModel=t._pannerAttr.distanceModel,t._panner.maxDistance=t._pannerAttr.maxDistance,t._panner.refDistance=t._pannerAttr.refDistance,t._panner.rolloffFactor=t._pannerAttr.rolloffFactor,t._panner.panningModel=t._pannerAttr.panningModel,void 0!==t._panner.positionX?(t._panner.positionX.setValueAtTime(t._pos[0],Howler.ctx.currentTime),t._panner.positionY.setValueAtTime(t._pos[1],Howler.ctx.currentTime),t._panner.positionZ.setValueAtTime(t._pos[2],Howler.ctx.currentTime)):t._panner.setPosition(t._pos[0],t._pos[1],t._pos[2]),void 0!==t._panner.orientationX?(t._panner.orientationX.setValueAtTime(t._orientation[0],Howler.ctx.currentTime),t._panner.orientationY.setValueAtTime(t._orientation[1],Howler.ctx.currentTime),t._panner.orientationZ.setValueAtTime(t._orientation[2],Howler.ctx.currentTime)):t._panner.setOrientation(t._orientation[0],t._orientation[1],t._orientation[2])):(t._panner=Howler.ctx.createStereoPanner(),t._panner.pan.setValueAtTime(t._stereo,Howler.ctx.currentTime)),t._panner.connect(t._node),t._paused||t._parent.pause(t._id,!0).play(t._id,!0)}}()}(howler);var ObservableVector2d=function(t){function e(e,i,o){if(void 0===e&&(e=0),void 0===i&&(i=0),t.call(this,e,i),void 0===o)throw new Error("undefined `onUpdate` callback");this.setCallback(o.onUpdate,o.scope)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={x:{configurable:!0},y:{configurable:!0}};return e.prototype.onResetEvent=function(t,e,i){return void 0===t&&(t=0),void 0===e&&(e=0),this.setMuted(t,e),void 0!==i&&this.setCallback(i.onUpdate,i.scope),this},i.x.get=function(){return this._x},i.x.set=function(t){var e=this.onUpdate.call(this.scope,t,this._y,this._x,this._y);this._x=e&&"x"in e?e.x:t},i.y.get=function(){return this._y},i.y.set=function(t){var e=this.onUpdate.call(this.scope,this._x,t,this._x,this._y);this._y=e&&"y"in e?e.y:t},e.prototype._set=function(t,e){var i=this.onUpdate.call(this.scope,t,e,this._x,this._y);return i&&"x"in i&&"y"in i?(this._x=i.x,this._y=i.y):(this._x=t,this._y=e),this},e.prototype.setMuted=function(t,e){return this._x=t,this._y=e,this},e.prototype.setCallback=function(t,e){if(void 0===e&&(e=null),"function"!=typeof t)throw new Error("invalid `onUpdate` callback");return this.onUpdate=t,this.scope=e,this},e.prototype.add=function(t){return this._set(this._x+t.x,this._y+t.y)},e.prototype.sub=function(t){return this._set(this._x-t.x,this._y-t.y)},e.prototype.scale=function(t,e){return this._set(this._x*t,this._y*(void 0!==e?e:t))},e.prototype.scaleV=function(t){return this._set(this._x*t.x,this._y*t.y)},e.prototype.div=function(t){return this._set(this._x/t,this._y/t)},e.prototype.abs=function(){return this._set(this._x<0?-this._x:this._x,this._y<0?-this._y:this._y)},e.prototype.clamp=function(t,i){return new e(clamp(this.x,t,i),clamp(this.y,t,i),{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.clampSelf=function(t,e){return this._set(clamp(this._x,t,e),clamp(this._y,t,e))},e.prototype.minV=function(t){return this._set(this._x<t.x?this._x:t.x,this._y<t.y?this._y:t.y)},e.prototype.maxV=function(t){return this._set(this._x>t.x?this._x:t.x,this._y>t.y?this._y:t.y)},e.prototype.floor=function(){return new e(Math.floor(this._x),Math.floor(this._y),{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.floorSelf=function(){return this._set(Math.floor(this._x),Math.floor(this._y))},e.prototype.ceil=function(){return new e(Math.ceil(this._x),Math.ceil(this._y),{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.ceilSelf=function(){return this._set(Math.ceil(this._x),Math.ceil(this._y))},e.prototype.negate=function(){return new e(-this._x,-this._y,{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.negateSelf=function(){return this._set(-this._x,-this._y)},e.prototype.copy=function(t){return this._set(t.x,t.y)},e.prototype.equals=function(t){return this._x===t.x&&this._y===t.y},e.prototype.perp=function(){return this._set(this._y,-this._x)},e.prototype.rotate=function(t,e){var i=0,o=0;"object"==typeof e&&(i=e.x,o=e.y);var r=this._x-i,n=this._y-o,s=Math.cos(t),a=Math.sin(t);return this._set(r*s-n*a+i,r*a+n*s+o)},e.prototype.dotProduct=function(t){return this._x*t.x+this._y*t.y},e.prototype.lerp=function(t,e){return this._x+=(t.x-this._x)*e,this._y+=(t.y-this._y)*e,this},e.prototype.distance=function(t){return Math.sqrt((this._x-t.x)*(this._x-t.x)+(this._y-t.y)*(this._y-t.y))},e.prototype.clone=function(){return pool.pull("ObservableVector2d",this._x,this._y,{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.toVector2d=function(){return pool.pull("Vector2d",this._x,this._y)},e.prototype.toString=function(){return"x:"+this._x+",y:"+this._y},Object.defineProperties(e.prototype,i),e}(Vector2d),Vector3d=function(){for(var t,e=[],i=arguments.length;i--;)e[i]=arguments[i];(t=this).onResetEvent.apply(t,e)};Vector3d.prototype.onResetEvent=function(t,e,i){return void 0===t&&(t=0),void 0===e&&(e=0),void 0===i&&(i=0),this.x=t,this.y=e,this.z=i,this},Vector3d.prototype._set=function(t,e,i){return void 0===i&&(i=0),this.x=t,this.y=e,this.z=i,this},Vector3d.prototype.set=function(t,e,i){if(t!==+t||e!==+e||void 0!==i&&i!==+i)throw new Error("invalid x, y, z parameters (not a number)");return this._set(t,e,i)},Vector3d.prototype.setZero=function(){return this.set(0,0,0)},Vector3d.prototype.setV=function(t){return this._set(t.x,t.y,t.z)},Vector3d.prototype.add=function(t){return this._set(this.x+t.x,this.y+t.y,this.z+(t.z||0))},Vector3d.prototype.sub=function(t){return this._set(this.x-t.x,this.y-t.y,this.z-(t.z||0))},Vector3d.prototype.scale=function(t,e,i){return e=void 0!==e?e:t,this._set(this.x*t,this.y*e,this.z*(i||1))},Vector3d.prototype.scaleV=function(t){return this.scale(t.x,t.y,t.z)},Vector3d.prototype.toIso=function(){return this._set(this.x-this.y,.5*(this.x+this.y),this.z)},Vector3d.prototype.to2d=function(){return this._set(this.y+this.x/2,this.y-this.x/2,this.z)},Vector3d.prototype.div=function(t){return this._set(this.x/t,this.y/t,this.z/t)},Vector3d.prototype.abs=function(){return this._set(this.x<0?-this.x:this.x,this.y<0?-this.y:this.y,this.z<0?-this.z:this.z)},Vector3d.prototype.clamp=function(t,e){return new Vector3d(clamp(this.x,t,e),clamp(this.y,t,e),clamp(this.z,t,e))},Vector3d.prototype.clampSelf=function(t,e){return this._set(clamp(this.x,t,e),clamp(this.y,t,e),clamp(this.z,t,e))},Vector3d.prototype.minV=function(t){var e=t.z||0;return this._set(this.x<t.x?this.x:t.x,this.y<t.y?this.y:t.y,this.z<e?this.z:e)},Vector3d.prototype.maxV=function(t){var e=t.z||0;return this._set(this.x>t.x?this.x:t.x,this.y>t.y?this.y:t.y,this.z>e?this.z:e)},Vector3d.prototype.floor=function(){return new Vector3d(Math.floor(this.x),Math.floor(this.y),Math.floor(this.z))},Vector3d.prototype.floorSelf=function(){return this._set(Math.floor(this.x),Math.floor(this.y),Math.floor(this.z))},Vector3d.prototype.ceil=function(){return new Vector3d(Math.ceil(this.x),Math.ceil(this.y),Math.ceil(this.z))},Vector3d.prototype.ceilSelf=function(){return this._set(Math.ceil(this.x),Math.ceil(this.y),Math.ceil(this.z))},Vector3d.prototype.negate=function(){return new Vector3d(-this.x,-this.y,-this.z)},Vector3d.prototype.negateSelf=function(){return this._set(-this.x,-this.y,-this.z)},Vector3d.prototype.copy=function(t){return this._set(t.x,t.y,t.z||0)},Vector3d.prototype.equals=function(){var t,e,i;return arguments.length>=2?(t=arguments[0],e=arguments[1],i=arguments[2]):(t=arguments[0].x,e=arguments[0].y,i=arguments[0].z),void 0===i&&(i=this.z),this.x===t&&this.y===e&&this.z===i},Vector3d.prototype.normalize=function(){return this.div(this.length()||1)},Vector3d.prototype.perp=function(){return this._set(this.y,-this.x,this.z)},Vector3d.prototype.rotate=function(t,e){var i=0,o=0;"object"==typeof e&&(i=e.x,o=e.y);var r=this.x-i,n=this.y-o,s=Math.cos(t),a=Math.sin(t);return this._set(r*s-n*a+i,r*a+n*s+o,this.z)},Vector3d.prototype.dotProduct=function(t){return this.x*t.x+this.y*t.y+this.z*(void 0!==t.z?t.z:this.z)},Vector3d.prototype.length2=function(){return this.dotProduct(this)},Vector3d.prototype.length=function(){return Math.sqrt(this.length2())},Vector3d.prototype.lerp=function(t,e){return this.x+=(t.x-this.x)*e,this.y+=(t.y-this.y)*e,this.z+=(t.z-this.z)*e,this},Vector3d.prototype.distance=function(t){var e=this.x-t.x,i=this.y-t.y,o=this.z-(t.z||0);return Math.sqrt(e*e+i*i+o*o)},Vector3d.prototype.angle=function(t){return Math.acos(clamp(this.dotProduct(t)/(this.length()*t.length()),-1,1))},Vector3d.prototype.project=function(t){var e=this.dotProduct(t)/t.length2();return this.scale(e,e,e)},Vector3d.prototype.projectN=function(t){var e=this.dotProduct(t)/t.length2();return this.scale(e,e,e)},Vector3d.prototype.clone=function(){return pool.pull("Vector3d",this.x,this.y,this.z)},Vector3d.prototype.toString=function(){return"x:"+this.x+",y:"+this.y+",z:"+this.z};var ObservableVector3d=function(t){function e(e,i,o,r){if(void 0===e&&(e=0),void 0===i&&(i=0),void 0===o&&(o=0),t.call(this,e,i,o),void 0===r)throw new Error("undefined `onUpdate` callback");this.setCallback(r.onUpdate,r.scope)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={x:{configurable:!0},y:{configurable:!0},z:{configurable:!0}};return e.prototype.onResetEvent=function(t,e,i,o){return void 0===t&&(t=0),void 0===e&&(e=0),void 0===i&&(i=0),this.setMuted(t,e,i),void 0!==o&&this.setCallback(o.onUpdate,o.scope),this},i.x.get=function(){return this._x},i.x.set=function(t){var e=this.onUpdate.call(this.scope,t,this._y,this._z,this._x,this._y,this._z);this._x=e&&"x"in e?e.x:t},i.y.get=function(){return this._y},i.y.set=function(t){var e=this.onUpdate.call(this.scope,this._x,t,this._z,this._x,this._y,this._z);this._y=e&&"y"in e?e.y:t},i.z.get=function(){return this._z},i.z.set=function(t){var e=this.onUpdate.call(this.scope,this._x,this._y,t,this._x,this._y,this._z);this._z=e&&"z"in e?e.z:t},e.prototype._set=function(t,e,i){var o=this.onUpdate.call(this.scope,t,e,i,this._x,this._y,this._z);return o&&"x"in o&&"y"in o&&"z"in o?(this._x=o.x,this._y=o.y,this._z=o.z):(this._x=t,this._y=e,this._z=i||0),this},e.prototype.setMuted=function(t,e,i){return this._x=t,this._y=e,this._z=i||0,this},e.prototype.setCallback=function(t,e){if(void 0===e&&(e=null),"function"!=typeof t)throw new Error("invalid `onUpdate` callback");return this.onUpdate=t,this.scope=e,this},e.prototype.add=function(t){return this._set(this._x+t.x,this._y+t.y,this._z+(t.z||0))},e.prototype.sub=function(t){return this._set(this._x-t.x,this._y-t.y,this._z-(t.z||0))},e.prototype.scale=function(t,e,i){return e=void 0!==e?e:t,this._set(this._x*t,this._y*e,this._z*(i||1))},e.prototype.scaleV=function(t){return this._set(this._x*t.x,this._y*t.y,this._z*(t.z||1))},e.prototype.div=function(t){return this._set(this._x/t,this._y/t,this._z/t)},e.prototype.abs=function(){return this._set(this._x<0?-this._x:this._x,this._y<0?-this._y:this._y,this._Z<0?-this._z:this._z)},e.prototype.clamp=function(t,i){return new e(clamp(this._x,t,i),clamp(this._y,t,i),clamp(this._z,t,i),{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.clampSelf=function(t,e){return this._set(clamp(this._x,t,e),clamp(this._y,t,e),clamp(this._z,t,e))},e.prototype.minV=function(t){var e=t.z||0;return this._set(this._x<t.x?this._x:t.x,this._y<t.y?this._y:t.y,this._z<e?this._z:e)},e.prototype.maxV=function(t){var e=t.z||0;return this._set(this._x>t.x?this._x:t.x,this._y>t.y?this._y:t.y,this._z>e?this._z:e)},e.prototype.floor=function(){return new e(Math.floor(this._x),Math.floor(this._y),Math.floor(this._z),{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.floorSelf=function(){return this._set(Math.floor(this._x),Math.floor(this._y),Math.floor(this._z))},e.prototype.ceil=function(){return new e(Math.ceil(this._x),Math.ceil(this._y),Math.ceil(this._z),{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.ceilSelf=function(){return this._set(Math.ceil(this._x),Math.ceil(this._y),Math.ceil(this._z))},e.prototype.negate=function(){return new e(-this._x,-this._y,-this._z,{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.negateSelf=function(){return this._set(-this._x,-this._y,-this._z)},e.prototype.copy=function(t){return this._set(t.x,t.y,t.z||0)},e.prototype.equals=function(t){return this._x===t.x&&this._y===t.y&&this._z===(t.z||this._z)},e.prototype.perp=function(){return this._set(this._y,-this._x,this._z)},e.prototype.rotate=function(t,e){var i=0,o=0;"object"==typeof e&&(i=e.x,o=e.y);var r=this.x-i,n=this.y-o,s=Math.cos(t),a=Math.sin(t);return this._set(r*s-n*a+i,r*a+n*s+o,this.z)},e.prototype.dotProduct=function(t){return this._x*t.x+this._y*t.y+this._z*(t.z||1)},e.prototype.lerp=function(t,e){return this._x+=(t.x-this._x)*e,this._y+=(t.y-this._y)*e,this._z+=(t.z-this._z)*e,this},e.prototype.distance=function(t){var e=this._x-t.x,i=this._y-t.y,o=this._z-(t.z||0);return Math.sqrt(e*e+i*i+o*o)},e.prototype.clone=function(){return pool.pull("ObservableVector3d",this._x,this._y,this._z,{onUpdate:this.onUpdate})},e.prototype.toVector3d=function(){return pool.pull("Vector3d",this._x,this._y,this._z)},e.prototype.toString=function(){return"x:"+this._x+",y:"+this._y+",z:"+this._z},Object.defineProperties(e.prototype,i),e}(Vector3d),earcut$2={exports:{}};function earcut(t,e,i){i=i||2;var o,r,n,s,a,h,l,c=e&&e.length,u=c?e[0]*i:t.length,d=linkedList(t,0,u,i,!0),p=[];if(!d||d.next===d.prev)return p;if(c&&(d=eliminateHoles(t,e,d,i)),t.length>80*i){o=n=t[0],r=s=t[1];for(var f=i;f<u;f+=i)(a=t[f])<o&&(o=a),(h=t[f+1])<r&&(r=h),a>n&&(n=a),h>s&&(s=h);l=0!==(l=Math.max(n-o,s-r))?1/l:0}return earcutLinked(d,p,i,o,r,l),p}function linkedList(t,e,i,o,r){var n,s;if(r===signedArea(t,e,i,o)>0)for(n=e;n<i;n+=o)s=insertNode(n,t[n],t[n+1],s);else for(n=i-o;n>=e;n-=o)s=insertNode(n,t[n],t[n+1],s);return s&&equals(s,s.next)&&(removeNode(s),s=s.next),s}function filterPoints(t,e){if(!t)return t;e||(e=t);var i,o=t;do{if(i=!1,o.steiner||!equals(o,o.next)&&0!==area(o.prev,o,o.next))o=o.next;else{if(removeNode(o),(o=e=o.prev)===o.next)break;i=!0}}while(i||o!==e);return e}function earcutLinked(t,e,i,o,r,n,s){if(t){!s&&n&&indexCurve(t,o,r,n);for(var a,h,l=t;t.prev!==t.next;)if(a=t.prev,h=t.next,n?isEarHashed(t,o,r,n):isEar(t))e.push(a.i/i),e.push(t.i/i),e.push(h.i/i),removeNode(t),t=h.next,l=h.next;else if((t=h)===l){s?1===s?earcutLinked(t=cureLocalIntersections(filterPoints(t),e,i),e,i,o,r,n,2):2===s&&splitEarcut(t,e,i,o,r,n):earcutLinked(filterPoints(t),e,i,o,r,n,1);break}}}function isEar(t){var e=t.prev,i=t,o=t.next;if(area(e,i,o)>=0)return!1;for(var r=t.next.next;r!==t.prev;){if(pointInTriangle(e.x,e.y,i.x,i.y,o.x,o.y,r.x,r.y)&&area(r.prev,r,r.next)>=0)return!1;r=r.next}return!0}function isEarHashed(t,e,i,o){var r=t.prev,n=t,s=t.next;if(area(r,n,s)>=0)return!1;for(var a=r.x<n.x?r.x<s.x?r.x:s.x:n.x<s.x?n.x:s.x,h=r.y<n.y?r.y<s.y?r.y:s.y:n.y<s.y?n.y:s.y,l=r.x>n.x?r.x>s.x?r.x:s.x:n.x>s.x?n.x:s.x,c=r.y>n.y?r.y>s.y?r.y:s.y:n.y>s.y?n.y:s.y,u=zOrder(a,h,e,i,o),d=zOrder(l,c,e,i,o),p=t.prevZ,f=t.nextZ;p&&p.z>=u&&f&&f.z<=d;){if(p!==t.prev&&p!==t.next&&pointInTriangle(r.x,r.y,n.x,n.y,s.x,s.y,p.x,p.y)&&area(p.prev,p,p.next)>=0)return!1;if(p=p.prevZ,f!==t.prev&&f!==t.next&&pointInTriangle(r.x,r.y,n.x,n.y,s.x,s.y,f.x,f.y)&&area(f.prev,f,f.next)>=0)return!1;f=f.nextZ}for(;p&&p.z>=u;){if(p!==t.prev&&p!==t.next&&pointInTriangle(r.x,r.y,n.x,n.y,s.x,s.y,p.x,p.y)&&area(p.prev,p,p.next)>=0)return!1;p=p.prevZ}for(;f&&f.z<=d;){if(f!==t.prev&&f!==t.next&&pointInTriangle(r.x,r.y,n.x,n.y,s.x,s.y,f.x,f.y)&&area(f.prev,f,f.next)>=0)return!1;f=f.nextZ}return!0}function cureLocalIntersections(t,e,i){var o=t;do{var r=o.prev,n=o.next.next;!equals(r,n)&&intersects(r,o,o.next,n)&&locallyInside(r,n)&&locallyInside(n,r)&&(e.push(r.i/i),e.push(o.i/i),e.push(n.i/i),removeNode(o),removeNode(o.next),o=t=n),o=o.next}while(o!==t);return filterPoints(o)}function splitEarcut(t,e,i,o,r,n){var s=t;do{for(var a=s.next.next;a!==s.prev;){if(s.i!==a.i&&isValidDiagonal(s,a)){var h=splitPolygon(s,a);return s=filterPoints(s,s.next),h=filterPoints(h,h.next),earcutLinked(s,e,i,o,r,n),void earcutLinked(h,e,i,o,r,n)}a=a.next}s=s.next}while(s!==t)}function eliminateHoles(t,e,i,o){var r,n,s,a=[];for(r=0,n=e.length;r<n;r++)(s=linkedList(t,e[r]*o,r<n-1?e[r+1]*o:t.length,o,!1))===s.next&&(s.steiner=!0),a.push(getLeftmost(s));for(a.sort(compareX),r=0;r<a.length;r++)i=filterPoints(i=eliminateHole(a[r],i),i.next);return i}function compareX(t,e){return t.x-e.x}function eliminateHole(t,e){var i=findHoleBridge(t,e);if(!i)return e;var o=splitPolygon(i,t),r=filterPoints(i,i.next);return filterPoints(o,o.next),e===i?r:e}function findHoleBridge(t,e){var i,o=e,r=t.x,n=t.y,s=-1/0;do{if(n<=o.y&&n>=o.next.y&&o.next.y!==o.y){var a=o.x+(n-o.y)*(o.next.x-o.x)/(o.next.y-o.y);if(a<=r&&a>s){if(s=a,a===r){if(n===o.y)return o;if(n===o.next.y)return o.next}i=o.x<o.next.x?o:o.next}}o=o.next}while(o!==e);if(!i)return null;if(r===s)return i;var h,l=i,c=i.x,u=i.y,d=1/0;o=i;do{r>=o.x&&o.x>=c&&r!==o.x&&pointInTriangle(n<u?r:s,n,c,u,n<u?s:r,n,o.x,o.y)&&(h=Math.abs(n-o.y)/(r-o.x),locallyInside(o,t)&&(h<d||h===d&&(o.x>i.x||o.x===i.x&&sectorContainsSector(i,o)))&&(i=o,d=h)),o=o.next}while(o!==l);return i}function sectorContainsSector(t,e){return area(t.prev,t,e.prev)<0&&area(e.next,t,t.next)<0}function indexCurve(t,e,i,o){var r=t;do{null===r.z&&(r.z=zOrder(r.x,r.y,e,i,o)),r.prevZ=r.prev,r.nextZ=r.next,r=r.next}while(r!==t);r.prevZ.nextZ=null,r.prevZ=null,sortLinked(r)}function sortLinked(t){var e,i,o,r,n,s,a,h,l=1;do{for(i=t,t=null,n=null,s=0;i;){for(s++,o=i,a=0,e=0;e<l&&(a++,o=o.nextZ);e++);for(h=l;a>0||h>0&&o;)0!==a&&(0===h||!o||i.z<=o.z)?(r=i,i=i.nextZ,a--):(r=o,o=o.nextZ,h--),n?n.nextZ=r:t=r,r.prevZ=n,n=r;i=o}n.nextZ=null,l*=2}while(s>1);return t}function zOrder(t,e,i,o,r){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=32767*(t-i)*r)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=32767*(e-o)*r)|e<<8))|e<<4))|e<<2))|e<<1))<<1}function getLeftmost(t){var e=t,i=t;do{(e.x<i.x||e.x===i.x&&e.y<i.y)&&(i=e),e=e.next}while(e!==t);return i}function pointInTriangle(t,e,i,o,r,n,s,a){return(r-s)*(e-a)-(t-s)*(n-a)>=0&&(t-s)*(o-a)-(i-s)*(e-a)>=0&&(i-s)*(n-a)-(r-s)*(o-a)>=0}function isValidDiagonal(t,e){return t.next.i!==e.i&&t.prev.i!==e.i&&!intersectsPolygon(t,e)&&(locallyInside(t,e)&&locallyInside(e,t)&&middleInside(t,e)&&(area(t.prev,t,e.prev)||area(t,e.prev,e))||equals(t,e)&&area(t.prev,t,t.next)>0&&area(e.prev,e,e.next)>0)}function area(t,e,i){return(e.y-t.y)*(i.x-e.x)-(e.x-t.x)*(i.y-e.y)}function equals(t,e){return t.x===e.x&&t.y===e.y}function intersects(t,e,i,o){var r=sign(area(t,e,i)),n=sign(area(t,e,o)),s=sign(area(i,o,t)),a=sign(area(i,o,e));return r!==n&&s!==a||(!(0!==r||!onSegment(t,i,e))||(!(0!==n||!onSegment(t,o,e))||(!(0!==s||!onSegment(i,t,o))||!(0!==a||!onSegment(i,e,o)))))}function onSegment(t,e,i){return e.x<=Math.max(t.x,i.x)&&e.x>=Math.min(t.x,i.x)&&e.y<=Math.max(t.y,i.y)&&e.y>=Math.min(t.y,i.y)}function sign(t){return t>0?1:t<0?-1:0}function intersectsPolygon(t,e){var i=t;do{if(i.i!==t.i&&i.next.i!==t.i&&i.i!==e.i&&i.next.i!==e.i&&intersects(i,i.next,t,e))return!0;i=i.next}while(i!==t);return!1}function locallyInside(t,e){return area(t.prev,t,t.next)<0?area(t,e,t.next)>=0&&area(t,t.prev,e)>=0:area(t,e,t.prev)<0||area(t,t.next,e)<0}function middleInside(t,e){var i=t,o=!1,r=(t.x+e.x)/2,n=(t.y+e.y)/2;do{i.y>n!=i.next.y>n&&i.next.y!==i.y&&r<(i.next.x-i.x)*(n-i.y)/(i.next.y-i.y)+i.x&&(o=!o),i=i.next}while(i!==t);return o}function splitPolygon(t,e){var i=new Node$1(t.i,t.x,t.y),o=new Node$1(e.i,e.x,e.y),r=t.next,n=e.prev;return t.next=e,e.prev=t,i.next=r,r.prev=i,o.next=i,i.prev=o,n.next=o,o.prev=n,o}function insertNode(t,e,i,o){var r=new Node$1(t,e,i);return o?(r.next=o.next,r.prev=o,o.next.prev=r,o.next=r):(r.prev=r,r.next=r),r}function removeNode(t){t.next.prev=t.prev,t.prev.next=t.next,t.prevZ&&(t.prevZ.nextZ=t.nextZ),t.nextZ&&(t.nextZ.prevZ=t.prevZ)}function Node$1(t,e,i){this.i=t,this.x=e,this.y=i,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function signedArea(t,e,i,o){for(var r=0,n=e,s=i-o;n<i;n+=o)r+=(t[s]-t[n])*(t[n+1]+t[s+1]),s=n;return r}earcut$2.exports=earcut,earcut$2.exports.default=earcut,earcut.deviation=function(t,e,i,o){var r=e&&e.length,n=r?e[0]*i:t.length,s=Math.abs(signedArea(t,0,n,i));if(r)for(var a=0,h=e.length;a<h;a++){var l=e[a]*i,c=a<h-1?e[a+1]*i:t.length;s-=Math.abs(signedArea(t,l,c,i))}var u=0;for(a=0;a<o.length;a+=3){var d=o[a]*i,p=o[a+1]*i,f=o[a+2]*i;u+=Math.abs((t[d]-t[f])*(t[p+1]-t[d+1])-(t[d]-t[p])*(t[f+1]-t[d+1]))}return 0===s&&0===u?0:Math.abs((u-s)/s)},earcut.flatten=function(t){for(var e=t[0][0].length,i={vertices:[],holes:[],dimensions:e},o=0,r=0;r<t.length;r++){for(var n=0;n<t[r].length;n++)for(var s=0;s<e;s++)i.vertices.push(t[r][n][s]);r>0&&(o+=t[r-1].length,i.holes.push(o))}return i};var earcut$1=earcut$2.exports,Polygon=function(t,e,i){this.pos=new Vector2d,this._bounds,this.points=[],this.edges=[],this.indices=[],this.normals=[],this.shapeType="Polygon",this.setShape(t,e,i)};Polygon.prototype.onResetEvent=function(t,e,i){this.setShape(t,e,i)},Polygon.prototype.setShape=function(t,e,i){return this.pos.set(t,e),this.setVertices(i),this},Polygon.prototype.setVertices=function(t){var e=this;if(!Array.isArray(t))return this;if(t[0]instanceof Vector2d)this.points=t;else if(this.points.length=0,"object"==typeof t[0])t.forEach((function(t){e.points.push(new Vector2d(t.x,t.y))}));else for(var i=0;i<t.length;i+=2)this.points.push(new Vector2d(t[i],t[i+1]));return this.recalc(),this.updateBounds(),this},Polygon.prototype.transform=function(t){for(var e=this.points,i=e.length,o=0;o<i;o++)t.apply(e[o]);return this.recalc(),this.updateBounds(),this},Polygon.prototype.toIso=function(){return this.rotate(Math.PI/4).scale(Math.SQRT2,Math.SQRT1_2)},Polygon.prototype.to2d=function(){return this.scale(Math.SQRT1_2,Math.SQRT2).rotate(-Math.PI/4)},Polygon.prototype.rotate=function(t,e){if(0!==t){for(var i=this.points,o=i.length,r=0;r<o;r++)i[r].rotate(t,e);this.recalc(),this.updateBounds()}return this},Polygon.prototype.scale=function(t,e){e=void 0!==e?e:t;for(var i=this.points,o=i.length,r=0;r<o;r++)i[r].scale(t,e);return this.recalc(),this.updateBounds(),this},Polygon.prototype.scaleV=function(t){return this.scale(t.x,t.y)},Polygon.prototype.recalc=function(){var t,e=this.edges,i=this.normals,o=this.indices,r=this.points,n=r.length;if(n<3)throw new Error("Requires at least 3 points");for(t=0;t<n;t++)void 0===e[t]&&(e[t]=new Vector2d),e[t].copy(r[(t+1)%n]).sub(r[t]),void 0===i[t]&&(i[t]=new Vector2d),i[t].copy(e[t]).perp().normalize();return e.length=n,i.length=n,o.length=0,this},Polygon.prototype.getIndices=function(){return 0===this.indices.length&&(this.indices=earcut$1(this.points.flatMap((function(t){return[t.x,t.y]})))),this.indices},Polygon.prototype.translate=function(){var t,e;return 2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),this.pos.x+=t,this.pos.y+=e,this.getBounds().translate(t,e),this},Polygon.prototype.shift=function(){var t,e;2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),this.pos.x=t,this.pos.y=e,this.updateBounds()},Polygon.prototype.contains=function(){var t,e;2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y);for(var i=!1,o=this.pos.x,r=this.pos.y,n=this.points,s=n.length,a=0,h=s-1;a<s;h=a++){var l=n[a].y+r,c=n[a].x+o,u=n[h].y+r,d=n[h].x+o;l>e!=u>e&&t<(d-c)*(e-l)/(u-l)+c&&(i=!i)}return i},Polygon.prototype.getBounds=function(){return void 0===this._bounds&&(this._bounds=pool.pull("Bounds")),this._bounds},Polygon.prototype.updateBounds=function(){var t=this.getBounds();return t.update(this.points),t.translate(this.pos),t},Polygon.prototype.clone=function(){var t=[];return this.points.forEach((function(e){t.push(e.clone())})),new Polygon(this.pos.x,this.pos.y,t)};var Rect=function(t){function e(e,i,o,r){t.call(this,e,i,[new Vector2d(0,0),new Vector2d(o,0),new Vector2d(o,r),new Vector2d(0,r)]),this.shapeType="Rectangle"}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={left:{configurable:!0},right:{configurable:!0},top:{configurable:!0},bottom:{configurable:!0},width:{configurable:!0},height:{configurable:!0},centerX:{configurable:!0},centerY:{configurable:!0}};return e.prototype.onResetEvent=function(t,e,i,o){this.setShape(t,e,i,o)},e.prototype.setShape=function(t,e,i,o){var r=i;return this.pos.set(t,e),4===arguments.length&&((r=this.points)[0].set(0,0),r[1].set(i,0),r[2].set(i,o),r[3].set(0,o)),this.setVertices(r),this},i.left.get=function(){return this.pos.x},i.right.get=function(){var t=this.width;return this.pos.x+t||t},i.top.get=function(){return this.pos.y},i.bottom.get=function(){var t=this.height;return this.pos.y+t||t},i.width.get=function(){return this.points[2].x},i.width.set=function(t){this.points[1].x=this.points[2].x=t,this.recalc(),this.updateBounds()},i.height.get=function(){return this.points[2].y},i.height.set=function(t){this.points[2].y=this.points[3].y=t,this.recalc(),this.updateBounds()},i.centerX.get=function(){return isFinite(this.width)?this.pos.x+this.width/2:this.width},i.centerX.set=function(t){this.pos.x=t-this.width/2},i.centerY.get=function(){return isFinite(this.height)?this.pos.y+this.height/2:this.height},i.centerY.set=function(t){this.pos.y=t-this.height/2},e.prototype.resize=function(t,e){return this.width=t,this.height=e,this},e.prototype.scale=function(t,e){return void 0===e&&(e=t),this.width*=t,this.height*=e,this},e.prototype.clone=function(){return new e(this.pos.x,this.pos.y,this.width,this.height)},e.prototype.copy=function(t){return this.setShape(t.pos.x,t.pos.y,t.width,t.height)},e.prototype.union=function(t){var e=Math.min(this.left,t.left),i=Math.min(this.top,t.top);return this.resize(Math.max(this.right,t.right)-e,Math.max(this.bottom,t.bottom)-i),this.pos.set(e,i),this},e.prototype.overlaps=function(t){return this.left<t.right&&t.left<this.right&&this.top<t.bottom&&t.top<this.bottom},e.prototype.contains=function(){var t,i,o,r,n=arguments[0];return 2===arguments.length?(t=i=n,o=r=arguments[1]):n instanceof e?(t=n.left,i=n.right,o=n.top,r=n.bottom):(t=i=n.x,o=r=n.y),t>=this.left&&i<=this.right&&o>=this.top&&r<=this.bottom},e.prototype.equals=function(t){return t.left===this.left&&t.right===this.right&&t.top===this.top&&t.bottom===this.bottom},e.prototype.isFinite=function(){return isFinite(this.pos.x)&&isFinite(this.pos.y)&&isFinite(this.width)&&isFinite(this.height)},e.prototype.toPolygon=function(){return new t(this.pos.x,this.pos.y,this.points)},Object.defineProperties(e.prototype,i),e}(Polygon),_keyStatus={},_keyLock={},_keyLocked={},_keyRefs={},_preventDefaultForKeys={},_keyBindings={},keyDownEvent=function(t,e,i){e=e||t.keyCode||t.button;var o=_keyBindings[e];if(emit(KEYDOWN,o,e,!o||!_keyLocked[o]),o){if(!_keyLocked[o]){var r=void 0!==i?i:e;_keyRefs[o][r]||(_keyStatus[o]++,_keyRefs[o][r]=!0)}return!_preventDefaultForKeys[e]||"function"!=typeof t.preventDefault||t.preventDefault()}return!0},keyUpEvent=function(t,e,i){e=e||t.keyCode||t.button;var o=_keyBindings[e];if(emit(KEYUP,o,e),o){var r=void 0!==i?i:e;return _keyRefs[o][r]=void 0,_keyStatus[o]>0&&_keyStatus[o]--,_keyLocked[o]=!1,!_preventDefaultForKeys[e]||"function"!=typeof t.preventDefault||t.preventDefault()}return!0},keyBoardEventTarget=null,KEY={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,PAUSE:19,CAPS_LOCK:20,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,PRINT_SCREEN:42,INSERT:45,DELETE:46,NUM0:48,NUM1:49,NUM2:50,NUM3:51,NUM4:52,NUM5:53,NUM6:54,NUM7:55,NUM8:56,NUM9: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,WINDOW_KEY:91,NUMPAD0:96,NUMPAD1:97,NUMPAD2:98,NUMPAD3:99,NUMPAD4:100,NUMPAD5:101,NUMPAD6:102,NUMPAD7:103,NUMPAD8:104,NUMPAD9: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,TILDE:126,NUM_LOCK:144,SCROLL_LOCK:145,SEMICOLON:186,PLUS:187,COMMA:188,MINUS:189,PERIOD:190,FORWAND_SLASH:191,GRAVE_ACCENT:192,OPEN_BRACKET:219,BACK_SLASH:220,CLOSE_BRACKET:221,SINGLE_QUOTE:222};function initKeyboardEvent(){null===keyBoardEventTarget&&!1===device$1.isMobile&&((keyBoardEventTarget=window).addEventListener("keydown",keyDownEvent,!1),keyBoardEventTarget.addEventListener("keyup",keyUpEvent,!1))}function isKeyPressed(t){return!(!_keyStatus[t]||_keyLocked[t])&&(_keyLock[t]&&(_keyLocked[t]=!0),!0)}function keyStatus(t){return _keyStatus[t]>0}function triggerKeyEvent(t,e,i){!0===e?keyDownEvent({},t,i):keyUpEvent({},t,i)}function bindKey(t,e,i,o){void 0===o&&(o=preventDefault),_keyBindings[t]=e,_preventDefaultForKeys[t]=o,_keyStatus[e]=0,_keyLock[e]=i||!1,_keyLocked[e]=!1,_keyRefs[e]={}}function getBindingKey(t){return _keyBindings[t]}function unlockKey(t){_keyLocked[t]=!1}function unbindKey(t){var e=_keyBindings[t];_keyStatus[e]=0,_keyLock[e]=!1,_keyRefs[e]={},_keyBindings[t]=null,_preventDefaultForKeys[t]=null}var Bounds$1=function(t){this.onResetEvent(t)},prototypeAccessors$1={x:{configurable:!0},y:{configurable:!0},width:{configurable:!0},height:{configurable:!0},left:{configurable:!0},right:{configurable:!0},top:{configurable:!0},bottom:{configurable:!0},centerX:{configurable:!0},centerY:{configurable:!0},center:{configurable:!0}};Bounds$1.prototype.onResetEvent=function(t){void 0===this.min?(this.min={x:1/0,y:1/0},this.max={x:-1/0,y:-1/0}):this.clear(),void 0!==t&&this.update(t),this._center=new Vector2d},Bounds$1.prototype.clear=function(){this.setMinMax(1/0,1/0,-1/0,-1/0)},Bounds$1.prototype.setMinMax=function(t,e,i,o){this.min.x=t,this.min.y=e,this.max.x=i,this.max.y=o},prototypeAccessors$1.x.get=function(){return this.min.x},prototypeAccessors$1.x.set=function(t){var e=this.max.x-this.min.x;this.min.x=t,this.max.x=t+e},prototypeAccessors$1.y.get=function(){return this.min.y},prototypeAccessors$1.y.set=function(t){var e=this.max.y-this.min.y;this.min.y=t,this.max.y=t+e},prototypeAccessors$1.width.get=function(){return this.max.x-this.min.x},prototypeAccessors$1.width.set=function(t){this.max.x=this.min.x+t},prototypeAccessors$1.height.get=function(){return this.max.y-this.min.y},prototypeAccessors$1.height.set=function(t){this.max.y=this.min.y+t},prototypeAccessors$1.left.get=function(){return this.min.x},prototypeAccessors$1.right.get=function(){return this.max.x},prototypeAccessors$1.top.get=function(){return this.min.y},prototypeAccessors$1.bottom.get=function(){return this.max.y},prototypeAccessors$1.centerX.get=function(){return this.min.x+this.width/2},prototypeAccessors$1.centerY.get=function(){return this.min.y+this.height/2},prototypeAccessors$1.center.get=function(){return this._center.set(this.centerX,this.centerY)},Bounds$1.prototype.update=function(t){this.add(t,!0)},Bounds$1.prototype.add=function(t,e){void 0===e&&(e=!1),!0===e&&this.clear();for(var i=0;i<t.length;i++){var o=t[i];o.x>this.max.x&&(this.max.x=o.x),o.x<this.min.x&&(this.min.x=o.x),o.y>this.max.y&&(this.max.y=o.y),o.y<this.min.y&&(this.min.y=o.y)}},Bounds$1.prototype.addBounds=function(t,e){void 0===e&&(e=!1),!0===e&&this.clear(),t.max.x>this.max.x&&(this.max.x=t.max.x),t.min.x<this.min.x&&(this.min.x=t.min.x),t.max.y>this.max.y&&(this.max.y=t.max.y),t.min.y<this.min.y&&(this.min.y=t.min.y)},Bounds$1.prototype.addPoint=function(t,e){void 0!==e&&(t=e.apply(t)),this.min.x=Math.min(this.min.x,t.x),this.max.x=Math.max(this.max.x,t.x),this.min.y=Math.min(this.min.y,t.y),this.max.y=Math.max(this.max.y,t.y)},Bounds$1.prototype.addFrame=function(t,e,i,o,r){var n=me.pool.pull("Vector2d");this.addPoint(n.set(t,e),r),this.addPoint(n.set(i,e),r),this.addPoint(n.set(t,o),r),this.addPoint(n.set(i,o),r),me.pool.push(n)},Bounds$1.prototype.contains=function(){var t,e,i,o,r=arguments[0];return 2===arguments.length?(t=e=r,i=o=arguments[1]):r instanceof Bounds$1?(t=r.min.x,e=r.max.x,i=r.min.y,o=r.max.y):(t=e=r.x,i=o=r.y),t>=this.min.x&&e<=this.max.x&&i>=this.min.y&&o<=this.max.y},Bounds$1.prototype.overlaps=function(t){return!(this.right<t.left||this.left>t.right||this.bottom<t.top||this.top>t.bottom)},Bounds$1.prototype.isFinite=function(){return isFinite(this.min.x)&&isFinite(this.max.x)&&isFinite(this.min.y)&&isFinite(this.max.y)},Bounds$1.prototype.translate=function(){var t,e;2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),this.min.x+=t,this.max.x+=t,this.min.y+=e,this.max.y+=e},Bounds$1.prototype.shift=function(){var t,e;2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y);var i=this.max.x-this.min.x,o=this.max.y-this.min.y;this.min.x=t,this.max.x=t+i,this.min.y=e,this.max.y=e+o},Bounds$1.prototype.clone=function(){var t=new Bounds$1;return t.addBounds(this),t},Bounds$1.prototype.toPolygon=function(){return new Polygon(this.x,this.y,[new Vector2d(0,0),new Vector2d(this.width,0),new Vector2d(this.width,this.height),new Vector2d(0,this.height)])},Object.defineProperties(Bounds$1.prototype,prototypeAccessors$1);var tmpVec=new Vector2d,Pointer=function(t){function e(e,i,o,r){void 0===e&&(e=0),void 0===i&&(i=0),void 0===o&&(o=1),void 0===r&&(r=1),t.call(this),this.setMinMax(e,i,e+o,i+r),this.LEFT=0,this.MIDDLE=1,this.RIGHT=2,this.event=void 0,this.type=void 0,this.button=0,this.isPrimary=!1,this.pageX=0,this.pageY=0,this.clientX=0,this.clientY=0,this.deltaMode=0,this.deltaX=0,this.deltaY=0,this.deltaZ=0,this.gameX=0,this.gameY=0,this.gameScreenX=0,this.gameScreenY=0,this.gameWorldX=0,this.gameWorldY=0,this.gameLocalX=0,this.gameLocalY=0,this.pointerId=void 0,this.bind=[0,0,0]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setEvent=function(t,e,i,o,r,n){void 0===e&&(e=0),void 0===i&&(i=0),void 0===o&&(o=0),void 0===r&&(r=0),void 0===n&&(n=1),this.event=t,this.pageX=e,this.pageY=i,this.clientX=o,this.clientY=r,globalToLocal(this.pageX,this.pageY,tmpVec),this.gameScreenX=this.x=tmpVec.x,this.gameScreenY=this.y=tmpVec.y,this.isNormalized=!device$1.PointerEvent||device$1.PointerEvent&&!(t instanceof window.PointerEvent),"wheel"===t.type?(this.deltaMode=t.deltaMode||0,this.deltaX=t.deltaX||0,this.deltaY=t.deltaY||0,this.deltaZ=t.deltaZ||0):(this.deltaMode=0,this.deltaX=0,this.deltaY=0,this.deltaZ=0),this.pointerId=n,this.isPrimary=void 0===t.isPrimary||t.isPrimary,this.button=t.button||0,this.type=t.type,void 0!==viewport&&viewport.localToWorld(this.gameScreenX,this.gameScreenY,tmpVec),this.gameWorldX=tmpVec.x,this.gameWorldY=tmpVec.y,!1===this.isNormalized?(this.width=t.width||1,this.height=t.height||1):"number"==typeof t.radiusX?(this.width=2*t.radiusX||1,this.height=2*t.radiusY||1):this.width=this.height=1},e}(Bounds$1),T_POINTERS=[],eventHandlers=new Map,currentPointer,pointerInitialized=!1,lastTimeStamp=0,activeEventList=[],WHEEL=["wheel"],POINTER_MOVE=["pointermove","mousemove","touchmove"],POINTER_DOWN=["pointerdown","mousedown","touchstart"],POINTER_UP=["pointerup","mouseup","touchend"],POINTER_CANCEL=["pointercancel","mousecancel","touchcancel"],POINTER_ENTER=["pointerenter","mouseenter","touchenter"],POINTER_OVER=["pointerover","mouseover","touchover"],POINTER_LEAVE=["pointerleave","mouseleave","touchleave"],pointerEventList=[WHEEL[0],POINTER_MOVE[0],POINTER_DOWN[0],POINTER_UP[0],POINTER_CANCEL[0],POINTER_ENTER[0],POINTER_OVER[0],POINTER_LEAVE[0]],mouseEventList=[WHEEL[0],POINTER_MOVE[1],POINTER_DOWN[1],POINTER_UP[1],POINTER_CANCEL[1],POINTER_ENTER[1],POINTER_OVER[1],POINTER_LEAVE[1]],touchEventList=[POINTER_MOVE[2],POINTER_DOWN[2],POINTER_UP[2],POINTER_CANCEL[2],POINTER_ENTER[2],POINTER_OVER[2],POINTER_LEAVE[2]],pointerEventMap={wheel:WHEEL,pointermove:POINTER_MOVE,pointerdown:POINTER_DOWN,pointerup:POINTER_UP,pointercancel:POINTER_CANCEL,pointerenter:POINTER_ENTER,pointerover:POINTER_OVER,pointerleave:POINTER_LEAVE},normalizedEvents=[];function registerEventListener(t,e){for(var i=0;i<t.length;i++)-1===POINTER_MOVE.indexOf(t[i])&&pointerEventTarget.addEventListener(t[i],e,{passive:!1===preventDefault})}function enablePointerEvent(){if(!pointerInitialized){currentPointer=new Rect(0,0,1,1);for(var t=0;t<device$1.maxTouchPoints;t++)T_POINTERS.push(new Pointer);var e;null===pointerEventTarget&&(pointerEventTarget=renderer.getScreenCanvas()),activeEventList=device$1.PointerEvent?pointerEventList:mouseEventList,device$1.touch&&!device$1.PointerEvent&&(activeEventList=activeEventList.concat(touchEventList)),registerEventListener(activeEventList,onPointerEvent),void 0===throttlingInterval&&(throttlingInterval=~~(1e3/timer$1.maxfps)),!0===device$1.autoFocus&&(device$1.focus(),pointerEventTarget.addEventListener(activeEventList[2],(function(){device$1.focus()}),{passive:!1===preventDefault}));var i=findAllActiveEvents(activeEventList,POINTER_MOVE);if(throttlingInterval<17)for(e=0;e<i.length;e++)-1!==activeEventList.indexOf(i[e])&&pointerEventTarget.addEventListener(i[e],onMoveEvent,{passive:!0});else for(e=0;e<i.length;e++)-1!==activeEventList.indexOf(i[e])&&pointerEventTarget.addEventListener(i[e],throttle(onMoveEvent,throttlingInterval,!1),{passive:!0});setTouchAction(pointerEventTarget),pointerInitialized=!0}}function findActiveEvent(t,e){for(var i=0;i<e.length;i++){if(-1!==t.indexOf(e[i]))return e[i]}}function findAllActiveEvents(t,e){for(var i=[],o=0;o<e.length;o++){-1!==t.indexOf(e[o])&&i.push(e[o])}return i}function triggerEvent(t,e,i,o){var r;if(t.callbacks[e]){t.pointerId=o;for(var n=t.callbacks[e].length-1;n>=0&&(r=t.callbacks[e][n]);n--)if(!1===r(i))return!0}return!1}function dispatchEvent(t){for(var e=!1;t.length>0;){var i=t.pop();if(T_POINTERS.push(i),void 0!==i.event.timeStamp){if(i.event.timeStamp<lastTimeStamp)continue;lastTimeStamp=i.event.timeStamp}currentPointer.setShape(i.gameWorldX,i.gameWorldY,i.width,i.height),POINTER_MOVE.includes(i.type)&&(i.gameX=i.gameLocalX=i.gameScreenX,i.gameY=i.gameLocalY=i.gameScreenY,emit(POINTERMOVE,i));for(var o,r=world.broadphase.retrieve(currentPointer,Container.prototype._sortReverseZ),n=(r=r.concat([viewport])).length;o=r[--n];){if(eventHandlers.has(o)&&!0!==o.isKinematic){var s=eventHandlers.get(o),a=s.region,h=a.ancestor,l=a.getBounds(),c=!1;if(!0===a.floating?(i.gameX=i.gameLocalX=i.gameScreenX,i.gameY=i.gameLocalY=i.gameScreenY):(i.gameX=i.gameLocalX=i.gameWorldX,i.gameY=i.gameLocalY=i.gameWorldY),void 0!==h){var u=h.getBounds();i.gameLocalX=i.gameX-u.x,i.gameLocalY=i.gameY-u.y}if(a instanceof Renderable){var d=i.gameX,p=i.gameY;if(!a.currentTransform.isIdentity()){var f=a.currentTransform.applyInverse(pool.pull("Vector2d",d,p));d=f.x,p=f.y,pool.push(f)}c=l.contains(d,p)}else c=l.contains(i.gameX,i.gameY)&&(l===a||a.contains(i.gameLocalX,i.gameLocalY));switch(i.type){case POINTER_MOVE[0]:case POINTER_MOVE[1]:case POINTER_MOVE[2]:case POINTER_MOVE[3]:if(s.pointerId!==i.pointerId||c){if(null===s.pointerId&&c&&triggerEvent(s,findActiveEvent(activeEventList,POINTER_ENTER),i,i.pointerId)){e=!0;break}}else if(triggerEvent(s,findActiveEvent(activeEventList,POINTER_LEAVE),i,null)){e=!0;break}if(c&&triggerEvent(s,i.type,i,i.pointerId)){e=!0;break}break;case POINTER_UP[0]:case POINTER_UP[1]:case POINTER_UP[2]:case POINTER_UP[3]:if(s.pointerId===i.pointerId&&c&&triggerEvent(s,i.type,i,null)){e=!0;break}break;case POINTER_CANCEL[0]:case POINTER_CANCEL[1]:case POINTER_CANCEL[2]:case POINTER_CANCEL[3]:if(s.pointerId===i.pointerId&&triggerEvent(s,i.type,i,null)){e=!0;break}break;default:if(c&&triggerEvent(s,i.type,i,i.pointerId)){e=!0;break}}}if(!0===e)break}}return e}function normalizeEvent(t){var e;if(device$1.TouchEvent&&t.changedTouches)for(var i=0,o=t.changedTouches.length;i<o;i++){var r=t.changedTouches[i];(e=T_POINTERS.pop()).setEvent(t,r.pageX,r.pageY,r.clientX,r.clientY,r.identifier),normalizedEvents.push(e)}else(e=T_POINTERS.pop()).setEvent(t,t.pageX,t.pageY,t.clientX,t.clientY,t.pointerId),normalizedEvents.push(e);return!1===t.isPrimary||(normalizedEvents[0].isPrimary=!0,Object.assign(pointer,normalizedEvents[0])),normalizedEvents}function onMoveEvent(t){dispatchEvent(normalizeEvent(t))}function onPointerEvent(t){normalizeEvent(t);var e=normalizedEvents[0].button;(dispatchEvent(normalizedEvents)||"wheel"===t.type)&&t.preventDefault();var i=pointer.bind[e];i&&triggerKeyEvent(i,POINTER_DOWN.includes(t.type),e+1)}var pointerEventTarget=null,pointer=new Pointer(0,0,1,1),throttlingInterval;function globalToLocal(t,e,i){i=i||new Vector2d;var o=device$1.getElementBounds(renderer.getScreenCanvas()),r=device$1.devicePixelRatio;t-=o.left+(window.pageXOffset||0),e-=o.top+(window.pageYOffset||0);var n=scaleRatio;return 1===n.x&&1===n.y||(t/=n.x,e/=n.y),i.set(t*r,e*r)}function setTouchAction(t,e){t.style["touch-action"]=e||"none"}function bindPointer(){var t=arguments.length<2?pointer.LEFT:arguments[0],e=arguments.length<2?arguments[0]:arguments[1];if(enablePointerEvent(),!getBindingKey(e))throw new Error("no action defined for keycode "+e);pointer.bind[t]=e}function unbindPointer(t){pointer.bind[void 0===t?pointer.LEFT:t]=null}function registerPointerEvent(t,e,i){if(enablePointerEvent(),-1===pointerEventList.indexOf(t))throw new Error("invalid event type : "+t);if(void 0===e)throw new Error("registerPointerEvent: region for "+toString(e)+" event is undefined ");var o=findAllActiveEvents(activeEventList,pointerEventMap[t]);eventHandlers.has(e)||eventHandlers.set(e,{region:e,callbacks:{},pointerId:null});for(var r=eventHandlers.get(e),n=0;n<o.length;n++)t=o[n],r.callbacks[t]?r.callbacks[t].push(i):r.callbacks[t]=[i]}function releasePointerEvent(t,e,i){if(-1===pointerEventList.indexOf(t))throw new Error("invalid event type : "+t);var o=findAllActiveEvents(activeEventList,pointerEventMap[t]),r=eventHandlers.get(e);if(void 0!==r){for(var n=0;n<o.length;n++)if(t=o[n],r.callbacks[t]){if(void 0!==i)remove(r.callbacks[t],i);else for(;r.callbacks[t].length>0;)r.callbacks[t].pop();0===r.callbacks[t].length&&delete r.callbacks[t]}0===Object.keys(r.callbacks).length&&eventHandlers.delete(e)}}function releaseAllPointerEvents(t){if(eventHandlers.has(t))for(var e=0;e<pointerEventList.length;e++)this.releasePointerEvent(pointerEventList[e],t)}var deadzone=.1;function wiredXbox360NormalizeFn(t,e,i){return i===this.GAMEPAD.BUTTONS.L2||i===this.GAMEPAD.BUTTONS.R2?(t+1)/2:t}function ouyaNormalizeFn(t,e,i){return t=t>0?i===this.GAMEPAD.BUTTONS.L2?Math.max(0,t-2e4)/111070:(t-1)/131070:(65536+t)/131070+.5}var vendorProductRE=/^([0-9a-f]{1,4})-([0-9a-f]{1,4})-/i,leadingZeroRE=/^0+/;function addMapping(t,e){var i=t.replace(vendorProductRE,(function(t,e,i){return"000".substr(e.length-1)+e+"-"+"000".substr(i.length-1)+i+"-"})),o=t.replace(vendorProductRE,(function(t,e,i){return e.replace(leadingZeroRE,"")+"-"+i.replace(leadingZeroRE,"")+"-"}));e.analog=e.analog||e.buttons.map((function(){return-1})),e.normalize_fn=e.normalize_fn||function(t){return t},remap.set(i,e),remap.set(o,e)}var bindings={},remap=new Map,updateEventHandler;[["45e-28e-Xbox 360 Wired Controller",{axes:[0,1,3,4],buttons:[11,12,13,14,8,9,-1,-1,5,4,6,7,0,1,2,3,10],analog:[-1,-1,-1,-1,-1,-1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1],normalize_fn:wiredXbox360NormalizeFn}],["54c-268-PLAYSTATION(R)3 Controller",{axes:[0,1,2,3],buttons:[14,13,15,12,10,11,8,9,0,3,1,2,4,6,7,5,16]}],["54c-5c4-Wireless Controller",{axes:[0,1,2,3],buttons:[1,0,2,3,4,5,6,7,8,9,10,11,14,15,16,17,12,13]}],["2836-1-OUYA Game Controller",{axes:[0,3,7,9],buttons:[3,6,4,5,7,8,15,16,-1,-1,9,10,11,12,13,14,-1],analog:[-1,-1,-1,-1,-1,-1,5,11,-1,-1,-1,-1,-1,-1,-1,-1,-1],normalize_fn:ouyaNormalizeFn}],["OUYA Game Controller (Vendor: 2836 Product: 0001)",{axes:[0,1,3,4],buttons:[0,3,1,2,4,5,12,13,-1,-1,6,7,8,9,10,11,-1],analog:[-1,-1,-1,-1,-1,-1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1],normalize_fn:ouyaNormalizeFn}]].forEach((function(t){addMapping(t[0],t[1])}));var updateGamepads=function(){var t=navigator.getGamepads();Object.keys(bindings).forEach((function(e){var i=t[e];if(i){var o=null;"standard"!==i.mapping&&(o=remap.get(i.id));var r=bindings[e];Object.keys(r.buttons).forEach((function(t){var n=r.buttons[t],s=t,a=-1;if(!(o&&(s=o.buttons[t],a=o.analog[t],s<0&&a<0))){var h=i.buttons[s]||{};if(o&&a>=0){var l=o.normalize_fn(i.axes[a],-1,+t);h={value:l,pressed:h.pressed||Math.abs(l)>=deadzone}}emit(GAMEPAD_UPDATE,e,"buttons",+t,h),!n.pressed&&h.pressed?triggerKeyEvent(n.keyCode,!0,s+256):n.pressed&&!h.pressed&&triggerKeyEvent(n.keyCode,!1,s+256),n.value=h.value,n.pressed=h.pressed}})),Object.keys(r.axes).forEach((function(t){var n=r.axes[t],s=t;if(!(o&&(s=o.axes[t])<0)){var a=i.axes[s];if(void 0!==a){o&&(a=o.normalize_fn(a,+t,-1));var h=Math.sign(a)||1;if(0!==n[h].keyCode){var l=Math.abs(a)>=deadzone+Math.abs(n[h].threshold);emit(GAMEPAD_UPDATE,e,"axes",+t,a),!n[h].pressed&&l?(n[-h].pressed&&(triggerKeyEvent(n[-h].keyCode,!1,s+256),n[-h].value=0,n[-h].pressed=!1),triggerKeyEvent(n[h].keyCode,!0,s+256)):!n[h].pressed&&!n[-h].pressed||l||triggerKeyEvent(n[h=n[h].pressed?h:-h].keyCode,!1,s+256),n[h].value=a,n[h].pressed=l}}}}))}}))};window.addEventListener("gamepadconnected",(function(t){emit(GAMEPAD_CONNECTED,t.gamepad)}),!1),window.addEventListener("gamepaddisconnected",(function(t){emit(GAMEPAD_DISCONNECTED,t.gamepad)}),!1);var GAMEPAD={AXES:{LX:0,LY:1,RX:2,RY:3,EXTRA_1:4,EXTRA_2:5,EXTRA_3:6,EXTRA_4:7},BUTTONS:{FACE_1:0,FACE_2:1,FACE_3:2,FACE_4:3,L1:4,R1:5,L2:6,R2:7,SELECT:8,BACK:8,START:9,FORWARD:9,L3:10,R3:11,UP:12,DOWN:13,LEFT:14,RIGHT:15,HOME:16,EXTRA_1:17,EXTRA_2:18,EXTRA_3:19,EXTRA_4:20}};function bindGamepad(t,e,i){if(!getBindingKey(i))throw new Error("no action defined for keycode "+i);void 0===updateEventHandler&&"function"==typeof navigator.getGamepads&&(updateEventHandler=on(GAME_BEFORE_UPDATE,updateGamepads)),bindings[t]||(bindings[t]={axes:{},buttons:{}});var o={keyCode:i,value:0,pressed:!1,threshold:e.threshold},r=bindings[t][e.type];if("buttons"===e.type)r[e.code]=o;else if("axes"===e.type){var n=Math.sign(e.threshold)||1;r[e.code]||(r[e.code]={});var s=r[e.code];s[n]=o,s[-n]||(s[-n]={keyCode:0,value:0,pressed:!1,threshold:-n})}}function unbindGamepad(t,e){if(!bindings[t])throw new Error("no bindings for gamepad "+t);bindings[t].buttons[e]={}}function setGamepadDeadzone(t){deadzone=t}var setGamepadMapping=addMapping,preventDefault=!0,input=Object.freeze({__proto__:null,preventDefault:preventDefault,get pointerEventTarget(){return pointerEventTarget},pointer:pointer,get throttlingInterval(){return throttlingInterval},globalToLocal:globalToLocal,setTouchAction:setTouchAction,bindPointer:bindPointer,unbindPointer:unbindPointer,registerPointerEvent:registerPointerEvent,releasePointerEvent:releasePointerEvent,releaseAllPointerEvents:releaseAllPointerEvents,get keyBoardEventTarget(){return keyBoardEventTarget},KEY:KEY,initKeyboardEvent:initKeyboardEvent,isKeyPressed:isKeyPressed,keyStatus:keyStatus,triggerKeyEvent:triggerKeyEvent,bindKey:bindKey,getBindingKey:getBindingKey,unlockKey:unlockKey,unbindKey:unbindKey,GAMEPAD:GAMEPAD,bindGamepad:bindGamepad,unbindGamepad:unbindGamepad,setGamepadDeadzone:setGamepadDeadzone,setGamepadMapping:setGamepadMapping}),Renderable=function(t){function e(e,i,o,r){t.call(this,e,i,o,r),this.isRenderable=!0,this.isKinematic=!0,this.body=void 0,void 0===this.currentTransform&&(this.currentTransform=pool.pull("Matrix2d")),this.currentTransform.identity(),this.GUID=void 0,this.onVisibilityChange=void 0,this.alwaysUpdate=!1,this.updateWhenPaused=!1,this.isPersistent=!1,this.floating=!1,this.anchorPoint instanceof ObservableVector2d?this.anchorPoint.setMuted(.5,.5).setCallback(this.onAnchorUpdate,this):this.anchorPoint=pool.pull("ObservableVector2d",.5,.5,{onUpdate:this.onAnchorUpdate,scope:this}),this.autoTransform=!0,this.alpha=1,this.ancestor=void 0,this.mask=void 0,this.tint=pool.pull("Color",255,255,255,1),this.name="",this.pos instanceof ObservableVector3d?this.pos.setMuted(e,i,0).setCallback(this.updateBoundsPos,this):this.pos=pool.pull("ObservableVector3d",e,i,0,{onUpdate:this.updateBoundsPos,scope:this}),this.isDirty=!1,this._flip={x:!1,y:!1},this._inViewport=!1,this.setOpacity(1)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={inViewport:{configurable:!0},isFlippedX:{configurable:!0},isFlippedY:{configurable:!0}};return i.inViewport.get=function(){return this._inViewport},i.inViewport.set=function(t){this._inViewport!==t&&(this._inViewport=t,"function"==typeof this.onVisibilityChange&&this.onVisibilityChange.call(this,t))},i.isFlippedX.get=function(){return!0===this._flip.x},i.isFlippedY.get=function(){return!0===this._flip.y},e.prototype.getBounds=function(){return void 0===this._bounds&&(t.prototype.getBounds.call(this),this.isFinite()?this._bounds.setMinMax(this.pos.x,this.pos.y,this.pos.x+this.width,this.pos.y+this.height):this._bounds.setMinMax(this.pos.x,this.pos.y,this.width,this.height)),this._bounds},e.prototype.getOpacity=function(){return this.alpha},e.prototype.setOpacity=function(t){"number"==typeof t&&(this.alpha=clamp(t,0,1),isNaN(this.alpha)&&(this.alpha=1),this.isDirty=!0)},e.prototype.flipX=function(t){return void 0===t&&(t=!0),this._flip.x=!!t,this.isDirty=!0,this},e.prototype.flipY=function(t){return void 0===t&&(t=!0),this._flip.y=!!t,this.isDirty=!0,this},e.prototype.transform=function(t){return this.currentTransform.multiply(t),this.updateBoundsPos(this.pos.x,this.pos.y),this.isDirty=!0,this},e.prototype.angleTo=function(t){var i,o,r=this.getBounds();if(t instanceof e){var n=t.getBounds();i=n.centerX-r.centerX,o=n.centerY-r.centerY}else i=t.x-r.centerX,o=t.y-r.centerY;return Math.atan2(o,i)},e.prototype.distanceTo=function(t){var i,o,r=this.getBounds();if(t instanceof e){var n=t.getBounds();i=r.centerX-n.centerX,o=r.centerY-n.centerY}else i=r.centerX-t.x,o=r.centerY-t.y;return Math.sqrt(i*i+o*o)},e.prototype.lookAt=function(t){var i;i=t instanceof e?t.pos:t;var o=this.angleTo(i);return this.rotate(o),this},e.prototype.rotate=function(t){return isNaN(t)||(this.currentTransform.rotate(t),this.isDirty=!0),this},e.prototype.scale=function(e,i){return this.currentTransform.scale(e,i),t.prototype.scale.call(this,e,i),this.isDirty=!0,this},e.prototype.scaleV=function(t){return this.scale(t.x,t.y),this},e.prototype.update=function(){return this.isDirty},e.prototype.updateBounds=function(){return t.prototype.updateBounds.call(this),this.updateBoundsPos(this.pos.x,this.pos.y),this.getBounds()},e.prototype.updateBoundsPos=function(t,e){var i=this.getBounds();i.shift(t,e),void 0!==this.anchorPoint&&i.isFinite()&&i.translate(-this.anchorPoint.x*i.width,-this.anchorPoint.y*i.height),this.ancestor instanceof Container&&!0!==this.floating&&i.translate(this.ancestor.getAbsolutePosition())},e.prototype.getAbsolutePosition=function(){return void 0===this._absPos&&(this._absPos=pool.pull("Vector2d")),this._absPos.set(this.pos.x,this.pos.y),this.ancestor instanceof Container&&!0!==this.floating&&this._absPos.add(this.ancestor.getAbsolutePosition()),this._absPos},e.prototype.onAnchorUpdate=function(t,e){this.anchorPoint.setMuted(t,e),this.updateBoundsPos(this.pos.x,this.pos.y)},e.prototype.preDraw=function(t){var e=this.getBounds(),i=e.width*this.anchorPoint.x,o=e.height*this.anchorPoint.y;if(t.save(),t.setGlobalAlpha(t.globalAlpha()*this.getOpacity()),this._flip.x||this._flip.y){var r=this._flip.x?this.centerX-i:0,n=this._flip.y?this.centerY-o:0;t.translate(r,n),t.scale(this._flip.x?-1:1,this._flip.y?-1:1),t.translate(-r,-n)}void 0!==this.mask&&(t.translate(this.pos.x,this.pos.y),t.setMask(this.mask),t.translate(-this.pos.x,-this.pos.y)),!0!==this.autoTransform||this.currentTransform.isIdentity()||(t.translate(this.pos.x,this.pos.y),t.transform(this.currentTransform),t.translate(-this.pos.x,-this.pos.y)),t.translate(-i,-o),t.setTint(this.tint,this.getOpacity())},e.prototype.draw=function(){},e.prototype.postDraw=function(t){t.clearTint(),void 0!==this.mask&&t.clearMask(),t.restore(),this.isDirty=!1},e.prototype.onCollision=function(){return!1},e.prototype.destroy=function(){pool.push(this.currentTransform),this.currentTransform=void 0,pool.push(this.anchorPoint),this.anchorPoint=void 0,pool.push(this.pos),this.pos=void 0,void 0!==this._absPos&&(pool.push(this._absPos),this._absPos=void 0),pool.push(this._bounds),this._bounds=void 0,this.onVisibilityChange=void 0,void 0!==this.mask&&(pool.push(this.mask),this.mask=void 0),void 0!==this.tint&&(pool.push(this.tint),this.tint=void 0),this.ancestor=void 0,void 0!==this.body&&(this.body.destroy.apply(this.body,arguments),this.body=void 0),releaseAllPointerEvents(this),this.onDestroyEvent.apply(this,arguments)},e.prototype.onDestroyEvent=function(){},Object.defineProperties(e.prototype,i),e}(Rect),Ellipse=function(t,e,i,o){this.pos=new Vector2d,this._bounds=void 0,this.radius=NaN,this.radiusV=new Vector2d,this.radiusSq=new Vector2d,this.ratio=new Vector2d,this.shapeType="Ellipse",this.setShape(t,e,i,o)};Ellipse.prototype.onResetEvent=function(t,e,i,o){this.setShape(t,e,i,o)},Ellipse.prototype.setShape=function(t,e,i,o){var r=i/2,n=o/2;this.pos.set(t,e),this.radius=Math.max(r,n),this.ratio.set(r/this.radius,n/this.radius),this.radiusV.set(this.radius,this.radius).scaleV(this.ratio);var s=this.radius*this.radius;return this.radiusSq.set(s,s).scaleV(this.ratio),this.getBounds().setMinMax(t,e,t+i,t+o),this.getBounds().translate(-this.radiusV.x,-this.radiusV.y),this},Ellipse.prototype.rotate=function(t,e){return this.pos.rotate(t,e),this.getBounds().shift(this.pos),this.getBounds().translate(-this.radiusV.x,-this.radiusV.y),this},Ellipse.prototype.scale=function(t,e){return e=void 0!==e?e:t,this.setShape(this.pos.x,this.pos.y,2*this.radiusV.x*t,2*this.radiusV.y*e)},Ellipse.prototype.scaleV=function(t){return this.scale(t.x,t.y)},Ellipse.prototype.transform=function(){return this},Ellipse.prototype.translate=function(){var t,e;return 2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),this.pos.x+=t,this.pos.y+=e,this.getBounds().translate(t,e),this},Ellipse.prototype.contains=function(){var t,e;return 2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),t-=this.pos.x,e-=this.pos.y,t*t/this.radiusSq.x+e*e/this.radiusSq.y<=1},Ellipse.prototype.getBounds=function(){return void 0===this._bounds&&(this._bounds=pool.pull("Bounds")),this._bounds},Ellipse.prototype.clone=function(){return new Ellipse(this.pos.x,this.pos.y,2*this.radiusV.x,2*this.radiusV.y)};for(var LEFT_VORNOI_REGION=-1,MIDDLE_VORNOI_REGION=0,RIGHT_VORNOI_REGION=1,T_VECTORS=[],v=0;v<10;v++)T_VECTORS.push(new Vector2d);for(var T_ARRAYS=[],a=0;a<5;a++)T_ARRAYS.push([]);function flattenPointsOn(t,e,i){for(var o=Number.MAX_VALUE,r=-Number.MAX_VALUE,n=t.length,s=0;s<n;s++){var a=t[s].dotProduct(e);a<o&&(o=a),a>r&&(r=a)}i[0]=o,i[1]=r}function isSeparatingAxis(t,e,i,o,r,n){var s=T_ARRAYS.pop(),a=T_ARRAYS.pop(),h=T_VECTORS.pop().copy(e).sub(t),l=h.dotProduct(r);if(flattenPointsOn(i,r,s),flattenPointsOn(o,r,a),a[0]+=l,a[1]+=l,s[0]>a[1]||a[0]>s[1])return T_VECTORS.push(h),T_ARRAYS.push(s),T_ARRAYS.push(a),!0;if(n){var c=0;if(s[0]<a[0])if(n.aInB=!1,s[1]<a[1])c=s[1]-a[0],n.bInA=!1;else{var u=s[1]-a[0],d=a[1]-s[0];c=u<d?u:-d}else if(n.bInA=!1,s[1]>a[1])c=s[0]-a[1],n.aInB=!1;else{var p=s[1]-a[0],f=a[1]-s[0];c=p<f?p:-f}var y=Math.abs(c);y<n.overlap&&(n.overlap=y,n.overlapN.copy(r),c<0&&n.overlapN.negateSelf())}return T_VECTORS.push(h),T_ARRAYS.push(s),T_ARRAYS.push(a),!1}function vornoiRegion(t,e){var i=t.length2(),o=e.dotProduct(t);return o<0?LEFT_VORNOI_REGION:o>i?RIGHT_VORNOI_REGION:MIDDLE_VORNOI_REGION}function testPolygonPolygon(t,e,i,o,r){var n,s=e.points,a=e.normals,h=a.length,l=o.points,c=o.normals,u=c.length,d=T_VECTORS.pop().copy(t.pos).add(t.ancestor.getAbsolutePosition()).add(e.pos),p=T_VECTORS.pop().copy(i.pos).add(i.ancestor.getAbsolutePosition()).add(o.pos);for(n=0;n<h;n++)if(isSeparatingAxis(d,p,s,l,a[n],r))return T_VECTORS.push(d),T_VECTORS.push(p),!1;for(n=0;n<u;n++)if(isSeparatingAxis(d,p,s,l,c[n],r))return T_VECTORS.push(d),T_VECTORS.push(p),!1;return r&&(r.a=t,r.b=i,r.overlapV.copy(r.overlapN).scale(r.overlap)),T_VECTORS.push(d),T_VECTORS.push(p),!0}function testEllipseEllipse(t,e,i,o,r){var n=T_VECTORS.pop().copy(i.pos).add(i.ancestor.getAbsolutePosition()).add(o.pos).sub(t.pos).add(t.ancestor.getAbsolutePosition()).sub(e.pos),s=e.radius,a=o.radius,h=s+a,l=h*h,c=n.length2();if(c>l)return T_VECTORS.push(n),!1;if(r){var u=Math.sqrt(c);r.a=t,r.b=i,r.overlap=h-u,r.overlapN.copy(n.normalize()),r.overlapV.copy(n).scale(r.overlap),r.aInB=s<=a&&u<=a-s,r.bInA=a<=s&&u<=s-a}return T_VECTORS.push(n),!0}function testPolygonEllipse(t,e,i,o,r){for(var n=T_VECTORS.pop().copy(i.pos).add(i.ancestor.getAbsolutePosition()).add(o.pos).sub(t.pos).add(t.ancestor.getAbsolutePosition()).sub(e.pos),s=o.radius,a=s*s,h=e.points,l=e.edges,c=l.length,u=T_VECTORS.pop(),d=T_VECTORS.pop(),p=T_VECTORS.pop(),f=0,y=0;y<c;y++){var g=y===c-1?0:y+1,v=0===y?c-1:y-1,m=0,_=null;u.copy(l[y]),p.copy(n).sub(h[y]),r&&p.length2()>a&&(r.aInB=!1);var x=vornoiRegion(u,p),w=!0;if(x===LEFT_VORNOI_REGION){var T=null;if(c>1&&(u.copy(l[v]),(x=vornoiRegion(u,T=T_VECTORS.pop().copy(n).sub(h[v])))!==RIGHT_VORNOI_REGION&&(w=!1)),w){if((f=p.length())>s)return T_VECTORS.push(n),T_VECTORS.push(u),T_VECTORS.push(d),T_VECTORS.push(p),T&&T_VECTORS.push(T),!1;r&&(r.bInA=!1,_=p.normalize(),m=s-f)}T&&T_VECTORS.push(T)}else if(x===RIGHT_VORNOI_REGION){if(c>1&&(u.copy(l[g]),p.copy(n).sub(h[g]),(x=vornoiRegion(u,p))!==LEFT_VORNOI_REGION&&(w=!1)),w){if((f=p.length())>s)return T_VECTORS.push(n),T_VECTORS.push(u),T_VECTORS.push(d),T_VECTORS.push(p),!1;r&&(r.bInA=!1,_=p.normalize(),m=s-f)}}else{d.copy(e.normals[y]),f=p.dotProduct(d);var b=Math.abs(f);if((1===c||f>0)&&b>s)return T_VECTORS.push(n),T_VECTORS.push(u),T_VECTORS.push(d),T_VECTORS.push(p),!1;r&&(_=d,m=s-f,(f>=0||m<2*s)&&(r.bInA=!1))}_&&r&&Math.abs(m)<Math.abs(r.overlap)&&(r.overlap=m,r.overlapN.copy(_))}return r&&(r.a=t,r.b=i,r.overlapV.copy(r.overlapN).scale(r.overlap)),T_VECTORS.push(n),T_VECTORS.push(u),T_VECTORS.push(d),T_VECTORS.push(p),!0}function testEllipsePolygon(t,e,i,o,r){var n=this.testPolygonEllipse(i,o,t,e,r);if(n&&r){var s=r.a,a=r.aInB;r.overlapN.negateSelf(),r.overlapV.negateSelf(),r.a=r.b,r.b=s,r.aInB=r.bInA,r.bInA=a}return n}var SAT=Object.freeze({__proto__:null,testPolygonPolygon:testPolygonPolygon,testEllipseEllipse:testEllipseEllipse,testPolygonEllipse:testPolygonEllipse,testEllipsePolygon:testEllipsePolygon}),dummyObj={pos:new Vector2d(0,0),ancestor:{_absPos:new Vector2d(0,0),getAbsolutePosition:function(){return this._absPos}}};function shouldCollide(t,e){return!0!==t.isKinematic&&!0!==e.isKinematic&&t.body&&e.body&&0!=(t.body.collisionMask&e.body.collisionType)&&0!=(t.body.collisionType&e.body.collisionMask)}var ResponseObject=function(){return this.a=null,this.b=null,this.overlapN=new Vector2d,this.overlapV=new Vector2d,this.aInB=!0,this.bInA=!0,this.indexShapeA=-1,this.indexShapeB=-1,this.overlap=Number.MAX_VALUE,this};ResponseObject.prototype.clear=function(){return this.aInB=!0,this.bInA=!0,this.overlap=Number.MAX_VALUE,this.indexShapeA=-1,this.indexShapeB=-1,this};var globalResponse=new ResponseObject;function collisionCheck(t,e){void 0===e&&(e=globalResponse);for(var i,o=0,r=world.broadphase.retrieve(t),n=r.length;i=r[--n];)if(i!==t&&shouldCollide(t,i)&&t.body.getBounds().overlaps(i.body.getBounds())){var s=t.body.shapes.length,a=i.body.shapes.length;if(0===s||0===a)continue;var h=0;do{var l=t.body.getShape(h),c=0;do{var u=i.body.getShape(c);!0===SAT["test"+l.shapeType+u.shapeType].call(this,t,l,i,u,e.clear())&&(o++,e.indexShapeA=h,e.indexShapeB=c,t.onCollision&&!1!==t.onCollision(e,i)&&t.body.respondToCollision.call(t.body,e),i.onCollision&&!1!==i.onCollision(e,t)&&i.body.respondToCollision.call(i.body,e)),c++}while(c<a);h++}while(h<s)}return o>0}function rayCast(t,e){void 0===e&&(e=[]);for(var i,o=0,r=world.broadphase.retrieve(t),n=r.length;i=r[--n];)if(i.body&&t.getBounds().overlaps(i.getBounds())){var s=i.body.shapes.length;if(0===i.body.shapes.length)continue;var a=t,h=0;do{var l=i.body.getShape(h);SAT["test"+a.shapeType+l.shapeType].call(this,dummyObj,a,i,l)&&(e[o]=i,o++),h++}while(h<s)}return e.length=o,e}var collision={maxChildren:8,maxDepth:4,types:{NO_OBJECT:0,PLAYER_OBJECT:1,NPC_OBJECT:2,ENEMY_OBJECT:4,COLLECTABLE_OBJECT:8,ACTION_OBJECT:16,PROJECTILE_OBJECT:32,WORLD_SHAPE:64,USER:128,ALL_OBJECT:4294967295},response:globalResponse,rayCast:function(t,e){return rayCast(t,e)}},Body=function(t,e,i){if(this.ancestor=t,void 0===this.bounds&&(this.bounds=new Bounds$1),void 0===this.shapes&&(this.shapes=[]),this.collisionMask=collision.types.ALL_OBJECT,this.collisionType=collision.types.ENEMY_OBJECT,void 0===this.vel&&(this.vel=new Vector2d),this.vel.set(0,0),void 0===this.force&&(this.force=new Vector2d),this.force.set(0,0),void 0===this.friction&&(this.friction=new Vector2d),this.friction.set(0,0),this.bounce=0,this.mass=1,void 0===this.maxVel&&(this.maxVel=new Vector2d),this.maxVel.set(490,490),this.isStatic=!1,this.gravityScale=1,this.ignoreGravity=!1,this.falling=!1,this.jumping=!1,"function"==typeof i&&(this.onBodyUpdate=i),this.bounds.clear(),void 0!==e)if(Array.isArray(e))for(var o=0;o<e.length;o++)this.addShape(e[o]);else this.addShape(e);this.ancestor.isKinematic=!1};Body.prototype.setStatic=function(t){void 0===t&&(t=!0),this.isStatic=!0===t},Body.prototype.addShape=function(t){if(t instanceof Rect||t instanceof Bounds$1){var e=t.toPolygon();this.shapes.push(e),this.bounds.add(e.points),this.bounds.translate(e.pos)}else t instanceof Ellipse?(this.shapes.includes(t)||this.shapes.push(t),this.bounds.addBounds(t.getBounds()),this.bounds.translate(t.getBounds().x,t.getBounds().y)):t instanceof Polygon?(this.shapes.includes(t)||this.shapes.push(t),this.bounds.add(t.points),this.bounds.translate(t.pos)):this.fromJSON(t);return"function"==typeof this.onBodyUpdate&&this.onBodyUpdate(this),this.shapes.length},Body.prototype.setVertices=function(t,e,i){void 0===e&&(e=0),void 0===i&&(i=!0);var o=this.getShape(e);o instanceof Polygon?o.setShape(0,0,t):this.shapes[e]=new Polygon(0,0,t),this.bounds.add(this.shapes[e].points,i),"function"==typeof this.onBodyUpdate&&this.onBodyUpdate(this)},Body.prototype.addVertices=function(t,e){void 0===e&&(e=0),this.setVertices(t,e,!1)},Body.prototype.fromJSON=function(t,e){var i=t;if(void 0!==e&&(i=t[e]),void 0===i)throw new Error("Identifier ("+e+") undefined for the given JSON object)");if(i.length){for(var o=0;o<i.length;o++)this.addVertices(i[o].shape,o);this.mass=i[0].density||0,this.friction.set(i[0].friction||0,i[0].friction||0),this.bounce=i[0].bounce||0}return i.length},Body.prototype.getShape=function(t){return this.shapes[t||0]},Body.prototype.getBounds=function(){return this.bounds},Body.prototype.removeShape=function(t){this.bounds.clear(),remove(this.shapes,t);for(var e=0;e<this.shapes.length;e++)this.addShape(this.shapes[e]);return this.shapes.length},Body.prototype.removeShapeAt=function(t){return this.removeShape(this.getShape(t))},Body.prototype.setCollisionMask=function(t){void 0===t&&(t=collision.types.ALL_OBJECT),this.collisionMask=t},Body.prototype.setCollisionType=function(t){if(void 0!==t){if(void 0===collision.types[t])throw new Error("Invalid value for the collisionType property");this.collisionType=collision.types[t]}},Body.prototype.respondToCollision=function(t){var e=t.overlapV;if(this.ancestor.pos.sub(e),0!==e.x&&(this.vel.x=~~(.5+this.vel.x-e.x)||0,this.bounce>0&&(this.vel.x*=-this.bounce)),0!==e.y){this.vel.y=~~(.5+this.vel.y-e.y)||0,this.bounce>0&&(this.vel.y*=-this.bounce);var i=Math.sign(world.gravity.y*this.gravityScale)||1;this.falling=e.y>=i,this.jumping=e.y<=-i}},Body.prototype.forEach=function(t,e){var i=this,o=0,r=this.shapes,n=r.length;if("function"!=typeof t)throw new Error(t+" is not a function");for(arguments.length>1&&(i=e);o<n;)t.call(i,r[o],o,r),o++},Body.prototype.contains=function(){var t,e;if(2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),this.getBounds().contains(t,e))for(var i,o=this.shapes.length;o--,i=this.shapes[o];)if(i.contains(t,e))return!0;return!1},Body.prototype.rotate=function(t,e){var i=this;return void 0===e&&(e=this.getBounds().center),this.bounds.clear(),this.forEach((function(o){o.rotate(t,e),i.bounds.addBounds(o.getBounds()),o instanceof Ellipse?i.bounds.translate(o.getBounds().x,o.getBounds().y):i.bounds.translate(o.pos)})),this},Body.prototype.setMaxVelocity=function(t,e){this.maxVel.x=t,this.maxVel.y=e},Body.prototype.setFriction=function(t,e){void 0===t&&(t=0),void 0===e&&(e=0),this.friction.x=t,this.friction.y=e},Body.prototype.computeVelocity=function(){var t=timer$1.tick;if(!this.ignoreGravity){var e=world.gravity;this.vel.x+=e.x*this.gravityScale*t,this.vel.y+=e.y*this.gravityScale*t,this.falling=this.vel.y*Math.sign(e.y*this.gravityScale)>0,this.jumping=!this.falling&&this.jumping}if(0!==this.force.x&&(this.vel.x+=this.force.x*t),0!==this.force.y&&(this.vel.y+=this.force.y*t),this.friction.x>0){var i=this.friction.x*t,o=this.vel.x+i,r=this.vel.x-i;this.vel.x=o<0?o:r>0?r:0}if(this.friction.y>0){var n=this.friction.y*t,s=this.vel.y+n,a=this.vel.y-n;this.vel.y=s<0?s:a>0?a:0}0!==this.vel.y&&(this.vel.y=clamp(this.vel.y,-this.maxVel.y,this.maxVel.y)),0!==this.vel.x&&(this.vel.x=clamp(this.vel.x,-this.maxVel.x,this.maxVel.x))},Body.prototype.update=function(t){return this.computeVelocity(t),this.ancestor.pos.add(this.vel),0!==this.vel.x||0!==this.vel.y},Body.prototype.destroy=function(){this.onBodyUpdate=void 0,this.ancestor=void 0,this.bounds=void 0,this.setStatic(!1),this.shapes.length=0};var deferredRemove=function(t,e){this.removeChildNow(t,e)},globalFloatingCounter=0,Container=function(t){function e(e,i,o,r,n){void 0===e&&(e=0),void 0===i&&(i=0),void 0===o&&(o=viewport.width),void 0===r&&(r=viewport.height),void 0===n&&(n=!1),t.call(this,e,i,o,r),this.pendingSort=null,this.root=n,this.children=void 0,this.sortOn=sortOn,this.autoSort=!0,this.autoDepth=!0,this.clipping=!1,this.onChildChange=function(){},this.enableChildBoundsUpdate=!1,this.drawCount=0,this.autoTransform=!0,this.isKinematic=!1,this.anchorPoint.set(0,0),!0===this.root&&on(CANVAS_ONRESIZE,this.updateBounds.bind(this,!0))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reset=function(){this.pendingSort&&(clearTimeout(this.pendingSort),this.pendingSort=null);for(var t,e=this.getChildren(),i=e.length;i>=0;t=e[--i])t&&!0!==t.isPersistent&&this.removeChildNow(t);void 0!==this.currentTransform&&this.currentTransform.identity()},e.prototype.addChild=function(t,i){return t.ancestor instanceof e?t.ancestor.removeChildNow(t):t.isRenderable&&(t.GUID=utils.createGUID(t.id)),t.ancestor=this,this.getChildren().push(t),void 0!==t.pos&&("number"==typeof i?t.pos.z=i:!0===this.autoDepth&&(t.pos.z=this.getChildren().length)),!0===this.autoSort&&this.sort(),"function"==typeof t.onActivateEvent&&this.isAttachedToRoot()&&t.onActivateEvent(),!0===this.isAttachedToRoot()&&repaint(),this.enableChildBoundsUpdate&&this.updateBounds(!0),t.body instanceof Body&&world.addBody(t.body),this.onChildChange.call(this,this.getChildren().length-1),t},e.prototype.addChildAt=function(t,i){if(i>=0&&i<this.getChildren().length)return t.ancestor instanceof e?t.ancestor.removeChildNow(t):t.isRenderable&&(t.GUID=utils.createGUID()),t.ancestor=this,this.getChildren().splice(i,0,t),"function"==typeof t.onActivateEvent&&this.isAttachedToRoot()&&t.onActivateEvent(),!0===this.isAttachedToRoot()&&repaint(),this.enableChildBoundsUpdate&&this.updateBounds(!0),t.body instanceof Body&&world.addBody(t.body),this.onChildChange.call(this,i),t;throw new Error("Index ("+i+") Out Of Bounds for addChildAt()")},e.prototype.forEach=function(t,e){var i=this,o=0,r=this.getChildren(),n=r.length;if("function"!=typeof t)throw new Error(t+" is not a function");for(arguments.length>1&&(i=e);o<n;)t.call(i,r[o],o,r),o++},e.prototype.swapChildren=function(t,e){var i=this.getChildIndex(t),o=this.getChildIndex(e);if(-1===i||-1===o)throw new Error(t+" Both the supplied childs must be a child of the caller "+this);var r=t.pos.z;t.pos.z=e.pos.z,e.pos.z=r,this.getChildren()[i]=e,this.getChildren()[o]=t},e.prototype.getChildAt=function(t){if(t>=0&&t<this.getChildren().length)return this.getChildren()[t];throw new Error("Index ("+t+") Out Of Bounds for getChildAt()")},e.prototype.getChildIndex=function(t){return this.getChildren().indexOf(t)},e.prototype.getNextChild=function(t){var e=this.getChildren().indexOf(t)-1;if(e>=0&&e<this.getChildren().length)return this.getChildAt(e)},e.prototype.hasChild=function(t){return this===t.ancestor},e.prototype.getChildByProp=function(t,i){var o=[];return this.forEach((function(r){!function(t,e){var r=t[e];i instanceof RegExp&&"string"==typeof r?i.test(r)&&o.push(t):r===i&&o.push(t)}(r,t),r instanceof e&&(o=o.concat(r.getChildByProp(t,i)))})),o},e.prototype.getChildByType=function(t){var i=[];return this.forEach((function(o){o instanceof t&&i.push(o),o instanceof e&&(i=i.concat(o.getChildByType(t)))})),i},e.prototype.getChildByName=function(t){return this.getChildByProp("name",t)},e.prototype.getChildByGUID=function(t){var e=this.getChildByProp("GUID",t);return e.length>0?e[0]:null},e.prototype.getChildren=function(){return void 0===this.children&&(this.children=[]),this.children},e.prototype.updateBounds=function(e){void 0===e&&(e=!1),t.prototype.updateBounds.call(this);var i=this.getBounds();return!0!==e&&!0!==this.enableChildBoundsUpdate||this.forEach((function(t){t.isRenderable&&(t.getBounds().isFinite()&&i.addBounds(t.getBounds()))})),i},e.prototype.isAttachedToRoot=function(){if(!0===this.root)return!0;for(var t=this.ancestor;t;){if(!0===t.root)return!0;t=t.ancestor}return!1},e.prototype.updateBoundsPos=function(e,i){var o=this;return t.prototype.updateBoundsPos.call(this,e,i),this.forEach((function(t){t.isRenderable&&t.updateBoundsPos(t.pos.x+e-o.pos.x,t.pos.y+i-o.pos.y)})),this.getBounds()},e.prototype.onActivateEvent=function(){this.forEach((function(t){"function"==typeof t.onActivateEvent&&t.onActivateEvent()}))},e.prototype.removeChild=function(t,e){if(!this.hasChild(t))throw new Error("Child is not mine.");utils.function.defer(deferredRemove,this,t,e)},e.prototype.removeChildNow=function(t,e){if(this.hasChild(t)&&this.getChildIndex(t)>=0){"function"==typeof t.onDeactivateEvent&&t.onDeactivateEvent(),t.body instanceof Body&&world.removeBody(t.body),e||!1===pool.push(t,!1)&&"function"==typeof t.destroy&&t.destroy();var i=this.getChildIndex(t);i>=0&&(this.getChildren().splice(i,1),t.ancestor=void 0),!0===this.isAttachedToRoot()&&repaint(),this.enableChildBoundsUpdate&&this.updateBounds(!0),this.onChildChange.call(this,i)}},e.prototype.setChildsProperty=function(t,i,o){this.forEach((function(r){!0===o&&r instanceof e&&r.setChildsProperty(t,i,o),r[t]=i}))},e.prototype.moveUp=function(t){var e=this.getChildIndex(t);e-1>=0&&this.swapChildren(t,this.getChildAt(e-1))},e.prototype.moveDown=function(t){var e=this.getChildIndex(t);e>=0&&e+1<this.getChildren().length&&this.swapChildren(t,this.getChildAt(e+1))},e.prototype.moveToTop=function(t){var e=this.getChildIndex(t);if(e>0){var i=this.getChildren();i.splice(0,0,i.splice(e,1)[0]),t.pos.z=i[1].pos.z+1}},e.prototype.moveToBottom=function(t){var e=this.getChildIndex(t),i=this.getChildren();e>=0&&e<i.length-1&&(i.splice(i.length-1,0,i.splice(e,1)[0]),t.pos.z=i[i.length-2].pos.z-1)},e.prototype.sort=function(t){this.pendingSort||(!0===t&&this.forEach((function(i){i instanceof e&&i.sort(t)})),this.pendingSort=utils.function.defer((function(){this.getChildren().sort(this["_sort"+this.sortOn.toUpperCase()]),this.pendingSort=null,repaint()}),this))},e.prototype.onDeactivateEvent=function(){this.forEach((function(t){"function"==typeof t.onDeactivateEvent&&t.onDeactivateEvent()}))},e.prototype._sortZ=function(t,e){return e.pos&&t.pos?e.pos.z-t.pos.z:t.pos?-1/0:1/0},e.prototype._sortReverseZ=function(t,e){return t.pos&&e.pos?t.pos.z-e.pos.z:t.pos?1/0:-1/0},e.prototype._sortX=function(t,e){if(!e.pos||!t.pos)return t.pos?-1/0:1/0;var i=e.pos.z-t.pos.z;return i||e.pos.x-t.pos.x},e.prototype._sortY=function(t,e){if(!e.pos||!t.pos)return t.pos?-1/0:1/0;var i=e.pos.z-t.pos.z;return i||e.pos.y-t.pos.y},e.prototype.destroy=function(){this.reset(),t.prototype.destroy.call(this,arguments)},e.prototype.update=function(e){for(var i,o=!1,r=state.isPaused(),n=this.getChildren(),s=n.length;s--,i=n[s];)r&&!i.updateWhenPaused||(i.isRenderable?((o=globalFloatingCounter>0||i.floating)&&globalFloatingCounter++,i.inViewport=!1,state.current().cameras.forEach((function(t){t.isVisible(i,o)&&(i.inViewport=!0)})),this.isDirty|=(i.inViewport||i.alwaysUpdate)&&i.update(e),globalFloatingCounter>0&&globalFloatingCounter--):this.isDirty|=i.update(e));return t.prototype.update.call(this,e)},e.prototype.draw=function(t,e){var i=!1,o=this.getBounds();this.drawCount=0,!1===this.root&&!0===this.clipping&&!0===o.isFinite()&&t.clipRect(o.left,o.top,o.width,o.height),t.translate(this.pos.x,this.pos.y);for(var r,n=this.getChildren(),s=n.length;r=n[--s];)r.isRenderable&&(i=!0===r.floating,(r.inViewport||i)&&(i&&(t.save(),t.resetTransform()),r.preDraw(t),r.draw(t,e),r.postDraw(t),i&&t.restore(),this.drawCount++))},e}(Renderable),QT_ARRAY=[];function QT_ARRAY_POP(t,e,i,o){if(void 0===e&&(e=4),void 0===i&&(i=4),void 0===o&&(o=0),QT_ARRAY.length>0){var r=QT_ARRAY.pop();return r.bounds=t,r.max_objects=e,r.max_levels=i,r.level=o,r}return new QuadTree(t,e,i,o)}function QT_ARRAY_PUSH(t){QT_ARRAY.push(t)}var QT_VECTOR=new Vector2d,QuadTree=function(t,e,i,o){void 0===e&&(e=4),void 0===i&&(i=4),void 0===o&&(o=0),this.max_objects=e,this.max_levels=i,this.level=o,this.bounds=t,this.objects=[],this.nodes=[]};QuadTree.prototype.split=function(){var t=this.level+1,e=this.bounds.width/2,i=this.bounds.height/2,o=this.bounds.left,r=this.bounds.top;this.nodes[0]=QT_ARRAY_POP({left:o+e,top:r,width:e,height:i},this.max_objects,this.max_levels,t),this.nodes[1]=QT_ARRAY_POP({left:o,top:r,width:e,height:i},this.max_objects,this.max_levels,t),this.nodes[2]=QT_ARRAY_POP({left:o,top:r+i,width:e,height:i},this.max_objects,this.max_levels,t),this.nodes[3]=QT_ARRAY_POP({left:o+e,top:r+i,width:e,height:i},this.max_objects,this.max_levels,t)},QuadTree.prototype.getIndex=function(t){var e,i=-1,o=(e=t.floating||t.ancestor&&t.ancestor.floating?viewport.localToWorld(t.left,t.top,QT_VECTOR):QT_VECTOR.set(t.left,t.top)).x,r=e.y,n=t.width,s=t.height,a=this.bounds.left+this.bounds.width/2,h=this.bounds.top+this.bounds.height/2,l=r<h&&r+s<h,c=r>h;return o<a&&o+n<a?l?i=1:c&&(i=2):o>a&&(l?i=0:c&&(i=3)),i},QuadTree.prototype.insertContainer=function(t){for(var e,i=t.children.length;i--,e=t.children[i];)!0!==e.isKinematic&&(e instanceof Container?("rootContainer"!==e.name&&this.insert(e),this.insertContainer(e)):"function"==typeof e.getBounds&&this.insert(e))},QuadTree.prototype.insert=function(t){var e=-1;if(this.nodes.length>0&&-1!==(e=this.getIndex(t)))this.nodes[e].insert(t);else if(this.objects.push(t),this.objects.length>this.max_objects&&this.level<this.max_levels){0===this.nodes.length&&this.split();for(var i=0;i<this.objects.length;)-1!==(e=this.getIndex(this.objects[i]))?this.nodes[e].insert(this.objects.splice(i,1)[0]):i+=1}},QuadTree.prototype.retrieve=function(t,e){var i=this.objects;if(this.nodes.length>0){var o=this.getIndex(t);if(-1!==o)i=i.concat(this.nodes[o].retrieve(t));else for(var r=0;r<this.nodes.length;r+=1)i=i.concat(this.nodes[r].retrieve(t))}return"function"==typeof e&&i.sort(e),i},QuadTree.prototype.remove=function(t){var e=!1;if(void 0===t.getBounds)return!1;if(this.nodes.length>0){var i=this.getIndex(t);-1!==i&&(e=remove(this.nodes[i],t))&&this.nodes[i].isPrunable()&&this.nodes.splice(i,1)}return!1===e&&-1!==this.objects.indexOf(t)&&(remove(this.objects,t),e=!0),e},QuadTree.prototype.isPrunable=function(){return!(this.hasChildren()||this.objects.length>0)},QuadTree.prototype.hasChildren=function(){for(var t=0;t<this.nodes.length;t+=1){var e=this.nodes[t];if(e.length>0||e.objects.length>0)return!0}return!1},QuadTree.prototype.clear=function(t){this.objects.length=0;for(var e=0;e<this.nodes.length;e++)this.nodes[e].clear(),QT_ARRAY_PUSH(this.nodes[e]);this.nodes.length=0,void 0!==t&&this.bounds.setMinMax(t.min.x,t.min.y,t.max.x,t.max.y)};var World=function(t){function e(e,i,o,r){var n=this;void 0===e&&(e=0),void 0===i&&(i=0),void 0===o&&(o=1/0),void 0===r&&(r=1/0),t.call(this,e,i,o,r,!0),this.name="rootContainer",this.anchorPoint.set(0,0),this.fps=60,this.gravity=new Vector2d(0,.98),this.preRender=!1,this.bodies=new Set,this.broadphase=new QuadTree(this.getBounds().clone(),collision.maxChildren,collision.maxDepth),on(GAME_RESET,this.reset,this),on(LEVEL_LOADED,(function(){n.broadphase.clear(n.getBounds())}))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reset=function(){this.broadphase.clear(),this.anchorPoint.set(0,0),t.prototype.reset.call(this),this.bodies.clear()},e.prototype.addBody=function(t){return this.bodies.add(t),this},e.prototype.removeBody=function(t){return this.bodies.delete(t),this},e.prototype.update=function(e){var i=state.isPaused();return this.broadphase.clear(),this.broadphase.insertContainer(this),this.bodies.forEach((function(t){if(!t.isStatic){var o=t.ancestor;i&&!o.updateWhenPaused||!o.inViewport&&!o.alwaysUpdate||(!0===t.update(e)&&(o.isDirty=!0),collisionCheck(o))}})),t.prototype.update.call(this,e)},e}(Container),isDirty=!0,isAlwaysDirty=!1,frameCounter=0,frameRate=1,accumulator=0,accumulatorMax=0,accumulatorUpdateDelta=0,stepSize=1e3/60,updateDelta=0,lastUpdateStart=null,updateAverageDelta=0,viewport,world;on(BOOT,(function(){world=new World,emit(GAME_INIT)}));var mergeGroup=!0,sortOn="z",lastUpdate=window.performance.now();function onLevelLoaded(){}function reset(){var t=state.current();void 0!==t&&(viewport=t.cameras.get("default")),emit(GAME_RESET),updateFrameRate()}function updateFrameRate(){frameCounter=0,frameRate=~~(.5+60/timer$1.maxfps),stepSize=1e3/world.fps,accumulator=0,accumulatorMax=10*stepSize,isAlwaysDirty=timer$1.maxfps>world.fps}function getParentContainer(t){return t.ancestor}function repaint(){isDirty=!0}function update$1(t,e){if(++frameCounter%frameRate==0){for(frameCounter=0,emit(GAME_BEFORE_UPDATE,t),accumulator+=timer$1.getDelta(),accumulator=Math.min(accumulator,accumulatorMax),updateDelta=timer$1.interpolation?timer$1.getDelta():stepSize,accumulatorUpdateDelta=timer$1.interpolation?updateDelta:Math.max(updateDelta,updateAverageDelta);accumulator>=accumulatorUpdateDelta||timer$1.interpolation;)if(lastUpdateStart=window.performance.now(),!0!==state.isPaused()&&emit(GAME_UPDATE,t),isDirty=e.update(updateDelta)||isDirty,lastUpdate=window.performance.now(),updateAverageDelta=lastUpdate-lastUpdateStart,accumulator-=accumulatorUpdateDelta,timer$1.interpolation){accumulator=0;break}emit(GAME_AFTER_UPDATE,lastUpdate)}}function draw(t){!0===renderer.isContextValid&&(isDirty||isAlwaysDirty)&&(emit(GAME_BEFORE_DRAW,window.performance.now()),renderer.clear(),t.draw(renderer),isDirty=!1,renderer.flush(),emit(GAME_AFTER_DRAW,window.performance.now()))}var game=Object.freeze({__proto__:null,get viewport(){return viewport},get world(){return world},mergeGroup:mergeGroup,sortOn:sortOn,get lastUpdate(){return lastUpdate},onLevelLoaded:onLevelLoaded,reset:reset,updateFrameRate:updateFrameRate,getParentContainer:getParentContainer,repaint:repaint,update:update$1,draw:draw}),MIN=Math.min,MAX=Math.max,targetV=new Vector2d,Camera2d=function(t){function e(e,i,o,r){t.call(this,e,i,o-e,r-i),this.AXIS={NONE:0,HORIZONTAL:1,VERTICAL:2,BOTH:3},this.bounds=pool.pull("Bounds"),this.smoothFollow=!0,this.damping=1,this.near=-1e3,this.far=1e3,this.projectionMatrix=new Matrix3d,this.invCurrentTransform=new Matrix2d,this.offset=new Vector2d,this.target=null,this.follow_axis=this.AXIS.NONE,this._shake={intensity:0,duration:0,axis:this.AXIS.BOTH,onComplete:null},this._fadeOut={color:null,tween:null},this._fadeIn={color:null,tween:null},this.name="default",this.setDeadzone(this.width/6,this.height/6),this.anchorPoint.set(0,0),this.isKinematic=!1,this.bounds.setMinMax(e,i,o,r),this._updateProjectionMatrix(),on(GAME_RESET,this.reset,this),on(CANVAS_ONRESIZE,this.resize,this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._updateProjectionMatrix=function(){this.projectionMatrix.ortho(0,this.width,this.height,0,this.near,this.far)},e.prototype._followH=function(t){var e=this.pos.x;return t.x-this.pos.x>this.deadzone.right?e=MIN(t.x-this.deadzone.right,this.bounds.width-this.width):t.x-this.pos.x<this.deadzone.pos.x&&(e=MAX(t.x-this.deadzone.pos.x,this.bounds.left)),e},e.prototype._followV=function(t){var e=this.pos.y;return t.y-this.pos.y>this.deadzone.bottom?e=MIN(t.y-this.deadzone.bottom,this.bounds.height-this.height):t.y-this.pos.y<this.deadzone.pos.y&&(e=MAX(t.y-this.deadzone.pos.y,this.bounds.top)),e},e.prototype.reset=function(t,e){void 0===t&&(t=0),void 0===e&&(e=0),this.pos.x=t,this.pos.y=e,this.unfollow(),this.smoothFollow=!0,this.damping=1,this.currentTransform.identity(),this.invCurrentTransform.identity().invert(),this._updateProjectionMatrix()},e.prototype.setDeadzone=function(t,e){void 0===this.deadzone&&(this.deadzone=new Rect(0,0,0,0)),this.deadzone.pos.set(~~((this.width-t)/2),~~((this.height-e)/2-.25*e)),this.deadzone.resize(t,e),this.smoothFollow=!1,this.updateTarget(),this.smoothFollow=!0},e.prototype.resize=function(e,i){return t.prototype.resize.call(this,e,i),this.smoothFollow=!1,this.setBounds(0,0,e,i),this.setDeadzone(e/6,i/6),this.update(),this.smoothFollow=!0,this._updateProjectionMatrix(),emit(VIEWPORT_ONRESIZE,this.width,this.height),this},e.prototype.setBounds=function(t,e,i,o){this.smoothFollow=!1,this.bounds.setMinMax(t,e,i+t,o+e),this.moveTo(this.pos.x,this.pos.y),this.update(),this.smoothFollow=!0},e.prototype.follow=function(e,i,o){if(e instanceof t)this.target=e.pos;else{if(!(e instanceof Vector2d||e instanceof Vector3d||e instanceof ObservableVector2d||e instanceof ObservableVector3d))throw new Error("invalid target for me.Camera2d.follow");this.target=e}this.follow_axis=void 0===i?this.AXIS.BOTH:i,this.smoothFollow=!1,this.damping="number"!=typeof o?1:clamp(o,0,1),this.updateTarget(),this.smoothFollow=!0},e.prototype.unfollow=function(){this.target=null,this.follow_axis=this.AXIS.NONE},e.prototype.move=function(t,e){this.moveTo(this.pos.x+t,this.pos.y+e)},e.prototype.moveTo=function(t,e){var i=this.pos.x,o=this.pos.y;this.pos.x=clamp(t,this.bounds.left,this.bounds.width),this.pos.y=clamp(e,this.bounds.top,this.bounds.height),i===this.pos.x&&o===this.pos.y||emit(VIEWPORT_ONCHANGE,this.pos)},e.prototype.updateTarget=function(){if(this.target){switch(targetV.setV(this.pos),this.follow_axis){case this.AXIS.NONE:break;case this.AXIS.HORIZONTAL:targetV.x=this._followH(this.target);break;case this.AXIS.VERTICAL:targetV.y=this._followV(this.target);break;case this.AXIS.BOTH:targetV.x=this._followH(this.target),targetV.y=this._followV(this.target)}if(!this.pos.equals(targetV)){if(!0===this.smoothFollow&&this.damping<1){if(toBeCloseTo(targetV.x,this.pos.x,2)&&toBeCloseTo(targetV.y,this.pos.y,2))return this.pos.setV(targetV),!1;this.pos.lerp(targetV,this.damping)}else this.pos.setV(targetV);return!0}}return!1},e.prototype.update=function(t){var e=this.updateTarget(t);return this._shake.duration>0&&(this._shake.duration-=t,this._shake.duration<=0?(this._shake.duration=0,this.offset.setZero(),"function"==typeof this._shake.onComplete&&this._shake.onComplete()):(this._shake.axis!==this.AXIS.BOTH&&this._shake.axis!==this.AXIS.HORIZONTAL||(this.offset.x=(Math.random()-.5)*this._shake.intensity),this._shake.axis!==this.AXIS.BOTH&&this._shake.axis!==this.AXIS.VERTICAL||(this.offset.y=(Math.random()-.5)*this._shake.intensity)),e=!0),!0===e&&emit(VIEWPORT_ONCHANGE,this.pos),null==this._fadeIn.tween&&null==this._fadeOut.tween||(e=!0),this.currentTransform.isIdentity()?this.invCurrentTransform.identity():this.invCurrentTransform.copy(this.currentTransform).invert(),e},e.prototype.shake=function(t,e,i,o,r){0!==this._shake.duration&&!0!==r||(this._shake.intensity=t,this._shake.duration=e,this._shake.axis=i||this.AXIS.BOTH,this._shake.onComplete="function"==typeof o?o:void 0)},e.prototype.fadeOut=function(t,e,i){void 0===e&&(e=1e3),this._fadeOut.color=pool.pull("Color").copy(t),this._fadeOut.tween=pool.pull("Tween",this._fadeOut.color).to({alpha:0},e).onComplete(i||null),this._fadeOut.tween.isPersistent=!0,this._fadeOut.tween.start()},e.prototype.fadeIn=function(t,e,i){void 0===e&&(e=1e3),this._fadeIn.color=pool.pull("Color").copy(t);var o=this._fadeIn.color.alpha;this._fadeIn.color.alpha=0,this._fadeIn.tween=pool.pull("Tween",this._fadeIn.color).to({alpha:o},e).onComplete(i||null),this._fadeIn.tween.isPersistent=!0,this._fadeIn.tween.start()},e.prototype.getWidth=function(){return this.width},e.prototype.getHeight=function(){return this.height},e.prototype.focusOn=function(t){var e=t.getBounds();this.moveTo(t.pos.x+e.left+e.width/2,t.pos.y+e.top+e.height/2)},e.prototype.isVisible=function(t,e){return void 0===e&&(e=t.floating),!0===e||!0===t.floating?renderer.overlaps(t.getBounds()):t.getBounds().overlaps(this)},e.prototype.localToWorld=function(t,e,i){return(i=i||new Vector2d).set(t,e).add(this.pos).sub(world.pos),this.currentTransform.isIdentity()||this.invCurrentTransform.apply(i),i},e.prototype.worldToLocal=function(t,e,i){return(i=i||new Vector2d).set(t,e),this.currentTransform.isIdentity()||this.currentTransform.apply(i),i.sub(this.pos).add(world.pos)},e.prototype.drawFX=function(t){this._fadeIn.tween&&(t.save(),t.resetTransform(),t.setColor(this._fadeIn.color),t.fillRect(0,0,this.width,this.height),t.restore(),1===this._fadeIn.color.alpha&&(this._fadeIn.tween=null,pool.push(this._fadeIn.color),this._fadeIn.color=null)),this._fadeOut.tween&&(t.save(),t.resetTransform(),t.setColor(this._fadeOut.color),t.fillRect(0,0,this.width,this.height),t.restore(),0===this._fadeOut.color.alpha&&(this._fadeOut.tween=null,pool.push(this._fadeOut.color),this._fadeOut.color=null))},e.prototype.draw=function(t,e){var i=this.pos.x+this.offset.x,o=this.pos.y+this.offset.y;e.currentTransform.translate(-i,-o),t.setProjection(this.projectionMatrix),t.clipRect(0,0,this.width,this.height),this.preDraw(t),e.preDraw(t),e.draw(t,this),this.drawFX(t),e.postDraw(t),this.postDraw(t),e.currentTransform.translate(i,o)},e}(Renderable),default_camera,default_settings={cameras:[]},Stage=function(t){this.cameras=new Map,this.settings=Object.assign(default_settings,t||{})};Stage.prototype.reset=function(){var t=this;if(this.settings.cameras.forEach((function(e){t.cameras.set(e.name,e)})),!1===this.cameras.has("default")){if(void 0===default_camera){var e=renderer.getWidth(),i=renderer.getHeight();default_camera=new Camera2d(0,0,e,i)}this.cameras.set("default",default_camera)}reset(),this.onResetEvent.apply(this,arguments)},Stage.prototype.update=function(t){var e=world.update(t);return this.cameras.forEach((function(i){i.update(t)&&(e=!0)})),e},Stage.prototype.draw=function(t){this.cameras.forEach((function(e){e.draw(t,world)}))},Stage.prototype.destroy=function(){this.cameras.clear(),this.onDestroyEvent.apply(this,arguments)},Stage.prototype.onResetEvent=function(){"function"==typeof this.settings.onResetEvent&&this.settings.onResetEvent.apply(this,arguments)},Stage.prototype.onDestroyEvent=function(){"function"==typeof this.settings.onDestroyEvent&&this.settings.onDestroyEvent.apply(this,arguments)};var ColorLayer=function(t){function e(e,i,o){t.call(this,0,0,1/0,1/0),this.color=pool.pull("Color").parseCSS(i),this.onResetEvent(e,i,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onResetEvent=function(t,e,i){void 0===i&&(i=0),this.name=t,this.pos.z=i,this.floating=!0,this.color.parseCSS(e)},e.prototype.draw=function(t,e){var i=t.getColor(),o=viewport.pos;t.setColor(this.color),t.fillRect(e.left-o.x,e.top-o.y,e.width,e.height),t.setColor(i)},e.prototype.destroy=function(){pool.push(this.color),this.color=void 0,t.prototype.destroy.call(this)},e}(Renderable),ProgressBar=function(t){function e(e,i,o,r){t.call(this,e,i,o,r),this.barHeight=r,this.anchorPoint.set(0,0),on(LOADER_PROGRESS,this.onProgressUpdate,this),on(VIEWPORT_ONRESIZE,this.resize,this),this.anchorPoint.set(0,0),this.progress=0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onProgressUpdate=function(t){this.progress=~~(t*this.width),this.isDirty=!0},e.prototype.draw=function(t){t.setColor("black"),t.fillRect(this.pos.x,viewport.centerY,t.getWidth(),this.barHeight/2),t.setColor("#55aa00"),t.fillRect(this.pos.x,viewport.centerY,this.progress,this.barHeight/2)},e.prototype.onDestroyEvent=function(){off(LOADER_PROGRESS,this.onProgressUpdate),off(VIEWPORT_ONRESIZE,this.resize)},e}(Renderable),IconLogo=function(t){function e(e,i){t.call(this,e,i,100,85),this.iconCanvas=createCanvas(nextPowerOfTwo(this.width),nextPowerOfTwo(this.height),!1);var o=renderer.getContext2d(this.iconCanvas);o.beginPath(),o.moveTo(.7,48.9),o.bezierCurveTo(10.8,68.9,38.4,75.8,62.2,64.5),o.bezierCurveTo(86.1,53.1,97.2,27.7,87,7.7),o.lineTo(87,7.7),o.bezierCurveTo(89.9,15.4,73.9,30.2,50.5,41.4),o.bezierCurveTo(27.1,52.5,5.2,55.8,.7,48.9),o.lineTo(.7,48.9),o.closePath(),o.fillStyle="rgb(255, 255, 255)",o.fill(),o.beginPath(),o.moveTo(84,7),o.bezierCurveTo(87.6,14.7,72.5,30.2,50.2,41.6),o.bezierCurveTo(27.9,53,6.9,55.9,3.2,48.2),o.bezierCurveTo(-.5,40.4,14.6,24.9,36.9,13.5),o.bezierCurveTo(59.2,2.2,80.3,-.8,84,7),o.lineTo(84,7),o.closePath(),o.lineWidth=5.3,o.strokeStyle="rgb(255, 255, 255)",o.lineJoin="miter",o.miterLimit=4,o.stroke(),this.anchorPoint.set(.5,.5)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.draw=function(t){t.drawImage(this.iconCanvas,t.getWidth()/2,this.pos.y)},e}(Renderable),DefaultLoadingScreen=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onResetEvent=function(){world.addChild(new ColorLayer("background","#202020"),0),world.addChild(new ProgressBar(0,renderer.getHeight()/2,renderer.getWidth(),8),1),world.addChild(new IconLogo(renderer.getWidth()/2,renderer.getHeight()/2-16-35),2);var t=pool.pull("Text",renderer.getWidth()/2,renderer.getHeight()/2+16,{font:"century gothic",size:32,fillStyle:"white",textAlign:"left",textBaseline:"top",text:"melon",offScreenCanvas:!0});t.anchorPoint.set(0,0);var e=pool.pull("Text",renderer.getWidth()/2,renderer.getHeight()/2+16,{font:"century gothic",size:32,fillStyle:"#55aa00",textAlign:"left",textBaseline:"top",bold:!0,text:"JS",offScreenCanvas:!0});e.anchorPoint.set(0,0);var i=t.getBounds().width+e.getBounds().width;t.pos.x=renderer.getWidth()/2-i/2,e.pos.x=t.pos.x+t.getBounds().width,world.addChild(t,2),world.addChild(e,2)},e}(Stage),_state=-1,_animFrameId=-1,_isPaused=!1,_stages={},_fade={color:"",duration:0},_onSwitchComplete=null,_extraArgs=null,_pauseTime=0;function _startRunLoop(){-1===_animFrameId&&-1!==_state&&(timer$1.reset(),_animFrameId=window.requestAnimationFrame(_renderFrame))}function _resumeRunLoop(){_isPaused&&-1!==_state&&(timer$1.reset(),_isPaused=!1)}function _pauseRunLoop(){_isPaused=!0}function _renderFrame(t){var e=_stages[_state].stage;update$1(t,e),draw(e),-1!==_animFrameId&&(_animFrameId=window.requestAnimationFrame(_renderFrame))}function _stopRunLoop(){window.cancelAnimationFrame(_animFrameId),_animFrameId=-1}function _switchState(t){_stopRunLoop(),_stages[_state]&&_stages[_state].stage.destroy(),_stages[t]&&(_stages[_state=t].stage.reset.apply(_stages[_state].stage,_extraArgs),_startRunLoop(),_onSwitchComplete&&_onSwitchComplete(),repaint())}on(BOOT,(function(){state.set(state.LOADING,new DefaultLoadingScreen),state.set(state.DEFAULT,new Stage),on(VIDEO_INIT,(function(){state.change(state.DEFAULT,!0)}))}));var state={LOADING:0,MENU:1,READY:2,PLAY:3,GAMEOVER:4,GAME_END:5,SCORE:6,CREDITS:7,SETTINGS:8,DEFAULT:9,USER:100,stop:function(t){_state!==this.LOADING&&this.isRunning()&&(_stopRunLoop(),!0===t&&pauseTrack(),_pauseTime=window.performance.now(),emit(STATE_STOP))},pause:function(t){_state===this.LOADING||this.isPaused()||(_pauseRunLoop(),!0===t&&pauseTrack(),_pauseTime=window.performance.now(),emit(STATE_PAUSE))},restart:function(t){this.isRunning()||(_startRunLoop(),!0===t&&resumeTrack(),_pauseTime=window.performance.now()-_pauseTime,repaint(),emit(STATE_RESTART,_pauseTime))},resume:function(t){this.isPaused()&&(_resumeRunLoop(),!0===t&&resumeTrack(),_pauseTime=window.performance.now()-_pauseTime,emit(STATE_RESUME,_pauseTime))},isRunning:function(){return-1!==_animFrameId},isPaused:function(){return _isPaused},set:function(t,e,i){if(void 0===i&&(i=!1),!(e instanceof Stage))throw new Error(e+" is not an instance of me.Stage");_stages[t]={},_stages[t].stage=e,_stages[t].transition=!0,!0===i&&this.change(t)},current:function(){if(void 0!==_stages[_state])return _stages[_state].stage},transition:function(t,e,i){"fade"===t&&(_fade.color=e,_fade.duration=i)},setTransition:function(t,e){_stages[t].transition=e},change:function(t,e){if(void 0===_stages[t])throw new Error("Undefined Stage for state '"+t+"'");this.isCurrent(t)||(_extraArgs=null,arguments.length>1&&(_extraArgs=Array.prototype.slice.call(arguments,1)),_fade.duration&&_stages[t].transition?(_onSwitchComplete=function(){viewport.fadeOut(_fade.color,_fade.duration)},viewport.fadeIn(_fade.color,_fade.duration,(function(){defer(_switchState,this,t)}))):!0===e?_switchState(t):defer(_switchState,this,t))},isCurrent:function(t){return _state===t}};function setTMXValue(name,type,value){var match;if("string"!=typeof value)return value;switch(type){case"int":case"float":value=Number(value);break;case"bool":value="true"===value;break;default:if(!value||isBoolean(value))value=!value||"true"===value;else if(isNumeric(value))value=Number(value);else if(0===value.search(/^json:/i)){match=value.split(/^json:/i)[1];try{value=JSON.parse(match)}catch(t){throw new Error("Unable to parse JSON: "+match)}}else if(0===value.search(/^eval:/i)){match=value.split(/^eval:/i)[1];try{value=eval(match)}catch(t){throw new Error("Unable to evaluate: "+match)}}else((match=value.match(/^#([\da-fA-F])([\da-fA-F]{3})$/))||(match=value.match(/^#([\da-fA-F]{2})([\da-fA-F]{6})$/)))&&(value="#"+match[2]+match[1]);0===name.search(/^(ratio|anchorPoint)$/)&&"number"==typeof value&&(value={x:value,y:value})}return value}function parseAttributes(t,e){if(e.attributes&&e.attributes.length>0)for(var i=0;i<e.attributes.length;i++){var o=e.attributes.item(i);void 0!==o.name?t[o.name]=o.value:t[o.nodeName]=o.nodeValue}}function decompress(){throw new Error("GZIP/ZLIB compressed TMX Tile Map not supported!")}function decodeCSV(t){for(var e=t.replace("\n","").trim().split(","),i=[],o=0;o<e.length;o++)i.push(+e[o]);return i}function decodeBase64AsArray(t,e){var i,o,r;e=e||1;var n=window.atob(t.replace(/[^A-Za-z0-9\+\/\=]/g,"")),s=new Uint32Array(n.length/e);for(i=0,r=n.length/e;i<r;i++)for(s[i]=0,o=e-1;o>=0;--o)s[i]+=n.charCodeAt(i*e+o)<<(o<<3);return s}function decode(t,e,i){switch(i=i||"none",e=e||"none"){case"csv":return decodeCSV(t);case"base64":var o=decodeBase64AsArray(t,4);return"none"===i?o:decompress();case"none":return t;case"xml":throw new Error("XML encoding is deprecated, use base64 instead");default:throw new Error("Unknown layer encoding: "+e)}}function normalize(t,e){var i=e.nodeName;switch(i){case"data":var o=parse(e);o.text=o.text||o.chunk.text,o.encoding=o.encoding||"xml",t.data=decode(o.text,o.encoding,o.compression),t.encoding="none";break;case"imagelayer":case"layer":case"objectgroup":case"group":var r=parse(e);r.type="layer"===i?"tilelayer":i,r.image&&(r.image=r.image.source),t.layers=t.layers||[],t.layers.push(r);break;case"animation":t.animation=parse(e).frames;break;case"frame":case"object":var n=i+"s";t[n]=t[n]||[],t[n].push(parse(e));break;case"tile":var s=parse(e);s.image&&(s.imagewidth=s.image.width,s.imageheight=s.image.height,s.image=s.image.source),t.tiles=t.tiles||{},t.tiles[s.id]=s;break;case"tileset":var a=parse(e);a.image&&(a.imagewidth=a.image.width,a.imageheight=a.image.height,a.image=a.image.source),t.tilesets=t.tilesets||[],t.tilesets.push(a);break;case"polygon":case"polyline":t[i]=[];for(var h,l=parse(e).points.split(" "),c=0;c<l.length;c++)h=l[c].split(","),t[i].push({x:+h[0],y:+h[1]});break;case"properties":t.properties=parse(e);break;case"property":var u=parse(e),d=void 0!==u.value?u.value:u.text;t[u.name]=setTMXValue(u.name,u.type||"string",d);break;default:t[i]=parse(e)}}function parse(t){var e={},i="";if(1===t.nodeType&&parseAttributes(e,t),t.hasChildNodes())for(var o=0;o<t.childNodes.length;o++){var r=t.childNodes.item(o);switch(r.nodeType){case 1:normalize(e,r);break;case 3:i+=r.nodeValue.trim()}}return i&&(e.text=i),e}function applyTMXProperties(t,e){var i=e.properties,o=e.propertytypes;if(void 0!==i)for(var r in i)if(i.hasOwnProperty(r)){var n="string",s=r,a=i[r];void 0!==i[r].name&&(s=i[r].name),void 0!==o?n=o[r]:void 0!==i[r].type&&(n=i[r].type),void 0!==i[r].value&&(a=i[r].value),t[s]=setTMXValue(s,n,a)}}var TextureCache=function(t){this.cache=new Map,this.tinted=new Map,this.units=new Map,this.max_size=t||1/0,this.clear()};function createAtlas(t,e,i,o){return void 0===i&&(i="default"),void 0===o&&(o="no-repeat"),{meta:{app:"melonJS",size:{w:t,h:e},repeat:o,image:"default"},frames:[{filename:i,frame:{x:0,y:0,w:t,h:e}}]}}TextureCache.prototype.clear=function(){this.cache.clear(),this.tinted.clear(),this.units.clear(),this.length=0},TextureCache.prototype.validate=function(){if(this.length>=this.max_size)throw new Error("Texture cache overflow: "+this.max_size+" texture units available for this GPU.")},TextureCache.prototype.get=function(t,e){return this.cache.has(t)||(e||(e=createAtlas(t.width,t.height,t.src?getBasename(t.src):void 0)),this.set(t,new Texture(e,t,!1))),this.cache.get(t)},TextureCache.prototype.remove=function(t){this.cache.has(t)||!0===this.cache.remove(t)&&this.length--},TextureCache.prototype.tint=function(t,e){var i=this.tinted.get(t);return void 0===i&&(i=this.tinted.set(t,new Map)),i.has(e)||i.set(e,renderer.tint(t,e,"multiply")),i.get(e)},TextureCache.prototype.set=function(t,e){var i=t.width,o=t.height;if(!(1!==renderer.WebGLVersion||isPowerOfTwo(i)&&isPowerOfTwo(o))){var r=void 0!==t.src?t.src:t;console.warn("[Texture] "+r+" is not a POT texture ("+i+"x"+o+")")}this.cache.set(t,e)},TextureCache.prototype.getUnit=function(t){return this.units.has(t)||(this.validate(),this.units.set(t,this.length++)),this.units.get(t)};var Texture=function(t,e,i){var o=this;if(this.format=null,this.sources=new Map,this.atlases=new Map,void 0!==t)for(var r in t=Array.isArray(t)?t:[t]){var n=t[r];if(void 0!==n.meta){if(n.meta.app.includes("texturepacker")||n.meta.app.includes("free-tex-packer")){if(this.format="texturepacker",void 0===e){var s=loader.getImage(n.meta.image);if(!s)throw new Error("Atlas texture '"+s+"' not found");this.sources.set(n.meta.image,s)}else this.sources.set(n.meta.image||"default","string"==typeof e?loader.getImage(e):e);this.repeat="no-repeat"}else if(n.meta.app.includes("ShoeBox")){if(!n.meta.exporter||!n.meta.exporter.includes("melonJS"))throw new Error("ShoeBox requires the JSON exporter : https://github.com/melonjs/melonJS/tree/master/media/shoebox_JSON_export.sbx");this.format="ShoeBox",this.repeat="no-repeat",this.sources.set("default","string"==typeof e?loader.getImage(e):e)}else n.meta.app.includes("melonJS")&&(this.format="melonJS",this.repeat=n.meta.repeat||"no-repeat",this.sources.set("default","string"==typeof e?loader.getImage(e):e));this.atlases.set(n.meta.image||"default",this.parse(n))}else void 0!==n.framewidth&&void 0!==n.frameheight&&(this.format="Spritesheet (fixed cell size)",this.repeat="no-repeat",void 0!==e&&(n.image="string"==typeof e?loader.getImage(e):e),this.atlases.set("default",this.parseFromSpriteSheet(n)),this.sources.set("default",n.image))}if(0===this.atlases.length)throw new Error("texture atlas format not supported");!1!==i&&this.sources.forEach((function(t){i instanceof TextureCache?i.set(t,o):renderer.cache.set(t,o)}))};Texture.prototype.parse=function(t){var e=this,i={};return t.frames.forEach((function(o){if(o.hasOwnProperty("filename")){var r,n,s=o.frame,a=o.spriteSourceSize&&o.sourceSize&&o.pivot;a&&(r=o.sourceSize.w*o.pivot.x-(o.trimmed?o.spriteSourceSize.x:0),n=o.sourceSize.h*o.pivot.y-(o.trimmed?o.spriteSourceSize.y:0)),i[o.filename]={name:o.filename,texture:t.meta.image||"default",offset:new Vector2d(s.x,s.y),anchorPoint:a?new Vector2d(r/s.w,n/s.h):null,trimmed:!!o.trimmed,width:s.w,height:s.h,angle:!0===o.rotated?-ETA:0},e.addUvsMap(i,o.filename,t.meta.size.w,t.meta.size.h)}})),i},Texture.prototype.parseFromSpriteSheet=function(t){var e={},i=t.image,o=t.spacing||0,r=t.margin||0,n=i.width,s=i.height,a=pool.pull("Vector2d",~~((n-r+o)/(t.framewidth+o)),~~((s-r+o)/(t.frameheight+o)));if(n%(t.framewidth+o)!=0||s%(t.frameheight+o)!=0){var h=a.x*(t.framewidth+o),l=a.y*(t.frameheight+o);h-n!==o&&l-s!==o&&(n=h,s=l,console.warn("Spritesheet Texture for image: "+i.src+" is not divisible by "+(t.framewidth+o)+"x"+(t.frameheight+o)+", truncating effective size to "+n+"x"+s))}for(var c=0,u=a.x*a.y;c<u;c++){var d=""+c;e[d]={name:d,texture:"default",offset:new Vector2d(r+(o+t.framewidth)*(c%a.x),r+(o+t.frameheight)*~~(c/a.x)),anchorPoint:t.anchorPoint||null,trimmed:!1,width:t.framewidth,height:t.frameheight,angle:0},this.addUvsMap(e,d,n,s)}return pool.push(a),e},Texture.prototype.addUvsMap=function(t,e,i,o){if(renderer instanceof WebGLRenderer){var r=t[e].offset,n=t[e].width,s=t[e].height;t[e].uvs=new Float32Array([r.x/i,r.y/o,(r.x+n)/i,(r.y+s)/o]),t[r.x+","+r.y+","+i+","+o]=t[e]}return t[e]},Texture.prototype.addQuadRegion=function(t,e,i,o,r){!0===renderer.settings.verbose&&console.warn("Adding texture region",t,"for texture",this);var n=this.getTexture(),s=this.getAtlas(),a=n.width,h=n.height;return s[t]={name:t,offset:new Vector2d(e,i),width:o,height:r,angle:0},this.addUvsMap(s,t,a,h),s[t]},Texture.prototype.getAtlas=function(t){return"string"==typeof t?this.atlases.get(t):this.atlases.values().next().value},Texture.prototype.getFormat=function(){return this.format},Texture.prototype.getTexture=function(t){return"object"==typeof t&&"string"==typeof t.texture?this.sources.get(t.texture):this.sources.values().next().value},Texture.prototype.getRegion=function(t,e){var i;return"string"==typeof e?i=this.getAtlas(e)[t]:this.atlases.forEach((function(e){void 0!==e[t]&&(i=e[t])})),i},Texture.prototype.getUVs=function(t){var e=this.getRegion(t);if(void 0===e){var i=t.split(","),o=+i[0],r=+i[1],n=+i[2],s=+i[3];e=this.addQuadRegion(t,o,r,n,s)}return e.uvs},Texture.prototype.createSpriteFromName=function(t,e,i){return void 0===i&&(i=!1),pool.pull(!0===i?"me.NineSliceSprite":"me.Sprite",0,0,Object.assign({image:this,region:t},e||{}))},Texture.prototype.createAnimationFromName=function(t,e){for(var i,o=[],r={},n=0,s=0,a=0;a<t.length;++a){if(null==(i=this.getRegion(t[a])))throw new Error("Texture - region for "+t[a]+" not found");o[a]=i,r[t[a]]=a,n=Math.max(i.width,n),s=Math.max(i.height,s)}return new Sprite(0,0,Object.assign({image:this,framewidth:n,frameheight:s,margin:0,spacing:0,atlas:o,atlasIndices:r},e||{}))};var Sprite=function(t){function e(e,i,o){if(t.call(this,e,i,0,0),this.animationpause=!1,this.animationspeed=100,this.offset=pool.pull("Vector2d",0,0),this.source=null,this.anim={},this.resetAnim=void 0,this.current={name:"default",length:0,offset:new Vector2d,width:0,height:0,angle:0,idx:0},this.dt=0,this._flicker={isFlickering:!1,duration:0,callback:null,state:!1},o.image instanceof Texture){if(this.source=o.image,this.image=this.source.getTexture(),this.textureAtlas=o.image,void 0!==o.region){var r=this.source.getRegion(o.region);if(!r)throw new Error("Texture - region for "+o.region+" not found");this.setRegion(r),this.current.width=o.framewidth||r.width,this.current.height=o.frameheight||r.height}}else{if(this.image="object"==typeof o.image?o.image:loader.getImage(o.image),!this.image)throw new Error("me.Sprite: '"+o.image+"' image/texture not found!");this.current.width=o.framewidth=o.framewidth||this.image.width,this.current.height=o.frameheight=o.frameheight||this.image.height,this.source=renderer.cache.get(this.image,o),this.textureAtlas=this.source.getAtlas()}void 0!==o.atlas&&(this.textureAtlas=o.atlas,this.atlasIndices=o.atlasIndices),this.width=this.current.width,this.height=this.current.height,void 0!==o.flipX&&this.flipX(!!o.flipX),void 0!==o.flipY&&this.flipY(!!o.flipY),void 0!==o.rotation&&this.rotate(o.rotation),o.anchorPoint&&this.anchorPoint.set(o.anchorPoint.x,o.anchorPoint.y),void 0!==o.tint&&this.tint.setColor(o.tint),"string"==typeof o.name&&(this.name=o.name),void 0!==o.z&&(this.pos.z=o.z),0!==this.addAnimation("default",null)&&this.setCurrentAnimation("default"),this.autoTransform=!0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.isFlickering=function(){return this._flicker.isFlickering},e.prototype.flicker=function(t,e){return this._flicker.duration=t,this._flicker.duration<=0?(this._flicker.isFlickering=!1,this._flicker.callback=null):this._flicker.isFlickering||(this._flicker.callback=e,this._flicker.isFlickering=!0),this},e.prototype.addAnimation=function(t,e,i){this.anim[t]={name:t,frames:[],idx:0,length:0};var o=0;if("object"!=typeof this.textureAtlas)return 0;null==e&&(e=[],Object.keys(this.textureAtlas).forEach((function(t,i){e[i]=i})));for(var r=0,n=e.length;r<n;r++){var s,a=e[r],h=(s="number"==typeof a||"string"==typeof a?{name:a,delay:i||this.animationspeed}:a).name;if("number"==typeof h)void 0!==this.textureAtlas[h]&&(this.anim[t].frames[r]=Object.assign({},this.textureAtlas[h],s),o++);else{if(this.source.getFormat().includes("Spritesheet"))throw new Error("string parameters for addAnimation are not allowed for standard spritesheet based Texture");this.anim[t].frames[r]=Object.assign({},this.textureAtlas[this.atlasIndices[h]],s),o++}}return this.anim[t].length=o,o},e.prototype.setCurrentAnimation=function(t,e,i){if(!this.anim[t])throw new Error("animation id '"+t+"' not defined");return this.current.name=t,this.current.length=this.anim[this.current.name].length,this.resetAnim="string"==typeof e?this.setCurrentAnimation.bind(this,e,null,!0):"function"==typeof e?e:void 0,this.setAnimationFrame(this.current.idx),i||(this.dt=0),this.isDirty=!0,this},e.prototype.reverseAnimation=function(t){return void 0!==t&&void 0!==this.anim[t]?this.anim[t].frames.reverse():this.anim[this.current.name].frames.reverse(),this.isDirty=!0,this},e.prototype.isCurrentAnimation=function(t){return this.current.name===t},e.prototype.setRegion=function(t){return this.image=this.source.getTexture(t),this.current.offset.setV(t.offset),this.current.angle=t.angle,this.width=this.current.width=t.width,this.height=this.current.height=t.height,t.anchorPoint&&this.anchorPoint.set(this._flip.x&&!0===t.trimmed?1-t.anchorPoint.x:t.anchorPoint.x,this._flip.y&&!0===t.trimmed?1-t.anchorPoint.y:t.anchorPoint.y),this.isDirty=!0,this},e.prototype.setAnimationFrame=function(t){return this.current.idx=(t||0)%this.current.length,this.setRegion(this.getAnimationFrameObjectByIndex(this.current.idx))},e.prototype.getCurrentAnimationFrame=function(){return this.current.idx},e.prototype.getAnimationFrameObjectByIndex=function(t){return this.anim[this.current.name].frames[t]},e.prototype.update=function(t){if(!this.animationpause&&this.current&&this.current.length>0){var e=this.getAnimationFrameObjectByIndex(this.current.idx).delay;for(this.dt+=t;this.dt>=e;){this.isDirty=!0,this.dt-=e;var i=this.current.length>1?this.current.idx+1:this.current.idx;if(this.setAnimationFrame(i),0===this.current.idx&&"function"==typeof this.resetAnim&&!1===this.resetAnim()){this.setAnimationFrame(this.current.length-1),this.dt%=e;break}e=this.getAnimationFrameObjectByIndex(this.current.idx).delay}}return this._flicker.isFlickering&&(this._flicker.duration-=t,this._flicker.duration<0&&("function"==typeof this._flicker.callback&&this._flicker.callback(),this.flicker(-1)),this.isDirty=!0),this.isDirty},e.prototype.destroy=function(){pool.push(this.offset),this.offset=void 0,t.prototype.destroy.call(this)},e.prototype.draw=function(t){if(!this._flicker.isFlickering||(this._flicker.state=!this._flicker.state,this._flicker.state)){var e=this.current,i=this.pos.x,o=this.pos.y,r=e.width,n=e.height,s=e.offset,a=this.offset;0!==e.angle&&(t.translate(-i,-o),t.rotate(e.angle),i-=n,r=e.height,n=e.width),t.drawImage(this.image,a.x+s.x,a.y+s.y,r,n,i,o,r,n)}},e}(Renderable),TMX_FLIP_H=2147483648,TMX_FLIP_V=1073741824,TMX_FLIP_AD=536870912,TMX_CLEAR_BIT_MASK$1=536870911,Tile=function(t){function e(e,i,o,r){var n,s;if(t.call(this),r.isCollection){var a=r.getTileImage(o&TMX_CLEAR_BIT_MASK$1);n=a.width,s=a.height}else n=r.tilewidth,s=r.tileheight;this.setMinMax(0,0,n,s),this.tileset=r,this.currentTransform=null,this.col=e,this.row=i,this.tileId=o,this.flippedX=0!=(this.tileId&TMX_FLIP_H),this.flippedY=0!=(this.tileId&TMX_FLIP_V),this.flippedAD=0!=(this.tileId&TMX_FLIP_AD),this.flipped=this.flippedX||this.flippedY||this.flippedAD,!0===this.flipped&&(null===this.currentTransform&&(this.currentTransform=new Matrix2d),this.setTileTransform(this.currentTransform.identity())),this.tileId&=TMX_CLEAR_BIT_MASK$1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setTileTransform=function(t){t.translate(this.width/2,this.height/2),this.flippedAD&&(t.rotate(-90*Math.PI/180),t.scale(-1,1)),this.flippedX&&t.scale(this.flippedAD?1:-1,this.flippedAD?-1:1),this.flippedY&&t.scale(this.flippedAD?-1:1,this.flippedAD?1:-1),t.translate(-this.width/2,-this.height/2)},e.prototype.getRenderable=function(t){var e,i=this.tileset;if(i.animations.has(this.tileId)){var o=[],r=[];i.animations.get(this.tileId).frames.forEach((function(t){r.push(t.tileid),o.push({name:""+t.tileid,delay:t.duration})})),(e=i.texture.createAnimationFromName(r,t)).addAnimation(this.tileId-i.firstgid,o),e.setCurrentAnimation(this.tileId-i.firstgid)}else if(!0===i.isCollection){var n=i.getTileImage(this.tileId);(e=new Sprite(0,0,Object.assign({image:n}))).anchorPoint.set(0,0),e.scale(t.width/this.width,t.height/this.height),void 0!==t.rotation&&(e.anchorPoint.set(.5,.5),e.currentTransform.rotate(t.rotation),e.currentTransform.translate(t.width/2,t.height/2),t.rotation=void 0)}else(e=i.texture.createSpriteFromName(this.tileId-i.firstgid,t)).anchorPoint.set(0,0);return this.setTileTransform(e.currentTransform),e},e}(Bounds$1),Line=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.contains=function(){var t,e;2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),t-=this.pos.x,e-=this.pos.y;var i=this.points[0],o=this.points[1];return(e-i.y)*(o.x-i.x)==(o.y-i.y)*(t-i.x)},e.prototype.recalc=function(){var t=this.edges,e=this.normals,i=this.indices,o=this.points;if(2!==o.length)throw new Error("Requires exactly 2 points");return void 0===t[0]&&(t[0]=new Vector2d),t[0].copy(o[1]).sub(o[0]),void 0===e[0]&&(e[0]=new Vector2d),e[0].copy(t[0]).perp().normalize(),i.length=0,this},e.prototype.clone=function(){var t=[];return this.points.forEach((function(e){t.push(e.clone())})),new e(this.pos.x,this.pos.y,t)},e}(Polygon),Renderer=function(t){return this.settings=t,this.isContextValid=!0,this.currentScissor=new Int32Array([0,0,this.settings.width,this.settings.height]),this.currentBlendMode="normal",!0===device$1.ejecta?this.canvas=document.getElementById("canvas"):void 0!==window.canvas?this.canvas=window.canvas:void 0!==this.settings.canvas?this.canvas=this.settings.canvas:this.canvas=createCanvas(this.settings.zoomX,this.settings.zoomY),this.backBufferCanvas=this.canvas,this.context=null,this.currentColor=new Color(0,0,0,1),this.currentTint=new Color(255,255,255,1),this.projectionMatrix=new Matrix3d,this.uvOffset=0,this.Texture=Texture,on(GAME_RESET,(function(){renderer.reset()})),this};Renderer.prototype.clear=function(){},Renderer.prototype.reset=function(){this.resetTransform(),this.setBlendMode(this.settings.blendMode),this.setColor("#000000"),this.clearTint(),this.cache.clear(),this.currentScissor[0]=0,this.currentScissor[1]=0,this.currentScissor[2]=this.backBufferCanvas.width,this.currentScissor[3]=this.backBufferCanvas.height},Renderer.prototype.getCanvas=function(){return this.backBufferCanvas},Renderer.prototype.getScreenCanvas=function(){return this.canvas},Renderer.prototype.getScreenContext=function(){return this.context},Renderer.prototype.getBlendMode=function(){return this.currentBlendMode},Renderer.prototype.getContext2d=function(t,e){if(null==t)throw new Error("You must pass a canvas element in order to create a 2d context");if(void 0===t.getContext)throw new Error("Your browser does not support HTML5 canvas.");"boolean"!=typeof e&&(e=!0);var i=t.getContext("2d",{alpha:e});return i.canvas||(i.canvas=t),this.setAntiAlias(i,this.settings.antiAlias),i},Renderer.prototype.getWidth=function(){return this.backBufferCanvas.width},Renderer.prototype.getHeight=function(){return this.backBufferCanvas.height},Renderer.prototype.getColor=function(){return this.currentColor},Renderer.prototype.globalAlpha=function(){return this.currentColor.glArray[3]},Renderer.prototype.overlaps=function(t){return t.left<=this.getWidth()&&t.right>=0&&t.top<=this.getHeight()&&t.bottom>=0},Renderer.prototype.resize=function(t,e){t===this.backBufferCanvas.width&&e===this.backBufferCanvas.height||(this.canvas.width=this.backBufferCanvas.width=t,this.canvas.height=this.backBufferCanvas.height=e,this.currentScissor[0]=0,this.currentScissor[1]=0,this.currentScissor[2]=t,this.currentScissor[3]=e,emit(CANVAS_ONRESIZE,t,e))},Renderer.prototype.setAntiAlias=function(t,e){var i=t.canvas;setPrefixed("imageSmoothingEnabled",!0===e,t),!0!==e?(i.style["image-rendering"]="optimizeSpeed",i.style["image-rendering"]="-moz-crisp-edges",i.style["image-rendering"]="-o-crisp-edges",i.style["image-rendering"]="-webkit-optimize-contrast",i.style["image-rendering"]="optimize-contrast",i.style["image-rendering"]="crisp-edges",i.style["image-rendering"]="pixelated",i.style.msInterpolationMode="nearest-neighbor"):i.style["image-rendering"]="auto"},Renderer.prototype.setProjection=function(t){this.projectionMatrix.copy(t)},Renderer.prototype.stroke=function(t,e){t instanceof Rect||t instanceof Bounds$1?this.strokeRect(t.left,t.top,t.width,t.height,e):t instanceof Line||t instanceof Polygon?this.strokePolygon(t,e):t instanceof Ellipse&&this.strokeEllipse(t.pos.x,t.pos.y,t.radiusV.x,t.radiusV.y,e)},Renderer.prototype.tint=function(t,e,i){var o=createCanvas(t.width,t.height,!0),r=this.getContext2d(o);return r.save(),r.fillStyle=e instanceof Color?e.toRGB():e,r.fillRect(0,0,t.width,t.height),r.globalCompositeOperation=i||"multiply",r.drawImage(t,0,0),r.globalCompositeOperation="destination-atop",r.drawImage(t,0,0),r.restore(),o},Renderer.prototype.fill=function(t){this.stroke(t,!0)},Renderer.prototype.setMask=function(t){},Renderer.prototype.clearMask=function(){},Renderer.prototype.setTint=function(t,e){void 0===e&&(e=t.alpha),this.currentTint.copy(t),this.currentTint.alpha*=e},Renderer.prototype.clearTint=function(){this.currentTint.setColor(255,255,255,1)},Renderer.prototype.drawFont=function(){};var CanvasRenderer=function(t){function e(e){return t.call(this,e),this.context=this.getContext2d(this.getScreenCanvas(),this.settings.transparent),this.settings.doubleBuffering?(this.backBufferCanvas=createCanvas(this.settings.width,this.settings.height,!0),this.backBufferContext2D=this.getContext2d(this.backBufferCanvas)):(this.backBufferCanvas=this.getScreenCanvas(),this.backBufferContext2D=this.context),this.setBlendMode(this.settings.blendMode),this.setColor(this.currentColor),this.cache=new TextureCache,!1===this.settings.textureSeamFix||this.settings.antiAlias||(this.uvOffset=1),this}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reset=function(){t.prototype.reset.call(this),this.clearColor(this.currentColor,!0!==this.settings.transparent)},e.prototype.resetTransform=function(){this.backBufferContext2D.setTransform(1,0,0,1,0,0)},e.prototype.setBlendMode=function(t,e){if(e=e||this.getContext(),this.currentBlendMode=t,"multiply"===t)e.globalCompositeOperation="multiply";else e.globalCompositeOperation="source-over",this.currentBlendMode="normal";this.settings.doubleBuffering&&this.settings.transparent&&(this.context.globalCompositeOperation="copy")},e.prototype.clear=function(){this.settings.transparent&&this.clearColor("rgba(0,0,0,0)",!0)},e.prototype.flush=function(){this.settings.doubleBuffering&&this.context.drawImage(this.backBufferCanvas,0,0)},e.prototype.clearColor=function(t,e){this.save(),this.resetTransform(),this.backBufferContext2D.globalCompositeOperation=e?"copy":"source-over",this.backBufferContext2D.fillStyle=t instanceof Color?t.toRGBA():t,this.fillRect(0,0,this.backBufferCanvas.width,this.backBufferCanvas.height),this.restore()},e.prototype.clearRect=function(t,e,i,o){this.backBufferContext2D.clearRect(t,e,i,o)},e.prototype.createPattern=function(t,e){return this.backBufferContext2D.createPattern(t,e)},e.prototype.drawImage=function(t,e,i,o,r,n,s,a,h){if(!(this.backBufferContext2D.globalAlpha<1/255)){void 0===o?(o=a=t.width,r=h=t.height,n=e,s=i,e=0,i=0):void 0===n&&(n=e,s=i,a=o,h=r,o=t.width,r=t.height,e=0,i=0),!1===this.settings.subPixel&&(n=~~n,s=~~s);var l=t,c=this.currentTint.toArray();1===c[0]&&1===c[1]&&1===c[2]||(l=this.cache.tint(t,this.currentTint.toRGB())),this.backBufferContext2D.drawImage(l,e,i,o,r,n,s,a,h)}},e.prototype.drawPattern=function(t,e,i,o,r){if(!(this.backBufferContext2D.globalAlpha<1/255)){var n=this.backBufferContext2D.fillStyle;this.backBufferContext2D.fillStyle=t,this.backBufferContext2D.fillRect(e,i,o,r),this.backBufferContext2D.fillStyle=n}},e.prototype.strokeArc=function(t,e,i,o,r,n,s){void 0===s&&(s=!1);var a=this.backBufferContext2D;a.globalAlpha<1/255||(a.translate(t,e),a.beginPath(),a.arc(0,0,i,o,r,n||!1),a[!0===s?"fill":"stroke"](),a.translate(-t,-e))},e.prototype.fillArc=function(t,e,i,o,r,n){this.strokeArc(t,e,i,o,r,n||!1,!0)},e.prototype.strokeEllipse=function(t,e,i,o,r){void 0===r&&(r=!1);var n=this.backBufferContext2D;if(!(n.globalAlpha<1/255)){var s=t-i,a=t+i,h=e-o,l=e+o,c=.551784*i,u=.551784*o,d=t-c,p=t+c,f=e-u,y=e+u;n.beginPath(),n.moveTo(t,h),n.bezierCurveTo(p,h,a,f,a,e),n.bezierCurveTo(a,y,p,l,t,l),n.bezierCurveTo(d,l,s,y,s,e),n.bezierCurveTo(s,f,d,h,t,h),n[!0===r?"fill":"stroke"](),n.closePath()}},e.prototype.fillEllipse=function(t,e,i,o){this.strokeEllipse(t,e,i,o,!0)},e.prototype.strokeLine=function(t,e,i,o){var r=this.backBufferContext2D;r<1/255||(r.beginPath(),r.moveTo(t,e),r.lineTo(i,o),r.stroke())},e.prototype.fillLine=function(t,e,i,o){this.strokeLine(t,e,i,o)},e.prototype.strokePolygon=function(t,e){void 0===e&&(e=!1);var i=this.backBufferContext2D;if(!(i.globalAlpha<1/255)){var o;this.translate(t.pos.x,t.pos.y),i.beginPath(),i.moveTo(t.points[0].x,t.points[0].y);for(var r=1;r<t.points.length;r++)o=t.points[r],i.lineTo(o.x,o.y);i.lineTo(t.points[0].x,t.points[0].y),i[!0===e?"fill":"stroke"](),i.closePath(),this.translate(-t.pos.x,-t.pos.y)}},e.prototype.fillPolygon=function(t){this.strokePolygon(t,!0)},e.prototype.strokeRect=function(t,e,i,o,r){if(void 0===r&&(r=!1),!0===r)this.fillRect(t,e,i,o);else{if(this.backBufferContext2D.globalAlpha<1/255)return;this.backBufferContext2D.strokeRect(t,e,i,o)}},e.prototype.fillRect=function(t,e,i,o){this.backBufferContext2D.globalAlpha<1/255||this.backBufferContext2D.fillRect(t,e,i,o)},e.prototype.getContext=function(){return this.backBufferContext2D},e.prototype.getFontContext=function(){return this.getContext()},e.prototype.save=function(){this.backBufferContext2D.save()},e.prototype.restore=function(){this.backBufferContext2D.restore(),this.currentColor.glArray[3]=this.backBufferContext2D.globalAlpha,this.currentScissor[0]=0,this.currentScissor[1]=0,this.currentScissor[2]=this.backBufferCanvas.width,this.currentScissor[3]=this.backBufferCanvas.height},e.prototype.rotate=function(t){this.backBufferContext2D.rotate(t)},e.prototype.scale=function(t,e){this.backBufferContext2D.scale(t,e)},e.prototype.setColor=function(t){this.backBufferContext2D.strokeStyle=this.backBufferContext2D.fillStyle=t instanceof Color?t.toRGBA():t},e.prototype.setGlobalAlpha=function(t){this.backBufferContext2D.globalAlpha=this.currentColor.glArray[3]=t},e.prototype.setLineWidth=function(t){this.backBufferContext2D.lineWidth=t},e.prototype.setTransform=function(t){this.resetTransform(),this.transform(t)},e.prototype.transform=function(t){var e=t.toArray(),i=e[0],o=e[1],r=e[3],n=e[4],s=e[6],a=e[7];!1===this.settings.subPixel&&(s|=0,a|=0),this.backBufferContext2D.transform(i,o,r,n,s,a)},e.prototype.translate=function(t,e){!1===this.settings.subPixel?this.backBufferContext2D.translate(~~t,~~e):this.backBufferContext2D.translate(t,e)},e.prototype.clipRect=function(t,e,i,o){var r=this.backBufferCanvas;if(0!==t||0!==e||i!==r.width||o!==r.height){var n=this.currentScissor;if(n[0]!==t||n[1]!==e||n[2]!==i||n[3]!==o){var s=this.backBufferContext2D;s.beginPath(),s.rect(t,e,i,o),s.clip(),n[0]=t,n[1]=e,n[2]=i,n[3]=o}}},e.prototype.setMask=function(t){var e=this.backBufferContext2D,i=t.pos.x,o=t.pos.y;if(e.save(),t instanceof Ellipse){var r=t.radiusV.x,n=t.radiusV.y,s=i-r,a=i+r,h=o-n,l=o+n,c=.551784*r,u=.551784*n,d=i-c,p=i+c,f=o-u,y=o+u;e.beginPath(),e.moveTo(i,h),e.bezierCurveTo(p,h,a,f,a,o),e.bezierCurveTo(a,y,p,l,i,l),e.bezierCurveTo(d,l,s,y,s,o),e.bezierCurveTo(s,f,d,h,i,h)}else{var g;e.beginPath(),e.moveTo(i+t.points[0].x,o+t.points[0].y);for(var v=1;v<t.points.length;v++)g=t.points[v],e.lineTo(i+g.x,o+g.y)}e.clip()},e.prototype.clearMask=function(){this.backBufferContext2D.restore()},e}(Renderer);function initArray(t){t.layerData=new Array(t.cols);for(var e=0;e<t.cols;e++){t.layerData[e]=new Array(t.rows);for(var i=0;i<t.rows;i++)t.layerData[e][i]=null}}function setLayerData(t,e){var i=0;initArray(t);for(var o=0;o<t.rows;o++)for(var r=0;r<t.cols;r++){var n=e[i++];0!==n&&(t.layerData[r][o]=t.getTileById(n,r,o))}}function preRenderLayer(t,e){for(var i=0;i<t.rows;i++)for(var o=0;o<t.cols;o++){var r=t.layerData[o][i];r instanceof Tile&&t.getRenderer().drawTile(e,o,i,r)}}var TMXLayer=function(t){function e(e,i,o,r,n,s,a){t.call(this,0,0,0,0),this.tilewidth=i.tilewidth||o,this.tileheight=i.tileheight||r,this.orientation=n,this.tilesets=s,this.tileset=this.tilesets?this.tilesets.getTilesetByIndex(0):null,this.maxTileSize={width:0,height:0};for(var h=0;h<this.tilesets.length;h++){var l=this.tilesets.getTilesetByIndex(h);this.maxTileSize.width=Math.max(this.maxTileSize.width,l.tilewidth),this.maxTileSize.height=Math.max(this.maxTileSize.height,l.tileheight)}this.animatedTilesets=[],this.isAnimated=!1,this.renderorder=i.renderorder||"right-down",this.pos.z=a,this.anchorPoint.set(0,0),this.name=i.name,this.cols=+i.width,this.rows=+i.height;var c=void 0!==i.visible?+i.visible:1;this.setOpacity(c?+i.opacity:0),"string"==typeof i.tintcolor&&this.tint.parseHex(i.tintcolor,!0),"isometric"===this.orientation?(this.width=(this.cols+this.rows)*(this.tilewidth/2),this.height=(this.cols+this.rows)*(this.tileheight/2)):(this.width=this.cols*this.tilewidth,this.height=this.rows*this.tileheight),applyTMXProperties(this,i),void 0===this.preRender&&(this.preRender=world.preRender),this.setRenderer(e.getRenderer()),setLayerData(this,decode(i.data,i.encoding,i.compression))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onActivateEvent=function(){if(void 0===this.animatedTilesets&&(this.animatedTilesets=[]),this.tilesets)for(var t=this.tilesets.tilesets,e=0;e<t.length;e++)t[e].isAnimated&&this.animatedTilesets.push(t[e]);this.isAnimated=this.animatedTilesets.length>0,this.isAnimated&&(this.preRender=!1),this.getBounds().addBounds(this.getRenderer().getBounds(),!0),this.getBounds().shift(this.pos),!0!==this.preRender||this.canvasRenderer||(this.canvasRenderer=new CanvasRenderer({canvas:createCanvas(this.width,this.height),widht:this.width,heigth:this.height,transparent:!0}),preRenderLayer(this,this.canvasRenderer))},e.prototype.onDeactivateEvent=function(){this.animatedTilesets=void 0},e.prototype.setRenderer=function(t){this.renderer=t},e.prototype.getRenderer=function(){return this.renderer},e.prototype.getTileId=function(t,e){var i=this.getTile(t,e);return i?i.tileId:null},e.prototype.getTile=function(t,e){var i=null;if(this.contains(t,e)){var o=this.getRenderer().pixelToTileCoords(t,e,pool.pull("Vector2d"));i=this.cellAt(o.x,o.y),pool.push(o)}return i},e.prototype.setTile=function(t,e,i){return this.layerData[e][i]=t,t},e.prototype.getTileById=function(t,e,i){return this.tileset.contains(t)||(this.tileset=this.tilesets.getTilesetByGid(t)),new Tile(e,i,t,this.tileset)},e.prototype.cellAt=function(t,e,i){var o=~~t,r=~~e,n=this.getRenderer();return!1===i||o>=0&&o<n.cols&&r>=0&&r<n.rows?this.layerData[o][r]:null},e.prototype.clearTile=function(t,e){this.layerData[t][e]=null,this.preRender&&this.canvasRenderer.clearRect(t*this.tilewidth,e*this.tileheight,this.tilewidth,this.tileheight)},e.prototype.update=function(t){if(this.isAnimated){for(var e=!1,i=0;i<this.animatedTilesets.length;i++)e=this.animatedTilesets[i].update(t)||e;return e}return!1},e.prototype.draw=function(t,e){if(this.preRender){var i=Math.min(e.width,this.width),o=Math.min(e.height,this.height);t.drawImage(this.canvasRenderer.getCanvas(),e.pos.x,e.pos.y,i,o,e.pos.x,e.pos.y,i,o)}else this.getRenderer().drawTileLayer(t,this,e)},e}(Renderable),Bounds=function(t){this.onResetEvent(t)},prototypeAccessors={x:{configurable:!0},y:{configurable:!0},width:{configurable:!0},height:{configurable:!0},left:{configurable:!0},right:{configurable:!0},top:{configurable:!0},bottom:{configurable:!0},centerX:{configurable:!0},centerY:{configurable:!0},center:{configurable:!0}};Bounds.prototype.onResetEvent=function(t){void 0===this.min?(this.min={x:1/0,y:1/0},this.max={x:-1/0,y:-1/0}):this.clear(),void 0!==t&&this.update(t),this._center=new Vector2d},Bounds.prototype.clear=function(){this.setMinMax(1/0,1/0,-1/0,-1/0)},Bounds.prototype.setMinMax=function(t,e,i,o){this.min.x=t,this.min.y=e,this.max.x=i,this.max.y=o},prototypeAccessors.x.get=function(){return this.min.x},prototypeAccessors.x.set=function(t){var e=this.max.x-this.min.x;this.min.x=t,this.max.x=t+e},prototypeAccessors.y.get=function(){return this.min.y},prototypeAccessors.y.set=function(t){var e=this.max.y-this.min.y;this.min.y=t,this.max.y=t+e},prototypeAccessors.width.get=function(){return this.max.x-this.min.x},prototypeAccessors.width.set=function(t){this.max.x=this.min.x+t},prototypeAccessors.height.get=function(){return this.max.y-this.min.y},prototypeAccessors.height.set=function(t){this.max.y=this.min.y+t},prototypeAccessors.left.get=function(){return this.min.x},prototypeAccessors.right.get=function(){return this.max.x},prototypeAccessors.top.get=function(){return this.min.y},prototypeAccessors.bottom.get=function(){return this.max.y},prototypeAccessors.centerX.get=function(){return this.min.x+this.width/2},prototypeAccessors.centerY.get=function(){return this.min.y+this.height/2},prototypeAccessors.center.get=function(){return this._center.set(this.centerX,this.centerY)},Bounds.prototype.update=function(t){this.add(t,!0)},Bounds.prototype.add=function(t,e){void 0===e&&(e=!1),!0===e&&this.clear();for(var i=0;i<t.length;i++){var o=t[i];o.x>this.max.x&&(this.max.x=o.x),o.x<this.min.x&&(this.min.x=o.x),o.y>this.max.y&&(this.max.y=o.y),o.y<this.min.y&&(this.min.y=o.y)}},Bounds.prototype.addBounds=function(t,e){void 0===e&&(e=!1),!0===e&&this.clear(),t.max.x>this.max.x&&(this.max.x=t.max.x),t.min.x<this.min.x&&(this.min.x=t.min.x),t.max.y>this.max.y&&(this.max.y=t.max.y),t.min.y<this.min.y&&(this.min.y=t.min.y)},Bounds.prototype.addPoint=function(t,e){void 0!==e&&(t=e.apply(t)),this.min.x=Math.min(this.min.x,t.x),this.max.x=Math.max(this.max.x,t.x),this.min.y=Math.min(this.min.y,t.y),this.max.y=Math.max(this.max.y,t.y)},Bounds.prototype.addFrame=function(t,e,i,o,r){var n=me.pool.pull("Vector2d");this.addPoint(n.set(t,e),r),this.addPoint(n.set(i,e),r),this.addPoint(n.set(t,o),r),this.addPoint(n.set(i,o),r),me.pool.push(n)},Bounds.prototype.contains=function(){var t,e,i,o,r=arguments[0];return 2===arguments.length?(t=e=r,i=o=arguments[1]):r instanceof Bounds?(t=r.min.x,e=r.max.x,i=r.min.y,o=r.max.y):(t=e=r.x,i=o=r.y),t>=this.min.x&&e<=this.max.x&&i>=this.min.y&&o<=this.max.y},Bounds.prototype.overlaps=function(t){return!(this.right<t.left||this.left>t.right||this.bottom<t.top||this.top>t.bottom)},Bounds.prototype.isFinite=function(){return isFinite(this.min.x)&&isFinite(this.max.x)&&isFinite(this.min.y)&&isFinite(this.max.y)},Bounds.prototype.translate=function(){var t,e;2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),this.min.x+=t,this.max.x+=t,this.min.y+=e,this.max.y+=e},Bounds.prototype.shift=function(){var t,e;2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y);var i=this.max.x-this.min.x,o=this.max.y-this.min.y;this.min.x=t,this.max.x=t+i,this.min.y=e,this.max.y=e+o},Bounds.prototype.clone=function(){var t=new Bounds;return t.addBounds(this),t},Bounds.prototype.toPolygon=function(){return new Polygon(this.x,this.y,[new Vector2d(0,0),new Vector2d(this.width,0),new Vector2d(this.width,this.height),new Vector2d(0,this.height)])},Object.defineProperties(Bounds.prototype,prototypeAccessors);var TMXRenderer=function(t,e,i,o){this.cols=t,this.rows=e,this.tilewidth=i,this.tileheight=o,this.bounds=new Bounds};TMXRenderer.prototype.canRender=function(t){return this.tilewidth===t.tilewidth&&this.tileheight===t.tileheight},TMXRenderer.prototype.getBounds=function(t){var e=t instanceof TMXLayer?pool.pull("Bounds"):this.bounds;return e.setMinMax(0,0,this.cols*this.tilewidth,this.rows*this.tileheight),e},TMXRenderer.prototype.pixelToTileCoords=function(t,e,i){return i},TMXRenderer.prototype.tileToPixelCoords=function(t,e,i){return i},TMXRenderer.prototype.drawTile=function(t,e,i,o){},TMXRenderer.prototype.drawTileLayer=function(t,e,i){};var TMXOrthogonalRenderer=function(t){function e(e){t.call(this,e.cols,e.rows,e.tilewidth,e.tileheight)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.canRender=function(e){return"orthogonal"===e.orientation&&t.prototype.canRender.call(this,e)},e.prototype.pixelToTileCoords=function(t,e,i){return(i||new Vector2d).set(t/this.tilewidth,e/this.tileheight)},e.prototype.tileToPixelCoords=function(t,e,i){return(i||new Vector2d).set(t*this.tilewidth,e*this.tileheight)},e.prototype.adjustPosition=function(t){"number"==typeof t.gid&&(t.y-=t.height)},e.prototype.drawTile=function(t,e,i,o){var r=o.tileset;r.drawTile(t,r.tileoffset.x+e*this.tilewidth,r.tileoffset.y+(i+1)*this.tileheight-r.tileheight,o)},e.prototype.drawTileLayer=function(t,e,i){var o=1,r=1,n=this.pixelToTileCoords(Math.max(i.pos.x-(e.maxTileSize.width-e.tilewidth),0),Math.max(i.pos.y-(e.maxTileSize.height-e.tileheight),0),pool.pull("Vector2d")).floorSelf(),s=this.pixelToTileCoords(i.pos.x+i.width+this.tilewidth,i.pos.y+i.height+this.tileheight,pool.pull("Vector2d")).ceilSelf();switch(s.x=s.x>this.cols?this.cols:s.x,s.y=s.y>this.rows?this.rows:s.y,e.renderorder){case"right-up":s.y=n.y+(n.y=s.y)-s.y,r=-1;break;case"left-down":s.x=n.x+(n.x=s.x)-s.x,o=-1;break;case"left-up":s.x=n.x+(n.x=s.x)-s.x,s.y=n.y+(n.y=s.y)-s.y,o=-1,r=-1}for(var a=n.y;a!==s.y;a+=r)for(var h=n.x;h!==s.x;h+=o){var l=e.cellAt(h,a,!1);l&&this.drawTile(t,h,a,l)}pool.push(n),pool.push(s)},e}(TMXRenderer),TMXIsometricRenderer=function(t){function e(e){t.call(this,e.cols,e.rows,e.tilewidth,e.tileheight),this.hTilewidth=this.tilewidth/2,this.hTileheight=this.tileheight/2,this.originX=this.rows*this.hTilewidth}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.canRender=function(e){return"isometric"===e.orientation&&t.prototype.canRender.call(this,e)},e.prototype.getBounds=function(t){var e=t instanceof TMXLayer?pool.pull("Bounds"):this.bounds;return e.setMinMax(0,0,(this.cols+this.rows)*(this.tilewidth/2),(this.cols+this.rows)*(this.tileheight/2)),e},e.prototype.pixelToTileCoords=function(t,e,i){return(i||new Vector2d).set(e/this.tileheight+(t-this.originX)/this.tilewidth,e/this.tileheight-(t-this.originX)/this.tilewidth)},e.prototype.tileToPixelCoords=function(t,e,i){return(i||new Vector2d).set((t-e)*this.hTilewidth+this.originX,(t+e)*this.hTileheight)},e.prototype.adjustPosition=function(t){var e=t.x/this.hTilewidth,i=t.y/this.tileheight,o=pool.pull("Vector2d");this.tileToPixelCoords(e,i,o),t.x=o.x,t.y=o.y,pool.push(o)},e.prototype.drawTile=function(t,e,i,o){var r=o.tileset;r.drawTile(t,(this.cols-1)*r.tilewidth+(e-i)*r.tilewidth>>1,-r.tilewidth+(e+i)*r.tileheight>>2,o)},e.prototype.drawTileLayer=function(t,e,i){var o=e.tileset,r=this.pixelToTileCoords(i.pos.x-o.tilewidth,i.pos.y-o.tileheight,pool.pull("Vector2d")).floorSelf(),n=this.pixelToTileCoords(i.pos.x+i.width+o.tilewidth,i.pos.y+i.height+o.tileheight,pool.pull("Vector2d")).ceilSelf(),s=this.tileToPixelCoords(n.x,n.y,pool.pull("Vector2d")),a=this.tileToPixelCoords(r.x,r.y,pool.pull("Vector2d"));a.x-=this.hTilewidth,a.y+=this.tileheight;var h=a.y-i.pos.y>this.hTileheight,l=i.pos.x-a.x<this.hTilewidth;h&&(l?(r.x--,a.x-=this.hTilewidth):(r.y--,a.x+=this.hTilewidth),a.y-=this.hTileheight);for(var c=h^l,u=r.clone(),d=2*a.y;d-2*this.tileheight<2*s.y;d+=this.tileheight){u.setV(r);for(var p=a.x;p<s.x;p+=this.tilewidth){var f=e.cellAt(u.x,u.y);if(f){var y=(o=f.tileset).tileoffset;o.drawTile(t,y.x+p,y.y+d/2-o.tileheight,f)}u.x++,u.y--}c?(r.y++,a.x-=this.hTilewidth,c=!1):(r.x++,a.x+=this.hTilewidth,c=!0)}pool.push(u),pool.push(r),pool.push(n),pool.push(s),pool.push(a)},e}(TMXRenderer),offsetsStaggerX=[{x:0,y:0},{x:1,y:-1},{x:1,y:0},{x:2,y:0}],offsetsStaggerY=[{x:0,y:0},{x:-1,y:1},{x:0,y:1},{x:0,y:2}],TMXHexagonalRenderer=function(t){function e(e){t.call(this,e.cols,e.rows,-2&e.tilewidth,-2&e.tileheight),this.hexsidelength=e.hexsidelength||0,this.staggerX="x"===e.staggeraxis,this.staggerEven="even"===e.staggerindex,this.sidelengthx=0,this.sidelengthy=0,"hexagonal"===e.orientation&&(this.staggerX?this.sidelengthx=this.hexsidelength:this.sidelengthy=this.hexsidelength),this.sideoffsetx=(this.tilewidth-this.sidelengthx)/2,this.sideoffsety=(this.tileheight-this.sidelengthy)/2,this.columnwidth=this.sideoffsetx+this.sidelengthx,this.rowheight=this.sideoffsety+this.sidelengthy,this.centers=[new Vector2d,new Vector2d,new Vector2d,new Vector2d]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.canRender=function(e){return"hexagonal"===e.orientation&&t.prototype.canRender.call(this,e)},e.prototype.getBounds=function(t){var e=t instanceof TMXLayer?pool.pull("Bounds"):this.bounds;return this.staggerX?(e.setMinMax(0,0,this.cols*this.columnwidth+this.sideoffsetx,this.rows*(this.tileheight+this.sidelengthy)),e.width>1&&(e.height+=this.rowheight)):(e.setMinMax(0,0,this.cols*(this.tilewidth+this.sidelengthx),this.rows*this.rowheight+this.sideoffsety),e.height>1&&(e.width+=this.columnwidth)),e},e.prototype.doStaggerX=function(t){return this.staggerX&&1&t^this.staggerEven},e.prototype.doStaggerY=function(t){return!this.staggerX&&1&t^this.staggerEven},e.prototype.topLeft=function(t,e,i){var o=i||new Vector2d;return this.staggerX?1&t^this.staggerEven?o.set(t-1,e):o.set(t-1,e-1):1&e^this.staggerEven?o.set(t,e-1):o.set(t-1,e-1),o},e.prototype.topRight=function(t,e,i){var o=i||new Vector2d;return this.staggerX?1&t^this.staggerEven?o.set(t+1,e):o.set(t+1,e-1):1&e^this.staggerEven?o.set(t+1,e-1):o.set(t,e-1),o},e.prototype.bottomLeft=function(t,e,i){var o=i||new Vector2d;return this.staggerX?1&t^this.staggerEven?o.set(t-1,e+1):o.set(t-1,e):1&e^this.staggerEven?o.set(t,e+1):o.set(t-1,e+1),o},e.prototype.bottomRight=function(t,e,i){var o=i||new Vector2d;return this.staggerX?1&t^this.staggerEven?o.set(t+1,e+1):o.set(t+1,e):1&e^this.staggerEven?o.set(t+1,e+1):o.set(t,e+1),o},e.prototype.pixelToTileCoords=function(t,e,i){var o=i||new Vector2d;this.staggerX?t-=this.staggerEven?this.tilewidth:this.sideoffsetx:e-=this.staggerEven?this.tileheight:this.sideoffsety;var r,n,s,a,h=pool.pull("Vector2d",Math.floor(t/(2*this.columnwidth)),Math.floor(e/(2*this.rowheight))),l=pool.pull("Vector2d",t-h.x*(2*this.columnwidth),e-h.y*(2*this.rowheight));this.staggerX?(h.x=2*h.x,this.staggerEven&&++h.x):(h.y=2*h.y,this.staggerEven&&++h.y),this.staggerX?(s=(r=this.sidelengthx/2)+this.columnwidth,a=this.tileheight/2,this.centers[0].set(r,a),this.centers[1].set(s,a-this.rowheight),this.centers[2].set(s,a+this.rowheight),this.centers[3].set(s+this.columnwidth,a)):(n=this.sidelengthy/2,s=this.tilewidth/2,a=n+this.rowheight,this.centers[0].set(s,n),this.centers[1].set(s-this.columnwidth,a),this.centers[2].set(s+this.columnwidth,a),this.centers[3].set(s,a+this.rowheight));for(var c=0,u=Number.MAX_VALUE,d=0;d<4;++d){var p=this.centers[d].sub(l).length2();p<u&&(u=p,c=d)}var f=this.staggerX?offsetsStaggerX:offsetsStaggerY;return o.set(h.x+f[c].x,h.y+f[c].y),pool.push(h),pool.push(l),o},e.prototype.tileToPixelCoords=function(t,e,i){var o=Math.floor(t),r=Math.floor(e),n=i||new Vector2d;return this.staggerX?(n.y=r*(this.tileheight+this.sidelengthy),this.doStaggerX(o)&&(n.y+=this.rowheight),n.x=o*this.columnwidth):(n.x=o*(this.tilewidth+this.sidelengthx),this.doStaggerY(r)&&(n.x+=this.columnwidth),n.y=r*this.rowheight),n},e.prototype.adjustPosition=function(t){"number"==typeof t.gid&&(t.y-=t.height)},e.prototype.drawTile=function(t,e,i,o){var r=o.tileset,n=this.tileToPixelCoords(e,i,pool.pull("Vector2d"));r.drawTile(t,r.tileoffset.x+n.x,r.tileoffset.y+n.y+(this.tileheight-r.tileheight),o),pool.push(n)},e.prototype.drawTileLayer=function(t,e,i){var o,r=this.pixelToTileCoords(i.pos.x,i.pos.y,pool.pull("Vector2d"));r.sub(e.pos);var n=this.tileToPixelCoords(r.x+e.pos.x,r.y+e.pos.y,pool.pull("Vector2d")),s=r.clone(),a=n.clone(),h=i.pos.y-n.y<this.sideoffsety,l=i.pos.x-n.x<this.sideoffsetx;h&&r.y--,l&&r.x--;var c=e.cols,u=e.rows;if(this.staggerX){r.x=Math.max(0,r.x),r.y=Math.max(0,r.y),n=this.tileToPixelCoords(r.x+e.pos.x,r.y+e.pos.y);for(var d=this.doStaggerX(r.x+e.pos.x);n.y<i.bottom&&r.y<u;){for(s.setV(r),a.setV(n);a.x<i.right&&s.x<c;s.x+=2)(o=e.cellAt(s.x,s.y,!1))&&o.tileset.drawTile(t,a.x,a.y,o),a.x+=this.tilewidth+this.sidelengthx;d?(r.x-=1,r.y+=1,n.x-=this.columnwidth,d=!1):(r.x+=1,n.x+=this.columnwidth,d=!0),n.y+=this.rowheight}pool.push(s),pool.push(a)}else{for(r.x=Math.max(0,r.x),r.y=Math.max(0,r.y),n=this.tileToPixelCoords(r.x+e.pos.x,r.y+e.pos.y),this.doStaggerY(r.y)&&(n.x-=this.columnwidth);n.y<i.bottom&&r.y<u;r.y++){for(s.setV(r),a.setV(n),this.doStaggerY(r.y)&&(a.x+=this.columnwidth);a.x<i.right&&s.x<c;s.x++)(o=e.cellAt(s.x,s.y,!1))&&o.tileset.drawTile(t,a.x,a.y,o),a.x+=this.tilewidth+this.sidelengthx;n.y+=this.rowheight}pool.push(s),pool.push(a)}pool.push(r),pool.push(n)},e}(TMXRenderer),TMXStaggeredRenderer=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.canRender=function(e){return"staggered"===e.orientation&&t.prototype.canRender.call(this,e)},e.prototype.pixelToTileCoords=function(t,e,i){var o=i||new Vector2d,r=t,n=e;this.staggerX?r-=this.staggerEven?this.sideoffsetx:0:n-=this.staggerEven?this.sideoffsety:0;var s=pool.pull("Vector2d",Math.floor(r/this.tilewidth),Math.floor(n/this.tileheight));this.staggerX?(s.x=2*s.x,this.staggerEven&&++s.x):(s.y=2*s.y,this.staggerEven&&++s.y);var a=pool.pull("Vector2d",r-s.x*this.tilewidth,n-s.y*this.tileheight),h=a.x*(this.tileheight/this.tilewidth);return this.sideoffsety-h>a.y&&(s=this.topLeft(s.x,s.y,s)),-this.sideoffsety+h>a.y&&(s=this.topRight(s.x,s.y,s)),this.sideoffsety+h<a.y&&(s=this.bottomLeft(s.x,s.y,s)),3*this.sideoffsety-h<a.y&&(s=this.bottomRight(s.x,s.y,s)),(o=this.tileToPixelCoords(s.x,s.y,o)).set(t-o.x,e-o.y),o.set(o.x-this.tilewidth/2,o.y*(this.tilewidth/this.tileheight)),o.div(this.tilewidth/Math.sqrt(2)).rotate(degToRad(-45)).add(s),pool.push(s),pool.push(a),o},e}(TMXHexagonalRenderer),TMXTileset=function(t){var e=0;if(this.TileProperties=[],this.imageCollection=[],this.firstgid=this.lastgid=+t.firstgid,void 0!==t.source){var i=t.source,o=getExtension(i);if(("tsx"===o||"json"===o)&&!(t=loader.getTMX(getBasename(i))))throw new Error(i+" external TSX/JSON tileset not found")}this.name=t.name,this.tilewidth=+t.tilewidth,this.tileheight=+t.tileheight,this.spacing=+t.spacing||0,this.margin=+t.margin||0,this.tileoffset=new Vector2d,this.isAnimated=!1,this.isCollection=!1,this.animations=new Map,this._lastUpdate=0;var r=t.tiles;for(e in r)if(r.hasOwnProperty(e)){if("animation"in r[e]&&(this.isAnimated=!0,this.animations.set(r[+e].animation[0].tileid,{dt:0,idx:0,frames:r[+e].animation,cur:r[+e].animation[0]})),"properties"in r[e])if(Array.isArray(r[e].properties)){var n={};for(var s in r[e].properties)n[r[e].properties[s].name]=r[e].properties[s].value;this.setTileProperty(+r[e].id+this.firstgid,n)}else this.setTileProperty(+e+this.firstgid,r[e].properties);if("image"in r[e]){var a=loader.getImage(r[e].image);if(!a)throw new Error("melonJS: '"+r[e].image+"' file for tile '"+(+e+this.firstgid)+"' not found!");this.imageCollection[+e+this.firstgid]=a}}this.isCollection=this.imageCollection.length>0;var h=t.tileoffset;h&&(this.tileoffset.x=+h.x,this.tileoffset.y=+h.y);var l=t.tileproperties;if(l)for(e in l)l.hasOwnProperty(e)&&this.setTileProperty(+e+this.firstgid,l[e]);if(!1===this.isCollection){if(this.image=loader.getImage(t.image),!this.image)throw new Error("melonJS: '"+t.image+"' file for tileset '"+this.name+"' not found!");this.texture=renderer.cache.get(this.image,{framewidth:this.tilewidth,frameheight:this.tileheight,margin:this.margin,spacing:this.spacing}),this.atlas=this.texture.getAtlas();var c=+t.columns||Math.round(this.image.width/(this.tilewidth+this.spacing)),u=Math.round(this.image.height/(this.tileheight+this.spacing));t.tilecount%c>0&&++u,this.lastgid=this.firstgid+(c*u-1||0),t.tilecount&&this.lastgid-this.firstgid+1!=+t.tilecount&&console.warn("Computed tilecount ("+(this.lastgid-this.firstgid+1)+") does not match expected tilecount ("+t.tilecount+")")}};TMXTileset.prototype.getTileImage=function(t){return this.imageCollection[t]},TMXTileset.prototype.setTileProperty=function(t,e){this.TileProperties[t]=e},TMXTileset.prototype.contains=function(t){return t>=this.firstgid&&t<=this.lastgid},TMXTileset.prototype.getViewTileId=function(t){var e=t-this.firstgid;return this.animations.has(e)?this.animations.get(e).cur.tileid:e},TMXTileset.prototype.getTileProperties=function(t){return this.TileProperties[t]},TMXTileset.prototype.update=function(t){var e=0,i=timer$1.getTime(),o=!1;return this._lastUpdate!==i&&(this._lastUpdate=i,this.animations.forEach((function(i){for(i.dt+=t,e=i.cur.duration;i.dt>=e;)i.dt-=e,i.idx=(i.idx+1)%i.frames.length,i.cur=i.frames[i.idx],e=i.cur.duration,o=!0}))),o},TMXTileset.prototype.drawTile=function(t,e,i,o){if(o.flipped&&(t.save(),t.translate(e,i),t.transform(o.currentTransform),e=i=0),!0===this.isCollection)t.drawImage(this.imageCollection[o.tileId],0,0,o.width,o.height,e,i,o.width,o.height);else{var r=this.atlas[this.getViewTileId(o.tileId)].offset;t.drawImage(this.image,r.x,r.y,this.tilewidth,this.tileheight,e,i,this.tilewidth+t.uvOffset,this.tileheight+t.uvOffset)}o.flipped&&t.restore()};var TMX_CLEAR_BIT_MASK=536870911,TMXTilesetGroup=function(){this.tilesets=[],this.length=0};TMXTilesetGroup.prototype.add=function(t){this.tilesets.push(t),this.length++},TMXTilesetGroup.prototype.getTilesetByIndex=function(t){return this.tilesets[t]},TMXTilesetGroup.prototype.getTilesetByGid=function(t){var e=-1;t&=TMX_CLEAR_BIT_MASK;for(var i=0,o=this.tilesets.length;i<o;i++){if(this.tilesets[i].contains(t))return this.tilesets[i];this.tilesets[i].firstgid===this.tilesets[i].lastgid&&t>=this.tilesets[i].firstgid&&(e=i)}if(-1!==e)return this.tilesets[e];throw new Error("no matching tileset found for gid "+t)};var TMXObject=function(t,e,i){this.points=void 0,this.name=e.name,this.x=+e.x,this.y=+e.y,this.z=+i,this.width=+e.width||0,this.height=+e.height||0,this.gid=+e.gid||null,this.tintcolor=e.tintcolor,this.type=e.type,this.type=e.type,this.rotation=degToRad(+e.rotation||0),this.id=+e.id||void 0,this.orientation=t.orientation,this.shapes=void 0,this.isEllipse=!1,this.isPolygon=!1,this.isPolyLine=!1,"number"==typeof this.gid?this.setTile(t.tilesets):void 0!==e.ellipse?this.isEllipse=!0:void 0!==e.polygon?(this.points=e.polygon,this.isPolygon=!0):void 0!==e.polyline&&(this.points=e.polyline,this.isPolyLine=!0),void 0!==e.text?(this.text=e.text,this.text.font=e.text.fontfamily||"sans-serif",this.text.size=e.text.pixelsize||16,this.text.fillStyle=e.text.color||"#000000",this.text.textAlign=e.text.halign||"left",this.text.textBaseline=e.text.valign||"top",this.text.width=this.width,this.text.height=this.height,applyTMXProperties(this.text,e)):(applyTMXProperties(this,e),this.shapes||(this.shapes=this.parseTMXShapes())),t.isEditor||t.getRenderer().adjustPosition(this)};TMXObject.prototype.setTile=function(t){var e=t.getTilesetByGid(this.gid);!1===e.isCollection&&(this.width=this.framewidth=e.tilewidth,this.height=this.frameheight=e.tileheight),this.tile=new Tile(this.x,this.y,this.gid,e)},TMXObject.prototype.parseTMXShapes=function(){var t=0,e=[];if(!0===this.isEllipse)e.push(new Ellipse(this.width/2,this.height/2,this.width,this.height).rotate(this.rotation));else if(!0===this.isPolygon)e.push(new Polygon(0,0,this.points).rotate(this.rotation));else if(!0===this.isPolyLine){var i,o,r=this.points,n=r.length-1;for(t=0;t<n;t++)i=new Vector2d(r[t].x,r[t].y),o=new Vector2d(r[t+1].x,r[t+1].y),0!==this.rotation&&(i=i.rotate(this.rotation),o=o.rotate(this.rotation)),e.push(new Line(0,0,[i,o]))}else e.push(new Polygon(0,0,[new Vector2d,new Vector2d(this.width,0),new Vector2d(this.width,this.height),new Vector2d(0,this.height)]).rotate(this.rotation));if("isometric"===this.orientation)for(t=0;t<e.length;t++)e[t].toIso();return e},TMXObject.prototype.getObjectPropertyByName=function(t){return this[t]};var TMXGroup=function(t,e,i){var o=this;this.name=e.name,this.width=e.width||0,this.height=e.height||0,this.tintcolor=e.tintcolor,this.z=i,this.objects=[];var r=void 0===e.visible||e.visible;this.opacity=!0===r?clamp(+e.opacity||1,0,1):0,applyTMXProperties(this,e),e.objects&&e.objects.forEach((function(e){e.tintcolor=o.tintcolor,o.objects.push(new TMXObject(t,e,i))})),e.layers&&e.layers.forEach((function(e){var r=new TMXLayer(t,e,t.tilewidth,t.tileheight,t.orientation,t.tilesets,i++);r.setRenderer(t.getRenderer()),o.width=Math.max(o.width,r.width),o.height=Math.max(o.height,r.height),o.objects.push(r)}))};TMXGroup.prototype.destroy=function(){this.objects=null},TMXGroup.prototype.getObjectCount=function(){return this.objects.length},TMXGroup.prototype.getObjectByIndex=function(t){return this.objects[t]};var COLLISION_GROUP="collision";function getNewDefaultRenderer(t){switch(t.orientation){case"orthogonal":return new TMXOrthogonalRenderer(t);case"isometric":return new TMXIsometricRenderer(t);case"hexagonal":return new TMXHexagonalRenderer(t);case"staggered":return new TMXStaggeredRenderer(t);default:throw new Error(t.orientation+" type TMX Tile Map not supported!")}}function readLayer(t,e,i){return new TMXLayer(t,e,t.tilewidth,t.tileheight,t.orientation,t.tilesets,i)}function readImageLayer(t,e,i){applyTMXProperties(e.properties,e);var o=pool.pull("ImageLayer",+e.offsetx||+e.x||0,+e.offsety||+e.y||0,Object.assign({name:e.name,image:e.image,ratio:pool.pull("Vector2d",+e.parallaxx||1,+e.parallaxy||1),tint:void 0!==e.tintcolor?pool.pull("Color").parseHex(e.tintcolor,!0):void 0,z:i},e.properties)),r=void 0===e.visible||e.visible;return o.setOpacity(r?+e.opacity:0),o}function readTileset(t){return new TMXTileset(t)}function readObjectGroup(t,e,i){return new TMXGroup(t,e,i)}var TMXTileMap=function(t,e){if(this.data=e,this.name=t,this.cols=+e.width,this.rows=+e.height,this.tilewidth=+e.tilewidth,this.tileheight=+e.tileheight,this.infinite=+e.infinite,this.orientation=e.orientation,this.renderorder=e.renderorder||"right-down",this.version=e.version,this.tiledversion=e.tiledversion,this.tilesets=null,void 0===this.layers&&(this.layers=[]),void 0===this.objectGroups&&(this.objectGroups=[]),this.isEditor="melon-editor"===e.editor,this.nextobjectid=+e.nextobjectid||void 0,this.hexsidelength=+e.hexsidelength,this.staggeraxis=e.staggeraxis,this.staggerindex=e.staggerindex,this.bounds=this.getRenderer().getBounds().clone(),this.width=this.bounds.width,this.height=this.bounds.height,this.backgroundcolor=e.backgroundcolor,applyTMXProperties(this,e),this.initialized=!1,1===this.infinite)throw new Error("Tiled Infinite Map not supported!")};TMXTileMap.prototype.getRenderer=function(){return void 0!==this.renderer&&this.renderer.canRender(this)||(this.renderer=getNewDefaultRenderer(this)),this.renderer},TMXTileMap.prototype.getBounds=function(){return this.bounds},TMXTileMap.prototype.readMapObjects=function(t){var e=this;if(!0!==this.initialized){var i=0;if(this.tilesets||(this.tilesets=new TMXTilesetGroup),void 0!==t.tilesets)t.tilesets.forEach((function(t){e.tilesets.add(readTileset(t))}));this.backgroundcolor&&this.layers.push(pool.pull("ColorLayer","background_color",this.backgroundcolor,i++)),this.background_image&&this.layers.push(pool.pull("ImageLayer",0,0,{name:"background_image",image:this.background_image,z:i++})),t.layers.forEach((function(t){switch(t.type){case"imagelayer":e.layers.push(readImageLayer(e,t,i++));break;case"tilelayer":e.layers.push(readLayer(e,t,i++));break;case"objectgroup":case"group":e.objectGroups.push(readObjectGroup(e,t,i++))}})),this.initialized=!0}},TMXTileMap.prototype.addTo=function(t,e,i){var o=t.autoSort,r=t.autoDepth,n=this.getBounds();function s(e,i){viewport.setBounds(0,0,Math.max(n.width,e),Math.max(n.height,i)),t.pos.set(Math.max(0,~~((e-n.width)/2)),Math.max(0,~~((i-n.height)/2)),t.pos.z)}t.autoSort=!1,t.autoDepth=!1,this.getLayers().forEach((function(e){t.addChild(e)})),this.getObjects(e).forEach((function(e){t.addChild(e)})),t.resize(this.bounds.width,this.bounds.height),t.sort(!0),!0===i&&(off(VIEWPORT_ONRESIZE,s),s(viewport.width,viewport.height),on(VIEWPORT_ONRESIZE,s,this)),t.autoSort=o,t.autoDepth=r},TMXTileMap.prototype.getObjects=function(t){var e,i=[],o=!1;this.readMapObjects(this.data);for(var r=0;r<this.objectGroups.length;r++){var n=this.objectGroups[r];o=n.name.toLowerCase().includes(COLLISION_GROUP),!1===t&&((e=new Container(0,0,this.width,this.height)).anchorPoint.set(0,0),e.name=n.name,e.pos.z=n.z,e.setOpacity(n.opacity),e.autoSort=!1,e.autoDepth=!1);for(var s=0;s<n.objects.length;s++){var a,h=n.objects[s];void 0===h.anchorPoint&&(h.anchorPoint={x:0,y:0}),void 0!==h.tintcolor&&(h.tint=pool.pull("Color"),h.tint.parseHex(h.tintcolor,!0)),h instanceof TMXLayer?a=h:"object"==typeof h.text?(void 0===h.text.anchorPoint&&(h.text.anchorPoint=h.anchorPoint),(a=!0===h.text.bitmap?pool.pull("BitmapText",h.x,h.y,h.text):pool.pull("Text",h.x,h.y,h.text)).pos.z=h.z):"object"==typeof h.tile?((a=h.tile.getRenderable(h)).body=new Body(a,h.shapes||new Rect(0,0,this.width,this.height)),a.body.setStatic(!0),a.pos.setMuted(h.x,h.y,h.z)):(void 0!==h.name&&""!==h.name?a=pool.pull(h.name,h.x,h.y,h):((a=pool.pull("Renderable",h.x,h.y,h.width,h.height)).anchorPoint.set(0,0),a.name=h.name,a.type=h.type,a.id=h.id,a.body=new Body(a,h.shapes||new Rect(0,0,a.width,a.height)),a.body.setStatic(!0),a.resize(a.body.getBounds().width,a.body.getBounds().height)),a.pos.z=h.z),o&&!h.name&&a.body&&(a.body.collisionType=collision.types.WORLD_SHAPE),!1!==t?(!0===a.isRenderable&&(a.setOpacity(a.getOpacity()*n.opacity),a.renderable instanceof Renderable&&a.renderable.setOpacity(a.renderable.getOpacity()*n.opacity)),i.push(a)):e.addChild(a)}!1===t&&e.children.length>0&&(e.autoSort=!0,e.autoDepth=!0,i.push(e))}return i},TMXTileMap.prototype.getLayers=function(){return this.readMapObjects(this.data),this.layers},TMXTileMap.prototype.destroy=function(){this.tilesets=void 0,this.layers.length=0,this.objectGroups.length=0,this.initialized=!1};var levels={},levelIdx=[],currentLevelIdx=0;function safeLoadLevel(t,e,i){e.container.reset(),reset(),levels[level.getCurrentLevelId()]&&levels[level.getCurrentLevelId()].destroy(),currentLevelIdx=levelIdx.indexOf(t),loadTMXLevel(t,e.container,e.flatten,e.setViewportBounds),emit(LEVEL_LOADED,t),e.onLoaded(t),i&&state.restart()}function loadTMXLevel(t,e,i,o){var r=levels[t];utils.resetGUID(t,r.nextobjectid),e.anchorPoint.set(0,0),r.addTo(e,i,o)}var level={add:function(t,e,i){if("tmx"===t)return null==levels[e]&&(levels[e]=new TMXTileMap(e,loader.getTMX(e)),levelIdx.push(e),i&&i(),!0);throw new Error("no level loader defined for format "+t)},load:function(t,e){if(e=Object.assign({container:world,onLoaded:onLevelLoaded,flatten:mergeGroup,setViewportBounds:!0},e||{}),void 0===levels[t])throw new Error("level "+t+" not found");if(!(levels[t]instanceof TMXTileMap))throw new Error("no level loader defined");return state.isRunning()?(state.stop(),utils.function.defer(safeLoadLevel,this,t,e,!0)):safeLoadLevel(t,e),!0},getCurrentLevelId:function(){return levelIdx[currentLevelIdx]},getCurrentLevel:function(){return levels[this.getCurrentLevelId()]},reload:function(t){return this.load(this.getCurrentLevelId(),t)},next:function(t){return currentLevelIdx+1<levelIdx.length&&this.load(levelIdx[currentLevelIdx+1],t)},previous:function(t){return currentLevelIdx-1>=0&&this.load(levelIdx[currentLevelIdx-1],t)},levelCount:function(){return levelIdx.length}},imgList={},tmxList={},binList={},jsonList={},baseURL={},resourceCount=0,loadCount=0,timerId$1=0;function checkLoadStatus(t){if(loadCount===resourceCount){if(!t&&!loader.onload)throw new Error("no load callback defined");clearTimeout(timerId$1);var e=t||loader.onload;setTimeout((function(){e(),emit(LOADER_COMPLETE)}),300)}else timerId$1=setTimeout((function(){checkLoadStatus(t)}),100)}function preloadImage(t,e,i){imgList[t.name]=new Image,imgList[t.name].onload=e,imgList[t.name].onerror=i,"string"==typeof loader.crossOrigin&&(imgList[t.name].crossOrigin=loader.crossOrigin),imgList[t.name].src=t.src+loader.nocache}function preloadFontFace(t,e,i){var o=new FontFace(t.name,t.src);o.load().then((function(){document.fonts.add(o),document.body.style.fontFamily=t.name,e()}),(function(){i(t.name)}))}function preloadTMX(t,e,i){function o(e){tmxList[t.name]=e,"tmx"===t.type&&level.add(t.type,t.name)}if(t.data)return o(t.data),void e();var r=new XMLHttpRequest,n=getExtension(t.src);r.overrideMimeType&&("json"===n?r.overrideMimeType("application/json"):r.overrideMimeType("text/xml")),r.open("GET",t.src+loader.nocache,!0),r.withCredentials=loader.withCredentials,r.ontimeout=i,r.onreadystatechange=function(){if(4===r.readyState)if(200===r.status||0===r.status&&r.responseText){var s=null;switch(n){case"xml":case"tmx":case"tsx":if(device$1.ua.match(/msie/i)||!r.responseXML){if(!window.DOMParser)throw new Error("XML file format loading not supported, use the JSON file format instead");s=(new DOMParser).parseFromString(r.responseText,"text/xml")}else s=r.responseXML;var a=parse(s);switch(n){case"tmx":s=a.map;break;case"tsx":s=a.tilesets[0]}break;case"json":s=JSON.parse(r.responseText);break;default:throw new Error("TMX file format "+n+"not supported !")}o(s),e()}else i(t.name)},r.send()}function preloadJSON(t,e,i){var o=new XMLHttpRequest;o.overrideMimeType&&o.overrideMimeType("application/json"),o.open("GET",t.src+loader.nocache,!0),o.withCredentials=loader.withCredentials,o.ontimeout=i,o.onreadystatechange=function(){4===o.readyState&&(200===o.status||0===o.status&&o.responseText?(jsonList[t.name]=JSON.parse(o.responseText),e()):i(t.name))},o.send()}function preloadBinary(t,e,i){var o=new XMLHttpRequest;o.open("GET",t.src+loader.nocache,!0),o.withCredentials=loader.withCredentials,o.responseType="arraybuffer",o.onerror=i,o.onload=function(){var i=o.response;if(i){for(var r=new Uint8Array(i),n=[],s=0;s<r.byteLength;s++)n[s]=String.fromCharCode(r[s]);binList[t.name]=n.join(""),e()}},o.send()}function preloadJavascript(t,e,i){var o=document.createElement("script");o.src=t.src,o.type="text/javascript","string"==typeof loader.crossOrigin&&(o.crossOrigin=loader.crossOrigin),o.defer=!0,o.onload=function(){e()},o.onerror=function(){i(t.name)},document.getElementsByTagName("body")[0].appendChild(o)}var loader={nocache:"",onload:void 0,onProgress:void 0,crossOrigin:void 0,withCredentials:!1,onResourceLoaded:function(t){var e=++loadCount/resourceCount;this.onProgress&&this.onProgress(e,t),emit(LOADER_PROGRESS,e,t)},onLoadingError:function(t){throw new Error("Failed loading resource "+t.src)},setNocache:function(t){this.nocache=t?"?"+~~(1e7*Math.random()):""},setBaseURL:function(t,e){"*"!==t?baseURL[t]=e:(baseURL.audio=e,baseURL.binary=e,baseURL.image=e,baseURL.json=e,baseURL.js=e,baseURL.tmx=e,baseURL.tsx=e)},preload:function(t,e,i){void 0===i&&(i=!0);for(var o=0;o<t.length;o++)resourceCount+=this.load(t[o],this.onResourceLoaded.bind(this,t[o]),this.onLoadingError.bind(this,t[o]));void 0!==e&&(this.onload=e),!0===i&&state.change(state.LOADING),checkLoadStatus(e)},load:function(t,e,i){switch(void 0!==baseURL[t.type]&&(t.src=baseURL[t.type]+t.src),t.type){case"binary":return preloadBinary.call(this,t,e,i),1;case"image":return preloadImage.call(this,t,e,i),1;case"json":return preloadJSON.call(this,t,e,i),1;case"js":return preloadJavascript.call(this,t,e,i),1;case"tmx":case"tsx":return preloadTMX.call(this,t,e,i),1;case"audio":return load(t,!!t.stream,e,i),1;case"fontface":return preloadFontFace.call(this,t,e,i),1;default:throw new Error("load : unknown or invalid resource type : "+t.type)}},unload:function(t){switch(t.type){case"binary":return t.name in binList&&(delete binList[t.name],!0);case"image":return t.name in imgList&&(delete imgList[t.name],!0);case"json":return t.name in jsonList&&(delete jsonList[t.name],!0);case"js":case"fontface":return!0;case"tmx":case"tsx":return t.name in tmxList&&(delete tmxList[t.name],!0);case"audio":return unload(t.name);default:throw new Error("unload : unknown or invalid resource type : "+t.type)}},unloadAll:function(){var t;for(t in binList)binList.hasOwnProperty(t)&&this.unload({name:t,type:"binary"});for(t in imgList)imgList.hasOwnProperty(t)&&this.unload({name:t,type:"image"});for(t in tmxList)tmxList.hasOwnProperty(t)&&this.unload({name:t,type:"tmx"});for(t in jsonList)jsonList.hasOwnProperty(t)&&this.unload({name:t,type:"json"});unloadAll()},getTMX:function(t){return(t=""+t)in tmxList?tmxList[t]:null},getBinary:function(t){return(t=""+t)in binList?binList[t]:null},getImage:function(t){return(t=getBasename(""+t))in imgList?imgList[t]:null},getJSON:function(t){return(t=""+t)in jsonList?jsonList[t]:null}},audioTracks={},current_track_id=null,retry_counter=0,audioExts=[],soundLoadError=function(t,e){if(retry_counter++>3)throw new Error("melonJS: failed loading "+t);audioTracks[t].load()},stopOnAudioError=!0;function init$1(t){return void 0===t&&(t="mp3"),audioExts=t.split(","),!howler.Howler.noAudio}function hasFormat(t){return hasAudio()&&howler.Howler.codecs(t)}function hasAudio(){return!howler.Howler.noAudio}function enable(){unmuteAll()}function disable(){muteAll()}function load(t,e,i,o){var r=[];if(0===audioExts.length)throw new Error("target audio extension(s) should be set through me.audio.init() before calling the preloader.");for(var n=0;n<audioExts.length;n++)r.push(t.src+t.name+"."+audioExts[n]+loader.nocache);return audioTracks[t.name]=new howler.Howl({src:r,volume:howler.Howler.volume(),html5:!0===e,xhrWithCredentials:loader.withCredentials,onloaderror:function(){soundLoadError.call(this,t.name,o)},onload:function(){retry_counter=0,i&&i()}}),1}function play(t,e,i,o){void 0===e&&(e=!1);var r=audioTracks[t];if(r&&void 0!==r){var n=r.play();return"boolean"==typeof e&&r.loop(e,n),r.volume("number"==typeof o?clamp(o,0,1):howler.Howler.volume(),n),"function"==typeof i&&(!0===e?r.on("end",i,n):r.once("end",i,n)),n}throw new Error("audio clip "+t+" does not exist")}function fade(t,e,i,o,r){var n=audioTracks[t];if(!n||void 0===n)throw new Error("audio clip "+t+" does not exist");n.fade(e,i,o,r)}function seek(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];var o=audioTracks[t];if(o&&void 0!==o)return o.seek.apply(o,e);throw new Error("audio clip "+t+" does not exist")}function rate(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];var o=audioTracks[t];if(o&&void 0!==o)return o.rate.apply(o,e);throw new Error("audio clip "+t+" does not exist")}function stop(t,e){if(void 0!==t){var i=audioTracks[t];if(!i||void 0===i)throw new Error("audio clip "+t+" does not exist");i.stop(e),i.off("end",void 0,e)}else howler.Howler.stop()}function pause(t,e){var i=audioTracks[t];if(!i||void 0===i)throw new Error("audio clip "+t+" does not exist");i.pause(e)}function resume(t,e){var i=audioTracks[t];if(!i||void 0===i)throw new Error("audio clip "+t+" does not exist");i.play(e)}function playTrack(t,e){return play(current_track_id=t,!0,null,e)}function stopTrack(){null!==current_track_id&&(audioTracks[current_track_id].stop(),current_track_id=null)}function pauseTrack(){null!==current_track_id&&audioTracks[current_track_id].pause()}function resumeTrack(){null!==current_track_id&&audioTracks[current_track_id].play()}function getCurrentTrack(){return current_track_id}function setVolume(t){howler.Howler.volume(t)}function getVolume(){return howler.Howler.volume()}function mute(t,e,i){i=void 0===i||!!i;var o=audioTracks[t];if(!o||void 0===o)throw new Error("audio clip "+t+" does not exist");o.mute(i,e)}function unmute(t,e){mute(t,e,!1)}function muteAll(){howler.Howler.mute(!0)}function unmuteAll(){howler.Howler.mute(!1)}function muted(){return howler.Howler._muted}function unload(t){return t in audioTracks&&(audioTracks[t].unload(),delete audioTracks[t],!0)}function unloadAll(){for(var t in audioTracks)audioTracks.hasOwnProperty(t)&&unload(t)}var audio=Object.freeze({__proto__:null,stopOnAudioError:stopOnAudioError,init:init$1,hasFormat:hasFormat,hasAudio:hasAudio,enable:enable,disable:disable,load:load,play:play,fade:fade,seek:seek,rate:rate,stop:stop,pause:pause,resume:resume,playTrack:playTrack,stopTrack:stopTrack,pauseTrack:pauseTrack,resumeTrack:resumeTrack,getCurrentTrack:getCurrentTrack,setVolume:setVolume,getVolume:getVolume,mute:mute,unmute:unmute,muteAll:muteAll,unmuteAll:unmuteAll,muted:muted,unload:unload,unloadAll:unloadAll}),data={};function isReserved(t){return"add"===t||"remove"===t}on(BOOT,(function(){if(!0===device$1.localStorage){var t=localStorage.getItem("me.save");if("string"==typeof t&&t.length>0)(JSON.parse(t)||[]).forEach((function(t){data[t]=JSON.parse(localStorage.getItem("me.save."+t))}))}}));var save={add:function(t){var e=save;Object.keys(t).forEach((function(i){var o;isReserved(i)||(o=i,Object.defineProperty(e,o,{configurable:!0,enumerable:!0,get:function(){return data[o]},set:function(t){data[o]=t,!0===device$1.localStorage&&localStorage.setItem("me.save."+o,JSON.stringify(t))}}),i in data||(e[i]=t[i]))})),!0===device$1.localStorage&&localStorage.setItem("me.save",JSON.stringify(Object.keys(data)))},remove:function(t){isReserved(t)||void 0!==data[t]&&(delete data[t],!0===device$1.localStorage&&(localStorage.removeItem("me.save."+t),localStorage.setItem("me.save",JSON.stringify(Object.keys(data)))))}},accelInitialized=!1,deviceOrientationInitialized=!1,swipeEnabled=!0;function _disableSwipeFn(t){return t.preventDefault(),"function"==typeof window.scroll&&window.scroll(0,0),!1}var readyBound=!1,isReady=!1,readyList=[];function _domReady(){if(!isReady){if(!document.body)return setTimeout(_domReady,13);for(document.removeEventListener&&document.removeEventListener("DOMContentLoaded",this._domReady,!1),window.removeEventListener("load",_domReady,!1);readyList.length;)readyList.shift().call(window,[]);isReady=!0}}var _domRect={left:0,top:0,x:0,y:0,width:0,height:0,right:0,bottom:0};function _detectDevice(){device.iOS=/iPhone|iPad|iPod/i.test(device.ua),device.android=/Android/i.test(device.ua),device.android2=/Android 2/i.test(device.ua),device.linux=/Linux/i.test(device.ua),device.chromeOS=/CrOS/.test(device.ua),device.wp=/Windows Phone/i.test(device.ua),device.BlackBerry=/BlackBerry/i.test(device.ua),device.Kindle=/Kindle|Silk.*Mobile Safari/i.test(device.ua),device.isMobile=/Mobi/i.test(device.ua)||device.iOS||device.android||device.wp||device.BlackBerry||device.Kindle||!1,device.ejecta=void 0!==window.ejecta,device.isWeixin=/MicroMessenger/i.test(device.ua)}function _checkCapabilities(){_detectDevice(),device.isMobile&&device.enableSwipe(!1),device.TouchEvent=!!("ontouchstart"in window),device.PointerEvent=!!window.PointerEvent,window.gesture=prefixed("gesture"),device.touch=device.TouchEvent||device.PointerEvent,device.maxTouchPoints=device.touch?device.PointerEvent?navigator.maxTouchPoints||1:10:1,device.wheel="onwheel"in document.createElement("div"),device.hasPointerLockSupport=prefixed("pointerLockElement",document),device.hasPointerLockSupport&&(document.exitPointerLock=prefixed("exitPointerLock",document)),device.hasDeviceOrientation=!!window.DeviceOrientationEvent,device.hasAccelerometer=!!window.DeviceMotionEvent,device.ScreenOrientation="undefined"!=typeof screen&&void 0!==screen.orientation,device.hasFullscreenSupport=prefixed("fullscreenEnabled",document)||document.mozFullScreenEnabled,document.exitFullscreen=prefixed("cancelFullScreen",document)||prefixed("exitFullscreen",document),navigator.vibrate=prefixed("vibrate",navigator),device.hasWebAudio=!(!window.AudioContext&&!window.webkitAudioContext);try{device.localStorage=!!window.localStorage}catch(t){device.localStorage=!1}try{device.OffscreenCanvas=void 0!==window.OffscreenCanvas&&null!==new OffscreenCanvas(0,0).getContext("2d")}catch(t){device.OffscreenCanvas=!1}var t,e;window.addEventListener("blur",(function(){device.stopOnBlur&&state.stop(!0),device.pauseOnBlur&&state.pause(!0)}),!1),window.addEventListener("focus",(function(){device.stopOnBlur&&state.restart(!0),device.resumeOnFocus&&state.resume(!0),device.autoFocus&&device.focus()}),!1),void 0!==document.hidden?(t="hidden",e="visibilitychange"):void 0!==document.mozHidden?(t="mozHidden",e="mozvisibilitychange"):void 0!==document.msHidden?(t="msHidden",e="msvisibilitychange"):void 0!==document.webkitHidden&&(t="webkitHidden",e="webkitvisibilitychange"),"string"==typeof e&&document.addEventListener(e,(function(){document[t]?(device.stopOnBlur&&state.stop(!0),device.pauseOnBlur&&state.pause(!0)):(device.stopOnBlur&&state.restart(!0),device.resumeOnFocus&&state.resume(!0))}),!1)}on(BOOT,(function(){_checkCapabilities()}));var device={ua:navigator.userAgent,localStorage:!1,hasAccelerometer:!1,hasDeviceOrientation:!1,ScreenOrientation:!1,hasFullscreenSupport:!1,hasPointerLockSupport:!1,hasWebAudio:!1,nativeBase64:"function"==typeof window.atob,maxTouchPoints:1,touch:!1,wheel:!1,isMobile:!1,iOS:!1,android:!1,android2:!1,linux:!1,ejecta:!1,isWeixin:!1,chromeOS:!1,wp:!1,BlackBerry:!1,Kindle:!1,accelerationX:0,accelerationY:0,accelerationZ:0,gamma:0,beta:0,alpha:0,language:navigator.language||navigator.browserLanguage||navigator.userLanguage||"en",pauseOnBlur:!0,resumeOnFocus:!0,autoFocus:!0,stopOnBlur:!1,OffscreenCanvas:!1,onReady:function(t){isReady?t.call(window,[]):(readyList.push(t),readyBound||("complete"===document.readyState?window.setTimeout(_domReady,0):(document.addEventListener&&document.addEventListener("DOMContentLoaded",_domReady,!1),window.addEventListener("load",_domReady,!1)),readyBound=!0))},enableSwipe:function(t){!1!==t?!1===swipeEnabled&&(window.document.removeEventListener("touchmove",_disableSwipeFn,!1),swipeEnabled=!0):!0===swipeEnabled&&(window.document.addEventListener("touchmove",_disableSwipeFn,!1),swipeEnabled=!1)},requestFullscreen:function(t){this.hasFullscreenSupport&&((t=t||getParent()).requestFullscreen=prefixed("requestFullscreen",t)||t.mozRequestFullScreen,t.requestFullscreen())},exitFullscreen:function(){this.hasFullscreenSupport&&document.exitFullscreen()},getScreenOrientation:function(){var t="portrait",e="landscape",i=window.screen;if(!0===this.ScreenOrientation){var o=prefixed("orientation",i);if(void 0!==o&&"string"==typeof o.type)return o.type;if("string"==typeof o)return o}return"number"==typeof window.orientation?90===Math.abs(window.orientation)?e:t:window.outerWidth>window.outerHeight?e:t},lockOrientation:function(t){var e=window.screen;if(void 0!==e){var i=prefixed("lockOrientation",e);if(void 0!==i)return i(t)}return!1},unlockOrientation:function(t){var e=window.screen;if(void 0!==e){var i=prefixed("unlockOrientation",e);if(void 0!==i)return i(t)}return!1},isPortrait:function(){return this.getScreenOrientation().includes("portrait")},isLandscape:function(){return this.getScreenOrientation().includes("landscape")},getStorage:function(t){if(void 0===t&&(t="local"),"local"===t)return save;throw new Error("storage type "+t+" not supported")},getParentElement:function(t){var e=this.getElement(t);return null!==e.parentNode&&(e=e.parentNode),e},getElement:function(t){var e=null;return"undefined"!==t&&("string"==typeof t?e=document.getElementById(t):"object"==typeof t&&t.nodeType===Node.ELEMENT_NODE&&(e=t)),e||(e=document.body),e},getElementBounds:function(t){return"object"==typeof t&&t!==document.body&&void 0!==t.getBoundingClientRect?t.getBoundingClientRect():(_domRect.width=_domRect.right=window.innerWidth,_domRect.height=_domRect.bottom=window.innerHeight,_domRect)},getParentBounds:function(t){return this.getElementBounds(this.getParentElement(t))},isWebGLSupported:function(t){var e=!1;try{var i=document.createElement("canvas"),o={stencil:!0,failIfMajorPerformanceCaveat:t.failIfMajorPerformanceCaveat};e=!(!window.WebGLRenderingContext||!i.getContext("webgl",o)&&!i.getContext("experimental-webgl",o))}catch(t){e=!1}return e},getMaxShaderPrecision:function(t){return t.getShaderPrecisionFormat(t.VERTEX_SHADER,t.HIGH_FLOAT).precision>0&&t.getShaderPrecisionFormat(t.FRAGMENT_SHADER,t.HIGH_FLOAT).precision>0?"highp":t.getShaderPrecisionFormat(t.VERTEX_SHADER,t.MEDIUM_FLOAT).precision>0&&t.getShaderPrecisionFormat(t.FRAGMENT_SHADER,t.MEDIUM_FLOAT).precision>0?"mediump":"lowp"},focus:function(){"function"==typeof window.focus&&window.focus()},onDeviceMotion:function(t){this.accelerationX=t.accelerationIncludingGravity.x,this.accelerationY=t.accelerationIncludingGravity.y,this.accelerationZ=t.accelerationIncludingGravity.z},onDeviceRotate:function(t){this.gamma=t.gamma,this.beta=t.beta,this.alpha=t.alpha},turnOnPointerLock:function(){if(this.hasPointerLockSupport){var t=getParent();if(this.ua.match(/Firefox/i)){var e=function(){(prefixed("fullscreenElement",document)||document.mozFullScreenElement)===t&&(document.removeEventListener("fullscreenchange",e),document.removeEventListener("mozfullscreenchange",e),t.requestPointerLock=prefixed("requestPointerLock",t),t.requestPointerLock())};document.addEventListener("fullscreenchange",e,!1),document.addEventListener("mozfullscreenchange",e,!1),this.requestFullscreen()}else t.requestPointerLock()}},turnOffPointerLock:function(){this.hasPointerLockSupport&&document.exitPointerLock()},watchAccelerometer:function(){var t=this;return this.hasAccelerometer&&!accelInitialized&&(DeviceOrientationEvent&&"function"==typeof DeviceOrientationEvent.requestPermission?DeviceOrientationEvent.requestPermission().then((function(e){"granted"===e&&(window.addEventListener("devicemotion",t.onDeviceMotion,!1),accelInitialized=!0)})).catch(console.error):(window.addEventListener("devicemotion",this.onDeviceMotion,!1),accelInitialized=!0)),accelInitialized},unwatchAccelerometer:function(){accelInitialized&&(window.removeEventListener("devicemotion",this.onDeviceMotion,!1),accelInitialized=!1)},watchDeviceOrientation:function(){var t=this;return this.hasDeviceOrientation&&!deviceOrientationInitialized&&("function"==typeof DeviceOrientationEvent.requestPermission?DeviceOrientationEvent.requestPermission().then((function(e){"granted"===e&&(window.addEventListener("deviceorientation",t.onDeviceRotate,!1),deviceOrientationInitialized=!0)})).catch(console.error):(window.addEventListener("deviceorientation",this.onDeviceRotate,!1),deviceOrientationInitialized=!0)),deviceOrientationInitialized},unwatchDeviceOrientation:function(){deviceOrientationInitialized&&(window.removeEventListener("deviceorientation",this.onDeviceRotate,!1),deviceOrientationInitialized=!1)},vibrate:function(t){navigator.vibrate&&navigator.vibrate(t)}};Object.defineProperty(device,"devicePixelRatio",{get:function(){return window.devicePixelRatio||1}}),Object.defineProperty(device,"isFullscreen",{get:function(){return!!this.hasFullscreenSupport&&!(!prefixed("fullscreenElement",document)&&!document.mozFullScreenElement)}}),Object.defineProperty(device,"sound",{get:function(){return hasAudio()}});var device$1=device;function extractUniforms(t,e){var i,o={},r=/uniform\s+(\w+)\s+(\w+)/g,n={},s={},a={};return[e.vertex,e.fragment].forEach((function(t){for(;i=r.exec(t);)n[i[2]]=i[1]})),Object.keys(n).forEach((function(i){var o=n[i];a[i]=t.getUniformLocation(e.program,i),s[i]={get:function(t){return function(){return a[t]}}(i),set:function(e,i,o){return 0===i.indexOf("mat")?function(i){t[o](a[e],!1,i)}:function(i){var r=o;i.length&&"v"!==o.substr(-1)&&(r+="v"),t[r](a[e],i)}}(i,o,"uniform"+fnHash[o])}})),Object.defineProperties(o,s),o}function extractAttributes(t,e){for(var i,o={},r=/attribute\s+\w+\s+(\w+)/g,n=0;i=r.exec(e.vertex);)o[i[1]]=n++;return o}function compileShader(t,e,i){var o=t.createShader(e);if(t.shaderSource(o,i),t.compileShader(o),!t.getShaderParameter(o,t.COMPILE_STATUS))throw new Error(t.getShaderInfoLog(o));return o}function compileProgram(t,e,i,o){var r=compileShader(t,t.VERTEX_SHADER,e),n=compileShader(t,t.FRAGMENT_SHADER,i),s=t.createProgram();for(var a in t.attachShader(s,r),t.attachShader(s,n),o)t.bindAttribLocation(s,o[a],a);if(t.linkProgram(s),!t.getProgramParameter(s,t.LINK_STATUS)){var h="Error initializing Shader "+this+"\ngl.VALIDATE_STATUS: "+t.getProgramParameter(s,t.VALIDATE_STATUS)+"\ngl.getError()"+t.getError()+"\ngl.getProgramInfoLog()"+t.getProgramInfoLog(s);throw t.deleteProgram(s),s=null,new Error(h)}return t.useProgram(s),t.deleteShader(r),t.deleteShader(n),s}var fnHash={bool:"1i",int:"1i",float:"1f",vec2:"2fv",vec3:"3fv",vec4:"4fv",bvec2:"2iv",bvec3:"3iv",bvec4:"4iv",ivec2:"2iv",ivec3:"3iv",ivec4:"4iv",mat2:"Matrix2fv",mat3:"Matrix3fv",mat4:"Matrix4fv",sampler2D:"1i"};function setPrecision(t,e){return"precision"!==t.substring(0,9)?"precision "+e+" float;"+t:t}function minify(t){return t=(t=(t=(t=t.replace(/\/\*[\s\S]*?\*\/|([^\\:]|^)\/\/.*$/gm,"$1")).replace(/(\\n\s+)|(\s+\\n)/g,"")).replace(/(\\r|\\n)+/g,"")).replace(/\s*([;,[\](){}\\\/\-+*|^&!=<>?~%])\s*/g,"$1")}var GLShader=function(t,e,i,o){return this.gl=t,this.vertex=setPrecision(minify(e),o||device$1.getMaxShaderPrecision(this.gl)),this.fragment=setPrecision(minify(i),o||device$1.getMaxShaderPrecision(this.gl)),this.attributes=extractAttributes(this.gl,this),this.program=compileProgram(this.gl,this.vertex,this.fragment,this.attributes),this.uniforms=extractUniforms(this.gl,this),on(WEBGL_ONCONTEXT_LOST,this.destroy,this),this};GLShader.prototype.bind=function(){this.gl.useProgram(this.program)},GLShader.prototype.getAttribLocation=function(t){var e=this.attributes[t];return void 0!==e?e:-1},GLShader.prototype.setUniform=function(t,e){var i=this.uniforms;if(void 0===i[t])throw new Error("undefined ("+t+") uniform for shader "+this);"object"==typeof e&&"function"==typeof e.toArray?i[t]=e.toArray():i[t]=e},GLShader.prototype.destroy=function(){this.uniforms=null,this.attributes=null,this.gl.deleteProgram(this.program),this.vertex=null,this.fragment=null};var VertexArrayBuffer=function(t,e){return this.vertexSize=t,this.quadSize=e,this.maxVertex=256,this.vertexCount=0,this.buffer=new ArrayBuffer(this.maxVertex*this.vertexSize*this.quadSize),this.bufferF32=new Float32Array(this.buffer),this.bufferU32=new Uint32Array(this.buffer),this};VertexArrayBuffer.prototype.clear=function(){this.vertexCount=0},VertexArrayBuffer.prototype.isFull=function(t){return void 0===t&&(t=0),this.vertexCount+t>=this.maxVertex},VertexArrayBuffer.prototype.resize=function(){this.maxVertex<<=1;var t=this.bufferF32;return this.buffer=new ArrayBuffer(this.maxVertex*this.vertexSize*this.quadSize),this.bufferF32=new Float32Array(this.buffer),this.bufferU32=new Uint32Array(this.buffer),this.bufferF32.set(t),this},VertexArrayBuffer.prototype.push=function(t,e,i,o,r){var n=this.vertexCount*this.vertexSize;return this.vertexCount>=this.maxVertex&&this.resize(),this.bufferF32[n+0]=t,this.bufferF32[n+1]=e,void 0!==i&&(this.bufferF32[n+2]=i,this.bufferF32[n+3]=o),void 0!==r&&(this.bufferU32[n+4]=r),this.vertexCount++,this},VertexArrayBuffer.prototype.toFloat32=function(t,e){return void 0!==e?this.bufferF32.subarray(t,e):this.bufferF32},VertexArrayBuffer.prototype.toUint32=function(t,e){return void 0!==e?this.bufferU32.subarray(t,e):this.bufferU32},VertexArrayBuffer.prototype.length=function(){return this.vertexCount},VertexArrayBuffer.prototype.isEmpty=function(){return 0===this.vertexCount};var primitiveVertex="// Current vertex point\nattribute vec2 aVertex;\n\n// Projection matrix\nuniform mat4 uProjectionMatrix;\n\n// Vertex color\nuniform vec4 uColor;\n\n// Fragment color\nvarying vec4 vColor;\n\nvoid main(void) {\n // Transform the vertex position by the projection matrix\n gl_Position = uProjectionMatrix * vec4(aVertex, 0.0, 1.0);\n // Pass the remaining attributes to the fragment shader\n vColor = vec4(uColor.rgb * uColor.a, uColor.a);\n}\n",primitiveFragment="varying vec4 vColor;\n\nvoid main(void) {\n gl_FragColor = vColor;\n}\n",quadVertex="attribute vec2 aVertex;\nattribute vec2 aRegion;\nattribute vec4 aColor;\n\nuniform mat4 uProjectionMatrix;\n\nvarying vec2 vRegion;\nvarying vec4 vColor;\n\nvoid main(void) {\n // Transform the vertex position by the projection matrix\n gl_Position = uProjectionMatrix * vec4(aVertex, 0.0, 1.0);\n // Pass the remaining attributes to the fragment shader\n vColor = vec4(aColor.bgr * aColor.a, aColor.a);\n vRegion = aRegion;\n}\n",quadFragment="uniform sampler2D uSampler;\nvarying vec4 vColor;\nvarying vec2 vRegion;\n\nvoid main(void) {\n gl_FragColor = texture2D(uSampler, vRegion) * vColor;\n}\n",V_ARRAY=[new Vector2d,new Vector2d,new Vector2d,new Vector2d],VERTEX_SIZE=2,REGION_SIZE=2,COLOR_SIZE=4,ELEMENT_SIZE=VERTEX_SIZE+REGION_SIZE+COLOR_SIZE,ELEMENT_OFFSET=ELEMENT_SIZE*Float32Array.BYTES_PER_ELEMENT,ELEMENTS_PER_QUAD=4,INDICES_PER_QUAD=6,MAX_LENGTH=16e3;function createIB(){for(var t=[0,1,2,2,1,3],e=new Array(MAX_LENGTH*INDICES_PER_QUAD),i=0;i<e.length;i++)e[i]=t[i%INDICES_PER_QUAD]+~~(i/INDICES_PER_QUAD)*ELEMENTS_PER_QUAD;return new Uint16Array(e)}var WebGLCompositor=function(t){this.init(t)};WebGLCompositor.prototype.init=function(t){var e=this,i=t.gl;this.currentTextureUnit=-1,this.boundTextures=[],this.renderer=t,this.gl=t.gl,this.color=t.currentColor,this.viewMatrix=t.currentTransform,this.activeShader=null,this.mode=i.TRIANGLES,this.attributes=[],this.primitiveShader=new GLShader(this.gl,primitiveVertex,primitiveFragment),this.quadShader=new GLShader(this.gl,quadVertex,quadFragment),this.addAttribute("aVertex",2,i.FLOAT,!1,0*Float32Array.BYTES_PER_ELEMENT),this.addAttribute("aRegion",2,i.FLOAT,!1,2*Float32Array.BYTES_PER_ELEMENT),this.addAttribute("aColor",4,i.UNSIGNED_BYTE,!0,4*Float32Array.BYTES_PER_ELEMENT),i.bindBuffer(i.ARRAY_BUFFER,i.createBuffer()),i.bufferData(i.ARRAY_BUFFER,MAX_LENGTH*ELEMENT_OFFSET*ELEMENTS_PER_QUAD,i.STREAM_DRAW),this.vertexBuffer=new VertexArrayBuffer(ELEMENT_SIZE,ELEMENTS_PER_QUAD),i.bindBuffer(i.ELEMENT_ARRAY_BUFFER,i.createBuffer()),i.bufferData(i.ELEMENT_ARRAY_BUFFER,createIB(),i.STATIC_DRAW),on(CANVAS_ONRESIZE,(function(t,i){e.flush(),e.setViewport(0,0,t,i)})),this.reset()},WebGLCompositor.prototype.reset=function(){this.gl=this.renderer.gl,this.flush(),this.setViewport(0,0,this.renderer.getScreenCanvas().width,this.renderer.getScreenCanvas().height),this.clearColor(0,0,0,0);for(var t=0;t<this.renderer.maxTextures;t++){var e=this.boundTextures[t];null!==e&&this.gl.deleteTexture(e),this.boundTextures[t]=null}this.currentTextureUnit=-1,this.useShader(this.quadShader)},WebGLCompositor.prototype.addAttribute=function(t,e,i,o,r){this.attributes.push({name:t,size:e,type:i,normalized:o,offset:r})},WebGLCompositor.prototype.setViewport=function(t,e,i,o){this.gl.viewport(t,e,i,o)},WebGLCompositor.prototype.createTexture2D=function(t,e,i,o,r,n,s,a,h){void 0===o&&(o="no-repeat"),void 0===a&&(a=!0),void 0===h&&(h=!0);var l=this.gl,c=isPowerOfTwo(r||e.width)&&isPowerOfTwo(n||e.height),u=l.createTexture(),d=0===o.search(/^repeat(-x)?$/)&&(c||this.renderer.WebGLVersion>1)?l.REPEAT:l.CLAMP_TO_EDGE,p=0===o.search(/^repeat(-y)?$/)&&(c||this.renderer.WebGLVersion>1)?l.REPEAT:l.CLAMP_TO_EDGE;return this.bindTexture2D(u,t),l.texParameteri(l.TEXTURE_2D,l.TEXTURE_WRAP_S,d),l.texParameteri(l.TEXTURE_2D,l.TEXTURE_WRAP_T,p),l.texParameteri(l.TEXTURE_2D,l.TEXTURE_MAG_FILTER,i),l.texParameteri(l.TEXTURE_2D,l.TEXTURE_MIN_FILTER,i),l.pixelStorei(l.UNPACK_PREMULTIPLY_ALPHA_WEBGL,a),r||n||s?l.texImage2D(l.TEXTURE_2D,0,l.RGBA,r,n,s,l.RGBA,l.UNSIGNED_BYTE,e):l.texImage2D(l.TEXTURE_2D,0,l.RGBA,l.RGBA,l.UNSIGNED_BYTE,e),c&&!1!==h&&l.generateMipmap(l.TEXTURE_2D),u},WebGLCompositor.prototype.bindTexture2D=function(t,e){var i=this.gl;t!==this.boundTextures[e]?(this.flush(),this.currentTextureUnit!==e&&(this.currentTextureUnit=e,i.activeTexture(i.TEXTURE0+e)),i.bindTexture(i.TEXTURE_2D,t),this.boundTextures[e]=t):this.currentTextureUnit!==e&&(this.flush(),this.currentTextureUnit=e,i.activeTexture(i.TEXTURE0+e))},WebGLCompositor.prototype.unbindTexture2D=function(t){var e=this.renderer.cache.getUnit(t);this.boundTextures[e]=null},WebGLCompositor.prototype.uploadTexture=function(t,e,i,o,r){var n=this.renderer.cache.getUnit(t),s=this.boundTextures[n];return null===s||r?this.createTexture2D(n,t.getTexture(),this.renderer.settings.antiAlias?this.gl.LINEAR:this.gl.NEAREST,t.repeat,e,i,o,t.premultipliedAlpha):this.bindTexture2D(s,n),this.currentTextureUnit},WebGLCompositor.prototype.useShader=function(t){if(this.activeShader!==t){this.flush(),this.activeShader=t,this.activeShader.bind(),this.activeShader.setUniform("uProjectionMatrix",this.renderer.projectionMatrix);for(var e=0;e<this.attributes.length;++e){var i=this.gl,o=this.attributes[e],r=this.activeShader.getAttribLocation(o.name);-1!==r?(i.enableVertexAttribArray(r),i.vertexAttribPointer(r,o.size,o.type,o.normalized,ELEMENT_OFFSET,o.offset)):i.disableVertexAttribArray(e)}}},WebGLCompositor.prototype.addQuad=function(t,e,i,o,r,n,s,a,h,l){if(!(this.color.alpha<1/255)){this.useShader(this.quadShader),this.vertexBuffer.isFull(4)&&this.flush();var c=this.uploadTexture(t);this.quadShader.setUniform("uSampler",c);var u=this.viewMatrix,d=V_ARRAY[0].set(e,i),p=V_ARRAY[1].set(e+o,i),f=V_ARRAY[2].set(e,i+r),y=V_ARRAY[3].set(e+o,i+r);u.isIdentity()||(u.apply(d),u.apply(p),u.apply(f),u.apply(y)),this.vertexBuffer.push(d.x,d.y,n,s,l),this.vertexBuffer.push(p.x,p.y,a,s,l),this.vertexBuffer.push(f.x,f.y,n,h,l),this.vertexBuffer.push(y.x,y.y,a,h,l)}},WebGLCompositor.prototype.flush=function(t){void 0===t&&(t=this.mode);var e=this.vertexBuffer,i=e.vertexCount;if(i>0){var o=this.gl,r=e.vertexSize;this.renderer.WebGLVersion>1?o.bufferData(o.ARRAY_BUFFER,e.toFloat32(),o.STREAM_DRAW,0,i*r):o.bufferData(o.ARRAY_BUFFER,e.toFloat32(0,i*r),o.STREAM_DRAW),this.activeShader===this.primitiveShader?o.drawArrays(t,0,i):o.drawElements(t,i/e.quadSize*INDICES_PER_QUAD,o.UNSIGNED_SHORT,0),e.clear()}},WebGLCompositor.prototype.drawVertices=function(t,e,i){void 0===i&&(i=e.length),this.useShader(this.primitiveShader),this.primitiveShader.setUniform("uColor",this.color);for(var o=this.viewMatrix,r=this.vertexBuffer,n=o.isIdentity(),s=0;s<i;s++)n||o.apply(e[s]),r.push(e[s].x,e[s].y);this.flush(t)},WebGLCompositor.prototype.clearColor=function(t,e,i,o){this.gl.clearColor(t,e,i,o)},WebGLCompositor.prototype.clear=function(){this.gl.clear(this.gl.COLOR_BUFFER_BIT)};var WebGLRenderer=function(t){function e(e){var i=this;t.call(this,e),this.WebGLVersion=1,this.GPUVendor=null,this.GPURenderer=null,this.context=this.gl=this.getContextGL(this.getScreenCanvas(),e.transparent),this.maxTextures=this.gl.getParameter(this.gl.MAX_TEXTURE_IMAGE_UNITS),this._colorStack=[],this._matrixStack=[],this._scissorStack=[],this._glPoints=[new Vector2d,new Vector2d,new Vector2d,new Vector2d],this.currentTransform=new Matrix2d,this.currentCompositor=null;var o=this.settings.compositor||WebGLCompositor;this.setCompositor(new o(this)),this.gl.disable(this.gl.DEPTH_TEST),this.gl.disable(this.gl.SCISSOR_TEST),this.gl.enable(this.gl.BLEND),this.setBlendMode(this.settings.blendMode);var r=this.gl.getExtension("WEBGL_debug_renderer_info");return null!==r&&(this.GPUVendor=this.gl.getParameter(r.UNMASKED_VENDOR_WEBGL),this.GPURenderer=this.gl.getParameter(r.UNMASKED_RENDERER_WEBGL)),this.cache=new TextureCache(this.maxTextures),this.getScreenCanvas().addEventListener("webglcontextlost",(function(t){t.preventDefault(),i.isContextValid=!1,emit(WEBGL_ONCONTEXT_LOST,i)}),!1),this.getScreenCanvas().addEventListener("webglcontextrestored",(function(){i.reset(),i.isContextValid=!0,emit(WEBGL_ONCONTEXT_RESTORED,i)}),!1),this}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reset=function(){t.prototype.reset.call(this),!1===this.isContextValid?this.currentCompositor.init(this):this.currentCompositor.reset(),this.gl.disable(this.gl.SCISSOR_TEST),void 0!==this.fontContext2D&&this.createFontTexture(this.cache)},e.prototype.setCompositor=function(t){null!==this.currentCompositor&&this.currentCompositor!==t&&this.currentCompositor.flush(),this.currentCompositor=t},e.prototype.resetTransform=function(){this.currentTransform.identity()},e.prototype.createFontTexture=function(t){if(void 0===this.fontTexture){var e=this.backBufferCanvas,i=e.width,o=e.height;1===this.WebGLVersion&&(isPowerOfTwo(i)||(i=nextPowerOfTwo(e.width)),isPowerOfTwo(o)||(o=nextPowerOfTwo(e.height)));var r=createCanvas(i,o,!0);this.fontContext2D=this.getContext2d(r),this.fontTexture=new Texture(createAtlas(e.width,e.height,"fontTexture"),r,t),this.currentCompositor.uploadTexture(this.fontTexture,0,0,0)}else t.set(this.fontContext2D.canvas,this.fontTexture)},e.prototype.createPattern=function(t,e){if(!(1!==renderer.WebGLVersion||isPowerOfTwo(t.width)&&isPowerOfTwo(t.height))){var i=void 0!==t.src?t.src:t;throw new Error("[WebGL Renderer] "+i+" is not a POT texture ("+t.width+"x"+t.height+")")}var o=new Texture(createAtlas(t.width,t.height,"pattern",e),t);return this.currentCompositor.uploadTexture(o),o},e.prototype.flush=function(){this.currentCompositor.flush()},e.prototype.clearColor=function(t,e){var i;this.save(),i=t instanceof Color?t.toArray():this.getColor().parseCSS(t).toArray(),this.currentCompositor.clearColor(i[0],i[1],i[2],!0===e?1:i[3]),this.currentCompositor.clear(),this.currentCompositor.clearColor(0,0,0,0),this.restore()},e.prototype.clearRect=function(t,e,i,o){var r=this.currentColor.clone();this.currentColor.copy("#000000"),this.fillRect(t,e,i,o),this.currentColor.copy(r),pool.push(r)},e.prototype.drawFont=function(t){var e=this.getFontContext();this.currentCompositor.uploadTexture(this.fontTexture,0,0,0,!0);var i=this.fontTexture.getUVs(t.left+","+t.top+","+t.width+","+t.height);this.currentCompositor.addQuad(this.fontTexture,t.left,t.top,t.width,t.height,i[0],i[1],i[2],i[3],this.currentTint.toUint32()),e.clearRect(t.left,t.top,t.width,t.height)},e.prototype.drawImage=function(t,e,i,o,r,n,s,a,h){void 0===o?(o=a=t.width,r=h=t.height,n=e,s=i,e=0,i=0):void 0===n&&(n=e,s=i,a=o,h=r,o=t.width,r=t.height,e=0,i=0),!1===this.settings.subPixel&&(n|=0,s|=0);var l=this.cache.get(t),c=l.getUVs(e+","+i+","+o+","+r);this.currentCompositor.addQuad(l,n,s,a,h,c[0],c[1],c[2],c[3],this.currentTint.toUint32())},e.prototype.drawPattern=function(t,e,i,o,r){var n=t.getUVs("0,0,"+o+","+r);this.currentCompositor.addQuad(t,e,i,o,r,n[0],n[1],n[2],n[3],this.currentTint.toUint32())},e.prototype.getScreenContext=function(){return this.gl},e.prototype.getContextGL=function(t,e){if(null==t)throw new Error("You must pass a canvas element in order to create a GL context");"boolean"!=typeof e&&(e=!0);var i,o={alpha:e,antialias:this.settings.antiAlias,depth:!1,stencil:!0,preserveDrawingBuffer:!1,premultipliedAlpha:e,powerPreference:this.settings.powerPreference,failIfMajorPerformanceCaveat:this.settings.failIfMajorPerformanceCaveat};if(!1===this.settings.preferWebGL1&&(i=t.getContext("webgl2",o))&&(this.WebGLVersion=2),i||(this.WebGLVersion=1,i=t.getContext("webgl",o)||t.getContext("experimental-webgl",o)),!i)throw new Error("A WebGL context could not be created.");return i},e.prototype.getContext=function(){return this.gl},e.prototype.setBlendMode=function(t,e){if((e=e||this.gl).enable(e.BLEND),"multiply"===t)e.blendFunc(e.SRC_ALPHA,e.ONE_MINUS_SRC_ALPHA),this.currentBlendMode=t;else e.blendFunc(e.ONE,e.ONE_MINUS_SRC_ALPHA),this.currentBlendMode="normal"},e.prototype.getFontContext=function(){return void 0===this.fontContext2D&&(console.warn("[WebGL Renderer] WARNING : Using Standard me.Text with WebGL will severly impact performances !"),this.createFontTexture(this.cache)),this.fontContext2D},e.prototype.restore=function(){if(0!==this._matrixStack.length){var t=this._colorStack.pop(),e=this._matrixStack.pop();this.currentColor.copy(t),this.currentTransform.copy(e),pool.push(t),pool.push(e)}0!==this._scissorStack.length?this.currentScissor.set(this._scissorStack.pop()):(this.gl.disable(this.gl.SCISSOR_TEST),this.currentScissor[0]=0,this.currentScissor[1]=0,this.currentScissor[2]=this.backBufferCanvas.width,this.currentScissor[3]=this.backBufferCanvas.height)},e.prototype.save=function(){this._colorStack.push(this.currentColor.clone()),this._matrixStack.push(this.currentTransform.clone()),this.gl.isEnabled(this.gl.SCISSOR_TEST)&&this._scissorStack.push(this.currentScissor.slice())},e.prototype.rotate=function(t){this.currentTransform.rotate(t)},e.prototype.scale=function(t,e){this.currentTransform.scale(t,e)},e.prototype.setAntiAlias=function(e,i){t.prototype.setAntiAlias.call(this,e,i)},e.prototype.setGlobalAlpha=function(t){this.currentColor.alpha=t},e.prototype.setColor=function(t){var e=this.currentColor.alpha;this.currentColor.copy(t),this.currentColor.alpha*=e},e.prototype.setLineWidth=function(t){this.getScreenContext().lineWidth(t)},e.prototype.strokeArc=function(t,e,i,o,r,n,s){if(void 0===n&&(n=!1),!0===s)this.fillArc(t,e,i,o,r,n);else{var a,h=this._glPoints,l=Math.floor(24*Math.sqrt(2*i)),c=(r-o)/(2*l),u=2*c,d=Math.cos(c),p=Math.sin(c);for(a=h.length;a<l+1;a++)h.push(new Vector2d);for(a=0;a<l;a++){var f=c+o+u*a,y=Math.cos(f),g=-Math.sin(f);h[a].x=t+(d*y+p*g)*i,h[a].y=e+(d*-g+p*y)*i}this.currentCompositor.drawVertices(this.gl.LINE_STRIP,h,l)}},e.prototype.fillArc=function(t,e,i,o,r){var n,s=this._glPoints,a=0,h=Math.floor(24*Math.sqrt(2*i)),l=(r-o)/(2*h),c=2*l,u=Math.cos(l),d=Math.sin(l);for(n=s.length;n<2*h;n++)s.push(new Vector2d);for(n=0;n<h-1;n++){var p=l+o+c*n,f=Math.cos(p),y=-Math.sin(p);s[a++].set(t,e),s[a++].set(t-(u*f+d*y)*i,e-(u*-y+d*f)*i)}this.currentCompositor.drawVertices(this.gl.TRIANGLE_STRIP,s,a)},e.prototype.strokeEllipse=function(t,e,i,o,r){if(void 0===r&&(r=!1),!0===r)this.fillEllipse(t,e,i,o);else{var n,s=Math.floor(24*Math.sqrt(i))||Math.floor(12*Math.sqrt(i+o)),a=TAU/s,h=this._glPoints;for(n=h.length;n<s;n++)h.push(new Vector2d);for(n=0;n<s;n++)h[n].x=t+Math.sin(a*-n)*i,h[n].y=e+Math.cos(a*-n)*o;this.currentCompositor.drawVertices(this.gl.LINE_LOOP,h,s)}},e.prototype.fillEllipse=function(t,e,i,o){var r,n=Math.floor(24*Math.sqrt(i))||Math.floor(12*Math.sqrt(i+o)),s=TAU/n,a=this._glPoints,h=0;for(r=a.length;r<2*(n+1);r++)a.push(new Vector2d);for(r=0;r<n+1;r++)a[h++].set(t,e),a[h++].set(t+Math.sin(s*r)*i,e+Math.cos(s*r)*o);this.currentCompositor.drawVertices(this.gl.TRIANGLE_STRIP,a,h)},e.prototype.strokeLine=function(t,e,i,o){var r=this._glPoints;r[0].x=t,r[0].y=e,r[1].x=i,r[1].y=o,this.currentCompositor.drawVertices(this.gl.LINE_STRIP,r,2)},e.prototype.fillLine=function(t,e,i,o){this.strokeLine(t,e,i,o)},e.prototype.strokePolygon=function(t,e){if(void 0===e&&(e=!1),!0===e)this.fillPolygon(t);else{var i,o=t.points.length,r=this._glPoints;for(i=r.length;i<o;i++)r.push(new Vector2d);for(i=0;i<o;i++)r[i].x=t.pos.x+t.points[i].x,r[i].y=t.pos.y+t.points[i].y;this.currentCompositor.drawVertices(this.gl.LINE_LOOP,r,o)}},e.prototype.fillPolygon=function(t){var e,i=t.points,o=this._glPoints,r=t.getIndices(),n=t.pos.x,s=t.pos.y;for(e=o.length;e<r.length;e++)o.push(new Vector2d);for(e=0;e<r.length;e++)o[e].set(n+i[r[e]].x,s+i[r[e]].y);this.currentCompositor.drawVertices(this.gl.TRIANGLES,o,r.length)},e.prototype.strokeRect=function(t,e,i,o,r){if(void 0===r&&(r=!1),!0===r)this.fillRect(t,e,i,o);else{var n=this._glPoints;n[0].x=t,n[0].y=e,n[1].x=t+i,n[1].y=e,n[2].x=t+i,n[2].y=e+o,n[3].x=t,n[3].y=e+o,this.currentCompositor.drawVertices(this.gl.LINE_LOOP,n,4)}},e.prototype.fillRect=function(t,e,i,o){var r=this._glPoints;r[0].x=t+i,r[0].y=e,r[1].x=t,r[1].y=e,r[2].x=t+i,r[2].y=e+o,r[3].x=t,r[3].y=e+o,this.currentCompositor.drawVertices(this.gl.TRIANGLE_STRIP,r,4)},e.prototype.setTransform=function(t){this.resetTransform(),this.transform(t)},e.prototype.transform=function(t){var e=this.currentTransform;if(e.multiply(t),!1===this.settings.subPixel){var i=e.toArray();i[6]|=0,i[7]|=0}},e.prototype.translate=function(t,e){var i=this.currentTransform;if(i.translate(t,e),!1===this.settings.subPixel){var o=i.toArray();o[6]|=0,o[7]|=0}},e.prototype.clipRect=function(t,e,i,o){var r=this.backBufferCanvas,n=this.gl;if(0!==t||0!==e||i!==r.width||o!==r.height){var s=this.currentScissor;if(n.isEnabled(n.SCISSOR_TEST)&&s[0]===t&&s[1]===e&&s[2]===i&&s[3]===o)return;this.flush(),n.enable(this.gl.SCISSOR_TEST),n.scissor(t+this.currentTransform.tx,r.height-o-e-this.currentTransform.ty,i,o),s[0]=t,s[1]=e,s[2]=i,s[3]=o}else n.disable(n.SCISSOR_TEST)},e.prototype.setMask=function(t){var e=this.gl;this.flush(),e.enable(e.STENCIL_TEST),e.clear(e.STENCIL_BUFFER_BIT),e.colorMask(!1,!1,!1,!1),e.stencilFunc(e.NOTEQUAL,1,1),e.stencilOp(e.REPLACE,e.REPLACE,e.REPLACE),this.fill(t),this.flush(),e.colorMask(!0,!0,!0,!0),e.stencilFunc(e.EQUAL,1,1),e.stencilOp(e.KEEP,e.KEEP,e.KEEP)},e.prototype.clearMask=function(){this.flush(),this.gl.disable(this.gl.STENCIL_TEST)},e}(Renderer),designRatio=1,designWidth=0,designHeight=0,settings={parent:document.body,renderer:2,doubleBuffering:!1,autoScale:!1,scale:1,scaleMethod:"fit",transparent:!1,blendMode:"normal",antiAlias:!1,failIfMajorPerformanceCaveat:!0,subPixel:!1,preferWebGL1:!1,powerPreference:"default",verbose:!1,consoleHeader:!0};function autoDetectRenderer(t){try{if(device$1.isWebGLSupported(t))return new WebGLRenderer(t)}catch(t){console.log("Error creating WebGL renderer :"+t.message)}return new CanvasRenderer(t)}function onresize(){var t=renderer.settings,e=1,i=1;if(t.autoScale){var o=1/0,r=1/0;if(window.getComputedStyle){var n=window.getComputedStyle(renderer.getScreenCanvas(),null);o=parseInt(n.maxWidth,10)||1/0,r=parseInt(n.maxHeight,10)||1/0}var s=device$1.getParentBounds(getParent()),a=Math.min(o,s.width),h=Math.min(r,s.height),l=a/h;if("fill-min"===t.scaleMethod&&l>designRatio||"fill-max"===t.scaleMethod&&l<designRatio||"flex-width"===t.scaleMethod){var c=Math.min(o,designHeight*l);e=i=a/c,renderer.resize(Math.floor(c),designHeight)}else if("fill-min"===t.scaleMethod&&l<designRatio||"fill-max"===t.scaleMethod&&l>designRatio||"flex-height"===t.scaleMethod){var u=Math.min(r,designWidth*(h/a));e=i=h/u,renderer.resize(designWidth,Math.floor(u))}else"flex"===t.scaleMethod?renderer.resize(Math.floor(a),Math.floor(h)):"stretch"===t.scaleMethod?(e=a/designWidth,i=h/designHeight):e=i=l<designRatio?a/designWidth:h/designHeight;scale(e,i)}}var CANVAS=0,WEBGL=1,AUTO=2,parent=null,scaleRatio=new Vector2d(1,1),renderer=null;function init(t,e,i){if(!exports.initialized)throw new Error("me.video.init() called before engine initialization.");(settings=Object.assign(settings,i||{})).width=t,settings.height=e,settings.doubleBuffering=!!settings.doubleBuffering,settings.transparent=!!settings.transparent,settings.antiAlias=!!settings.antiAlias,settings.failIfMajorPerformanceCaveat=!!settings.failIfMajorPerformanceCaveat,settings.subPixel=!!settings.subPixel,settings.verbose=!!settings.verbose,-1!==settings.scaleMethod.search(/^(fill-(min|max)|fit|flex(-(width|height))?|stretch)$/)?settings.autoScale="auto"===settings.scale||!0:(settings.scaleMethod="fit",settings.autoScale="auto"===settings.scale||!1),!1!==settings.consoleHeader&&console.log("melonJS 2 (v"+version+") | http://melonjs.org");var o=utils.getUriFragment();!0!==o.webgl&&!0!==o.webgl1&&!0!==o.webgl2||(settings.renderer=WEBGL,!0===o.webgl1&&(settings.preferWebGL1=!0)),settings.scale=settings.autoScale?1:+settings.scale||1,scaleRatio.set(settings.scale,settings.scale),(settings.autoScale||1!==settings.scale)&&(settings.doubleBuffering=!0),designRatio=t/e,designWidth=t,designHeight=e,settings.zoomX=t*scaleRatio.x,settings.zoomY=e*scaleRatio.y,window.addEventListener("resize",utils.function.throttle((function(t){emit(WINDOW_ONRESIZE,t)}),100),!1),window.addEventListener("orientationchange",(function(t){emit(WINDOW_ONORIENTATION_CHANGE,t)}),!1),window.addEventListener("onmozorientationchange",(function(t){emit(WINDOW_ONORIENTATION_CHANGE,t)}),!1),!0===device$1.ScreenOrientation&&(window.screen.orientation.onchange=function(t){emit(WINDOW_ONORIENTATION_CHANGE,t)}),window.addEventListener("scroll",utils.function.throttle((function(t){emit(WINDOW_ONSCROLL,t)}),100),!1),on(WINDOW_ONRESIZE,onresize,this),on(WINDOW_ONORIENTATION_CHANGE,onresize,this);try{switch(settings.renderer){case AUTO:case WEBGL:renderer=autoDetectRenderer(settings);break;default:renderer=new CanvasRenderer(settings)}}catch(t){return console(t.message),!1}((parent=device$1.getElement(settings.parent)).appendChild(renderer.getScreenCanvas()),onresize(),"MutationObserver"in window)&&new MutationObserver(onresize.bind(this)).observe(parent,{attributes:!1,childList:!0,subtree:!0});if(!1!==settings.consoleHeader){var r=renderer instanceof CanvasRenderer?"CANVAS":"WebGL"+renderer.WebGLVersion,n=device$1.hasWebAudio?"Web Audio":"HTML5 Audio",s="string"==typeof renderer.GPURenderer?" ("+renderer.GPURenderer+")":"";console.log(r+" renderer"+s+" | "+n+" | pixel ratio "+device$1.devicePixelRatio+" | "+(device$1.isMobile?"mobile":"desktop")+" | "+device$1.getScreenOrientation()+" | "+device$1.language),console.log("resolution: requested "+t+"x"+e+", got "+renderer.getWidth()+"x"+renderer.getHeight())}return emit(VIDEO_INIT),!0}function createCanvas(t,e,i){var o;if(0===t||0===e)throw new Error("width or height was zero, Canvas could not be initialized !");return!0===device$1.OffscreenCanvas&&!0===i?void 0===(o=new OffscreenCanvas(0,0)).style&&(o.style={}):o=document.createElement("canvas"),o.width=t,o.height=e,o}function getParent(){return parent}function scale(t,e){var i=renderer.getScreenCanvas(),o=renderer.getScreenContext(),r=renderer.settings,n=device$1.devicePixelRatio,s=r.zoomX=i.width*t*n,a=r.zoomY=i.height*e*n;scaleRatio.set(t*n,e*n),i.style.width=s/n+"px",i.style.height=a/n+"px",renderer.setAntiAlias(o,r.antiAlias),renderer.setBlendMode(r.blendMode,o),repaint()}var video=Object.freeze({__proto__:null,CANVAS:CANVAS,WEBGL:WEBGL,AUTO:AUTO,get parent(){return parent},scaleRatio:scaleRatio,get renderer(){return renderer},init:init,createCanvas:createCanvas,getParent:getParent,scale:scale}),GUID_base="",GUID_index=0,utils={agent:agentUtils,array:arrayUtils,file:fileUtils,string:stringUtils,function:fnUtils,getPixels:function(t){if(t instanceof HTMLImageElement){var e=CanvasRenderer.getContext2d(createCanvas(t.width,t.height));return e.drawImage(t,0,0),e.getImageData(0,0,t.width,t.height)}return t.getContext("2d").getImageData(0,0,t.width,t.height)},checkVersion:function(t,e){void 0===e&&(e=version);for(var i=t.split("."),o=e.split("."),r=Math.min(i.length,o.length),n=0,s=0;s<r&&!(n=+i[s]-+o[s]);s++);return n||i.length-o.length},getUriFragment:function(t){var e={};if(void 0===t){var i=document.location;if(!i||!i.hash)return e;t=i.hash}else{var o=t.indexOf("#");if(-1===o)return e;t=t.substr(o,t.length)}return t.substr(1).split("&").filter((function(t){return""!==t})).forEach((function(t){var i=t.split("="),o=i.shift(),r=i.join("=");e[o]=r||!0})),e},resetGUID:function(t,e){void 0===e&&(e=0),GUID_base=toHex$1(t.toString().toUpperCase()),GUID_index=e},createGUID:function(t){return void 0===t&&(t=1),GUID_index+=t,GUID_base+"-"+(t||GUID_index)}},framecount=0,framedelta=0,last=0,now=0,delta=0,step=0,minstep=0,timers=[],timerId=0;function update(t){last=now,(delta=(now=t)-last)<0&&(delta=0),timer.tick=delta>minstep&&timer.interpolation?delta/step:1,updateTimers()}function clearTimer(t){for(var e=0,i=timers.length;e<i;e++)if(timers[e].timerId===t){timers.splice(e,1);break}}function updateTimers(){for(var t=0,e=timers.length;t<e;t++){var i=timers[t];i.pauseable&&state.isPaused()||(i.elapsed+=delta),i.elapsed>=i.delay&&(i.fn.apply(null,i.args),!0===i.repeat?i.elapsed-=i.delay:timer.clearTimeout(i.timerId))}}on(BOOT,(function(){timer.reset(),now=last=0,on(GAME_BEFORE_UPDATE,update)}));var timer={tick:1,fps:0,maxfps:60,interpolation:!1,reset:function(){last=now=window.performance.now(),delta=0,framedelta=0,framecount=0,step=Math.ceil(1e3/this.maxfps),minstep=1e3/this.maxfps*1.25},setTimeout:function(t,e,i){return timers.push({fn:t,delay:e,elapsed:0,repeat:!1,timerId:++timerId,pauseable:!0===i||!0,args:arguments.length>3?Array.prototype.slice.call(arguments,3):void 0}),timerId},setInterval:function(t,e,i){return timers.push({fn:t,delay:e,elapsed:0,repeat:!0,timerId:++timerId,pauseable:!0===i||!0,args:arguments.length>3?Array.prototype.slice.call(arguments,3):void 0}),timerId},clearTimeout:function(t){utils.function.defer(clearTimer,this,t)},clearInterval:function(t){utils.function.defer(clearTimer,this,t)},getTime:function(){return now},getDelta:function(){return delta},countFPS:function(){framecount++,framedelta+=delta,framecount%10==0&&(this.fps=clamp(Math.round(1e3*framecount/framedelta),0,this.maxfps),framedelta=0,framecount=0)}},timer$1=timer,lastTime=0,vendors=["ms","moz","webkit","o"],x,requestAnimationFrame=window.requestAnimationFrame,cancelAnimationFrame=window.cancelAnimationFrame;for(x=0;x<vendors.length&&!requestAnimationFrame;++x)requestAnimationFrame=window[vendors[x]+"RequestAnimationFrame"];for(x=0;x<vendors.length&&!cancelAnimationFrame;++x)cancelAnimationFrame=window[vendors[x]+"CancelAnimationFrame"]||window[vendors[x]+"CancelRequestAnimationFrame"];requestAnimationFrame&&cancelAnimationFrame||(requestAnimationFrame=function(t){var e=window.performance.now(),i=Math.max(0,1e3/timer$1.maxfps-(e-lastTime)),o=window.setTimeout((function(){t(e+i)}),i);return lastTime=e+i,o},cancelAnimationFrame=function(t){window.clearTimeout(t)},window.requestAnimationFrame=requestAnimationFrame,window.cancelAnimationFrame=cancelAnimationFrame);var plugins={},BasePlugin=function(){this.version="10.2.0"},plugin={Base:BasePlugin,patch:function(t,e,i){if(void 0!==t.prototype&&(t=t.prototype),"function"!=typeof t[e])throw new Error(e+" is not an existing function");var o=t[e];Object.defineProperty(t,e,{configurable:!0,value:function(t,e){return function(){this._patched=o;var t=e.apply(this,arguments);return this._patched=null,t}}(0,i)})},register:function(t,e){if(plugins[e])throw new Error("plugin "+e+" already registered");var i=[];arguments.length>2&&(i=Array.prototype.slice.call(arguments,1)),i[0]=t;var o=new(t.bind.apply(t,i));if(void 0===o||!(o instanceof plugin.Base))throw new Error("Plugin should extend the me.plugin.Base Class !");if(utils.checkVersion(o.version)>0)throw new Error("Plugin version mismatch, expected: "+o.version+", got: "+version);plugins[e]=o}},Easing={Linear:{None:function(t){return t}},Quadratic:{In:function(t){return t*t},Out:function(t){return t*(2-t)},InOut:function(t){return(t*=2)<1?.5*t*t:-.5*(--t*(t-2)-1)}},Cubic:{In:function(t){return t*t*t},Out:function(t){return--t*t*t+1},InOut:function(t){return(t*=2)<1?.5*t*t*t:.5*((t-=2)*t*t+2)}},Quartic:{In:function(t){return t*t*t*t},Out:function(t){return 1- --t*t*t*t},InOut:function(t){return(t*=2)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2)}},Quintic:{In:function(t){return t*t*t*t*t},Out:function(t){return--t*t*t*t*t+1},InOut:function(t){return(t*=2)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2)}},Sinusoidal:{In:function(t){return 1-Math.cos(t*Math.PI/2)},Out:function(t){return Math.sin(t*Math.PI/2)},InOut:function(t){return.5*(1-Math.cos(Math.PI*t))}},Exponential:{In:function(t){return 0===t?0:Math.pow(1024,t-1)},Out:function(t){return 1===t?1:1-Math.pow(2,-10*t)},InOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?.5*Math.pow(1024,t-1):.5*(2-Math.pow(2,-10*(t-1)))}},Circular:{In:function(t){return 1-Math.sqrt(1-t*t)},Out:function(t){return Math.sqrt(1- --t*t)},InOut:function(t){return(t*=2)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)}},Elastic:{In:function(t){return 0===t?0:1===t?1:-Math.pow(2,10*(t-1))*Math.sin(5*(t-1.1)*Math.PI)},Out:function(t){return 0===t?0:1===t?1:Math.pow(2,-10*t)*Math.sin(5*(t-.1)*Math.PI)+1},InOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?-.5*Math.pow(2,10*(t-1))*Math.sin(5*(t-1.1)*Math.PI):.5*Math.pow(2,-10*(t-1))*Math.sin(5*(t-1.1)*Math.PI)+1}},Back:{In:function(t){var e=1.70158;return t*t*((e+1)*t-e)},Out:function(t){var e=1.70158;return--t*t*((e+1)*t+e)+1},InOut:function(t){var e=2.5949095;return(t*=2)<1?t*t*((e+1)*t-e)*.5:.5*((t-=2)*t*((e+1)*t+e)+2)}},Bounce:{In:function(t){return 1-Easing.Bounce.Out(1-t)},Out:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},InOut:function(t){return t<.5?.5*Easing.Bounce.In(2*t):.5*Easing.Bounce.Out(2*t-1)+.5}}},Interpolation={Linear:function(t,e){var i=t.length-1,o=i*e,r=Math.floor(o),n=Interpolation.Utils.Linear;return e<0?n(t[0],t[1],o):e>1?n(t[i],t[i-1],i-o):n(t[r],t[r+1>i?i:r+1],o-r)},Bezier:function(t,e){var i,o=0,r=t.length-1,n=Math.pow,s=Interpolation.Utils.Bernstein;for(i=0;i<=r;i++)o+=n(1-e,r-i)*n(e,i)*t[i]*s(r,i);return o},CatmullRom:function(t,e){var i=t.length-1,o=i*e,r=Math.floor(o),n=Interpolation.Utils.CatmullRom;return t[0]===t[i]?(e<0&&(r=Math.floor(o=i*(1+e))),n(t[(r-1+i)%i],t[r],t[(r+1)%i],t[(r+2)%i],o-r)):e<0?t[0]-(n(t[0],t[0],t[1],t[1],-o)-t[0]):e>1?t[i]-(n(t[i],t[i],t[i-1],t[i-1],o-i)-t[i]):n(t[r?r-1:0],t[r],t[i<r+1?i:r+1],t[i<r+2?i:r+2],o-r)},Utils:{Linear:function(t,e,i){return(e-t)*i+t},Bernstein:function(t,e){var i=Interpolation.Utils.Factorial;return i(t)/i(e)/i(t-e)},Factorial:function(){var t=[1];return function(e){var i,o=1;if(t[e])return t[e];for(i=e;i>1;i--)o*=i;return t[e]=o,o}}(),CatmullRom:function(t,e,i,o,r){var n=.5*(i-t),s=.5*(o-e),a=r*r;return(2*e-2*i+n+s)*(r*a)+(-3*e+3*i-2*n-s)*a+n*r+e}}},Tween=function(t){this.setProperties(t)},staticAccessors={Easing:{configurable:!0},Interpolation:{configurable:!0}};Tween.prototype.onResetEvent=function(t){this.setProperties(t)},Tween.prototype.setProperties=function(t){for(var e in this._object=t,this._valuesStart={},this._valuesEnd={},this._valuesStartRepeat={},this._duration=1e3,this._repeat=0,this._yoyo=!1,this._reversed=!1,this._delayTime=0,this._startTime=null,this._easingFunction=Easing.Linear.None,this._interpolationFunction=Interpolation.Linear,this._chainedTweens=[],this._onStartCallback=null,this._onStartCallbackFired=!1,this._onUpdateCallback=null,this._onCompleteCallback=null,this._tweenTimeTracker=lastUpdate,this.isPersistent=!1,this.updateWhenPaused=!1,this.isRenderable=!1,t)"object"!=typeof t&&(this._valuesStart[e]=parseFloat(t[e]))},Tween.prototype._resumeCallback=function(t){this._startTime&&(this._startTime+=t)},Tween.prototype.onActivateEvent=function(){on(STATE_RESUME,this._resumeCallback,this)},Tween.prototype.onDeactivateEvent=function(){off(STATE_RESUME,this._resumeCallback)},Tween.prototype.to=function(t,e){return this._valuesEnd=t,void 0!==e&&("number"==typeof e?this._duration=e:"object"==typeof e&&(e.duration&&(this._duration=e.duration),e.yoyo&&this.yoyo(e.yoyo),e.easing&&this.easing(e.easing),e.repeat&&this.repeat(e.repeat),e.delay&&this.delay(e.delay),e.interpolation&&this.interpolation(e.interpolation),e.autoStart&&this.start())),this},Tween.prototype.start=function(t){for(var e in void 0===t&&(t=timer$1.getTime()),this._onStartCallbackFired=!1,world.addChild(this),this._startTime=t+this._delayTime,this._valuesEnd){if(this._valuesEnd[e]instanceof Array){if(0===this._valuesEnd[e].length)continue;this._valuesEnd[e]=[this._object[e]].concat(this._valuesEnd[e])}this._valuesStart[e]=this._object[e],this._valuesStart[e]instanceof Array==!1&&(this._valuesStart[e]*=1),this._valuesStartRepeat[e]=this._valuesStart[e]||0}return this},Tween.prototype.stop=function(){return world.removeChildNow(this),this},Tween.prototype.delay=function(t){return this._delayTime=t,this},Tween.prototype.repeat=function(t){return this._repeat=t,this},Tween.prototype.yoyo=function(t){return this._yoyo=t,this},Tween.prototype.easing=function(t){if("function"!=typeof t)throw new Error("invalid easing function for me.Tween.easing()");return this._easingFunction=t,this},Tween.prototype.interpolation=function(t){return this._interpolationFunction=t,this},Tween.prototype.chain=function(){return this._chainedTweens=arguments,this},Tween.prototype.onStart=function(t){return this._onStartCallback=t,this},Tween.prototype.onUpdate=function(t){return this._onUpdateCallback=t,this},Tween.prototype.onComplete=function(t){return this._onCompleteCallback=t,this},Tween.prototype.update=function(t){this._tweenTimeTracker=lastUpdate>this._tweenTimeTracker?lastUpdate:this._tweenTimeTracker+t;var e,i=this._tweenTimeTracker;if(i<this._startTime)return!0;!1===this._onStartCallbackFired&&(null!==this._onStartCallback&&this._onStartCallback.call(this._object),this._onStartCallbackFired=!0);var o=(i-this._startTime)/this._duration;o=o>1?1:o;var r=this._easingFunction(o);for(e in this._valuesEnd){var n=this._valuesStart[e]||0,s=this._valuesEnd[e];s instanceof Array?this._object[e]=this._interpolationFunction(s,r):("string"==typeof s&&(s=n+parseFloat(s)),"number"==typeof s&&(this._object[e]=n+(s-n)*r))}if(null!==this._onUpdateCallback&&this._onUpdateCallback.call(this._object,r),1===o){if(this._repeat>0){for(e in isFinite(this._repeat)&&this._repeat--,this._valuesStartRepeat){if("string"==typeof this._valuesEnd[e]&&(this._valuesStartRepeat[e]=this._valuesStartRepeat[e]+parseFloat(this._valuesEnd[e])),this._yoyo){var a=this._valuesStartRepeat[e];this._valuesStartRepeat[e]=this._valuesEnd[e],this._valuesEnd[e]=a}this._valuesStart[e]=this._valuesStartRepeat[e]}return this._yoyo&&(this._reversed=!this._reversed),this._startTime=i+this._delayTime,!0}world.removeChildNow(this),null!==this._onCompleteCallback&&this._onCompleteCallback.call(this._object);for(var h=0,l=this._chainedTweens.length;h<l;h++)this._chainedTweens[h].start(i);return!1}return!0},staticAccessors.Easing.get=function(){return Easing},staticAccessors.Interpolation.get=function(){return Interpolation},Object.defineProperties(Tween,staticAccessors);var runits=["ex","em","pt","px"],toPX=[12,24,.75,1],setContextStyle=function(t,e,i){void 0===i&&(i=!1),t.font=e.font,t.fillStyle=e.fillStyle.toRGBA(),!0===i&&(t.strokeStyle=e.strokeStyle.toRGBA(),t.lineWidth=e.lineWidth),t.textAlign=e.textAlign,t.textBaseline=e.textBaseline},Text=function(t){function e(e,i,o){t.call(this,e,i,o.width||0,o.height||0),this.onResetEvent(e,i,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onResetEvent=function(t,e,i){void 0!==i.fillStyle?i.fillStyle instanceof Color?this.fillStyle=i.fillStyle:this.fillStyle=pool.pull("Color").parseCSS(i.fillStyle):this.fillStyle=pool.pull("Color",0,0,0),void 0!==i.strokeStyle?i.strokeStyle instanceof Color?this.strokeStyle=i.strokeStyle:this.strokeStyle=pool.pull("Color").parseCSS(i.strokeStyle):this.strokeStyle=pool.pull("Color",0,0,0),this.lineWidth=i.lineWidth||1,this.textAlign=i.textAlign||"left",this.textBaseline=i.textBaseline||"top",this.lineHeight=i.lineHeight||1,this.offScreenCanvas=!1,this._text=[],this.fontSize=10,void 0!==i.anchorPoint?this.anchorPoint.setV(i.anchorPoint):this.anchorPoint.set(0,0),void 0!==i.floating&&(this.floating=!!i.floating),this.setFont(i.font,i.size),!0===i.bold&&this.bold(),!0===i.italic&&this.italic(),!0===i.offScreenCanvas&&(this.offScreenCanvas=!0,this.canvas=createCanvas(2,2,!0),this.context=this.canvas.getContext("2d")),this.setText(i.text),this.update(0)},e.prototype.onDeactivateEvent=function(){!0===this.offScreenCanvas&&(renderer instanceof WebGLRenderer&&(renderer.currentCompositor.unbindTexture2D(renderer.cache.get(this.canvas)),renderer.cache.remove(this.canvas)),this.canvas.width=this.canvas.height=0,this.context=void 0,this.canvas=void 0)},e.prototype.bold=function(){return this.font="bold "+this.font,this.isDirty=!0,this},e.prototype.italic=function(){return this.font="italic "+this.font,this.isDirty=!0,this},e.prototype.setFont=function(t,e){var i=t.split(",").map((function(t){return t=t.trim(),/(^".*"$)|(^'.*'$)/.test(t)?t:'"'+t+'"'}));if("number"==typeof e)this.fontSize=e,e+="px";else{var o=e.match(/([-+]?[\d.]*)(.*)/);this.fontSize=parseFloat(o[1]),o[2]?this.fontSize*=toPX[runits.indexOf(o[2])]:e+="px"}return this.height=this.fontSize,this.font=e+" "+i.join(","),this.isDirty=!0,this},e.prototype.setText=function(t){return void 0===t&&(t=""),this._text.toString()!==t.toString()&&(Array.isArray(t)?this._text=t:this._text=(""+t).split("\n"),this.isDirty=!0),this},e.prototype.measureText=function(t,e,i){var o,r=i||this.getBounds(),n=this.fontSize*this.lineHeight,s=void 0!==e?(""+e).split("\n"):this._text;(o=!0===this.offScreenCanvas?this.context:t instanceof Renderer?t.getFontContext():renderer.getFontContext()).save(),setContextStyle(o,this),this.height=this.width=0;for(var a=0;a<s.length;a++)this.width=Math.max(o.measureText(trimRight(""+s[a])).width,this.width),this.height+=n;return r.width=Math.ceil(this.width),r.height=Math.ceil(this.height),r.x=Math.floor("right"===this.textAlign?this.pos.x-this.width:"center"===this.textAlign?this.pos.x-this.width/2:this.pos.x),r.y=Math.floor(0===this.textBaseline.search(/^(top|hanging)$/)?this.pos.y:"middle"===this.textBaseline?this.pos.y-r.height/2:this.pos.y-r.height),o.restore(),r},e.prototype.update=function(){if(!0===this.isDirty){var t=this.measureText(renderer);if(!0===this.offScreenCanvas){var e=Math.round(t.width),i=Math.round(t.height);renderer instanceof WebGLRenderer&&(renderer.currentCompositor.unbindTexture2D(renderer.cache.get(this.canvas)),1===renderer.WebGLVersion&&(e=nextPowerOfTwo(t.width),i=nextPowerOfTwo(t.height))),this.canvas.width<e||this.canvas.height<i?(this.canvas.width=e,this.canvas.height=i):this.context.clearRect(0,0,this.canvas.width,this.canvas.height),this._drawFont(this.context,this._text,this.pos.x-t.x,this.pos.y-t.y,!1)}}return this.isDirty},e.prototype.draw=function(t,e,i,o,r){void 0===this.ancestor?(this.setText(e),this.pos.x===i&&this.pos.y===o||(this.pos.x=i,this.pos.y=o,this.isDirty=!0),this.update(0),t.save(),t.setGlobalAlpha(t.globalAlpha()*this.getOpacity())):(i=this.pos.x,o=this.pos.y),!1===t.settings.subPixel&&(i=~~i,o=~~o),!0===this.offScreenCanvas?t.drawImage(this.canvas,this.getBounds().x,this.getBounds().y):t.drawFont(this._drawFont(t.getFontContext(),this._text,i,o,r)),void 0===this.ancestor&&t.restore(),this.isDirty=!1},e.prototype.drawStroke=function(t,e,i,o){this.draw(t,e,i,o,!0)},e.prototype._drawFont=function(t,e,i,o,r){void 0===r&&(r=!1),setContextStyle(t,this,r);for(var n=this.fontSize*this.lineHeight,s=0;s<e.length;s++){var a=trimRight(""+e[s]);t[r?"strokeText":"fillText"](a,i,o),o+=n}return this.getBounds()},e.prototype.destroy=function(){pool.push(this.fillStyle),pool.push(this.strokeStyle),this.fillStyle=this.strokeStyle=void 0,this._text.length=0,t.prototype.destroy.call(this)},e}(Renderable),measureTextWidth=function(t,e){for(var i=e.split(""),o=0,r=null,n=0;n<i.length;n++){var s=i[n].charCodeAt(0),a=t.fontData.glyphs[s],h=r&&r.kerning?r.getKerning(s):0;o+=(a.xadvance+h)*t.fontScale.x,r=a}return o},measureTextHeight=function(t){return t.fontData.capHeight*t.lineHeight*t.fontScale.y},BitmapText=function(t){function e(e,i,o){t.call(this,e,i,o.width||0,o.height||0),this.textAlign=o.textAlign||"left",this.textBaseline=o.textBaseline||"top",this.lineHeight=o.lineHeight||1,this._text=[],this.fontScale=pool.pull("Vector2d",1,1),this.fontImage="object"==typeof o.font?o.font:loader.getImage(o.font),"string"!=typeof o.fontData?this.fontData=pool.pull("BitmapTextData",loader.getBinary(o.font)):this.fontData=pool.pull("BitmapTextData",o.fontData.includes("info face")?o.fontData:loader.getBinary(o.fontData)),void 0!==o.floating&&(this.floating=!!o.floating),"number"==typeof o.size&&1!==o.size&&this.resize(o.size),void 0!==o.fillStyle&&(o.fillStyle instanceof Color?this.fillStyle.setColor(o.fillStyle):this.fillStyle.parseCSS(o.fillStyle)),void 0!==o.anchorPoint?this.anchorPoint.set(o.anchorPoint.x,o.anchorPoint.y):this.anchorPoint.set(0,0),this.setText(o.text)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={fillStyle:{configurable:!0}};return e.prototype.set=function(t,e){return this.textAlign=t,e&&this.resize(e),this.isDirty=!0,this},e.prototype.setText=function(t){return void 0===t&&(t=""),this._text.toString()!==t.toString()&&(Array.isArray(t)?this._text=t:this._text=(""+t).split("\n"),this.isDirty=!0),this},i.fillStyle.get=function(){return this.tint},i.fillStyle.set=function(t){this.tint=t},e.prototype.resize=function(t){return this.fontScale.set(t,t),this.isDirty=!0,this},e.prototype.measureText=function(t,e){t=t||this._text;var i=measureTextHeight(this),o=e||this.getBounds(),r="string"==typeof t?(""+t).split("\n"):t;o.height=o.width=0;for(var n=0;n<r.length;n++)o.width=Math.max(measureTextWidth(this,r[n]),o.width),o.height+=i;return o},e.prototype.update=function(){return!0===this.isDirty&&this.measureText(),this.isDirty},e.prototype.draw=function(t,e,i,o){var r=t.globalAlpha();void 0===this.ancestor?(this.setText(e),this.update(0),t.setGlobalAlpha(r*this.getOpacity())):(i=this.pos.x,o=this.pos.y);for(var n=i,s=measureTextHeight(this),a=0,h=0;h<this._text.length;h++){i=n;var l=trimRight(this._text[h]),c=measureTextWidth(this,l);switch(this.textAlign){case"right":i-=c;break;case"center":i-=.5*c}switch(this.textBaseline){case"middle":o-=.5*s;break;case"ideographic":case"alphabetic":case"bottom":o-=s}!0===this.isDirty&&void 0===this.ancestor&&(0===h&&(this.pos.y=o),a<c&&(a=c,this.pos.x=i));for(var u=null,d=0,p=l.length;d<p;d++){var f=l.charCodeAt(d),y=this.fontData.glyphs[f],g=y.width,v=y.height,m=u&&u.kerning?u.getKerning(f):0;0!==g&&0!==v&&t.drawImage(this.fontImage,y.x,y.y,g,v,i+y.xoffset,o+y.yoffset*this.fontScale.y,g*this.fontScale.x,v*this.fontScale.y),i+=(y.xadvance+m)*this.fontScale.x,u=y}o+=s}void 0===this.ancestor&&t.setGlobalAlpha(r),this.isDirty=!1},e.prototype.destroy=function(){pool.push(this.fontScale),this.fontScale=void 0,pool.push(this.fontData),this.fontData=void 0,this._text.length=0,t.prototype.destroy.call(this)},Object.defineProperties(e.prototype,i),e}(Renderable),LOG2_PAGE_SIZE=9,PAGE_SIZE=1<<LOG2_PAGE_SIZE,Glyph=function(){this.id=0,this.x=0,this.y=0,this.width=0,this.height=0,this.u=0,this.v=0,this.u2=0,this.v2=0,this.xoffset=0,this.yoffset=0,this.xadvance=0,this.fixedWidth=!1};Glyph.prototype.getKerning=function(t){if(this.kerning){var e=this.kerning[t>>>LOG2_PAGE_SIZE];if(e)return e[t&PAGE_SIZE-1]||0}return 0},Glyph.prototype.setKerning=function(t,e){this.kerning||(this.kerning={});var i=this.kerning[t>>>LOG2_PAGE_SIZE];void 0===i&&(this.kerning[t>>>LOG2_PAGE_SIZE]={},i=this.kerning[t>>>LOG2_PAGE_SIZE]),i[t&PAGE_SIZE-1]=e};var capChars=["M","N","B","D","C","E","F","K","A","G","H","I","J","L","O","P","Q","R","S","T","U","V","W","X","Y","Z"];function getValueFromPair(t,e){var i=t.match(e);if(!i)throw new Error("Could not find pattern "+e+" in string: "+t);return i[0].split("=")[1]}function getFirstGlyph(t){for(var e=Object.keys(t),i=0;i<e.length;i++)if(e[i]>32)return t[e[i]];return null}function createSpaceGlyph(t){var e=" ".charCodeAt(0),i=t[e];i||((i=new Glyph).id=e,i.xadvance=getFirstGlyph(t).xadvance,t[e]=i)}var BitmapTextData=function(){for(var t,e=[],i=arguments.length;i--;)e[i]=arguments[i];(t=this).onResetEvent.apply(t,e)};BitmapTextData.prototype.onResetEvent=function(t){this.padTop=0,this.padRight=0,this.padBottom=0,this.padLeft=0,this.lineHeight=0,this.capHeight=1,this.descent=0,this.glyphs={},this.parse(t)},BitmapTextData.prototype.parse=function(t){if(!t)throw new Error("File containing font data was empty, cannot load the bitmap font.");var e=t.split(/\r\n|\n/),i=t.match(/padding\=\d+,\d+,\d+,\d+/g);if(!i)throw new Error("Padding not found in first line");var o=i[0].split("=")[1].split(",");this.padTop=parseFloat(o[0]),this.padLeft=parseFloat(o[1]),this.padBottom=parseFloat(o[2]),this.padRight=parseFloat(o[3]),this.lineHeight=parseFloat(getValueFromPair(e[1],/lineHeight\=\d+/g));var r,n=parseFloat(getValueFromPair(e[1],/base\=\d+/g)),s=this.padTop+this.padBottom,a=null;for(r=4;r<e.length;r++){var h=e[r],l=h.split(/=|\s+/);if(h&&!/^kernings/.test(h))if(/^kerning\s/.test(h)){var c=parseFloat(l[2]),u=parseFloat(l[4]),d=parseFloat(l[6]);null!=(a=this.glyphs[c])&&a.setKerning(u,d)}else{a=new Glyph;var p=parseFloat(l[2]);a.id=p,a.x=parseFloat(l[4]),a.y=parseFloat(l[6]),a.width=parseFloat(l[8]),a.height=parseFloat(l[10]),a.xoffset=parseFloat(l[12]),a.yoffset=parseFloat(l[14]),a.xadvance=parseFloat(l[16]),a.width>0&&a.height>0&&(this.descent=Math.min(n+a.yoffset,this.descent)),this.glyphs[p]=a}}this.descent+=this.padBottom,createSpaceGlyph(this.glyphs);var f=null;for(r=0;r<capChars.length;r++){var y=capChars[r];if(f=this.glyphs[y.charCodeAt(0)])break}if(f)this.capHeight=f.height;else for(var g in this.glyphs)if(this.glyphs.hasOwnProperty(g)){if(0===(a=this.glyphs[g]).height||0===a.width)continue;this.capHeight=Math.max(this.capHeight,a.height)}this.capHeight-=s};var ImageLayer=function(t){function e(e,i,o){t.call(this,e,i,o),this.floating=!0,this.offset.set(e,i),this.ratio=pool.pull("Vector2d",1,1),void 0!==o.ratio&&(isNumeric(o.ratio)?this.ratio.set(o.ratio,+o.ratio):this.ratio.setV(o.ratio)),void 0===o.anchorPoint?this.anchorPoint.set(0,0):"number"==typeof o.anchorPoint?this.anchorPoint.set(o.anchorPoint,o.anchorPoint):this.anchorPoint.setV(o.anchorPoint),this.repeat=o.repeat||"repeat",on(WEBGL_ONCONTEXT_RESTORED,this.createPattern,this)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={repeat:{configurable:!0}};return i.repeat.get=function(){return this._repeat},i.repeat.set=function(t){switch(this._repeat=t,this._repeat){case"no-repeat":this.repeatX=!1,this.repeatY=!1;break;case"repeat-x":this.repeatX=!0,this.repeatY=!1;break;case"repeat-y":this.repeatX=!1,this.repeatY=!0;break;default:this.repeatX=!0,this.repeatY=!0}this.resize(viewport.width,viewport.height),this.createPattern()},e.prototype.onActivateEvent=function(){var t=this;on(VIEWPORT_ONCHANGE,this.updateLayer,this),on(VIEWPORT_ONRESIZE,this.resize,this),once(LEVEL_LOADED,(function(){t.updateLayer(viewport.pos)})),!0!==this.ancestor.root&&this.updateLayer(viewport.pos)},e.prototype.resize=function(e,i){t.prototype.resize.call(this,this.repeatX?1/0:e,this.repeatY?1/0:i)},e.prototype.createPattern=function(){this._pattern=renderer.createPattern(this.image,this._repeat)},e.prototype.updateLayer=function(t){var e=this.ratio.x,i=this.ratio.y;if(0!==e||0!==i){var o=this.width,r=this.height,n=viewport.bounds.width,s=viewport.bounds.height,a=this.anchorPoint.x,h=this.anchorPoint.y,l=a*(e-1)*(n-viewport.width)+this.offset.x-e*t.x,c=h*(i-1)*(s-viewport.height)+this.offset.y-i*t.y;this.repeatX?this.pos.x=l%o:this.pos.x=l,this.repeatY?this.pos.y=c%r:this.pos.y=c,this.isDirty=!0}},e.prototype.preDraw=function(t){t.save(),t.setGlobalAlpha(t.globalAlpha()*this.getOpacity()),t.setTint(this.tint)},e.prototype.draw=function(t){var e=this.width,i=this.height,o=viewport.bounds.width,r=viewport.bounds.height,n=this.anchorPoint.x,s=this.anchorPoint.y,a=this.pos.x,h=this.pos.y;0===this.ratio.x&&0===this.ratio.y&&(a+=n*(o-e),h+=s*(r-i)),t.translate(a,h),t.drawPattern(this._pattern,0,0,2*viewport.width,2*viewport.height)},e.prototype.onDeactivateEvent=function(){off(VIEWPORT_ONCHANGE,this.updateLayer),off(VIEWPORT_ONRESIZE,this.resize)},e.prototype.destroy=function(){pool.push(this.ratio),this.ratio=void 0,off(WEBGL_ONCONTEXT_RESTORED,this.createPattern),t.prototype.destroy.call(this)},Object.defineProperties(e.prototype,i),e}(Sprite),NineSliceSprite=function(t){function e(e,i,o){if(t.call(this,e,i,o),"number"!=typeof o.width||"number"!=typeof o.height)throw new Error("height and width properties are mandatory");this.width=o.width,this.height=o.height}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.draw=function(t){var e=this.current,i=this.pos.x,o=this.pos.y,r=e.width,n=e.height,s=e.offset,a=this.offset;0!==e.angle&&(t.translate(-i,-o),t.rotate(e.angle),i-=n,r=e.height,n=e.width);var h=a.x+s.x,l=a.y+s.y,c=e.width/4,u=e.height/4;t.drawImage(this.image,h,l,c,u,i,o,c,u),t.drawImage(this.image,h+r-c,l,c,u,i+this.width-c,o,c,u),t.drawImage(this.image,h,l+n-u,c,u,i,o+this.height-u,c,u),t.drawImage(this.image,h+r-c,l+n-u,c,u,i+this.width-c,o+this.height-u,c,u);var d=r-(c<<1),p=n-(u<<1),f=this.width-(c<<1),y=this.height-(u<<1);t.drawImage(this.image,h+c,l,d,u,i+c,o,f,u),t.drawImage(this.image,h+c,l+n-u,d,u,i+c,o+this.height-u,f,u),t.drawImage(this.image,h,l+u,c,p,i,o+u,c,y),t.drawImage(this.image,h+r-c,l+u,c,p,i+this.width-c,o+u,c,y),t.drawImage(this.image,h+c,l+u,d,p,i+c,o+u,f,y)},e}(Sprite),GUI_Object=function(t){function e(e,i,o){t.call(this,e,i,o),this.isClickable=!0,this.holdThreshold=250,this.isHoldable=!1,this.hover=!1,this.holdTimeout=null,this.released=!0,this.floating=!0,this.isKinematic=!1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clicked=function(t){if(0===t.button&&this.isClickable)return this.dirty=!0,this.released=!1,this.isHoldable&&(null!==this.holdTimeout&&timer$1.clearTimeout(this.holdTimeout),this.holdTimeout=timer$1.setTimeout(this.hold.bind(this),this.holdThreshold,!1),this.released=!1),this.onClick(t)},e.prototype.onClick=function(){return!1},e.prototype.enter=function(t){return this.hover=!0,this.dirty=!0,this.onOver(t)},e.prototype.onOver=function(){},e.prototype.leave=function(t){return this.hover=!1,this.dirty=!0,this.release(t),this.onOut(t)},e.prototype.onOut=function(){},e.prototype.release=function(t){if(!1===this.released)return this.released=!0,this.dirty=!0,timer$1.clearTimeout(this.holdTimeout),this.onRelease(t)},e.prototype.onRelease=function(){return!1},e.prototype.hold=function(){timer$1.clearTimeout(this.holdTimeout),this.dirty=!0,this.released||this.onHold()},e.prototype.onHold=function(){},e.prototype.onActivateEvent=function(){registerPointerEvent("pointerdown",this,this.clicked.bind(this)),registerPointerEvent("pointerup",this,this.release.bind(this)),registerPointerEvent("pointercancel",this,this.release.bind(this)),registerPointerEvent("pointerenter",this,this.enter.bind(this)),registerPointerEvent("pointerleave",this,this.leave.bind(this))},e.prototype.onDeactivateEvent=function(){releasePointerEvent("pointerdown",this),releasePointerEvent("pointerup",this),releasePointerEvent("pointercancel",this),releasePointerEvent("pointerenter",this),releasePointerEvent("pointerleave",this),timer$1.clearTimeout(this.holdTimeout)},e}(Sprite),Collectable=function(t){function e(e,i,o){t.call(this,e,i,o),this.name=o.name,this.type=o.type,this.id=o.id,this.body=new Body(this,o.shapes||new Rect(0,0,this.width,this.height)),this.body.collisionType=collision.types.COLLECTABLE_OBJECT,this.body.setCollisionMask(collision.types.PLAYER_OBJECT),this.body.setStatic(!0),o.anchorPoint?this.anchorPoint.set(o.anchorPoint.x,o.anchorPoint.y):this.anchorPoint.set(0,0)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(Sprite),Trigger=function(t){function e(e,i,o){t.call(this,e,i,o.width||0,o.height||0),this.anchorPoint.set(0,0),this.fade=o.fade,this.duration=o.duration,this.fading=!1,this.name="Trigger",this.type=o.type,this.id=o.id,this.gotolevel=o.to,this.triggerSettings={event:"level"},["type","container","onLoaded","flatten","setViewportBounds","to"].forEach(function(t){void 0!==o[t]&&(this.triggerSettings[t]=o[t])}.bind(this)),this.body=new Body(this,o.shapes||new Rect(0,0,this.width,this.height)),this.body.collisionType=collision.types.ACTION_OBJECT,this.body.setCollisionMask(collision.types.PLAYER_OBJECT),this.body.setStatic(!0),this.resize(this.body.getBounds().width,this.body.getBounds().height)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getTriggerSettings=function(){return"string"==typeof this.triggerSettings.container&&(this.triggerSettings.container=world.getChildByName(this.triggerSettings.container)[0]),this.triggerSettings},e.prototype.onFadeComplete=function(){level.load(this.gotolevel,this.getTriggerSettings()),viewport.fadeOut(this.fade,this.duration)},e.prototype.triggerEvent=function(){var t=this.getTriggerSettings();if("level"!==t.event)throw new Error("Trigger invalid type");this.gotolevel=t.to,this.fade&&this.duration?this.fading||(this.fading=!0,viewport.fadeIn(this.fade,this.duration,this.onFadeComplete.bind(this))):level.load(this.gotolevel,t)},e.prototype.onCollision=function(){return"Trigger"===this.name&&this.triggerEvent.apply(this),!1},e}(Renderable),ParticleContainer=function(t){function e(e){t.call(this,viewport.pos.x,viewport.pos.y,viewport.width,viewport.height),this.autoSort=!1,this._updateCount=0,this._dt=0,this._emitter=e,this.autoTransform=!1,this.anchorPoint.set(0,0),this.isKinematic=!0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.update=function(t){if(++this._updateCount>this._emitter.framesToSkip&&(this._updateCount=0),this._updateCount>0)return this._dt+=t,!1;t+=this._dt,this._dt=0;for(var e=this.children.length-1;e>=0;--e){var i=this.children[e];i.inViewport=viewport.isVisible(i,this.floating),i.update(t)||this.removeChildNow(i)}return!0},e.prototype.draw=function(e,i){if(this.children.length>0){var o,r=e.getContext();this._emitter.textureAdditive&&(o=r.globalCompositeOperation,r.globalCompositeOperation="lighter"),t.prototype.draw.call(this,e,i),this._emitter.textureAdditive&&(r.globalCompositeOperation=o)}},e}(Container),pixel=(canvas=createCanvas(1,1),context=canvas.getContext("2d"),context.fillStyle="#fff",context.fillRect(0,0,1,1),canvas),canvas,context,ParticleEmitterSettings={width:0,height:0,image:pixel,totalParticles:50,angle:Math.PI/2,angleVariation:0,minLife:1e3,maxLife:3e3,speed:2,speedVariation:1,minRotation:0,maxRotation:0,minStartScale:1,maxStartScale:1,minEndScale:0,maxEndScale:0,gravity:0,wind:0,followTrajectory:!1,textureAdditive:!1,onlyInViewport:!0,floating:!1,maxParticles:10,frequency:100,duration:1/0,framesToSkip:0},ParticleEmitter=function(t){function e(e,i,o){t.call(this,e,i,1/0,1/0),this._stream=!1,this._frequencyTimer=0,this._durationTimer=0,this._enabled=!1,this.alwaysUpdate=!0,this.autoSort=!1,this.container=new ParticleContainer(this),Object.defineProperty(this.pos,"z",{get:function(){return this.container.pos.z}.bind(this),set:function(t){this.container.pos.z=t}.bind(this),enumerable:!0,configurable:!0}),Object.defineProperty(this,"floating",{get:function(){return this.container.floating},set:function(t){this.container.floating=t},enumerable:!0,configurable:!0}),this.reset(o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onActivateEvent=function(){this.ancestor.addChild(this.container),this.container.pos.z=this.pos.z,this.ancestor.autoSort||this.ancestor.sort()},e.prototype.onDeactivateEvent=function(){this.ancestor.hasChild(this.container)&&this.ancestor.removeChildNow(this.container)},e.prototype.destroy=function(){this.reset()},e.prototype.getRandomPointX=function(){return this.pos.x+randomFloat(0,this.width)},e.prototype.getRandomPointY=function(){return this.pos.y+randomFloat(0,this.height)},e.prototype.reset=function(t){var e=ParticleEmitterSettings,i="number"==typeof(t=t||{}).width?t.width:e.width,o="number"==typeof t.height?t.height:e.height;this.resize(i,o),Object.assign(this,e,t),this.container.reset()},e.prototype.addParticles=function(t){for(var e=0;e<~~t;e++){var i=pool.pull("Particle",this);this.container.addChild(i)}},e.prototype.isRunning=function(){return this._enabled&&this._stream},e.prototype.streamParticles=function(t){this._enabled=!0,this._stream=!0,this.frequency=Math.max(this.frequency,1),this._durationTimer="number"==typeof t?t:this.duration},e.prototype.stopStream=function(){this._enabled=!1},e.prototype.burstParticles=function(t){this._enabled=!0,this._stream=!1,this.addParticles("number"==typeof t?t:this.totalParticles),this._enabled=!1},e.prototype.update=function(t){if(this._enabled&&this._stream){if(this._durationTimer!==1/0&&(this._durationTimer-=t,this._durationTimer<=0))return this.stopStream(),!1;this._frequencyTimer+=t;var e=this.container.children.length;e<this.totalParticles&&this._frequencyTimer>=this.frequency&&(e+this.maxParticles<=this.totalParticles?this.addParticles(this.maxParticles):this.addParticles(this.totalParticles-e),this._frequencyTimer=0)}return!0},e}(Renderable),Particle=function(t){function e(e){t.call(this,e.getRandomPointX(),e.getRandomPointY(),e.image.width,e.image.height),this.vel=new Vector2d,this.onResetEvent(e,!0)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onResetEvent=function(e,i){void 0===i&&(i=!1),!1===i&&t.prototype.onResetEvent.call(this,e.getRandomPointX(),e.getRandomPointY(),e.image.width,e.image.height),this.alwaysUpdate=!0,this.image=e.image;var o=e.angle+(e.angleVariation>0?(randomFloat(0,2)-1)*e.angleVariation:0),r=e.speed+(e.speedVariation>0?(randomFloat(0,2)-1)*e.speedVariation:0);this.vel.set(r*Math.cos(o),-r*Math.sin(o)),this.life=randomFloat(e.minLife,e.maxLife),this.startLife=this.life,this.startScale=clamp(randomFloat(e.minStartScale,e.maxStartScale),e.minStartScale,e.maxStartScale),this.endScale=clamp(randomFloat(e.minEndScale,e.maxEndScale),e.minEndScale,e.maxEndScale),this.gravity=e.gravity,this.wind=e.wind,this.followTrajectory=e.followTrajectory,this.onlyInViewport=e.onlyInViewport,this.pos.z=e.z,this._deltaInv=timer$1.maxfps/1e3,e.followTrajectory||(this.angle=randomFloat(e.minRotation,e.maxRotation))},e.prototype.update=function(t){var e=t*this._deltaInv;this.life=this.life>t?this.life-t:0;var i=this.life/this.startLife,o=this.startScale;this.startScale>this.endScale?o=(o*=i)<this.endScale?this.endScale:o:this.startScale<this.endScale&&(o=(o/=i)>this.endScale?this.endScale:o),this.alpha=i,this.vel.x+=this.wind*e,this.vel.y+=this.gravity*e;var r=this.followTrajectory?Math.atan2(this.vel.y,this.vel.x):this.angle;return this.pos.x+=this.vel.x*e,this.pos.y+=this.vel.y*e,this.currentTransform.setTransform(o,0,0,0,o,0,this.pos.x,this.pos.y,1).rotate(r),(this.inViewport||!this.onlyInViewport)&&this.life>0},e.prototype.preDraw=function(t){t.save(),t.setGlobalAlpha(t.globalAlpha()*this.alpha),t.transform(this.currentTransform)},e.prototype.draw=function(t){var e=this.width,i=this.height;t.drawImage(this.image,0,0,e,i,-e/2,-i/2,e,i)},e}(Renderable),Entity=function(t){function e(e,i,o){if("number"!=typeof o.width||"number"!=typeof o.height)throw new Error("height and width properties are mandatory when passing settings parameters to an object entity");t.call(this,e,i,o.width,o.height),this.children=[],o.image&&(o.framewidth=o.framewidth||o.width,o.frameheight=o.frameheight||o.height,this.renderable=new Sprite(0,0,o)),o.anchorPoint?this.anchorPoint.set(o.anchorPoint.x,o.anchorPoint.y):this.anchorPoint.set(0,0),"string"==typeof o.name&&(this.name=o.name),this.type=o.type||"",this.id=o.id||"",this.alive=!0,void 0===o.shapes&&(o.shapes=new Polygon(0,0,[new Vector2d(0,0),new Vector2d(this.width,0),new Vector2d(this.width,this.height),new Vector2d(0,this.height)])),this.body=new Body(this,o.shapes,this.onBodyUpdate.bind(this)),0===this.width&&0===this.height&&this.resize(this.body.getBounds().width,this.body.getBounds().height),this.body.setCollisionMask(o.collisionMask),this.body.setCollisionType(o.collisionType),this.autoTransform=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={renderable:{configurable:!0}};return i.renderable.get=function(){return this.children[0]},i.renderable.set=function(e){if(!(e instanceof t))throw new Error(e+"should extend me.Renderable");this.children[0]=e,this.children[0].ancestor=this},e.prototype.update=function(e){return this.renderable&&(this.isDirty|=this.renderable.update(e)),t.prototype.update.call(this,e)},e.prototype.onBodyUpdate=function(t){this.getBounds().addBounds(t.getBounds(),!0),this.updateBoundsPos(this.pos.x,this.pos.y)},e.prototype.preDraw=function(e){e.save(),e.translate(this.pos.x+this.body.getBounds().x,this.pos.y+this.body.getBounds().y),this.renderable instanceof t&&e.translate(this.anchorPoint.x*this.body.getBounds().width,this.anchorPoint.y*this.body.getBounds().height)},e.prototype.draw=function(e,i){var o=this.renderable;o instanceof t&&(o.preDraw(e),o.draw(e,i),o.postDraw(e))},e.prototype.destroy=function(){this.renderable&&(this.renderable.destroy.apply(this.renderable,arguments),this.children.splice(0,1)),t.prototype.destroy.call(this,arguments)},e.prototype.onDeactivateEvent=function(){this.renderable&&this.renderable.onDeactivateEvent&&this.renderable.onDeactivateEvent()},Object.defineProperties(e.prototype,i),e}(Renderable),DraggableEntity=function(t){function e(e,i,o){t.call(this,e,i,o),this.dragging=!1,this.dragId=null,this.grabOffset=new Vector2d(0,0),this.onPointerEvent=registerPointerEvent,this.removePointerEvent=releasePointerEvent,this.initEvents()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initEvents=function(){this.mouseDown=function(t){this.translatePointerEvent(t,DRAGSTART)},this.mouseUp=function(t){this.translatePointerEvent(t,DRAGEND)},this.onPointerEvent("pointerdown",this,this.mouseDown.bind(this)),this.onPointerEvent("pointerup",this,this.mouseUp.bind(this)),this.onPointerEvent("pointercancel",this,this.mouseUp.bind(this)),on(POINTERMOVE,this.dragMove,this),on(DRAGSTART,this.dragStart,this),on(DRAGEND,this.dragEnd,this)},e.prototype.translatePointerEvent=function(t,e){emit(e,t)},e.prototype.dragStart=function(t){if(!1===this.dragging)return this.dragging=!0,this.grabOffset.set(t.gameX,t.gameY),this.grabOffset.sub(this.pos),!1},e.prototype.dragMove=function(t){!0===this.dragging&&(this.pos.set(t.gameX,t.gameY,this.pos.z),this.pos.sub(this.grabOffset))},e.prototype.dragEnd=function(){if(!0===this.dragging)return this.dragging=!1,!1},e.prototype.destroy=function(){off(POINTERMOVE,this.dragMove),off(DRAGSTART,this.dragStart),off(DRAGEND,this.dragEnd),this.removePointerEvent("pointerdown",this),this.removePointerEvent("pointerup",this)},e}(Entity),DroptargetEntity=function(t){function e(e,i,o){t.call(this,e,i,o),this.CHECKMETHOD_OVERLAP="overlaps",this.CHECKMETHOD_CONTAINS="contains",this.checkMethod=null,on(DRAGEND,this.checkOnMe,this),this.checkMethod=this[this.CHECKMETHOD_OVERLAP]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setCheckMethod=function(t){void 0!==this[t]&&(this.checkMethod=this[t])},e.prototype.checkOnMe=function(t,e){e&&this.checkMethod(e.getBounds())&&this.drop(e)},e.prototype.drop=function(){},e.prototype.destroy=function(){off(DRAGEND,this.checkOnMe)},e}(Entity);function warning(t,e,i){var o="melonJS: %s is deprecated since version %s, please use %s",r=(new Error).stack;console.groupCollapsed?console.groupCollapsed("%c"+o,"font-weight:normal;color:yellow;",t,i,e):console.warn(o,t,i,e),void 0!==r&&console.warn(r),console.groupCollapsed&&console.groupEnd()}function apply(){}var deprecated=Object.freeze({__proto__:null,warning:warning,apply:apply}),version="10.2.0";exports.initialized=!1;var skipAutoInit=!1;function boot(){!0!==exports.initialized&&(pool.register("me.Entity",Entity),pool.register("me.Collectable",Collectable),pool.register("me.Trigger",Trigger),pool.register("me.Tween",Tween,!0),pool.register("me.Color",Color,!0),pool.register("me.Particle",Particle,!0),pool.register("me.Sprite",Sprite),pool.register("me.NineSliceSprite",NineSliceSprite),pool.register("me.Renderable",Renderable),pool.register("me.Text",Text,!0),pool.register("me.BitmapText",BitmapText),pool.register("me.BitmapTextData",BitmapTextData,!0),pool.register("me.ImageLayer",ImageLayer),pool.register("me.ColorLayer",ColorLayer,!0),pool.register("me.Vector2d",Vector2d,!0),pool.register("me.Vector3d",Vector3d,!0),pool.register("me.ObservableVector2d",ObservableVector2d,!0),pool.register("me.ObservableVector3d",ObservableVector3d,!0),pool.register("me.Matrix2d",Matrix2d,!0),pool.register("me.Matrix3d",Matrix3d,!0),pool.register("me.Rect",Rect,!0),pool.register("me.Polygon",Polygon,!0),pool.register("me.Line",Line,!0),pool.register("me.Ellipse",Ellipse,!0),pool.register("me.Bounds",Bounds$1,!0),pool.register("Entity",Entity),pool.register("Collectable",Collectable),pool.register("Trigger",Trigger),pool.register("Tween",Tween,!0),pool.register("Color",Color,!0),pool.register("Particle",Particle,!0),pool.register("Sprite",Sprite),pool.register("NineSliceSprite",NineSliceSprite),pool.register("Renderable",Renderable),pool.register("Text",Text,!0),pool.register("BitmapText",BitmapText),pool.register("BitmapTextData",BitmapTextData,!0),pool.register("ImageLayer",ImageLayer),pool.register("ColorLayer",ColorLayer,!0),pool.register("Vector2d",Vector2d,!0),pool.register("Vector3d",Vector3d,!0),pool.register("ObservableVector2d",ObservableVector2d,!0),pool.register("ObservableVector3d",ObservableVector3d,!0),pool.register("Matrix2d",Matrix2d,!0),pool.register("Matrix3d",Matrix3d,!0),pool.register("Rect",Rect,!0),pool.register("Polygon",Polygon,!0),pool.register("Line",Line,!0),pool.register("Ellipse",Ellipse,!0),pool.register("Bounds",Bounds$1,!0),emit(BOOT),loader.setNocache(utils.getUriFragment().nocache||!1),initKeyboardEvent(),exports.initialized=!0)}device$1.onReady((function(){boot()})),exports.BitmapText=BitmapText,exports.BitmapTextData=BitmapTextData,exports.Body=Body,exports.Bounds=Bounds$1,exports.Camera2d=Camera2d,exports.CanvasRenderer=CanvasRenderer,exports.Collectable=Collectable,exports.Color=Color,exports.ColorLayer=ColorLayer,exports.Container=Container,exports.DraggableEntity=DraggableEntity,exports.DroptargetEntity=DroptargetEntity,exports.Ellipse=Ellipse,exports.Entity=Entity,exports.GLShader=GLShader,exports.GUI_Object=GUI_Object,exports.ImageLayer=ImageLayer,exports.Line=Line,exports.Math=math,exports.Matrix2d=Matrix2d,exports.Matrix3d=Matrix3d,exports.NineSliceSprite=NineSliceSprite,exports.ObservableVector2d=ObservableVector2d,exports.ObservableVector3d=ObservableVector3d,exports.Particle=Particle,exports.ParticleEmitter=ParticleEmitter,exports.ParticleEmitterSettings=ParticleEmitterSettings,exports.Pointer=Pointer,exports.Polygon=Polygon,exports.QuadTree=QuadTree,exports.Rect=Rect,exports.Renderable=Renderable,exports.Renderer=Renderer,exports.Sprite=Sprite,exports.Stage=Stage,exports.TMXHexagonalRenderer=TMXHexagonalRenderer,exports.TMXIsometricRenderer=TMXIsometricRenderer,exports.TMXLayer=TMXLayer,exports.TMXOrthogonalRenderer=TMXOrthogonalRenderer,exports.TMXRenderer=TMXRenderer,exports.TMXStaggeredRenderer=TMXStaggeredRenderer,exports.TMXTileMap=TMXTileMap,exports.TMXTileset=TMXTileset,exports.TMXTilesetGroup=TMXTilesetGroup,exports.Text=Text,exports.Tile=Tile,exports.Trigger=Trigger,exports.Tween=Tween,exports.Vector2d=Vector2d,exports.Vector3d=Vector3d,exports.WebGLCompositor=WebGLCompositor,exports.WebGLRenderer=WebGLRenderer,exports.World=World,exports.audio=audio,exports.boot=boot,exports.collision=collision,exports.deprecated=deprecated,exports.device=device$1,exports.event=event,exports.game=game,exports.input=input,exports.level=level,exports.loader=loader,exports.plugin=plugin,exports.plugins=plugins,exports.pool=pool,exports.save=save,exports.skipAutoInit=skipAutoInit,exports.state=state,exports.timer=timer$1,exports.utils=utils,exports.version=version,exports.video=video,Object.defineProperty(exports,"__esModule",{value:!0})})),me.deprecated.apply();
30
+ function(){var t;HowlerGlobal.prototype._pos=[0,0,0],HowlerGlobal.prototype._orientation=[0,0,-1,0,1,0],HowlerGlobal.prototype.stereo=function(t){var e=this;if(!e.ctx||!e.ctx.listener)return e;for(var i=e._howls.length-1;i>=0;i--)e._howls[i].stereo(t);return e},HowlerGlobal.prototype.pos=function(t,e,i){var o=this;return o.ctx&&o.ctx.listener?(e="number"!=typeof e?o._pos[1]:e,i="number"!=typeof i?o._pos[2]:i,"number"!=typeof t?o._pos:(o._pos=[t,e,i],void 0!==o.ctx.listener.positionX?(o.ctx.listener.positionX.setTargetAtTime(o._pos[0],Howler.ctx.currentTime,.1),o.ctx.listener.positionY.setTargetAtTime(o._pos[1],Howler.ctx.currentTime,.1),o.ctx.listener.positionZ.setTargetAtTime(o._pos[2],Howler.ctx.currentTime,.1)):o.ctx.listener.setPosition(o._pos[0],o._pos[1],o._pos[2]),o)):o},HowlerGlobal.prototype.orientation=function(t,e,i,o,r,n){var s=this;if(!s.ctx||!s.ctx.listener)return s;var a=s._orientation;return e="number"!=typeof e?a[1]:e,i="number"!=typeof i?a[2]:i,o="number"!=typeof o?a[3]:o,r="number"!=typeof r?a[4]:r,n="number"!=typeof n?a[5]:n,"number"!=typeof t?a:(s._orientation=[t,e,i,o,r,n],void 0!==s.ctx.listener.forwardX?(s.ctx.listener.forwardX.setTargetAtTime(t,Howler.ctx.currentTime,.1),s.ctx.listener.forwardY.setTargetAtTime(e,Howler.ctx.currentTime,.1),s.ctx.listener.forwardZ.setTargetAtTime(i,Howler.ctx.currentTime,.1),s.ctx.listener.upX.setTargetAtTime(o,Howler.ctx.currentTime,.1),s.ctx.listener.upY.setTargetAtTime(r,Howler.ctx.currentTime,.1),s.ctx.listener.upZ.setTargetAtTime(n,Howler.ctx.currentTime,.1)):s.ctx.listener.setOrientation(t,e,i,o,r,n),s)},Howl.prototype.init=(t=Howl.prototype.init,function(e){var i=this;return i._orientation=e.orientation||[1,0,0],i._stereo=e.stereo||null,i._pos=e.pos||null,i._pannerAttr={coneInnerAngle:void 0!==e.coneInnerAngle?e.coneInnerAngle:360,coneOuterAngle:void 0!==e.coneOuterAngle?e.coneOuterAngle:360,coneOuterGain:void 0!==e.coneOuterGain?e.coneOuterGain:0,distanceModel:void 0!==e.distanceModel?e.distanceModel:"inverse",maxDistance:void 0!==e.maxDistance?e.maxDistance:1e4,panningModel:void 0!==e.panningModel?e.panningModel:"HRTF",refDistance:void 0!==e.refDistance?e.refDistance:1,rolloffFactor:void 0!==e.rolloffFactor?e.rolloffFactor:1},i._onstereo=e.onstereo?[{fn:e.onstereo}]:[],i._onpos=e.onpos?[{fn:e.onpos}]:[],i._onorientation=e.onorientation?[{fn:e.onorientation}]:[],t.call(this,e)}),Howl.prototype.stereo=function(t,i){var o=this;if(!o._webAudio)return o;if("loaded"!==o._state)return o._queue.push({event:"stereo",action:function(){o.stereo(t,i)}}),o;var r=void 0===Howler.ctx.createStereoPanner?"spatial":"stereo";if(void 0===i){if("number"!=typeof t)return o._stereo;o._stereo=t,o._pos=[t,0,0]}for(var n=o._getSoundIds(i),s=0;s<n.length;s++){var a=o._soundById(n[s]);if(a){if("number"!=typeof t)return a._stereo;a._stereo=t,a._pos=[t,0,0],a._node&&(a._pannerAttr.panningModel="equalpower",a._panner&&a._panner.pan||e(a,r),"spatial"===r?void 0!==a._panner.positionX?(a._panner.positionX.setValueAtTime(t,Howler.ctx.currentTime),a._panner.positionY.setValueAtTime(0,Howler.ctx.currentTime),a._panner.positionZ.setValueAtTime(0,Howler.ctx.currentTime)):a._panner.setPosition(t,0,0):a._panner.pan.setValueAtTime(t,Howler.ctx.currentTime)),o._emit("stereo",a._id)}}return o},Howl.prototype.pos=function(t,i,o,r){var n=this;if(!n._webAudio)return n;if("loaded"!==n._state)return n._queue.push({event:"pos",action:function(){n.pos(t,i,o,r)}}),n;if(i="number"!=typeof i?0:i,o="number"!=typeof o?-.5:o,void 0===r){if("number"!=typeof t)return n._pos;n._pos=[t,i,o]}for(var s=n._getSoundIds(r),a=0;a<s.length;a++){var h=n._soundById(s[a]);if(h){if("number"!=typeof t)return h._pos;h._pos=[t,i,o],h._node&&(h._panner&&!h._panner.pan||e(h,"spatial"),void 0!==h._panner.positionX?(h._panner.positionX.setValueAtTime(t,Howler.ctx.currentTime),h._panner.positionY.setValueAtTime(i,Howler.ctx.currentTime),h._panner.positionZ.setValueAtTime(o,Howler.ctx.currentTime)):h._panner.setPosition(t,i,o)),n._emit("pos",h._id)}}return n},Howl.prototype.orientation=function(t,i,o,r){var n=this;if(!n._webAudio)return n;if("loaded"!==n._state)return n._queue.push({event:"orientation",action:function(){n.orientation(t,i,o,r)}}),n;if(i="number"!=typeof i?n._orientation[1]:i,o="number"!=typeof o?n._orientation[2]:o,void 0===r){if("number"!=typeof t)return n._orientation;n._orientation=[t,i,o]}for(var s=n._getSoundIds(r),a=0;a<s.length;a++){var h=n._soundById(s[a]);if(h){if("number"!=typeof t)return h._orientation;h._orientation=[t,i,o],h._node&&(h._panner||(h._pos||(h._pos=n._pos||[0,0,-.5]),e(h,"spatial")),void 0!==h._panner.orientationX?(h._panner.orientationX.setValueAtTime(t,Howler.ctx.currentTime),h._panner.orientationY.setValueAtTime(i,Howler.ctx.currentTime),h._panner.orientationZ.setValueAtTime(o,Howler.ctx.currentTime)):h._panner.setOrientation(t,i,o)),n._emit("orientation",h._id)}}return n},Howl.prototype.pannerAttr=function(){var t,i,o,r=this,n=arguments;if(!r._webAudio)return r;if(0===n.length)return r._pannerAttr;if(1===n.length){if("object"!=typeof n[0])return(o=r._soundById(parseInt(n[0],10)))?o._pannerAttr:r._pannerAttr;t=n[0],void 0===i&&(t.pannerAttr||(t.pannerAttr={coneInnerAngle:t.coneInnerAngle,coneOuterAngle:t.coneOuterAngle,coneOuterGain:t.coneOuterGain,distanceModel:t.distanceModel,maxDistance:t.maxDistance,refDistance:t.refDistance,rolloffFactor:t.rolloffFactor,panningModel:t.panningModel}),r._pannerAttr={coneInnerAngle:void 0!==t.pannerAttr.coneInnerAngle?t.pannerAttr.coneInnerAngle:r._coneInnerAngle,coneOuterAngle:void 0!==t.pannerAttr.coneOuterAngle?t.pannerAttr.coneOuterAngle:r._coneOuterAngle,coneOuterGain:void 0!==t.pannerAttr.coneOuterGain?t.pannerAttr.coneOuterGain:r._coneOuterGain,distanceModel:void 0!==t.pannerAttr.distanceModel?t.pannerAttr.distanceModel:r._distanceModel,maxDistance:void 0!==t.pannerAttr.maxDistance?t.pannerAttr.maxDistance:r._maxDistance,refDistance:void 0!==t.pannerAttr.refDistance?t.pannerAttr.refDistance:r._refDistance,rolloffFactor:void 0!==t.pannerAttr.rolloffFactor?t.pannerAttr.rolloffFactor:r._rolloffFactor,panningModel:void 0!==t.pannerAttr.panningModel?t.pannerAttr.panningModel:r._panningModel})}else 2===n.length&&(t=n[0],i=parseInt(n[1],10));for(var s=r._getSoundIds(i),a=0;a<s.length;a++)if(o=r._soundById(s[a])){var h=o._pannerAttr;h={coneInnerAngle:void 0!==t.coneInnerAngle?t.coneInnerAngle:h.coneInnerAngle,coneOuterAngle:void 0!==t.coneOuterAngle?t.coneOuterAngle:h.coneOuterAngle,coneOuterGain:void 0!==t.coneOuterGain?t.coneOuterGain:h.coneOuterGain,distanceModel:void 0!==t.distanceModel?t.distanceModel:h.distanceModel,maxDistance:void 0!==t.maxDistance?t.maxDistance:h.maxDistance,refDistance:void 0!==t.refDistance?t.refDistance:h.refDistance,rolloffFactor:void 0!==t.rolloffFactor?t.rolloffFactor:h.rolloffFactor,panningModel:void 0!==t.panningModel?t.panningModel:h.panningModel};var l=o._panner;l?(l.coneInnerAngle=h.coneInnerAngle,l.coneOuterAngle=h.coneOuterAngle,l.coneOuterGain=h.coneOuterGain,l.distanceModel=h.distanceModel,l.maxDistance=h.maxDistance,l.refDistance=h.refDistance,l.rolloffFactor=h.rolloffFactor,l.panningModel=h.panningModel):(o._pos||(o._pos=r._pos||[0,0,-.5]),e(o,"spatial"))}return r},Sound.prototype.init=function(t){return function(){var e=this,i=e._parent;e._orientation=i._orientation,e._stereo=i._stereo,e._pos=i._pos,e._pannerAttr=i._pannerAttr,t.call(this),e._stereo?i.stereo(e._stereo):e._pos&&i.pos(e._pos[0],e._pos[1],e._pos[2],e._id)}}(Sound.prototype.init),Sound.prototype.reset=function(t){return function(){var e=this,i=e._parent;return e._orientation=i._orientation,e._stereo=i._stereo,e._pos=i._pos,e._pannerAttr=i._pannerAttr,e._stereo?i.stereo(e._stereo):e._pos?i.pos(e._pos[0],e._pos[1],e._pos[2],e._id):e._panner&&(e._panner.disconnect(0),e._panner=void 0,i._refreshBuffer(e)),t.call(this)}}(Sound.prototype.reset);var e=function(t,e){"spatial"===(e=e||"spatial")?(t._panner=Howler.ctx.createPanner(),t._panner.coneInnerAngle=t._pannerAttr.coneInnerAngle,t._panner.coneOuterAngle=t._pannerAttr.coneOuterAngle,t._panner.coneOuterGain=t._pannerAttr.coneOuterGain,t._panner.distanceModel=t._pannerAttr.distanceModel,t._panner.maxDistance=t._pannerAttr.maxDistance,t._panner.refDistance=t._pannerAttr.refDistance,t._panner.rolloffFactor=t._pannerAttr.rolloffFactor,t._panner.panningModel=t._pannerAttr.panningModel,void 0!==t._panner.positionX?(t._panner.positionX.setValueAtTime(t._pos[0],Howler.ctx.currentTime),t._panner.positionY.setValueAtTime(t._pos[1],Howler.ctx.currentTime),t._panner.positionZ.setValueAtTime(t._pos[2],Howler.ctx.currentTime)):t._panner.setPosition(t._pos[0],t._pos[1],t._pos[2]),void 0!==t._panner.orientationX?(t._panner.orientationX.setValueAtTime(t._orientation[0],Howler.ctx.currentTime),t._panner.orientationY.setValueAtTime(t._orientation[1],Howler.ctx.currentTime),t._panner.orientationZ.setValueAtTime(t._orientation[2],Howler.ctx.currentTime)):t._panner.setOrientation(t._orientation[0],t._orientation[1],t._orientation[2])):(t._panner=Howler.ctx.createStereoPanner(),t._panner.pan.setValueAtTime(t._stereo,Howler.ctx.currentTime)),t._panner.connect(t._node),t._paused||t._parent.pause(t._id,!0).play(t._id,!0)}}()}(howler);var ObservableVector2d=function(t){function e(e,i,o){if(void 0===e&&(e=0),void 0===i&&(i=0),t.call(this,e,i),void 0===o)throw new Error("undefined `onUpdate` callback");this.setCallback(o.onUpdate,o.scope)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={x:{configurable:!0},y:{configurable:!0}};return e.prototype.onResetEvent=function(t,e,i){return void 0===t&&(t=0),void 0===e&&(e=0),this.setMuted(t,e),void 0!==i&&this.setCallback(i.onUpdate,i.scope),this},i.x.get=function(){return this._x},i.x.set=function(t){var e=this.onUpdate.call(this.scope,t,this._y,this._x,this._y);this._x=e&&"x"in e?e.x:t},i.y.get=function(){return this._y},i.y.set=function(t){var e=this.onUpdate.call(this.scope,this._x,t,this._x,this._y);this._y=e&&"y"in e?e.y:t},e.prototype._set=function(t,e){var i=this.onUpdate.call(this.scope,t,e,this._x,this._y);return i&&"x"in i&&"y"in i?(this._x=i.x,this._y=i.y):(this._x=t,this._y=e),this},e.prototype.setMuted=function(t,e){return this._x=t,this._y=e,this},e.prototype.setCallback=function(t,e){if(void 0===e&&(e=null),"function"!=typeof t)throw new Error("invalid `onUpdate` callback");return this.onUpdate=t,this.scope=e,this},e.prototype.add=function(t){return this._set(this._x+t.x,this._y+t.y)},e.prototype.sub=function(t){return this._set(this._x-t.x,this._y-t.y)},e.prototype.scale=function(t,e){return this._set(this._x*t,this._y*(void 0!==e?e:t))},e.prototype.scaleV=function(t){return this._set(this._x*t.x,this._y*t.y)},e.prototype.div=function(t){return this._set(this._x/t,this._y/t)},e.prototype.abs=function(){return this._set(this._x<0?-this._x:this._x,this._y<0?-this._y:this._y)},e.prototype.clamp=function(t,i){return new e(clamp(this.x,t,i),clamp(this.y,t,i),{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.clampSelf=function(t,e){return this._set(clamp(this._x,t,e),clamp(this._y,t,e))},e.prototype.minV=function(t){return this._set(this._x<t.x?this._x:t.x,this._y<t.y?this._y:t.y)},e.prototype.maxV=function(t){return this._set(this._x>t.x?this._x:t.x,this._y>t.y?this._y:t.y)},e.prototype.floor=function(){return new e(Math.floor(this._x),Math.floor(this._y),{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.floorSelf=function(){return this._set(Math.floor(this._x),Math.floor(this._y))},e.prototype.ceil=function(){return new e(Math.ceil(this._x),Math.ceil(this._y),{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.ceilSelf=function(){return this._set(Math.ceil(this._x),Math.ceil(this._y))},e.prototype.negate=function(){return new e(-this._x,-this._y,{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.negateSelf=function(){return this._set(-this._x,-this._y)},e.prototype.copy=function(t){return this._set(t.x,t.y)},e.prototype.equals=function(t){return this._x===t.x&&this._y===t.y},e.prototype.perp=function(){return this._set(this._y,-this._x)},e.prototype.rotate=function(t,e){var i=0,o=0;"object"==typeof e&&(i=e.x,o=e.y);var r=this._x-i,n=this._y-o,s=Math.cos(t),a=Math.sin(t);return this._set(r*s-n*a+i,r*a+n*s+o)},e.prototype.dot=function(t){return this._x*t.x+this._y*t.y},e.prototype.cross=function(t){return this._x*t.y-this._y*t.x},e.prototype.lerp=function(t,e){return this._x+=(t.x-this._x)*e,this._y+=(t.y-this._y)*e,this},e.prototype.distance=function(t){return Math.sqrt((this._x-t.x)*(this._x-t.x)+(this._y-t.y)*(this._y-t.y))},e.prototype.clone=function(){return pool.pull("ObservableVector2d",this._x,this._y,{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.toVector2d=function(){return pool.pull("Vector2d",this._x,this._y)},e.prototype.toString=function(){return"x:"+this._x+",y:"+this._y},Object.defineProperties(e.prototype,i),e}(Vector2d),Vector3d=function(){for(var t,e=[],i=arguments.length;i--;)e[i]=arguments[i];(t=this).onResetEvent.apply(t,e)};Vector3d.prototype.onResetEvent=function(t,e,i){return void 0===t&&(t=0),void 0===e&&(e=0),void 0===i&&(i=0),this.x=t,this.y=e,this.z=i,this},Vector3d.prototype._set=function(t,e,i){return void 0===i&&(i=0),this.x=t,this.y=e,this.z=i,this},Vector3d.prototype.set=function(t,e,i){if(t!==+t||e!==+e||void 0!==i&&i!==+i)throw new Error("invalid x, y, z parameters (not a number)");return this._set(t,e,i)},Vector3d.prototype.setZero=function(){return this.set(0,0,0)},Vector3d.prototype.setV=function(t){return this._set(t.x,t.y,t.z)},Vector3d.prototype.add=function(t){return this._set(this.x+t.x,this.y+t.y,this.z+(t.z||0))},Vector3d.prototype.sub=function(t){return this._set(this.x-t.x,this.y-t.y,this.z-(t.z||0))},Vector3d.prototype.scale=function(t,e,i){return e=void 0!==e?e:t,this._set(this.x*t,this.y*e,this.z*(i||1))},Vector3d.prototype.scaleV=function(t){return this.scale(t.x,t.y,t.z)},Vector3d.prototype.toIso=function(){return this._set(this.x-this.y,.5*(this.x+this.y),this.z)},Vector3d.prototype.to2d=function(){return this._set(this.y+this.x/2,this.y-this.x/2,this.z)},Vector3d.prototype.div=function(t){return this._set(this.x/t,this.y/t,this.z/t)},Vector3d.prototype.abs=function(){return this._set(this.x<0?-this.x:this.x,this.y<0?-this.y:this.y,this.z<0?-this.z:this.z)},Vector3d.prototype.clamp=function(t,e){return new Vector3d(clamp(this.x,t,e),clamp(this.y,t,e),clamp(this.z,t,e))},Vector3d.prototype.clampSelf=function(t,e){return this._set(clamp(this.x,t,e),clamp(this.y,t,e),clamp(this.z,t,e))},Vector3d.prototype.minV=function(t){var e=t.z||0;return this._set(this.x<t.x?this.x:t.x,this.y<t.y?this.y:t.y,this.z<e?this.z:e)},Vector3d.prototype.maxV=function(t){var e=t.z||0;return this._set(this.x>t.x?this.x:t.x,this.y>t.y?this.y:t.y,this.z>e?this.z:e)},Vector3d.prototype.floor=function(){return new Vector3d(Math.floor(this.x),Math.floor(this.y),Math.floor(this.z))},Vector3d.prototype.floorSelf=function(){return this._set(Math.floor(this.x),Math.floor(this.y),Math.floor(this.z))},Vector3d.prototype.ceil=function(){return new Vector3d(Math.ceil(this.x),Math.ceil(this.y),Math.ceil(this.z))},Vector3d.prototype.ceilSelf=function(){return this._set(Math.ceil(this.x),Math.ceil(this.y),Math.ceil(this.z))},Vector3d.prototype.negate=function(){return new Vector3d(-this.x,-this.y,-this.z)},Vector3d.prototype.negateSelf=function(){return this._set(-this.x,-this.y,-this.z)},Vector3d.prototype.copy=function(t){return this._set(t.x,t.y,t.z||0)},Vector3d.prototype.equals=function(){var t,e,i;return arguments.length>=2?(t=arguments[0],e=arguments[1],i=arguments[2]):(t=arguments[0].x,e=arguments[0].y,i=arguments[0].z),void 0===i&&(i=this.z),this.x===t&&this.y===e&&this.z===i},Vector3d.prototype.normalize=function(){return this.div(this.length()||1)},Vector3d.prototype.perp=function(){return this._set(this.y,-this.x,this.z)},Vector3d.prototype.rotate=function(t,e){var i=0,o=0;"object"==typeof e&&(i=e.x,o=e.y);var r=this.x-i,n=this.y-o,s=Math.cos(t),a=Math.sin(t);return this._set(r*s-n*a+i,r*a+n*s+o,this.z)},Vector3d.prototype.dot=function(t){return this.x*t.x+this.y*t.y+this.z*(void 0!==t.z?t.z:this.z)},Vector3d.prototype.cross=function(t){var e=this.x,i=this.y,o=this.z,r=t.x,n=t.y,s=t.z;return this.x=i*s-o*n,this.y=o*r-e*s,this.z=e*n-i*r,this},Vector3d.prototype.length2=function(){return this.dot(this)},Vector3d.prototype.length=function(){return Math.sqrt(this.length2())},Vector3d.prototype.lerp=function(t,e){return this.x+=(t.x-this.x)*e,this.y+=(t.y-this.y)*e,this.z+=(t.z-this.z)*e,this},Vector3d.prototype.distance=function(t){var e=this.x-t.x,i=this.y-t.y,o=this.z-(t.z||0);return Math.sqrt(e*e+i*i+o*o)},Vector3d.prototype.angle=function(t){return Math.acos(clamp(this.dot(t)/(this.length()*t.length()),-1,1))},Vector3d.prototype.project=function(t){var e=this.dot(t)/t.length2();return this.scale(e,e,e)},Vector3d.prototype.projectN=function(t){var e=this.dot(t)/t.length2();return this.scale(e,e,e)},Vector3d.prototype.clone=function(){return pool.pull("Vector3d",this.x,this.y,this.z)},Vector3d.prototype.toString=function(){return"x:"+this.x+",y:"+this.y+",z:"+this.z};var ObservableVector3d=function(t){function e(e,i,o,r){if(void 0===e&&(e=0),void 0===i&&(i=0),void 0===o&&(o=0),t.call(this,e,i,o),void 0===r)throw new Error("undefined `onUpdate` callback");this.setCallback(r.onUpdate,r.scope)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={x:{configurable:!0},y:{configurable:!0},z:{configurable:!0}};return e.prototype.onResetEvent=function(t,e,i,o){return void 0===t&&(t=0),void 0===e&&(e=0),void 0===i&&(i=0),this.setMuted(t,e,i),void 0!==o&&this.setCallback(o.onUpdate,o.scope),this},i.x.get=function(){return this._x},i.x.set=function(t){var e=this.onUpdate.call(this.scope,t,this._y,this._z,this._x,this._y,this._z);this._x=e&&"x"in e?e.x:t},i.y.get=function(){return this._y},i.y.set=function(t){var e=this.onUpdate.call(this.scope,this._x,t,this._z,this._x,this._y,this._z);this._y=e&&"y"in e?e.y:t},i.z.get=function(){return this._z},i.z.set=function(t){var e=this.onUpdate.call(this.scope,this._x,this._y,t,this._x,this._y,this._z);this._z=e&&"z"in e?e.z:t},e.prototype._set=function(t,e,i){var o=this.onUpdate.call(this.scope,t,e,i,this._x,this._y,this._z);return o&&"x"in o&&"y"in o&&"z"in o?(this._x=o.x,this._y=o.y,this._z=o.z):(this._x=t,this._y=e,this._z=i||0),this},e.prototype.setMuted=function(t,e,i){return this._x=t,this._y=e,this._z=i||0,this},e.prototype.setCallback=function(t,e){if(void 0===e&&(e=null),"function"!=typeof t)throw new Error("invalid `onUpdate` callback");return this.onUpdate=t,this.scope=e,this},e.prototype.add=function(t){return this._set(this._x+t.x,this._y+t.y,this._z+(t.z||0))},e.prototype.sub=function(t){return this._set(this._x-t.x,this._y-t.y,this._z-(t.z||0))},e.prototype.scale=function(t,e,i){return e=void 0!==e?e:t,this._set(this._x*t,this._y*e,this._z*(i||1))},e.prototype.scaleV=function(t){return this._set(this._x*t.x,this._y*t.y,this._z*(t.z||1))},e.prototype.div=function(t){return this._set(this._x/t,this._y/t,this._z/t)},e.prototype.abs=function(){return this._set(this._x<0?-this._x:this._x,this._y<0?-this._y:this._y,this._Z<0?-this._z:this._z)},e.prototype.clamp=function(t,i){return new e(clamp(this._x,t,i),clamp(this._y,t,i),clamp(this._z,t,i),{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.clampSelf=function(t,e){return this._set(clamp(this._x,t,e),clamp(this._y,t,e),clamp(this._z,t,e))},e.prototype.minV=function(t){var e=t.z||0;return this._set(this._x<t.x?this._x:t.x,this._y<t.y?this._y:t.y,this._z<e?this._z:e)},e.prototype.maxV=function(t){var e=t.z||0;return this._set(this._x>t.x?this._x:t.x,this._y>t.y?this._y:t.y,this._z>e?this._z:e)},e.prototype.floor=function(){return new e(Math.floor(this._x),Math.floor(this._y),Math.floor(this._z),{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.floorSelf=function(){return this._set(Math.floor(this._x),Math.floor(this._y),Math.floor(this._z))},e.prototype.ceil=function(){return new e(Math.ceil(this._x),Math.ceil(this._y),Math.ceil(this._z),{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.ceilSelf=function(){return this._set(Math.ceil(this._x),Math.ceil(this._y),Math.ceil(this._z))},e.prototype.negate=function(){return new e(-this._x,-this._y,-this._z,{onUpdate:this.onUpdate,scope:this.scope})},e.prototype.negateSelf=function(){return this._set(-this._x,-this._y,-this._z)},e.prototype.copy=function(t){return this._set(t.x,t.y,t.z||0)},e.prototype.equals=function(t){return this._x===t.x&&this._y===t.y&&this._z===(t.z||this._z)},e.prototype.perp=function(){return this._set(this._y,-this._x,this._z)},e.prototype.rotate=function(t,e){var i=0,o=0;"object"==typeof e&&(i=e.x,o=e.y);var r=this.x-i,n=this.y-o,s=Math.cos(t),a=Math.sin(t);return this._set(r*s-n*a+i,r*a+n*s+o,this.z)},e.prototype.dot=function(t){return this._x*t.x+this._y*t.y+this._z*(t.z||1)},e.prototype.cross=function(t){var e=this._x,i=this._y,o=this._z,r=t.x,n=t.y,s=t.z;return this._set(i*s-o*n,o*r-e*s,e*n-i*r)},e.prototype.lerp=function(t,e){return this._x+=(t.x-this._x)*e,this._y+=(t.y-this._y)*e,this._z+=(t.z-this._z)*e,this},e.prototype.distance=function(t){var e=this._x-t.x,i=this._y-t.y,o=this._z-(t.z||0);return Math.sqrt(e*e+i*i+o*o)},e.prototype.clone=function(){return pool.pull("ObservableVector3d",this._x,this._y,this._z,{onUpdate:this.onUpdate})},e.prototype.toVector3d=function(){return pool.pull("Vector3d",this._x,this._y,this._z)},e.prototype.toString=function(){return"x:"+this._x+",y:"+this._y+",z:"+this._z},Object.defineProperties(e.prototype,i),e}(Vector3d),earcut$2={exports:{}};function earcut(t,e,i){i=i||2;var o,r,n,s,a,h,l,c=e&&e.length,u=c?e[0]*i:t.length,d=linkedList(t,0,u,i,!0),p=[];if(!d||d.next===d.prev)return p;if(c&&(d=eliminateHoles(t,e,d,i)),t.length>80*i){o=n=t[0],r=s=t[1];for(var f=i;f<u;f+=i)(a=t[f])<o&&(o=a),(h=t[f+1])<r&&(r=h),a>n&&(n=a),h>s&&(s=h);l=0!==(l=Math.max(n-o,s-r))?1/l:0}return earcutLinked(d,p,i,o,r,l),p}function linkedList(t,e,i,o,r){var n,s;if(r===signedArea(t,e,i,o)>0)for(n=e;n<i;n+=o)s=insertNode(n,t[n],t[n+1],s);else for(n=i-o;n>=e;n-=o)s=insertNode(n,t[n],t[n+1],s);return s&&equals(s,s.next)&&(removeNode(s),s=s.next),s}function filterPoints(t,e){if(!t)return t;e||(e=t);var i,o=t;do{if(i=!1,o.steiner||!equals(o,o.next)&&0!==area(o.prev,o,o.next))o=o.next;else{if(removeNode(o),(o=e=o.prev)===o.next)break;i=!0}}while(i||o!==e);return e}function earcutLinked(t,e,i,o,r,n,s){if(t){!s&&n&&indexCurve(t,o,r,n);for(var a,h,l=t;t.prev!==t.next;)if(a=t.prev,h=t.next,n?isEarHashed(t,o,r,n):isEar(t))e.push(a.i/i),e.push(t.i/i),e.push(h.i/i),removeNode(t),t=h.next,l=h.next;else if((t=h)===l){s?1===s?earcutLinked(t=cureLocalIntersections(filterPoints(t),e,i),e,i,o,r,n,2):2===s&&splitEarcut(t,e,i,o,r,n):earcutLinked(filterPoints(t),e,i,o,r,n,1);break}}}function isEar(t){var e=t.prev,i=t,o=t.next;if(area(e,i,o)>=0)return!1;for(var r=t.next.next;r!==t.prev;){if(pointInTriangle(e.x,e.y,i.x,i.y,o.x,o.y,r.x,r.y)&&area(r.prev,r,r.next)>=0)return!1;r=r.next}return!0}function isEarHashed(t,e,i,o){var r=t.prev,n=t,s=t.next;if(area(r,n,s)>=0)return!1;for(var a=r.x<n.x?r.x<s.x?r.x:s.x:n.x<s.x?n.x:s.x,h=r.y<n.y?r.y<s.y?r.y:s.y:n.y<s.y?n.y:s.y,l=r.x>n.x?r.x>s.x?r.x:s.x:n.x>s.x?n.x:s.x,c=r.y>n.y?r.y>s.y?r.y:s.y:n.y>s.y?n.y:s.y,u=zOrder(a,h,e,i,o),d=zOrder(l,c,e,i,o),p=t.prevZ,f=t.nextZ;p&&p.z>=u&&f&&f.z<=d;){if(p!==t.prev&&p!==t.next&&pointInTriangle(r.x,r.y,n.x,n.y,s.x,s.y,p.x,p.y)&&area(p.prev,p,p.next)>=0)return!1;if(p=p.prevZ,f!==t.prev&&f!==t.next&&pointInTriangle(r.x,r.y,n.x,n.y,s.x,s.y,f.x,f.y)&&area(f.prev,f,f.next)>=0)return!1;f=f.nextZ}for(;p&&p.z>=u;){if(p!==t.prev&&p!==t.next&&pointInTriangle(r.x,r.y,n.x,n.y,s.x,s.y,p.x,p.y)&&area(p.prev,p,p.next)>=0)return!1;p=p.prevZ}for(;f&&f.z<=d;){if(f!==t.prev&&f!==t.next&&pointInTriangle(r.x,r.y,n.x,n.y,s.x,s.y,f.x,f.y)&&area(f.prev,f,f.next)>=0)return!1;f=f.nextZ}return!0}function cureLocalIntersections(t,e,i){var o=t;do{var r=o.prev,n=o.next.next;!equals(r,n)&&intersects(r,o,o.next,n)&&locallyInside(r,n)&&locallyInside(n,r)&&(e.push(r.i/i),e.push(o.i/i),e.push(n.i/i),removeNode(o),removeNode(o.next),o=t=n),o=o.next}while(o!==t);return filterPoints(o)}function splitEarcut(t,e,i,o,r,n){var s=t;do{for(var a=s.next.next;a!==s.prev;){if(s.i!==a.i&&isValidDiagonal(s,a)){var h=splitPolygon(s,a);return s=filterPoints(s,s.next),h=filterPoints(h,h.next),earcutLinked(s,e,i,o,r,n),void earcutLinked(h,e,i,o,r,n)}a=a.next}s=s.next}while(s!==t)}function eliminateHoles(t,e,i,o){var r,n,s,a=[];for(r=0,n=e.length;r<n;r++)(s=linkedList(t,e[r]*o,r<n-1?e[r+1]*o:t.length,o,!1))===s.next&&(s.steiner=!0),a.push(getLeftmost(s));for(a.sort(compareX),r=0;r<a.length;r++)i=filterPoints(i=eliminateHole(a[r],i),i.next);return i}function compareX(t,e){return t.x-e.x}function eliminateHole(t,e){var i=findHoleBridge(t,e);if(!i)return e;var o=splitPolygon(i,t),r=filterPoints(i,i.next);return filterPoints(o,o.next),e===i?r:e}function findHoleBridge(t,e){var i,o=e,r=t.x,n=t.y,s=-1/0;do{if(n<=o.y&&n>=o.next.y&&o.next.y!==o.y){var a=o.x+(n-o.y)*(o.next.x-o.x)/(o.next.y-o.y);if(a<=r&&a>s){if(s=a,a===r){if(n===o.y)return o;if(n===o.next.y)return o.next}i=o.x<o.next.x?o:o.next}}o=o.next}while(o!==e);if(!i)return null;if(r===s)return i;var h,l=i,c=i.x,u=i.y,d=1/0;o=i;do{r>=o.x&&o.x>=c&&r!==o.x&&pointInTriangle(n<u?r:s,n,c,u,n<u?s:r,n,o.x,o.y)&&(h=Math.abs(n-o.y)/(r-o.x),locallyInside(o,t)&&(h<d||h===d&&(o.x>i.x||o.x===i.x&&sectorContainsSector(i,o)))&&(i=o,d=h)),o=o.next}while(o!==l);return i}function sectorContainsSector(t,e){return area(t.prev,t,e.prev)<0&&area(e.next,t,t.next)<0}function indexCurve(t,e,i,o){var r=t;do{null===r.z&&(r.z=zOrder(r.x,r.y,e,i,o)),r.prevZ=r.prev,r.nextZ=r.next,r=r.next}while(r!==t);r.prevZ.nextZ=null,r.prevZ=null,sortLinked(r)}function sortLinked(t){var e,i,o,r,n,s,a,h,l=1;do{for(i=t,t=null,n=null,s=0;i;){for(s++,o=i,a=0,e=0;e<l&&(a++,o=o.nextZ);e++);for(h=l;a>0||h>0&&o;)0!==a&&(0===h||!o||i.z<=o.z)?(r=i,i=i.nextZ,a--):(r=o,o=o.nextZ,h--),n?n.nextZ=r:t=r,r.prevZ=n,n=r;i=o}n.nextZ=null,l*=2}while(s>1);return t}function zOrder(t,e,i,o,r){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=32767*(t-i)*r)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=32767*(e-o)*r)|e<<8))|e<<4))|e<<2))|e<<1))<<1}function getLeftmost(t){var e=t,i=t;do{(e.x<i.x||e.x===i.x&&e.y<i.y)&&(i=e),e=e.next}while(e!==t);return i}function pointInTriangle(t,e,i,o,r,n,s,a){return(r-s)*(e-a)-(t-s)*(n-a)>=0&&(t-s)*(o-a)-(i-s)*(e-a)>=0&&(i-s)*(n-a)-(r-s)*(o-a)>=0}function isValidDiagonal(t,e){return t.next.i!==e.i&&t.prev.i!==e.i&&!intersectsPolygon(t,e)&&(locallyInside(t,e)&&locallyInside(e,t)&&middleInside(t,e)&&(area(t.prev,t,e.prev)||area(t,e.prev,e))||equals(t,e)&&area(t.prev,t,t.next)>0&&area(e.prev,e,e.next)>0)}function area(t,e,i){return(e.y-t.y)*(i.x-e.x)-(e.x-t.x)*(i.y-e.y)}function equals(t,e){return t.x===e.x&&t.y===e.y}function intersects(t,e,i,o){var r=sign(area(t,e,i)),n=sign(area(t,e,o)),s=sign(area(i,o,t)),a=sign(area(i,o,e));return r!==n&&s!==a||(!(0!==r||!onSegment(t,i,e))||(!(0!==n||!onSegment(t,o,e))||(!(0!==s||!onSegment(i,t,o))||!(0!==a||!onSegment(i,e,o)))))}function onSegment(t,e,i){return e.x<=Math.max(t.x,i.x)&&e.x>=Math.min(t.x,i.x)&&e.y<=Math.max(t.y,i.y)&&e.y>=Math.min(t.y,i.y)}function sign(t){return t>0?1:t<0?-1:0}function intersectsPolygon(t,e){var i=t;do{if(i.i!==t.i&&i.next.i!==t.i&&i.i!==e.i&&i.next.i!==e.i&&intersects(i,i.next,t,e))return!0;i=i.next}while(i!==t);return!1}function locallyInside(t,e){return area(t.prev,t,t.next)<0?area(t,e,t.next)>=0&&area(t,t.prev,e)>=0:area(t,e,t.prev)<0||area(t,t.next,e)<0}function middleInside(t,e){var i=t,o=!1,r=(t.x+e.x)/2,n=(t.y+e.y)/2;do{i.y>n!=i.next.y>n&&i.next.y!==i.y&&r<(i.next.x-i.x)*(n-i.y)/(i.next.y-i.y)+i.x&&(o=!o),i=i.next}while(i!==t);return o}function splitPolygon(t,e){var i=new Node$1(t.i,t.x,t.y),o=new Node$1(e.i,e.x,e.y),r=t.next,n=e.prev;return t.next=e,e.prev=t,i.next=r,r.prev=i,o.next=i,i.prev=o,n.next=o,o.prev=n,o}function insertNode(t,e,i,o){var r=new Node$1(t,e,i);return o?(r.next=o.next,r.prev=o,o.next.prev=r,o.next=r):(r.prev=r,r.next=r),r}function removeNode(t){t.next.prev=t.prev,t.prev.next=t.next,t.prevZ&&(t.prevZ.nextZ=t.nextZ),t.nextZ&&(t.nextZ.prevZ=t.prevZ)}function Node$1(t,e,i){this.i=t,this.x=e,this.y=i,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function signedArea(t,e,i,o){for(var r=0,n=e,s=i-o;n<i;n+=o)r+=(t[s]-t[n])*(t[n+1]+t[s+1]),s=n;return r}earcut$2.exports=earcut,earcut$2.exports.default=earcut,earcut.deviation=function(t,e,i,o){var r=e&&e.length,n=r?e[0]*i:t.length,s=Math.abs(signedArea(t,0,n,i));if(r)for(var a=0,h=e.length;a<h;a++){var l=e[a]*i,c=a<h-1?e[a+1]*i:t.length;s-=Math.abs(signedArea(t,l,c,i))}var u=0;for(a=0;a<o.length;a+=3){var d=o[a]*i,p=o[a+1]*i,f=o[a+2]*i;u+=Math.abs((t[d]-t[f])*(t[p+1]-t[d+1])-(t[d]-t[p])*(t[f+1]-t[d+1]))}return 0===s&&0===u?0:Math.abs((u-s)/s)},earcut.flatten=function(t){for(var e=t[0][0].length,i={vertices:[],holes:[],dimensions:e},o=0,r=0;r<t.length;r++){for(var n=0;n<t[r].length;n++)for(var s=0;s<e;s++)i.vertices.push(t[r][n][s]);r>0&&(o+=t[r-1].length,i.holes.push(o))}return i};var earcut$1=earcut$2.exports,Polygon=function(t,e,i){this.pos=new Vector2d,this._bounds,this.points=[],this.edges=[],this.indices=[],this.normals=[],this.shapeType="Polygon",this.setShape(t,e,i)};Polygon.prototype.onResetEvent=function(t,e,i){this.setShape(t,e,i)},Polygon.prototype.setShape=function(t,e,i){return this.pos.set(t,e),this.setVertices(i),this},Polygon.prototype.setVertices=function(t){var e=this;if(!Array.isArray(t))return this;if(t[0]instanceof Vector2d)this.points=t;else if(this.points.length=0,"object"==typeof t[0])t.forEach((function(t){e.points.push(new Vector2d(t.x,t.y))}));else for(var i=0;i<t.length;i+=2)this.points.push(new Vector2d(t[i],t[i+1]));return this.recalc(),this.updateBounds(),this},Polygon.prototype.transform=function(t){for(var e=this.points,i=e.length,o=0;o<i;o++)t.apply(e[o]);return this.recalc(),this.updateBounds(),this},Polygon.prototype.toIso=function(){return this.rotate(Math.PI/4).scale(Math.SQRT2,Math.SQRT1_2)},Polygon.prototype.to2d=function(){return this.scale(Math.SQRT1_2,Math.SQRT2).rotate(-Math.PI/4)},Polygon.prototype.rotate=function(t,e){if(0!==t){for(var i=this.points,o=i.length,r=0;r<o;r++)i[r].rotate(t,e);this.recalc(),this.updateBounds()}return this},Polygon.prototype.scale=function(t,e){e=void 0!==e?e:t;for(var i=this.points,o=i.length,r=0;r<o;r++)i[r].scale(t,e);return this.recalc(),this.updateBounds(),this},Polygon.prototype.scaleV=function(t){return this.scale(t.x,t.y)},Polygon.prototype.recalc=function(){var t,e=this.edges,i=this.normals,o=this.indices,r=this.points,n=r.length;if(n<3)throw new Error("Requires at least 3 points");for(t=0;t<n;t++)void 0===e[t]&&(e[t]=new Vector2d),e[t].copy(r[(t+1)%n]).sub(r[t]),void 0===i[t]&&(i[t]=new Vector2d),i[t].copy(e[t]).perp().normalize();return e.length=n,i.length=n,o.length=0,this},Polygon.prototype.getIndices=function(){return 0===this.indices.length&&(this.indices=earcut$1(this.points.flatMap((function(t){return[t.x,t.y]})))),this.indices},Polygon.prototype.isConvex=function(){var t,e,i,o,r=0,n=this.points,s=n.length;if(s<3)return null;for(t=0;t<s;t++)if(i=(t+2)%s,o=(n[e=(t+1)%s].x-n[t].x)*(n[i].y-n[e].y),(o-=(n[e].y-n[t].y)*(n[i].x-n[e].x))<0?r|=1:o>0&&(r|=2),3===r)return!1;return 0!==r||null},Polygon.prototype.translate=function(){var t,e;return 2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),this.pos.x+=t,this.pos.y+=e,this.getBounds().translate(t,e),this},Polygon.prototype.shift=function(){var t,e;2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),this.pos.x=t,this.pos.y=e,this.updateBounds()},Polygon.prototype.contains=function(){var t,e;2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y);for(var i=!1,o=this.pos.x,r=this.pos.y,n=this.points,s=n.length,a=0,h=s-1;a<s;h=a++){var l=n[a].y+r,c=n[a].x+o,u=n[h].y+r,d=n[h].x+o;l>e!=u>e&&t<(d-c)*(e-l)/(u-l)+c&&(i=!i)}return i},Polygon.prototype.getBounds=function(){return void 0===this._bounds&&(this._bounds=pool.pull("Bounds")),this._bounds},Polygon.prototype.updateBounds=function(){var t=this.getBounds();return t.update(this.points),t.translate(this.pos),t},Polygon.prototype.clone=function(){var t=[];return this.points.forEach((function(e){t.push(e.clone())})),new Polygon(this.pos.x,this.pos.y,t)};var Rect=function(t){function e(e,i,o,r){t.call(this,e,i,[new Vector2d(0,0),new Vector2d(o,0),new Vector2d(o,r),new Vector2d(0,r)]),this.shapeType="Rectangle"}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={left:{configurable:!0},right:{configurable:!0},top:{configurable:!0},bottom:{configurable:!0},width:{configurable:!0},height:{configurable:!0},centerX:{configurable:!0},centerY:{configurable:!0}};return e.prototype.onResetEvent=function(t,e,i,o){this.setShape(t,e,i,o)},e.prototype.setShape=function(t,e,i,o){var r=i;return this.pos.set(t,e),4===arguments.length&&((r=this.points)[0].set(0,0),r[1].set(i,0),r[2].set(i,o),r[3].set(0,o)),this.setVertices(r),this},i.left.get=function(){return this.pos.x},i.right.get=function(){var t=this.width;return this.pos.x+t||t},i.top.get=function(){return this.pos.y},i.bottom.get=function(){var t=this.height;return this.pos.y+t||t},i.width.get=function(){return this.points[2].x},i.width.set=function(t){this.points[1].x=this.points[2].x=t,this.recalc(),this.updateBounds()},i.height.get=function(){return this.points[2].y},i.height.set=function(t){this.points[2].y=this.points[3].y=t,this.recalc(),this.updateBounds()},i.centerX.get=function(){return isFinite(this.width)?this.pos.x+this.width/2:this.width},i.centerX.set=function(t){this.pos.x=t-this.width/2},i.centerY.get=function(){return isFinite(this.height)?this.pos.y+this.height/2:this.height},i.centerY.set=function(t){this.pos.y=t-this.height/2},e.prototype.resize=function(t,e){return this.width=t,this.height=e,this},e.prototype.scale=function(t,e){return void 0===e&&(e=t),this.width*=t,this.height*=e,this},e.prototype.clone=function(){return new e(this.pos.x,this.pos.y,this.width,this.height)},e.prototype.copy=function(t){return this.setShape(t.pos.x,t.pos.y,t.width,t.height)},e.prototype.union=function(t){var e=Math.min(this.left,t.left),i=Math.min(this.top,t.top);return this.resize(Math.max(this.right,t.right)-e,Math.max(this.bottom,t.bottom)-i),this.pos.set(e,i),this},e.prototype.overlaps=function(t){return this.left<t.right&&t.left<this.right&&this.top<t.bottom&&t.top<this.bottom},e.prototype.contains=function(){var t,i,o,r,n=arguments[0];return 2===arguments.length?(t=i=n,o=r=arguments[1]):n instanceof e?(t=n.left,i=n.right,o=n.top,r=n.bottom):(t=i=n.x,o=r=n.y),t>=this.left&&i<=this.right&&o>=this.top&&r<=this.bottom},e.prototype.equals=function(t){return t.left===this.left&&t.right===this.right&&t.top===this.top&&t.bottom===this.bottom},e.prototype.isFinite=function(){return isFinite(this.pos.x)&&isFinite(this.pos.y)&&isFinite(this.width)&&isFinite(this.height)},e.prototype.toPolygon=function(){return new t(this.pos.x,this.pos.y,this.points)},Object.defineProperties(e.prototype,i),e}(Polygon),_keyStatus={},_keyLock={},_keyLocked={},_keyRefs={},_preventDefaultForKeys={},_keyBindings={},keyDownEvent=function(t,e,i){e=e||t.keyCode||t.button;var o=_keyBindings[e];if(emit(KEYDOWN,o,e,!o||!_keyLocked[o]),o){if(!_keyLocked[o]){var r=void 0!==i?i:e;_keyRefs[o][r]||(_keyStatus[o]++,_keyRefs[o][r]=!0)}return!_preventDefaultForKeys[e]||"function"!=typeof t.preventDefault||t.preventDefault()}return!0},keyUpEvent=function(t,e,i){e=e||t.keyCode||t.button;var o=_keyBindings[e];if(emit(KEYUP,o,e),o){var r=void 0!==i?i:e;return _keyRefs[o][r]=void 0,_keyStatus[o]>0&&_keyStatus[o]--,_keyLocked[o]=!1,!_preventDefaultForKeys[e]||"function"!=typeof t.preventDefault||t.preventDefault()}return!0},keyBoardEventTarget=null,KEY={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,PAUSE:19,CAPS_LOCK:20,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,PRINT_SCREEN:42,INSERT:45,DELETE:46,NUM0:48,NUM1:49,NUM2:50,NUM3:51,NUM4:52,NUM5:53,NUM6:54,NUM7:55,NUM8:56,NUM9: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,WINDOW_KEY:91,NUMPAD0:96,NUMPAD1:97,NUMPAD2:98,NUMPAD3:99,NUMPAD4:100,NUMPAD5:101,NUMPAD6:102,NUMPAD7:103,NUMPAD8:104,NUMPAD9: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,TILDE:126,NUM_LOCK:144,SCROLL_LOCK:145,SEMICOLON:186,PLUS:187,COMMA:188,MINUS:189,PERIOD:190,FORWAND_SLASH:191,GRAVE_ACCENT:192,OPEN_BRACKET:219,BACK_SLASH:220,CLOSE_BRACKET:221,SINGLE_QUOTE:222};function initKeyboardEvent(){null===keyBoardEventTarget&&!1===device$1.isMobile&&((keyBoardEventTarget=window).addEventListener("keydown",keyDownEvent,!1),keyBoardEventTarget.addEventListener("keyup",keyUpEvent,!1))}function isKeyPressed(t){return!(!_keyStatus[t]||_keyLocked[t])&&(_keyLock[t]&&(_keyLocked[t]=!0),!0)}function keyStatus(t){return _keyStatus[t]>0}function triggerKeyEvent(t,e,i){!0===e?keyDownEvent({},t,i):keyUpEvent({},t,i)}function bindKey(t,e,i,o){void 0===o&&(o=preventDefault),_keyBindings[t]=e,_preventDefaultForKeys[t]=o,_keyStatus[e]=0,_keyLock[e]=i||!1,_keyLocked[e]=!1,_keyRefs[e]={}}function getBindingKey(t){return _keyBindings[t]}function unlockKey(t){_keyLocked[t]=!1}function unbindKey(t){var e=_keyBindings[t];_keyStatus[e]=0,_keyLock[e]=!1,_keyRefs[e]={},_keyBindings[t]=null,_preventDefaultForKeys[t]=null}var Bounds$1=function(t){this.onResetEvent(t)},prototypeAccessors$1={x:{configurable:!0},y:{configurable:!0},width:{configurable:!0},height:{configurable:!0},left:{configurable:!0},right:{configurable:!0},top:{configurable:!0},bottom:{configurable:!0},centerX:{configurable:!0},centerY:{configurable:!0},center:{configurable:!0}};Bounds$1.prototype.onResetEvent=function(t){void 0===this.min?(this.min={x:1/0,y:1/0},this.max={x:-1/0,y:-1/0}):this.clear(),void 0!==t&&this.update(t),this._center=new Vector2d},Bounds$1.prototype.clear=function(){this.setMinMax(1/0,1/0,-1/0,-1/0)},Bounds$1.prototype.setMinMax=function(t,e,i,o){this.min.x=t,this.min.y=e,this.max.x=i,this.max.y=o},prototypeAccessors$1.x.get=function(){return this.min.x},prototypeAccessors$1.x.set=function(t){var e=this.max.x-this.min.x;this.min.x=t,this.max.x=t+e},prototypeAccessors$1.y.get=function(){return this.min.y},prototypeAccessors$1.y.set=function(t){var e=this.max.y-this.min.y;this.min.y=t,this.max.y=t+e},prototypeAccessors$1.width.get=function(){return this.max.x-this.min.x},prototypeAccessors$1.width.set=function(t){this.max.x=this.min.x+t},prototypeAccessors$1.height.get=function(){return this.max.y-this.min.y},prototypeAccessors$1.height.set=function(t){this.max.y=this.min.y+t},prototypeAccessors$1.left.get=function(){return this.min.x},prototypeAccessors$1.right.get=function(){return this.max.x},prototypeAccessors$1.top.get=function(){return this.min.y},prototypeAccessors$1.bottom.get=function(){return this.max.y},prototypeAccessors$1.centerX.get=function(){return this.min.x+this.width/2},prototypeAccessors$1.centerY.get=function(){return this.min.y+this.height/2},prototypeAccessors$1.center.get=function(){return this._center.set(this.centerX,this.centerY)},Bounds$1.prototype.update=function(t){this.add(t,!0)},Bounds$1.prototype.add=function(t,e){void 0===e&&(e=!1),!0===e&&this.clear();for(var i=0;i<t.length;i++){var o=t[i];o.x>this.max.x&&(this.max.x=o.x),o.x<this.min.x&&(this.min.x=o.x),o.y>this.max.y&&(this.max.y=o.y),o.y<this.min.y&&(this.min.y=o.y)}},Bounds$1.prototype.addBounds=function(t,e){void 0===e&&(e=!1),!0===e&&this.clear(),t.max.x>this.max.x&&(this.max.x=t.max.x),t.min.x<this.min.x&&(this.min.x=t.min.x),t.max.y>this.max.y&&(this.max.y=t.max.y),t.min.y<this.min.y&&(this.min.y=t.min.y)},Bounds$1.prototype.addPoint=function(t,e){void 0!==e&&(t=e.apply(t)),this.min.x=Math.min(this.min.x,t.x),this.max.x=Math.max(this.max.x,t.x),this.min.y=Math.min(this.min.y,t.y),this.max.y=Math.max(this.max.y,t.y)},Bounds$1.prototype.addFrame=function(t,e,i,o,r){var n=me.pool.pull("Vector2d");this.addPoint(n.set(t,e),r),this.addPoint(n.set(i,e),r),this.addPoint(n.set(t,o),r),this.addPoint(n.set(i,o),r),me.pool.push(n)},Bounds$1.prototype.contains=function(){var t,e,i,o,r=arguments[0];return 2===arguments.length?(t=e=r,i=o=arguments[1]):r instanceof Bounds$1?(t=r.min.x,e=r.max.x,i=r.min.y,o=r.max.y):(t=e=r.x,i=o=r.y),t>=this.min.x&&e<=this.max.x&&i>=this.min.y&&o<=this.max.y},Bounds$1.prototype.overlaps=function(t){return!(this.right<t.left||this.left>t.right||this.bottom<t.top||this.top>t.bottom)},Bounds$1.prototype.isFinite=function(){return isFinite(this.min.x)&&isFinite(this.max.x)&&isFinite(this.min.y)&&isFinite(this.max.y)},Bounds$1.prototype.translate=function(){var t,e;2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),this.min.x+=t,this.max.x+=t,this.min.y+=e,this.max.y+=e},Bounds$1.prototype.shift=function(){var t,e;2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y);var i=this.max.x-this.min.x,o=this.max.y-this.min.y;this.min.x=t,this.max.x=t+i,this.min.y=e,this.max.y=e+o},Bounds$1.prototype.clone=function(){var t=new Bounds$1;return t.addBounds(this),t},Bounds$1.prototype.toPolygon=function(){return new Polygon(this.x,this.y,[new Vector2d(0,0),new Vector2d(this.width,0),new Vector2d(this.width,this.height),new Vector2d(0,this.height)])},Object.defineProperties(Bounds$1.prototype,prototypeAccessors$1);var tmpVec=new Vector2d,Pointer=function(t){function e(e,i,o,r){void 0===e&&(e=0),void 0===i&&(i=0),void 0===o&&(o=1),void 0===r&&(r=1),t.call(this),this.setMinMax(e,i,e+o,i+r),this.LEFT=0,this.MIDDLE=1,this.RIGHT=2,this.event=void 0,this.type=void 0,this.button=0,this.isPrimary=!1,this.pageX=0,this.pageY=0,this.clientX=0,this.clientY=0,this.movementX=0,this.movementY=0,this.deltaMode=0,this.deltaX=0,this.deltaY=0,this.deltaZ=0,this.gameX=0,this.gameY=0,this.gameScreenX=0,this.gameScreenY=0,this.gameWorldX=0,this.gameWorldY=0,this.gameLocalX=0,this.gameLocalY=0,this.pointerId=void 0,this.isNormalized=!1,this.locked=!1,this.bind=[0,0,0]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setEvent=function(t,e,i,o,r,n){void 0===e&&(e=0),void 0===i&&(i=0),void 0===o&&(o=0),void 0===r&&(r=0),void 0===n&&(n=1),this.event=t,this.pageX=e,this.pageY=i,this.clientX=o,this.clientY=r,globalToLocal(this.pageX,this.pageY,tmpVec),this.gameScreenX=this.x=tmpVec.x,this.gameScreenY=this.y=tmpVec.y,this.isNormalized=!device$1.PointerEvent||device$1.PointerEvent&&!(t instanceof window.PointerEvent),this.locked=locked,this.movementX=t.movementX||0,this.movementY=t.movementY||0,"wheel"===t.type?(this.deltaMode=t.deltaMode||0,this.deltaX=t.deltaX||0,this.deltaY=t.deltaY||0,this.deltaZ=t.deltaZ||0):(this.deltaMode=0,this.deltaX=0,this.deltaY=0,this.deltaZ=0),this.pointerId=n,this.isPrimary=void 0===t.isPrimary||t.isPrimary,this.button=t.button||0,this.type=t.type,void 0!==viewport&&viewport.localToWorld(this.gameScreenX,this.gameScreenY,tmpVec),this.gameWorldX=tmpVec.x,this.gameWorldY=tmpVec.y,!1===this.isNormalized?(this.width=t.width||1,this.height=t.height||1):"number"==typeof t.radiusX?(this.width=2*t.radiusX||1,this.height=2*t.radiusY||1):this.width=this.height=1},e}(Bounds$1),T_POINTERS=[],eventHandlers=new Map,currentPointer,pointerInitialized=!1,lastTimeStamp=0,activeEventList=[],WHEEL=["wheel"],POINTER_MOVE=["pointermove","mousemove","touchmove"],POINTER_DOWN=["pointerdown","mousedown","touchstart"],POINTER_UP=["pointerup","mouseup","touchend"],POINTER_CANCEL=["pointercancel","mousecancel","touchcancel"],POINTER_ENTER=["pointerenter","mouseenter","touchenter"],POINTER_OVER=["pointerover","mouseover","touchover"],POINTER_LEAVE=["pointerleave","mouseleave","touchleave"],pointerEventList=[WHEEL[0],POINTER_MOVE[0],POINTER_DOWN[0],POINTER_UP[0],POINTER_CANCEL[0],POINTER_ENTER[0],POINTER_OVER[0],POINTER_LEAVE[0]],mouseEventList=[WHEEL[0],POINTER_MOVE[1],POINTER_DOWN[1],POINTER_UP[1],POINTER_CANCEL[1],POINTER_ENTER[1],POINTER_OVER[1],POINTER_LEAVE[1]],touchEventList=[POINTER_MOVE[2],POINTER_DOWN[2],POINTER_UP[2],POINTER_CANCEL[2],POINTER_ENTER[2],POINTER_OVER[2],POINTER_LEAVE[2]],pointerEventMap={wheel:WHEEL,pointermove:POINTER_MOVE,pointerdown:POINTER_DOWN,pointerup:POINTER_UP,pointercancel:POINTER_CANCEL,pointerenter:POINTER_ENTER,pointerover:POINTER_OVER,pointerleave:POINTER_LEAVE},normalizedEvents=[];function registerEventListener(t,e){for(var i=0;i<t.length;i++)-1===POINTER_MOVE.indexOf(t[i])&&pointerEventTarget.addEventListener(t[i],e,{passive:!1===preventDefault})}function enablePointerEvent(){if(!pointerInitialized){currentPointer=new Rect(0,0,1,1);for(var t=0;t<device$1.maxTouchPoints;t++)T_POINTERS.push(new Pointer);var e;null===pointerEventTarget&&(pointerEventTarget=renderer.getScreenCanvas()),activeEventList=device$1.PointerEvent?pointerEventList:mouseEventList,device$1.touch&&!device$1.PointerEvent&&(activeEventList=activeEventList.concat(touchEventList)),registerEventListener(activeEventList,onPointerEvent),void 0===throttlingInterval&&(throttlingInterval=~~(1e3/timer$1.maxfps)),!0===device$1.autoFocus&&(device$1.focus(),pointerEventTarget.addEventListener(activeEventList[2],(function(){device$1.focus()}),{passive:!1===preventDefault}));var i=findAllActiveEvents(activeEventList,POINTER_MOVE);if(throttlingInterval<17)for(e=0;e<i.length;e++)-1!==activeEventList.indexOf(i[e])&&pointerEventTarget.addEventListener(i[e],onMoveEvent,{passive:!0});else for(e=0;e<i.length;e++)-1!==activeEventList.indexOf(i[e])&&pointerEventTarget.addEventListener(i[e],throttle(onMoveEvent,throttlingInterval,!1),{passive:!0});setTouchAction(pointerEventTarget),device$1.hasPointerLockSupport&&document.addEventListener("pointerlockchange",(function(){locked=document.pointerLockElement===getParent(),emit(POINTERLOCKCHANGE,locked)}),!0),pointerInitialized=!0}}function findActiveEvent(t,e){for(var i=0;i<e.length;i++){if(-1!==t.indexOf(e[i]))return e[i]}}function findAllActiveEvents(t,e){for(var i=[],o=0;o<e.length;o++){-1!==t.indexOf(e[o])&&i.push(e[o])}return i}function triggerEvent(t,e,i,o){var r;if(t.callbacks[e]){t.pointerId=o;for(var n=t.callbacks[e].length-1;n>=0&&(r=t.callbacks[e][n]);n--)if(!1===r(i))return!0}return!1}function dispatchEvent(t){for(var e=!1;t.length>0;){var i=t.pop();if(T_POINTERS.push(i),void 0!==i.event.timeStamp){if(i.event.timeStamp<lastTimeStamp)continue;lastTimeStamp=i.event.timeStamp}currentPointer.setShape(i.gameWorldX,i.gameWorldY,i.width,i.height),POINTER_MOVE.includes(i.type)&&(i.gameX=i.gameLocalX=i.gameScreenX,i.gameY=i.gameLocalY=i.gameScreenY,emit(POINTERMOVE,i));for(var o,r=world.broadphase.retrieve(currentPointer,Container.prototype._sortReverseZ),n=(r=r.concat([viewport])).length;o=r[--n];){if(eventHandlers.has(o)&&!0!==o.isKinematic){var s,a=eventHandlers.get(o),h=a.region,l=h.ancestor,c=h.getBounds();if(!0===h.isFloating?(i.gameX=i.gameLocalX=i.gameScreenX,i.gameY=i.gameLocalY=i.gameScreenY):(i.gameX=i.gameLocalX=i.gameWorldX,i.gameY=i.gameLocalY=i.gameWorldY),void 0!==l){var u=l.getBounds();i.gameLocalX=i.gameX-u.x,i.gameLocalY=i.gameY-u.y}var d=i.gameX,p=i.gameY;if(void 0!==h.currentTransform&&!h.currentTransform.isIdentity()){var f=h.currentTransform.applyInverse(pool.pull("Vector2d",d,p));d=f.x,p=f.y,pool.push(f)}switch(s=c.contains(d,p),i.type){case POINTER_MOVE[0]:case POINTER_MOVE[1]:case POINTER_MOVE[2]:case POINTER_MOVE[3]:if(a.pointerId!==i.pointerId||s){if(null===a.pointerId&&s&&triggerEvent(a,findActiveEvent(activeEventList,POINTER_ENTER),i,i.pointerId)){e=!0;break}}else if(triggerEvent(a,findActiveEvent(activeEventList,POINTER_LEAVE),i,null)){e=!0;break}if(s&&triggerEvent(a,i.type,i,i.pointerId)){e=!0;break}break;case POINTER_UP[0]:case POINTER_UP[1]:case POINTER_UP[2]:case POINTER_UP[3]:if(a.pointerId===i.pointerId&&s&&triggerEvent(a,i.type,i,null)){e=!0;break}break;case POINTER_CANCEL[0]:case POINTER_CANCEL[1]:case POINTER_CANCEL[2]:case POINTER_CANCEL[3]:if(a.pointerId===i.pointerId&&triggerEvent(a,i.type,i,null)){e=!0;break}break;default:if(s&&triggerEvent(a,i.type,i,i.pointerId)){e=!0;break}}}if(!0===e)break}}return e}function normalizeEvent(t){var e;if(device$1.TouchEvent&&t.changedTouches)for(var i=0,o=t.changedTouches.length;i<o;i++){var r=t.changedTouches[i];(e=T_POINTERS.pop()).setEvent(t,r.pageX,r.pageY,r.clientX,r.clientY,r.identifier),normalizedEvents.push(e)}else(e=T_POINTERS.pop()).setEvent(t,t.pageX,t.pageY,t.clientX,t.clientY,t.pointerId),normalizedEvents.push(e);return!1===t.isPrimary||(normalizedEvents[0].isPrimary=!0,Object.assign(pointer,normalizedEvents[0])),normalizedEvents}function onMoveEvent(t){dispatchEvent(normalizeEvent(t))}function onPointerEvent(t){normalizeEvent(t);var e=normalizedEvents[0].button;(dispatchEvent(normalizedEvents)||"wheel"===t.type)&&t.preventDefault();var i=pointer.bind[e];i&&triggerKeyEvent(i,POINTER_DOWN.includes(t.type),e+1)}var pointerEventTarget=null,pointer=new Pointer(0,0,1,1),locked=!1,throttlingInterval;function globalToLocal(t,e,i){i=i||pool.pull("Vector2d");var o=device$1.getElementBounds(renderer.getScreenCanvas()),r=device$1.devicePixelRatio;t-=o.left+(window.pageXOffset||0),e-=o.top+(window.pageYOffset||0);var n=scaleRatio;return 1===n.x&&1===n.y||(t/=n.x,e/=n.y),i.set(t*r,e*r)}function setTouchAction(t,e){t.style["touch-action"]=e||"none"}function bindPointer(){var t=arguments.length<2?pointer.LEFT:arguments[0],e=arguments.length<2?arguments[0]:arguments[1];if(enablePointerEvent(),!getBindingKey(e))throw new Error("no action defined for keycode "+e);pointer.bind[t]=e}function unbindPointer(t){pointer.bind[void 0===t?pointer.LEFT:t]=null}function registerPointerEvent(t,e,i){if(enablePointerEvent(),-1===pointerEventList.indexOf(t))throw new Error("invalid event type : "+t);if(void 0===e)throw new Error("registerPointerEvent: region for "+toString(e)+" event is undefined ");var o=findAllActiveEvents(activeEventList,pointerEventMap[t]);eventHandlers.has(e)||eventHandlers.set(e,{region:e,callbacks:{},pointerId:null});for(var r=eventHandlers.get(e),n=0;n<o.length;n++)t=o[n],r.callbacks[t]?r.callbacks[t].push(i):r.callbacks[t]=[i]}function releasePointerEvent(t,e,i){if(-1===pointerEventList.indexOf(t))throw new Error("invalid event type : "+t);var o=findAllActiveEvents(activeEventList,pointerEventMap[t]),r=eventHandlers.get(e);if(void 0!==r){for(var n=0;n<o.length;n++)if(t=o[n],r.callbacks[t]){if(void 0!==i)remove(r.callbacks[t],i);else for(;r.callbacks[t].length>0;)r.callbacks[t].pop();0===r.callbacks[t].length&&delete r.callbacks[t]}0===Object.keys(r.callbacks).length&&eventHandlers.delete(e)}}function releaseAllPointerEvents(t){if(eventHandlers.has(t))for(var e=0;e<pointerEventList.length;e++)this.releasePointerEvent(pointerEventList[e],t)}function requestPointerLock(){return!!device$1.hasPointerLockSupport&&(getParent().requestPointerLock(),!0)}function exitPointerLock(){return!!device$1.hasPointerLockSupport&&(document.exitPointerLock(),!0)}var deadzone=.1;function wiredXbox360NormalizeFn(t,e,i){return i===this.GAMEPAD.BUTTONS.L2||i===this.GAMEPAD.BUTTONS.R2?(t+1)/2:t}function ouyaNormalizeFn(t,e,i){return t=t>0?i===this.GAMEPAD.BUTTONS.L2?Math.max(0,t-2e4)/111070:(t-1)/131070:(65536+t)/131070+.5}var vendorProductRE=/^([0-9a-f]{1,4})-([0-9a-f]{1,4})-/i,leadingZeroRE=/^0+/;function addMapping(t,e){var i=t.replace(vendorProductRE,(function(t,e,i){return"000".substr(e.length-1)+e+"-"+"000".substr(i.length-1)+i+"-"})),o=t.replace(vendorProductRE,(function(t,e,i){return e.replace(leadingZeroRE,"")+"-"+i.replace(leadingZeroRE,"")+"-"}));e.analog=e.analog||e.buttons.map((function(){return-1})),e.normalize_fn=e.normalize_fn||function(t){return t},remap.set(i,e),remap.set(o,e)}var bindings={},remap=new Map,updateEventHandler;[["45e-28e-Xbox 360 Wired Controller",{axes:[0,1,3,4],buttons:[11,12,13,14,8,9,-1,-1,5,4,6,7,0,1,2,3,10],analog:[-1,-1,-1,-1,-1,-1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1],normalize_fn:wiredXbox360NormalizeFn}],["54c-268-PLAYSTATION(R)3 Controller",{axes:[0,1,2,3],buttons:[14,13,15,12,10,11,8,9,0,3,1,2,4,6,7,5,16]}],["54c-5c4-Wireless Controller",{axes:[0,1,2,3],buttons:[1,0,2,3,4,5,6,7,8,9,10,11,14,15,16,17,12,13]}],["2836-1-OUYA Game Controller",{axes:[0,3,7,9],buttons:[3,6,4,5,7,8,15,16,-1,-1,9,10,11,12,13,14,-1],analog:[-1,-1,-1,-1,-1,-1,5,11,-1,-1,-1,-1,-1,-1,-1,-1,-1],normalize_fn:ouyaNormalizeFn}],["OUYA Game Controller (Vendor: 2836 Product: 0001)",{axes:[0,1,3,4],buttons:[0,3,1,2,4,5,12,13,-1,-1,6,7,8,9,10,11,-1],analog:[-1,-1,-1,-1,-1,-1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1],normalize_fn:ouyaNormalizeFn}]].forEach((function(t){addMapping(t[0],t[1])}));var updateGamepads=function(){var t=navigator.getGamepads();Object.keys(bindings).forEach((function(e){var i=t[e];if(i){var o=null;"standard"!==i.mapping&&(o=remap.get(i.id));var r=bindings[e];Object.keys(r.buttons).forEach((function(t){var n=r.buttons[t],s=t,a=-1;if(!(o&&(s=o.buttons[t],a=o.analog[t],s<0&&a<0))){var h=i.buttons[s]||{};if(o&&a>=0){var l=o.normalize_fn(i.axes[a],-1,+t);h={value:l,pressed:h.pressed||Math.abs(l)>=deadzone}}emit(GAMEPAD_UPDATE,e,"buttons",+t,h),!n.pressed&&h.pressed?triggerKeyEvent(n.keyCode,!0,s+256):n.pressed&&!h.pressed&&triggerKeyEvent(n.keyCode,!1,s+256),n.value=h.value,n.pressed=h.pressed}})),Object.keys(r.axes).forEach((function(t){var n=r.axes[t],s=t;if(!(o&&(s=o.axes[t])<0)){var a=i.axes[s];if(void 0!==a){o&&(a=o.normalize_fn(a,+t,-1));var h=Math.sign(a)||1;if(0!==n[h].keyCode){var l=Math.abs(a)>=deadzone+Math.abs(n[h].threshold);emit(GAMEPAD_UPDATE,e,"axes",+t,a),!n[h].pressed&&l?(n[-h].pressed&&(triggerKeyEvent(n[-h].keyCode,!1,s+256),n[-h].value=0,n[-h].pressed=!1),triggerKeyEvent(n[h].keyCode,!0,s+256)):!n[h].pressed&&!n[-h].pressed||l||triggerKeyEvent(n[h=n[h].pressed?h:-h].keyCode,!1,s+256),n[h].value=a,n[h].pressed=l}}}}))}}))};window.addEventListener("gamepadconnected",(function(t){emit(GAMEPAD_CONNECTED,t.gamepad)}),!1),window.addEventListener("gamepaddisconnected",(function(t){emit(GAMEPAD_DISCONNECTED,t.gamepad)}),!1);var GAMEPAD={AXES:{LX:0,LY:1,RX:2,RY:3,EXTRA_1:4,EXTRA_2:5,EXTRA_3:6,EXTRA_4:7},BUTTONS:{FACE_1:0,FACE_2:1,FACE_3:2,FACE_4:3,L1:4,R1:5,L2:6,R2:7,SELECT:8,BACK:8,START:9,FORWARD:9,L3:10,R3:11,UP:12,DOWN:13,LEFT:14,RIGHT:15,HOME:16,EXTRA_1:17,EXTRA_2:18,EXTRA_3:19,EXTRA_4:20}};function bindGamepad(t,e,i){if(!getBindingKey(i))throw new Error("no action defined for keycode "+i);void 0===updateEventHandler&&"function"==typeof navigator.getGamepads&&(updateEventHandler=on(GAME_BEFORE_UPDATE,updateGamepads)),bindings[t]||(bindings[t]={axes:{},buttons:{}});var o={keyCode:i,value:0,pressed:!1,threshold:e.threshold},r=bindings[t][e.type];if("buttons"===e.type)r[e.code]=o;else if("axes"===e.type){var n=Math.sign(e.threshold)||1;r[e.code]||(r[e.code]={});var s=r[e.code];s[n]=o,s[-n]||(s[-n]={keyCode:0,value:0,pressed:!1,threshold:-n})}}function unbindGamepad(t,e){if(!bindings[t])throw new Error("no bindings for gamepad "+t);bindings[t].buttons[e]={}}function setGamepadDeadzone(t){deadzone=t}var setGamepadMapping=addMapping,preventDefault=!0,input=Object.freeze({__proto__:null,preventDefault:preventDefault,get pointerEventTarget(){return pointerEventTarget},pointer:pointer,get locked(){return locked},get throttlingInterval(){return throttlingInterval},globalToLocal:globalToLocal,setTouchAction:setTouchAction,bindPointer:bindPointer,unbindPointer:unbindPointer,registerPointerEvent:registerPointerEvent,releasePointerEvent:releasePointerEvent,releaseAllPointerEvents:releaseAllPointerEvents,requestPointerLock:requestPointerLock,exitPointerLock:exitPointerLock,get keyBoardEventTarget(){return keyBoardEventTarget},KEY:KEY,initKeyboardEvent:initKeyboardEvent,isKeyPressed:isKeyPressed,keyStatus:keyStatus,triggerKeyEvent:triggerKeyEvent,bindKey:bindKey,getBindingKey:getBindingKey,unlockKey:unlockKey,unbindKey:unbindKey,GAMEPAD:GAMEPAD,bindGamepad:bindGamepad,unbindGamepad:unbindGamepad,setGamepadDeadzone:setGamepadDeadzone,setGamepadMapping:setGamepadMapping}),Renderable=function(t){function e(e,i,o,r){t.call(this,e,i,o,r),this.isRenderable=!0,this.isKinematic=!0,this.body=void 0,void 0===this.currentTransform&&(this.currentTransform=pool.pull("Matrix2d")),this.currentTransform.identity(),this.GUID=void 0,this.onVisibilityChange=void 0,this.alwaysUpdate=!1,this.updateWhenPaused=!1,this.isPersistent=!1,this.floating=!1,this.anchorPoint instanceof ObservableVector2d?this.anchorPoint.setMuted(.5,.5).setCallback(this.onAnchorUpdate,this):this.anchorPoint=pool.pull("ObservableVector2d",.5,.5,{onUpdate:this.onAnchorUpdate,scope:this}),this.autoTransform=!0,this.alpha=1,this.ancestor=void 0,this.mask=void 0,this.tint=pool.pull("Color",255,255,255,1),this.name="",this.pos instanceof ObservableVector3d?this.pos.setMuted(e,i,0).setCallback(this.updateBoundsPos,this):this.pos=pool.pull("ObservableVector3d",e,i,0,{onUpdate:this.updateBoundsPos,scope:this}),this.isDirty=!1,this._flip={x:!1,y:!1},this._inViewport=!1,this.setOpacity(1)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={isFloating:{configurable:!0},inViewport:{configurable:!0},isFlippedX:{configurable:!0},isFlippedY:{configurable:!0}};return i.isFloating.get=function(){return!0===this.floating||void 0!==this.ancestor&&!0===this.ancestor.floating},i.inViewport.get=function(){return this._inViewport},i.inViewport.set=function(t){this._inViewport!==t&&(this._inViewport=t,"function"==typeof this.onVisibilityChange&&this.onVisibilityChange.call(this,t))},i.isFlippedX.get=function(){return!0===this._flip.x},i.isFlippedY.get=function(){return!0===this._flip.y},e.prototype.getBounds=function(){return void 0===this._bounds&&(t.prototype.getBounds.call(this),this.isFinite()?this._bounds.setMinMax(this.pos.x,this.pos.y,this.pos.x+this.width,this.pos.y+this.height):this._bounds.setMinMax(this.pos.x,this.pos.y,this.width,this.height)),this._bounds},e.prototype.getOpacity=function(){return this.alpha},e.prototype.setOpacity=function(t){"number"==typeof t&&(this.alpha=clamp(t,0,1),isNaN(this.alpha)&&(this.alpha=1),this.isDirty=!0)},e.prototype.flipX=function(t){return void 0===t&&(t=!0),this._flip.x=!!t,this.isDirty=!0,this},e.prototype.flipY=function(t){return void 0===t&&(t=!0),this._flip.y=!!t,this.isDirty=!0,this},e.prototype.transform=function(t){return this.currentTransform.multiply(t),this.updateBoundsPos(this.pos.x,this.pos.y),this.isDirty=!0,this},e.prototype.angleTo=function(t){var i,o,r=this.getBounds();if(t instanceof e){var n=t.getBounds();i=n.centerX-r.centerX,o=n.centerY-r.centerY}else i=t.x-r.centerX,o=t.y-r.centerY;return Math.atan2(o,i)},e.prototype.distanceTo=function(t){var i,o,r=this.getBounds();if(t instanceof e){var n=t.getBounds();i=r.centerX-n.centerX,o=r.centerY-n.centerY}else i=r.centerX-t.x,o=r.centerY-t.y;return Math.sqrt(i*i+o*o)},e.prototype.lookAt=function(t){var i;i=t instanceof e?t.pos:t;var o=this.angleTo(i);return this.rotate(o),this},e.prototype.rotate=function(t,e){return isNaN(t)||(this.currentTransform.rotate(t,e),this.isDirty=!0),this},e.prototype.scale=function(e,i){return this.currentTransform.scale(e,i),t.prototype.scale.call(this,e,i),this.isDirty=!0,this},e.prototype.scaleV=function(t){return this.scale(t.x,t.y),this},e.prototype.update=function(){return this.isDirty},e.prototype.updateBounds=function(){return t.prototype.updateBounds.call(this),this.updateBoundsPos(this.pos.x,this.pos.y),this.getBounds()},e.prototype.updateBoundsPos=function(t,e){var i=this.getBounds();i.shift(t,e),void 0!==this.anchorPoint&&i.isFinite()&&i.translate(-this.anchorPoint.x*i.width,-this.anchorPoint.y*i.height),this.ancestor instanceof Container&&!0!==this.floating&&i.translate(this.ancestor.getAbsolutePosition())},e.prototype.getAbsolutePosition=function(){return void 0===this._absPos&&(this._absPos=pool.pull("Vector2d")),this._absPos.set(this.pos.x,this.pos.y),this.ancestor instanceof Container&&!0!==this.floating&&this._absPos.add(this.ancestor.getAbsolutePosition()),this._absPos},e.prototype.onAnchorUpdate=function(t,e){this.anchorPoint.setMuted(t,e),this.updateBoundsPos(this.pos.x,this.pos.y)},e.prototype.preDraw=function(t){var e=this.getBounds(),i=e.width*this.anchorPoint.x,o=e.height*this.anchorPoint.y;if(t.save(),t.setGlobalAlpha(t.globalAlpha()*this.getOpacity()),this._flip.x||this._flip.y){var r=this._flip.x?this.centerX-i:0,n=this._flip.y?this.centerY-o:0;t.translate(r,n),t.scale(this._flip.x?-1:1,this._flip.y?-1:1),t.translate(-r,-n)}void 0!==this.mask&&(t.translate(this.pos.x,this.pos.y),t.setMask(this.mask),t.translate(-this.pos.x,-this.pos.y)),!0!==this.autoTransform||this.currentTransform.isIdentity()||(t.translate(this.pos.x,this.pos.y),t.transform(this.currentTransform),t.translate(-this.pos.x,-this.pos.y)),t.translate(-i,-o),t.setTint(this.tint,this.getOpacity())},e.prototype.draw=function(){},e.prototype.postDraw=function(t){t.clearTint(),void 0!==this.mask&&t.clearMask(),t.restore(),this.isDirty=!1},e.prototype.onCollision=function(){return!1},e.prototype.destroy=function(){pool.push(this.currentTransform),this.currentTransform=void 0,pool.push(this.anchorPoint),this.anchorPoint=void 0,pool.push(this.pos),this.pos=void 0,void 0!==this._absPos&&(pool.push(this._absPos),this._absPos=void 0),pool.push(this._bounds),this._bounds=void 0,this.onVisibilityChange=void 0,void 0!==this.mask&&(pool.push(this.mask),this.mask=void 0),void 0!==this.tint&&(pool.push(this.tint),this.tint=void 0),this.ancestor=void 0,void 0!==this.body&&(this.body.destroy.apply(this.body,arguments),this.body=void 0),releaseAllPointerEvents(this),this.onDestroyEvent.apply(this,arguments)},e.prototype.onDestroyEvent=function(){},Object.defineProperties(e.prototype,i),e}(Rect),Ellipse=function(t,e,i,o){this.pos=new Vector2d,this._bounds=void 0,this.radius=NaN,this.radiusV=new Vector2d,this.radiusSq=new Vector2d,this.ratio=new Vector2d,this.shapeType="Ellipse",this.setShape(t,e,i,o)};Ellipse.prototype.onResetEvent=function(t,e,i,o){this.setShape(t,e,i,o)},Ellipse.prototype.setShape=function(t,e,i,o){var r=i/2,n=o/2;this.pos.set(t,e),this.radius=Math.max(r,n),this.ratio.set(r/this.radius,n/this.radius),this.radiusV.set(this.radius,this.radius).scaleV(this.ratio);var s=this.radius*this.radius;return this.radiusSq.set(s,s).scaleV(this.ratio),this.getBounds().setMinMax(t,e,t+i,t+o),this.getBounds().translate(-this.radiusV.x,-this.radiusV.y),this},Ellipse.prototype.rotate=function(t,e){return this.pos.rotate(t,e),this.getBounds().shift(this.pos),this.getBounds().translate(-this.radiusV.x,-this.radiusV.y),this},Ellipse.prototype.scale=function(t,e){return e=void 0!==e?e:t,this.setShape(this.pos.x,this.pos.y,2*this.radiusV.x*t,2*this.radiusV.y*e)},Ellipse.prototype.scaleV=function(t){return this.scale(t.x,t.y)},Ellipse.prototype.transform=function(){return this},Ellipse.prototype.translate=function(){var t,e;return 2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),this.pos.x+=t,this.pos.y+=e,this.getBounds().translate(t,e),this},Ellipse.prototype.contains=function(){var t,e;return 2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),t-=this.pos.x,e-=this.pos.y,t*t/this.radiusSq.x+e*e/this.radiusSq.y<=1},Ellipse.prototype.getBounds=function(){return void 0===this._bounds&&(this._bounds=pool.pull("Bounds")),this._bounds},Ellipse.prototype.clone=function(){return new Ellipse(this.pos.x,this.pos.y,2*this.radiusV.x,2*this.radiusV.y)};for(var LEFT_VORNOI_REGION=-1,MIDDLE_VORNOI_REGION=0,RIGHT_VORNOI_REGION=1,T_VECTORS=[],v=0;v<10;v++)T_VECTORS.push(new Vector2d);for(var T_ARRAYS=[],a=0;a<5;a++)T_ARRAYS.push([]);function flattenPointsOn(t,e,i){for(var o=Number.MAX_VALUE,r=-Number.MAX_VALUE,n=t.length,s=0;s<n;s++){var a=t[s].dot(e);a<o&&(o=a),a>r&&(r=a)}i[0]=o,i[1]=r}function isSeparatingAxis(t,e,i,o,r,n){var s=T_ARRAYS.pop(),a=T_ARRAYS.pop(),h=T_VECTORS.pop().copy(e).sub(t),l=h.dot(r);if(flattenPointsOn(i,r,s),flattenPointsOn(o,r,a),a[0]+=l,a[1]+=l,s[0]>a[1]||a[0]>s[1])return T_VECTORS.push(h),T_ARRAYS.push(s),T_ARRAYS.push(a),!0;if(n){var c=0;if(s[0]<a[0])if(n.aInB=!1,s[1]<a[1])c=s[1]-a[0],n.bInA=!1;else{var u=s[1]-a[0],d=a[1]-s[0];c=u<d?u:-d}else if(n.bInA=!1,s[1]>a[1])c=s[0]-a[1],n.aInB=!1;else{var p=s[1]-a[0],f=a[1]-s[0];c=p<f?p:-f}var y=Math.abs(c);y<n.overlap&&(n.overlap=y,n.overlapN.copy(r),c<0&&n.overlapN.negateSelf())}return T_VECTORS.push(h),T_ARRAYS.push(s),T_ARRAYS.push(a),!1}function vornoiRegion(t,e){var i=t.length2(),o=e.dot(t);return o<0?LEFT_VORNOI_REGION:o>i?RIGHT_VORNOI_REGION:MIDDLE_VORNOI_REGION}function testPolygonPolygon(t,e,i,o,r){var n,s=e.points,a=e.normals,h=a.length,l=o.points,c=o.normals,u=c.length,d=T_VECTORS.pop().copy(t.pos).add(t.ancestor.getAbsolutePosition()).add(e.pos),p=T_VECTORS.pop().copy(i.pos).add(i.ancestor.getAbsolutePosition()).add(o.pos);for(n=0;n<h;n++)if(isSeparatingAxis(d,p,s,l,a[n],r))return T_VECTORS.push(d),T_VECTORS.push(p),!1;for(n=0;n<u;n++)if(isSeparatingAxis(d,p,s,l,c[n],r))return T_VECTORS.push(d),T_VECTORS.push(p),!1;return r&&(r.a=t,r.b=i,r.overlapV.copy(r.overlapN).scale(r.overlap)),T_VECTORS.push(d),T_VECTORS.push(p),!0}function testEllipseEllipse(t,e,i,o,r){var n=T_VECTORS.pop().copy(i.pos).add(i.ancestor.getAbsolutePosition()).add(o.pos).sub(t.pos).add(t.ancestor.getAbsolutePosition()).sub(e.pos),s=e.radius,a=o.radius,h=s+a,l=h*h,c=n.length2();if(c>l)return T_VECTORS.push(n),!1;if(r){var u=Math.sqrt(c);r.a=t,r.b=i,r.overlap=h-u,r.overlapN.copy(n.normalize()),r.overlapV.copy(n).scale(r.overlap),r.aInB=s<=a&&u<=a-s,r.bInA=a<=s&&u<=s-a}return T_VECTORS.push(n),!0}function testPolygonEllipse(t,e,i,o,r){for(var n=T_VECTORS.pop().copy(i.pos).add(i.ancestor.getAbsolutePosition()).add(o.pos).sub(t.pos).add(t.ancestor.getAbsolutePosition()).sub(e.pos),s=o.radius,a=s*s,h=e.points,l=e.edges,c=l.length,u=T_VECTORS.pop(),d=T_VECTORS.pop(),p=T_VECTORS.pop(),f=0,y=0;y<c;y++){var g=y===c-1?0:y+1,v=0===y?c-1:y-1,m=0,_=null;u.copy(l[y]),p.copy(n).sub(h[y]),r&&p.length2()>a&&(r.aInB=!1);var x=vornoiRegion(u,p),w=!0;if(x===LEFT_VORNOI_REGION){var T=null;if(c>1&&(u.copy(l[v]),(x=vornoiRegion(u,T=T_VECTORS.pop().copy(n).sub(h[v])))!==RIGHT_VORNOI_REGION&&(w=!1)),w){if((f=p.length())>s)return T_VECTORS.push(n),T_VECTORS.push(u),T_VECTORS.push(d),T_VECTORS.push(p),T&&T_VECTORS.push(T),!1;r&&(r.bInA=!1,_=p.normalize(),m=s-f)}T&&T_VECTORS.push(T)}else if(x===RIGHT_VORNOI_REGION){if(c>1&&(u.copy(l[g]),p.copy(n).sub(h[g]),(x=vornoiRegion(u,p))!==LEFT_VORNOI_REGION&&(w=!1)),w){if((f=p.length())>s)return T_VECTORS.push(n),T_VECTORS.push(u),T_VECTORS.push(d),T_VECTORS.push(p),!1;r&&(r.bInA=!1,_=p.normalize(),m=s-f)}}else{d.copy(e.normals[y]),f=p.dot(d);var b=Math.abs(f);if((1===c||f>0)&&b>s)return T_VECTORS.push(n),T_VECTORS.push(u),T_VECTORS.push(d),T_VECTORS.push(p),!1;r&&(_=d,m=s-f,(f>=0||m<2*s)&&(r.bInA=!1))}_&&r&&Math.abs(m)<Math.abs(r.overlap)&&(r.overlap=m,r.overlapN.copy(_))}return r&&(r.a=t,r.b=i,r.overlapV.copy(r.overlapN).scale(r.overlap)),T_VECTORS.push(n),T_VECTORS.push(u),T_VECTORS.push(d),T_VECTORS.push(p),!0}function testEllipsePolygon(t,e,i,o,r){var n=this.testPolygonEllipse(i,o,t,e,r);if(n&&r){var s=r.a,a=r.aInB;r.overlapN.negateSelf(),r.overlapV.negateSelf(),r.a=r.b,r.b=s,r.aInB=r.bInA,r.bInA=a}return n}var SAT=Object.freeze({__proto__:null,testPolygonPolygon:testPolygonPolygon,testEllipseEllipse:testEllipseEllipse,testPolygonEllipse:testPolygonEllipse,testEllipsePolygon:testEllipsePolygon}),dummyObj={pos:new Vector2d(0,0),ancestor:{_absPos:new Vector2d(0,0),getAbsolutePosition:function(){return this._absPos}}};function shouldCollide(t,e){return!0!==t.isKinematic&&!0!==e.isKinematic&&t.body&&e.body&&0!=(t.body.collisionMask&e.body.collisionType)&&0!=(t.body.collisionType&e.body.collisionMask)}var ResponseObject=function(){this.a=null,this.b=null,this.overlapN=new Vector2d,this.overlapV=new Vector2d,this.aInB=!0,this.bInA=!0,this.indexShapeA=-1,this.indexShapeB=-1,this.overlap=Number.MAX_VALUE};ResponseObject.prototype.clear=function(){return this.aInB=!0,this.bInA=!0,this.overlap=Number.MAX_VALUE,this.indexShapeA=-1,this.indexShapeB=-1,this};var globalResponse=new ResponseObject;function collisionCheck(t,e){void 0===e&&(e=globalResponse);for(var i,o=0,r=world.broadphase.retrieve(t),n=r.length;i=r[--n];)if(i!==t&&shouldCollide(t,i)&&t.body.getBounds().overlaps(i.body.getBounds())){var s=t.body.shapes.length,a=i.body.shapes.length;if(0===s||0===a)continue;var h=0;do{var l=t.body.getShape(h),c=0;do{var u=i.body.getShape(c);!0===SAT["test"+l.shapeType+u.shapeType].call(this,t,l,i,u,e.clear())&&(o++,e.indexShapeA=h,e.indexShapeB=c,t.onCollision&&!1!==t.onCollision(e,i)&&t.body.respondToCollision.call(t.body,e),i.onCollision&&!1!==i.onCollision(e,t)&&i.body.respondToCollision.call(i.body,e)),c++}while(c<a);h++}while(h<s)}return o>0}function rayCast(t,e){void 0===e&&(e=[]);for(var i,o=0,r=world.broadphase.retrieve(t),n=r.length;i=r[--n];)if(i.body&&t.getBounds().overlaps(i.getBounds())){var s=i.body.shapes.length;if(0===i.body.shapes.length)continue;var a=t,h=0;do{var l=i.body.getShape(h);SAT["test"+a.shapeType+l.shapeType].call(this,dummyObj,a,i,l)&&(e[o]=i,o++),h++}while(h<s)}return e.length=o,e}var collision={maxChildren:8,maxDepth:4,types:{NO_OBJECT:0,PLAYER_OBJECT:1,NPC_OBJECT:2,ENEMY_OBJECT:4,COLLECTABLE_OBJECT:8,ACTION_OBJECT:16,PROJECTILE_OBJECT:32,WORLD_SHAPE:64,USER:128,ALL_OBJECT:4294967295},response:globalResponse,rayCast:function(t,e){return rayCast(t,e)}},Body=function(t,e,i){if(this.ancestor=t,void 0===this.bounds&&(this.bounds=new Bounds$1),void 0===this.shapes&&(this.shapes=[]),this.collisionMask=collision.types.ALL_OBJECT,this.collisionType=collision.types.ENEMY_OBJECT,void 0===this.vel&&(this.vel=new Vector2d),this.vel.set(0,0),void 0===this.force&&(this.force=new Vector2d),this.force.set(0,0),void 0===this.friction&&(this.friction=new Vector2d),this.friction.set(0,0),this.bounce=0,this.mass=1,void 0===this.maxVel&&(this.maxVel=new Vector2d),this.maxVel.set(490,490),this.isStatic=!1,this.gravityScale=1,this.ignoreGravity=!1,this.falling=!1,this.jumping=!1,"function"==typeof i&&(this.onBodyUpdate=i),this.bounds.clear(),void 0!==e)if(Array.isArray(e))for(var o=0;o<e.length;o++)this.addShape(e[o]);else this.addShape(e);this.ancestor.isKinematic=!1};Body.prototype.setStatic=function(t){void 0===t&&(t=!0),this.isStatic=!0===t},Body.prototype.addShape=function(t){if(t instanceof Rect||t instanceof Bounds$1){var e=t.toPolygon();this.shapes.push(e),this.bounds.add(e.points),this.bounds.translate(e.pos)}else t instanceof Ellipse?(this.shapes.includes(t)||this.shapes.push(t),this.bounds.addBounds(t.getBounds()),this.bounds.translate(t.getBounds().x,t.getBounds().y)):t instanceof Polygon?(this.shapes.includes(t)||this.shapes.push(t),this.bounds.add(t.points),this.bounds.translate(t.pos)):this.fromJSON(t);return"function"==typeof this.onBodyUpdate&&this.onBodyUpdate(this),this.shapes.length},Body.prototype.setVertices=function(t,e,i){void 0===e&&(e=0),void 0===i&&(i=!0);var o=this.getShape(e);o instanceof Polygon?o.setShape(0,0,t):this.shapes[e]=new Polygon(0,0,t),this.bounds.add(this.shapes[e].points,i),"function"==typeof this.onBodyUpdate&&this.onBodyUpdate(this)},Body.prototype.addVertices=function(t,e){void 0===e&&(e=0),this.setVertices(t,e,!1)},Body.prototype.fromJSON=function(t,e){var i=t;if(void 0!==e&&(i=t[e]),void 0===i)throw new Error("Identifier ("+e+") undefined for the given JSON object)");if(i.length){for(var o=0;o<i.length;o++)this.addVertices(i[o].shape,o);this.mass=i[0].density||0,this.friction.set(i[0].friction||0,i[0].friction||0),this.bounce=i[0].bounce||0}return i.length},Body.prototype.getShape=function(t){return this.shapes[t||0]},Body.prototype.getBounds=function(){return this.bounds},Body.prototype.removeShape=function(t){this.bounds.clear(),remove(this.shapes,t);for(var e=0;e<this.shapes.length;e++)this.addShape(this.shapes[e]);return this.shapes.length},Body.prototype.removeShapeAt=function(t){return this.removeShape(this.getShape(t))},Body.prototype.setCollisionMask=function(t){void 0===t&&(t=collision.types.ALL_OBJECT),this.collisionMask=t},Body.prototype.setCollisionType=function(t){if(void 0!==t){if(void 0===collision.types[t])throw new Error("Invalid value for the collisionType property");this.collisionType=collision.types[t]}},Body.prototype.respondToCollision=function(t){var e=t.overlapV;if(this.ancestor.pos.sub(e),0!==e.x&&(this.vel.x=~~(.5+this.vel.x-e.x)||0,this.bounce>0&&(this.vel.x*=-this.bounce)),0!==e.y){this.vel.y=~~(.5+this.vel.y-e.y)||0,this.bounce>0&&(this.vel.y*=-this.bounce);var i=Math.sign(world.gravity.y*this.gravityScale)||1;this.falling=e.y>=i,this.jumping=e.y<=-i}},Body.prototype.forEach=function(t,e){var i=this,o=0,r=this.shapes,n=r.length;if("function"!=typeof t)throw new Error(t+" is not a function");for(arguments.length>1&&(i=e);o<n;)t.call(i,r[o],o,r),o++},Body.prototype.contains=function(){var t,e;if(2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),this.getBounds().contains(t,e))for(var i,o=this.shapes.length;o--,i=this.shapes[o];)if(i.contains(t,e))return!0;return!1},Body.prototype.rotate=function(t,e){var i=this;return void 0===e&&(e=this.getBounds().center),this.bounds.clear(),this.forEach((function(o){o.rotate(t,e),i.bounds.addBounds(o.getBounds()),o instanceof Ellipse?i.bounds.translate(o.getBounds().x,o.getBounds().y):i.bounds.translate(o.pos)})),this},Body.prototype.setMaxVelocity=function(t,e){this.maxVel.x=t,this.maxVel.y=e},Body.prototype.setFriction=function(t,e){void 0===t&&(t=0),void 0===e&&(e=0),this.friction.x=t,this.friction.y=e},Body.prototype.computeVelocity=function(){var t=timer$1.tick;if(!this.ignoreGravity){var e=world.gravity;this.vel.x+=e.x*this.gravityScale*t,this.vel.y+=e.y*this.gravityScale*t,this.falling=this.vel.y*Math.sign(e.y*this.gravityScale)>0,this.jumping=!this.falling&&this.jumping}if(0!==this.force.x&&(this.vel.x+=this.force.x*t),0!==this.force.y&&(this.vel.y+=this.force.y*t),this.friction.x>0){var i=this.friction.x*t,o=this.vel.x+i,r=this.vel.x-i;this.vel.x=o<0?o:r>0?r:0}if(this.friction.y>0){var n=this.friction.y*t,s=this.vel.y+n,a=this.vel.y-n;this.vel.y=s<0?s:a>0?a:0}0!==this.vel.y&&(this.vel.y=clamp(this.vel.y,-this.maxVel.y,this.maxVel.y)),0!==this.vel.x&&(this.vel.x=clamp(this.vel.x,-this.maxVel.x,this.maxVel.x))},Body.prototype.update=function(t){return this.computeVelocity(t),this.ancestor.pos.add(this.vel),0!==this.vel.x||0!==this.vel.y},Body.prototype.destroy=function(){this.onBodyUpdate=void 0,this.ancestor=void 0,this.bounds=void 0,this.setStatic(!1),this.shapes.length=0};var deferredRemove=function(t,e){this.removeChildNow(t,e)},globalFloatingCounter=0,Container=function(t){function e(e,i,o,r,n){void 0===e&&(e=0),void 0===i&&(i=0),void 0===o&&(o=viewport.width),void 0===r&&(r=viewport.height),void 0===n&&(n=!1),t.call(this,e,i,o,r),this.pendingSort=null,this.root=n,this.children=void 0,this.sortOn=sortOn,this.autoSort=!0,this.autoDepth=!0,this.clipping=!1,this.onChildChange=function(){},this.enableChildBoundsUpdate=!1,this.drawCount=0,this.autoTransform=!0,this.isKinematic=!1,this.anchorPoint.set(0,0),!0===this.root&&on(CANVAS_ONRESIZE,this.updateBounds.bind(this,!0))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reset=function(){this.pendingSort&&(clearTimeout(this.pendingSort),this.pendingSort=null);for(var t,e=this.getChildren(),i=e.length;i>=0;t=e[--i])t&&!0!==t.isPersistent&&this.removeChildNow(t);void 0!==this.currentTransform&&this.currentTransform.identity()},e.prototype.addChild=function(t,i){return t.ancestor instanceof e?t.ancestor.removeChildNow(t):t.isRenderable&&(t.GUID=utils.createGUID(t.id)),t.ancestor=this,this.getChildren().push(t),void 0!==t.pos&&("number"==typeof i?t.pos.z=i:!0===this.autoDepth&&(t.pos.z=this.getChildren().length)),!0===this.autoSort&&this.sort(),"function"==typeof t.onActivateEvent&&this.isAttachedToRoot()&&t.onActivateEvent(),!0===this.isAttachedToRoot()&&repaint(),this.enableChildBoundsUpdate&&this.updateBounds(!0),t.body instanceof Body&&world.addBody(t.body),this.onChildChange.call(this,this.getChildren().length-1),t},e.prototype.addChildAt=function(t,i){if(i>=0&&i<this.getChildren().length)return t.ancestor instanceof e?t.ancestor.removeChildNow(t):t.isRenderable&&(t.GUID=utils.createGUID()),t.ancestor=this,this.getChildren().splice(i,0,t),"function"==typeof t.onActivateEvent&&this.isAttachedToRoot()&&t.onActivateEvent(),!0===this.isAttachedToRoot()&&repaint(),this.enableChildBoundsUpdate&&this.updateBounds(!0),t.body instanceof Body&&world.addBody(t.body),this.onChildChange.call(this,i),t;throw new Error("Index ("+i+") Out Of Bounds for addChildAt()")},e.prototype.forEach=function(t,e){var i=this,o=0,r=this.getChildren(),n=r.length;if("function"!=typeof t)throw new Error(t+" is not a function");for(arguments.length>1&&(i=e);o<n;)t.call(i,r[o],o,r),o++},e.prototype.swapChildren=function(t,e){var i=this.getChildIndex(t),o=this.getChildIndex(e);if(-1===i||-1===o)throw new Error(t+" Both the supplied childs must be a child of the caller "+this);var r=t.pos.z;t.pos.z=e.pos.z,e.pos.z=r,this.getChildren()[i]=e,this.getChildren()[o]=t},e.prototype.getChildAt=function(t){if(t>=0&&t<this.getChildren().length)return this.getChildren()[t];throw new Error("Index ("+t+") Out Of Bounds for getChildAt()")},e.prototype.getChildIndex=function(t){return this.getChildren().indexOf(t)},e.prototype.getNextChild=function(t){var e=this.getChildren().indexOf(t)-1;if(e>=0&&e<this.getChildren().length)return this.getChildAt(e)},e.prototype.hasChild=function(t){return this===t.ancestor},e.prototype.getChildByProp=function(t,i){var o=[];return this.forEach((function(r){!function(t,e){var r=t[e];i instanceof RegExp&&"string"==typeof r?i.test(r)&&o.push(t):r===i&&o.push(t)}(r,t),r instanceof e&&(o=o.concat(r.getChildByProp(t,i)))})),o},e.prototype.getChildByType=function(t){var i=[];return this.forEach((function(o){o instanceof t&&i.push(o),o instanceof e&&(i=i.concat(o.getChildByType(t)))})),i},e.prototype.getChildByName=function(t){return this.getChildByProp("name",t)},e.prototype.getChildByGUID=function(t){var e=this.getChildByProp("GUID",t);return e.length>0?e[0]:null},e.prototype.getChildren=function(){return void 0===this.children&&(this.children=[]),this.children},e.prototype.updateBounds=function(e){void 0===e&&(e=!1),t.prototype.updateBounds.call(this);var i=this.getBounds();return!0!==e&&!0!==this.enableChildBoundsUpdate||this.forEach((function(t){t.isRenderable&&(t.getBounds().isFinite()&&i.addBounds(t.getBounds()))})),i},e.prototype.isAttachedToRoot=function(){if(!0===this.root)return!0;for(var t=this.ancestor;t;){if(!0===t.root)return!0;t=t.ancestor}return!1},e.prototype.updateBoundsPos=function(e,i){var o=this;return t.prototype.updateBoundsPos.call(this,e,i),this.forEach((function(t){t.isRenderable&&t.updateBoundsPos(t.pos.x+e-o.pos.x,t.pos.y+i-o.pos.y)})),this.getBounds()},e.prototype.onActivateEvent=function(){this.forEach((function(t){"function"==typeof t.onActivateEvent&&t.onActivateEvent()}))},e.prototype.removeChild=function(t,e){if(!this.hasChild(t))throw new Error("Child is not mine.");utils.function.defer(deferredRemove,this,t,e)},e.prototype.removeChildNow=function(t,e){if(this.hasChild(t)&&this.getChildIndex(t)>=0){"function"==typeof t.onDeactivateEvent&&t.onDeactivateEvent(),t.body instanceof Body&&world.removeBody(t.body),e||!1===pool.push(t,!1)&&"function"==typeof t.destroy&&t.destroy();var i=this.getChildIndex(t);i>=0&&(this.getChildren().splice(i,1),t.ancestor=void 0),!0===this.isAttachedToRoot()&&repaint(),this.enableChildBoundsUpdate&&this.updateBounds(!0),this.onChildChange.call(this,i)}},e.prototype.setChildsProperty=function(t,i,o){this.forEach((function(r){!0===o&&r instanceof e&&r.setChildsProperty(t,i,o),r[t]=i}))},e.prototype.moveUp=function(t){var e=this.getChildIndex(t);e-1>=0&&this.swapChildren(t,this.getChildAt(e-1))},e.prototype.moveDown=function(t){var e=this.getChildIndex(t);e>=0&&e+1<this.getChildren().length&&this.swapChildren(t,this.getChildAt(e+1))},e.prototype.moveToTop=function(t){var e=this.getChildIndex(t);if(e>0){var i=this.getChildren();i.splice(0,0,i.splice(e,1)[0]),t.pos.z=i[1].pos.z+1}},e.prototype.moveToBottom=function(t){var e=this.getChildIndex(t),i=this.getChildren();e>=0&&e<i.length-1&&(i.splice(i.length-1,0,i.splice(e,1)[0]),t.pos.z=i[i.length-2].pos.z-1)},e.prototype.sort=function(t){this.pendingSort||(!0===t&&this.forEach((function(i){i instanceof e&&i.sort(t)})),this.pendingSort=utils.function.defer((function(){this.getChildren().sort(this["_sort"+this.sortOn.toUpperCase()]),this.pendingSort=null,repaint()}),this))},e.prototype.onDeactivateEvent=function(){this.forEach((function(t){"function"==typeof t.onDeactivateEvent&&t.onDeactivateEvent()}))},e.prototype._sortZ=function(t,e){return e.pos&&t.pos?e.pos.z-t.pos.z:t.pos?-1/0:1/0},e.prototype._sortReverseZ=function(t,e){return t.pos&&e.pos?t.pos.z-e.pos.z:t.pos?1/0:-1/0},e.prototype._sortX=function(t,e){if(!e.pos||!t.pos)return t.pos?-1/0:1/0;var i=e.pos.z-t.pos.z;return i||e.pos.x-t.pos.x},e.prototype._sortY=function(t,e){if(!e.pos||!t.pos)return t.pos?-1/0:1/0;var i=e.pos.z-t.pos.z;return i||e.pos.y-t.pos.y},e.prototype.destroy=function(){this.reset(),t.prototype.destroy.call(this,arguments)},e.prototype.update=function(e){for(var i,o=!1,r=state.isPaused(),n=this.getChildren(),s=n.length;s--,i=n[s];)r&&!i.updateWhenPaused||(i.isRenderable?((o=globalFloatingCounter>0||i.floating)&&globalFloatingCounter++,i.inViewport=!1,state.current().cameras.forEach((function(t){t.isVisible(i,o)&&(i.inViewport=!0)})),this.isDirty|=(i.inViewport||i.alwaysUpdate)&&i.update(e),globalFloatingCounter>0&&globalFloatingCounter--):this.isDirty|=i.update(e));return t.prototype.update.call(this,e)},e.prototype.draw=function(t,e){var i=!1,o=this.getBounds();this.drawCount=0,!1===this.root&&!0===this.clipping&&!0===o.isFinite()&&t.clipRect(o.left,o.top,o.width,o.height),t.translate(this.pos.x,this.pos.y);for(var r,n=this.getChildren(),s=n.length;r=n[--s];)r.isRenderable&&(i=!0===r.floating,(r.inViewport||i)&&(i&&(t.save(),t.resetTransform()),r.preDraw(t),r.draw(t,e),r.postDraw(t),i&&t.restore(),this.drawCount++))},e}(Renderable),QT_ARRAY=[];function QT_ARRAY_POP(t,e,i,o){if(void 0===e&&(e=4),void 0===i&&(i=4),void 0===o&&(o=0),QT_ARRAY.length>0){var r=QT_ARRAY.pop();return r.bounds=t,r.max_objects=e,r.max_levels=i,r.level=o,r}return new QuadTree(t,e,i,o)}function QT_ARRAY_PUSH(t){QT_ARRAY.push(t)}var QT_VECTOR=new Vector2d,QuadTree=function(t,e,i,o){void 0===e&&(e=4),void 0===i&&(i=4),void 0===o&&(o=0),this.max_objects=e,this.max_levels=i,this.level=o,this.bounds=t,this.objects=[],this.nodes=[]};QuadTree.prototype.split=function(){var t=this.level+1,e=this.bounds.width/2,i=this.bounds.height/2,o=this.bounds.left,r=this.bounds.top;this.nodes[0]=QT_ARRAY_POP({left:o+e,top:r,width:e,height:i},this.max_objects,this.max_levels,t),this.nodes[1]=QT_ARRAY_POP({left:o,top:r,width:e,height:i},this.max_objects,this.max_levels,t),this.nodes[2]=QT_ARRAY_POP({left:o,top:r+i,width:e,height:i},this.max_objects,this.max_levels,t),this.nodes[3]=QT_ARRAY_POP({left:o+e,top:r+i,width:e,height:i},this.max_objects,this.max_levels,t)},QuadTree.prototype.getIndex=function(t){var e,i=t.getBounds(),o=-1,r=(e=!0===t.isFloating?viewport.localToWorld(i.left,i.top,QT_VECTOR):QT_VECTOR.set(t.left,t.top)).x,n=e.y,s=i.width,a=i.height,h=this.bounds.left+this.bounds.width/2,l=this.bounds.top+this.bounds.height/2,c=n<l&&n+a<l,u=n>l;return r<h&&r+s<h?c?o=1:u&&(o=2):r>h&&(c?o=0:u&&(o=3)),o},QuadTree.prototype.insertContainer=function(t){for(var e,i=t.children.length;i--,e=t.children[i];)!0!==e.isKinematic&&(e instanceof Container?("rootContainer"!==e.name&&this.insert(e),this.insertContainer(e)):"function"==typeof e.getBounds&&this.insert(e))},QuadTree.prototype.insert=function(t){var e=-1;if(this.nodes.length>0&&-1!==(e=this.getIndex(t)))this.nodes[e].insert(t);else if(this.objects.push(t),this.objects.length>this.max_objects&&this.level<this.max_levels){0===this.nodes.length&&this.split();for(var i=0;i<this.objects.length;)-1!==(e=this.getIndex(this.objects[i]))?this.nodes[e].insert(this.objects.splice(i,1)[0]):i+=1}},QuadTree.prototype.retrieve=function(t,e){var i=this.objects;if(this.nodes.length>0){var o=this.getIndex(t);if(-1!==o)i=i.concat(this.nodes[o].retrieve(t));else for(var r=0;r<this.nodes.length;r+=1)i=i.concat(this.nodes[r].retrieve(t))}return"function"==typeof e&&i.sort(e),i},QuadTree.prototype.remove=function(t){var e=!1;if(void 0===t.getBounds)return!1;if(this.nodes.length>0){var i=this.getIndex(t);-1!==i&&(e=remove(this.nodes[i],t))&&this.nodes[i].isPrunable()&&this.nodes.splice(i,1)}return!1===e&&-1!==this.objects.indexOf(t)&&(remove(this.objects,t),e=!0),e},QuadTree.prototype.isPrunable=function(){return!(this.hasChildren()||this.objects.length>0)},QuadTree.prototype.hasChildren=function(){for(var t=0;t<this.nodes.length;t+=1){var e=this.nodes[t];if(e.length>0||e.objects.length>0)return!0}return!1},QuadTree.prototype.clear=function(t){this.objects.length=0;for(var e=0;e<this.nodes.length;e++)this.nodes[e].clear(),QT_ARRAY_PUSH(this.nodes[e]);this.nodes.length=0,void 0!==t&&this.bounds.setMinMax(t.min.x,t.min.y,t.max.x,t.max.y)};var World=function(t){function e(e,i,o,r){var n=this;void 0===e&&(e=0),void 0===i&&(i=0),void 0===o&&(o=1/0),void 0===r&&(r=1/0),t.call(this,e,i,o,r,!0),this.name="rootContainer",this.anchorPoint.set(0,0),this.fps=60,this.gravity=new Vector2d(0,.98),this.preRender=!1,this.bodies=new Set,this.broadphase=new QuadTree(this.getBounds().clone(),collision.maxChildren,collision.maxDepth),on(GAME_RESET,this.reset,this),on(LEVEL_LOADED,(function(){n.broadphase.clear(n.getBounds())}))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reset=function(){this.broadphase.clear(),this.anchorPoint.set(0,0),t.prototype.reset.call(this),this.bodies.clear()},e.prototype.addBody=function(t){return this.bodies.add(t),this},e.prototype.removeBody=function(t){return this.bodies.delete(t),this},e.prototype.update=function(e){var i=state.isPaused();return this.broadphase.clear(),this.broadphase.insertContainer(this),this.bodies.forEach((function(t){if(!t.isStatic){var o=t.ancestor;i&&!o.updateWhenPaused||!o.inViewport&&!o.alwaysUpdate||(!0===t.update(e)&&(o.isDirty=!0),collisionCheck(o))}})),t.prototype.update.call(this,e)},e}(Container),isDirty=!0,isAlwaysDirty=!1,frameCounter=0,frameRate=1,accumulator=0,accumulatorMax=0,accumulatorUpdateDelta=0,stepSize=1e3/60,updateDelta=0,lastUpdateStart=null,updateAverageDelta=0,viewport,world;on(BOOT,(function(){world=new World,emit(GAME_INIT)}));var mergeGroup=!0,sortOn="z",lastUpdate=window.performance.now();function onLevelLoaded(){}function reset(){var t=state.current();void 0!==t&&(viewport=t.cameras.get("default")),emit(GAME_RESET),updateFrameRate()}function updateFrameRate(){frameCounter=0,frameRate=~~(.5+60/timer$1.maxfps),stepSize=1e3/world.fps,accumulator=0,accumulatorMax=10*stepSize,isAlwaysDirty=timer$1.maxfps>world.fps}function getParentContainer(t){return t.ancestor}function repaint(){isDirty=!0}function update$1(t,e){if(++frameCounter%frameRate==0){for(frameCounter=0,emit(GAME_BEFORE_UPDATE,t),accumulator+=timer$1.getDelta(),accumulator=Math.min(accumulator,accumulatorMax),updateDelta=timer$1.interpolation?timer$1.getDelta():stepSize,accumulatorUpdateDelta=timer$1.interpolation?updateDelta:Math.max(updateDelta,updateAverageDelta);accumulator>=accumulatorUpdateDelta||timer$1.interpolation;)if(lastUpdateStart=window.performance.now(),!0!==state.isPaused()&&emit(GAME_UPDATE,t),isDirty=e.update(updateDelta)||isDirty,lastUpdate=window.performance.now(),updateAverageDelta=lastUpdate-lastUpdateStart,accumulator-=accumulatorUpdateDelta,timer$1.interpolation){accumulator=0;break}emit(GAME_AFTER_UPDATE,lastUpdate)}}function draw(t){!0===renderer.isContextValid&&(isDirty||isAlwaysDirty)&&(emit(GAME_BEFORE_DRAW,window.performance.now()),renderer.clear(),t.draw(renderer),isDirty=!1,renderer.flush(),emit(GAME_AFTER_DRAW,window.performance.now()))}var game=Object.freeze({__proto__:null,get viewport(){return viewport},get world(){return world},mergeGroup:mergeGroup,sortOn:sortOn,get lastUpdate(){return lastUpdate},onLevelLoaded:onLevelLoaded,reset:reset,updateFrameRate:updateFrameRate,getParentContainer:getParentContainer,repaint:repaint,update:update$1,draw:draw}),MIN=Math.min,MAX=Math.max,targetV=new Vector2d,Camera2d=function(t){function e(e,i,o,r){t.call(this,e,i,o-e,r-i),this.AXIS={NONE:0,HORIZONTAL:1,VERTICAL:2,BOTH:3},this.bounds=pool.pull("Bounds"),this.smoothFollow=!0,this.damping=1,this.near=-1e3,this.far=1e3,this.projectionMatrix=new Matrix3d,this.invCurrentTransform=new Matrix2d,this.offset=new Vector2d,this.target=null,this.follow_axis=this.AXIS.NONE,this._shake={intensity:0,duration:0,axis:this.AXIS.BOTH,onComplete:null},this._fadeOut={color:null,tween:null},this._fadeIn={color:null,tween:null},this.name="default",this.setDeadzone(this.width/6,this.height/6),this.anchorPoint.set(0,0),this.isKinematic=!1,this.bounds.setMinMax(e,i,o,r),this._updateProjectionMatrix(),on(GAME_RESET,this.reset,this),on(CANVAS_ONRESIZE,this.resize,this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._updateProjectionMatrix=function(){this.projectionMatrix.ortho(0,this.width,this.height,0,this.near,this.far)},e.prototype._followH=function(t){var e=this.pos.x;return t.x-this.pos.x>this.deadzone.right?e=MIN(t.x-this.deadzone.right,this.bounds.width-this.width):t.x-this.pos.x<this.deadzone.pos.x&&(e=MAX(t.x-this.deadzone.pos.x,this.bounds.left)),e},e.prototype._followV=function(t){var e=this.pos.y;return t.y-this.pos.y>this.deadzone.bottom?e=MIN(t.y-this.deadzone.bottom,this.bounds.height-this.height):t.y-this.pos.y<this.deadzone.pos.y&&(e=MAX(t.y-this.deadzone.pos.y,this.bounds.top)),e},e.prototype.reset=function(t,e){void 0===t&&(t=0),void 0===e&&(e=0),this.pos.x=t,this.pos.y=e,this.unfollow(),this.smoothFollow=!0,this.damping=1,this.currentTransform.identity(),this.invCurrentTransform.identity().invert(),this._updateProjectionMatrix()},e.prototype.setDeadzone=function(t,e){void 0===this.deadzone&&(this.deadzone=new Rect(0,0,0,0)),this.deadzone.pos.set(~~((this.width-t)/2),~~((this.height-e)/2-.25*e)),this.deadzone.resize(t,e),this.smoothFollow=!1,this.updateTarget(),this.smoothFollow=!0},e.prototype.resize=function(e,i){return t.prototype.resize.call(this,e,i),this.smoothFollow=!1,this.setBounds(0,0,e,i),this.setDeadzone(e/6,i/6),this.update(),this.smoothFollow=!0,this._updateProjectionMatrix(),emit(VIEWPORT_ONRESIZE,this.width,this.height),this},e.prototype.setBounds=function(t,e,i,o){this.smoothFollow=!1,this.bounds.setMinMax(t,e,i+t,o+e),this.moveTo(this.pos.x,this.pos.y),this.update(),this.smoothFollow=!0},e.prototype.follow=function(e,i,o){if(e instanceof t)this.target=e.pos;else{if(!(e instanceof Vector2d||e instanceof Vector3d||e instanceof ObservableVector2d||e instanceof ObservableVector3d))throw new Error("invalid target for me.Camera2d.follow");this.target=e}this.follow_axis=void 0===i?this.AXIS.BOTH:i,this.smoothFollow=!1,this.damping="number"!=typeof o?1:clamp(o,0,1),this.updateTarget(),this.smoothFollow=!0},e.prototype.unfollow=function(){this.target=null,this.follow_axis=this.AXIS.NONE},e.prototype.move=function(t,e){this.moveTo(this.pos.x+t,this.pos.y+e)},e.prototype.moveTo=function(t,e){var i=this.pos.x,o=this.pos.y;this.pos.x=clamp(t,this.bounds.left,this.bounds.width),this.pos.y=clamp(e,this.bounds.top,this.bounds.height),i===this.pos.x&&o===this.pos.y||emit(VIEWPORT_ONCHANGE,this.pos)},e.prototype.updateTarget=function(){if(this.target){switch(targetV.setV(this.pos),this.follow_axis){case this.AXIS.NONE:break;case this.AXIS.HORIZONTAL:targetV.x=this._followH(this.target);break;case this.AXIS.VERTICAL:targetV.y=this._followV(this.target);break;case this.AXIS.BOTH:targetV.x=this._followH(this.target),targetV.y=this._followV(this.target)}if(!this.pos.equals(targetV)){if(!0===this.smoothFollow&&this.damping<1){if(toBeCloseTo(targetV.x,this.pos.x,2)&&toBeCloseTo(targetV.y,this.pos.y,2))return this.pos.setV(targetV),!1;this.pos.lerp(targetV,this.damping)}else this.pos.setV(targetV);return!0}}return!1},e.prototype.update=function(t){var e=this.updateTarget(t);return this._shake.duration>0&&(this._shake.duration-=t,this._shake.duration<=0?(this._shake.duration=0,this.offset.setZero(),"function"==typeof this._shake.onComplete&&this._shake.onComplete()):(this._shake.axis!==this.AXIS.BOTH&&this._shake.axis!==this.AXIS.HORIZONTAL||(this.offset.x=(Math.random()-.5)*this._shake.intensity),this._shake.axis!==this.AXIS.BOTH&&this._shake.axis!==this.AXIS.VERTICAL||(this.offset.y=(Math.random()-.5)*this._shake.intensity)),e=!0),!0===e&&emit(VIEWPORT_ONCHANGE,this.pos),null==this._fadeIn.tween&&null==this._fadeOut.tween||(e=!0),this.currentTransform.isIdentity()?this.invCurrentTransform.identity():this.invCurrentTransform.copy(this.currentTransform).invert(),e},e.prototype.shake=function(t,e,i,o,r){0!==this._shake.duration&&!0!==r||(this._shake.intensity=t,this._shake.duration=e,this._shake.axis=i||this.AXIS.BOTH,this._shake.onComplete="function"==typeof o?o:void 0)},e.prototype.fadeOut=function(t,e,i){void 0===e&&(e=1e3),this._fadeOut.color=pool.pull("Color").copy(t),this._fadeOut.tween=pool.pull("Tween",this._fadeOut.color).to({alpha:0},e).onComplete(i||null),this._fadeOut.tween.isPersistent=!0,this._fadeOut.tween.start()},e.prototype.fadeIn=function(t,e,i){void 0===e&&(e=1e3),this._fadeIn.color=pool.pull("Color").copy(t);var o=this._fadeIn.color.alpha;this._fadeIn.color.alpha=0,this._fadeIn.tween=pool.pull("Tween",this._fadeIn.color).to({alpha:o},e).onComplete(i||null),this._fadeIn.tween.isPersistent=!0,this._fadeIn.tween.start()},e.prototype.focusOn=function(t){var e=t.getBounds();this.moveTo(t.pos.x+e.left+e.width/2,t.pos.y+e.top+e.height/2)},e.prototype.isVisible=function(t,e){return void 0===e&&(e=t.floating),!0===e||!0===t.floating?renderer.overlaps(t.getBounds()):t.getBounds().overlaps(this)},e.prototype.localToWorld=function(t,e,i){return(i=i||pool.pull("Vector2d")).set(t,e).add(this.pos).sub(world.pos),this.currentTransform.isIdentity()||this.invCurrentTransform.apply(i),i},e.prototype.worldToLocal=function(t,e,i){return(i=i||pool.pull("Vector2d")).set(t,e),this.currentTransform.isIdentity()||this.currentTransform.apply(i),i.sub(this.pos).add(world.pos)},e.prototype.drawFX=function(t){this._fadeIn.tween&&(t.save(),t.resetTransform(),t.setColor(this._fadeIn.color),t.fillRect(0,0,this.width,this.height),t.restore(),1===this._fadeIn.color.alpha&&(this._fadeIn.tween=null,pool.push(this._fadeIn.color),this._fadeIn.color=null)),this._fadeOut.tween&&(t.save(),t.resetTransform(),t.setColor(this._fadeOut.color),t.fillRect(0,0,this.width,this.height),t.restore(),0===this._fadeOut.color.alpha&&(this._fadeOut.tween=null,pool.push(this._fadeOut.color),this._fadeOut.color=null))},e.prototype.draw=function(t,e){var i=this.pos.x+this.offset.x,o=this.pos.y+this.offset.y;e.currentTransform.translate(-i,-o),t.setProjection(this.projectionMatrix),t.clipRect(0,0,this.width,this.height),this.preDraw(t),e.preDraw(t),e.draw(t,this),this.drawFX(t),e.postDraw(t),this.postDraw(t),e.currentTransform.translate(i,o)},e}(Renderable),default_camera,default_settings={cameras:[]},Stage=function(t){this.cameras=new Map,this.settings=Object.assign(default_settings,t||{})};Stage.prototype.reset=function(){var t=this;if(this.settings.cameras.forEach((function(e){t.cameras.set(e.name,e)})),!1===this.cameras.has("default")){if(void 0===default_camera){var e=renderer.getWidth(),i=renderer.getHeight();default_camera=new Camera2d(0,0,e,i)}this.cameras.set("default",default_camera)}reset(),this.onResetEvent.apply(this,arguments)},Stage.prototype.update=function(t){var e=world.update(t);return this.cameras.forEach((function(i){i.update(t)&&(e=!0)})),e},Stage.prototype.draw=function(t){this.cameras.forEach((function(e){e.draw(t,world)}))},Stage.prototype.destroy=function(){this.cameras.clear(),this.onDestroyEvent.apply(this,arguments)},Stage.prototype.onResetEvent=function(){"function"==typeof this.settings.onResetEvent&&this.settings.onResetEvent.apply(this,arguments)},Stage.prototype.onDestroyEvent=function(){"function"==typeof this.settings.onDestroyEvent&&this.settings.onDestroyEvent.apply(this,arguments)};var ColorLayer=function(t){function e(e,i,o){t.call(this,0,0,1/0,1/0),this.color=pool.pull("Color").parseCSS(i),this.onResetEvent(e,i,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onResetEvent=function(t,e,i){void 0===i&&(i=0),this.name=t,this.pos.z=i,this.floating=!0,this.color.parseCSS(e)},e.prototype.draw=function(t,e){var i=viewport.pos;t.save(),t.clipRect(e.left-i.x,e.top-i.y,e.width,e.height),t.clearColor(this.color),t.restore()},e.prototype.destroy=function(){pool.push(this.color),this.color=void 0,t.prototype.destroy.call(this)},e}(Renderable),ProgressBar=function(t){function e(e,i,o,r){t.call(this,e,i,o,r),this.barHeight=r,this.anchorPoint.set(0,0),on(LOADER_PROGRESS,this.onProgressUpdate,this),on(VIEWPORT_ONRESIZE,this.resize,this),this.anchorPoint.set(0,0),this.progress=0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onProgressUpdate=function(t){this.progress=~~(t*this.width),this.isDirty=!0},e.prototype.draw=function(t){t.setColor("black"),t.fillRect(this.pos.x,viewport.centerY,t.getWidth(),this.barHeight/2),t.setColor("#55aa00"),t.fillRect(this.pos.x,viewport.centerY,this.progress,this.barHeight/2)},e.prototype.onDestroyEvent=function(){off(LOADER_PROGRESS,this.onProgressUpdate),off(VIEWPORT_ONRESIZE,this.resize)},e}(Renderable),IconLogo=function(t){function e(e,i){t.call(this,e,i,100,85),this.iconCanvas=createCanvas(renderer.WebGLVersion>1?this.width:nextPowerOfTwo(this.width),renderer.WebGLVersion>1?this.height:nextPowerOfTwo(this.height),!1);var o=renderer.getContext2d(this.iconCanvas);o.beginPath(),o.moveTo(.7,48.9),o.bezierCurveTo(10.8,68.9,38.4,75.8,62.2,64.5),o.bezierCurveTo(86.1,53.1,97.2,27.7,87,7.7),o.lineTo(87,7.7),o.bezierCurveTo(89.9,15.4,73.9,30.2,50.5,41.4),o.bezierCurveTo(27.1,52.5,5.2,55.8,.7,48.9),o.lineTo(.7,48.9),o.closePath(),o.fillStyle="rgb(255, 255, 255)",o.fill(),o.beginPath(),o.moveTo(84,7),o.bezierCurveTo(87.6,14.7,72.5,30.2,50.2,41.6),o.bezierCurveTo(27.9,53,6.9,55.9,3.2,48.2),o.bezierCurveTo(-.5,40.4,14.6,24.9,36.9,13.5),o.bezierCurveTo(59.2,2.2,80.3,-.8,84,7),o.lineTo(84,7),o.closePath(),o.lineWidth=5.3,o.strokeStyle="rgb(255, 255, 255)",o.lineJoin="miter",o.miterLimit=4,o.stroke(),this.anchorPoint.set(.5,.5)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.draw=function(t){t.drawImage(this.iconCanvas,t.getWidth()/2,this.pos.y)},e}(Renderable),DefaultLoadingScreen=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onResetEvent=function(){world.addChild(new ColorLayer("background","#202020"),0),world.addChild(new ProgressBar(0,renderer.getHeight()/2,renderer.getWidth(),8),1),world.addChild(new IconLogo(renderer.getWidth()/2,renderer.getHeight()/2-16-35),2);var t=pool.pull("Text",renderer.getWidth()/2,renderer.getHeight()/2+16,{font:"century gothic",size:32,fillStyle:"white",textAlign:"left",textBaseline:"top",text:"melon",offScreenCanvas:renderer.WebGLVersion>=1});t.anchorPoint.set(0,0);var e=pool.pull("Text",renderer.getWidth()/2,renderer.getHeight()/2+16,{font:"century gothic",size:32,fillStyle:"#55aa00",textAlign:"left",textBaseline:"top",bold:!0,text:"JS",offScreenCanvas:renderer.WebGLVersion>=1});e.anchorPoint.set(0,0);var i=t.getBounds().width+e.getBounds().width;t.pos.x=renderer.getWidth()/2-i/2,e.pos.x=t.pos.x+t.getBounds().width,world.addChild(t,2),world.addChild(e,2)},e}(Stage),_state=-1,_animFrameId=-1,_isPaused=!1,_stages={},_fade={color:"",duration:0},_onSwitchComplete=null,_extraArgs=null,_pauseTime=0;function _startRunLoop(){-1===_animFrameId&&-1!==_state&&(timer$1.reset(),_animFrameId=window.requestAnimationFrame(_renderFrame))}function _resumeRunLoop(){_isPaused&&-1!==_state&&(timer$1.reset(),_isPaused=!1)}function _pauseRunLoop(){_isPaused=!0}function _renderFrame(t){var e=_stages[_state].stage;update$1(t,e),draw(e),-1!==_animFrameId&&(_animFrameId=window.requestAnimationFrame(_renderFrame))}function _stopRunLoop(){window.cancelAnimationFrame(_animFrameId),_animFrameId=-1}function _switchState(t){_stopRunLoop(),_stages[_state]&&_stages[_state].stage.destroy(),_stages[t]&&(_stages[_state=t].stage.reset.apply(_stages[_state].stage,_extraArgs),_startRunLoop(),_onSwitchComplete&&_onSwitchComplete(),repaint())}on(BOOT,(function(){state.set(state.LOADING,new DefaultLoadingScreen),state.set(state.DEFAULT,new Stage),on(VIDEO_INIT,(function(){state.change(state.DEFAULT,!0)}))}));var state={LOADING:0,MENU:1,READY:2,PLAY:3,GAMEOVER:4,GAME_END:5,SCORE:6,CREDITS:7,SETTINGS:8,DEFAULT:9,USER:100,stop:function(t){void 0===t&&(t=!1),_state!==this.LOADING&&this.isRunning()&&(_stopRunLoop(),!0===t&&t(),_pauseTime=window.performance.now(),emit(STATE_STOP))},pause:function(t){void 0===t&&(t=!1),_state===this.LOADING||this.isPaused()||(_pauseRunLoop(),!0===t&&pauseTrack(),_pauseTime=window.performance.now(),emit(STATE_PAUSE))},restart:function(t){void 0===t&&(t=!1),this.isRunning()||(_startRunLoop(),!0===t&&resumeTrack(),_pauseTime=window.performance.now()-_pauseTime,repaint(),emit(STATE_RESTART,_pauseTime))},resume:function(t){void 0===t&&(t=!1),this.isPaused()&&(_resumeRunLoop(),!0===t&&resumeTrack(),_pauseTime=window.performance.now()-_pauseTime,emit(STATE_RESUME,_pauseTime))},isRunning:function(){return-1!==_animFrameId},isPaused:function(){return _isPaused},set:function(t,e,i){if(void 0===i&&(i=!1),!(e instanceof Stage))throw new Error(e+" is not an instance of me.Stage");_stages[t]={},_stages[t].stage=e,_stages[t].transition=!0,!0===i&&this.change(t)},current:function(){if(void 0!==_stages[_state])return _stages[_state].stage},transition:function(t,e,i){"fade"===t&&(_fade.color=e,_fade.duration=i)},setTransition:function(t,e){_stages[t].transition=e},change:function(t,e){if(void 0===_stages[t])throw new Error("Undefined Stage for state '"+t+"'");this.isCurrent(t)||(_extraArgs=null,arguments.length>1&&(_extraArgs=Array.prototype.slice.call(arguments,1)),_fade.duration&&_stages[t].transition?(_onSwitchComplete=function(){viewport.fadeOut(_fade.color,_fade.duration)},viewport.fadeIn(_fade.color,_fade.duration,(function(){defer(_switchState,this,t)}))):!0===e?_switchState(t):defer(_switchState,this,t))},isCurrent:function(t){return _state===t}};function setTMXValue(name,type,value){var match;if("string"!=typeof value)return value;switch(type){case"int":case"float":value=Number(value);break;case"bool":value="true"===value;break;default:if(!value||isBoolean(value))value=!value||"true"===value;else if(isNumeric(value))value=Number(value);else if(0===value.search(/^json:/i)){match=value.split(/^json:/i)[1];try{value=JSON.parse(match)}catch(t){throw new Error("Unable to parse JSON: "+match)}}else if(0===value.search(/^eval:/i)){match=value.split(/^eval:/i)[1];try{value=eval(match)}catch(t){throw new Error("Unable to evaluate: "+match)}}else((match=value.match(/^#([\da-fA-F])([\da-fA-F]{3})$/))||(match=value.match(/^#([\da-fA-F]{2})([\da-fA-F]{6})$/)))&&(value="#"+match[2]+match[1]);0===name.search(/^(ratio|anchorPoint)$/)&&"number"==typeof value&&(value={x:value,y:value})}return value}function parseAttributes(t,e){if(e.attributes&&e.attributes.length>0)for(var i=0;i<e.attributes.length;i++){var o=e.attributes.item(i);void 0!==o.name?t[o.name]=o.value:t[o.nodeName]=o.nodeValue}}function decompress(){throw new Error("GZIP/ZLIB compressed TMX Tile Map not supported!")}function decodeCSV(t){for(var e=t.replace("\n","").trim().split(","),i=[],o=0;o<e.length;o++)i.push(+e[o]);return i}function decodeBase64AsArray(t,e){var i,o,r;e=e||1;var n=window.atob(t.replace(/[^A-Za-z0-9\+\/\=]/g,"")),s=new Uint32Array(n.length/e);for(i=0,r=n.length/e;i<r;i++)for(s[i]=0,o=e-1;o>=0;--o)s[i]+=n.charCodeAt(i*e+o)<<(o<<3);return s}function decode(t,e,i){switch(i=i||"none",e=e||"none"){case"csv":return decodeCSV(t);case"base64":var o=decodeBase64AsArray(t,4);return"none"===i?o:decompress();case"none":return t;case"xml":throw new Error("XML encoding is deprecated, use base64 instead");default:throw new Error("Unknown layer encoding: "+e)}}function normalize(t,e){var i=e.nodeName;switch(i){case"data":var o=parse(e);o.text=o.text||o.chunk.text,o.encoding=o.encoding||"xml",t.data=decode(o.text,o.encoding,o.compression),t.encoding="none";break;case"imagelayer":case"layer":case"objectgroup":case"group":var r=parse(e);r.type="layer"===i?"tilelayer":i,r.image&&(r.image=r.image.source),t.layers=t.layers||[],t.layers.push(r);break;case"animation":t.animation=parse(e).frames;break;case"frame":case"object":var n=i+"s";t[n]=t[n]||[],t[n].push(parse(e));break;case"tile":var s=parse(e);s.image&&(s.imagewidth=s.image.width,s.imageheight=s.image.height,s.image=s.image.source),t.tiles=t.tiles||{},t.tiles[s.id]=s;break;case"tileset":var a=parse(e);a.image&&(a.imagewidth=a.image.width,a.imageheight=a.image.height,a.image=a.image.source),t.tilesets=t.tilesets||[],t.tilesets.push(a);break;case"polygon":case"polyline":t[i]=[];for(var h,l=parse(e).points.split(" "),c=0;c<l.length;c++)h=l[c].split(","),t[i].push({x:+h[0],y:+h[1]});break;case"properties":t.properties=parse(e);break;case"property":var u=parse(e),d=void 0!==u.value?u.value:u.text;t[u.name]=setTMXValue(u.name,u.type||"string",d);break;default:t[i]=parse(e)}}function parse(t){var e={},i="";if(1===t.nodeType&&parseAttributes(e,t),t.hasChildNodes())for(var o=0;o<t.childNodes.length;o++){var r=t.childNodes.item(o);switch(r.nodeType){case 1:normalize(e,r);break;case 3:i+=r.nodeValue.trim()}}return i&&(e.text=i),e}function applyTMXProperties(t,e){var i=e.properties,o=e.propertytypes;if(void 0!==i)for(var r in i)if(i.hasOwnProperty(r)){var n="string",s=r,a=i[r];void 0!==i[r].name&&(s=i[r].name),void 0!==o?n=o[r]:void 0!==i[r].type&&(n=i[r].type),void 0!==i[r].value&&(a=i[r].value),t[s]=setTMXValue(s,n,a)}}var TextureCache=function(t){this.cache=new Map,this.tinted=new Map,this.units=new Map,this.max_size=t||1/0,this.clear()};function createAtlas(t,e,i,o){return void 0===i&&(i="default"),void 0===o&&(o="no-repeat"),{meta:{app:"melonJS",size:{w:t,h:e},repeat:o,image:"default"},frames:[{filename:i,frame:{x:0,y:0,w:t,h:e}}]}}TextureCache.prototype.clear=function(){this.cache.clear(),this.tinted.clear(),this.units.clear(),this.length=0},TextureCache.prototype.validate=function(){if(this.length>=this.max_size)throw new Error("Texture cache overflow: "+this.max_size+" texture units available for this GPU.")},TextureCache.prototype.get=function(t,e){return this.cache.has(t)||(e||(e=createAtlas(t.width,t.height,t.src?getBasename(t.src):void 0)),this.set(t,new Texture(e,t,!1))),this.cache.get(t)},TextureCache.prototype.delete=function(t){this.cache.has(t)||this.cache.delete(t)},TextureCache.prototype.tint=function(t,e){var i=this.tinted.get(t);return void 0===i&&(i=this.tinted.set(t,new Map)),i.has(e)||i.set(e,renderer.tint(t,e,"multiply")),i.get(e)},TextureCache.prototype.set=function(t,e){var i=t.width,o=t.height;if(!(1!==renderer.WebGLVersion||isPowerOfTwo(i)&&isPowerOfTwo(o))){var r=void 0!==t.src?t.src:t;console.warn("[Texture] "+r+" is not a POT texture ("+i+"x"+o+")")}this.cache.set(t,e)},TextureCache.prototype.getUnit=function(t){return this.units.has(t)||(this.validate(),this.units.set(t,this.length++)),this.units.get(t)};var Texture=function(t,e,i){var o=this;if(this.format=null,this.sources=new Map,this.atlases=new Map,void 0!==t)for(var r in t=Array.isArray(t)?t:[t]){var n=t[r];if(void 0!==n.meta){if(n.meta.app.includes("texturepacker")||n.meta.app.includes("free-tex-packer")){if(this.format="texturepacker",void 0===e){var s=loader.getImage(n.meta.image);if(!s)throw new Error("Atlas texture '"+s+"' not found");this.sources.set(n.meta.image,s)}else this.sources.set(n.meta.image||"default","string"==typeof e?loader.getImage(e):e);this.repeat="no-repeat"}else if(n.meta.app.includes("ShoeBox")){if(!n.meta.exporter||!n.meta.exporter.includes("melonJS"))throw new Error("ShoeBox requires the JSON exporter : https://github.com/melonjs/melonJS/tree/master/media/shoebox_JSON_export.sbx");this.format="ShoeBox",this.repeat="no-repeat",this.sources.set("default","string"==typeof e?loader.getImage(e):e)}else n.meta.app.includes("melonJS")&&(this.format="melonJS",this.repeat=n.meta.repeat||"no-repeat",this.sources.set("default","string"==typeof e?loader.getImage(e):e));this.atlases.set(n.meta.image||"default",this.parse(n))}else void 0!==n.framewidth&&void 0!==n.frameheight&&(this.format="Spritesheet (fixed cell size)",this.repeat="no-repeat",void 0!==e&&(n.image="string"==typeof e?loader.getImage(e):e),this.atlases.set("default",this.parseFromSpriteSheet(n)),this.sources.set("default",n.image))}if(0===this.atlases.length)throw new Error("texture atlas format not supported");!1!==i&&this.sources.forEach((function(t){i instanceof TextureCache?i.set(t,o):renderer.cache.set(t,o)}))};Texture.prototype.parse=function(t){var e=this,i={};return t.frames.forEach((function(o){if(o.hasOwnProperty("filename")){var r,n,s=o.frame,a=o.spriteSourceSize&&o.sourceSize&&o.pivot;a&&(r=o.sourceSize.w*o.pivot.x-(o.trimmed?o.spriteSourceSize.x:0),n=o.sourceSize.h*o.pivot.y-(o.trimmed?o.spriteSourceSize.y:0)),i[o.filename]={name:o.filename,texture:t.meta.image||"default",offset:new Vector2d(s.x,s.y),anchorPoint:a?new Vector2d(r/s.w,n/s.h):null,trimmed:!!o.trimmed,width:s.w,height:s.h,angle:!0===o.rotated?-ETA:0},e.addUvsMap(i,o.filename,t.meta.size.w,t.meta.size.h)}})),i},Texture.prototype.parseFromSpriteSheet=function(t){var e={},i=t.image,o=t.spacing||0,r=t.margin||0,n=i.width,s=i.height,a=pool.pull("Vector2d",~~((n-r+o)/(t.framewidth+o)),~~((s-r+o)/(t.frameheight+o)));if(n%(t.framewidth+o)!=0||s%(t.frameheight+o)!=0){var h=a.x*(t.framewidth+o),l=a.y*(t.frameheight+o);h-n!==o&&l-s!==o&&(n=h,s=l,console.warn("Spritesheet Texture for image: "+i.src+" is not divisible by "+(t.framewidth+o)+"x"+(t.frameheight+o)+", truncating effective size to "+n+"x"+s))}for(var c=0,u=a.x*a.y;c<u;c++){var d=""+c;e[d]={name:d,texture:"default",offset:new Vector2d(r+(o+t.framewidth)*(c%a.x),r+(o+t.frameheight)*~~(c/a.x)),anchorPoint:t.anchorPoint||null,trimmed:!1,width:t.framewidth,height:t.frameheight,angle:0},this.addUvsMap(e,d,n,s)}return pool.push(a),e},Texture.prototype.addUvsMap=function(t,e,i,o){if(renderer instanceof WebGLRenderer){var r=t[e].offset,n=t[e].width,s=t[e].height;t[e].uvs=new Float32Array([r.x/i,r.y/o,(r.x+n)/i,(r.y+s)/o]),t[r.x+","+r.y+","+i+","+o]=t[e]}return t[e]},Texture.prototype.addQuadRegion=function(t,e,i,o,r){!0===renderer.settings.verbose&&console.warn("Adding texture region",t,"for texture",this);var n=this.getTexture(),s=this.getAtlas(),a=n.width,h=n.height;return s[t]={name:t,offset:new Vector2d(e,i),width:o,height:r,angle:0},this.addUvsMap(s,t,a,h),s[t]},Texture.prototype.getAtlas=function(t){return"string"==typeof t?this.atlases.get(t):this.atlases.values().next().value},Texture.prototype.getFormat=function(){return this.format},Texture.prototype.getTexture=function(t){return"object"==typeof t&&"string"==typeof t.texture?this.sources.get(t.texture):this.sources.values().next().value},Texture.prototype.getRegion=function(t,e){var i;return"string"==typeof e?i=this.getAtlas(e)[t]:this.atlases.forEach((function(e){void 0!==e[t]&&(i=e[t])})),i},Texture.prototype.getUVs=function(t){var e=this.getRegion(t);if(void 0===e){var i=t.split(","),o=+i[0],r=+i[1],n=+i[2],s=+i[3];e=this.addQuadRegion(t,o,r,n,s)}return e.uvs},Texture.prototype.createSpriteFromName=function(t,e,i){return void 0===i&&(i=!1),pool.pull(!0===i?"me.NineSliceSprite":"me.Sprite",0,0,Object.assign({image:this,region:t},e||{}))},Texture.prototype.createAnimationFromName=function(t,e){for(var i,o=[],r={},n=0,s=0,a=0;a<t.length;++a){if(null==(i=this.getRegion(t[a])))throw new Error("Texture - region for "+t[a]+" not found");o[a]=i,r[t[a]]=a,n=Math.max(i.width,n),s=Math.max(i.height,s)}return new Sprite(0,0,Object.assign({image:this,framewidth:n,frameheight:s,margin:0,spacing:0,atlas:o,atlasIndices:r},e||{}))};var Sprite=function(t){function e(e,i,o){if(t.call(this,e,i,0,0),this.animationpause=!1,this.animationspeed=100,this.offset=pool.pull("Vector2d",0,0),this.source=null,this.anim={},this.resetAnim=void 0,this.current={name:"default",length:0,offset:new Vector2d,width:0,height:0,angle:0,idx:0},this.dt=0,this._flicker={isFlickering:!1,duration:0,callback:null,state:!1},o.image instanceof Texture){if(this.source=o.image,this.image=this.source.getTexture(),this.textureAtlas=o.image,void 0!==o.region){var r=this.source.getRegion(o.region);if(!r)throw new Error("Texture - region for "+o.region+" not found");this.setRegion(r),this.current.width=o.framewidth||r.width,this.current.height=o.frameheight||r.height}}else{if(this.image="object"==typeof o.image?o.image:loader.getImage(o.image),!this.image)throw new Error("me.Sprite: '"+o.image+"' image/texture not found!");this.current.width=o.framewidth=o.framewidth||this.image.width,this.current.height=o.frameheight=o.frameheight||this.image.height,this.source=renderer.cache.get(this.image,o),this.textureAtlas=this.source.getAtlas()}void 0!==o.atlas&&(this.textureAtlas=o.atlas,this.atlasIndices=o.atlasIndices),this.width=this.current.width,this.height=this.current.height,void 0!==o.flipX&&this.flipX(!!o.flipX),void 0!==o.flipY&&this.flipY(!!o.flipY),void 0!==o.rotation&&this.rotate(o.rotation),o.anchorPoint&&this.anchorPoint.set(o.anchorPoint.x,o.anchorPoint.y),void 0!==o.tint&&this.tint.setColor(o.tint),"string"==typeof o.name&&(this.name=o.name),void 0!==o.z&&(this.pos.z=o.z),0!==this.addAnimation("default",null)&&this.setCurrentAnimation("default"),this.autoTransform=!0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.isFlickering=function(){return this._flicker.isFlickering},e.prototype.flicker=function(t,e){return this._flicker.duration=t,this._flicker.duration<=0?(this._flicker.isFlickering=!1,this._flicker.callback=null):this._flicker.isFlickering||(this._flicker.callback=e,this._flicker.isFlickering=!0),this},e.prototype.addAnimation=function(t,e,i){this.anim[t]={name:t,frames:[],idx:0,length:0};var o=0;if("object"!=typeof this.textureAtlas)return 0;null==e&&(e=[],Object.keys(this.textureAtlas).forEach((function(t,i){e[i]=i})));for(var r=0,n=e.length;r<n;r++){var s,a=e[r],h=(s="number"==typeof a||"string"==typeof a?{name:a,delay:i||this.animationspeed}:a).name;if("number"==typeof h)void 0!==this.textureAtlas[h]&&(this.anim[t].frames[r]=Object.assign({},this.textureAtlas[h],s),o++);else{if(this.source.getFormat().includes("Spritesheet"))throw new Error("string parameters for addAnimation are not allowed for standard spritesheet based Texture");this.anim[t].frames[r]=Object.assign({},this.textureAtlas[this.atlasIndices[h]],s),o++}}return this.anim[t].length=o,o},e.prototype.setCurrentAnimation=function(t,e,i){if(!this.anim[t])throw new Error("animation id '"+t+"' not defined");return this.current.name=t,this.current.length=this.anim[this.current.name].length,this.resetAnim="string"==typeof e?this.setCurrentAnimation.bind(this,e,null,!0):"function"==typeof e?e:void 0,this.setAnimationFrame(this.current.idx),i||(this.dt=0),this.isDirty=!0,this},e.prototype.reverseAnimation=function(t){return void 0!==t&&void 0!==this.anim[t]?this.anim[t].frames.reverse():this.anim[this.current.name].frames.reverse(),this.isDirty=!0,this},e.prototype.isCurrentAnimation=function(t){return this.current.name===t},e.prototype.setRegion=function(t){return this.image=this.source.getTexture(t),this.current.offset.setV(t.offset),this.current.angle=t.angle,this.width=this.current.width=t.width,this.height=this.current.height=t.height,t.anchorPoint&&this.anchorPoint.set(this._flip.x&&!0===t.trimmed?1-t.anchorPoint.x:t.anchorPoint.x,this._flip.y&&!0===t.trimmed?1-t.anchorPoint.y:t.anchorPoint.y),this.isDirty=!0,this},e.prototype.setAnimationFrame=function(t){return this.current.idx=(t||0)%this.current.length,this.setRegion(this.getAnimationFrameObjectByIndex(this.current.idx))},e.prototype.getCurrentAnimationFrame=function(){return this.current.idx},e.prototype.getAnimationFrameObjectByIndex=function(t){return this.anim[this.current.name].frames[t]},e.prototype.update=function(t){if(!this.animationpause&&this.current&&this.current.length>0){var e=this.getAnimationFrameObjectByIndex(this.current.idx).delay;for(this.dt+=t;this.dt>=e;){this.isDirty=!0,this.dt-=e;var i=this.current.length>1?this.current.idx+1:this.current.idx;if(this.setAnimationFrame(i),0===this.current.idx&&"function"==typeof this.resetAnim&&!1===this.resetAnim()){this.setAnimationFrame(this.current.length-1),this.dt%=e;break}e=this.getAnimationFrameObjectByIndex(this.current.idx).delay}}return this._flicker.isFlickering&&(this._flicker.duration-=t,this._flicker.duration<0&&("function"==typeof this._flicker.callback&&this._flicker.callback(),this.flicker(-1)),this.isDirty=!0),this.isDirty},e.prototype.destroy=function(){pool.push(this.offset),this.offset=void 0,t.prototype.destroy.call(this)},e.prototype.draw=function(t){if(!this._flicker.isFlickering||(this._flicker.state=!this._flicker.state,this._flicker.state)){var e=this.current,i=this.pos.x,o=this.pos.y,r=e.width,n=e.height,s=e.offset,a=this.offset;0!==e.angle&&(t.translate(-i,-o),t.rotate(e.angle),i-=n,r=e.height,n=e.width),t.drawImage(this.image,a.x+s.x,a.y+s.y,r,n,i,o,r,n)}},e}(Renderable),TMX_FLIP_H=2147483648,TMX_FLIP_V=1073741824,TMX_FLIP_AD=536870912,TMX_CLEAR_BIT_MASK$1=536870911,Tile=function(t){function e(e,i,o,r){var n,s;if(t.call(this),r.isCollection){var a=r.getTileImage(o&TMX_CLEAR_BIT_MASK$1);n=a.width,s=a.height}else n=r.tilewidth,s=r.tileheight;this.setMinMax(0,0,n,s),this.tileset=r,this.currentTransform=null,this.col=e,this.row=i,this.tileId=o,this.flippedX=0!=(this.tileId&TMX_FLIP_H),this.flippedY=0!=(this.tileId&TMX_FLIP_V),this.flippedAD=0!=(this.tileId&TMX_FLIP_AD),this.flipped=this.flippedX||this.flippedY||this.flippedAD,!0===this.flipped&&(null===this.currentTransform&&(this.currentTransform=new Matrix2d),this.setTileTransform(this.currentTransform.identity())),this.tileId&=TMX_CLEAR_BIT_MASK$1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setTileTransform=function(t){t.translate(this.width/2,this.height/2),this.flippedAD&&(t.rotate(-90*Math.PI/180),t.scale(-1,1)),this.flippedX&&t.scale(this.flippedAD?1:-1,this.flippedAD?-1:1),this.flippedY&&t.scale(this.flippedAD?-1:1,this.flippedAD?1:-1),t.translate(-this.width/2,-this.height/2)},e.prototype.getRenderable=function(t){var e,i=this.tileset;if(i.animations.has(this.tileId)){var o=[],r=[];i.animations.get(this.tileId).frames.forEach((function(t){r.push(t.tileid),o.push({name:""+t.tileid,delay:t.duration})})),(e=i.texture.createAnimationFromName(r,t)).addAnimation(this.tileId-i.firstgid,o),e.setCurrentAnimation(this.tileId-i.firstgid)}else if(!0===i.isCollection){var n=i.getTileImage(this.tileId);(e=new Sprite(0,0,Object.assign({image:n}))).anchorPoint.set(0,0),e.scale(t.width/this.width,t.height/this.height),void 0!==t.rotation&&(e.anchorPoint.set(.5,.5),e.currentTransform.rotate(t.rotation),e.currentTransform.translate(t.width/2,t.height/2),t.rotation=void 0)}else(e=i.texture.createSpriteFromName(this.tileId-i.firstgid,t)).anchorPoint.set(0,0);return this.setTileTransform(e.currentTransform),e},e}(Bounds$1),Line=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.contains=function(){var t,e;2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),t-=this.pos.x,e-=this.pos.y;var i=this.points[0],o=this.points[1];return(e-i.y)*(o.x-i.x)==(o.y-i.y)*(t-i.x)},e.prototype.recalc=function(){var t=this.edges,e=this.normals,i=this.indices,o=this.points;if(2!==o.length)throw new Error("Requires exactly 2 points");return void 0===t[0]&&(t[0]=new Vector2d),t[0].copy(o[1]).sub(o[0]),void 0===e[0]&&(e[0]=new Vector2d),e[0].copy(t[0]).perp().normalize(),i.length=0,this},e.prototype.clone=function(){var t=[];return this.points.forEach((function(e){t.push(e.clone())})),new e(this.pos.x,this.pos.y,t)},e}(Polygon),Renderer=function(t){return this.settings=t,this.isContextValid=!0,this.currentScissor=new Int32Array([0,0,this.settings.width,this.settings.height]),this.currentBlendMode="normal",!0===device$1.ejecta?this.canvas=document.getElementById("canvas"):void 0!==window.canvas?this.canvas=window.canvas:void 0!==this.settings.canvas?this.canvas=this.settings.canvas:this.canvas=createCanvas(this.settings.zoomX,this.settings.zoomY),this.backBufferCanvas=this.canvas,this.context=null,this.currentColor=new Color(0,0,0,1),this.currentTint=new Color(255,255,255,1),this.projectionMatrix=new Matrix3d,this.uvOffset=0,this.Texture=Texture,on(GAME_RESET,(function(){renderer.reset()})),this};Renderer.prototype.clear=function(){},Renderer.prototype.reset=function(){this.resetTransform(),this.setBlendMode(this.settings.blendMode),this.setColor("#000000"),this.clearTint(),this.cache.clear(),this.currentScissor[0]=0,this.currentScissor[1]=0,this.currentScissor[2]=this.backBufferCanvas.width,this.currentScissor[3]=this.backBufferCanvas.height},Renderer.prototype.getCanvas=function(){return this.backBufferCanvas},Renderer.prototype.getScreenCanvas=function(){return this.canvas},Renderer.prototype.getScreenContext=function(){return this.context},Renderer.prototype.getBlendMode=function(){return this.currentBlendMode},Renderer.prototype.getContext2d=function(t,e){if(null==t)throw new Error("You must pass a canvas element in order to create a 2d context");if(void 0===t.getContext)throw new Error("Your browser does not support HTML5 canvas.");"boolean"!=typeof e&&(e=!0);var i=t.getContext("2d",{alpha:e});return i.canvas||(i.canvas=t),this.setAntiAlias(i,this.settings.antiAlias),i},Renderer.prototype.getWidth=function(){return this.backBufferCanvas.width},Renderer.prototype.getHeight=function(){return this.backBufferCanvas.height},Renderer.prototype.getColor=function(){return this.currentColor},Renderer.prototype.globalAlpha=function(){return this.currentColor.glArray[3]},Renderer.prototype.overlaps=function(t){return t.left<=this.getWidth()&&t.right>=0&&t.top<=this.getHeight()&&t.bottom>=0},Renderer.prototype.resize=function(t,e){t===this.backBufferCanvas.width&&e===this.backBufferCanvas.height||(this.canvas.width=this.backBufferCanvas.width=t,this.canvas.height=this.backBufferCanvas.height=e,this.currentScissor[0]=0,this.currentScissor[1]=0,this.currentScissor[2]=t,this.currentScissor[3]=e,emit(CANVAS_ONRESIZE,t,e))},Renderer.prototype.setAntiAlias=function(t,e){var i=t.canvas;setPrefixed("imageSmoothingEnabled",!0===e,t),!0!==e?(i.style["image-rendering"]="optimizeSpeed",i.style["image-rendering"]="-moz-crisp-edges",i.style["image-rendering"]="-o-crisp-edges",i.style["image-rendering"]="-webkit-optimize-contrast",i.style["image-rendering"]="optimize-contrast",i.style["image-rendering"]="crisp-edges",i.style["image-rendering"]="pixelated",i.style.msInterpolationMode="nearest-neighbor"):i.style["image-rendering"]="auto"},Renderer.prototype.setProjection=function(t){this.projectionMatrix.copy(t)},Renderer.prototype.stroke=function(t,e){t instanceof Rect||t instanceof Bounds$1?this.strokeRect(t.left,t.top,t.width,t.height,e):t instanceof Line||t instanceof Polygon?this.strokePolygon(t,e):t instanceof Ellipse&&this.strokeEllipse(t.pos.x,t.pos.y,t.radiusV.x,t.radiusV.y,e)},Renderer.prototype.tint=function(t,e,i){var o=createCanvas(t.width,t.height,!0),r=this.getContext2d(o);return r.save(),r.fillStyle=e instanceof Color?e.toRGB():e,r.fillRect(0,0,t.width,t.height),r.globalCompositeOperation=i||"multiply",r.drawImage(t,0,0),r.globalCompositeOperation="destination-atop",r.drawImage(t,0,0),r.restore(),o},Renderer.prototype.fill=function(t){this.stroke(t,!0)},Renderer.prototype.setMask=function(t){},Renderer.prototype.clearMask=function(){},Renderer.prototype.setTint=function(t,e){void 0===e&&(e=t.alpha),this.currentTint.copy(t),this.currentTint.alpha*=e},Renderer.prototype.clearTint=function(){this.currentTint.setColor(255,255,255,1)},Renderer.prototype.drawFont=function(){};var CanvasRenderer=function(t){function e(e){return t.call(this,e),this.context=this.getContext2d(this.getScreenCanvas(),this.settings.transparent),this.settings.doubleBuffering?(this.backBufferCanvas=createCanvas(this.settings.width,this.settings.height,!0),this.backBufferContext2D=this.getContext2d(this.backBufferCanvas)):(this.backBufferCanvas=this.getScreenCanvas(),this.backBufferContext2D=this.context),this.setBlendMode(this.settings.blendMode),this.setColor(this.currentColor),this.cache=new TextureCache,!1===this.settings.textureSeamFix||this.settings.antiAlias||(this.uvOffset=1),this}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reset=function(){t.prototype.reset.call(this),this.clearColor(this.currentColor,!0!==this.settings.transparent)},e.prototype.resetTransform=function(){this.backBufferContext2D.setTransform(1,0,0,1,0,0)},e.prototype.setBlendMode=function(t,e){if(e=e||this.getContext(),this.currentBlendMode=t,"multiply"===t)e.globalCompositeOperation="multiply";else e.globalCompositeOperation="source-over",this.currentBlendMode="normal";this.settings.doubleBuffering&&this.settings.transparent&&(this.context.globalCompositeOperation="copy")},e.prototype.clear=function(){this.settings.transparent&&this.clearColor("rgba(0,0,0,0)",!0)},e.prototype.flush=function(){this.settings.doubleBuffering&&this.context.drawImage(this.backBufferCanvas,0,0)},e.prototype.clearColor=function(t,e){void 0===t&&(t="#000000"),this.save(),this.resetTransform(),this.backBufferContext2D.globalCompositeOperation=e?"copy":"source-over",this.backBufferContext2D.fillStyle=t instanceof Color?t.toRGBA():t,this.fillRect(0,0,this.backBufferCanvas.width,this.backBufferCanvas.height),this.restore()},e.prototype.clearRect=function(t,e,i,o){this.backBufferContext2D.clearRect(t,e,i,o)},e.prototype.createPattern=function(t,e){return this.backBufferContext2D.createPattern(t,e)},e.prototype.drawImage=function(t,e,i,o,r,n,s,a,h){if(!(this.backBufferContext2D.globalAlpha<1/255)){void 0===o?(o=a=t.width,r=h=t.height,n=e,s=i,e=0,i=0):void 0===n&&(n=e,s=i,a=o,h=r,o=t.width,r=t.height,e=0,i=0),!1===this.settings.subPixel&&(n=~~n,s=~~s);var l=t,c=this.currentTint.toArray();1===c[0]&&1===c[1]&&1===c[2]||(l=this.cache.tint(t,this.currentTint.toRGB())),this.backBufferContext2D.drawImage(l,e,i,o,r,n,s,a,h)}},e.prototype.drawPattern=function(t,e,i,o,r){if(!(this.backBufferContext2D.globalAlpha<1/255)){var n=this.backBufferContext2D.fillStyle;this.backBufferContext2D.fillStyle=t,this.backBufferContext2D.fillRect(e,i,o,r),this.backBufferContext2D.fillStyle=n}},e.prototype.strokeArc=function(t,e,i,o,r,n,s){void 0===s&&(s=!1);var a=this.backBufferContext2D;a.globalAlpha<1/255||(a.translate(t,e),a.beginPath(),a.arc(0,0,i,o,r,n||!1),a[!0===s?"fill":"stroke"](),a.translate(-t,-e))},e.prototype.fillArc=function(t,e,i,o,r,n){this.strokeArc(t,e,i,o,r,n||!1,!0)},e.prototype.strokeEllipse=function(t,e,i,o,r){void 0===r&&(r=!1);var n=this.backBufferContext2D;if(!(n.globalAlpha<1/255)){var s=t-i,a=t+i,h=e-o,l=e+o,c=.551784*i,u=.551784*o,d=t-c,p=t+c,f=e-u,y=e+u;n.beginPath(),n.moveTo(t,h),n.bezierCurveTo(p,h,a,f,a,e),n.bezierCurveTo(a,y,p,l,t,l),n.bezierCurveTo(d,l,s,y,s,e),n.bezierCurveTo(s,f,d,h,t,h),n[!0===r?"fill":"stroke"](),n.closePath()}},e.prototype.fillEllipse=function(t,e,i,o){this.strokeEllipse(t,e,i,o,!0)},e.prototype.strokeLine=function(t,e,i,o){var r=this.backBufferContext2D;r<1/255||(r.beginPath(),r.moveTo(t,e),r.lineTo(i,o),r.stroke())},e.prototype.fillLine=function(t,e,i,o){this.strokeLine(t,e,i,o)},e.prototype.strokePolygon=function(t,e){void 0===e&&(e=!1);var i=this.backBufferContext2D;if(!(i.globalAlpha<1/255)){var o;this.translate(t.pos.x,t.pos.y),i.beginPath(),i.moveTo(t.points[0].x,t.points[0].y);for(var r=1;r<t.points.length;r++)o=t.points[r],i.lineTo(o.x,o.y);i.lineTo(t.points[0].x,t.points[0].y),i[!0===e?"fill":"stroke"](),i.closePath(),this.translate(-t.pos.x,-t.pos.y)}},e.prototype.fillPolygon=function(t){this.strokePolygon(t,!0)},e.prototype.strokeRect=function(t,e,i,o,r){if(void 0===r&&(r=!1),!0===r)this.fillRect(t,e,i,o);else{if(this.backBufferContext2D.globalAlpha<1/255)return;this.backBufferContext2D.strokeRect(t,e,i,o)}},e.prototype.fillRect=function(t,e,i,o){this.backBufferContext2D.globalAlpha<1/255||this.backBufferContext2D.fillRect(t,e,i,o)},e.prototype.getContext=function(){return this.backBufferContext2D},e.prototype.getFontContext=function(){return this.getContext()},e.prototype.save=function(){this.backBufferContext2D.save()},e.prototype.restore=function(){this.backBufferContext2D.restore(),this.currentColor.glArray[3]=this.backBufferContext2D.globalAlpha,this.currentScissor[0]=0,this.currentScissor[1]=0,this.currentScissor[2]=this.backBufferCanvas.width,this.currentScissor[3]=this.backBufferCanvas.height},e.prototype.rotate=function(t){this.backBufferContext2D.rotate(t)},e.prototype.scale=function(t,e){this.backBufferContext2D.scale(t,e)},e.prototype.setColor=function(t){this.backBufferContext2D.strokeStyle=this.backBufferContext2D.fillStyle=t instanceof Color?t.toRGBA():t},e.prototype.setGlobalAlpha=function(t){this.backBufferContext2D.globalAlpha=this.currentColor.glArray[3]=t},e.prototype.setLineWidth=function(t){this.backBufferContext2D.lineWidth=t},e.prototype.setTransform=function(t){this.resetTransform(),this.transform(t)},e.prototype.transform=function(t){var e=t.toArray(),i=e[0],o=e[1],r=e[3],n=e[4],s=e[6],a=e[7];!1===this.settings.subPixel&&(s|=0,a|=0),this.backBufferContext2D.transform(i,o,r,n,s,a)},e.prototype.translate=function(t,e){!1===this.settings.subPixel?this.backBufferContext2D.translate(~~t,~~e):this.backBufferContext2D.translate(t,e)},e.prototype.clipRect=function(t,e,i,o){var r=this.backBufferCanvas;if(0!==t||0!==e||i!==r.width||o!==r.height){var n=this.currentScissor;if(n[0]!==t||n[1]!==e||n[2]!==i||n[3]!==o){var s=this.backBufferContext2D;s.beginPath(),s.rect(t,e,i,o),s.clip(),n[0]=t,n[1]=e,n[2]=i,n[3]=o}}},e.prototype.setMask=function(t){var e=this.backBufferContext2D,i=t.pos.x,o=t.pos.y;if(e.save(),t instanceof Ellipse){var r=t.radiusV.x,n=t.radiusV.y,s=i-r,a=i+r,h=o-n,l=o+n,c=.551784*r,u=.551784*n,d=i-c,p=i+c,f=o-u,y=o+u;e.beginPath(),e.moveTo(i,h),e.bezierCurveTo(p,h,a,f,a,o),e.bezierCurveTo(a,y,p,l,i,l),e.bezierCurveTo(d,l,s,y,s,o),e.bezierCurveTo(s,f,d,h,i,h)}else{var g;e.beginPath(),e.moveTo(i+t.points[0].x,o+t.points[0].y);for(var v=1;v<t.points.length;v++)g=t.points[v],e.lineTo(i+g.x,o+g.y)}e.clip()},e.prototype.clearMask=function(){this.backBufferContext2D.restore()},e}(Renderer);function initArray(t){t.layerData=new Array(t.cols);for(var e=0;e<t.cols;e++){t.layerData[e]=new Array(t.rows);for(var i=0;i<t.rows;i++)t.layerData[e][i]=null}}function setLayerData(t,e){var i=0;initArray(t);for(var o=0;o<t.rows;o++)for(var r=0;r<t.cols;r++){var n=e[i++];0!==n&&(t.layerData[r][o]=t.getTileById(n,r,o))}}function preRenderLayer(t,e){for(var i=0;i<t.rows;i++)for(var o=0;o<t.cols;o++){var r=t.layerData[o][i];r instanceof Tile&&t.getRenderer().drawTile(e,o,i,r)}}var TMXLayer=function(t){function e(e,i,o,r,n,s,a){t.call(this,0,0,0,0),this.tilewidth=i.tilewidth||o,this.tileheight=i.tileheight||r,this.orientation=n,this.tilesets=s,this.tileset=this.tilesets?this.tilesets.getTilesetByIndex(0):null,this.maxTileSize={width:0,height:0};for(var h=0;h<this.tilesets.length;h++){var l=this.tilesets.getTilesetByIndex(h);this.maxTileSize.width=Math.max(this.maxTileSize.width,l.tilewidth),this.maxTileSize.height=Math.max(this.maxTileSize.height,l.tileheight)}this.animatedTilesets=[],this.isAnimated=!1,this.renderorder=i.renderorder||"right-down",this.pos.z=a,this.anchorPoint.set(0,0),this.name=i.name,this.cols=+i.width,this.rows=+i.height;var c=void 0!==i.visible?+i.visible:1;this.setOpacity(c?+i.opacity:0),"string"==typeof i.tintcolor&&this.tint.parseHex(i.tintcolor,!0),"isometric"===this.orientation?(this.width=(this.cols+this.rows)*(this.tilewidth/2),this.height=(this.cols+this.rows)*(this.tileheight/2)):(this.width=this.cols*this.tilewidth,this.height=this.rows*this.tileheight),applyTMXProperties(this,i),void 0===this.preRender&&(this.preRender=world.preRender),this.setRenderer(e.getRenderer()),setLayerData(this,decode(i.data,i.encoding,i.compression))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onActivateEvent=function(){if(void 0===this.animatedTilesets&&(this.animatedTilesets=[]),this.tilesets)for(var t=this.tilesets.tilesets,e=0;e<t.length;e++)t[e].isAnimated&&this.animatedTilesets.push(t[e]);this.isAnimated=this.animatedTilesets.length>0,this.isAnimated&&(this.preRender=!1),this.getBounds().addBounds(this.getRenderer().getBounds(),!0),this.getBounds().shift(this.pos),!0!==this.preRender||this.canvasRenderer||(this.canvasRenderer=new CanvasRenderer({canvas:createCanvas(this.width,this.height),widht:this.width,heigth:this.height,transparent:!0}),preRenderLayer(this,this.canvasRenderer))},e.prototype.onDeactivateEvent=function(){this.animatedTilesets=void 0},e.prototype.setRenderer=function(t){this.renderer=t},e.prototype.getRenderer=function(){return this.renderer},e.prototype.getTileId=function(t,e){var i=this.getTile(t,e);return i?i.tileId:null},e.prototype.getTile=function(t,e){var i=null;if(this.contains(t,e)){var o=this.getRenderer().pixelToTileCoords(t,e,pool.pull("Vector2d"));i=this.cellAt(o.x,o.y),pool.push(o)}return i},e.prototype.setTile=function(t,e,i){return this.layerData[e][i]=t,t},e.prototype.getTileById=function(t,e,i){return this.tileset.contains(t)||(this.tileset=this.tilesets.getTilesetByGid(t)),new Tile(e,i,t,this.tileset)},e.prototype.cellAt=function(t,e,i){var o=~~t,r=~~e,n=this.getRenderer();return!1===i||o>=0&&o<n.cols&&r>=0&&r<n.rows?this.layerData[o][r]:null},e.prototype.clearTile=function(t,e){this.layerData[t][e]=null,this.preRender&&this.canvasRenderer.clearRect(t*this.tilewidth,e*this.tileheight,this.tilewidth,this.tileheight)},e.prototype.update=function(t){if(this.isAnimated){for(var e=!1,i=0;i<this.animatedTilesets.length;i++)e=this.animatedTilesets[i].update(t)||e;return e}return!1},e.prototype.draw=function(t,e){if(this.preRender){var i=Math.min(e.width,this.width),o=Math.min(e.height,this.height);t.drawImage(this.canvasRenderer.getCanvas(),e.pos.x,e.pos.y,i,o,e.pos.x,e.pos.y,i,o)}else this.getRenderer().drawTileLayer(t,this,e)},e}(Renderable),Bounds=function(t){this.onResetEvent(t)},prototypeAccessors={x:{configurable:!0},y:{configurable:!0},width:{configurable:!0},height:{configurable:!0},left:{configurable:!0},right:{configurable:!0},top:{configurable:!0},bottom:{configurable:!0},centerX:{configurable:!0},centerY:{configurable:!0},center:{configurable:!0}};Bounds.prototype.onResetEvent=function(t){void 0===this.min?(this.min={x:1/0,y:1/0},this.max={x:-1/0,y:-1/0}):this.clear(),void 0!==t&&this.update(t),this._center=new Vector2d},Bounds.prototype.clear=function(){this.setMinMax(1/0,1/0,-1/0,-1/0)},Bounds.prototype.setMinMax=function(t,e,i,o){this.min.x=t,this.min.y=e,this.max.x=i,this.max.y=o},prototypeAccessors.x.get=function(){return this.min.x},prototypeAccessors.x.set=function(t){var e=this.max.x-this.min.x;this.min.x=t,this.max.x=t+e},prototypeAccessors.y.get=function(){return this.min.y},prototypeAccessors.y.set=function(t){var e=this.max.y-this.min.y;this.min.y=t,this.max.y=t+e},prototypeAccessors.width.get=function(){return this.max.x-this.min.x},prototypeAccessors.width.set=function(t){this.max.x=this.min.x+t},prototypeAccessors.height.get=function(){return this.max.y-this.min.y},prototypeAccessors.height.set=function(t){this.max.y=this.min.y+t},prototypeAccessors.left.get=function(){return this.min.x},prototypeAccessors.right.get=function(){return this.max.x},prototypeAccessors.top.get=function(){return this.min.y},prototypeAccessors.bottom.get=function(){return this.max.y},prototypeAccessors.centerX.get=function(){return this.min.x+this.width/2},prototypeAccessors.centerY.get=function(){return this.min.y+this.height/2},prototypeAccessors.center.get=function(){return this._center.set(this.centerX,this.centerY)},Bounds.prototype.update=function(t){this.add(t,!0)},Bounds.prototype.add=function(t,e){void 0===e&&(e=!1),!0===e&&this.clear();for(var i=0;i<t.length;i++){var o=t[i];o.x>this.max.x&&(this.max.x=o.x),o.x<this.min.x&&(this.min.x=o.x),o.y>this.max.y&&(this.max.y=o.y),o.y<this.min.y&&(this.min.y=o.y)}},Bounds.prototype.addBounds=function(t,e){void 0===e&&(e=!1),!0===e&&this.clear(),t.max.x>this.max.x&&(this.max.x=t.max.x),t.min.x<this.min.x&&(this.min.x=t.min.x),t.max.y>this.max.y&&(this.max.y=t.max.y),t.min.y<this.min.y&&(this.min.y=t.min.y)},Bounds.prototype.addPoint=function(t,e){void 0!==e&&(t=e.apply(t)),this.min.x=Math.min(this.min.x,t.x),this.max.x=Math.max(this.max.x,t.x),this.min.y=Math.min(this.min.y,t.y),this.max.y=Math.max(this.max.y,t.y)},Bounds.prototype.addFrame=function(t,e,i,o,r){var n=me.pool.pull("Vector2d");this.addPoint(n.set(t,e),r),this.addPoint(n.set(i,e),r),this.addPoint(n.set(t,o),r),this.addPoint(n.set(i,o),r),me.pool.push(n)},Bounds.prototype.contains=function(){var t,e,i,o,r=arguments[0];return 2===arguments.length?(t=e=r,i=o=arguments[1]):r instanceof Bounds?(t=r.min.x,e=r.max.x,i=r.min.y,o=r.max.y):(t=e=r.x,i=o=r.y),t>=this.min.x&&e<=this.max.x&&i>=this.min.y&&o<=this.max.y},Bounds.prototype.overlaps=function(t){return!(this.right<t.left||this.left>t.right||this.bottom<t.top||this.top>t.bottom)},Bounds.prototype.isFinite=function(){return isFinite(this.min.x)&&isFinite(this.max.x)&&isFinite(this.min.y)&&isFinite(this.max.y)},Bounds.prototype.translate=function(){var t,e;2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y),this.min.x+=t,this.max.x+=t,this.min.y+=e,this.max.y+=e},Bounds.prototype.shift=function(){var t,e;2===arguments.length?(t=arguments[0],e=arguments[1]):(t=arguments[0].x,e=arguments[0].y);var i=this.max.x-this.min.x,o=this.max.y-this.min.y;this.min.x=t,this.max.x=t+i,this.min.y=e,this.max.y=e+o},Bounds.prototype.clone=function(){var t=new Bounds;return t.addBounds(this),t},Bounds.prototype.toPolygon=function(){return new Polygon(this.x,this.y,[new Vector2d(0,0),new Vector2d(this.width,0),new Vector2d(this.width,this.height),new Vector2d(0,this.height)])},Object.defineProperties(Bounds.prototype,prototypeAccessors);var TMXRenderer=function(t,e,i,o){this.cols=t,this.rows=e,this.tilewidth=i,this.tileheight=o,this.bounds=new Bounds};TMXRenderer.prototype.canRender=function(t){return this.tilewidth===t.tilewidth&&this.tileheight===t.tileheight},TMXRenderer.prototype.getBounds=function(t){var e=t instanceof TMXLayer?pool.pull("Bounds"):this.bounds;return e.setMinMax(0,0,this.cols*this.tilewidth,this.rows*this.tileheight),e},TMXRenderer.prototype.pixelToTileCoords=function(t,e,i){return i},TMXRenderer.prototype.tileToPixelCoords=function(t,e,i){return i},TMXRenderer.prototype.drawTile=function(t,e,i,o){},TMXRenderer.prototype.drawTileLayer=function(t,e,i){};var TMXOrthogonalRenderer=function(t){function e(e){t.call(this,e.cols,e.rows,e.tilewidth,e.tileheight)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.canRender=function(e){return"orthogonal"===e.orientation&&t.prototype.canRender.call(this,e)},e.prototype.pixelToTileCoords=function(t,e,i){return(i||new Vector2d).set(t/this.tilewidth,e/this.tileheight)},e.prototype.tileToPixelCoords=function(t,e,i){return(i||new Vector2d).set(t*this.tilewidth,e*this.tileheight)},e.prototype.adjustPosition=function(t){"number"==typeof t.gid&&(t.y-=t.height)},e.prototype.drawTile=function(t,e,i,o){var r=o.tileset;r.drawTile(t,r.tileoffset.x+e*this.tilewidth,r.tileoffset.y+(i+1)*this.tileheight-r.tileheight,o)},e.prototype.drawTileLayer=function(t,e,i){var o=1,r=1,n=this.pixelToTileCoords(Math.max(i.pos.x-(e.maxTileSize.width-e.tilewidth),0),Math.max(i.pos.y-(e.maxTileSize.height-e.tileheight),0),pool.pull("Vector2d")).floorSelf(),s=this.pixelToTileCoords(i.pos.x+i.width+this.tilewidth,i.pos.y+i.height+this.tileheight,pool.pull("Vector2d")).ceilSelf();switch(s.x=s.x>this.cols?this.cols:s.x,s.y=s.y>this.rows?this.rows:s.y,e.renderorder){case"right-up":s.y=n.y+(n.y=s.y)-s.y,r=-1;break;case"left-down":s.x=n.x+(n.x=s.x)-s.x,o=-1;break;case"left-up":s.x=n.x+(n.x=s.x)-s.x,s.y=n.y+(n.y=s.y)-s.y,o=-1,r=-1}for(var a=n.y;a!==s.y;a+=r)for(var h=n.x;h!==s.x;h+=o){var l=e.cellAt(h,a,!1);l&&this.drawTile(t,h,a,l)}pool.push(n),pool.push(s)},e}(TMXRenderer),TMXIsometricRenderer=function(t){function e(e){t.call(this,e.cols,e.rows,e.tilewidth,e.tileheight),this.hTilewidth=this.tilewidth/2,this.hTileheight=this.tileheight/2,this.originX=this.rows*this.hTilewidth}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.canRender=function(e){return"isometric"===e.orientation&&t.prototype.canRender.call(this,e)},e.prototype.getBounds=function(t){var e=t instanceof TMXLayer?pool.pull("Bounds"):this.bounds;return e.setMinMax(0,0,(this.cols+this.rows)*(this.tilewidth/2),(this.cols+this.rows)*(this.tileheight/2)),e},e.prototype.pixelToTileCoords=function(t,e,i){return(i||new Vector2d).set(e/this.tileheight+(t-this.originX)/this.tilewidth,e/this.tileheight-(t-this.originX)/this.tilewidth)},e.prototype.tileToPixelCoords=function(t,e,i){return(i||new Vector2d).set((t-e)*this.hTilewidth+this.originX,(t+e)*this.hTileheight)},e.prototype.adjustPosition=function(t){var e=t.x/this.hTilewidth,i=t.y/this.tileheight,o=pool.pull("Vector2d");this.tileToPixelCoords(e,i,o),t.x=o.x,t.y=o.y,pool.push(o)},e.prototype.drawTile=function(t,e,i,o){var r=o.tileset;r.drawTile(t,(this.cols-1)*r.tilewidth+(e-i)*r.tilewidth>>1,-r.tilewidth+(e+i)*r.tileheight>>2,o)},e.prototype.drawTileLayer=function(t,e,i){var o=e.tileset,r=this.pixelToTileCoords(i.pos.x-o.tilewidth,i.pos.y-o.tileheight,pool.pull("Vector2d")).floorSelf(),n=this.pixelToTileCoords(i.pos.x+i.width+o.tilewidth,i.pos.y+i.height+o.tileheight,pool.pull("Vector2d")).ceilSelf(),s=this.tileToPixelCoords(n.x,n.y,pool.pull("Vector2d")),a=this.tileToPixelCoords(r.x,r.y,pool.pull("Vector2d"));a.x-=this.hTilewidth,a.y+=this.tileheight;var h=a.y-i.pos.y>this.hTileheight,l=i.pos.x-a.x<this.hTilewidth;h&&(l?(r.x--,a.x-=this.hTilewidth):(r.y--,a.x+=this.hTilewidth),a.y-=this.hTileheight);for(var c=h^l,u=r.clone(),d=2*a.y;d-2*this.tileheight<2*s.y;d+=this.tileheight){u.setV(r);for(var p=a.x;p<s.x;p+=this.tilewidth){var f=e.cellAt(u.x,u.y);if(f){var y=(o=f.tileset).tileoffset;o.drawTile(t,y.x+p,y.y+d/2-o.tileheight,f)}u.x++,u.y--}c?(r.y++,a.x-=this.hTilewidth,c=!1):(r.x++,a.x+=this.hTilewidth,c=!0)}pool.push(u),pool.push(r),pool.push(n),pool.push(s),pool.push(a)},e}(TMXRenderer),offsetsStaggerX=[{x:0,y:0},{x:1,y:-1},{x:1,y:0},{x:2,y:0}],offsetsStaggerY=[{x:0,y:0},{x:-1,y:1},{x:0,y:1},{x:0,y:2}],TMXHexagonalRenderer=function(t){function e(e){t.call(this,e.cols,e.rows,-2&e.tilewidth,-2&e.tileheight),this.hexsidelength=e.hexsidelength||0,this.staggerX="x"===e.staggeraxis,this.staggerEven="even"===e.staggerindex,this.sidelengthx=0,this.sidelengthy=0,"hexagonal"===e.orientation&&(this.staggerX?this.sidelengthx=this.hexsidelength:this.sidelengthy=this.hexsidelength),this.sideoffsetx=(this.tilewidth-this.sidelengthx)/2,this.sideoffsety=(this.tileheight-this.sidelengthy)/2,this.columnwidth=this.sideoffsetx+this.sidelengthx,this.rowheight=this.sideoffsety+this.sidelengthy,this.centers=[new Vector2d,new Vector2d,new Vector2d,new Vector2d]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.canRender=function(e){return"hexagonal"===e.orientation&&t.prototype.canRender.call(this,e)},e.prototype.getBounds=function(t){var e=t instanceof TMXLayer?pool.pull("Bounds"):this.bounds;return this.staggerX?(e.setMinMax(0,0,this.cols*this.columnwidth+this.sideoffsetx,this.rows*(this.tileheight+this.sidelengthy)),e.width>1&&(e.height+=this.rowheight)):(e.setMinMax(0,0,this.cols*(this.tilewidth+this.sidelengthx),this.rows*this.rowheight+this.sideoffsety),e.height>1&&(e.width+=this.columnwidth)),e},e.prototype.doStaggerX=function(t){return this.staggerX&&1&t^this.staggerEven},e.prototype.doStaggerY=function(t){return!this.staggerX&&1&t^this.staggerEven},e.prototype.topLeft=function(t,e,i){var o=i||new Vector2d;return this.staggerX?1&t^this.staggerEven?o.set(t-1,e):o.set(t-1,e-1):1&e^this.staggerEven?o.set(t,e-1):o.set(t-1,e-1),o},e.prototype.topRight=function(t,e,i){var o=i||new Vector2d;return this.staggerX?1&t^this.staggerEven?o.set(t+1,e):o.set(t+1,e-1):1&e^this.staggerEven?o.set(t+1,e-1):o.set(t,e-1),o},e.prototype.bottomLeft=function(t,e,i){var o=i||new Vector2d;return this.staggerX?1&t^this.staggerEven?o.set(t-1,e+1):o.set(t-1,e):1&e^this.staggerEven?o.set(t,e+1):o.set(t-1,e+1),o},e.prototype.bottomRight=function(t,e,i){var o=i||new Vector2d;return this.staggerX?1&t^this.staggerEven?o.set(t+1,e+1):o.set(t+1,e):1&e^this.staggerEven?o.set(t+1,e+1):o.set(t,e+1),o},e.prototype.pixelToTileCoords=function(t,e,i){var o=i||new Vector2d;this.staggerX?t-=this.staggerEven?this.tilewidth:this.sideoffsetx:e-=this.staggerEven?this.tileheight:this.sideoffsety;var r,n,s,a,h=pool.pull("Vector2d",Math.floor(t/(2*this.columnwidth)),Math.floor(e/(2*this.rowheight))),l=pool.pull("Vector2d",t-h.x*(2*this.columnwidth),e-h.y*(2*this.rowheight));this.staggerX?(h.x=2*h.x,this.staggerEven&&++h.x):(h.y=2*h.y,this.staggerEven&&++h.y),this.staggerX?(s=(r=this.sidelengthx/2)+this.columnwidth,a=this.tileheight/2,this.centers[0].set(r,a),this.centers[1].set(s,a-this.rowheight),this.centers[2].set(s,a+this.rowheight),this.centers[3].set(s+this.columnwidth,a)):(n=this.sidelengthy/2,s=this.tilewidth/2,a=n+this.rowheight,this.centers[0].set(s,n),this.centers[1].set(s-this.columnwidth,a),this.centers[2].set(s+this.columnwidth,a),this.centers[3].set(s,a+this.rowheight));for(var c=0,u=Number.MAX_VALUE,d=0;d<4;++d){var p=this.centers[d].sub(l).length2();p<u&&(u=p,c=d)}var f=this.staggerX?offsetsStaggerX:offsetsStaggerY;return o.set(h.x+f[c].x,h.y+f[c].y),pool.push(h),pool.push(l),o},e.prototype.tileToPixelCoords=function(t,e,i){var o=Math.floor(t),r=Math.floor(e),n=i||new Vector2d;return this.staggerX?(n.y=r*(this.tileheight+this.sidelengthy),this.doStaggerX(o)&&(n.y+=this.rowheight),n.x=o*this.columnwidth):(n.x=o*(this.tilewidth+this.sidelengthx),this.doStaggerY(r)&&(n.x+=this.columnwidth),n.y=r*this.rowheight),n},e.prototype.adjustPosition=function(t){"number"==typeof t.gid&&(t.y-=t.height)},e.prototype.drawTile=function(t,e,i,o){var r=o.tileset,n=this.tileToPixelCoords(e,i,pool.pull("Vector2d"));r.drawTile(t,r.tileoffset.x+n.x,r.tileoffset.y+n.y+(this.tileheight-r.tileheight),o),pool.push(n)},e.prototype.drawTileLayer=function(t,e,i){var o,r=this.pixelToTileCoords(i.pos.x,i.pos.y,pool.pull("Vector2d"));r.sub(e.pos);var n=this.tileToPixelCoords(r.x+e.pos.x,r.y+e.pos.y,pool.pull("Vector2d")),s=r.clone(),a=n.clone(),h=i.pos.y-n.y<this.sideoffsety,l=i.pos.x-n.x<this.sideoffsetx;h&&r.y--,l&&r.x--;var c=e.cols,u=e.rows;if(this.staggerX){r.x=Math.max(0,r.x),r.y=Math.max(0,r.y),n=this.tileToPixelCoords(r.x+e.pos.x,r.y+e.pos.y);for(var d=this.doStaggerX(r.x+e.pos.x);n.y<i.bottom&&r.y<u;){for(s.setV(r),a.setV(n);a.x<i.right&&s.x<c;s.x+=2)(o=e.cellAt(s.x,s.y,!1))&&o.tileset.drawTile(t,a.x,a.y,o),a.x+=this.tilewidth+this.sidelengthx;d?(r.x-=1,r.y+=1,n.x-=this.columnwidth,d=!1):(r.x+=1,n.x+=this.columnwidth,d=!0),n.y+=this.rowheight}pool.push(s),pool.push(a)}else{for(r.x=Math.max(0,r.x),r.y=Math.max(0,r.y),n=this.tileToPixelCoords(r.x+e.pos.x,r.y+e.pos.y),this.doStaggerY(r.y)&&(n.x-=this.columnwidth);n.y<i.bottom&&r.y<u;r.y++){for(s.setV(r),a.setV(n),this.doStaggerY(r.y)&&(a.x+=this.columnwidth);a.x<i.right&&s.x<c;s.x++)(o=e.cellAt(s.x,s.y,!1))&&o.tileset.drawTile(t,a.x,a.y,o),a.x+=this.tilewidth+this.sidelengthx;n.y+=this.rowheight}pool.push(s),pool.push(a)}pool.push(r),pool.push(n)},e}(TMXRenderer),TMXStaggeredRenderer=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.canRender=function(e){return"staggered"===e.orientation&&t.prototype.canRender.call(this,e)},e.prototype.pixelToTileCoords=function(t,e,i){var o=i||new Vector2d,r=t,n=e;this.staggerX?r-=this.staggerEven?this.sideoffsetx:0:n-=this.staggerEven?this.sideoffsety:0;var s=pool.pull("Vector2d",Math.floor(r/this.tilewidth),Math.floor(n/this.tileheight));this.staggerX?(s.x=2*s.x,this.staggerEven&&++s.x):(s.y=2*s.y,this.staggerEven&&++s.y);var a=pool.pull("Vector2d",r-s.x*this.tilewidth,n-s.y*this.tileheight),h=a.x*(this.tileheight/this.tilewidth);return this.sideoffsety-h>a.y&&(s=this.topLeft(s.x,s.y,s)),-this.sideoffsety+h>a.y&&(s=this.topRight(s.x,s.y,s)),this.sideoffsety+h<a.y&&(s=this.bottomLeft(s.x,s.y,s)),3*this.sideoffsety-h<a.y&&(s=this.bottomRight(s.x,s.y,s)),(o=this.tileToPixelCoords(s.x,s.y,o)).set(t-o.x,e-o.y),o.set(o.x-this.tilewidth/2,o.y*(this.tilewidth/this.tileheight)),o.div(this.tilewidth/Math.sqrt(2)).rotate(degToRad(-45)).add(s),pool.push(s),pool.push(a),o},e}(TMXHexagonalRenderer),TMXTileset=function(t){var e=0;if(this.TileProperties=[],this.imageCollection=[],this.firstgid=this.lastgid=+t.firstgid,void 0!==t.source){var i=t.source,o=getExtension(i);if(("tsx"===o||"json"===o)&&!(t=loader.getTMX(getBasename(i))))throw new Error(i+" external TSX/JSON tileset not found")}this.name=t.name,this.tilewidth=+t.tilewidth,this.tileheight=+t.tileheight,this.spacing=+t.spacing||0,this.margin=+t.margin||0,this.tileoffset=new Vector2d,this.isAnimated=!1,this.isCollection=!1,this.animations=new Map,this._lastUpdate=0;var r=t.tiles;for(e in r)if(r.hasOwnProperty(e)){if("animation"in r[e]&&(this.isAnimated=!0,this.animations.set(r[+e].animation[0].tileid,{dt:0,idx:0,frames:r[+e].animation,cur:r[+e].animation[0]})),"properties"in r[e])if(Array.isArray(r[e].properties)){var n={};for(var s in r[e].properties)n[r[e].properties[s].name]=r[e].properties[s].value;this.setTileProperty(+r[e].id+this.firstgid,n)}else this.setTileProperty(+e+this.firstgid,r[e].properties);if("image"in r[e]){var a=loader.getImage(r[e].image);if(!a)throw new Error("melonJS: '"+r[e].image+"' file for tile '"+(+e+this.firstgid)+"' not found!");this.imageCollection[+e+this.firstgid]=a}}this.isCollection=this.imageCollection.length>0;var h=t.tileoffset;h&&(this.tileoffset.x=+h.x,this.tileoffset.y=+h.y);var l=t.tileproperties;if(l)for(e in l)l.hasOwnProperty(e)&&this.setTileProperty(+e+this.firstgid,l[e]);if(!1===this.isCollection){if(this.image=loader.getImage(t.image),!this.image)throw new Error("melonJS: '"+t.image+"' file for tileset '"+this.name+"' not found!");this.texture=renderer.cache.get(this.image,{framewidth:this.tilewidth,frameheight:this.tileheight,margin:this.margin,spacing:this.spacing}),this.atlas=this.texture.getAtlas();var c=+t.columns||Math.round(this.image.width/(this.tilewidth+this.spacing)),u=Math.round(this.image.height/(this.tileheight+this.spacing));t.tilecount%c>0&&++u,this.lastgid=this.firstgid+(c*u-1||0),t.tilecount&&this.lastgid-this.firstgid+1!=+t.tilecount&&console.warn("Computed tilecount ("+(this.lastgid-this.firstgid+1)+") does not match expected tilecount ("+t.tilecount+")")}};TMXTileset.prototype.getTileImage=function(t){return this.imageCollection[t]},TMXTileset.prototype.setTileProperty=function(t,e){this.TileProperties[t]=e},TMXTileset.prototype.contains=function(t){return t>=this.firstgid&&t<=this.lastgid},TMXTileset.prototype.getViewTileId=function(t){var e=t-this.firstgid;return this.animations.has(e)?this.animations.get(e).cur.tileid:e},TMXTileset.prototype.getTileProperties=function(t){return this.TileProperties[t]},TMXTileset.prototype.update=function(t){var e=0,i=timer$1.getTime(),o=!1;return this._lastUpdate!==i&&(this._lastUpdate=i,this.animations.forEach((function(i){for(i.dt+=t,e=i.cur.duration;i.dt>=e;)i.dt-=e,i.idx=(i.idx+1)%i.frames.length,i.cur=i.frames[i.idx],e=i.cur.duration,o=!0}))),o},TMXTileset.prototype.drawTile=function(t,e,i,o){if(o.flipped&&(t.save(),t.translate(e,i),t.transform(o.currentTransform),e=i=0),!0===this.isCollection)t.drawImage(this.imageCollection[o.tileId],0,0,o.width,o.height,e,i,o.width,o.height);else{var r=this.atlas[this.getViewTileId(o.tileId)].offset;t.drawImage(this.image,r.x,r.y,this.tilewidth,this.tileheight,e,i,this.tilewidth+t.uvOffset,this.tileheight+t.uvOffset)}o.flipped&&t.restore()};var TMX_CLEAR_BIT_MASK=536870911,TMXTilesetGroup=function(){this.tilesets=[],this.length=0};TMXTilesetGroup.prototype.add=function(t){this.tilesets.push(t),this.length++},TMXTilesetGroup.prototype.getTilesetByIndex=function(t){return this.tilesets[t]},TMXTilesetGroup.prototype.getTilesetByGid=function(t){var e=-1;t&=TMX_CLEAR_BIT_MASK;for(var i=0,o=this.tilesets.length;i<o;i++){if(this.tilesets[i].contains(t))return this.tilesets[i];this.tilesets[i].firstgid===this.tilesets[i].lastgid&&t>=this.tilesets[i].firstgid&&(e=i)}if(-1!==e)return this.tilesets[e];throw new Error("no matching tileset found for gid "+t)};var TMXObject=function(t,e,i){this.points=void 0,this.name=e.name,this.x=+e.x,this.y=+e.y,this.z=+i,this.width=+e.width||0,this.height=+e.height||0,this.gid=+e.gid||null,this.tintcolor=e.tintcolor,this.type=e.type,this.type=e.type,this.rotation=degToRad(+e.rotation||0),this.id=+e.id||void 0,this.orientation=t.orientation,this.shapes=void 0,this.isEllipse=!1,this.isPolygon=!1,this.isPolyLine=!1,"number"==typeof this.gid?this.setTile(t.tilesets):void 0!==e.ellipse?this.isEllipse=!0:void 0!==e.polygon?(this.points=e.polygon,this.isPolygon=!0):void 0!==e.polyline&&(this.points=e.polyline,this.isPolyLine=!0),void 0!==e.text?(this.text=e.text,this.text.font=e.text.fontfamily||"sans-serif",this.text.size=e.text.pixelsize||16,this.text.fillStyle=e.text.color||"#000000",this.text.textAlign=e.text.halign||"left",this.text.textBaseline=e.text.valign||"top",this.text.width=this.width,this.text.height=this.height,applyTMXProperties(this.text,e)):(applyTMXProperties(this,e),this.shapes||(this.shapes=this.parseTMXShapes())),t.isEditor||t.getRenderer().adjustPosition(this)};TMXObject.prototype.setTile=function(t){var e=t.getTilesetByGid(this.gid);!1===e.isCollection&&(this.width=this.framewidth=e.tilewidth,this.height=this.frameheight=e.tileheight),this.tile=new Tile(this.x,this.y,this.gid,e)},TMXObject.prototype.parseTMXShapes=function(){var t=0,e=[];if(!0===this.isEllipse)e.push(new Ellipse(this.width/2,this.height/2,this.width,this.height).rotate(this.rotation));else if(!0===this.isPolygon){var i=new Polygon(0,0,this.points);if(!1===i.isConvex())throw new Error("collision polygones in Tiled should be defined as Convex");e.push(i.rotate(this.rotation))}else if(!0===this.isPolyLine){var o,r,n=this.points,s=n.length-1;for(t=0;t<s;t++)o=new Vector2d(n[t].x,n[t].y),r=new Vector2d(n[t+1].x,n[t+1].y),0!==this.rotation&&(o=o.rotate(this.rotation),r=r.rotate(this.rotation)),e.push(new Line(0,0,[o,r]))}else e.push(new Polygon(0,0,[new Vector2d,new Vector2d(this.width,0),new Vector2d(this.width,this.height),new Vector2d(0,this.height)]).rotate(this.rotation));if("isometric"===this.orientation)for(t=0;t<e.length;t++)e[t].toIso();return e},TMXObject.prototype.getObjectPropertyByName=function(t){return this[t]};var TMXGroup=function(t,e,i){var o=this;this.name=e.name,this.width=e.width||0,this.height=e.height||0,this.tintcolor=e.tintcolor,this.z=i,this.objects=[];var r=void 0===e.visible||e.visible;this.opacity=!0===r?clamp(+e.opacity||1,0,1):0,applyTMXProperties(this,e),e.objects&&e.objects.forEach((function(e){e.tintcolor=o.tintcolor,o.objects.push(new TMXObject(t,e,i))})),e.layers&&e.layers.forEach((function(e){var r=new TMXLayer(t,e,t.tilewidth,t.tileheight,t.orientation,t.tilesets,i++);r.setRenderer(t.getRenderer()),o.width=Math.max(o.width,r.width),o.height=Math.max(o.height,r.height),o.objects.push(r)}))};TMXGroup.prototype.destroy=function(){this.objects=null},TMXGroup.prototype.getObjectCount=function(){return this.objects.length},TMXGroup.prototype.getObjectByIndex=function(t){return this.objects[t]};var COLLISION_GROUP="collision";function getNewDefaultRenderer(t){switch(t.orientation){case"orthogonal":return new TMXOrthogonalRenderer(t);case"isometric":return new TMXIsometricRenderer(t);case"hexagonal":return new TMXHexagonalRenderer(t);case"staggered":return new TMXStaggeredRenderer(t);default:throw new Error(t.orientation+" type TMX Tile Map not supported!")}}function readLayer(t,e,i){return new TMXLayer(t,e,t.tilewidth,t.tileheight,t.orientation,t.tilesets,i)}function readImageLayer(t,e,i){applyTMXProperties(e.properties,e);var o=pool.pull("ImageLayer",+e.offsetx||+e.x||0,+e.offsety||+e.y||0,Object.assign({name:e.name,image:e.image,ratio:pool.pull("Vector2d",+e.parallaxx||1,+e.parallaxy||1),tint:void 0!==e.tintcolor?pool.pull("Color").parseHex(e.tintcolor,!0):void 0,z:i},e.properties)),r=void 0===e.visible||e.visible;return o.setOpacity(r?+e.opacity:0),o}function readTileset(t){return new TMXTileset(t)}function readObjectGroup(t,e,i){return new TMXGroup(t,e,i)}var TMXTileMap=function(t,e){if(this.data=e,this.name=t,this.cols=+e.width,this.rows=+e.height,this.tilewidth=+e.tilewidth,this.tileheight=+e.tileheight,this.infinite=+e.infinite,this.orientation=e.orientation,this.renderorder=e.renderorder||"right-down",this.version=e.version,this.tiledversion=e.tiledversion,this.tilesets=null,void 0===this.layers&&(this.layers=[]),void 0===this.objectGroups&&(this.objectGroups=[]),this.isEditor="melon-editor"===e.editor,this.nextobjectid=+e.nextobjectid||void 0,this.hexsidelength=+e.hexsidelength,this.staggeraxis=e.staggeraxis,this.staggerindex=e.staggerindex,this.bounds=this.getRenderer().getBounds().clone(),this.width=this.bounds.width,this.height=this.bounds.height,this.backgroundcolor=e.backgroundcolor,applyTMXProperties(this,e),this.initialized=!1,1===this.infinite)throw new Error("Tiled Infinite Map not supported!")};TMXTileMap.prototype.getRenderer=function(){return void 0!==this.renderer&&this.renderer.canRender(this)||(this.renderer=getNewDefaultRenderer(this)),this.renderer},TMXTileMap.prototype.getBounds=function(){return this.bounds},TMXTileMap.prototype.readMapObjects=function(t){var e=this;if(!0!==this.initialized){var i=0;if(this.tilesets||(this.tilesets=new TMXTilesetGroup),void 0!==t.tilesets)t.tilesets.forEach((function(t){e.tilesets.add(readTileset(t))}));this.backgroundcolor&&this.layers.push(pool.pull("ColorLayer","background_color",this.backgroundcolor,i++)),this.background_image&&this.layers.push(pool.pull("ImageLayer",0,0,{name:"background_image",image:this.background_image,z:i++})),t.layers.forEach((function(t){switch(t.type){case"imagelayer":e.layers.push(readImageLayer(e,t,i++));break;case"tilelayer":e.layers.push(readLayer(e,t,i++));break;case"objectgroup":case"group":e.objectGroups.push(readObjectGroup(e,t,i++))}})),this.initialized=!0}},TMXTileMap.prototype.addTo=function(t,e,i){var o=t.autoSort,r=t.autoDepth,n=this.getBounds();function s(e,i){viewport.setBounds(0,0,Math.max(n.width,e),Math.max(n.height,i)),t.pos.set(Math.max(0,~~((e-n.width)/2)),Math.max(0,~~((i-n.height)/2)),t.pos.z)}t.autoSort=!1,t.autoDepth=!1,this.getLayers().forEach((function(e){t.addChild(e)})),this.getObjects(e).forEach((function(e){t.addChild(e)})),t.resize(this.bounds.width,this.bounds.height),t.sort(!0),!0===i&&(off(VIEWPORT_ONRESIZE,s),s(viewport.width,viewport.height),on(VIEWPORT_ONRESIZE,s,this)),t.autoSort=o,t.autoDepth=r},TMXTileMap.prototype.getObjects=function(t){var e,i=[],o=!1;this.readMapObjects(this.data);for(var r=0;r<this.objectGroups.length;r++){var n=this.objectGroups[r];o=n.name.toLowerCase().includes(COLLISION_GROUP),!1===t&&((e=new Container(0,0,this.width,this.height)).anchorPoint.set(0,0),e.name=n.name,e.pos.z=n.z,e.setOpacity(n.opacity),e.autoSort=!1,e.autoDepth=!1);for(var s=0;s<n.objects.length;s++){var a,h=n.objects[s];void 0===h.anchorPoint&&(h.anchorPoint={x:0,y:0}),void 0!==h.tintcolor&&(h.tint=pool.pull("Color"),h.tint.parseHex(h.tintcolor,!0)),h instanceof TMXLayer?a=h:"object"==typeof h.text?(void 0===h.text.anchorPoint&&(h.text.anchorPoint=h.anchorPoint),(a=!0===h.text.bitmap?pool.pull("BitmapText",h.x,h.y,h.text):pool.pull("Text",h.x,h.y,h.text)).pos.z=h.z):"object"==typeof h.tile?((a=h.tile.getRenderable(h)).body=new Body(a,h.shapes||new Rect(0,0,this.width,this.height)),a.body.setStatic(!0),a.pos.setMuted(h.x,h.y,h.z)):(void 0!==h.name&&""!==h.name?a=pool.pull(h.name,h.x,h.y,h):((a=pool.pull("Renderable",h.x,h.y,h.width,h.height)).anchorPoint.set(0,0),a.name=h.name,a.type=h.type,a.id=h.id,a.body=new Body(a,h.shapes||new Rect(0,0,a.width,a.height)),a.body.setStatic(!0),a.resize(a.body.getBounds().width,a.body.getBounds().height)),a.pos.z=h.z),o&&!h.name&&a.body&&(a.body.collisionType=collision.types.WORLD_SHAPE),!1!==t?(!0===a.isRenderable&&(a.setOpacity(a.getOpacity()*n.opacity),a.renderable instanceof Renderable&&a.renderable.setOpacity(a.renderable.getOpacity()*n.opacity)),i.push(a)):e.addChild(a)}!1===t&&e.children.length>0&&(e.autoSort=!0,e.autoDepth=!0,i.push(e))}return i},TMXTileMap.prototype.getLayers=function(){return this.readMapObjects(this.data),this.layers},TMXTileMap.prototype.destroy=function(){this.tilesets=void 0,this.layers.length=0,this.objectGroups.length=0,this.initialized=!1};var levels={},levelIdx=[],currentLevelIdx=0;function safeLoadLevel(t,e,i){e.container.reset(),reset(),levels[level.getCurrentLevelId()]&&levels[level.getCurrentLevelId()].destroy(),currentLevelIdx=levelIdx.indexOf(t),loadTMXLevel(t,e.container,e.flatten,e.setViewportBounds),emit(LEVEL_LOADED,t),e.onLoaded(t),i&&state.restart()}function loadTMXLevel(t,e,i,o){var r=levels[t];utils.resetGUID(t,r.nextobjectid),e.anchorPoint.set(0,0),r.addTo(e,i,o)}var level={add:function(t,e,i){if("tmx"===t)return null==levels[e]&&(levels[e]=new TMXTileMap(e,loader.getTMX(e)),levelIdx.push(e),i&&i(),!0);throw new Error("no level loader defined for format "+t)},load:function(t,e){if(e=Object.assign({container:world,onLoaded:onLevelLoaded,flatten:mergeGroup,setViewportBounds:!0},e||{}),void 0===levels[t])throw new Error("level "+t+" not found");if(!(levels[t]instanceof TMXTileMap))throw new Error("no level loader defined");return state.isRunning()?(state.stop(),utils.function.defer(safeLoadLevel,this,t,e,!0)):safeLoadLevel(t,e),!0},getCurrentLevelId:function(){return levelIdx[currentLevelIdx]},getCurrentLevel:function(){return levels[this.getCurrentLevelId()]},reload:function(t){return this.load(this.getCurrentLevelId(),t)},next:function(t){return currentLevelIdx+1<levelIdx.length&&this.load(levelIdx[currentLevelIdx+1],t)},previous:function(t){return currentLevelIdx-1>=0&&this.load(levelIdx[currentLevelIdx-1],t)},levelCount:function(){return levelIdx.length}},imgList={},tmxList={},binList={},jsonList={},baseURL={},resourceCount=0,loadCount=0,timerId$1=0;function checkLoadStatus(t){if(loadCount===resourceCount){if(!t&&!loader.onload)throw new Error("no load callback defined");clearTimeout(timerId$1);var e=t||loader.onload;setTimeout((function(){e(),emit(LOADER_COMPLETE)}),300)}else timerId$1=setTimeout((function(){checkLoadStatus(t)}),100)}function preloadImage(t,e,i){imgList[t.name]=new Image,imgList[t.name].onload=e,imgList[t.name].onerror=i,"string"==typeof loader.crossOrigin&&(imgList[t.name].crossOrigin=loader.crossOrigin),imgList[t.name].src=t.src+loader.nocache}function preloadFontFace(t,e,i){var o=new FontFace(t.name,t.src);o.load().then((function(){document.fonts.add(o),document.body.style.fontFamily=t.name,e()}),(function(){i(t.name)}))}function preloadTMX(t,e,i){function o(e){tmxList[t.name]=e,"tmx"===t.type&&level.add(t.type,t.name)}if(t.data)return o(t.data),void e();var r=new XMLHttpRequest,n=getExtension(t.src);r.overrideMimeType&&("json"===n?r.overrideMimeType("application/json"):r.overrideMimeType("text/xml")),r.open("GET",t.src+loader.nocache,!0),r.withCredentials=loader.withCredentials,r.ontimeout=i,r.onreadystatechange=function(){if(4===r.readyState)if(200===r.status||0===r.status&&r.responseText){var s=null;switch(n){case"xml":case"tmx":case"tsx":if(device$1.ua.match(/msie/i)||!r.responseXML){if(!window.DOMParser)throw new Error("XML file format loading not supported, use the JSON file format instead");s=(new DOMParser).parseFromString(r.responseText,"text/xml")}else s=r.responseXML;var a=parse(s);switch(n){case"tmx":s=a.map;break;case"tsx":s=a.tilesets[0]}break;case"json":s=JSON.parse(r.responseText);break;default:throw new Error("TMX file format "+n+"not supported !")}o(s),e()}else i(t.name)},r.send()}function preloadJSON(t,e,i){var o=new XMLHttpRequest;o.overrideMimeType&&o.overrideMimeType("application/json"),o.open("GET",t.src+loader.nocache,!0),o.withCredentials=loader.withCredentials,o.ontimeout=i,o.onreadystatechange=function(){4===o.readyState&&(200===o.status||0===o.status&&o.responseText?(jsonList[t.name]=JSON.parse(o.responseText),e()):i(t.name))},o.send()}function preloadBinary(t,e,i){var o=new XMLHttpRequest;o.open("GET",t.src+loader.nocache,!0),o.withCredentials=loader.withCredentials,o.responseType="arraybuffer",o.onerror=i,o.onload=function(){var i=o.response;if(i){for(var r=new Uint8Array(i),n=[],s=0;s<r.byteLength;s++)n[s]=String.fromCharCode(r[s]);binList[t.name]=n.join(""),e()}},o.send()}function preloadJavascript(t,e,i){var o=document.createElement("script");o.src=t.src,o.type="text/javascript","string"==typeof loader.crossOrigin&&(o.crossOrigin=loader.crossOrigin),o.defer=!0,o.onload=function(){e()},o.onerror=function(){i(t.name)},document.getElementsByTagName("body")[0].appendChild(o)}var loader={nocache:"",onload:void 0,onProgress:void 0,crossOrigin:void 0,withCredentials:!1,onResourceLoaded:function(t){var e=++loadCount/resourceCount;this.onProgress&&this.onProgress(e,t),emit(LOADER_PROGRESS,e,t)},onLoadingError:function(t){throw new Error("Failed loading resource "+t.src)},setNocache:function(t){this.nocache=t?"?"+~~(1e7*Math.random()):""},setBaseURL:function(t,e){"*"!==t?baseURL[t]=e:(baseURL.audio=e,baseURL.binary=e,baseURL.image=e,baseURL.json=e,baseURL.js=e,baseURL.tmx=e,baseURL.tsx=e)},preload:function(t,e,i){void 0===i&&(i=!0);for(var o=0;o<t.length;o++)resourceCount+=this.load(t[o],this.onResourceLoaded.bind(this,t[o]),this.onLoadingError.bind(this,t[o]));void 0!==e&&(this.onload=e),!0===i&&state.change(state.LOADING),checkLoadStatus(e)},load:function(t,e,i){switch(void 0!==baseURL[t.type]&&(t.src=baseURL[t.type]+t.src),t.type){case"binary":return preloadBinary.call(this,t,e,i),1;case"image":return preloadImage.call(this,t,e,i),1;case"json":return preloadJSON.call(this,t,e,i),1;case"js":return preloadJavascript.call(this,t,e,i),1;case"tmx":case"tsx":return preloadTMX.call(this,t,e,i),1;case"audio":return load(t,!!t.stream,e,i),1;case"fontface":return preloadFontFace.call(this,t,e,i),1;default:throw new Error("load : unknown or invalid resource type : "+t.type)}},unload:function(t){switch(t.type){case"binary":return t.name in binList&&(delete binList[t.name],!0);case"image":return t.name in imgList&&(delete imgList[t.name],!0);case"json":return t.name in jsonList&&(delete jsonList[t.name],!0);case"js":case"fontface":return!0;case"tmx":case"tsx":return t.name in tmxList&&(delete tmxList[t.name],!0);case"audio":return unload(t.name);default:throw new Error("unload : unknown or invalid resource type : "+t.type)}},unloadAll:function(){var t;for(t in binList)binList.hasOwnProperty(t)&&this.unload({name:t,type:"binary"});for(t in imgList)imgList.hasOwnProperty(t)&&this.unload({name:t,type:"image"});for(t in tmxList)tmxList.hasOwnProperty(t)&&this.unload({name:t,type:"tmx"});for(t in jsonList)jsonList.hasOwnProperty(t)&&this.unload({name:t,type:"json"});unloadAll()},getTMX:function(t){return(t=""+t)in tmxList?tmxList[t]:null},getBinary:function(t){return(t=""+t)in binList?binList[t]:null},getImage:function(t){return(t=getBasename(""+t))in imgList?imgList[t]:null},getJSON:function(t){return(t=""+t)in jsonList?jsonList[t]:null}},audioTracks={},current_track_id=null,retry_counter=0,audioExts=[],soundLoadError=function(t,e){if(retry_counter++>3)throw new Error("melonJS: failed loading "+t);audioTracks[t].load()},stopOnAudioError=!0;function init$1(t){return void 0===t&&(t="mp3"),audioExts=t.split(","),!howler.Howler.noAudio}function hasFormat(t){return hasAudio()&&howler.Howler.codecs(t)}function hasAudio(){return!howler.Howler.noAudio}function enable(){unmuteAll()}function disable(){muteAll()}function load(t,e,i,o){var r=[];if(0===audioExts.length)throw new Error("target audio extension(s) should be set through me.audio.init() before calling the preloader.");for(var n=0;n<audioExts.length;n++)r.push(t.src+t.name+"."+audioExts[n]+loader.nocache);return audioTracks[t.name]=new howler.Howl({src:r,volume:howler.Howler.volume(),html5:!0===e,xhrWithCredentials:loader.withCredentials,onloaderror:function(){soundLoadError.call(this,t.name,o)},onload:function(){retry_counter=0,i&&i()}}),1}function play(t,e,i,o){void 0===e&&(e=!1);var r=audioTracks[t];if(r&&void 0!==r){var n=r.play();return"boolean"==typeof e&&r.loop(e,n),r.volume("number"==typeof o?clamp(o,0,1):howler.Howler.volume(),n),"function"==typeof i&&(!0===e?r.on("end",i,n):r.once("end",i,n)),n}throw new Error("audio clip "+t+" does not exist")}function fade(t,e,i,o,r){var n=audioTracks[t];if(!n||void 0===n)throw new Error("audio clip "+t+" does not exist");n.fade(e,i,o,r)}function seek(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];var o=audioTracks[t];if(o&&void 0!==o)return o.seek.apply(o,e);throw new Error("audio clip "+t+" does not exist")}function rate(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];var o=audioTracks[t];if(o&&void 0!==o)return o.rate.apply(o,e);throw new Error("audio clip "+t+" does not exist")}function stop(t,e){if(void 0!==t){var i=audioTracks[t];if(!i||void 0===i)throw new Error("audio clip "+t+" does not exist");i.stop(e),i.off("end",void 0,e)}else howler.Howler.stop()}function pause(t,e){var i=audioTracks[t];if(!i||void 0===i)throw new Error("audio clip "+t+" does not exist");i.pause(e)}function resume(t,e){var i=audioTracks[t];if(!i||void 0===i)throw new Error("audio clip "+t+" does not exist");i.play(e)}function playTrack(t,e){return play(current_track_id=t,!0,null,e)}function stopTrack(){null!==current_track_id&&(audioTracks[current_track_id].stop(),current_track_id=null)}function pauseTrack(){null!==current_track_id&&audioTracks[current_track_id].pause()}function resumeTrack(){null!==current_track_id&&audioTracks[current_track_id].play()}function getCurrentTrack(){return current_track_id}function setVolume(t){howler.Howler.volume(t)}function getVolume(){return howler.Howler.volume()}function mute(t,e,i){i=void 0===i||!!i;var o=audioTracks[t];if(!o||void 0===o)throw new Error("audio clip "+t+" does not exist");o.mute(i,e)}function unmute(t,e){mute(t,e,!1)}function muteAll(){howler.Howler.mute(!0)}function unmuteAll(){howler.Howler.mute(!1)}function muted(){return howler.Howler._muted}function unload(t){return t in audioTracks&&(audioTracks[t].unload(),delete audioTracks[t],!0)}function unloadAll(){for(var t in audioTracks)audioTracks.hasOwnProperty(t)&&unload(t)}var audio=Object.freeze({__proto__:null,stopOnAudioError:stopOnAudioError,init:init$1,hasFormat:hasFormat,hasAudio:hasAudio,enable:enable,disable:disable,load:load,play:play,fade:fade,seek:seek,rate:rate,stop:stop,pause:pause,resume:resume,playTrack:playTrack,stopTrack:stopTrack,pauseTrack:pauseTrack,resumeTrack:resumeTrack,getCurrentTrack:getCurrentTrack,setVolume:setVolume,getVolume:getVolume,mute:mute,unmute:unmute,muteAll:muteAll,unmuteAll:unmuteAll,muted:muted,unload:unload,unloadAll:unloadAll}),data={};function isReserved(t){return"add"===t||"remove"===t}on(BOOT,(function(){if(!0===device$1.localStorage){var t=localStorage.getItem("me.save");if("string"==typeof t&&t.length>0)(JSON.parse(t)||[]).forEach((function(t){data[t]=JSON.parse(localStorage.getItem("me.save."+t))}))}}));var save={add:function(t){var e=save;Object.keys(t).forEach((function(i){var o;isReserved(i)||(o=i,Object.defineProperty(e,o,{configurable:!0,enumerable:!0,get:function(){return data[o]},set:function(t){data[o]=t,!0===device$1.localStorage&&localStorage.setItem("me.save."+o,JSON.stringify(t))}}),i in data||(e[i]=t[i]))})),!0===device$1.localStorage&&localStorage.setItem("me.save",JSON.stringify(Object.keys(data)))},remove:function(t){isReserved(t)||void 0!==data[t]&&(delete data[t],!0===device$1.localStorage&&(localStorage.removeItem("me.save."+t),localStorage.setItem("me.save",JSON.stringify(Object.keys(data)))))}},accelInitialized=!1,deviceOrientationInitialized=!1,swipeEnabled=!0;function _disableSwipeFn(t){return t.preventDefault(),"function"==typeof window.scroll&&window.scroll(0,0),!1}var readyBound=!1,isReady=!1,readyList=[];function _domReady(){if(!isReady){if(!document.body)return setTimeout(_domReady,13);for(document.removeEventListener&&document.removeEventListener("DOMContentLoaded",this._domReady,!1),window.removeEventListener("load",_domReady,!1);readyList.length;)readyList.shift().call(window,[]);isReady=!0}}var _domRect={left:0,top:0,x:0,y:0,width:0,height:0,right:0,bottom:0};function _detectDevice(){device.iOS=/iPhone|iPad|iPod/i.test(device.ua),device.android=/Android/i.test(device.ua),device.android2=/Android 2/i.test(device.ua),device.linux=/Linux/i.test(device.ua),device.chromeOS=/CrOS/.test(device.ua),device.wp=/Windows Phone/i.test(device.ua),device.BlackBerry=/BlackBerry/i.test(device.ua),device.Kindle=/Kindle|Silk.*Mobile Safari/i.test(device.ua),device.isMobile=/Mobi/i.test(device.ua)||device.iOS||device.android||device.wp||device.BlackBerry||device.Kindle||!1,device.ejecta=void 0!==window.ejecta,device.isWeixin=/MicroMessenger/i.test(device.ua)}function _checkCapabilities(){_detectDevice(),device.isMobile&&device.enableSwipe(!1),device.TouchEvent=!!("ontouchstart"in window),device.PointerEvent=!!window.PointerEvent,window.gesture=prefixed("gesture"),device.touch=device.TouchEvent||device.PointerEvent,device.maxTouchPoints=device.touch?device.PointerEvent?navigator.maxTouchPoints||1:10:1,device.wheel="onwheel"in document.createElement("div"),device.hasPointerLockSupport=void 0!==document.pointerLockElement,device.hasDeviceOrientation=!!window.DeviceOrientationEvent,device.hasAccelerometer=!!window.DeviceMotionEvent,device.ScreenOrientation="undefined"!=typeof screen&&void 0!==screen.orientation,device.hasFullscreenSupport=prefixed("fullscreenEnabled",document)||document.mozFullScreenEnabled,document.exitFullscreen=prefixed("cancelFullScreen",document)||prefixed("exitFullscreen",document),navigator.vibrate=prefixed("vibrate",navigator),device.hasWebAudio=!(!window.AudioContext&&!window.webkitAudioContext);try{device.localStorage=!!window.localStorage}catch(t){device.localStorage=!1}try{device.OffscreenCanvas=void 0!==window.OffscreenCanvas&&null!==new OffscreenCanvas(0,0).getContext("2d")}catch(t){device.OffscreenCanvas=!1}var t,e;window.addEventListener("blur",(function(){device.stopOnBlur&&state.stop(!0),device.pauseOnBlur&&state.pause(!0)}),!1),window.addEventListener("focus",(function(){device.stopOnBlur&&state.restart(!0),device.resumeOnFocus&&state.resume(!0),device.autoFocus&&device.focus()}),!1),void 0!==document.hidden?(t="hidden",e="visibilitychange"):void 0!==document.mozHidden?(t="mozHidden",e="mozvisibilitychange"):void 0!==document.msHidden?(t="msHidden",e="msvisibilitychange"):void 0!==document.webkitHidden&&(t="webkitHidden",e="webkitvisibilitychange"),"string"==typeof e&&document.addEventListener(e,(function(){document[t]?(device.stopOnBlur&&state.stop(!0),device.pauseOnBlur&&state.pause(!0)):(device.stopOnBlur&&state.restart(!0),device.resumeOnFocus&&state.resume(!0))}),!1)}on(BOOT,(function(){_checkCapabilities()}));var device={ua:navigator.userAgent,localStorage:!1,hasAccelerometer:!1,hasDeviceOrientation:!1,ScreenOrientation:!1,hasFullscreenSupport:!1,hasPointerLockSupport:!1,hasWebAudio:!1,nativeBase64:"function"==typeof window.atob,maxTouchPoints:1,touch:!1,wheel:!1,isMobile:!1,iOS:!1,android:!1,android2:!1,linux:!1,ejecta:!1,isWeixin:!1,chromeOS:!1,wp:!1,BlackBerry:!1,Kindle:!1,accelerationX:0,accelerationY:0,accelerationZ:0,gamma:0,beta:0,alpha:0,language:navigator.language||navigator.browserLanguage||navigator.userLanguage||"en",pauseOnBlur:!0,resumeOnFocus:!0,autoFocus:!0,stopOnBlur:!1,OffscreenCanvas:!1,onReady:function(t){isReady?t.call(window,[]):(readyList.push(t),readyBound||("complete"===document.readyState?window.setTimeout(_domReady,0):(document.addEventListener&&document.addEventListener("DOMContentLoaded",_domReady,!1),window.addEventListener("load",_domReady,!1)),readyBound=!0))},enableSwipe:function(t){!1!==t?!1===swipeEnabled&&(window.document.removeEventListener("touchmove",_disableSwipeFn,!1),swipeEnabled=!0):!0===swipeEnabled&&(window.document.addEventListener("touchmove",_disableSwipeFn,!1),swipeEnabled=!1)},requestFullscreen:function(t){this.hasFullscreenSupport&&((t=t||getParent()).requestFullscreen=prefixed("requestFullscreen",t)||t.mozRequestFullScreen,t.requestFullscreen())},exitFullscreen:function(){this.hasFullscreenSupport&&document.exitFullscreen()},getScreenOrientation:function(){var t="portrait",e="landscape",i=window.screen;if(!0===this.ScreenOrientation){var o=prefixed("orientation",i);if(void 0!==o&&"string"==typeof o.type)return o.type;if("string"==typeof o)return o}return"number"==typeof window.orientation?90===Math.abs(window.orientation)?e:t:window.outerWidth>window.outerHeight?e:t},lockOrientation:function(t){var e=window.screen;if(void 0!==e){var i=prefixed("lockOrientation",e);if(void 0!==i)return i(t)}return!1},unlockOrientation:function(){var t=window.screen;if(void 0!==t){var e=prefixed("unlockOrientation",t);if(void 0!==e)return e()}return!1},isPortrait:function(){return this.getScreenOrientation().includes("portrait")},isLandscape:function(){return this.getScreenOrientation().includes("landscape")},getStorage:function(t){if(void 0===t&&(t="local"),"local"===t)return save;throw new Error("storage type "+t+" not supported")},getParentElement:function(t){var e=this.getElement(t);return null!==e.parentNode&&(e=e.parentNode),e},getElement:function(t){var e=null;return"undefined"!==t&&("string"==typeof t?e=document.getElementById(t):"object"==typeof t&&t.nodeType===Node.ELEMENT_NODE&&(e=t)),e||(e=document.body),e},getElementBounds:function(t){return"object"==typeof t&&t!==document.body&&void 0!==t.getBoundingClientRect?t.getBoundingClientRect():(_domRect.width=_domRect.right=window.innerWidth,_domRect.height=_domRect.bottom=window.innerHeight,_domRect)},getParentBounds:function(t){return this.getElementBounds(this.getParentElement(t))},isWebGLSupported:function(t){var e=!1;try{var i=document.createElement("canvas"),o={stencil:!0,failIfMajorPerformanceCaveat:t.failIfMajorPerformanceCaveat};e=!(!window.WebGLRenderingContext||!i.getContext("webgl",o)&&!i.getContext("experimental-webgl",o))}catch(t){e=!1}return e},getMaxShaderPrecision:function(t){return t.getShaderPrecisionFormat(t.VERTEX_SHADER,t.HIGH_FLOAT).precision>0&&t.getShaderPrecisionFormat(t.FRAGMENT_SHADER,t.HIGH_FLOAT).precision>0?"highp":t.getShaderPrecisionFormat(t.VERTEX_SHADER,t.MEDIUM_FLOAT).precision>0&&t.getShaderPrecisionFormat(t.FRAGMENT_SHADER,t.MEDIUM_FLOAT).precision>0?"mediump":"lowp"},focus:function(){"function"==typeof window.focus&&window.focus()},onDeviceMotion:function(t){this.accelerationX=t.accelerationIncludingGravity.x,this.accelerationY=t.accelerationIncludingGravity.y,this.accelerationZ=t.accelerationIncludingGravity.z},onDeviceRotate:function(t){this.gamma=t.gamma,this.beta=t.beta,this.alpha=t.alpha},watchAccelerometer:function(){var t=this;return this.hasAccelerometer&&!accelInitialized&&(DeviceOrientationEvent&&"function"==typeof DeviceOrientationEvent.requestPermission?DeviceOrientationEvent.requestPermission().then((function(e){"granted"===e&&(window.addEventListener("devicemotion",t.onDeviceMotion,!1),accelInitialized=!0)})).catch(console.error):(window.addEventListener("devicemotion",this.onDeviceMotion,!1),accelInitialized=!0)),accelInitialized},unwatchAccelerometer:function(){accelInitialized&&(window.removeEventListener("devicemotion",this.onDeviceMotion,!1),accelInitialized=!1)},watchDeviceOrientation:function(){var t=this;return this.hasDeviceOrientation&&!deviceOrientationInitialized&&("function"==typeof DeviceOrientationEvent.requestPermission?DeviceOrientationEvent.requestPermission().then((function(e){"granted"===e&&(window.addEventListener("deviceorientation",t.onDeviceRotate,!1),deviceOrientationInitialized=!0)})).catch(console.error):(window.addEventListener("deviceorientation",this.onDeviceRotate,!1),deviceOrientationInitialized=!0)),deviceOrientationInitialized},unwatchDeviceOrientation:function(){deviceOrientationInitialized&&(window.removeEventListener("deviceorientation",this.onDeviceRotate,!1),deviceOrientationInitialized=!1)},vibrate:function(t){navigator.vibrate&&navigator.vibrate(t)}};Object.defineProperty(device,"devicePixelRatio",{get:function(){return window.devicePixelRatio||1}}),Object.defineProperty(device,"isFullscreen",{get:function(){return!!this.hasFullscreenSupport&&!(!prefixed("fullscreenElement",document)&&!document.mozFullScreenElement)}}),Object.defineProperty(device,"sound",{get:function(){return hasAudio()}});var device$1=device;function extractUniforms(t,e){var i,o={},r=/uniform\s+(\w+)\s+(\w+)/g,n={},s={},a={};return[e.vertex,e.fragment].forEach((function(t){for(;i=r.exec(t);)n[i[2]]=i[1]})),Object.keys(n).forEach((function(i){var o=n[i];a[i]=t.getUniformLocation(e.program,i),s[i]={get:function(t){return function(){return a[t]}}(i),set:function(e,i,o){return 0===i.indexOf("mat")?function(i){t[o](a[e],!1,i)}:function(i){var r=o;i.length&&"v"!==o.substr(-1)&&(r+="v"),t[r](a[e],i)}}(i,o,"uniform"+fnHash[o])}})),Object.defineProperties(o,s),o}function extractAttributes(t,e){for(var i,o={},r=/attribute\s+\w+\s+(\w+)/g,n=0;i=r.exec(e.vertex);)o[i[1]]=n++;return o}function compileShader(t,e,i){var o=t.createShader(e);if(t.shaderSource(o,i),t.compileShader(o),!t.getShaderParameter(o,t.COMPILE_STATUS))throw new Error(t.getShaderInfoLog(o));return o}function compileProgram(t,e,i,o){var r=compileShader(t,t.VERTEX_SHADER,e),n=compileShader(t,t.FRAGMENT_SHADER,i),s=t.createProgram();for(var a in t.attachShader(s,r),t.attachShader(s,n),o)t.bindAttribLocation(s,o[a],a);if(t.linkProgram(s),!t.getProgramParameter(s,t.LINK_STATUS)){var h="Error initializing Shader "+this+"\ngl.VALIDATE_STATUS: "+t.getProgramParameter(s,t.VALIDATE_STATUS)+"\ngl.getError()"+t.getError()+"\ngl.getProgramInfoLog()"+t.getProgramInfoLog(s);throw t.deleteProgram(s),s=null,new Error(h)}return t.useProgram(s),t.deleteShader(r),t.deleteShader(n),s}var fnHash={bool:"1i",int:"1i",float:"1f",vec2:"2fv",vec3:"3fv",vec4:"4fv",bvec2:"2iv",bvec3:"3iv",bvec4:"4iv",ivec2:"2iv",ivec3:"3iv",ivec4:"4iv",mat2:"Matrix2fv",mat3:"Matrix3fv",mat4:"Matrix4fv",sampler2D:"1i"};function setPrecision(t,e){return"precision"!==t.substring(0,9)?"precision "+e+" float;"+t:t}function minify(t){return t=(t=(t=(t=t.replace(/\/\*[\s\S]*?\*\/|([^\\:]|^)\/\/.*$/gm,"$1")).replace(/(\\n\s+)|(\s+\\n)/g,"")).replace(/(\\r|\\n)+/g,"")).replace(/\s*([;,[\](){}\\\/\-+*|^&!=<>?~%])\s*/g,"$1")}var GLShader=function(t,e,i,o){return this.gl=t,this.vertex=setPrecision(minify(e),o||device$1.getMaxShaderPrecision(this.gl)),this.fragment=setPrecision(minify(i),o||device$1.getMaxShaderPrecision(this.gl)),this.attributes=extractAttributes(this.gl,this),this.program=compileProgram(this.gl,this.vertex,this.fragment,this.attributes),this.uniforms=extractUniforms(this.gl,this),on(WEBGL_ONCONTEXT_LOST,this.destroy,this),this};GLShader.prototype.bind=function(){this.gl.useProgram(this.program)},GLShader.prototype.getAttribLocation=function(t){var e=this.attributes[t];return void 0!==e?e:-1},GLShader.prototype.setUniform=function(t,e){var i=this.uniforms;if(void 0===i[t])throw new Error("undefined ("+t+") uniform for shader "+this);"object"==typeof e&&"function"==typeof e.toArray?i[t]=e.toArray():i[t]=e},GLShader.prototype.destroy=function(){this.uniforms=null,this.attributes=null,this.gl.deleteProgram(this.program),this.vertex=null,this.fragment=null};var VertexArrayBuffer=function(t,e){return this.vertexSize=t,this.quadSize=e,this.maxVertex=256,this.vertexCount=0,this.buffer=new ArrayBuffer(this.maxVertex*this.vertexSize*this.quadSize),this.bufferF32=new Float32Array(this.buffer),this.bufferU32=new Uint32Array(this.buffer),this};VertexArrayBuffer.prototype.clear=function(){this.vertexCount=0},VertexArrayBuffer.prototype.isFull=function(t){return void 0===t&&(t=this.quadSize),this.vertexCount+t>=this.maxVertex},VertexArrayBuffer.prototype.resize=function(){this.maxVertex<<=1;var t=this.bufferF32;return this.buffer=new ArrayBuffer(this.maxVertex*this.vertexSize*this.quadSize),this.bufferF32=new Float32Array(this.buffer),this.bufferU32=new Uint32Array(this.buffer),this.bufferF32.set(t),this},VertexArrayBuffer.prototype.push=function(t,e,i,o,r){var n=this.vertexCount*this.vertexSize;return this.vertexCount>=this.maxVertex&&this.resize(),this.bufferF32[n+0]=t,this.bufferF32[n+1]=e,void 0!==i&&(this.bufferF32[n+2]=i,this.bufferF32[n+3]=o),void 0!==r&&(this.bufferU32[n+4]=r),this.vertexCount++,this},VertexArrayBuffer.prototype.toFloat32=function(t,e){return void 0!==e?this.bufferF32.subarray(t,e):this.bufferF32},VertexArrayBuffer.prototype.toUint32=function(t,e){return void 0!==e?this.bufferU32.subarray(t,e):this.bufferU32},VertexArrayBuffer.prototype.length=function(){return this.vertexCount},VertexArrayBuffer.prototype.isEmpty=function(){return 0===this.vertexCount};var primitiveVertex="// Current vertex point\nattribute vec2 aVertex;\n\n// Projection matrix\nuniform mat4 uProjectionMatrix;\n\n// Vertex color\nuniform vec4 uColor;\n\n// Fragment color\nvarying vec4 vColor;\n\nvoid main(void) {\n // Transform the vertex position by the projection matrix\n gl_Position = uProjectionMatrix * vec4(aVertex, 0.0, 1.0);\n // Pass the remaining attributes to the fragment shader\n vColor = vec4(uColor.rgb * uColor.a, uColor.a);\n}\n",primitiveFragment="varying vec4 vColor;\n\nvoid main(void) {\n gl_FragColor = vColor;\n}\n",quadVertex="attribute vec2 aVertex;\nattribute vec2 aRegion;\nattribute vec4 aColor;\n\nuniform mat4 uProjectionMatrix;\n\nvarying vec2 vRegion;\nvarying vec4 vColor;\n\nvoid main(void) {\n // Transform the vertex position by the projection matrix\n gl_Position = uProjectionMatrix * vec4(aVertex, 0.0, 1.0);\n // Pass the remaining attributes to the fragment shader\n vColor = vec4(aColor.bgr * aColor.a, aColor.a);\n vRegion = aRegion;\n}\n",quadFragment="uniform sampler2D uSampler;\nvarying vec4 vColor;\nvarying vec2 vRegion;\n\nvoid main(void) {\n gl_FragColor = texture2D(uSampler, vRegion) * vColor;\n}\n",V_ARRAY=[new Vector2d,new Vector2d,new Vector2d,new Vector2d],WebGLCompositor=function(t){this.init(t)};WebGLCompositor.prototype.init=function(t){var e=this,i=t.gl;this.currentTextureUnit=-1,this.boundTextures=[],this.renderer=t,this.gl=t.gl,this.color=t.currentColor,this.viewMatrix=t.currentTransform,this.activeShader=null,this.mode=i.TRIANGLES,this.attributes=[],this.vertexByteSize=0,this.vertexSize=0,this.primitiveShader=new GLShader(this.gl,primitiveVertex,primitiveFragment),this.quadShader=new GLShader(this.gl,quadVertex,quadFragment),this.addAttribute("aVertex",2,i.FLOAT,!1,0*Float32Array.BYTES_PER_ELEMENT),this.addAttribute("aRegion",2,i.FLOAT,!1,2*Float32Array.BYTES_PER_ELEMENT),this.addAttribute("aColor",4,i.UNSIGNED_BYTE,!0,4*Float32Array.BYTES_PER_ELEMENT),this.vertexBuffer=new VertexArrayBuffer(this.vertexSize,6),i.bindBuffer(i.ARRAY_BUFFER,i.createBuffer()),i.bufferData(i.ARRAY_BUFFER,this.vertexBuffer.buffer,i.STREAM_DRAW),on(CANVAS_ONRESIZE,(function(t,i){e.flush(),e.setViewport(0,0,t,i)}))},WebGLCompositor.prototype.reset=function(){this.gl=this.renderer.gl,this.flush(),this.setViewport(0,0,this.renderer.getScreenCanvas().width,this.renderer.getScreenCanvas().height),this.clearColor(0,0,0,0);for(var t=0;t<this.renderer.maxTextures;t++){var e=this.getTexture2D(t);void 0!==e&&this.deleteTexture2D(e)}this.currentTextureUnit=-1,this.useShader(this.quadShader)},WebGLCompositor.prototype.addAttribute=function(t,e,i,o,r){switch(this.attributes.push({name:t,size:e,type:i,normalized:o,offset:r}),i){case this.gl.BYTE:this.vertexByteSize+=e*Int8Array.BYTES_PER_ELEMENT;break;case this.gl.UNSIGNED_BYTE:this.vertexByteSize+=e*Uint8Array.BYTES_PER_ELEMENT;break;case this.gl.SHORT:this.vertexByteSize+=e*Int16Array.BYTES_PER_ELEMENT;break;case this.gl.UNSIGNED_SHORT:this.vertexByteSize+=e*Uint16Array.BYTES_PER_ELEMENT;break;case this.gl.INT:this.vertexByteSize+=e*Int32Array.BYTES_PER_ELEMENT;break;case this.gl.UNSIGNED_INT:this.vertexByteSize+=e*Uint32Array.BYTES_PER_ELEMENT;break;case this.gl.FLOAT:this.vertexByteSize+=e*Float32Array.BYTES_PER_ELEMENT;break;default:throw new Error("Invalid GL Attribute type")}this.vertexSize=this.vertexByteSize/Float32Array.BYTES_PER_ELEMENT},WebGLCompositor.prototype.setViewport=function(t,e,i,o){this.gl.viewport(t,e,i,o)},WebGLCompositor.prototype.createTexture2D=function(t,e,i,o,r,n,s,a,h){void 0===o&&(o="no-repeat"),void 0===a&&(a=!0),void 0===h&&(h=!0);var l=this.gl,c=isPowerOfTwo(r||e.width)&&isPowerOfTwo(n||e.height),u=l.createTexture(),d=0===o.search(/^repeat(-x)?$/)&&(c||this.renderer.WebGLVersion>1)?l.REPEAT:l.CLAMP_TO_EDGE,p=0===o.search(/^repeat(-y)?$/)&&(c||this.renderer.WebGLVersion>1)?l.REPEAT:l.CLAMP_TO_EDGE;return this.bindTexture2D(u,t),l.texParameteri(l.TEXTURE_2D,l.TEXTURE_WRAP_S,d),l.texParameteri(l.TEXTURE_2D,l.TEXTURE_WRAP_T,p),l.texParameteri(l.TEXTURE_2D,l.TEXTURE_MAG_FILTER,i),l.texParameteri(l.TEXTURE_2D,l.TEXTURE_MIN_FILTER,i),l.pixelStorei(l.UNPACK_PREMULTIPLY_ALPHA_WEBGL,a),r||n||s?l.texImage2D(l.TEXTURE_2D,0,l.RGBA,r,n,s,l.RGBA,l.UNSIGNED_BYTE,e):l.texImage2D(l.TEXTURE_2D,0,l.RGBA,l.RGBA,l.UNSIGNED_BYTE,e),c&&!1!==h&&l.generateMipmap(l.TEXTURE_2D),u},WebGLCompositor.prototype.deleteTexture2D=function(t){this.gl.deleteTexture(t),this.unbindTexture2D(t)},WebGLCompositor.prototype.getTexture2D=function(t){return this.boundTextures[t]},WebGLCompositor.prototype.bindTexture2D=function(t,e){var i=this.gl;t!==this.boundTextures[e]?(this.flush(),this.currentTextureUnit!==e&&(this.currentTextureUnit=e,i.activeTexture(i.TEXTURE0+e)),i.bindTexture(i.TEXTURE_2D,t),this.boundTextures[e]=t):this.currentTextureUnit!==e&&(this.flush(),this.currentTextureUnit=e,i.activeTexture(i.TEXTURE0+e))},WebGLCompositor.prototype.unbindTexture2D=function(t,e){return void 0===e&&(e=this.boundTextures.indexOf(t)),-1!==e&&(delete this.boundTextures[e],e===this.currentTextureUnit&&(this.currentTextureUnit=-1)),e},WebGLCompositor.prototype.uploadTexture=function(t,e,i,o,r){void 0===r&&(r=!1);var n=this.renderer.cache.getUnit(t),s=this.boundTextures[n];return void 0===s||r?this.createTexture2D(n,t.getTexture(),this.renderer.settings.antiAlias?this.gl.LINEAR:this.gl.NEAREST,t.repeat,e,i,o,t.premultipliedAlpha):this.bindTexture2D(s,n),this.currentTextureUnit},WebGLCompositor.prototype.useShader=function(t){if(this.activeShader!==t){this.flush(),this.activeShader=t,this.activeShader.bind(),this.activeShader.setUniform("uProjectionMatrix",this.renderer.projectionMatrix);for(var e=0;e<this.attributes.length;++e){var i=this.gl,o=this.attributes[e],r=this.activeShader.getAttribLocation(o.name);-1!==r?(i.enableVertexAttribArray(r),i.vertexAttribPointer(r,o.size,o.type,o.normalized,this.vertexByteSize,o.offset)):i.disableVertexAttribArray(e)}}},WebGLCompositor.prototype.addQuad=function(t,e,i,o,r,n,s,a,h,l){if(!(this.color.alpha<1/255)){this.useShader(this.quadShader),this.vertexBuffer.isFull(6)&&this.flush();var c=this.uploadTexture(t);this.quadShader.setUniform("uSampler",c);var u=this.viewMatrix,d=V_ARRAY[0].set(e,i),p=V_ARRAY[1].set(e+o,i),f=V_ARRAY[2].set(e,i+r),y=V_ARRAY[3].set(e+o,i+r);u.isIdentity()||(u.apply(d),u.apply(p),u.apply(f),u.apply(y)),this.vertexBuffer.push(d.x,d.y,n,s,l),this.vertexBuffer.push(p.x,p.y,a,s,l),this.vertexBuffer.push(f.x,f.y,n,h,l),this.vertexBuffer.push(f.x,f.y,n,h,l),this.vertexBuffer.push(p.x,p.y,a,s,l),this.vertexBuffer.push(y.x,y.y,a,h,l)}},WebGLCompositor.prototype.flush=function(t){void 0===t&&(t=this.mode);var e=this.vertexBuffer,i=e.vertexCount;if(i>0){var o=this.gl,r=e.vertexSize;this.renderer.WebGLVersion>1?o.bufferData(o.ARRAY_BUFFER,e.toFloat32(),o.STREAM_DRAW,0,i*r):o.bufferData(o.ARRAY_BUFFER,e.toFloat32(0,i*r),o.STREAM_DRAW),o.drawArrays(t,0,i),e.clear()}},WebGLCompositor.prototype.drawVertices=function(t,e,i){void 0===i&&(i=e.length),this.useShader(this.primitiveShader),this.primitiveShader.setUniform("uColor",this.color);for(var o=this.viewMatrix,r=this.vertexBuffer,n=o.isIdentity(),s=0;s<i;s++)n||o.apply(e[s]),r.push(e[s].x,e[s].y);this.flush(t)},WebGLCompositor.prototype.clearColor=function(t,e,i,o){this.gl.clearColor(t,e,i,o)},WebGLCompositor.prototype.clear=function(){this.gl.clear(this.gl.COLOR_BUFFER_BIT)};var WebGLRenderer=function(t){function e(e){var i=this;t.call(this,e),this.WebGLVersion=1,this.GPUVendor=null,this.GPURenderer=null,this.context=this.gl=this.getContextGL(this.getScreenCanvas(),e.transparent),this.maxTextures=this.gl.getParameter(this.gl.MAX_TEXTURE_IMAGE_UNITS),this._colorStack=[],this._matrixStack=[],this._scissorStack=[],this._glPoints=[new Vector2d,new Vector2d,new Vector2d,new Vector2d],this.currentTransform=new Matrix2d,this.currentCompositor=null,this.compositors=new Map;var o=new(this.settings.compositor||WebGLCompositor)(this);this.compositors.set("default",o),this.setCompositor(o),this.gl.disable(this.gl.DEPTH_TEST),this.gl.disable(this.gl.SCISSOR_TEST),this.gl.enable(this.gl.BLEND),this.setBlendMode(this.settings.blendMode);var r=this.gl.getExtension("WEBGL_debug_renderer_info");return null!==r&&(this.GPUVendor=this.gl.getParameter(r.UNMASKED_VENDOR_WEBGL),this.GPURenderer=this.gl.getParameter(r.UNMASKED_RENDERER_WEBGL)),this.cache=new TextureCache(this.maxTextures),this.getScreenCanvas().addEventListener("webglcontextlost",(function(t){t.preventDefault(),i.isContextValid=!1,emit(WEBGL_ONCONTEXT_LOST,i)}),!1),this.getScreenCanvas().addEventListener("webglcontextrestored",(function(){i.reset(),i.isContextValid=!0,emit(WEBGL_ONCONTEXT_RESTORED,i)}),!1),this}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reset=function(){var e=this;t.prototype.reset.call(this),this.compositors.forEach((function(t){!1===e.isContextValid?t.init(e):t.reset()})),this.gl.disable(this.gl.SCISSOR_TEST),void 0!==this.fontContext2D&&this.createFontTexture(this.cache)},e.prototype.setCompositor=function(t){if(void 0===t&&(t="default"),"string"==typeof t&&(t=this.compositors.get(t)),void 0===t)throw new Error("Invalid WebGL Compositor");this.currentCompositor!==t&&(null!==this.currentCompositor&&this.currentCompositor.flush(),this.currentCompositor=t)},e.prototype.resetTransform=function(){this.currentTransform.identity()},e.prototype.createFontTexture=function(t){if(void 0===this.fontTexture){var e=this.backBufferCanvas,i=e.width,o=e.height;1===this.WebGLVersion&&(isPowerOfTwo(i)||(i=nextPowerOfTwo(e.width)),isPowerOfTwo(o)||(o=nextPowerOfTwo(e.height)));var r=createCanvas(i,o,!0);this.fontContext2D=this.getContext2d(r),this.fontTexture=new Texture(createAtlas(e.width,e.height,"fontTexture"),r,t),this.currentCompositor.uploadTexture(this.fontTexture,0,0,0)}else t.set(this.fontContext2D.canvas,this.fontTexture)},e.prototype.createPattern=function(t,e){if(!(1!==renderer.WebGLVersion||isPowerOfTwo(t.width)&&isPowerOfTwo(t.height))){var i=void 0!==t.src?t.src:t;throw new Error("[WebGL Renderer] "+i+" is not a POT texture ("+t.width+"x"+t.height+")")}var o=new Texture(createAtlas(t.width,t.height,"pattern",e),t);return this.currentCompositor.uploadTexture(o),o},e.prototype.flush=function(){this.currentCompositor.flush()},e.prototype.clearColor=function(t,e){var i;if(void 0===t&&(t="#000000"),void 0===e&&(e=!1),t instanceof Color)i=t.toArray();else{var o=pool.pull("me.Color");i=o.parseCSS(t).toArray(),pool.push(o)}this.currentCompositor.clearColor(i[0],i[1],i[2],!0===e?1:i[3]),this.currentCompositor.clear(),this.currentCompositor.clearColor(0,0,0,0)},e.prototype.clearRect=function(t,e,i,o){this.save(),this.clipRect(t,e,i,o),this.clearColor(),this.restore()},e.prototype.drawFont=function(t){var e=this.getFontContext();this.currentCompositor.uploadTexture(this.fontTexture,0,0,0,!0);var i=this.fontTexture.getUVs(t.left+","+t.top+","+t.width+","+t.height);this.currentCompositor.addQuad(this.fontTexture,t.left,t.top,t.width,t.height,i[0],i[1],i[2],i[3],this.currentTint.toUint32()),e.clearRect(t.left,t.top,t.width,t.height)},e.prototype.drawImage=function(t,e,i,o,r,n,s,a,h){void 0===o?(o=a=t.width,r=h=t.height,n=e,s=i,e=0,i=0):void 0===n&&(n=e,s=i,a=o,h=r,o=t.width,r=t.height,e=0,i=0),!1===this.settings.subPixel&&(n|=0,s|=0);var l=this.cache.get(t),c=l.getUVs(e+","+i+","+o+","+r);this.currentCompositor.addQuad(l,n,s,a,h,c[0],c[1],c[2],c[3],this.currentTint.toUint32())},e.prototype.drawPattern=function(t,e,i,o,r){var n=t.getUVs("0,0,"+o+","+r);this.currentCompositor.addQuad(t,e,i,o,r,n[0],n[1],n[2],n[3],this.currentTint.toUint32())},e.prototype.getScreenContext=function(){return this.gl},e.prototype.getContextGL=function(t,e){if(null==t)throw new Error("You must pass a canvas element in order to create a GL context");"boolean"!=typeof e&&(e=!0);var i,o={alpha:e,antialias:this.settings.antiAlias,depth:!1,stencil:!0,preserveDrawingBuffer:!1,premultipliedAlpha:e,powerPreference:this.settings.powerPreference,failIfMajorPerformanceCaveat:this.settings.failIfMajorPerformanceCaveat};if(!1===this.settings.preferWebGL1&&(i=t.getContext("webgl2",o))&&(this.WebGLVersion=2),i||(this.WebGLVersion=1,i=t.getContext("webgl",o)||t.getContext("experimental-webgl",o)),!i)throw new Error("A WebGL context could not be created.");return i},e.prototype.getContext=function(){return this.gl},e.prototype.setBlendMode=function(t,e){if((e=e||this.gl).enable(e.BLEND),"multiply"===t)e.blendFunc(e.SRC_ALPHA,e.ONE_MINUS_SRC_ALPHA),this.currentBlendMode=t;else e.blendFunc(e.ONE,e.ONE_MINUS_SRC_ALPHA),this.currentBlendMode="normal"},e.prototype.getFontContext=function(){return void 0===this.fontContext2D&&(console.warn("[WebGL Renderer] WARNING : Using Standard me.Text with WebGL will severly impact performances !"),this.createFontTexture(this.cache)),this.fontContext2D},e.prototype.restore=function(){if(0!==this._matrixStack.length){var t=this._colorStack.pop(),e=this._matrixStack.pop();this.currentColor.copy(t),this.currentTransform.copy(e),pool.push(t),pool.push(e)}0!==this._scissorStack.length?this.currentScissor.set(this._scissorStack.pop()):(this.gl.disable(this.gl.SCISSOR_TEST),this.currentScissor[0]=0,this.currentScissor[1]=0,this.currentScissor[2]=this.backBufferCanvas.width,this.currentScissor[3]=this.backBufferCanvas.height)},e.prototype.save=function(){this._colorStack.push(this.currentColor.clone()),this._matrixStack.push(this.currentTransform.clone()),this.gl.isEnabled(this.gl.SCISSOR_TEST)&&this._scissorStack.push(this.currentScissor.slice())},e.prototype.rotate=function(t){this.currentTransform.rotate(t)},e.prototype.scale=function(t,e){this.currentTransform.scale(t,e)},e.prototype.setAntiAlias=function(e,i){t.prototype.setAntiAlias.call(this,e,i)},e.prototype.setGlobalAlpha=function(t){this.currentColor.alpha=t},e.prototype.setColor=function(t){var e=this.currentColor.alpha;this.currentColor.copy(t),this.currentColor.alpha*=e},e.prototype.setLineWidth=function(t){this.getScreenContext().lineWidth(t)},e.prototype.strokeArc=function(t,e,i,o,r,n,s){if(void 0===n&&(n=!1),!0===s)this.fillArc(t,e,i,o,r,n);else{var a,h=this._glPoints,l=Math.floor(24*Math.sqrt(2*i)),c=(r-o)/(2*l),u=2*c,d=Math.cos(c),p=Math.sin(c);for(a=h.length;a<l+1;a++)h.push(new Vector2d);for(a=0;a<l;a++){var f=c+o+u*a,y=Math.cos(f),g=-Math.sin(f);h[a].x=t+(d*y+p*g)*i,h[a].y=e+(d*-g+p*y)*i}this.currentCompositor.drawVertices(this.gl.LINE_STRIP,h,l)}},e.prototype.fillArc=function(t,e,i,o,r){var n,s=this._glPoints,a=0,h=Math.floor(24*Math.sqrt(2*i)),l=(r-o)/(2*h),c=2*l,u=Math.cos(l),d=Math.sin(l);for(n=s.length;n<2*h;n++)s.push(new Vector2d);for(n=0;n<h-1;n++){var p=l+o+c*n,f=Math.cos(p),y=-Math.sin(p);s[a++].set(t,e),s[a++].set(t-(u*f+d*y)*i,e-(u*-y+d*f)*i)}this.currentCompositor.drawVertices(this.gl.TRIANGLE_STRIP,s,a)},e.prototype.strokeEllipse=function(t,e,i,o,r){if(void 0===r&&(r=!1),!0===r)this.fillEllipse(t,e,i,o);else{var n,s=Math.floor(24*Math.sqrt(i))||Math.floor(12*Math.sqrt(i+o)),a=TAU/s,h=this._glPoints;for(n=h.length;n<s;n++)h.push(new Vector2d);for(n=0;n<s;n++)h[n].x=t+Math.sin(a*-n)*i,h[n].y=e+Math.cos(a*-n)*o;this.currentCompositor.drawVertices(this.gl.LINE_LOOP,h,s)}},e.prototype.fillEllipse=function(t,e,i,o){var r,n=Math.floor(24*Math.sqrt(i))||Math.floor(12*Math.sqrt(i+o)),s=TAU/n,a=this._glPoints,h=0;for(r=a.length;r<2*(n+1);r++)a.push(new Vector2d);for(r=0;r<n+1;r++)a[h++].set(t,e),a[h++].set(t+Math.sin(s*r)*i,e+Math.cos(s*r)*o);this.currentCompositor.drawVertices(this.gl.TRIANGLE_STRIP,a,h)},e.prototype.strokeLine=function(t,e,i,o){var r=this._glPoints;r[0].x=t,r[0].y=e,r[1].x=i,r[1].y=o,this.currentCompositor.drawVertices(this.gl.LINE_STRIP,r,2)},e.prototype.fillLine=function(t,e,i,o){this.strokeLine(t,e,i,o)},e.prototype.strokePolygon=function(t,e){if(void 0===e&&(e=!1),!0===e)this.fillPolygon(t);else{var i,o=t.points.length,r=this._glPoints;for(i=r.length;i<o;i++)r.push(new Vector2d);for(i=0;i<o;i++)r[i].x=t.pos.x+t.points[i].x,r[i].y=t.pos.y+t.points[i].y;this.currentCompositor.drawVertices(this.gl.LINE_LOOP,r,o)}},e.prototype.fillPolygon=function(t){var e,i=t.points,o=this._glPoints,r=t.getIndices(),n=t.pos.x,s=t.pos.y;for(e=o.length;e<r.length;e++)o.push(new Vector2d);for(e=0;e<r.length;e++)o[e].set(n+i[r[e]].x,s+i[r[e]].y);this.currentCompositor.drawVertices(this.gl.TRIANGLES,o,r.length)},e.prototype.strokeRect=function(t,e,i,o,r){if(void 0===r&&(r=!1),!0===r)this.fillRect(t,e,i,o);else{var n=this._glPoints;n[0].x=t,n[0].y=e,n[1].x=t+i,n[1].y=e,n[2].x=t+i,n[2].y=e+o,n[3].x=t,n[3].y=e+o,this.currentCompositor.drawVertices(this.gl.LINE_LOOP,n,4)}},e.prototype.fillRect=function(t,e,i,o){var r=this._glPoints;r[0].x=t+i,r[0].y=e,r[1].x=t,r[1].y=e,r[2].x=t+i,r[2].y=e+o,r[3].x=t,r[3].y=e+o,this.currentCompositor.drawVertices(this.gl.TRIANGLE_STRIP,r,4)},e.prototype.setTransform=function(t){this.resetTransform(),this.transform(t)},e.prototype.transform=function(t){var e=this.currentTransform;if(e.multiply(t),!1===this.settings.subPixel){var i=e.toArray();i[6]|=0,i[7]|=0}},e.prototype.translate=function(t,e){var i=this.currentTransform;if(i.translate(t,e),!1===this.settings.subPixel){var o=i.toArray();o[6]|=0,o[7]|=0}},e.prototype.clipRect=function(t,e,i,o){var r=this.backBufferCanvas,n=this.gl;if(0!==t||0!==e||i!==r.width||o!==r.height){var s=this.currentScissor;if(n.isEnabled(n.SCISSOR_TEST)&&s[0]===t&&s[1]===e&&s[2]===i&&s[3]===o)return;this.flush(),n.enable(this.gl.SCISSOR_TEST),n.scissor(t+this.currentTransform.tx,r.height-o-e-this.currentTransform.ty,i,o),s[0]=t,s[1]=e,s[2]=i,s[3]=o}else n.disable(n.SCISSOR_TEST)},e.prototype.setMask=function(t){var e=this.gl;this.flush(),e.enable(e.STENCIL_TEST),e.clear(e.STENCIL_BUFFER_BIT),e.colorMask(!1,!1,!1,!1),e.stencilFunc(e.NOTEQUAL,1,1),e.stencilOp(e.REPLACE,e.REPLACE,e.REPLACE),this.fill(t),this.flush(),e.colorMask(!0,!0,!0,!0),e.stencilFunc(e.EQUAL,1,1),e.stencilOp(e.KEEP,e.KEEP,e.KEEP)},e.prototype.clearMask=function(){this.flush(),this.gl.disable(this.gl.STENCIL_TEST)},e}(Renderer),designRatio=1,designWidth=0,designHeight=0,settings={parent:document.body,renderer:2,doubleBuffering:!1,autoScale:!1,scale:1,scaleMethod:"fit",transparent:!1,blendMode:"normal",antiAlias:!1,failIfMajorPerformanceCaveat:!0,subPixel:!1,preferWebGL1:!1,powerPreference:"default",verbose:!1,consoleHeader:!0};function autoDetectRenderer(t){try{if(device$1.isWebGLSupported(t))return new WebGLRenderer(t)}catch(t){console.log("Error creating WebGL renderer :"+t.message)}return new CanvasRenderer(t)}function onresize(){var t=renderer.settings,e=1,i=1;if(t.autoScale){var o=1/0,r=1/0;if(window.getComputedStyle){var n=window.getComputedStyle(renderer.getScreenCanvas(),null);o=parseInt(n.maxWidth,10)||1/0,r=parseInt(n.maxHeight,10)||1/0}var s=device$1.getParentBounds(getParent()),a=Math.min(o,s.width),h=Math.min(r,s.height),l=a/h;if("fill-min"===t.scaleMethod&&l>designRatio||"fill-max"===t.scaleMethod&&l<designRatio||"flex-width"===t.scaleMethod){var c=Math.min(o,designHeight*l);e=i=a/c,renderer.resize(Math.floor(c),designHeight)}else if("fill-min"===t.scaleMethod&&l<designRatio||"fill-max"===t.scaleMethod&&l>designRatio||"flex-height"===t.scaleMethod){var u=Math.min(r,designWidth*(h/a));e=i=h/u,renderer.resize(designWidth,Math.floor(u))}else"flex"===t.scaleMethod?renderer.resize(Math.floor(a),Math.floor(h)):"stretch"===t.scaleMethod?(e=a/designWidth,i=h/designHeight):e=i=l<designRatio?a/designWidth:h/designHeight;scale(e,i)}}var CANVAS=0,WEBGL=1,AUTO=2,parent=null,scaleRatio=new Vector2d(1,1),renderer=null;function init(t,e,i){if(!exports.initialized)throw new Error("me.video.init() called before engine initialization.");(settings=Object.assign(settings,i||{})).width=t,settings.height=e,settings.doubleBuffering=!!settings.doubleBuffering,settings.transparent=!!settings.transparent,settings.antiAlias=!!settings.antiAlias,settings.failIfMajorPerformanceCaveat=!!settings.failIfMajorPerformanceCaveat,settings.subPixel=!!settings.subPixel,settings.verbose=!!settings.verbose,-1!==settings.scaleMethod.search(/^(fill-(min|max)|fit|flex(-(width|height))?|stretch)$/)?settings.autoScale="auto"===settings.scale||!0:(settings.scaleMethod="fit",settings.autoScale="auto"===settings.scale||!1),!1!==settings.consoleHeader&&console.log("melonJS 2 (v"+version+") | http://melonjs.org");var o=utils.getUriFragment();!0!==o.webgl&&!0!==o.webgl1&&!0!==o.webgl2||(settings.renderer=WEBGL,!0===o.webgl1&&(settings.preferWebGL1=!0)),settings.scale=settings.autoScale?1:+settings.scale||1,scaleRatio.set(settings.scale,settings.scale),(settings.autoScale||1!==settings.scale)&&(settings.doubleBuffering=!0),designRatio=t/e,designWidth=t,designHeight=e,settings.zoomX=t*scaleRatio.x,settings.zoomY=t*scaleRatio.y,window.addEventListener("resize",utils.function.throttle((function(t){emit(WINDOW_ONRESIZE,t)}),100),!1),window.addEventListener("orientationchange",(function(t){emit(WINDOW_ONORIENTATION_CHANGE,t)}),!1),window.addEventListener("onmozorientationchange",(function(t){emit(WINDOW_ONORIENTATION_CHANGE,t)}),!1),!0===device$1.ScreenOrientation&&(window.screen.orientation.onchange=function(t){emit(WINDOW_ONORIENTATION_CHANGE,t)}),window.addEventListener("scroll",utils.function.throttle((function(t){emit(WINDOW_ONSCROLL,t)}),100),!1),on(WINDOW_ONRESIZE,onresize,this),on(WINDOW_ONORIENTATION_CHANGE,onresize,this);try{switch(settings.renderer){case AUTO:case WEBGL:renderer=autoDetectRenderer(settings);break;default:renderer=new CanvasRenderer(settings)}}catch(t){return console(t.message),!1}((parent=device$1.getElement(settings.parent)).appendChild(renderer.getScreenCanvas()),onresize(),"MutationObserver"in window)&&new MutationObserver(onresize.bind(this)).observe(parent,{attributes:!1,childList:!0,subtree:!0});if(!1!==settings.consoleHeader){var r=renderer instanceof CanvasRenderer?"CANVAS":"WebGL"+renderer.WebGLVersion,n=device$1.hasWebAudio?"Web Audio":"HTML5 Audio",s="string"==typeof renderer.GPURenderer?" ("+renderer.GPURenderer+")":"";console.log(r+" renderer"+s+" | "+n+" | pixel ratio "+device$1.devicePixelRatio+" | "+(device$1.isMobile?"mobile":"desktop")+" | "+device$1.getScreenOrientation()+" | "+device$1.language),console.log("resolution: requested "+t+"x"+e+", got "+renderer.getWidth()+"x"+renderer.getHeight())}return emit(VIDEO_INIT),!0}function createCanvas(t,e,i){var o;if(void 0===i&&(i=!1),0===t||0===e)throw new Error("width or height was zero, Canvas could not be initialized !");return!0===device$1.OffscreenCanvas&&!0===i?void 0===(o=new OffscreenCanvas(0,0)).style&&(o.style={}):o=document.createElement("canvas"),o.width=t,o.height=e,o}function getParent(){return parent}function scale(t,e){var i=renderer.getScreenCanvas(),o=renderer.getScreenContext(),r=renderer.settings,n=device$1.devicePixelRatio,s=r.zoomX=i.width*t*n,a=r.zoomY=i.height*e*n;scaleRatio.set(t*n,e*n),i.style.width=s/n+"px",i.style.height=a/n+"px",renderer.setAntiAlias(o,r.antiAlias),renderer.setBlendMode(r.blendMode,o),repaint()}var video=Object.freeze({__proto__:null,CANVAS:CANVAS,WEBGL:WEBGL,AUTO:AUTO,get parent(){return parent},scaleRatio:scaleRatio,get renderer(){return renderer},init:init,createCanvas:createCanvas,getParent:getParent,scale:scale}),GUID_base="",GUID_index=0,utils={agent:agentUtils,array:arrayUtils,file:fileUtils,string:stringUtils,function:fnUtils,getPixels:function(t){if(t instanceof HTMLImageElement){var e=CanvasRenderer.getContext2d(createCanvas(t.width,t.height));return e.drawImage(t,0,0),e.getImageData(0,0,t.width,t.height)}return t.getContext("2d").getImageData(0,0,t.width,t.height)},checkVersion:function(t,e){void 0===e&&(e=version);for(var i=t.split("."),o=e.split("."),r=Math.min(i.length,o.length),n=0,s=0;s<r&&!(n=+i[s]-+o[s]);s++);return n||i.length-o.length},getUriFragment:function(t){var e={};if(void 0===t){var i=document.location;if(!i||!i.hash)return e;t=i.hash}else{var o=t.indexOf("#");if(-1===o)return e;t=t.substr(o,t.length)}return t.substr(1).split("&").filter((function(t){return""!==t})).forEach((function(t){var i=t.split("="),o=i.shift(),r=i.join("=");e[o]=r||!0})),e},resetGUID:function(t,e){void 0===e&&(e=0),GUID_base=toHex$1(t.toString().toUpperCase()),GUID_index=e},createGUID:function(t){return void 0===t&&(t=1),GUID_index+=t,GUID_base+"-"+(t||GUID_index)}},framecount=0,framedelta=0,last=0,now=0,delta=0,step=0,minstep=0,timers=[],timerId=0;function update(t){last=now,(delta=(now=t)-last)<0&&(delta=0),timer.tick=delta>minstep&&timer.interpolation?delta/step:1,updateTimers()}function clearTimer(t){for(var e=0,i=timers.length;e<i;e++)if(timers[e].timerId===t){timers.splice(e,1);break}}function updateTimers(){for(var t=0,e=timers.length;t<e;t++){var i=timers[t];i.pauseable&&state.isPaused()||(i.elapsed+=delta),i.elapsed>=i.delay&&(i.fn.apply(null,i.args),!0===i.repeat?i.elapsed-=i.delay:timer.clearTimeout(i.timerId))}}on(BOOT,(function(){timer.reset(),now=last=0,on(GAME_BEFORE_UPDATE,update)}));var timer={tick:1,fps:0,maxfps:60,interpolation:!1,reset:function(){last=now=window.performance.now(),delta=0,framedelta=0,framecount=0,step=Math.ceil(1e3/this.maxfps),minstep=1e3/this.maxfps*1.25},setTimeout:function(t,e,i){for(var o=[],r=arguments.length-3;r-- >0;)o[r]=arguments[r+3];return timers.push({fn:t,delay:e,elapsed:0,repeat:!1,timerId:++timerId,pauseable:!0===i||!0,args:o}),timerId},setInterval:function(t,e,i){for(var o=[],r=arguments.length-3;r-- >0;)o[r]=arguments[r+3];return timers.push({fn:t,delay:e,elapsed:0,repeat:!0,timerId:++timerId,pauseable:!0===i||!0,args:o}),timerId},clearTimeout:function(t){utils.function.defer(clearTimer,this,t)},clearInterval:function(t){utils.function.defer(clearTimer,this,t)},getTime:function(){return now},getDelta:function(){return delta},countFPS:function(){framecount++,framedelta+=delta,framecount%10==0&&(this.fps=clamp(Math.round(1e3*framecount/framedelta),0,this.maxfps),framedelta=0,framecount=0)}},timer$1=timer,lastTime=0,vendors=["ms","moz","webkit","o"],x,requestAnimationFrame=window.requestAnimationFrame,cancelAnimationFrame=window.cancelAnimationFrame;for(x=0;x<vendors.length&&!requestAnimationFrame;++x)requestAnimationFrame=window[vendors[x]+"RequestAnimationFrame"];for(x=0;x<vendors.length&&!cancelAnimationFrame;++x)cancelAnimationFrame=window[vendors[x]+"CancelAnimationFrame"]||window[vendors[x]+"CancelRequestAnimationFrame"];requestAnimationFrame&&cancelAnimationFrame||(requestAnimationFrame=function(t){var e=window.performance.now(),i=Math.max(0,1e3/timer$1.maxfps-(e-lastTime)),o=window.setTimeout((function(){t(e+i)}),i);return lastTime=e+i,o},cancelAnimationFrame=function(t){window.clearTimeout(t)},window.requestAnimationFrame=requestAnimationFrame,window.cancelAnimationFrame=cancelAnimationFrame);var plugins={},BasePlugin=function(){this.version="10.3.0"},plugin={Base:BasePlugin,patch:function(t,e,i){if(void 0!==t.prototype&&(t=t.prototype),"function"!=typeof t[e])throw new Error(e+" is not an existing function");var o=t[e];Object.defineProperty(t,e,{configurable:!0,value:function(t,e){return function(){this._patched=o;var t=e.apply(this,arguments);return this._patched=null,t}}(0,i)})},register:function(t,e){if(plugins[e])throw new Error("plugin "+e+" already registered");var i=[];arguments.length>2&&(i=Array.prototype.slice.call(arguments,1)),i[0]=t;var o=new(t.bind.apply(t,i));if(void 0===o||!(o instanceof plugin.Base))throw new Error("Plugin should extend the me.plugin.Base Class !");if(utils.checkVersion(o.version)>0)throw new Error("Plugin version mismatch, expected: "+o.version+", got: "+version);plugins[e]=o}},Easing={Linear:{None:function(t){return t}},Quadratic:{In:function(t){return t*t},Out:function(t){return t*(2-t)},InOut:function(t){return(t*=2)<1?.5*t*t:-.5*(--t*(t-2)-1)}},Cubic:{In:function(t){return t*t*t},Out:function(t){return--t*t*t+1},InOut:function(t){return(t*=2)<1?.5*t*t*t:.5*((t-=2)*t*t+2)}},Quartic:{In:function(t){return t*t*t*t},Out:function(t){return 1- --t*t*t*t},InOut:function(t){return(t*=2)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2)}},Quintic:{In:function(t){return t*t*t*t*t},Out:function(t){return--t*t*t*t*t+1},InOut:function(t){return(t*=2)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2)}},Sinusoidal:{In:function(t){return 1-Math.cos(t*Math.PI/2)},Out:function(t){return Math.sin(t*Math.PI/2)},InOut:function(t){return.5*(1-Math.cos(Math.PI*t))}},Exponential:{In:function(t){return 0===t?0:Math.pow(1024,t-1)},Out:function(t){return 1===t?1:1-Math.pow(2,-10*t)},InOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?.5*Math.pow(1024,t-1):.5*(2-Math.pow(2,-10*(t-1)))}},Circular:{In:function(t){return 1-Math.sqrt(1-t*t)},Out:function(t){return Math.sqrt(1- --t*t)},InOut:function(t){return(t*=2)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)}},Elastic:{In:function(t){return 0===t?0:1===t?1:-Math.pow(2,10*(t-1))*Math.sin(5*(t-1.1)*Math.PI)},Out:function(t){return 0===t?0:1===t?1:Math.pow(2,-10*t)*Math.sin(5*(t-.1)*Math.PI)+1},InOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?-.5*Math.pow(2,10*(t-1))*Math.sin(5*(t-1.1)*Math.PI):.5*Math.pow(2,-10*(t-1))*Math.sin(5*(t-1.1)*Math.PI)+1}},Back:{In:function(t){var e=1.70158;return t*t*((e+1)*t-e)},Out:function(t){var e=1.70158;return--t*t*((e+1)*t+e)+1},InOut:function(t){var e=2.5949095;return(t*=2)<1?t*t*((e+1)*t-e)*.5:.5*((t-=2)*t*((e+1)*t+e)+2)}},Bounce:{In:function(t){return 1-Easing.Bounce.Out(1-t)},Out:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},InOut:function(t){return t<.5?.5*Easing.Bounce.In(2*t):.5*Easing.Bounce.Out(2*t-1)+.5}}},Interpolation={Linear:function(t,e){var i=t.length-1,o=i*e,r=Math.floor(o),n=Interpolation.Utils.Linear;return e<0?n(t[0],t[1],o):e>1?n(t[i],t[i-1],i-o):n(t[r],t[r+1>i?i:r+1],o-r)},Bezier:function(t,e){var i,o=0,r=t.length-1,n=Math.pow,s=Interpolation.Utils.Bernstein;for(i=0;i<=r;i++)o+=n(1-e,r-i)*n(e,i)*t[i]*s(r,i);return o},CatmullRom:function(t,e){var i=t.length-1,o=i*e,r=Math.floor(o),n=Interpolation.Utils.CatmullRom;return t[0]===t[i]?(e<0&&(r=Math.floor(o=i*(1+e))),n(t[(r-1+i)%i],t[r],t[(r+1)%i],t[(r+2)%i],o-r)):e<0?t[0]-(n(t[0],t[0],t[1],t[1],-o)-t[0]):e>1?t[i]-(n(t[i],t[i],t[i-1],t[i-1],o-i)-t[i]):n(t[r?r-1:0],t[r],t[i<r+1?i:r+1],t[i<r+2?i:r+2],o-r)},Utils:{Linear:function(t,e,i){return(e-t)*i+t},Bernstein:function(t,e){var i=Interpolation.Utils.Factorial;return i(t)/i(e)/i(t-e)},Factorial:function(){var t=[1];return function(e){var i,o=1;if(t[e])return t[e];for(i=e;i>1;i--)o*=i;return t[e]=o,o}}(),CatmullRom:function(t,e,i,o,r){var n=.5*(i-t),s=.5*(o-e),a=r*r;return(2*e-2*i+n+s)*(r*a)+(-3*e+3*i-2*n-s)*a+n*r+e}}},Tween=function(t){this.setProperties(t)},staticAccessors={Easing:{configurable:!0},Interpolation:{configurable:!0}};Tween.prototype.onResetEvent=function(t){this.setProperties(t)},Tween.prototype.setProperties=function(t){for(var e in this._object=t,this._valuesStart={},this._valuesEnd={},this._valuesStartRepeat={},this._duration=1e3,this._repeat=0,this._yoyo=!1,this._reversed=!1,this._delayTime=0,this._startTime=null,this._easingFunction=Easing.Linear.None,this._interpolationFunction=Interpolation.Linear,this._chainedTweens=[],this._onStartCallback=null,this._onStartCallbackFired=!1,this._onUpdateCallback=null,this._onCompleteCallback=null,this._tweenTimeTracker=lastUpdate,this.isPersistent=!1,this.updateWhenPaused=!1,this.isRenderable=!1,t)"object"!=typeof t&&(this._valuesStart[e]=parseFloat(t[e]))},Tween.prototype._resumeCallback=function(t){this._startTime&&(this._startTime+=t)},Tween.prototype.onActivateEvent=function(){on(STATE_RESUME,this._resumeCallback,this)},Tween.prototype.onDeactivateEvent=function(){off(STATE_RESUME,this._resumeCallback)},Tween.prototype.to=function(t,e){return this._valuesEnd=t,void 0!==e&&("number"==typeof e?this._duration=e:"object"==typeof e&&(e.duration&&(this._duration=e.duration),e.yoyo&&this.yoyo(e.yoyo),e.easing&&this.easing(e.easing),e.repeat&&this.repeat(e.repeat),e.delay&&this.delay(e.delay),e.interpolation&&this.interpolation(e.interpolation),e.autoStart&&this.start())),this},Tween.prototype.start=function(t){for(var e in void 0===t&&(t=timer$1.getTime()),this._onStartCallbackFired=!1,world.addChild(this),this._startTime=t+this._delayTime,this._valuesEnd){if(this._valuesEnd[e]instanceof Array){if(0===this._valuesEnd[e].length)continue;this._valuesEnd[e]=[this._object[e]].concat(this._valuesEnd[e])}this._valuesStart[e]=this._object[e],this._valuesStart[e]instanceof Array==!1&&(this._valuesStart[e]*=1),this._valuesStartRepeat[e]=this._valuesStart[e]||0}return this},Tween.prototype.stop=function(){return world.removeChildNow(this),this},Tween.prototype.delay=function(t){return this._delayTime=t,this},Tween.prototype.repeat=function(t){return this._repeat=t,this},Tween.prototype.yoyo=function(t){return this._yoyo=t,this},Tween.prototype.easing=function(t){if("function"!=typeof t)throw new Error("invalid easing function for me.Tween.easing()");return this._easingFunction=t,this},Tween.prototype.interpolation=function(t){return this._interpolationFunction=t,this},Tween.prototype.chain=function(){return this._chainedTweens=arguments,this},Tween.prototype.onStart=function(t){return this._onStartCallback=t,this},Tween.prototype.onUpdate=function(t){return this._onUpdateCallback=t,this},Tween.prototype.onComplete=function(t){return this._onCompleteCallback=t,this},Tween.prototype.update=function(t){this._tweenTimeTracker=lastUpdate>this._tweenTimeTracker?lastUpdate:this._tweenTimeTracker+t;var e,i=this._tweenTimeTracker;if(i<this._startTime)return!0;!1===this._onStartCallbackFired&&(null!==this._onStartCallback&&this._onStartCallback.call(this._object),this._onStartCallbackFired=!0);var o=(i-this._startTime)/this._duration;o=o>1?1:o;var r=this._easingFunction(o);for(e in this._valuesEnd){var n=this._valuesStart[e]||0,s=this._valuesEnd[e];s instanceof Array?this._object[e]=this._interpolationFunction(s,r):("string"==typeof s&&(s=n+parseFloat(s)),"number"==typeof s&&(this._object[e]=n+(s-n)*r))}if(null!==this._onUpdateCallback&&this._onUpdateCallback.call(this._object,r),1===o){if(this._repeat>0){for(e in isFinite(this._repeat)&&this._repeat--,this._valuesStartRepeat){if("string"==typeof this._valuesEnd[e]&&(this._valuesStartRepeat[e]=this._valuesStartRepeat[e]+parseFloat(this._valuesEnd[e])),this._yoyo){var a=this._valuesStartRepeat[e];this._valuesStartRepeat[e]=this._valuesEnd[e],this._valuesEnd[e]=a}this._valuesStart[e]=this._valuesStartRepeat[e]}return this._yoyo&&(this._reversed=!this._reversed),this._startTime=i+this._delayTime,!0}world.removeChildNow(this),null!==this._onCompleteCallback&&this._onCompleteCallback.call(this._object);for(var h=0,l=this._chainedTweens.length;h<l;h++)this._chainedTweens[h].start(i);return!1}return!0},staticAccessors.Easing.get=function(){return Easing},staticAccessors.Interpolation.get=function(){return Interpolation},Object.defineProperties(Tween,staticAccessors);var runits=["ex","em","pt","px"],toPX=[12,24,.75,1],setContextStyle=function(t,e,i){void 0===i&&(i=!1),t.font=e.font,t.fillStyle=e.fillStyle.toRGBA(),!0===i&&(t.strokeStyle=e.strokeStyle.toRGBA(),t.lineWidth=e.lineWidth),t.textAlign=e.textAlign,t.textBaseline=e.textBaseline},Text=function(t){function e(e,i,o){t.call(this,e,i,o.width||0,o.height||0),this.onResetEvent(e,i,o)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onResetEvent=function(t,e,i){void 0!==i.fillStyle?i.fillStyle instanceof Color?this.fillStyle=i.fillStyle:this.fillStyle=pool.pull("Color").parseCSS(i.fillStyle):this.fillStyle=pool.pull("Color",0,0,0),void 0!==i.strokeStyle?i.strokeStyle instanceof Color?this.strokeStyle=i.strokeStyle:this.strokeStyle=pool.pull("Color").parseCSS(i.strokeStyle):this.strokeStyle=pool.pull("Color",0,0,0),this.lineWidth=i.lineWidth||1,this.textAlign=i.textAlign||"left",this.textBaseline=i.textBaseline||"top",this.lineHeight=i.lineHeight||1,this.offScreenCanvas=!1,this._text=[],this.fontSize=10,void 0!==i.anchorPoint?this.anchorPoint.setV(i.anchorPoint):this.anchorPoint.set(0,0),void 0!==i.floating&&(this.floating=!!i.floating),this.setFont(i.font,i.size),!0===i.bold&&this.bold(),!0===i.italic&&this.italic(),!0===i.offScreenCanvas&&(this.offScreenCanvas=!0,this.canvas=createCanvas(2,2,!0),this.context=this.canvas.getContext("2d")),this.setText(i.text),this.update(0)},e.prototype.onDeactivateEvent=function(){!0===this.offScreenCanvas&&(renderer.currentCompositor.deleteTexture2D(renderer.currentCompositor.getTexture2D(this.glTextureUnit)),renderer.cache.delete(this.canvas),this.canvas.width=this.canvas.height=0,this.context=void 0,this.canvas=void 0,this.glTextureUnit=void 0)},e.prototype.bold=function(){return this.font="bold "+this.font,this.isDirty=!0,this},e.prototype.italic=function(){return this.font="italic "+this.font,this.isDirty=!0,this},e.prototype.setFont=function(t,e){var i=t.split(",").map((function(t){return t=t.trim(),/(^".*"$)|(^'.*'$)/.test(t)?t:'"'+t+'"'}));if("number"==typeof e)this.fontSize=e,e+="px";else{var o=e.match(/([-+]?[\d.]*)(.*)/);this.fontSize=parseFloat(o[1]),o[2]?this.fontSize*=toPX[runits.indexOf(o[2])]:e+="px"}return this.height=this.fontSize,this.font=e+" "+i.join(","),this.isDirty=!0,this},e.prototype.setText=function(t){return void 0===t&&(t=""),this._text.toString()!==t.toString()&&(Array.isArray(t)?this._text=t:this._text=(""+t).split("\n"),this.isDirty=!0),this},e.prototype.measureText=function(t,e,i){var o,r=i||this.getBounds(),n=this.fontSize*this.lineHeight,s=void 0!==e?(""+e).split("\n"):this._text;(o=!0===this.offScreenCanvas?this.context:t.getFontContext()).save(),setContextStyle(o,this),this.height=this.width=0;for(var a=0;a<s.length;a++)this.width=Math.max(o.measureText(trimRight(""+s[a])).width,this.width),this.height+=n;return r.width=Math.ceil(this.width),r.height=Math.ceil(this.height),r.x=Math.floor("right"===this.textAlign?this.pos.x-this.width:"center"===this.textAlign?this.pos.x-this.width/2:this.pos.x),r.y=Math.floor(0===this.textBaseline.search(/^(top|hanging)$/)?this.pos.y:"middle"===this.textBaseline?this.pos.y-r.height/2:this.pos.y-r.height),o.restore(),r},e.prototype.update=function(){if(!0===this.isDirty){var t=this.measureText(renderer);if(!0===this.offScreenCanvas){var e=Math.round(t.width),i=Math.round(t.height);renderer instanceof WebGLRenderer&&(this.glTextureUnit=renderer.cache.getUnit(renderer.cache.get(this.canvas)),renderer.currentCompositor.unbindTexture2D(null,this.glTextureUnit),1===renderer.WebGLVersion&&(e=nextPowerOfTwo(t.width),i=nextPowerOfTwo(t.height))),this.canvas.width<e||this.canvas.height<i?(this.canvas.width=e,this.canvas.height=i):this.context.clearRect(0,0,this.canvas.width,this.canvas.height),this._drawFont(this.context,this._text,this.pos.x-t.x,this.pos.y-t.y,!1)}}return this.isDirty},e.prototype.draw=function(t,e,i,o,r){void 0===this.ancestor?(this.setText(e),this.pos.x===i&&this.pos.y===o||(this.pos.x=i,this.pos.y=o,this.isDirty=!0),this.update(0),t.save(),t.setGlobalAlpha(t.globalAlpha()*this.getOpacity())):(i=this.pos.x,o=this.pos.y),!1===t.settings.subPixel&&(i=~~i,o=~~o),!0===this.offScreenCanvas?t.drawImage(this.canvas,this.getBounds().x,this.getBounds().y):t.drawFont(this._drawFont(t.getFontContext(),this._text,i,o,r)),void 0===this.ancestor&&t.restore(),this.isDirty=!1},e.prototype.drawStroke=function(t,e,i,o){this.draw(t,e,i,o,!0)},e.prototype._drawFont=function(t,e,i,o,r){void 0===r&&(r=!1),setContextStyle(t,this,r);for(var n=this.fontSize*this.lineHeight,s=0;s<e.length;s++){var a=trimRight(""+e[s]);t[r?"strokeText":"fillText"](a,i,o),o+=n}return this.getBounds()},e.prototype.destroy=function(){pool.push(this.fillStyle),pool.push(this.strokeStyle),this.fillStyle=this.strokeStyle=void 0,this._text.length=0,t.prototype.destroy.call(this)},e}(Renderable),measureTextWidth=function(t,e){for(var i=e.split(""),o=0,r=null,n=0;n<i.length;n++){var s=i[n].charCodeAt(0),a=t.fontData.glyphs[s],h=r&&r.kerning?r.getKerning(s):0;o+=(a.xadvance+h)*t.fontScale.x,r=a}return o},measureTextHeight=function(t){return t.fontData.capHeight*t.lineHeight*t.fontScale.y},BitmapText=function(t){function e(e,i,o){t.call(this,e,i,o.width||0,o.height||0),this.textAlign=o.textAlign||"left",this.textBaseline=o.textBaseline||"top",this.lineHeight=o.lineHeight||1,this._text=[],this.fontScale=pool.pull("Vector2d",1,1),this.fontImage="object"==typeof o.font?o.font:loader.getImage(o.font),"string"!=typeof o.fontData?this.fontData=pool.pull("BitmapTextData",loader.getBinary(o.font)):this.fontData=pool.pull("BitmapTextData",o.fontData.includes("info face")?o.fontData:loader.getBinary(o.fontData)),void 0!==o.floating&&(this.floating=!!o.floating),"number"==typeof o.size&&1!==o.size&&this.resize(o.size),void 0!==o.fillStyle&&(o.fillStyle instanceof Color?this.fillStyle.setColor(o.fillStyle):this.fillStyle.parseCSS(o.fillStyle)),void 0!==o.anchorPoint?this.anchorPoint.set(o.anchorPoint.x,o.anchorPoint.y):this.anchorPoint.set(0,0),this.setText(o.text)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={fillStyle:{configurable:!0}};return e.prototype.set=function(t,e){return this.textAlign=t,e&&this.resize(e),this.isDirty=!0,this},e.prototype.setText=function(t){return void 0===t&&(t=""),this._text.toString()!==t.toString()&&(Array.isArray(t)?this._text=t:this._text=(""+t).split("\n"),this.isDirty=!0),this},i.fillStyle.get=function(){return this.tint},i.fillStyle.set=function(t){this.tint=t},e.prototype.resize=function(t){return this.fontScale.set(t,t),this.isDirty=!0,this},e.prototype.measureText=function(t,e){t=t||this._text;var i=measureTextHeight(this),o=e||this.getBounds(),r="string"==typeof t?(""+t).split("\n"):t;o.height=o.width=0;for(var n=0;n<r.length;n++)o.width=Math.max(measureTextWidth(this,r[n]),o.width),o.height+=i;return o},e.prototype.update=function(){return!0===this.isDirty&&this.measureText(),this.isDirty},e.prototype.draw=function(t,e,i,o){var r=t.globalAlpha();void 0===this.ancestor?(this.setText(e),this.update(0),t.setGlobalAlpha(r*this.getOpacity())):(i=this.pos.x,o=this.pos.y);for(var n=i,s=measureTextHeight(this),a=0,h=0;h<this._text.length;h++){i=n;var l=trimRight(this._text[h]),c=measureTextWidth(this,l);switch(this.textAlign){case"right":i-=c;break;case"center":i-=.5*c}switch(this.textBaseline){case"middle":o-=.5*s;break;case"ideographic":case"alphabetic":case"bottom":o-=s}!0===this.isDirty&&void 0===this.ancestor&&(0===h&&(this.pos.y=o),a<c&&(a=c,this.pos.x=i));for(var u=null,d=0,p=l.length;d<p;d++){var f=l.charCodeAt(d),y=this.fontData.glyphs[f],g=y.width,v=y.height,m=u&&u.kerning?u.getKerning(f):0;0!==g&&0!==v&&t.drawImage(this.fontImage,y.x,y.y,g,v,i+y.xoffset,o+y.yoffset*this.fontScale.y,g*this.fontScale.x,v*this.fontScale.y),i+=(y.xadvance+m)*this.fontScale.x,u=y}o+=s}void 0===this.ancestor&&t.setGlobalAlpha(r),this.isDirty=!1},e.prototype.destroy=function(){pool.push(this.fontScale),this.fontScale=void 0,pool.push(this.fontData),this.fontData=void 0,this._text.length=0,t.prototype.destroy.call(this)},Object.defineProperties(e.prototype,i),e}(Renderable),LOG2_PAGE_SIZE=9,PAGE_SIZE=1<<LOG2_PAGE_SIZE,Glyph=function(){this.id=0,this.x=0,this.y=0,this.width=0,this.height=0,this.u=0,this.v=0,this.u2=0,this.v2=0,this.xoffset=0,this.yoffset=0,this.xadvance=0,this.fixedWidth=!1};Glyph.prototype.getKerning=function(t){if(this.kerning){var e=this.kerning[t>>>LOG2_PAGE_SIZE];if(e)return e[t&PAGE_SIZE-1]||0}return 0},Glyph.prototype.setKerning=function(t,e){this.kerning||(this.kerning={});var i=this.kerning[t>>>LOG2_PAGE_SIZE];void 0===i&&(this.kerning[t>>>LOG2_PAGE_SIZE]={},i=this.kerning[t>>>LOG2_PAGE_SIZE]),i[t&PAGE_SIZE-1]=e};var capChars=["M","N","B","D","C","E","F","K","A","G","H","I","J","L","O","P","Q","R","S","T","U","V","W","X","Y","Z"];function getValueFromPair(t,e){var i=t.match(e);if(!i)throw new Error("Could not find pattern "+e+" in string: "+t);return i[0].split("=")[1]}function getFirstGlyph(t){for(var e=Object.keys(t),i=0;i<e.length;i++)if(e[i]>32)return t[e[i]];return null}function createSpaceGlyph(t){var e=" ".charCodeAt(0),i=t[e];i||((i=new Glyph).id=e,i.xadvance=getFirstGlyph(t).xadvance,t[e]=i)}var BitmapTextData=function(){for(var t,e=[],i=arguments.length;i--;)e[i]=arguments[i];(t=this).onResetEvent.apply(t,e)};BitmapTextData.prototype.onResetEvent=function(t){this.padTop=0,this.padRight=0,this.padBottom=0,this.padLeft=0,this.lineHeight=0,this.capHeight=1,this.descent=0,this.glyphs={},this.parse(t)},BitmapTextData.prototype.parse=function(t){if(!t)throw new Error("File containing font data was empty, cannot load the bitmap font.");var e=t.split(/\r\n|\n/),i=t.match(/padding\=\d+,\d+,\d+,\d+/g);if(!i)throw new Error("Padding not found in first line");var o=i[0].split("=")[1].split(",");this.padTop=parseFloat(o[0]),this.padLeft=parseFloat(o[1]),this.padBottom=parseFloat(o[2]),this.padRight=parseFloat(o[3]),this.lineHeight=parseFloat(getValueFromPair(e[1],/lineHeight\=\d+/g));var r,n=parseFloat(getValueFromPair(e[1],/base\=\d+/g)),s=this.padTop+this.padBottom,a=null;for(r=4;r<e.length;r++){var h=e[r],l=h.split(/=|\s+/);if(h&&!/^kernings/.test(h))if(/^kerning\s/.test(h)){var c=parseFloat(l[2]),u=parseFloat(l[4]),d=parseFloat(l[6]);null!=(a=this.glyphs[c])&&a.setKerning(u,d)}else{a=new Glyph;var p=parseFloat(l[2]);a.id=p,a.x=parseFloat(l[4]),a.y=parseFloat(l[6]),a.width=parseFloat(l[8]),a.height=parseFloat(l[10]),a.xoffset=parseFloat(l[12]),a.yoffset=parseFloat(l[14]),a.xadvance=parseFloat(l[16]),a.width>0&&a.height>0&&(this.descent=Math.min(n+a.yoffset,this.descent)),this.glyphs[p]=a}}this.descent+=this.padBottom,createSpaceGlyph(this.glyphs);var f=null;for(r=0;r<capChars.length;r++){var y=capChars[r];if(f=this.glyphs[y.charCodeAt(0)])break}if(f)this.capHeight=f.height;else for(var g in this.glyphs)if(this.glyphs.hasOwnProperty(g)){if(0===(a=this.glyphs[g]).height||0===a.width)continue;this.capHeight=Math.max(this.capHeight,a.height)}this.capHeight-=s};var ImageLayer=function(t){function e(e,i,o){t.call(this,e,i,o),this.floating=!0,this.offset.set(e,i),this.ratio=pool.pull("Vector2d",1,1),void 0!==o.ratio&&(isNumeric(o.ratio)?this.ratio.set(o.ratio,+o.ratio):this.ratio.setV(o.ratio)),void 0===o.anchorPoint?this.anchorPoint.set(0,0):"number"==typeof o.anchorPoint?this.anchorPoint.set(o.anchorPoint,o.anchorPoint):this.anchorPoint.setV(o.anchorPoint),this.repeat=o.repeat||"repeat",on(WEBGL_ONCONTEXT_RESTORED,this.createPattern,this)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={repeat:{configurable:!0}};return i.repeat.get=function(){return this._repeat},i.repeat.set=function(t){switch(this._repeat=t,this._repeat){case"no-repeat":this.repeatX=!1,this.repeatY=!1;break;case"repeat-x":this.repeatX=!0,this.repeatY=!1;break;case"repeat-y":this.repeatX=!1,this.repeatY=!0;break;default:this.repeatX=!0,this.repeatY=!0}this.resize(viewport.width,viewport.height),this.createPattern()},e.prototype.onActivateEvent=function(){var t=this;on(VIEWPORT_ONCHANGE,this.updateLayer,this),on(VIEWPORT_ONRESIZE,this.resize,this),once(LEVEL_LOADED,(function(){t.updateLayer(viewport.pos)})),!0!==this.ancestor.root&&this.updateLayer(viewport.pos)},e.prototype.resize=function(e,i){t.prototype.resize.call(this,this.repeatX?1/0:e,this.repeatY?1/0:i)},e.prototype.createPattern=function(){this._pattern=renderer.createPattern(this.image,this._repeat)},e.prototype.updateLayer=function(t){var e=this.ratio.x,i=this.ratio.y;if(0!==e||0!==i){var o=this.width,r=this.height,n=viewport.bounds.width,s=viewport.bounds.height,a=this.anchorPoint.x,h=this.anchorPoint.y,l=a*(e-1)*(n-viewport.width)+this.offset.x-e*t.x,c=h*(i-1)*(s-viewport.height)+this.offset.y-i*t.y;this.repeatX?this.pos.x=l%o:this.pos.x=l,this.repeatY?this.pos.y=c%r:this.pos.y=c,this.isDirty=!0}},e.prototype.preDraw=function(t){t.save(),t.setGlobalAlpha(t.globalAlpha()*this.getOpacity()),t.setTint(this.tint)},e.prototype.draw=function(t){var e=this.width,i=this.height,o=viewport.bounds.width,r=viewport.bounds.height,n=this.anchorPoint.x,s=this.anchorPoint.y,a=this.pos.x,h=this.pos.y;0===this.ratio.x&&0===this.ratio.y&&(a+=n*(o-e),h+=s*(r-i)),t.translate(a,h),t.drawPattern(this._pattern,0,0,2*viewport.width,2*viewport.height)},e.prototype.onDeactivateEvent=function(){off(VIEWPORT_ONCHANGE,this.updateLayer),off(VIEWPORT_ONRESIZE,this.resize)},e.prototype.destroy=function(){pool.push(this.ratio),this.ratio=void 0,off(WEBGL_ONCONTEXT_RESTORED,this.createPattern),t.prototype.destroy.call(this)},Object.defineProperties(e.prototype,i),e}(Sprite),NineSliceSprite=function(t){function e(e,i,o){if(t.call(this,e,i,o),"number"!=typeof o.width||"number"!=typeof o.height)throw new Error("height and width properties are mandatory");this.width=o.width,this.height=o.height}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.draw=function(t){var e=this.current,i=this.pos.x,o=this.pos.y,r=e.width,n=e.height,s=e.offset,a=this.offset;0!==e.angle&&(t.translate(-i,-o),t.rotate(e.angle),i-=n,r=e.height,n=e.width);var h=a.x+s.x,l=a.y+s.y,c=e.width/4,u=e.height/4;t.drawImage(this.image,h,l,c,u,i,o,c,u),t.drawImage(this.image,h+r-c,l,c,u,i+this.width-c,o,c,u),t.drawImage(this.image,h,l+n-u,c,u,i,o+this.height-u,c,u),t.drawImage(this.image,h+r-c,l+n-u,c,u,i+this.width-c,o+this.height-u,c,u);var d=r-(c<<1),p=n-(u<<1),f=this.width-(c<<1),y=this.height-(u<<1);t.drawImage(this.image,h+c,l,d,u,i+c,o,f,u),t.drawImage(this.image,h+c,l+n-u,d,u,i+c,o+this.height-u,f,u),t.drawImage(this.image,h,l+u,c,p,i,o+u,c,y),t.drawImage(this.image,h+r-c,l+u,c,p,i+this.width-c,o+u,c,y),t.drawImage(this.image,h+c,l+u,d,p,i+c,o+u,f,y)},e}(Sprite),GUI_Object=function(t){function e(e,i,o){t.call(this,e,i,o),this.isClickable=!0,this.holdThreshold=250,this.isHoldable=!1,this.hover=!1,this.holdTimeout=null,this.released=!0,this.floating=!0,this.isKinematic=!1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clicked=function(t){if(0===t.button&&this.isClickable)return this.dirty=!0,this.released=!1,this.isHoldable&&(null!==this.holdTimeout&&timer$1.clearTimeout(this.holdTimeout),this.holdTimeout=timer$1.setTimeout(this.hold.bind(this),this.holdThreshold,!1),this.released=!1),this.onClick(t)},e.prototype.onClick=function(){return!1},e.prototype.enter=function(t){return this.hover=!0,this.dirty=!0,this.onOver(t)},e.prototype.onOver=function(){},e.prototype.leave=function(t){return this.hover=!1,this.dirty=!0,this.release(t),this.onOut(t)},e.prototype.onOut=function(){},e.prototype.release=function(t){if(!1===this.released)return this.released=!0,this.dirty=!0,timer$1.clearTimeout(this.holdTimeout),this.onRelease(t)},e.prototype.onRelease=function(){return!1},e.prototype.hold=function(){timer$1.clearTimeout(this.holdTimeout),this.dirty=!0,this.released||this.onHold()},e.prototype.onHold=function(){},e.prototype.onActivateEvent=function(){registerPointerEvent("pointerdown",this,this.clicked.bind(this)),registerPointerEvent("pointerup",this,this.release.bind(this)),registerPointerEvent("pointercancel",this,this.release.bind(this)),registerPointerEvent("pointerenter",this,this.enter.bind(this)),registerPointerEvent("pointerleave",this,this.leave.bind(this))},e.prototype.onDeactivateEvent=function(){releasePointerEvent("pointerdown",this),releasePointerEvent("pointerup",this),releasePointerEvent("pointercancel",this),releasePointerEvent("pointerenter",this),releasePointerEvent("pointerleave",this),timer$1.clearTimeout(this.holdTimeout)},e}(Sprite),Collectable=function(t){function e(e,i,o){t.call(this,e,i,o),this.name=o.name,this.type=o.type,this.id=o.id,this.body=new Body(this,o.shapes||new Rect(0,0,this.width,this.height)),this.body.collisionType=collision.types.COLLECTABLE_OBJECT,this.body.setCollisionMask(collision.types.PLAYER_OBJECT),this.body.setStatic(!0),o.anchorPoint?this.anchorPoint.set(o.anchorPoint.x,o.anchorPoint.y):this.anchorPoint.set(0,0)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(Sprite),Trigger=function(t){function e(e,i,o){t.call(this,e,i,o.width||0,o.height||0),this.anchorPoint.set(0,0),this.fade=o.fade,this.duration=o.duration,this.fading=!1,this.name="Trigger",this.type=o.type,this.id=o.id,this.gotolevel=o.to,this.triggerSettings={event:"level"},["type","container","onLoaded","flatten","setViewportBounds","to"].forEach(function(t){void 0!==o[t]&&(this.triggerSettings[t]=o[t])}.bind(this)),this.body=new Body(this,o.shapes||new Rect(0,0,this.width,this.height)),this.body.collisionType=collision.types.ACTION_OBJECT,this.body.setCollisionMask(collision.types.PLAYER_OBJECT),this.body.setStatic(!0),this.resize(this.body.getBounds().width,this.body.getBounds().height)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getTriggerSettings=function(){return"string"==typeof this.triggerSettings.container&&(this.triggerSettings.container=world.getChildByName(this.triggerSettings.container)[0]),this.triggerSettings},e.prototype.onFadeComplete=function(){level.load(this.gotolevel,this.getTriggerSettings()),viewport.fadeOut(this.fade,this.duration)},e.prototype.triggerEvent=function(){var t=this.getTriggerSettings();if("level"!==t.event)throw new Error("Trigger invalid type");this.gotolevel=t.to,this.fade&&this.duration?this.fading||(this.fading=!0,viewport.fadeIn(this.fade,this.duration,this.onFadeComplete.bind(this))):level.load(this.gotolevel,t)},e.prototype.onCollision=function(){return"Trigger"===this.name&&this.triggerEvent.apply(this),!1},e}(Renderable),ParticleContainer=function(t){function e(e){t.call(this,viewport.pos.x,viewport.pos.y,viewport.width,viewport.height),this.autoSort=!1,this._updateCount=0,this._dt=0,this._emitter=e,this.autoTransform=!1,this.anchorPoint.set(0,0),this.isKinematic=!0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.update=function(t){if(++this._updateCount>this._emitter.framesToSkip&&(this._updateCount=0),this._updateCount>0)return this._dt+=t,!1;t+=this._dt,this._dt=0;for(var e=this.children.length-1;e>=0;--e){var i=this.children[e];i.inViewport=viewport.isVisible(i,this.floating),i.update(t)||this.removeChildNow(i)}return!0},e.prototype.draw=function(e,i){if(this.children.length>0){var o,r=e.getContext();this._emitter.textureAdditive&&(o=r.globalCompositeOperation,r.globalCompositeOperation="lighter"),t.prototype.draw.call(this,e,i),this._emitter.textureAdditive&&(r.globalCompositeOperation=o)}},e}(Container),pixel=(canvas=createCanvas(1,1),context=canvas.getContext("2d"),context.fillStyle="#fff",context.fillRect(0,0,1,1),canvas),canvas,context,ParticleEmitterSettings={width:0,height:0,image:pixel,totalParticles:50,angle:Math.PI/2,angleVariation:0,minLife:1e3,maxLife:3e3,speed:2,speedVariation:1,minRotation:0,maxRotation:0,minStartScale:1,maxStartScale:1,minEndScale:0,maxEndScale:0,gravity:0,wind:0,followTrajectory:!1,textureAdditive:!1,onlyInViewport:!0,floating:!1,maxParticles:10,frequency:100,duration:1/0,framesToSkip:0},ParticleEmitter=function(t){function e(e,i,o){t.call(this,e,i,1/0,1/0),this._stream=!1,this._frequencyTimer=0,this._durationTimer=0,this._enabled=!1,this.alwaysUpdate=!0,this.autoSort=!1,this.container=new ParticleContainer(this),this.reset(o)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={z:{configurable:!0},floating:{configurable:!0}};return i.z.get=function(){return this.container.pos.z},i.z.set=function(t){this.container.pos.z=t},i.floating.get=function(){return this.container.floating},i.floating.set=function(t){this.container.floating=t},e.prototype.onActivateEvent=function(){this.ancestor.addChild(this.container),this.container.pos.z=this.pos.z,this.ancestor.autoSort||this.ancestor.sort()},e.prototype.onDeactivateEvent=function(){this.ancestor.hasChild(this.container)&&this.ancestor.removeChildNow(this.container)},e.prototype.destroy=function(){this.reset()},e.prototype.getRandomPointX=function(){return this.pos.x+randomFloat(0,this.width)},e.prototype.getRandomPointY=function(){return this.pos.y+randomFloat(0,this.height)},e.prototype.reset=function(t){var e=ParticleEmitterSettings,i="number"==typeof(t=t||{}).width?t.width:e.width,o="number"==typeof t.height?t.height:e.height;this.resize(i,o),Object.assign(this,e,t),this.container.reset()},e.prototype.addParticles=function(t){for(var e=0;e<~~t;e++){var i=pool.pull("Particle",this);this.container.addChild(i)}},e.prototype.isRunning=function(){return this._enabled&&this._stream},e.prototype.streamParticles=function(t){this._enabled=!0,this._stream=!0,this.frequency=Math.max(this.frequency,1),this._durationTimer="number"==typeof t?t:this.duration},e.prototype.stopStream=function(){this._enabled=!1},e.prototype.burstParticles=function(t){this._enabled=!0,this._stream=!1,this.addParticles("number"==typeof t?t:this.totalParticles),this._enabled=!1},e.prototype.update=function(t){if(this._enabled&&this._stream){if(this._durationTimer!==1/0&&(this._durationTimer-=t,this._durationTimer<=0))return this.stopStream(),!1;this._frequencyTimer+=t;var e=this.container.children.length;e<this.totalParticles&&this._frequencyTimer>=this.frequency&&(e+this.maxParticles<=this.totalParticles?this.addParticles(this.maxParticles):this.addParticles(this.totalParticles-e),this._frequencyTimer=0)}return!0},Object.defineProperties(e.prototype,i),e}(Renderable),Particle=function(t){function e(e){t.call(this,e.getRandomPointX(),e.getRandomPointY(),e.image.width,e.image.height),this.vel=new Vector2d,this.onResetEvent(e,!0)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.onResetEvent=function(e,i){void 0===i&&(i=!1),!1===i&&t.prototype.onResetEvent.call(this,e.getRandomPointX(),e.getRandomPointY(),e.image.width,e.image.height),this.alwaysUpdate=!0,this.image=e.image;var o=e.angle+(e.angleVariation>0?(randomFloat(0,2)-1)*e.angleVariation:0),r=e.speed+(e.speedVariation>0?(randomFloat(0,2)-1)*e.speedVariation:0);this.vel.set(r*Math.cos(o),-r*Math.sin(o)),this.life=randomFloat(e.minLife,e.maxLife),this.startLife=this.life,this.startScale=clamp(randomFloat(e.minStartScale,e.maxStartScale),e.minStartScale,e.maxStartScale),this.endScale=clamp(randomFloat(e.minEndScale,e.maxEndScale),e.minEndScale,e.maxEndScale),this.gravity=e.gravity,this.wind=e.wind,this.followTrajectory=e.followTrajectory,this.onlyInViewport=e.onlyInViewport,this.pos.z=e.z,this._deltaInv=timer$1.maxfps/1e3,e.followTrajectory||(this.angle=randomFloat(e.minRotation,e.maxRotation))},e.prototype.update=function(t){var e=t*this._deltaInv;this.life=this.life>t?this.life-t:0;var i=this.life/this.startLife,o=this.startScale;this.startScale>this.endScale?o=(o*=i)<this.endScale?this.endScale:o:this.startScale<this.endScale&&(o=(o/=i)>this.endScale?this.endScale:o),this.alpha=i,this.vel.x+=this.wind*e,this.vel.y+=this.gravity*e;var r=this.followTrajectory?Math.atan2(this.vel.y,this.vel.x):this.angle;return this.pos.x+=this.vel.x*e,this.pos.y+=this.vel.y*e,this.currentTransform.setTransform(o,0,0,0,o,0,this.pos.x,this.pos.y,1).rotate(r),(this.inViewport||!this.onlyInViewport)&&this.life>0},e.prototype.preDraw=function(t){t.save(),t.setGlobalAlpha(t.globalAlpha()*this.alpha),t.transform(this.currentTransform)},e.prototype.draw=function(t){var e=this.width,i=this.height;t.drawImage(this.image,0,0,e,i,-e/2,-i/2,e,i)},e}(Renderable),Entity=function(t){function e(e,i,o){if("number"!=typeof o.width||"number"!=typeof o.height)throw new Error("height and width properties are mandatory when passing settings parameters to an object entity");t.call(this,e,i,o.width,o.height),this.children=[],o.image&&(o.framewidth=o.framewidth||o.width,o.frameheight=o.frameheight||o.height,this.renderable=new Sprite(0,0,o)),o.anchorPoint?this.anchorPoint.set(o.anchorPoint.x,o.anchorPoint.y):this.anchorPoint.set(0,0),"string"==typeof o.name&&(this.name=o.name),this.type=o.type||"",this.id=o.id||"",this.alive=!0,void 0===o.shapes&&(o.shapes=new Polygon(0,0,[new Vector2d(0,0),new Vector2d(this.width,0),new Vector2d(this.width,this.height),new Vector2d(0,this.height)])),this.body=new Body(this,o.shapes,this.onBodyUpdate.bind(this)),0===this.width&&0===this.height&&this.resize(this.body.getBounds().width,this.body.getBounds().height),this.body.setCollisionMask(o.collisionMask),this.body.setCollisionType(o.collisionType),this.autoTransform=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={renderable:{configurable:!0}};return i.renderable.get=function(){return this.children[0]},i.renderable.set=function(e){if(!(e instanceof t))throw new Error(e+"should extend me.Renderable");this.children[0]=e,this.children[0].ancestor=this},e.prototype.update=function(e){return this.renderable&&(this.isDirty|=this.renderable.update(e)),t.prototype.update.call(this,e)},e.prototype.onBodyUpdate=function(t){this.getBounds().addBounds(t.getBounds(),!0),this.updateBoundsPos(this.pos.x,this.pos.y)},e.prototype.preDraw=function(e){e.save(),e.translate(this.pos.x+this.body.getBounds().x,this.pos.y+this.body.getBounds().y),this.renderable instanceof t&&e.translate(this.anchorPoint.x*this.body.getBounds().width,this.anchorPoint.y*this.body.getBounds().height)},e.prototype.draw=function(e,i){var o=this.renderable;o instanceof t&&(o.preDraw(e),o.draw(e,i),o.postDraw(e))},e.prototype.destroy=function(){this.renderable&&(this.renderable.destroy.apply(this.renderable,arguments),this.children.splice(0,1)),t.prototype.destroy.call(this,arguments)},e.prototype.onDeactivateEvent=function(){this.renderable&&this.renderable.onDeactivateEvent&&this.renderable.onDeactivateEvent()},Object.defineProperties(e.prototype,i),e}(Renderable),DraggableEntity=function(t){function e(e,i,o){t.call(this,e,i,o),this.dragging=!1,this.dragId=null,this.grabOffset=new Vector2d(0,0),this.onPointerEvent=registerPointerEvent,this.removePointerEvent=releasePointerEvent,this.initEvents()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.initEvents=function(){this.mouseDown=function(t){this.translatePointerEvent(t,DRAGSTART)},this.mouseUp=function(t){this.translatePointerEvent(t,DRAGEND)},this.onPointerEvent("pointerdown",this,this.mouseDown.bind(this)),this.onPointerEvent("pointerup",this,this.mouseUp.bind(this)),this.onPointerEvent("pointercancel",this,this.mouseUp.bind(this)),on(POINTERMOVE,this.dragMove,this),on(DRAGSTART,this.dragStart,this),on(DRAGEND,this.dragEnd,this)},e.prototype.translatePointerEvent=function(t,e){emit(e,t)},e.prototype.dragStart=function(t){if(!1===this.dragging)return this.dragging=!0,this.grabOffset.set(t.gameX,t.gameY),this.grabOffset.sub(this.pos),!1},e.prototype.dragMove=function(t){!0===this.dragging&&(this.pos.set(t.gameX,t.gameY,this.pos.z),this.pos.sub(this.grabOffset))},e.prototype.dragEnd=function(){if(!0===this.dragging)return this.dragging=!1,!1},e.prototype.destroy=function(){off(POINTERMOVE,this.dragMove),off(DRAGSTART,this.dragStart),off(DRAGEND,this.dragEnd),this.removePointerEvent("pointerdown",this),this.removePointerEvent("pointerup",this)},e}(Entity),DroptargetEntity=function(t){function e(e,i,o){t.call(this,e,i,o),this.CHECKMETHOD_OVERLAP="overlaps",this.CHECKMETHOD_CONTAINS="contains",this.checkMethod=null,on(DRAGEND,this.checkOnMe,this),this.checkMethod=this[this.CHECKMETHOD_OVERLAP]}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setCheckMethod=function(t){void 0!==this[t]&&(this.checkMethod=this[t])},e.prototype.checkOnMe=function(t,e){e&&this.checkMethod(e.getBounds())&&this.drop(e)},e.prototype.drop=function(){},e.prototype.destroy=function(){off(DRAGEND,this.checkOnMe)},e}(Entity);function warning(t,e,i){var o="melonJS: %s is deprecated since version %s, please use %s",r=(new Error).stack;console.groupCollapsed?console.groupCollapsed("%c"+o,"font-weight:normal;color:yellow;",t,i,e):console.warn(o,t,i,e),void 0!==r&&console.warn(r),console.groupCollapsed&&console.groupEnd()}device$1.turnOnPointerLock=function(){return warning("me.device.turnOnPointerLock()","me.input.requestPointerLock()","10.3.0"),requestPointerLock()},device$1.turnOffPointerLock=function(){return warning("me.device.turnOffPointerLock()","me.input.exitPointerLock()","10.3.0"),exitPointerLock()};var deprecated=Object.freeze({__proto__:null,warning:warning}),version="10.3.0";exports.initialized=!1;var skipAutoInit=!1;function boot(){!0!==exports.initialized&&(pool.register("me.Entity",Entity),pool.register("me.Collectable",Collectable),pool.register("me.Trigger",Trigger),pool.register("me.Tween",Tween,!0),pool.register("me.Color",Color,!0),pool.register("me.Particle",Particle,!0),pool.register("me.Sprite",Sprite),pool.register("me.NineSliceSprite",NineSliceSprite),pool.register("me.Renderable",Renderable),pool.register("me.Text",Text,!0),pool.register("me.BitmapText",BitmapText),pool.register("me.BitmapTextData",BitmapTextData,!0),pool.register("me.ImageLayer",ImageLayer),pool.register("me.ColorLayer",ColorLayer,!0),pool.register("me.Vector2d",Vector2d,!0),pool.register("me.Vector3d",Vector3d,!0),pool.register("me.ObservableVector2d",ObservableVector2d,!0),pool.register("me.ObservableVector3d",ObservableVector3d,!0),pool.register("me.Matrix2d",Matrix2d,!0),pool.register("me.Matrix3d",Matrix3d,!0),pool.register("me.Rect",Rect,!0),pool.register("me.Polygon",Polygon,!0),pool.register("me.Line",Line,!0),pool.register("me.Ellipse",Ellipse,!0),pool.register("me.Bounds",Bounds$1,!0),pool.register("Entity",Entity),pool.register("Collectable",Collectable),pool.register("Trigger",Trigger),pool.register("Tween",Tween,!0),pool.register("Color",Color,!0),pool.register("Particle",Particle,!0),pool.register("Sprite",Sprite),pool.register("NineSliceSprite",NineSliceSprite),pool.register("Renderable",Renderable),pool.register("Text",Text,!0),pool.register("BitmapText",BitmapText),pool.register("BitmapTextData",BitmapTextData,!0),pool.register("ImageLayer",ImageLayer),pool.register("ColorLayer",ColorLayer,!0),pool.register("Vector2d",Vector2d,!0),pool.register("Vector3d",Vector3d,!0),pool.register("ObservableVector2d",ObservableVector2d,!0),pool.register("ObservableVector3d",ObservableVector3d,!0),pool.register("Matrix2d",Matrix2d,!0),pool.register("Matrix3d",Matrix3d,!0),pool.register("Rect",Rect,!0),pool.register("Polygon",Polygon,!0),pool.register("Line",Line,!0),pool.register("Ellipse",Ellipse,!0),pool.register("Bounds",Bounds$1,!0),emit(BOOT),loader.setNocache(utils.getUriFragment().nocache||!1),initKeyboardEvent(),exports.initialized=!0)}device$1.onReady((function(){boot()})),exports.BitmapText=BitmapText,exports.BitmapTextData=BitmapTextData,exports.Body=Body,exports.Bounds=Bounds$1,exports.Camera2d=Camera2d,exports.CanvasRenderer=CanvasRenderer,exports.Collectable=Collectable,exports.Color=Color,exports.ColorLayer=ColorLayer,exports.Container=Container,exports.DraggableEntity=DraggableEntity,exports.DroptargetEntity=DroptargetEntity,exports.Ellipse=Ellipse,exports.Entity=Entity,exports.GLShader=GLShader,exports.GUI_Object=GUI_Object,exports.ImageLayer=ImageLayer,exports.Line=Line,exports.Math=math,exports.Matrix2d=Matrix2d,exports.Matrix3d=Matrix3d,exports.NineSliceSprite=NineSliceSprite,exports.ObservableVector2d=ObservableVector2d,exports.ObservableVector3d=ObservableVector3d,exports.Particle=Particle,exports.ParticleEmitter=ParticleEmitter,exports.ParticleEmitterSettings=ParticleEmitterSettings,exports.Pointer=Pointer,exports.Polygon=Polygon,exports.QuadTree=QuadTree,exports.Rect=Rect,exports.Renderable=Renderable,exports.Renderer=Renderer,exports.Sprite=Sprite,exports.Stage=Stage,exports.TMXHexagonalRenderer=TMXHexagonalRenderer,exports.TMXIsometricRenderer=TMXIsometricRenderer,exports.TMXLayer=TMXLayer,exports.TMXOrthogonalRenderer=TMXOrthogonalRenderer,exports.TMXRenderer=TMXRenderer,exports.TMXStaggeredRenderer=TMXStaggeredRenderer,exports.TMXTileMap=TMXTileMap,exports.TMXTileset=TMXTileset,exports.TMXTilesetGroup=TMXTilesetGroup,exports.Text=Text,exports.Tile=Tile,exports.Trigger=Trigger,exports.Tween=Tween,exports.Vector2d=Vector2d,exports.Vector3d=Vector3d,exports.WebGLCompositor=WebGLCompositor,exports.WebGLRenderer=WebGLRenderer,exports.World=World,exports.audio=audio,exports.boot=boot,exports.collision=collision,exports.deprecated=deprecated,exports.device=device$1,exports.event=event,exports.game=game,exports.input=input,exports.level=level,exports.loader=loader,exports.plugin=plugin,exports.plugins=plugins,exports.pool=pool,exports.save=save,exports.skipAutoInit=skipAutoInit,exports.state=state,exports.timer=timer$1,exports.utils=utils,exports.version=version,exports.video=video,Object.defineProperty(exports,"__esModule",{value:!0})}));