var egret; (function (b) { var e = function () { function b() { this._hashCode = b.hashCount++ } Object.defineProperty(b.prototype, "hashCode", { get : function () { return this._hashCode }, enumerable : !0, configurable : !0 }); b.hashCount = 1; return b } (); b.HashObject = e; e.prototype.__class__ = "egret.HashObject" })(egret || (egret = {})); var __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a(c) { void 0 === c && (c = 300); b.call(this); this.objectPool = []; this._length = 0; 1 > c && (c = 1); this.autoDisposeTime = c; this.frameCount = 0 } __extends(a, b); a.prototype._checkFrame = function () { this.frameCount--; 0 >= this.frameCount && this.dispose() }; Object.defineProperty(a.prototype, "length", { get : function () { return this._length }, enumerable : !0, configurable : !0 }); a.prototype.push = function (c) { var l = this.objectPool; -1 == l.indexOf(c) && (l.push(c), this._length++, 0 == this.frameCount && (this.frameCount = this.autoDisposeTime, a._callBackList.push(this))) }; a.prototype.pop = function () { if (0 == this._length) return null; this._length--; return this.objectPool.pop() }; a.prototype.dispose = function () { 0 < this._length && (this.objectPool = [], this._length = 0); this.frameCount = 0; var c = a._callBackList, l = c.indexOf(this); -1 != l && c.splice(l, 1) }; a._callBackList = []; return a } (b.HashObject); b.Recycler = e; e.prototype.__class__ = "egret.Recycler" })(egret || (egret = {})); (function (b) { b.__START_TIME; b.getTimer = function () { return Date.now() - b.__START_TIME } })(egret || (egret = {})); (function (b) { b.__callLaterFunctionList = []; b.__callLaterThisList = []; b.__callLaterArgsList = []; b.callLater = function (e, d) { for (var a = [], c = 2; c < arguments.length; c++) a[c - 2] = arguments[c]; b.__callLaterFunctionList.push(e); b.__callLaterThisList.push(d); b.__callLaterArgsList.push(a) }; b.__callAsyncFunctionList = []; b.__callAsyncThisList = []; b.__callAsyncArgsList = []; b.__callAsync = function (e, d) { for (var a = [], c = 2; c < arguments.length; c++) a[c - 2] = arguments[c]; b.__callAsyncFunctionList.push(e); b.__callAsyncThisList.push(d); b.__callAsyncArgsList.push(a) } })(egret || (egret = {})); var egret_dom; (function (b) { function e() { for (var b = document.createElement("div").style, a = ["t", "webkitT", "msT", "MozT", "OT"], c = 0; c < a.length; c++) if (a[c] + "ransform" in b) return a[c]; return a[0] } b.header = ""; b.getHeader = e; b.getTrans = function (d) { "" == b.header && (b.header = e()); return b.header + d.substring(1, d.length) } })(egret_dom || (egret_dom = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(c, a, h) { void 0 === a && (a = !1); void 0 === h && (h = !1); d.call(this); this._eventPhase = 2; this._isPropagationImmediateStopped = this._isPropagationStopped = this._isDefaultPrevented = !1; this.isNew = !0; this._type = c; this._bubbles = a; this._cancelable = h } __extends(a, d); Object.defineProperty(a.prototype, "type", { get : function () { return this._type }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "bubbles", { get : function () { return this._bubbles }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "cancelable", { get : function () { return this._cancelable }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "eventPhase", { get : function () { return this._eventPhase }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "currentTarget", { get : function () { return this._currentTarget }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "target", { get : function () { return this._target }, enumerable : !0, configurable : !0 }); a.prototype.isDefaultPrevented = function () { return this._isDefaultPrevented }; a.prototype.preventDefault = function () { this._cancelable && (this._isDefaultPrevented = !0) }; a.prototype.stopPropagation = function () { this._bubbles && (this._isPropagationStopped = !0) }; a.prototype.stopImmediatePropagation = function () { this._bubbles && (this._isPropagationImmediateStopped = !0) }; a.prototype._reset = function () { this.isNew ? this.isNew = !1 : (this._isPropagationImmediateStopped = this._isPropagationStopped = this._isDefaultPrevented = !1, this._currentTarget = this._target = null, this._eventPhase = 2) }; a._dispatchByTarget = function (c, a, h, d, e, f) { void 0 === e && (e = !1); void 0 === f && (f = !1); var k = c.eventRecycler; k || (k = c.eventRecycler = new b.Recycler); var m = k.pop(); m ? m._type = h : m = new c(h); m._bubbles = e; m._cancelable = f; if (d) for (var p in d) m[p] = d[p], null !== m[p] && (d[p] = null); c = a.dispatchEvent(m); k.push(m); return c }; a._getPropertyData = function (c) { var a = c._props; a || (a = c._props = {}); return a }; a.dispatchEvent = function (c, l, h, b) { void 0 === h && (h = !1); var d = a._getPropertyData(a); b && (d.data = b); a._dispatchByTarget(a, c, l, d, h) }; a.ADDED_TO_STAGE = "addedToStage"; a.REMOVED_FROM_STAGE = "removedFromStage"; a.ADDED = "added"; a.REMOVED = "removed"; a.COMPLETE = "complete"; a.ENTER_FRAME = "enterFrame"; a.RENDER = "render"; a.FINISH_RENDER = "finishRender"; a.FINISH_UPDATE_TRANSFORM = "finishUpdateTransform"; a.LEAVE_STAGE = "leaveStage"; a.RESIZE = "resize"; a.CHANGE = "change"; a.ACTIVATE = "activate"; a.DEACTIVATE = "deactivate"; a.CLOSE = "close"; a.CONNECT = "connect"; return a } (b.HashObject); b.Event = e; e.prototype.__class__ = "egret.Event" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a(c, a, h) { void 0 === a && (a = !1); void 0 === h && (h = !1); b.call(this, c, a, h); this._status = 0 } __extends(a, b); Object.defineProperty(a.prototype, "status", { get : function () { return this._status }, enumerable : !0, configurable : !0 }); a.dispatchHTTPStatusEvent = function (c, l) { null == a.httpStatusEvent && (a.httpStatusEvent = new a(a.HTTP_STATUS)); a.httpStatusEvent._status = l; c.dispatchEvent(a.httpStatusEvent) }; a.HTTP_STATUS = "httpStatus"; a.httpStatusEvent = null; return a } (b.Event); b.HTTPStatusEvent = e; e.prototype.__class__ = "egret.HTTPStatusEvent" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(c, a, h) { void 0 === a && (a = !1); void 0 === h && (h = !1); d.call(this, c, a, h) } __extends(a, d); a.dispatchIOErrorEvent = function (c) { b.Event._dispatchByTarget(a, c, a.IO_ERROR) }; a.IO_ERROR = "ioError"; return a } (b.Event); b.IOErrorEvent = e; e.prototype.__class__ = "egret.IOErrorEvent" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(c, a, h, b, e, f, k, m, p, q) { void 0 === a && (a = !0); void 0 === h && (h = !0); void 0 === b && (b = 0); void 0 === e && (e = 0); void 0 === f && (f = 0); void 0 === k && (k = !1); void 0 === m && (m = !1); void 0 === q && (q = !1); d.call(this, c, a, h); this._stageY = this._stageX = 0; this.touchPointID = b; this._stageX = e; this._stageY = f; this.ctrlKey = k; this.altKey = m; this.touchDown = q } __extends(a, d); Object.defineProperty(a.prototype, "stageX", { get : function () { return this._stageX }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "stageY", { get : function () { return this._stageY }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "localX", { get : function () { return this._currentTarget.globalToLocal(this._stageX, this._stageY, b.Point.identity).x }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "localY", { get : function () { return this._currentTarget.globalToLocal(this._stageX, this._stageY, b.Point.identity).y }, enumerable : !0, configurable : !0 }); a.dispatchTouchEvent = function (c, l, h, d, e, f, k, m, p) { void 0 === h && (h = 0); void 0 === d && (d = 0); void 0 === e && (e = 0); void 0 === f && (f = !1); void 0 === k && (k = !1); void 0 === m && (m = !1); void 0 === p && (p = !1); var q = b.Event._getPropertyData(a); q.touchPointID = h; q._stageX = d; q._stageY = e; q.ctrlKey = f; q.altKey = k; q.shiftKey = m; q.touchDown = p; b.Event._dispatchByTarget(a, c, l, q, !0, !0) }; a.TOUCH_TAP = "touchTap"; a.TOUCH_MOVE = "touchMove"; a.TOUCH_BEGIN = "touchBegin"; a.TOUCH_END = "touchEnd"; a.TOUCH_RELEASE_OUTSIDE = "touchReleaseOutside"; a.TOUCH_ROLL_OUT = "touchRollOut"; a.TOUCH_ROLL_OVER = "touchRollOver"; a.TOUCH_OUT = "touchOut"; a.TOUCH_OVER = "touchOver"; return a } (b.Event); b.TouchEvent = e; e.prototype.__class__ = "egret.TouchEvent" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(c, a, h) { void 0 === a && (a = !1); void 0 === h && (h = !1); d.call(this, c, a, h) } __extends(a, d); a.dispatchTimerEvent = function (c, l) { b.Event._dispatchByTarget(a, c, l) }; a.TIMER = "timer"; a.TIMER_COMPLETE = "timerComplete"; return a } (b.Event); b.TimerEvent = e; e.prototype.__class__ = "egret.TimerEvent" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(c, a, h, b, e) { void 0 === a && (a = !1); void 0 === h && (h = !1); void 0 === b && (b = 0); void 0 === e && (e = 0); d.call(this, c, a, h); this.bytesLoaded = b; this.bytesTotal = e } __extends(a, d); a.dispatchProgressEvent = function (c, l, h, d) { void 0 === h && (h = 0); void 0 === d && (d = 0); b.Event._dispatchByTarget(a, c, l, { bytesLoaded : h, bytesTotal : d }) }; a.PROGRESS = "progress"; a.SOCKET_DATA = "socketData"; return a } (b.Event); b.ProgressEvent = e; e.prototype.__class__ = "egret.ProgressEvent" })(egret || (egret = {})); (function (b) { var e = function () { function b() {} b.CAPTURING_PHASE = 1; b.AT_TARGET = 2; b.BUBBLING_PHASE = 3; return b } (); b.EventPhase = e; e.prototype.__class__ = "egret.EventPhase" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(c) { void 0 === c && (c = null); d.call(this); this._eventTarget = c ? c : this } __extends(a, d); a.prototype.addEventListener = function (c, a, h, d, e) { void 0 === d && (d = !1); void 0 === e && (e = 0); "undefined" === typeof d && (d = !1); "undefined" === typeof e && (e = 0); a || b.Logger.fatal("addEventListener\u4fa6\u542c\u51fd\u6570\u4e0d\u80fd\u4e3a\u7a7a"); d ? (this._captureEventsMap || (this._captureEventsMap = {}), d = this._captureEventsMap) : (this._eventsMap || (this._eventsMap = {}), d = this._eventsMap); var f = d[c]; f || (f = d[c] = []); this._insertEventBin(f, a, h, e) }; a.prototype._insertEventBin = function (c, a, h, b, d) { void 0 === d && (d = void 0); for (var e = -1, k = c.length, m = 0; m < k; m++) { var p = c[m]; if (p.listener === a && p.thisObject === h && p.display === d) return !1; -1 == e && p.priority < b && (e = m) } a = { listener : a, thisObject : h, priority : b }; d && (a.display = d); -1 != e ? c.splice(e, 0, a) : c.push(a); return !0 }; a.prototype.removeEventListener = function (c, a, h, b) { void 0 === b && (b = !1); if (b = b ? this._captureEventsMap : this._eventsMap) { var d = b[c]; d && (this._removeEventBin(d, a, h), 0 == d.length && delete b[c]) } }; a.prototype._removeEventBin = function (c, a, h, b) { void 0 === b && (b = void 0); for (var d = c.length, e = 0; e < d; e++) { var k = c[e]; if (k.listener === a && k.thisObject === h && k.display === b) return c.splice(e, 1), !0 } return !1 }; a.prototype.hasEventListener = function (c) { return this._eventsMap && this._eventsMap[c] || this._captureEventsMap && this._captureEventsMap[c] }; a.prototype.willTrigger = function (c) { return this.hasEventListener(c) }; a.prototype.dispatchEvent = function (c) { c._reset(); c._target = this._eventTarget; c._currentTarget = this._eventTarget; return this._notifyListener(c) }; a.prototype._notifyListener = function (c) { var a = 1 == c._eventPhase ? this._captureEventsMap : this._eventsMap; if (!a) return !0; a = a[c._type]; if (!a) return !0; var b = a.length; if (0 == b) return !0; for (var a = a.concat(), d = 0; d < b; d++) { var e = a[d]; e.listener.call(e.thisObject, c); if (c._isPropagationImmediateStopped) break } return !c._isDefaultPrevented }; a.prototype.dispatchEventWith = function (c, a, h) { void 0 === a && (a = !1); b.Event.dispatchEvent(this, c, a, h) }; return a } (b.HashObject); b.EventDispatcher = e; e.prototype.__class__ = "egret.EventDispatcher" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this.reuseEvent = new b.Event("") } __extends(a, d); a.prototype.run = function () { b.Ticker.getInstance().run(); b.Ticker.getInstance().register(this.renderLoop, this, Number.NEGATIVE_INFINITY); b.Ticker.getInstance().register(this.broadcastEnterFrame, this, Number.POSITIVE_INFINITY); this.touchContext.run() }; a.prototype.renderLoop = function (c) { if (0 < b.__callLaterFunctionList.length) { var l = b.__callLaterFunctionList; b.__callLaterFunctionList = []; var h = b.__callLaterThisList; b.__callLaterThisList = []; var d = b.__callLaterArgsList; b.__callLaterArgsList = [] } c = this.stage; var e = a.cachedEvent; e._type = b.Event.RENDER; this.dispatchEvent(e); b.Stage._invalidateRenderFlag && (this.broadcastRender(), b.Stage._invalidateRenderFlag = !1); l && this.doCallLaterList(l, h, d); 0 < b.__callAsyncFunctionList.length && this.doCallAsyncList(); l = this.rendererContext; l.onRenderStart(); l.clearScreen(); c._updateTransform(); e._type = b.Event.FINISH_UPDATE_TRANSFORM; this.dispatchEvent(e); c._draw(l); e._type = b.Event.FINISH_RENDER; this.dispatchEvent(e); l.onRenderFinish() }; a.prototype.broadcastEnterFrame = function (c) { c = this.reuseEvent; c._type = b.Event.ENTER_FRAME; this.dispatchEvent(c); for (var a = b.DisplayObject._enterFrameCallBackList.concat(), h = a.length, d = 0; d < h; d++) { var e = a[d]; c._target = e.display; c._currentTarget = e.display; e.listener.call(e.thisObject, c) } a = b.Recycler._callBackList; for (d = a.length - 1; 0 <= d; d--) a[d]._checkFrame() }; a.prototype.broadcastRender = function () { var c = this.reuseEvent; c._type = b.Event.RENDER; for (var a = b.DisplayObject._renderCallBackList.concat(), h = a.length, d = 0; d < h; d++) { var e = a[d], f = e.display; c._target = f; c._currentTarget = f; e.listener.call(e.thisObject, c) } }; a.prototype.doCallLaterList = function (c, a, b) { for (var d = c.length, e = 0; e < d; e++) { var f = c[e]; null != f && f.apply(a[e], b[e]) } }; a.prototype.doCallAsyncList = function () { var c = b.__callAsyncFunctionList.concat(), a = b.__callAsyncThisList.concat(), h = b.__callAsyncArgsList.concat(); b.__callAsyncFunctionList.length = 0; b.__callAsyncThisList.length = 0; for (var d = b.__callAsyncArgsList.length = 0; d < c.length; d++) { var e = c[d]; null != e && e.apply(a[d], h[d]) } }; a.DEVICE_PC = "web"; a.DEVICE_MOBILE = "native"; a.RUNTIME_HTML5 = "runtime_html5"; a.RUNTIME_NATIVE = "runtime_native"; a.cachedEvent = new b.Event(""); return a } (b.EventDispatcher); b.MainContext = e; e.prototype.__class__ = "egret.MainContext" })(egret || (egret = {})); var testDeviceType = function () { if (!this.navigator) return !0; var b = navigator.userAgent.toLowerCase(); return -1 != b.indexOf("mobile") || -1 != b.indexOf("android") }, testRuntimeType = function () { return this.navigator ? !0 : !1 }; egret.MainContext.instance = new egret.MainContext; egret.MainContext.deviceType = testDeviceType() ? egret.MainContext.DEVICE_MOBILE : egret.MainContext.DEVICE_PC; egret.MainContext.runtimeType = testRuntimeType() ? egret.MainContext.RUNTIME_HTML5 : egret.MainContext.RUNTIME_NATIVE; delete testDeviceType; delete testRuntimeType; (function (b) { var e = function () { function d() { this._tick = this._preDrawCount = this._updateTransformPerformanceCost = this._renderPerformanceCost = this._logicPerformanceCost = this._lastTime = 0; this._maxDeltaTime = 500; this._totalDeltaTime = 0 } d.getInstance = function () { null == d.instance && (d.instance = new d); return d.instance }; d.prototype.run = function () { b.Ticker.getInstance().register(this.update, this); null == this._txt && (this._txt = new b.TextField, this._txt.size = 28, this._txt.multiline = !0, b.MainContext.instance.stage.addChild(this._txt)); var a = b.MainContext.instance; a.addEventListener(b.Event.ENTER_FRAME, this.onEnterFrame, this); a.addEventListener(b.Event.RENDER, this.onStartRender, this); a.addEventListener(b.Event.FINISH_RENDER, this.onFinishRender, this); a.addEventListener(b.Event.FINISH_UPDATE_TRANSFORM, this.onFinishUpdateTransform, this) }; d.prototype.onEnterFrame = function (a) { this._lastTime = b.getTimer() }; d.prototype.onStartRender = function (a) { a = b.getTimer(); this._logicPerformanceCost = a - this._lastTime; this._lastTime = a }; d.prototype.onFinishUpdateTransform = function (a) { a = b.getTimer(); this._updateTransformPerformanceCost = a - this._lastTime; this._lastTime = a }; d.prototype.onFinishRender = function (a) { a = b.getTimer(); this._renderPerformanceCost = a - this._lastTime; this._lastTime = a }; d.prototype.update = function (a) { this._tick++; this._totalDeltaTime += a; if (this._totalDeltaTime >= this._maxDeltaTime) { a = (this._preDrawCount - 1).toString(); var c = Math.ceil(this._logicPerformanceCost).toString() + "," + Math.ceil(this._updateTransformPerformanceCost).toString() + "," + Math.ceil(this._renderPerformanceCost).toString() + "," + Math.ceil(b.MainContext.instance.rendererContext.renderCost).toString(); this._txt.text = "draw:" + a + "\ncost:" + c + "\nFPS:" + Math.floor(1E3 * this._tick / this._totalDeltaTime).toString(); this._tick = this._totalDeltaTime = 0 } this._preDrawCount = 0 }; d.prototype.onDrawImage = function () { this._preDrawCount++ }; return d } (); b.Profiler = e; e.prototype.__class__ = "egret.Profiler" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.apply(this, arguments); this._timeScale = 1; this._paused = !1; this.callBackList = [] } __extends(a, d); a.prototype.run = function () { b.__START_TIME = (new Date).getTime(); b.MainContext.instance.deviceContext.executeMainLoop(this.update, this) }; a.prototype.update = function (c) { var a = this.callBackList.concat(), b = a.length; c *= this._timeScale; c *= this._timeScale; for (var d = 0; d < b; d++) { var e = a[d]; e.listener.call(e.thisObject, c) } }; a.prototype.register = function (c, a, b) { void 0 === b && (b = 0); this._insertEventBin(this.callBackList, c, a, b) }; a.prototype.unregister = function (c, a) { this._removeEventBin(this.callBackList, c, a) }; a.prototype.setTimeout = function (c, a, h) { for (var d = [], e = 3; e < arguments.length; e++) d[e - 3] = arguments[e]; b.Logger.warning("Ticker#setTimeout\u65b9\u6cd5\u5373\u5c06\u5e9f\u5f03,\u8bf7\u4f7f\u7528egret.setTimeout"); b.setTimeout.apply(null, [c, a, h].concat(d)) }; a.prototype.setTimeScale = function (c) { this._timeScale = c }; a.prototype.getTimeScale = function () { return this._timeScale }; a.prototype.pause = function () { this._paused = !0 }; a.prototype.resume = function () { this._paused = !1 }; a.getInstance = function () { null == a.instance && (a.instance = new a); return a.instance }; return a } (b.EventDispatcher); b.Ticker = e; e.prototype.__class__ = "egret.Ticker" })(egret || (egret = {})); (function (b) { var e = function () { function b() {} b.LEFT = "left"; b.RIGHT = "right"; b.CENTER = "center"; b.JUSTIFY = "justify"; b.CONTENT_JUSTIFY = "contentJustify"; return b } (); b.HorizontalAlign = e; e.prototype.__class__ = "egret.HorizontalAlign" })(egret || (egret = {})); (function (b) { var e = function () { function b() {} b.TOP = "top"; b.BOTTOM = "bottom"; b.MIDDLE = "middle"; b.JUSTIFY = "justify"; b.CONTENT_JUSTIFY = "contentJustify"; return b } (); b.VerticalAlign = e; e.prototype.__class__ = "egret.VerticalAlign" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(c, a) { void 0 === a && (a = 0); d.call(this); this._currentCount = 0; this.delay = c; this.repeatCount = a } __extends(a, d); a.prototype.currentCount = function () { return this._currentCount }; Object.defineProperty(a.prototype, "running", { get : function () { return this._running }, enumerable : !0, configurable : !0 }); a.prototype.reset = function () { this.stop(); this._currentCount = 0 }; a.prototype.start = function () { this._running || (this.lastTime = b.getTimer(), 0 != this._currentCount && (this._currentCount = 0), b.Ticker.getInstance().register(this.onEnterFrame, this), this._running = !0) }; a.prototype.stop = function () { this._running && (b.Ticker.getInstance().unregister(this.onEnterFrame, this), this._running = !1) }; a.prototype.onEnterFrame = function (c) { c = b.getTimer(); c - this.lastTime > this.delay && (this.lastTime = c, this._currentCount++, b.TimerEvent.dispatchTimerEvent(this, b.TimerEvent.TIMER), 0 < this.repeatCount && this._currentCount >= this.repeatCount && (this.stop(), b.TimerEvent.dispatchTimerEvent(this, b.TimerEvent.TIMER_COMPLETE))) }; return a } (b.EventDispatcher); b.Timer = e; e.prototype.__class__ = "egret.Timer" })(egret || (egret = {})); (function (b) { function e(b) { b = b.prototype ? b.prototype : Object.getPrototypeOf(b); if (b.hasOwnProperty("__class__")) return b.__class__; var a = b.constructor.toString(), c = a.indexOf("("), a = a.substring(9, c); Object.defineProperty(b, "__class__", { value : a, enumerable : !1, writable : !0 }); return a } b.getQualifiedClassName = e; b.getQualifiedSuperclassName = function (b) { b = b.prototype ? b.prototype : Object.getPrototypeOf(b); if (b.hasOwnProperty("__superclass__")) return b.__superclass__; var a = Object.getPrototypeOf(b); if (null == a) return null; a = e(a.constructor); if (!a) return null; Object.defineProperty(b, "__superclass__", { value : a, enumerable : !1, writable : !0 }); return a } })(egret || (egret = {})); (function (b) { var e = {}; b.getDefinitionByName = function (b) { if (!b) return null; var a = e[b]; if (a) return a; for (var c = b.split("."), l = c.length, a = __global, h = 0; h < l; h++) if (a = a[c[h]], !a) return null; return e[b] = a } })(egret || (egret = {})); var __global = __global || this; (function (b) { function e(c) { for (var a in d) { var b = d[a]; b.delay -= c; 0 >= b.delay && (b.listener.apply(b.thisObject, b.params), delete d[a]) } } var d = {}, a = 0; b.setTimeout = function (c, l, h) { for (var n = [], g = 3; g < arguments.length; g++) n[g - 3] = arguments[g]; n = { listener : c, thisObject : l, delay : h, params : n }; 0 == a && b.Ticker.getInstance().register(e, null); a++; d[a] = n; return a }; b.clearTimeout = function (c) { delete d[c] } })(egret || (egret = {})); (function (b) { b.hasDefinition = function (e) { return b.getDefinitionByName(e) ? !0 : !1 } })(egret || (egret = {})); (function (b) { b.toColorString = function (b) { if (isNaN(b) || 0 > b) b = 0; 16777215 < b && (b = 16777215); for (b = b.toString(16).toUpperCase(); 6 > b.length; ) b = "0" + b; return "#" + b } })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(c, a, b, e, g, f) { void 0 === c && (c = 1); void 0 === a && (a = 0); void 0 === b && (b = 0); void 0 === e && (e = 1); void 0 === g && (g = 0); void 0 === f && (f = 0); d.call(this); this.a = c; this.b = a; this.c = b; this.d = e; this.tx = g; this.ty = f } __extends(a, d); a.prototype.prepend = function (c, a, b, d, e, f) { var k = this.tx; if (1 != c || 0 != a || 0 != b || 1 != d) { var m = this.a, p = this.c; this.a = m * c + this.b * b; this.b = m * a + this.b * d; this.c = p * c + this.d * b; this.d = p * a + this.d * d } this.tx = k * c + this.ty * b + e; this.ty = k * a + this.ty * d + f; return this }; a.prototype.append = function (c, a, b, d, e, f) { var k = this.a, m = this.b, p = this.c, q = this.d; if (1 != c || 0 != a || 0 != b || 1 != d) this.a = c * k + a * p, this.b = c * m + a * q, this.c = b * k + d * p, this.d = b * m + d * q; this.tx = e * k + f * p + this.tx; this.ty = e * m + f * q + this.ty; return this }; a.prototype.prependTransform = function (c, a, h, d, e, f, k, m, p) { if (e % 360) { var q = b.NumberUtils.cos(e); e = b.NumberUtils.sin(e) } else q = 1, e = 0; if (m || p) this.tx -= m, this.ty -= p; f || k ? (this.prepend(q * h, e * h, -e * d, q * d, 0, 0), this.prepend(b.NumberUtils.cos(k), b.NumberUtils.sin(k), -b.NumberUtils.sin(f), b.NumberUtils.cos(f), c, a)) : this.prepend(q * h, e * h, -e * d, q * d, c, a); return this }; a.prototype.appendTransform = function (c, a, h, d, e, f, k, m, p) { if (e % 360) { var q = b.NumberUtils.cos(e); e = b.NumberUtils.sin(e) } else q = 1, e = 0; f || k ? (this.append(b.NumberUtils.cos(k), b.NumberUtils.sin(k), -b.NumberUtils.sin(f), b.NumberUtils.cos(f), c, a), this.append(q * h, e * h, -e * d, q * d, 0, 0)) : this.append(q * h, e * h, -e * d, q * d, c, a); if (m || p) this.tx -= m * this.a + p * this.c, this.ty -= m * this.b + p * this.d; return this }; a.prototype.rotate = function (c) { var a = Math.cos(c); c = Math.sin(c); var b = this.a, d = this.c, e = this.tx; this.a = b * a - this.b * c; this.b = b * c + this.b * a; this.c = d * a - this.d * c; this.d = d * c + this.d * a; this.tx = e * a - this.ty * c; this.ty = e * c + this.ty * a; return this }; a.prototype.skew = function (c, a) { this.append(b.NumberUtils.cos(a), b.NumberUtils.sin(a), -b.NumberUtils.sin(c), b.NumberUtils.cos(c), 0, 0); return this }; a.prototype.scale = function (c, a) { this.a *= c; this.d *= a; this.c *= c; this.b *= a; this.tx *= c; this.ty *= a; return this }; a.prototype.translate = function (c, a) { this.tx += c; this.ty += a; return this }; a.prototype.identity = function () { this.a = this.d = 1; this.b = this.c = this.tx = this.ty = 0; return this }; a.prototype.identityMatrix = function (c) { this.a = c.a; this.b = c.b; this.c = c.c; this.d = c.d; this.tx = c.tx; this.ty = c.ty; return this }; a.prototype.invert = function () { var c = this.a, a = this.b, b = this.c, d = this.d, e = this.tx, f = c * d - a * b; this.a = d / f; this.b = -a / f; this.c = -b / f; this.d = c / f; this.tx = (b * this.ty - d * e) / f; this.ty = - (c * this.ty - a * e) / f; return this }; a.transformCoords = function (c, a, h) { var d = b.Point.identity; d.x = c.a * a + c.c * h + c.tx; d.y = c.d * h + c.b * a + c.ty; return d }; a.prototype.toArray = function (c) { this.array || (this.array = new Float32Array(9)); c ? (this.array[0] = this.a, this.array[1] = this.b, this.array[2] = 0, this.array[3] = this.c, this.array[4] = this.d, this.array[5] = 0, this.array[6] = this.tx, this.array[7] = this.ty) : (this.array[0] = this.a, this.array[1] = this.b, this.array[2] = this.tx, this.array[3] = this.c, this.array[4] = this.d, this.array[5] = this.ty, this.array[6] = 0, this.array[7] = 0); this.array[8] = 1; return this.array }; a.identity = new a; a.DEG_TO_RAD = Math.PI / 180; return a } (b.HashObject); b.Matrix = e; e.prototype.__class__ = "egret.Matrix" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a(c, a) { void 0 === c && (c = 0); void 0 === a && (a = 0); b.call(this); this.x = c; this.y = a } __extends(a, b); a.prototype.clone = function () { return new a(this.x, this.y) }; a.prototype.equals = function (c) { return this.x == c.x && this.y == c.y }; a.distance = function (c, a) { return Math.sqrt((c.x - a.x) * (c.x - a.x) + (c.y - a.y) * (c.y - a.y)) }; a.identity = new a(0, 0); return a } (b.HashObject); b.Point = e; e.prototype.__class__ = "egret.Point" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a(c, a, h, e) { void 0 === c && (c = 0); void 0 === a && (a = 0); void 0 === h && (h = 0); void 0 === e && (e = 0); b.call(this); this.x = c; this.y = a; this.width = h; this.height = e } __extends(a, b); Object.defineProperty(a.prototype, "right", { get : function () { return this.x + this.width }, set : function (c) { this.width = c - this.x }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "bottom", { get : function () { return this.y + this.height }, set : function (c) { this.height = c - this.y }, enumerable : !0, configurable : !0 }); a.prototype.initialize = function (c, a, b, d) { this.x = c; this.y = a; this.width = b; this.height = d; return this }; a.prototype.contains = function (c, a) { return this.x <= c && this.x + this.width >= c && this.y <= a && this.y + this.height >= a }; a.prototype.intersects = function (c) { var a = c.right, b = c.bottom, d = this.right, e = this.bottom; return this.contains(c.x, c.y) || this.contains(c.x, b) || this.contains(a, c.y) || this.contains(a, b) || c.contains(this.x, this.y) || c.contains(this.x, e) || c.contains(d, this.y) || c.contains(d, e) ? !0 : !1 }; a.prototype.clone = function () { return new a(this.x, this.y, this.width, this.height) }; a.prototype.containsPoint = function (c) { return this.x < c.x && this.x + this.width > c.x && this.y < c.y && this.y + this.height > c.y ? !0 : !1 }; a.identity = new a(0, 0, 0, 0); return a } (b.HashObject); b.Rectangle = e; e.prototype.__class__ = "egret.Rectangle" })(egret || (egret = {})); (function (b) { var e = function () { function d() {} d.fatal = function (a, c) { void 0 === c && (c = null); b.Logger.traceToConsole("Fatal", a, c); throw Error(b.Logger.getTraceCode("Fatal", a, c)); }; d.info = function (a, c) { void 0 === c && (c = null); b.Logger.traceToConsole("Info", a, c) }; d.warning = function (a, c) { void 0 === c && (c = null); b.Logger.traceToConsole("Warning", a, c) }; d.traceToConsole = function (a, c, l) { console.log(b.Logger.getTraceCode(a, c, l)) }; d.getTraceCode = function (a, c, l) { return "[" + a + "]" + c + ":" + (null == l ? "" : l) }; return d } (); b.Logger = e; e.prototype.__class__ = "egret.Logger" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this._isSupportDOMParser = this._xmlDict = this._parser = null; this._xmlDict = {}; window.DOMParser ? (this._isSupportDOMParser = !0, this._parser = new DOMParser) : this._isSupportDOMParser = !1 } __extends(a, d); a.getInstance = function () { a._instance || (a._instance = new a); return a._instance }; a.prototype.parserXML = function (c) { for (var a = 0; "\n" == c.charAt(a) || "\t" == c.charAt(a) || "\r" == c.charAt(a) || " " == c.charAt(a); ) a++; 0 != a && (c = c.substring(a, c.length)); this._isSupportDOMParser ? a = this._parser.parseFromString(c, "text/xml") : (a = new ActiveXObject("Microsoft.XMLDOM"), a.async = "false", a.loadXML(c)); null == a && b.Logger.info("xml not found!"); return a }; a._instance = null; return a } (b.HashObject); b.SAXParser = e; e.prototype.__class__ = "egret.SAXParser" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (c) { function l() { c.call(this); this._designHeight = this._designWidth = 0; this._scaleY = this._scaleX = 1; this._stageHeight = this._stageWidth = this._offSetY = 0 } __extends(l, c); l.getInstance = function () { null == l.instance && (a.initialize(), l.instance = new l); return l.instance }; l.prototype.setDesignSize = function (c, a, l) { this._designWidth = c; this._designHeight = a; l && (b.Logger.warning("\u8be5\u65b9\u6cd5\u76ee\u524d\u4e0d\u5e94\u4f20\u5165 resolutionPolicy \u53c2\u6570\uff0c\u8bf7\u5728 docs/1.0_Final_ReleaseNote\u4e2d\u67e5\u770b\u5982\u4f55\u5347\u7ea7"), this._setResolutionPolicy(l)) }; l.prototype._setResolutionPolicy = function (c) { this._resolutionPolicy = c; c.init(this); c._apply(this, this._designWidth, this._designHeight) }; l.prototype.getScaleX = function () { return this._scaleX }; l.prototype.getScaleY = function () { return this._scaleY }; l.prototype.getOffSetY = function () { return this._offSetY }; l.canvas_name = "egretCanvas"; l.canvas_div_name = "gameDiv"; return l } (b.HashObject); b.StageDelegate = e; e.prototype.__class__ = "egret.StageDelegate"; var d = function () { function c(a, l) { this._containerStrategy = a; this._contentStrategy = l } c.prototype.init = function (c) { this._containerStrategy.init(c); this._contentStrategy.init(c) }; c.prototype._apply = function (c, a, l) { this._containerStrategy._apply(c, a, l); this._contentStrategy._apply(c, a, l) }; return c } (); b.ResolutionPolicy = d; d.prototype.__class__ = "egret.ResolutionPolicy"; var a = function () { function a() {} a.initialize = function () { a.EQUAL_TO_FRAME = new c }; a.prototype.init = function (c) {}; a.prototype._apply = function (c, a, l) {}; a.prototype._setupContainer = function () { var c = document.body, a; c && (a = c.style) && (a.paddingTop = a.paddingTop || "0px", a.paddingRight = a.paddingRight || "0px", a.paddingBottom = a.paddingBottom || "0px", a.paddingLeft = a.paddingLeft || "0px", a.borderTop = a.borderTop || "0px", a.borderRight = a.borderRight || "0px", a.borderBottom = a.borderBottom || "0px", a.borderLeft = a.borderLeft || "0px", a.marginTop = a.marginTop || "0px", a.marginRight = a.marginRight || "0px", a.marginBottom = a.marginBottom || "0px", a.marginLeft = a.marginLeft || "0px") }; return a } (); b.ContainerStrategy = a; a.prototype.__class__ = "egret.ContainerStrategy"; var c = function (c) { function a() { c.apply(this, arguments) } __extends(a, c); a.prototype._apply = function (c) { this._setupContainer() }; return a } (a); b.EqualToFrame = c; c.prototype.__class__ = "egret.EqualToFrame"; d = function () { function c() {} c.prototype.init = function (c) {}; c.prototype._apply = function (c, a, l) {}; c.prototype.setEgretSize = function (c, a, l, h, d, p) { void 0 === p && (p = 0); b.StageDelegate.getInstance()._stageWidth = Math.round(c); b.StageDelegate.getInstance()._stageHeight = Math.round(a); c = document.getElementById(e.canvas_div_name); c.style.width = l + "px"; c.style.height = h + "px"; c.style.top = p + "px" }; c.prototype._getClientWidth = function () { return document.documentElement.clientWidth }; c.prototype._getClientHeight = function () { return document.documentElement.clientHeight }; return c } (); b.ContentStrategy = d; d.prototype.__class__ = "egret.ContentStrategy"; var l = function (c) { function a(l) { void 0 === l && (l = 0); c.call(this); this.minWidth = l } __extends(a, c); a.prototype._apply = function (c, a, l) { a = this._getClientWidth(); var b = this._getClientHeight(), h = b / l, d = a / h, e = 1; 0 != this.minWidth && (e = Math.min(1, d / this.minWidth)); this.setEgretSize(d / e, l, a, b * e); c._scaleX = h * e; c._scaleY = h * e }; return a } (d); b.FixedHeight = l; l.prototype.__class__ = "egret.FixedHeight"; l = function (c) { function a(l) { void 0 === l && (l = 0); c.call(this); this.minHeight = l } __extends(a, c); a.prototype._apply = function (c, a, l) { l = this._getClientWidth(); var b = this._getClientHeight(), h = l / a, d = b / h, e = 1; 0 != this.minHeight && (e = Math.min(1, d / this.minHeight)); this.setEgretSize(a, d / e, l * e, b, l * (1 - e) / 2); c._scaleX = h * e; c._scaleY = h * e }; return a } (d); b.FixedWidth = l; l.prototype.__class__ = "egret.FixedWidth"; l = function (c) { function a(l, b) { c.call(this); this.width = l; this.height = b } __extends(a, c); a.prototype._apply = function (c, a, l) { l = this.width; var b = this.height, h = l / a; this.setEgretSize(a, b / h, l, b); c._scaleX = h; c._scaleY = h }; return a } (d); b.FixedSize = l; l.prototype.__class__ = "egret.FixedSize"; l = function (c) { function a() { c.call(this) } __extends(a, c); a.prototype._apply = function (c, a, l) { this.setEgretSize(a, l, a, l, Math.floor((a - a) / 2)); c._scaleX = 1; c._scaleY = 1 }; return a } (d); b.NoScale = l; l.prototype.__class__ = "egret.NoScale"; l = function (c) { function a() { c.call(this) } __extends(a, c); a.prototype._apply = function (c, a, l) { var b = this._getClientWidth(), h = this._getClientHeight(), d = b, e = h, n = d / a < e / l ? d / a : e / l, d = a * n, e = l * n, b = Math.floor((b - d) / 2); c._offSetY = Math.floor((h - e) / 2); this.setEgretSize(a, l / 1, 1 * d, e, b, c._offSetY); c._scaleX = 1 * n; c._scaleY = 1 * n }; return a } (d); b.ShowAll = l; l.prototype.__class__ = "egret.ShowAll"; d = function (c) { function a() { c.call(this) } __extends(a, c); a.prototype._apply = function (c, a, l) { var b = this._getClientWidth(), h = this._getClientHeight(), b = b / a, h = h / l; this.setEgretSize(a, l, a * b, l * h); c._scaleX = b; c._scaleY = h }; return a } (d); b.FullScreen = d; d.prototype.__class__ = "egret.FullScreen" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this._originalData = {}; this._drawAreaList = [] } __extends(a, d); a.getInstance = function () { null == a.instance && (a.instance = new a); return a.instance }; a.prototype.addDrawArea = function (c) { this._drawAreaList.push(c) }; a.prototype.clearDrawArea = function () { this._drawAreaList = [] }; a.prototype.drawImage = function (c, a, h, d, e, f, k, m, p, q, r) { void 0 === r && (r = void 0); k = k || 0; m = m || 0; var t = a._texture_to_render; if (null != t && 0 != f && 0 != e && 0 != p && 0 != q) { var s = b.MainContext.instance.rendererContext.texture_scale_factor; e /= s; f /= s; if (0 != this._drawAreaList.length && b.MainContext.instance.rendererContext._cacheCanvasContext) { s = b.DisplayObject.getTransformBounds(a._getSize(b.Rectangle.identity), a._worldTransform); a._worldBounds.initialize(s.x, s.y, s.width, s.height); s = this._originalData; s.sourceX = h; s.sourceY = d; s.sourceWidth = e; s.sourceHeight = f; s.destX = k; s.destY = m; s.destWidth = p; s.destHeight = q; for (var u = this.getDrawAreaList(), v = 0; v < u.length; v++) if (!this.ignoreRender(a, u[v], s.destX, s.destY)) { c.drawImage(t, h, d, e, f, k, m, p, q, r); break } } else c.drawImage(t, h, d, e, f, k, m, p, q, r) } }; a.prototype.ignoreRender = function (c, a, b, d) { var e = c._worldBounds; b *= c._worldTransform.a; d *= c._worldTransform.d; return e.x + e.width + b <= a.x || e.x + b >= a.x + a.width || e.y + e.height + d <= a.y || e.y + d >= a.y + a.height ? !0 : !1 }; a.prototype.getDrawAreaList = function () { var c; 0 == this._drawAreaList.length ? (this._defaultDrawAreaList || (this._defaultDrawAreaList = [new b.Rectangle(0, 0, b.MainContext.instance.stage.stageWidth, b.MainContext.instance.stage.stageHeight)], b.MainContext.instance.stage.addEventListener(b.Event.RESIZE, this.onResize, this)), c = this._defaultDrawAreaList) : c = this._drawAreaList; return c }; a.prototype.onResize = function () { b.MainContext.instance.stage.removeEventListener(b.Event.RESIZE, this.onResize, this); this._defaultDrawAreaList = null }; return a } (b.HashObject); b.RenderFilter = e; e.prototype.__class__ = "egret.RenderFilter" })(egret || (egret = {})); (function (b) { var e = function () { function d() {} d.mapClass = function (a, c, l) { void 0 === l && (l = ""); a = this.getKey(a) + "#" + l; this.mapClassDic[a] = c }; d.getKey = function (a) { return "string" == typeof a ? a : b.getQualifiedClassName(a) }; d.mapValue = function (a, c, l) { void 0 === l && (l = ""); a = this.getKey(a) + "#" + l; this.mapValueDic[a] = c }; d.hasMapRule = function (a, c) { void 0 === c && (c = ""); var l = this.getKey(a) + "#" + c; return this.mapValueDic[l] || this.mapClassDic[l] ? !0 : !1 }; d.getInstance = function (a, c) { void 0 === c && (c = ""); var l = this.getKey(a) + "#" + c; if (this.mapValueDic[l]) return this.mapValueDic[l]; var b = this.mapClassDic[l]; if (b) return b = new b, this.mapValueDic[l] = b, delete this.mapClassDic[l], b; throw Error("\u8c03\u7528\u4e86\u672a\u914d\u7f6e\u7684\u6ce8\u5165\u89c4\u5219:" + l + "\u3002 \u8bf7\u5148\u5728\u9879\u76ee\u521d\u59cb\u5316\u91cc\u914d\u7f6e\u6307\u5b9a\u7684\u6ce8\u5165\u89c4\u5219\uff0c\u518d\u8c03\u7528\u5bf9\u5e94\u5355\u4f8b\u3002"); }; d.mapClassDic = {}; d.mapValueDic = {}; return d } (); b.Injector = e; e.prototype.__class__ = "egret.Injector" })(egret || (egret = {})); (function (b) { var e = function () { function b() {} b.NORMAL = "normal"; b.ADD = "add"; return b } (); b.BlendMode = e; e.prototype.__class__ = "egret.BlendMode" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this.__hack_local_matrix = null; this._sizeDirty = this._normalDirty = !0; this._parent = this._texture_to_render = null; this._y = this._x = 0; this._scaleY = this._scaleX = 1; this._anchorY = this._anchorX = this._anchorOffsetY = this._anchorOffsetX = 0; this._visible = !0; this._rotation = 0; this._alpha = 1; this._skewY = this._skewX = 0; this._touchEnabled = !1; this._scrollRect = this.blendMode = null; this._hasHeightSet = this._hasWidthSet = !1; this._worldBounds = this.mask = null; this.worldAlpha = 1; this._rectH = this._rectW = 0; this._stage = null; this._cacheDirty = this._cacheAsBitmap = !1; this._colorTransform = null; this._worldTransform = new b.Matrix; this._worldBounds = new b.Rectangle(0, 0, 0, 0); this._cacheBounds = new b.Rectangle(0, 0, 0, 0) } __extends(a, d); a.prototype._setDirty = function () { this._normalDirty = !0 }; a.prototype.getDirty = function () { return this._normalDirty || this._sizeDirty }; a.prototype._setParentSizeDirty = function () { var c = this._parent; !c || c._hasWidthSet || c._hasHeightSet || c._setSizeDirty() }; a.prototype._setSizeDirty = function () { this._sizeDirty || (this._sizeDirty = !0, this._setDirty(), this._setCacheDirty(), this._setParentSizeDirty()) }; a.prototype._clearDirty = function () { this._normalDirty = !1 }; a.prototype._clearSizeDirty = function () { this._sizeDirty = !1 }; Object.defineProperty(a.prototype, "parent", { get : function () { return this._parent }, enumerable : !0, configurable : !0 }); a.prototype._parentChanged = function (c) { this._parent = c }; Object.defineProperty(a.prototype, "x", { get : function () { return this._x }, set : function (c) { this._setX(c) }, enumerable : !0, configurable : !0 }); a.prototype._setX = function (c) { b.NumberUtils.isNumber(c) && this._x != c && (this._x = c, this._setDirty(), this._setParentSizeDirty()) }; Object.defineProperty(a.prototype, "y", { get : function () { return this._y }, set : function (c) { this._setY(c) }, enumerable : !0, configurable : !0 }); a.prototype._setY = function (c) { b.NumberUtils.isNumber(c) && this._y != c && (this._y = c, this._setDirty(), this._setParentSizeDirty()) }; Object.defineProperty(a.prototype, "scaleX", { get : function () { return this._scaleX }, set : function (c) { b.NumberUtils.isNumber(c) && this._scaleX != c && (this._scaleX = c, this._setDirty(), this._setParentSizeDirty()) }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "scaleY", { get : function () { return this._scaleY }, set : function (c) { b.NumberUtils.isNumber(c) && this._scaleY != c && (this._scaleY = c, this._setDirty(), this._setParentSizeDirty()) }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "anchorOffsetX", { get : function () { return this._anchorOffsetX }, set : function (c) { b.NumberUtils.isNumber(c) && this._anchorOffsetX != c && (this._anchorOffsetX = c, this._setDirty(), this._setParentSizeDirty()) }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "anchorOffsetY", { get : function () { return this._anchorOffsetY }, set : function (c) { b.NumberUtils.isNumber(c) && this._anchorOffsetY != c && (this._anchorOffsetY = c, this._setDirty(), this._setParentSizeDirty()) }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "anchorX", { get : function () { return this._anchorX }, set : function (c) { this._setAnchorX(c) }, enumerable : !0, configurable : !0 }); a.prototype._setAnchorX = function (c) { b.NumberUtils.isNumber(c) && this._anchorX != c && (this._anchorX = c, this._setDirty(), this._setParentSizeDirty()) }; Object.defineProperty(a.prototype, "anchorY", { get : function () { return this._anchorY }, set : function (c) { this._setAnchorY(c) }, enumerable : !0, configurable : !0 }); a.prototype._setAnchorY = function (c) { b.NumberUtils.isNumber(c) && this._anchorY != c && (this._anchorY = c, this._setDirty(), this._setParentSizeDirty()) }; Object.defineProperty(a.prototype, "visible", { get : function () { return this._visible }, set : function (c) { this._setVisible(c) }, enumerable : !0, configurable : !0 }); a.prototype._setVisible = function (c) { this._visible != c && (this._visible = c, this._setSizeDirty()) }; Object.defineProperty(a.prototype, "rotation", { get : function () { return this._rotation }, set : function (c) { b.NumberUtils.isNumber(c) && this._rotation != c && (this._rotation = c, this._setSizeDirty()) }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "alpha", { get : function () { return this._alpha }, set : function (c) { b.NumberUtils.isNumber(c) && this._alpha != c && (this._alpha = c, this._setDirty(), this._setCacheDirty()) }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "skewX", { get : function () { return this._skewX }, set : function (c) { b.NumberUtils.isNumber(c) && this._skewX != c && (this._skewX = c, this._setSizeDirty()) }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "skewY", { get : function () { return this._skewY }, set : function (c) { b.NumberUtils.isNumber(c) && this._skewY != c && (this._skewY = c, this._setSizeDirty()) }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "touchEnabled", { get : function () { return this._touchEnabled }, set : function (c) { this._setTouchEnabled(c) }, enumerable : !0, configurable : !0 }); a.prototype._setTouchEnabled = function (c) { this._touchEnabled = c }; Object.defineProperty(a.prototype, "scrollRect", { get : function () { return this._scrollRect }, set : function (c) { this._setScrollRect(c) }, enumerable : !0, configurable : !0 }); a.prototype._setScrollRect = function (c) { this._scrollRect = c; this._setSizeDirty() }; Object.defineProperty(a.prototype, "measuredWidth", { get : function () { return this._measureBounds().width }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "measuredHeight", { get : function () { return this._measureBounds().height }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "explicitWidth", { get : function () { return this._explicitWidth }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "explicitHeight", { get : function () { return this._explicitHeight }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "width", { get : function () { return this._getSize(b.Rectangle.identity).width }, set : function (c) { this._setWidth(c) }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "height", { get : function () { return this._getSize(b.Rectangle.identity).height }, set : function (c) { this._setHeight(c) }, enumerable : !0, configurable : !0 }); a.prototype._setWidth = function (c) { this._setSizeDirty(); this._setCacheDirty(); this._explicitWidth = c; this._hasWidthSet = b.NumberUtils.isNumber(c) }; a.prototype._setHeight = function (c) { this._setSizeDirty(); this._setCacheDirty(); this._explicitHeight = c; this._hasHeightSet = b.NumberUtils.isNumber(c) }; a.prototype._draw = function (c) { if (this._visible && !this.drawCacheTexture(c)) { this._colorTransform && c.setGlobalColorTransform(this._colorTransform.matrix); c.setAlpha(this.worldAlpha, this.blendMode); c.setTransform(this._worldTransform); var a = this.mask || this._scrollRect; a && c.pushMask(a); this._render(c); a && c.popMask(); this._colorTransform && c.setGlobalColorTransform(null) } this.destroyCacheBounds() }; a.prototype.drawCacheTexture = function (c) { if (!1 == this._cacheAsBitmap) return !1; if (this._cacheDirty || null == this._texture_to_render || Math.round(this.width) != Math.round(this._texture_to_render._sourceWidth) || Math.round(this.height) != Math.round(this._texture_to_render._sourceHeight)) this._cacheDirty = !this._makeBitmapCache(); if (null == this._texture_to_render) return !1; var a = this._texture_to_render, h = a._offsetX, d = a._offsetY, e = a._textureWidth, a = a._textureHeight; this._updateTransform(); c.setAlpha(this.worldAlpha, this.blendMode); c.setTransform(this._worldTransform); var f = b.MainContext.instance.rendererContext.texture_scale_factor; b.RenderFilter.getInstance().drawImage(c, this, 0, 0, e * f, a * f, h, d, e, a); return !0 }; a.prototype._updateTransform = function () { this._calculateWorldTransform() }; a.prototype._calculateWorldTransform = function () { var c = this._worldTransform, a = this._parent; c.identityMatrix(a._worldTransform); this._getMatrix(c); var b = this._scrollRect; b && c.append(1, 0, 0, 1, -b.x, -b.y); this.worldAlpha = a.worldAlpha * this._alpha }; a.prototype._render = function (c) {}; a.prototype.getBounds = function (c, a) { void 0 === a && (a = !0); var h = this._measureBounds(), d = this._hasWidthSet ? this._explicitWidth : h.width, e = this._hasHeightSet ? this._explicitHeight : h.height; this._rectW = h.width; this._rectH = h.height; this._clearSizeDirty(); var f = h.x, h = h.y, k = 0, m = 0; a && (0 != this._anchorX || 0 != this._anchorY ? (k = d * this._anchorX, m = e * this._anchorY) : (k = this._anchorOffsetX, m = this._anchorOffsetY)); this._cacheBounds.initialize(f - k, h - m, d, e); d = this._cacheBounds; c || (c = new b.Rectangle); return c.initialize(d.x, d.y, d.width, d.height) }; a.prototype.destroyCacheBounds = function () { this._cacheBounds.x = 0; this._cacheBounds.y = 0; this._cacheBounds.width = 0; this._cacheBounds.height = 0 }; a.prototype._getConcatenatedMatrix = function () { for (var c = a.identityMatrixForGetConcatenated.identity(), l = this; null != l; ) { if (0 != l._anchorX || 0 != l._anchorY) { var h = l._getSize(b.Rectangle.identity); c.prependTransform(l._x, l._y, l._scaleX, l._scaleY, l._rotation, l._skewX, l._skewY, h.width * l._anchorX, h.height * l._anchorY) } else c.prependTransform(l._x, l._y, l._scaleX, l._scaleY, l._rotation, l._skewX, l._skewY, l._anchorOffsetX, l._anchorOffsetY); l._scrollRect && c.prepend(1, 0, 0, 1, -l._scrollRect.x, -l._scrollRect.y); l = l._parent } return c }; a.prototype.localToGlobal = function (c, a, h) { void 0 === c && (c = 0); void 0 === a && (a = 0); var d = this._getConcatenatedMatrix(); d.append(1, 0, 0, 1, c, a); h || (h = new b.Point); h.x = d.tx; h.y = d.ty; return h }; a.prototype.globalToLocal = function (c, a, h) { void 0 === c && (c = 0); void 0 === a && (a = 0); var d = this._getConcatenatedMatrix(); d.invert(); d.append(1, 0, 0, 1, c, a); h || (h = new b.Point); h.x = d.tx; h.y = d.ty; return h }; a.prototype.hitTest = function (c, a, h) { void 0 === h && (h = !1); if (!this._visible || !h && !this._touchEnabled) return null; h = this._getSize(b.Rectangle.identity); return 0 <= c && c < h.width && 0 <= a && a < h.height ? this.mask || this._scrollRect ? this._scrollRect && c > this._scrollRect.x && a > this._scrollRect.y && c < this._scrollRect.x + this._scrollRect.width && a < this._scrollRect.y + this._scrollRect.height || this.mask && this.mask.x <= c && c < this.mask.x + this.mask.width && this.mask.y <= a && a < this.mask.y + this.mask.height ? this : null : this : null }; a.prototype.hitTestPoint = function (c, a, h) { c = this.globalToLocal(c, a); return h ? (this._hitTestPointTexture || (this._hitTestPointTexture = new b.RenderTexture), h = this._hitTestPointTexture, h.drawToTexture(this), 0 != h.getPixel32(c.x - this._hitTestPointTexture._offsetX, c.y - this._hitTestPointTexture._offsetY)[3] ? !0 : !1) : !!this.hitTest(c.x, c.y, !0) }; a.prototype._getMatrix = function (c) { c || (c = b.Matrix.identity.identity()); var a, h; h = this._getOffsetPoint(); a = h.x; h = h.y; var d = this.__hack_local_matrix; d ? (c.append(d.a, d.b, d.c, d.d, d.tx, d.ty), c.append(1, 0, 0, 1, -a, -h)) : c.appendTransform(this._x, this._y, this._scaleX, this._scaleY, this._rotation, this._skewX, this._skewY, a, h); return c }; a.prototype._getSize = function (c) { return this._hasHeightSet && this._hasWidthSet ? c.initialize(0, 0, this._explicitWidth, this._explicitHeight) : this._measureSize(c) }; a.prototype._measureSize = function (c) { this._sizeDirty ? (c = this._measureBounds(), this._rectW = c.width, this._rectH = c.height, this._clearSizeDirty()) : (c.width = this._rectW, c.height = this._rectH); c.x = 0; c.y = 0; return c }; a.prototype._measureBounds = function () { return b.Rectangle.identity.initialize(0, 0, 0, 0) }; a.prototype._getOffsetPoint = function () { var c = this._anchorOffsetX, a = this._anchorOffsetY; if (0 != this._anchorX || 0 != this._anchorY) a = this._getSize(b.Rectangle.identity), c = this._anchorX * a.width, a = this._anchorY * a.height; var h = b.Point.identity; h.x = c; h.y = a; return h }; a.prototype._onAddToStage = function () { this._stage = b.MainContext.instance.stage; b.DisplayObjectContainer.__EVENT__ADD_TO_STAGE_LIST.push(this) }; a.prototype._onRemoveFromStage = function () { b.DisplayObjectContainer.__EVENT__REMOVE_FROM_STAGE_LIST.push(this) }; Object.defineProperty(a.prototype, "stage", { get : function () { return this._stage }, enumerable : !0, configurable : !0 }); a.prototype.addEventListener = function (c, l, h, e, g) { void 0 === e && (e = !1); void 0 === g && (g = 0); d.prototype.addEventListener.call(this, c, l, h, e, g); ((e = c == b.Event.ENTER_FRAME) || c == b.Event.RENDER) && this._insertEventBin(e ? a._enterFrameCallBackList : a._renderCallBackList, l, h, g, this) }; a.prototype.removeEventListener = function (c, l, h, e) { void 0 === e && (e = !1); d.prototype.removeEventListener.call(this, c, l, h, e); ((e = c == b.Event.ENTER_FRAME) || c == b.Event.RENDER) && this._removeEventBin(e ? a._enterFrameCallBackList : a._renderCallBackList, l, h, this) }; a.prototype.dispatchEvent = function (c) { if (!c._bubbles) return d.prototype.dispatchEvent.call(this, c); for (var a = [], b = this; b; ) a.push(b), b = b._parent; c._reset(); this._dispatchPropagationEvent(c, a); return !c._isDefaultPrevented }; a.prototype._dispatchPropagationEvent = function (c, a, b) { b = a.length; for (var d = 1, e = b - 1; 0 <= e; e--) { var f = a[e]; c._currentTarget = f; c._target = this; c._eventPhase = d; f._notifyListener(c); if (c._isPropagationStopped || c._isPropagationImmediateStopped) return } f = a[0]; c._currentTarget = f; c._target = this; c._eventPhase = 2; f._notifyListener(c); if (!c._isPropagationStopped && !c._isPropagationImmediateStopped) for (d = 3, e = 1; e < b && (f = a[e], c._currentTarget = f, c._target = this, c._eventPhase = d, f._notifyListener(c), !c._isPropagationStopped && !c._isPropagationImmediateStopped); e++); }; a.prototype.willTrigger = function (c) { for (var a = this; a; ) { if (a.hasEventListener(c)) return !0; a = a._parent } return !1 }; Object.defineProperty(a.prototype, "cacheAsBitmap", { get : function () { return this._cacheAsBitmap }, set : function (c) { (this._cacheAsBitmap = c) ? b.callLater(this._makeBitmapCache, this) : this._texture_to_render = null }, enumerable : !0, configurable : !0 }); a.prototype._makeBitmapCache = function () { this.renderTexture || (this.renderTexture = new b.RenderTexture); var c = this.renderTexture.drawToTexture(this); this._texture_to_render = c ? this.renderTexture : null; return c }; a.prototype._setCacheDirty = function (c) { void 0 === c && (c = !0); this._cacheDirty = c }; a.getTransformBounds = function (c, a) { var b = c.x, d = c.y, e = c.width, f = c.height; (b || d) && a.appendTransform(0, 0, 1, 1, 0, 0, 0, -b, -d); var k = e * a.a, e = e * a.b, m = f * a.c, f = f * a.d, p = a.tx, q = a.ty, r = p, t = p, s = q, u = q; (b = k + p) < r ? r = b : b > t && (t = b); (b = k + m + p) < r ? r = b : b > t && (t = b); (b = m + p) < r ? r = b : b > t && (t = b); (d = e + q) < s ? s = d : d > u && (u = d); (d = e + f + q) < s ? s = d : d > u && (u = d); (d = f + q) < s ? s = d : d > u && (u = d); return c.initialize(r, s, t - r, u - s) }; Object.defineProperty(a.prototype, "colorTransform", { get : function () { return this._colorTransform }, set : function (c) { this._colorTransform = c }, enumerable : !0, configurable : !0 }); a.identityMatrixForGetConcatenated = new b.Matrix; a._enterFrameCallBackList = []; a._renderCallBackList = []; return a } (b.EventDispatcher); b.DisplayObject = e; e.prototype.__class__ = "egret.DisplayObject"; e = function () { function b() { this.matrix = null } b.prototype.updateColor = function (a, c, b, h, d, e, f, k) {}; return b } (); b.ColorTransform = e; e.prototype.__class__ = "egret.ColorTransform" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this._touchChildren = !0; this._children = [] } __extends(a, d); Object.defineProperty(a.prototype, "touchChildren", { get : function () { return this._touchChildren }, set : function (c) { this._touchChildren = c }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "numChildren", { get : function () { return this._children.length }, enumerable : !0, configurable : !0 }); a.prototype.setChildIndex = function (c, a) { this.doSetChildIndex(c, a) }; a.prototype.doSetChildIndex = function (c, a) { var h = this._children.indexOf(c); 0 > h && b.Logger.fatal("child\u4e0d\u5728\u5f53\u524d\u5bb9\u5668\u5185"); this._children.splice(h, 1); 0 > a || this._children.length <= a ? this._children.push(c) : this._children.splice(a, 0, c) }; a.prototype.addChild = function (c) { var a = this._children.length; c._parent == this && a--; return this._doAddChild(c, a) }; a.prototype.addChildAt = function (c, a) { return this._doAddChild(c, a) }; a.prototype._doAddChild = function (c, l, h) { void 0 === h && (h = !0); if (c == this) return c; if (0 > l || l > this._children.length) return b.Logger.fatal("\u63d0\u4f9b\u7684\u7d22\u5f15\u8d85\u51fa\u8303\u56f4"), c; var d = c._parent; if (d == this) return this.doSetChildIndex(c, l), c; d && (l = d._children.indexOf(c), 0 <= l && d._doRemoveChild(l)); this._children.splice(l, 0, c); c._parentChanged(this); h && c.dispatchEventWith(b.Event.ADDED, !0); if (this._stage) for (c._onAddToStage(), l = a.__EVENT__ADD_TO_STAGE_LIST; 0 < l.length; ) l.shift().dispatchEventWith(b.Event.ADDED_TO_STAGE); c._setDirty(); this._setSizeDirty(); return c }; a.prototype.removeChild = function (c) { c = this._children.indexOf(c); if (0 <= c) return this._doRemoveChild(c); b.Logger.fatal("child\u672a\u88abaddChild\u5230\u8be5parent"); return null }; a.prototype.removeChildAt = function (c) { if (0 <= c && c < this._children.length) return this._doRemoveChild(c); b.Logger.fatal("\u63d0\u4f9b\u7684\u7d22\u5f15\u8d85\u51fa\u8303\u56f4"); return null }; a.prototype._doRemoveChild = function (c, l) { void 0 === l && (l = !0); var h = this._children, d = h[c]; l && d.dispatchEventWith(b.Event.REMOVED, !0); if (this._stage) { d._onRemoveFromStage(); for (var e = a.__EVENT__REMOVE_FROM_STAGE_LIST; 0 < e.length; ) { var f = e.shift(); f.dispatchEventWith(b.Event.REMOVED_FROM_STAGE); f._stage = null } } d._parentChanged(null); h.splice(c, 1); this._setSizeDirty(); return d }; a.prototype.getChildAt = function (c) { if (0 <= c && c < this._children.length) return this._children[c]; b.Logger.fatal("\u63d0\u4f9b\u7684\u7d22\u5f15\u8d85\u51fa\u8303\u56f4"); return null }; a.prototype.contains = function (c) { for (; c; ) { if (c == this) return !0; c = c._parent } return !1 }; a.prototype.swapChildrenAt = function (c, a) { 0 <= c && c < this._children.length && 0 <= a && a < this._children.length ? this._swapChildrenAt(c, a) : b.Logger.fatal("\u63d0\u4f9b\u7684\u7d22\u5f15\u8d85\u51fa\u8303\u56f4") }; a.prototype.swapChildren = function (c, a) { var h = this._children.indexOf(c), d = this._children.indexOf(a); -1 == h || -1 == d ? b.Logger.fatal("child\u672a\u88abaddChild\u5230\u8be5parent") : this._swapChildrenAt(h, d) }; a.prototype._swapChildrenAt = function (c, a) { if (c != a) { var b = this._children, d = b[c]; b[c] = b[a]; b[a] = d } }; a.prototype.getChildIndex = function (c) { return this._children.indexOf(c) }; a.prototype.removeChildren = function () { for (var c = this._children.length - 1; 0 <= c; c--) this._doRemoveChild(c) }; a.prototype._updateTransform = function () { if (this._visible) { d.prototype._updateTransform.call(this); for (var c = 0, a = this._children.length; c < a; c++) this._children[c]._updateTransform() } }; a.prototype._render = function (c) { for (var a = 0, b = this._children.length; a < b; a++) this._children[a]._draw(c) }; a.prototype._measureBounds = function () { for (var c = 0, a = 0, h = 0, d = 0, e = this._children.length, f = 0; f < e; f++) { var k = this._children[f]; if (k._visible) { var m = k.getBounds(b.Rectangle.identity, !1), p = m.x, q = m.y, r = m.width, m = m.height, k = k._getMatrix(), k = b.DisplayObject.getTransformBounds(b.Rectangle.identity.initialize(p, q, r, m), k), p = k.x, q = k.y, r = k.width + k.x, k = k.height + k.y; if (p < c || 0 == f) c = p; if (r > a || 0 == f) a = r; if (q < h || 0 == f) h = q; if (k > d || 0 == f) d = k } } return b.Rectangle.identity.initialize(c, h, a - c, d - h) }; a.prototype.hitTest = function (c, a, h) { void 0 === h && (h = !1); var e; if (!this._visible) return null; if (this._scrollRect) { if (c < this._scrollRect.x || a < this._scrollRect.y || c > this._scrollRect.x + this._scrollRect.width || a > this._scrollRect.y + this._scrollRect.height) return null } else if (this.mask && (this.mask.x > c || c > this.mask.x + this.mask.width || this.mask.y > a || a > this.mask.y + this.mask.height)) return null; for (var g = this._children, f = this._touchChildren, k = g.length - 1; 0 <= k; k--) { var m = g[k], p = m._getMatrix(), q = m._scrollRect; q && p.append(1, 0, 0, 1, -q.x, -q.y); p.invert(); p = b.Matrix.transformCoords(p, c, a); if (m = m.hitTest(p.x, p.y, !0)) { if (!f) return this; if (m._touchEnabled && f) return m; e = this } } return e ? e : this._texture_to_render || this.graphics ? d.prototype.hitTest.call(this, c, a, h) : null }; a.prototype._onAddToStage = function () { d.prototype._onAddToStage.call(this); for (var c = this._children.length, a = 0; a < c; a++) this._children[a]._onAddToStage() }; a.prototype._onRemoveFromStage = function () { d.prototype._onRemoveFromStage.call(this); for (var c = this._children.length, a = 0; a < c; a++) this._children[a]._onRemoveFromStage() }; a.prototype.getChildByName = function (c) { for (var a = this._children, b = a.length, d, e = 0; e < b; e++) if (d = a[e], d.name == c) return d; return null }; a.__EVENT__ADD_TO_STAGE_LIST = []; a.__EVENT__REMOVE_FROM_STAGE_LIST = []; return a } (b.DisplayObject); b.DisplayObjectContainer = e; e.prototype.__class__ = "egret.DisplayObjectContainer" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(c, a) { void 0 === c && (c = 480); void 0 === a && (a = 800); d.call(this); this.touchEnabled = !0; this._stage = this; this._stageWidth = c; this._stageHeight = a } __extends(a, d); a.prototype.invalidate = function () { a._invalidateRenderFlag = !0 }; Object.defineProperty(a.prototype, "scaleMode", { get : function () { return this._scaleMode }, set : function (c) { this._scaleMode != c && (this._scaleMode = c, this.setResolutionPolicy()) }, enumerable : !0, configurable : !0 }); a.prototype.changeSize = function () { this.setResolutionPolicy(); this.dispatchEventWith(b.Event.RESIZE) }; a.prototype.setResolutionPolicy = function () { var c = {}; c[b.StageScaleMode.NO_SCALE] = new b.NoScale; c[b.StageScaleMode.SHOW_ALL] = new b.ShowAll; c[b.StageScaleMode.NO_BORDER] = new b.FixedWidth; c[b.StageScaleMode.EXACT_FIT] = new b.FullScreen; c = c[this._scaleMode]; if (!c) throw Error("\u4f7f\u7528\u4e86\u5c1a\u672a\u5b9e\u73b0\u7684ScaleMode"); var a = new b.EqualToFrame, c = new b.ResolutionPolicy(a, c); b.StageDelegate.getInstance()._setResolutionPolicy(c); this._stageWidth = b.StageDelegate.getInstance()._stageWidth; this._stageHeight = b.StageDelegate.getInstance()._stageHeight }; Object.defineProperty(a.prototype, "stageWidth", { get : function () { return this._stageWidth }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "stageHeight", { get : function () { return this._stageHeight }, enumerable : !0, configurable : !0 }); a.prototype.hitTest = function (c, a, d) { if (!this._touchEnabled) return null; var e; if (!this._touchChildren) return this; d = this._children; for (var g = d.length - 1; 0 <= g; g--) { e = d[g]; var f = e._getMatrix(), k = e._scrollRect; k && f.append(1, 0, 0, 1, -k.x, -k.y); f.invert(); f = b.Matrix.transformCoords(f, c, a); if ((e = e.hitTest(f.x, f.y, !0)) && e._touchEnabled) return e } return this }; a.prototype.getBounds = function (c) { c || (c = new b.Rectangle); return c.initialize(0, 0, this._stageWidth, this._stageHeight) }; a.prototype._updateTransform = function () { for (var c = 0, a = this._children.length; c < a; c++) this._children[c]._updateTransform() }; Object.defineProperty(a.prototype, "focus", { get : function () { return null }, enumerable : !0, configurable : !0 }); a._invalidateRenderFlag = !1; return a } (b.DisplayObjectContainer); b.Stage = e; e.prototype.__class__ = "egret.Stage" })(egret || (egret = {})); (function (b) { var e = function () { function b() {} b.NO_BORDER = "noBorder"; b.NO_SCALE = "noScale"; b.SHOW_ALL = "showAll"; b.EXACT_FIT = "exactFit"; return b } (); b.StageScaleMode = e; e.prototype.__class__ = "egret.StageScaleMode" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(c) { void 0 === c && (c = null); d.call(this); this._lastTouchPosition = new b.Point(0, 0); this._lastTouchTime = 0; this._lastTouchEvent = null; this._velocitys = []; this._content = null; this._horizontalScrollPolicy = this._verticalScrollPolicy = "auto"; this._scrollTop = this._scrollLeft = 0; this._vCanScroll = this._hCanScroll = !1; this.touchEnabled = !0; c && this.setContent(c) } __extends(a, d); a.prototype.setContent = function (c) { this._content !== c && (this.removeContent(), c && (this._content = c, d.prototype.addChild.call(this, c), this._addEvents())) }; a.prototype.removeContent = function () { this._content && (this._removeEvents(), d.prototype.removeChildAt.call(this, 0)); this._content = null }; Object.defineProperty(a.prototype, "verticalScrollPolicy", { get : function () { return this._verticalScrollPolicy }, set : function (c) { c != this._verticalScrollPolicy && (this._verticalScrollPolicy = c) }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "horizontalScrollPolicy", { get : function () { return this._horizontalScrollPolicy }, set : function (c) { c != this._horizontalScrollPolicy && (this._horizontalScrollPolicy = c) }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "scrollLeft", { get : function () { return this._scrollLeft }, set : function (c) { c != this._scrollLeft && (this._scrollLeft = c, this._validatePosition(!1, !0), this._updateContentPosition()) }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "scrollTop", { get : function () { return this._scrollTop }, set : function (c) { c != this._scrollTop && (this._scrollTop = c, this._validatePosition(!0, !1), this._updateContentPosition()) }, enumerable : !0, configurable : !0 }); a.prototype.setScrollPosition = function (c, a, b) { void 0 === b && (b = !1); if (!b || 0 != c || 0 != a) if (b || this._scrollTop != c || this._scrollLeft != a) { if (b) { b = this._isOnTheEdge(!0); var d = this._isOnTheEdge(!1); this._scrollTop += b ? c / 2 : c; this._scrollLeft += d ? a / 2 : a } else this._scrollTop = c, this._scrollLeft = a; this._validatePosition(!0, !0); this._updateContentPosition() } }; a.prototype._isOnTheEdge = function (c) { void 0 === c && (c = !0); var a = this._scrollTop, b = this._scrollLeft; return c ? 0 > a || a > this.getMaxScrollTop() : 0 > b || b > this.getMaxScrollLeft() }; a.prototype._validatePosition = function (c, a) { void 0 === c && (c = !1); void 0 === a && (a = !1); if (c) { var b = this.height, d = this._getContentHeight(); this._scrollTop = Math.max(this._scrollTop, (0 - b) / 2); this._scrollTop = Math.min(this._scrollTop, d > b ? d - b / 2 : d / 2) } a && (b = this.width, d = this._getContentWidth(), this._scrollLeft = Math.max(this._scrollLeft, (0 - b) / 2), this._scrollLeft = Math.min(this._scrollLeft, d > b ? d - b / 2 : d / 2)) }; a.prototype._setWidth = function (c) { this._explicitWidth != c && (d.prototype._setWidth.call(this, c), this._updateContentPosition()) }; a.prototype._setHeight = function (c) { this._explicitHeight != c && (d.prototype._setHeight.call(this, c), this._updateContentPosition()) }; a.prototype._updateContentPosition = function () { var c = this.getBounds(b.Rectangle.identity); this.scrollRect = new b.Rectangle(this._scrollLeft, this._scrollTop, c.width, c.height); this.dispatchEvent(new b.Event(b.Event.CHANGE)) }; a.prototype._checkScrollPolicy = function () { var c = this.__checkScrollPolicy(this._horizontalScrollPolicy, this._getContentWidth(), this.width); this._hCanScroll = c; var a = this.__checkScrollPolicy(this._verticalScrollPolicy, this._getContentHeight(), this.height); this._vCanScroll = a; return c || a }; a.prototype.__checkScrollPolicy = function (c, a, b) { return "on" == c ? !0 : "off" == c ? !1 : a > b }; a.prototype._addEvents = function () { this.addEventListener(b.TouchEvent.TOUCH_BEGIN, this._onTouchBegin, this); this.addEventListener(b.TouchEvent.TOUCH_BEGIN, this._onTouchBeginCapture, this, !0); this.addEventListener(b.TouchEvent.TOUCH_END, this._onTouchEndCapture, this, !0) }; a.prototype._removeEvents = function () { this.removeEventListener(b.TouchEvent.TOUCH_BEGIN, this._onTouchBegin, this); this.removeEventListener(b.TouchEvent.TOUCH_BEGIN, this._onTouchBeginCapture, this, !0); this.removeEventListener(b.TouchEvent.TOUCH_END, this._onTouchEndCapture, this, !0) }; a.prototype._onTouchBegin = function (c) { !c._isDefaultPrevented && this._checkScrollPolicy() && (b.Tween.removeTweens(this), this.stage.addEventListener(b.TouchEvent.TOUCH_MOVE, this._onTouchMove, this), this.stage.addEventListener(b.TouchEvent.TOUCH_END, this._onTouchEnd, this), this.stage.addEventListener(b.TouchEvent.LEAVE_STAGE, this._onTouchEnd, this), this.addEventListener(b.Event.ENTER_FRAME, this._onEnterFrame, this), this._logTouchEvent(c), c.preventDefault()) }; a.prototype._onTouchBeginCapture = function (c) { var l = this._checkScrollPolicy(); if (l) { for (var d = c.target; d != this; ) { if (d instanceof a && (l = d._checkScrollPolicy())) return; d = d.parent } c.stopPropagation(); this.delayTouchBeginEvent = this.cloneTouchEvent(c); this.touchBeginTimer || (this.touchBeginTimer = new b.Timer(100, 1), this.touchBeginTimer.addEventListener(b.TimerEvent.TIMER_COMPLETE, this._onTouchBeginTimer, this)); this.touchBeginTimer.start(); this._onTouchBegin(c) } }; a.prototype._onTouchEndCapture = function (c) { this.delayTouchBeginEvent && this._onTouchBeginTimer() }; a.prototype._onTouchBeginTimer = function () { this.touchBeginTimer.stop(); var c = this.delayTouchBeginEvent; this.delayTouchBeginEvent = null; this.dispatchPropagationEvent(c) }; a.prototype.dispatchPropagationEvent = function (c) { for (var a = [], b = c._target; b; ) a.push(b), b = b.parent; for (var d = this._content, e = 1; ; e += 2) { b = a[e]; if (!b || b === d) break; a.unshift(b) } this._dispatchPropagationEvent(c, a) }; a.prototype._dispatchPropagationEvent = function (c, a, b) { for (var d = a.length, e = 0; e < d; e++) { var f = a[e]; c._currentTarget = f; c._target = this; c._eventPhase = e < b ? 1 : e == b ? 2 : 3; f._notifyListener(c); if (c._isPropagationStopped || c._isPropagationImmediateStopped) break } }; a.prototype._onTouchMove = function (c) { if (this._lastTouchPosition.x != c.stageX || this._lastTouchPosition.y != c.stageY) { this.delayTouchBeginEvent && (this.delayTouchBeginEvent = null, this.touchBeginTimer.stop()); this.touchChildren = !1; var a = this._getPointChange(c); this.setScrollPosition(a.y, a.x, !0); this._calcVelocitys(c); this._logTouchEvent(c) } }; a.prototype._onTouchEnd = function (c) { this.touchChildren = !0; b.MainContext.instance.stage.removeEventListener(b.TouchEvent.TOUCH_MOVE, this._onTouchMove, this); b.MainContext.instance.stage.removeEventListener(b.TouchEvent.TOUCH_END, this._onTouchEnd, this); b.MainContext.instance.stage.removeEventListener(b.TouchEvent.LEAVE_STAGE, this._onTouchEnd, this); this.removeEventListener(b.Event.ENTER_FRAME, this._onEnterFrame, this); this._moveAfterTouchEnd() }; a.prototype._onEnterFrame = function (c) { c = b.getTimer(); 100 < c - this._lastTouchTime && 300 > c - this._lastTouchTime && this._calcVelocitys(this._lastTouchEvent) }; a.prototype._logTouchEvent = function (c) { this._lastTouchPosition.x = c.stageX; this._lastTouchPosition.y = c.stageY; this._lastTouchEvent = this.cloneTouchEvent(c); this._lastTouchTime = b.getTimer() }; a.prototype._getPointChange = function (c) { return { x : !1 === this._hCanScroll ? 0 : this._lastTouchPosition.x - c.stageX, y : !1 === this._vCanScroll ? 0 : this._lastTouchPosition.y - c.stageY } }; a.prototype._calcVelocitys = function (c) { var a = b.getTimer(); if (0 == this._lastTouchTime) this._lastTouchTime = a; else { var d = this._getPointChange(c), a = a - this._lastTouchTime; d.x /= a; d.y /= a; this._velocitys.push(d); 5 < this._velocitys.length && this._velocitys.shift(); this._lastTouchPosition.x = c.stageX; this._lastTouchPosition.y = c.stageY } }; a.prototype._getContentWidth = function () { return this._content.explicitWidth || this._content.width }; a.prototype._getContentHeight = function () { return this._content.explicitHeight || this._content.height }; a.prototype.getMaxScrollLeft = function () { var c = this._getContentWidth() - this.width; return Math.max(0, c) }; a.prototype.getMaxScrollTop = function () { var c = this._getContentHeight() - this.height; return Math.max(0, c) }; a.prototype._moveAfterTouchEnd = function () { if (0 != this._velocitys.length) { for (var c = 0, b = 0, d = 0, e = 0; e < this._velocitys.length; e++) var g = this._velocitys[e], f = a.weight[e], c = c + g.x * f, b = b + g.y * f, d = d + f; this._velocitys.length = 0; c /= d; b /= d; g = Math.abs(c); d = Math.abs(b); f = this.getMaxScrollLeft(); e = this.getMaxScrollTop(); c = 0.02 < g ? this.getAnimationDatas(c, this._scrollLeft, f) : { position : this._scrollLeft, duration : 1 }; b = 0.02 < d ? this.getAnimationDatas(b, this._scrollTop, e) : { position : this._scrollTop, duration : 1 }; this.setScrollLeft(c.position, c.duration); this.setScrollTop(b.position, b.duration) } }; a.prototype.setScrollTop = function (c, a) { void 0 === a && (a = 0); var d = Math.min(this.getMaxScrollTop(), Math.max(c, 0)); if (0 == a) return this.scrollTop = d, null; var e = b.Tween.get(this).to({ scrollTop : c }, a, b.Ease.quartOut); d != c && e.to({ scrollTop : d }, 300, b.Ease.quintOut) }; a.prototype.setScrollLeft = function (c, a) { void 0 === a && (a = 0); var d = Math.min(this.getMaxScrollLeft(), Math.max(c, 0)); if (0 == a) return this.scrollLeft = d, null; var e = b.Tween.get(this).to({ scrollLeft : c }, a, b.Ease.quartOut); d != c && e.to({ scrollLeft : d }, 300, b.Ease.quintOut) }; a.prototype.getAnimationDatas = function (c, a, b) { var d = Math.abs(c), e = 0, f = a + 500 * c; if (0 > f || f > b) for (f = a; Infinity != Math.abs(c) && 0.02 < Math.abs(c); ) f += c, c = 0 > f || f > b ? 0.998 * c * 0.95 : 0.998 * c, e++; else e = 500 * -Math.log(0.02 / d); return { position : Math.min(b + 50, Math.max(f, -50)), duration : e } }; a.prototype.cloneTouchEvent = function (c) { var a = new b.TouchEvent(c._type, c._bubbles, c.cancelable); a.touchPointID = c.touchPointID; a._stageX = c._stageX; a._stageY = c._stageY; a.ctrlKey = c.ctrlKey; a.altKey = c.altKey; a.shiftKey = c.shiftKey; a.touchDown = c.touchDown; a._isDefaultPrevented = !1; a._target = c._target; return a }; a.prototype.throwNotSupportedError = function () { throw Error("\u6b64\u65b9\u6cd5\u5728ScrollView\u5185\u4e0d\u53ef\u7528!"); }; a.prototype.addChild = function (c) { this.throwNotSupportedError(); return null }; a.prototype.addChildAt = function (c, a) { this.throwNotSupportedError(); return null }; a.prototype.removeChild = function (c) { this.throwNotSupportedError(); return null }; a.prototype.removeChildAt = function (c) { this.throwNotSupportedError(); return null }; a.prototype.setChildIndex = function (c, a) { this.throwNotSupportedError() }; a.prototype.swapChildren = function (c, a) { this.throwNotSupportedError() }; a.prototype.swapChildrenAt = function (c, a) { this.throwNotSupportedError() }; a.prototype.hitTest = function (c, a, h) { void 0 === h && (h = !1); var e = d.prototype.hitTest.call(this, c, a, h); return e ? e : b.DisplayObject.prototype.hitTest.call(this, c, a, h) }; a.weight = [1, 1.33, 1.66, 2, 2.33]; return a } (b.DisplayObjectContainer); b.ScrollView = e; e.prototype.__class__ = "egret.ScrollView" })(egret || (egret = {})); (function (b) { var e = function () { function b() {} b.REPEAT = "repeat"; b.SCALE = "scale"; return b } (); b.BitmapFillMode = e; e.prototype.__class__ = "egret.BitmapFillMode" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(c) { d.call(this); this.debug = !1; this.debugColor = 16711680; this.scale9Grid = null; this.fillMode = "scale"; c && (this._texture = c, this._setSizeDirty()) } __extends(a, d); Object.defineProperty(a.prototype, "texture", { get : function () { return this._texture }, set : function (c) { c != this._texture && (this._setSizeDirty(), this._texture = c) }, enumerable : !0, configurable : !0 }); a.prototype._render = function (c) { var b = this._texture; b ? (this._texture_to_render = b, a._drawBitmap(c, this._hasWidthSet ? this._explicitWidth : b._textureWidth, this._hasHeightSet ? this._explicitHeight : b._textureHeight, this)) : this._texture_to_render = null }; a._drawBitmap = function (c, b, d, e) { var g = e._texture_to_render; if (g) { var f = g._textureWidth, k = g._textureHeight; if ("scale" == e.fillMode) { var m = e.scale9Grid || g.scale9Grid; if (m && f - m.width < b && k - m.height < d) a.drawScale9GridImage(c, e, m, b, d); else { var m = g._offsetX, p = g._offsetY, q = g._bitmapWidth || f, r = g._bitmapHeight || k; b /= f; m = Math.round(m * b); b = Math.round(q * b); d /= k; p = Math.round(p * d); d = Math.round(r * d); a.renderFilter.drawImage(c, e, g._bitmapX, g._bitmapY, q, r, m, p, b, d) } } else a.drawRepeatImage(c, e, b, d, e.fillMode) } }; a.drawRepeatImage = function (c, a, d, e, g) { var f = a._texture_to_render; if (f) { var k = f._textureWidth, m = f._textureHeight, p = f._bitmapX, q = f._bitmapY, k = f._bitmapWidth || k, m = f._bitmapHeight || m, r = f._offsetX, f = f._offsetY; b.RenderFilter.getInstance().drawImage(c, a, p, q, k, m, r, f, d, e, g) } }; a.drawScale9GridImage = function (c, a, d, e, g) { var f = a._texture_to_render; if (f && d) { var k = b.RenderFilter.getInstance(), m = f._textureWidth, p = f._textureHeight, q = f._bitmapX, r = f._bitmapY, t = f._bitmapWidth || m, s = f._bitmapHeight || p, u = f._offsetX, v = f._offsetY, f = b.MainContext.instance.rendererContext.texture_scale_factor; d = b.Rectangle.identity.initialize(d.x - Math.round(u), d.y - Math.round(u), d.width, d.height); u = Math.round(u); v = Math.round(v); e -= m - t; g -= p - s; d.y == d.bottom && (d.bottom < s ? d.bottom++ : d.y--); d.x == d.right && (d.right < t ? d.right++ : d.x--); var m = q + d.x, p = q + d.right, x = t - d.right, y = r + d.y, w = r + d.bottom, z = s - d.bottom, A = u + d.x, B = v + d.y, s = g - (s - d.bottom), t = e - (t - d.right); k.drawImage(c, a, q / f, r / f, d.x, d.y, u, v, d.x, d.y); k.drawImage(c, a, m / f, r / f, d.width, d.y, A, v, t - d.x, d.y); k.drawImage(c, a, p / f, r / f, x, d.y, u + t, v, e - t, d.y); k.drawImage(c, a, q / f, y / f, d.x, d.height, u, B, d.x, s - d.y); k.drawImage(c, a, m / f, y / f, d.width, d.height, A, B, t - d.x, s - d.y); k.drawImage(c, a, p / f, y / f, x, d.height, u + t, B, e - t, s - d.y); k.drawImage(c, a, q / f, w / f, d.x, z, u, v + s, d.x, g - s); k.drawImage(c, a, m / f, w / f, d.width, z, A, v + s, t - d.x, g - s); k.drawImage(c, a, p / f, w / f, x, z, u + t, v + s, e - t, g - s) } }; a.prototype._measureBounds = function () { var c = this._texture; return c ? b.Rectangle.identity.initialize(c._offsetX, c._offsetY, c._textureWidth, c._textureHeight) : d.prototype._measureBounds.call(this) }; a.debug = !1; a.renderFilter = b.RenderFilter.getInstance(); return a } (b.DisplayObject); b.Bitmap = e; e.prototype.__class__ = "egret.Bitmap" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this._text = ""; this._textChanged = !1; this._spriteSheet = null; this._spriteSheetChanged = !1; this._bitmapPool = [] } __extends(a, d); Object.defineProperty(a.prototype, "text", { get : function () { return this._text }, set : function (c) { this._textChanged = !0; this._text = c; this._setSizeDirty() }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "spriteSheet", { get : function () { return this._spriteSheet }, set : function (c) { this._spriteSheet != c && (this._spriteSheet = c, this._spriteSheetChanged = !0, this._setSizeDirty()) }, enumerable : !0, configurable : !0 }); a.prototype._updateTransform = function () { this.visible && ((this._textChanged || this._spriteSheetChanged) && this._renderText(), d.prototype._updateTransform.call(this)) }; a.prototype._renderText = function (c) { var a = c = 0; (this._textChanged || this._spriteSheetChanged) && this.removeChildren(); for (var d = 0, e = this.text.length; d < e; d++) { var g = this.text.charAt(d), f = this.spriteSheet.getTexture(g); if (null == f) console.log("\u5f53\u524d\u6ca1\u6709\u4f4d\u56fe\u6587\u5b57\uff1a" + g); else { var g = f._offsetX, k = f._offsetY, m = f._textureWidth; if (this._textChanged || this._spriteSheetChanged) { var p = this._bitmapPool[d]; p || (p = new b.Bitmap, this._bitmapPool.push(p)); p.texture = f; this.addChild(p); p.x = c } c += m + g; k + f._textureHeight > a && (a = k + f._textureHeight) } } this._spriteSheetChanged = this._textChanged = !1; return b.Rectangle.identity.initialize(0, 0, c, a) }; a.prototype._measureBounds = function () { return this._renderText(!0) }; return a } (b.DisplayObjectContainer); b.BitmapText = e; e.prototype.__class__ = "egret.BitmapText" })(egret || (egret = {})); (function (b) { var e = function () { function b() { this._lastY = this._lastX = this._maxY = this._maxX = this._minY = this._minX = 0; this.commandQueue = [] } b.prototype.beginFill = function (a, c) {}; b.prototype._setStyle = function (a) {}; b.prototype.drawRect = function (a, c, b, d) { this.checkRect(a, c, b, d) }; b.prototype.drawCircle = function (a, c, b) { this.checkRect(a - b, c - b, 2 * b, 2 * b) }; b.prototype.drawRoundRect = function (a, c, b, d, e, g) { this.checkRect(a, c, b, d) }; b.prototype.drawEllipse = function (a, c, b, d) { this.checkRect(a - b, c - d, 2 * b, 2 * d) }; b.prototype.lineStyle = function (a, c, b, d, e, g, f, k) {}; b.prototype.lineTo = function (a, c) { this.checkPoint(a, c) }; b.prototype.curveTo = function (a, c, b, d) { this.checkPoint(a, c); this.checkPoint(b, d) }; b.prototype.moveTo = function (a, c) { this.checkPoint(a, c) }; b.prototype.clear = function () { this._maxY = this._maxX = this._minY = this._minX = 0 }; b.prototype.endFill = function () {}; b.prototype._draw = function (a) {}; b.prototype.checkRect = function (a, c, b, d) { this._minX = Math.min(this._minX, a); this._minY = Math.min(this._minY, c); this._maxX = Math.max(this._maxX, a + b); this._maxY = Math.max(this._maxY, c + d) }; b.prototype.checkPoint = function (a, c) { this._minX = Math.min(this._minX, a); this._minY = Math.min(this._minY, c); this._maxX = Math.max(this._maxX, a); this._maxY = Math.max(this._maxY, c); this._lastX = a; this._lastY = c }; return b } (); b.Graphics = e; e.prototype.__class__ = "egret.Graphics"; (function () { return function (b, a, c) { this.method = b; this.thisObject = a; this.args = c } })().prototype.__class__ = "egret.Command" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this) } __extends(a, d); Object.defineProperty(a.prototype, "graphics", { get : function () { this._graphics || (this._graphics = new b.Graphics); return this._graphics }, enumerable : !0, configurable : !0 }); a.prototype._render = function (c) { this._graphics && this._graphics._draw(c) }; return a } (b.DisplayObject); b.Shape = e; e.prototype.__class__ = "egret.Shape" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this) } __extends(a, d); Object.defineProperty(a.prototype, "graphics", { get : function () { this._graphics || (this._graphics = new b.Graphics); return this._graphics }, enumerable : !0, configurable : !0 }); a.prototype._render = function (c) { this._graphics && this._graphics._draw(c); d.prototype._render.call(this, c) }; return a } (b.DisplayObjectContainer); b.Sprite = e; e.prototype.__class__ = "egret.Sprite" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this._inputEnabled = !1; this._text = this._type = ""; this._displayAsPassword = !1; this._fontFamily = a.default_fontFamily; this._size = 30; this._textColorString = "#FFFFFF"; this._textColor = 16777215; this._strokeColorString = "#000000"; this._stroke = this._strokeColor = 0; this._textAlign = "left"; this._verticalAlign = "top"; this._maxChars = 0; this._scrollV = -1; this._numLines = this._lineSpacing = this._maxScrollV = 0; this._isFlow = this._multiline = !1; this._textArr = []; this._isArrayChanged = !1; this._textMaxHeight = this._textMaxWidth = 0; this._linesArr = [] } __extends(a, d); a.prototype.isInput = function () { return this._type == b.TextFieldType.INPUT }; a.prototype._setTouchEnabled = function (c) { d.prototype._setTouchEnabled.call(this, c); this.isInput() && (this._inputEnabled = !0) }; Object.defineProperty(a.prototype, "type", { get : function () { return this._type }, set : function (c) { this._setType(c) }, enumerable : !0, configurable : !0 }); a.prototype._setType = function (c) { this._type != c && (this._type = c, this._type == b.TextFieldType.INPUT ? (this._hasWidthSet || this._setWidth(100), this._hasHeightSet || this._setHeight(30), null == this._inputUtils && (this._inputUtils = new b.InputController), this._inputUtils.init(this), this._setDirty(), this._stage && this._inputUtils._addStageText()) : this._inputUtils && (this._inputUtils._removeStageText(), this._inputUtils = null)) }; Object.defineProperty(a.prototype, "text", { get : function () { return this._getText() }, set : function (c) { this._setText(c) }, enumerable : !0, configurable : !0 }); a.prototype._getText = function () { return this._type == b.TextFieldType.INPUT ? this._inputUtils._getText() : this._text }; a.prototype._setSizeDirty = function () { d.prototype._setSizeDirty.call(this); this._isArrayChanged = !0 }; a.prototype._setTextDirty = function () { this._setSizeDirty() }; a.prototype._setBaseText = function (c) { null == c && (c = ""); this._isFlow = !1; if (this._text != c || this._displayAsPassword) this._setTextDirty(), this._text = c, c = "", c = this._displayAsPassword ? this.changeToPassText(this._text) : this._text, this.setMiddleStyle([{ text : c } ]) }; a.prototype._setText = function (c) { null == c && (c = ""); this._setBaseText(c); this._inputUtils && this._inputUtils._setText(this._text) }; Object.defineProperty(a.prototype, "displayAsPassword", { get : function () { return this._displayAsPassword }, set : function (c) { this._setDisplayAsPassword(c) }, enumerable : !0, configurable : !0 }); a.prototype._setDisplayAsPassword = function (c) { this._displayAsPassword != c && (this._displayAsPassword = c, this._setText(this._text)) }; Object.defineProperty(a.prototype, "fontFamily", { get : function () { return this._fontFamily }, set : function (c) { this._setFontFamily(c) }, enumerable : !0, configurable : !0 }); a.prototype._setFontFamily = function (c) { this._fontFamily != c && (this._setTextDirty(), this._fontFamily = c) }; Object.defineProperty(a.prototype, "size", { get : function () { return this._size }, set : function (c) { this._setSize(c) }, enumerable : !0, configurable : !0 }); a.prototype._setSize = function (c) { this._size != c && (this._setTextDirty(), this._size = c) }; Object.defineProperty(a.prototype, "italic", { get : function () { return this._italic }, set : function (c) { this._setItalic(c) }, enumerable : !0, configurable : !0 }); a.prototype._setItalic = function (c) { this._italic != c && (this._setTextDirty(), this._italic = c) }; Object.defineProperty(a.prototype, "bold", { get : function () { return this._bold }, set : function (c) { this._setBold(c) }, enumerable : !0, configurable : !0 }); a.prototype._setBold = function (c) { this._bold != c && (this._setTextDirty(), this._bold = c) }; Object.defineProperty(a.prototype, "textColor", { get : function () { return this._textColor }, set : function (c) { this._setTextColor(c) }, enumerable : !0, configurable : !0 }); a.prototype._setTextColor = function (c) { this._textColor != c && (this._setTextDirty(), this._textColor = c, this._textColorString = b.toColorString(c)) }; Object.defineProperty(a.prototype, "strokeColor", { get : function () { return this._strokeColor }, set : function (c) { this._setStrokeColor(c) }, enumerable : !0, configurable : !0 }); a.prototype._setStrokeColor = function (c) { this._strokeColor != c && (this._setTextDirty(), this._strokeColor = c, this._strokeColorString = b.toColorString(c)) }; Object.defineProperty(a.prototype, "stroke", { get : function () { return this._stroke }, set : function (c) { this._setStroke(c) }, enumerable : !0, configurable : !0 }); a.prototype._setStroke = function (c) { this._stroke != c && (this._setTextDirty(), this._stroke = c) }; Object.defineProperty(a.prototype, "textAlign", { get : function () { return this._textAlign }, set : function (c) { this._setTextAlign(c) }, enumerable : !0, configurable : !0 }); a.prototype._setTextAlign = function (c) { this._textAlign != c && (this._setTextDirty(), this._textAlign = c) }; Object.defineProperty(a.prototype, "verticalAlign", { get : function () { return this._verticalAlign }, set : function (c) { this._setVerticalAlign(c) }, enumerable : !0, configurable : !0 }); a.prototype._setVerticalAlign = function (c) { this._verticalAlign != c && (this._setTextDirty(), this._verticalAlign = c) }; Object.defineProperty(a.prototype, "maxChars", { get : function () { return this._maxChars }, set : function (c) { this._setMaxChars(c) }, enumerable : !0, configurable : !0 }); a.prototype._setMaxChars = function (c) { this._maxChars != c && (this._maxChars = c) }; Object.defineProperty(a.prototype, "scrollV", { set : function (c) { this._scrollV = c; this._setDirty() }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "maxScrollV", { get : function () { return this._maxScrollV }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "selectionBeginIndex", { get : function () { return 0 }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "selectionEndIndex", { get : function () { return 0 }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "caretIndex", { get : function () { return 0 }, enumerable : !0, configurable : !0 }); a.prototype._setSelection = function (c, a) {}; Object.defineProperty(a.prototype, "lineSpacing", { get : function () { return this._lineSpacing }, set : function (c) { this._setLineSpacing(c) }, enumerable : !0, configurable : !0 }); a.prototype._setLineSpacing = function (c) { this._lineSpacing != c && (this._setTextDirty(), this._lineSpacing = c) }; a.prototype._getLineHeight = function () { return this._lineSpacing + this._size }; Object.defineProperty(a.prototype, "numLines", { get : function () { return this._numLines }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "multiline", { get : function () { return this._multiline }, set : function (c) { this._setMultiline(c) }, enumerable : !0, configurable : !0 }); a.prototype._setMultiline = function (c) { this._multiline = c; this._setDirty() }; a.prototype.setFocus = function () { b.Logger.warning("TextField.setFocus \u6ca1\u6709\u5b9e\u73b0") }; a.prototype._onRemoveFromStage = function () { d.prototype._onRemoveFromStage.call(this); this._type == b.TextFieldType.INPUT && this._inputUtils._removeStageText() }; a.prototype._onAddToStage = function () { d.prototype._onAddToStage.call(this); this._type == b.TextFieldType.INPUT && this._inputUtils._addStageText() }; a.prototype._updateBaseTransform = function () { d.prototype._updateTransform.call(this) }; a.prototype._updateTransform = function () { this._type == b.TextFieldType.INPUT ? this._normalDirty ? (this._clearDirty(), this._inputUtils._updateProperties()) : this._inputUtils._updateTransform() : this._updateBaseTransform() }; a.prototype._render = function (c) { this.drawText(c); this._clearDirty() }; a.prototype._measureBounds = function () { return this.measureText() }; Object.defineProperty(a.prototype, "textFlow", { get : function () { return this._textArr }, set : function (c) { this._isFlow = !0; var a = ""; null == c && (c = []); for (var b = 0; b < c.length; b++) a += c[b].text; this._displayAsPassword ? this._setBaseText(a) : (this._text = a, this.setMiddleStyle(c)) }, enumerable : !0, configurable : !0 }); a.prototype.changeToPassText = function (c) { if (this._displayAsPassword) { for (var a = "", b = 0, d = c.length; b < d; b++) switch (c.charAt(b)) { case "\n": a += "\n"; break; case "\r": break; default: a += "*" } return a } return c }; a.prototype.setMiddleStyle = function (c) { this._isArrayChanged = !0; this._textArr = c; this._setSizeDirty() }; Object.defineProperty(a.prototype, "textWidth", { get : function () { return this._textMaxWidth }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "textHeight", { get : function () { return this._textMaxHeight }, enumerable : !0, configurable : !0 }); a.prototype.appendText = function (c) { this.appendElement({ text : c }) }; a.prototype.appendElement = function (c) { this._textArr.push(c); this.setMiddleStyle(this._textArr) }; a.prototype._getLinesArr = function () { if (!this._isArrayChanged) return this._linesArr; this._isArrayChanged = !1; var c = this._textArr, a = b.MainContext.instance.rendererContext; this._linesArr = []; this._textMaxWidth = this._textMaxHeight = 0; if (this._hasWidthSet && 0 == this._explicitWidth) return console.warn("\u6587\u672c\u5bbd\u5ea6\u88ab\u8bbe\u7f6e\u4e3a0"), this._numLines = 0, [{ width : 0, height : 0, elements : [] } ]; var d = this._linesArr, e = 0, g = 0, f = 0, k; this._isFlow || a.setupFont(this); for (var m = 0; m < c.length; m++) { var p = c[m]; p.style = p.style || {}; for (var q = p.text.toString().split(/(?:\r\n|\r|\n)/), r = 0; r < q.length; r++) { null == d[f] && (k = { width : 0, height : 0, elements : [] }, d[f] = k, g = e = 0); g = this._type == b.TextFieldType.INPUT ? this._size : Math.max(g, p.style.size || this._size); if ("" != q[r]) { this._isFlow && a.setupFont(this, p.style); var t = a.measureText(q[r]); if (this._hasWidthSet) if (e + t <= this._explicitWidth) k.elements.push({ width : t, text : q[r], style : p.style }), e += t; else { for (var s = 0, u = 0, v = q[r]; s < v.length; s++) { t = a.measureText(v.charAt(s)); if (e + t > this._explicitWidth) break; u += t; e += t } 0 < s && (k.elements.push({ width : u, text : v.substring(0, s), style : p.style }), q[r] = v.substring(s)); r-- } else e += t, k.elements.push({ width : t, text : q[r], style : p.style }) } if (r < q.length - 1) { k.width = e; k.height = g; this._textMaxWidth = Math.max(this._textMaxWidth, e); this._textMaxHeight += g; if (this._type == b.TextFieldType.INPUT && !this._multiline) return this._numLines = d.length, d; f++ } } m == c.length - 1 && k && (k.width = e, k.height = g, this._textMaxWidth = Math.max(this._textMaxWidth, e), this._textMaxHeight += g) } this._numLines = d.length; return d }; a.prototype.measureText = function () { return this._getLinesArr() ? b.Rectangle.identity.initialize(0, 0, this._hasWidthSet ? this._explicitWidth : this._textMaxWidth, this._hasHeightSet ? this._explicitHeight : this._textMaxHeight + (this._numLines - 1) * this._lineSpacing) : b.Rectangle.identity.initialize(0, 0, 0, 0) }; a.prototype.drawText = function (c) { var a = this._getLinesArr(); if (a) { this._isFlow || c.setupFont(this); var d = this._hasWidthSet ? this._explicitWidth : this._textMaxWidth, e = this._textMaxHeight + (this._numLines - 1) * this._lineSpacing, g = 0, f = 0; if (this._hasHeightSet) if (e < this._explicitHeight) { var k = 0; this._verticalAlign == b.VerticalAlign.MIDDLE ? k = 0.5 : this._verticalAlign == b.VerticalAlign.BOTTOM && (k = 1); g += k * (this._explicitHeight - e) } else e > this._explicitHeight && (f = Math.max(this._scrollV - 1, 0), f = Math.min(this._numLines - 1, f)); g = Math.round(g); e = 0; this._textAlign == b.HorizontalAlign.CENTER ? e = 0.5 : this._textAlign == b.HorizontalAlign.RIGHT && (e = 1); for (k = 0; f < this._numLines; f++) { var m = a[f], p = m.height, g = g + p / 2; if (0 != f && this._hasHeightSet && g > this._explicitHeight) break; for (var k = Math.round((d - m.width) * e), q = 0; q < m.elements.length; q++) { var r = m.elements[q], t = r.style.size || this._size; this._type == b.TextFieldType.INPUT ? c.drawText(this, r.text, k, g + (p - t) / 2, r.width) : (this._isFlow && c.setupFont(this, r.style), c.drawText(this, r.text, k, g + (p - t) / 2, r.width, r.style)); k += r.width } g += p / 2 + this._lineSpacing } } }; a.default_fontFamily = "Arial"; return a } (b.DisplayObject); b.TextField = e; e.prototype.__class__ = "egret.TextField" })(egret || (egret = {})); (function (b) { var e = function () { function b() { this.resutlArr = [] } b.prototype.parser = function (a) { this.stackArray = []; this.resutlArr = []; for (var c = 0, b = a.length; c < b; ) { var d = a.indexOf("<", c); 0 > d ? (this.addToResultArr(a.substring(c)), c = b) : (this.addToResultArr(a.substring(c, d)), c = a.indexOf(">", d), "/" == a.charAt(d + 1) ? this.stackArray.pop() : this.addToArray(a.substring(d + 1, c)), c += 1) } return this.resutlArr }; b.prototype.addToResultArr = function (a) { if ("" != a) { var c = []; c.push(["<", "<"]); c.push([">", ">"]); c.push(["&", "&"]); c.push([""", '"']); c.push(["';", "'"]); for (var b = 0; b < c.length; b++) a.replace(new RegExp(c[b][0], "g"), c[b][1]); 0 < this.stackArray.length ? this.resutlArr.push({ text : a, style : this.stackArray[this.stackArray.length - 1] }) : this.resutlArr.push({ text : a }) } }; b.prototype.changeStringToObject = function (a) { var c = {}; a = a.replace(/( )+/g, " ").split(" "); for (var b = 0; b < a.length; b++) this.addProperty(c, a[b]); return c }; b.prototype.addProperty = function (a, c) { var b = c.replace(/( )*=( )*/g, "=").split("="); b[1] && (b[1] = b[1].replace(/(\"|\')/g, "")); switch (b[0].toLowerCase()) { case "color": a.textColor = parseInt(b[1]); break; case "b": a.bold = "true" == (b[1] || "true"); break; case "i": a.italic = "true" == (b[1] || "true"); break; case "size": a.size = parseInt(b[1]); break; case "fontFamily": a.fontFamily = b[1] } }; b.prototype.addToArray = function (a) { a = this.changeStringToObject(a); if (0 != this.stackArray.length) { var c = this.stackArray[this.stackArray.length - 1], b; for (b in c) null == a[b] && (a[b] = c[b]) } this.stackArray.push(a) }; return b } (); b.HtmlTextParser = e; e.prototype.__class__ = "egret.HtmlTextParser" })(egret || (egret = {})); (function (b) { var e = function () { function b() {} b.DYNAMIC = "dynamic"; b.INPUT = "input"; return b } (); b.TextFieldType = e; e.prototype.__class__ = "egret.TextFieldType" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(c) { d.call(this); var a = c.bitmapData; this.bitmapData = a; this._textureMap = {}; this._sourceWidth = a.width; this._sourceHeight = a.height; this._bitmapX = c._bitmapX - c._offsetX; this._bitmapY = c._bitmapY - c._offsetY } __extends(a, d); a.prototype.getTexture = function (c) { return this._textureMap[c] }; a.prototype.createTexture = function (c, a, d, e, g, f, k, m, p) { void 0 === f && (f = 0); void 0 === k && (k = 0); "undefined" === typeof m && (m = f + e); "undefined" === typeof p && (p = k + g); var q = new b.Texture, r = b.MainContext.instance.rendererContext.texture_scale_factor; q._bitmapData = this.bitmapData; q._bitmapX = this._bitmapX + a; q._bitmapY = this._bitmapY + d; q._bitmapWidth = e * r; q._bitmapHeight = g * r; q._offsetX = f; q._offsetY = k; q._textureWidth = m * r; q._textureHeight = p * r; q._sourceWidth = this._sourceWidth; q._sourceHeight = this._sourceHeight; return this._textureMap[c] = q }; return a } (b.HashObject); b.SpriteSheet = e; e.prototype.__class__ = "egret.SpriteSheet" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this._isFocus = !1; this._isFirst = this._isFirst = !0 } __extends(a, d); a.prototype.init = function (c) { this._text = c; this.stageText = b.StageText.create(); c = this._text.localToGlobal(); this.stageText._open(c.x, c.y, this._text._explicitWidth, this._text._explicitHeight) }; a.prototype._addStageText = function () { this._text._inputEnabled || (this._text._touchEnabled = !0); this.stageText._add(); this.stageText._addListeners(); this.stageText.addEventListener("blur", this.onBlurHandler, this); this.stageText.addEventListener("focus", this.onFocusHandler, this); this.stageText.addEventListener("updateText", this.updateTextHandler, this); this._text.addEventListener(b.TouchEvent.TOUCH_TAP, this.onMouseDownHandler, this); b.MainContext.instance.stage.addEventListener(b.TouchEvent.TOUCH_TAP, this.onStageDownHandler, this) }; a.prototype._removeStageText = function () { this.stageText._remove(); this.stageText._removeListeners(); this._text._inputEnabled || (this._text._touchEnabled = !1); this.stageText.removeEventListener("blur", this.onBlurHandler, this); this.stageText.removeEventListener("focus", this.onFocusHandler, this); this.stageText.removeEventListener("updateText", this.updateTextHandler, this); this._text.removeEventListener(b.TouchEvent.TOUCH_TAP, this.onMouseDownHandler, this); b.MainContext.instance.stage.removeEventListener(b.TouchEvent.TOUCH_TAP, this.onStageDownHandler, this) }; a.prototype._getText = function () { return this.stageText._getText() }; a.prototype._setText = function (c) { this.stageText._setText(c) }; a.prototype.onFocusHandler = function (c) { this.hideText() }; a.prototype.onBlurHandler = function (c) { this.showText() }; a.prototype.onMouseDownHandler = function (c) { c.stopPropagation(); this._text._visible && this.stageText._show() }; a.prototype.onStageDownHandler = function (c) { this.stageText._hide(); this.showText() }; a.prototype.showText = function () { this._isFocus && (this._isFocus = !1, this.resetText()) }; a.prototype.hideText = function () { this._isFocus || (this._text._setBaseText(""), this._isFocus = !0) }; a.prototype.updateTextHandler = function (c) { this.resetText(); this._text.dispatchEvent(new b.Event(b.Event.CHANGE)) }; a.prototype.resetText = function () { this._text._setBaseText(this.stageText._getText()) }; a.prototype._updateTransform = function () { var c = this._text._worldTransform.a, a = this._text._worldTransform.b, d = this._text._worldTransform.c, e = this._text._worldTransform.d, g = this._text._worldTransform.tx, f = this._text._worldTransform.ty; this._text._updateBaseTransform(); var k = this._text._worldTransform; if (this._isFirst || c != k.a || a != k.b || d != k.c || e != k.d || g != k.tx || f != k.ty) { this._isFirst = !1; c = this._text.localToGlobal(); this.stageText.changePosition(c.x, c.y); var m = this; b.callLater(function () { m.stageText._setScale(m._text._worldTransform.a, m._text._worldTransform.d) }, this) } }; a.prototype._updateProperties = function () { var c = this._text._stage; if (null == c) this.stageText._setVisible(!1); else { for (var a = this._text, d = a._visible; d; ) { a = a.parent; if (a == c) break; d = a._visible } this.stageText._setVisible(d) } this.stageText._setMultiline(this._text._multiline); this.stageText._setMaxChars(this._text._maxChars); this.stageText._setSize(this._text._size); this.stageText._setTextColor(this._text._textColorString); this.stageText._setTextFontFamily(this._text._fontFamily); this.stageText._setBold(this._text._bold); this.stageText._setItalic(this._text._italic); this.stageText._setTextAlign(this._text._textAlign); this.stageText._setWidth(this._text._getSize(b.Rectangle.identity).width); this.stageText._setHeight(this._text._getSize(b.Rectangle.identity).height); this.stageText._setTextType(this._text._displayAsPassword ? "password" : "text"); this.stageText._setText(this._text._text); this.stageText._resetStageText(); this._updateTransform() }; return a } (b.HashObject); b.InputController = e; e.prototype.__class__ = "egret.InputController" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a(a, l) { b.call(this, a); this.charList = this.parseConfig(l) } __extends(a, b); a.prototype.getTexture = function (a) { var b = this._textureMap[a]; if (!b) { b = this.charList[a]; if (!b) return null; b = this.createTexture(a, b.x, b.y, b.width, b.height, b.offsetX, b.offsetY); this._textureMap[a] = b } return b }; a.prototype.parseConfig = function (a) { a = a.split("\r\n").join("\n"); a = a.split("\n"); for (var b = this.getConfigByKey(a[3], "count"), d = {}, e = 4; e < 4 + b; e++) { var g = a[e], f = String.fromCharCode(this.getConfigByKey(g, "id")), k = {}; d[f] = k; k.x = this.getConfigByKey(g, "x"); k.y = this.getConfigByKey(g, "y"); k.width = this.getConfigByKey(g, "width"); k.height = this.getConfigByKey(g, "height"); k.offsetX = this.getConfigByKey(g, "xoffset"); k.offsetY = this.getConfigByKey(g, "yoffset") } return d }; a.prototype.getConfigByKey = function (a, b) { for (var d = a.split(" "), e = 0, g = d.length; e < g; e++) { var f = d[e]; if (b == f.substring(0, b.length)) return d = f.substring(b.length + 1), parseInt(d) } return 0 }; return a } (b.SpriteSheet); b.BitmapTextSpriteSheet = e; e.prototype.__class__ = "egret.BitmapTextSpriteSheet" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (a) { function c(c, e) { a.call(this); this.frameRate = 60; c instanceof d ? (b.Logger.warning("MovieClip#constructor\u63a5\u53e3\u53c2\u6570\u5df2\u7ecf\u53d8\u66f4\uff0c\u8bf7\u5c3d\u5feb\u8c03\u6574\u7528\u6cd5\u4e3a new MovieClip(data,texture)"), this.delegate = c) : this.delegate = new d(c, e); this.delegate.setMovieClip(this) } __extends(c, a); c.prototype.gotoAndPlay = function (a) { this.delegate.gotoAndPlay(a) }; c.prototype.gotoAndStop = function (a) { this.delegate.gotoAndStop(a) }; c.prototype.stop = function () { this.delegate.stop() }; c.prototype.dispose = function () { this.delegate.dispose() }; c.prototype.release = function () { b.Logger.warning("MovieClip#release\u65b9\u6cd5\u5373\u5c06\u5e9f\u5f03"); this.dispose() }; c.prototype.getCurrentFrameIndex = function () { b.Logger.warning("MovieClip#getCurrentFrameIndex\u65b9\u6cd5\u5373\u5c06\u5e9f\u5f03"); return this.delegate._currentFrameIndex }; c.prototype.getTotalFrame = function () { b.Logger.warning("MovieClip#getTotalFrame\u65b9\u6cd5\u5373\u5c06\u5e9f\u5f03"); return this.delegate._totalFrame }; c.prototype.setInterval = function (a) { b.Logger.warning("MovieClip#setInterval\u65b9\u6cd5\u5373\u5c06\u5e9f\u5f03,\u8bf7\u4f7f\u7528MovieClip#frameRate\u4ee3\u66ff"); this.frameRate = 60 / a }; c.prototype.getIsPlaying = function () { b.Logger.warning("MovieClip#getIsPlaying\u65b9\u6cd5\u5373\u5c06\u5e9f\u5f03"); return this.delegate.isPlaying }; return c } (b.DisplayObjectContainer); b.MovieClip = e; e.prototype.__class__ = "egret.MovieClip"; var d = function () { function a(a, d) { this.data = a; this._currentFrameIndex = this._passTime = this._totalFrame = 0; this._isPlaying = !1; this._frameData = a; this._spriteSheet = new b.SpriteSheet(d) } a.prototype.setMovieClip = function (a) { this.movieClip = a; this.bitmap = new b.Bitmap; this.movieClip.addChild(this.bitmap) }; a.prototype.gotoAndPlay = function (a) { this.checkHasFrame(a); this._isPlaying = !0; this._currentFrameIndex = 0; this._currentFrameName = a; this._totalFrame = this._frameData.frames[a].totalFrame; this.playNextFrame(); this._passTime = 0; b.Ticker.getInstance().register(this.update, this) }; a.prototype.gotoAndStop = function (a) { this.checkHasFrame(a); this.stop(); this._currentFrameIndex = this._passTime = 0; this._currentFrameName = a; this._totalFrame = this._frameData.frames[a].totalFrame; this.playNextFrame() }; a.prototype.stop = function () { this._isPlaying = !1; b.Ticker.getInstance().unregister(this.update, this) }; a.prototype.dispose = function () {}; a.prototype.checkHasFrame = function (a) { void 0 == this._frameData.frames[a] && b.Logger.fatal("MovieClip\u6ca1\u6709\u5bf9\u5e94\u7684frame\uff1a", a) }; a.prototype.update = function (a) { for (var b = 1E3 / this.movieClip.frameRate, b = Math.floor((this._passTime % b + a) / b); 1 <= b; ) 1 == b ? this.playNextFrame() : this.playNextFrame(!1), b--; this._passTime += a }; a.prototype.playNextFrame = function (a) { void 0 === a && (a = !0); var d = this._frameData.frames[this._currentFrameName].childrenFrame[this._currentFrameIndex]; if (a) { a = this.getTexture(d.res); var e = this.bitmap; e.x = d.x; e.y = d.y; e.texture = a } null != d.action && this.movieClip.dispatchEventWith(d.action); this._currentFrameIndex++; this._currentFrameIndex == this._totalFrame && (this._currentFrameIndex = 0, d.action != b.Event.COMPLETE && this.movieClip.dispatchEventWith(b.Event.COMPLETE)) }; a.prototype.getTexture = function (a) { var b = this._frameData.res[a], d = this._spriteSheet.getTexture(a); d || (d = this._spriteSheet.createTexture(a, b.x, b.y, b.w, b.h)); return d }; return a } (); b.DefaultMovieClipDelegate = d; d.prototype.__class__ = "egret.DefaultMovieClipDelegate" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a() { b.call(this); this._scaleY = this._scaleX = 1; this._size = 30; this._color = "#FFFFFF"; this._fontFamily = "Arial"; this._italic = this._bold = !1; this._textAlign = "left"; this._multiline = this._visible = !1; this._maxChars = 0 } __extends(a, b); a.prototype._getText = function () { return null }; a.prototype._setText = function (a) {}; a.prototype._setTextType = function (a) {}; a.prototype._getTextType = function () { return null }; a.prototype._open = function (a, b, d, e) {}; a.prototype._show = function () {}; a.prototype._add = function () {}; a.prototype._remove = function () {}; a.prototype._hide = function () {}; a.prototype._addListeners = function () {}; a.prototype._removeListeners = function () {}; a.prototype._setScale = function (a, b) { this._scaleX = a; this._scaleY = b }; a.prototype.changePosition = function (a, b) {}; a.prototype._setSize = function (a) { this._size = a }; a.prototype._setTextColor = function (a) { this._color = a }; a.prototype._setTextFontFamily = function (a) { this._fontFamily = a }; a.prototype._setBold = function (a) { this._bold = a }; a.prototype._setItalic = function (a) { this._italic = a }; a.prototype._setTextAlign = function (a) { this._textAlign = a }; a.prototype._setVisible = function (a) { this._visible = a }; a.prototype._setWidth = function (a) {}; a.prototype._setHeight = function (a) {}; a.prototype._setMultiline = function (a) { this._multiline = a }; a.prototype._setMaxChars = function (a) { this._maxChars = a }; a.prototype._resetStageText = function () {}; a.create = function () { return null }; return a } (b.EventDispatcher); b.StageText = e; e.prototype.__class__ = "egret.StageText" })(egret || (egret = {})); (function (b) { var e = function () { function b() {} b.GET = "get"; b.POST = "post"; return b } (); b.URLRequestMethod = e; e.prototype.__class__ = "egret.URLRequestMethod" })(egret || (egret = {})); (function (b) { var e = function () { function b() {} b.BINARY = "binary"; b.TEXT = "text"; b.VARIABLES = "variables"; b.TEXTURE = "texture"; b.SOUND = "sound"; return b } (); b.URLLoaderDataFormat = e; e.prototype.__class__ = "egret.URLLoaderDataFormat" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a(a) { void 0 === a && (a = null); b.call(this); null !== a && this.decode(a) } __extends(a, b); a.prototype.decode = function (a) { this.variables || (this.variables = {}); a = a.split("+").join(" "); for (var b, d = /[?&]?([^=]+)=([^&]*)/g; b = d.exec(a); ) this.variables[decodeURIComponent(b[1])] = decodeURIComponent(b[2]) }; a.prototype.toString = function () { if (!this.variables) return ""; var a = this.variables, b = "", d = !0, e; for (e in a) d ? d = !1 : b += "&", b += e + "=" + a[e]; return b }; return a } (b.HashObject); b.URLVariables = e; e.prototype.__class__ = "egret.URLVariables" })(egret || (egret = {})); (function (b) { var e = function () { return function (b, a) { this.name = b; this.value = a } } (); b.URLRequestHeader = e; e.prototype.__class__ = "egret.URLRequestHeader" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(a) { void 0 === a && (a = null); d.call(this); this.method = b.URLRequestMethod.GET; this.url = a } __extends(a, d); return a } (b.HashObject); b.URLRequest = e; e.prototype.__class__ = "egret.URLRequest" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(a) { void 0 === a && (a = null); d.call(this); this.dataFormat = b.URLLoaderDataFormat.TEXT; this._status = -1; a && this.load(a) } __extends(a, d); a.prototype.load = function (a) { this._request = a; this.data = null; b.MainContext.instance.netContext.proceed(this) }; return a } (b.EventDispatcher); b.URLLoader = e; e.prototype.__class__ = "egret.URLLoader" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this._textureHeight = this._textureWidth = this._offsetY = this._offsetX = this._bitmapHeight = this._bitmapWidth = this._bitmapY = this._bitmapX = 0 } __extends(a, d); Object.defineProperty(a.prototype, "textureWidth", { get : function () { return this._textureWidth }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "textureHeight", { get : function () { return this._textureHeight }, enumerable : !0, configurable : !0 }); Object.defineProperty(a.prototype, "bitmapData", { get : function () { return this._bitmapData }, enumerable : !0, configurable : !0 }); a.prototype._setBitmapData = function (a) { var d = b.MainContext.instance.rendererContext.texture_scale_factor; this._bitmapData = a; this._sourceWidth = a.width; this._sourceHeight = a.height; this._textureWidth = this._sourceWidth * d; this._textureHeight = this._sourceHeight * d; this._bitmapWidth = this._textureWidth; this._bitmapHeight = this._textureHeight; this._offsetX = this._offsetY = this._bitmapX = this._bitmapY = 0 }; a.prototype.getPixel32 = function (a, b) { return this._bitmapData.getContext("2d").getImageData(a, b, 1, 1).data }; return a } (b.HashObject); b.Texture = e; e.prototype.__class__ = "egret.Texture" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this._bitmapData = document.createElement("canvas"); this.renderContext = b.RendererContext.createRendererContext(this._bitmapData) } __extends(a, d); a.prototype.drawToTexture = function (c) { var d = this._bitmapData, e = c.getBounds(b.Rectangle.identity); if (0 == e.width || 0 == e.height) return b.Logger.warning("egret.RenderTexture#drawToTexture:\u663e\u793a\u5bf9\u8c61\u6d4b\u91cf\u7ed3\u679c\u5bbd\u9ad8\u4e3a0\uff0c\u8bf7\u68c0\u67e5"), !1; e.width = Math.floor(e.width); e.height = Math.floor(e.height); d.width = e.width; d.height = e.height; this.renderContext._cacheCanvas && (this.renderContext._cacheCanvas.width = e.width, this.renderContext._cacheCanvas.height = e.height); a.identityRectangle.width = e.width; a.identityRectangle.height = e.height; c._worldTransform.identity(); c.worldAlpha = 1; if (c instanceof b.DisplayObjectContainer) { var d = c._anchorOffsetX, n = c._anchorOffsetY; if (0 != c._anchorX || 0 != c._anchorY) d = c._anchorX * e.width, n = c._anchorY * e.height; this._offsetX = e.x + d; this._offsetY = e.y + n; c._worldTransform.append(1, 0, 0, 1, -this._offsetX, -this._offsetY); e = c._children; d = 0; for (n = e.length; d < n; d++) e[d]._updateTransform() } e = b.RenderFilter.getInstance(); d = e._drawAreaList.concat(); e._drawAreaList.length = 0; this.renderContext.clearScreen(); this.renderContext.onRenderStart(); this.webGLTexture = null; (n = c.mask || c._scrollRect) && this.renderContext.pushMask(n); c._render(this.renderContext); n && this.renderContext.popMask(); e.addDrawArea(a.identityRectangle); this.renderContext.onRenderFinish(); e._drawAreaList = d; this._textureWidth = this._bitmapData.width; this._textureHeight = this._bitmapData.height; this._sourceWidth = this._textureWidth; this._sourceHeight = this._textureHeight; return !0 }; a.identityRectangle = new b.Rectangle; return a } (b.Texture); b.RenderTexture = e; e.prototype.__class__ = "egret.RenderTexture" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this.renderCost = 0; this.texture_scale_factor = 1; this.profiler = b.Profiler.getInstance() } __extends(a, d); a.prototype.clearScreen = function () {}; a.prototype.clearRect = function (a, b, d, e) {}; a.prototype.drawImage = function (a, b, d, e, g, f, k, m, p, q) { this.profiler.onDrawImage() }; a.prototype.setTransform = function (a) {}; a.prototype.setAlpha = function (a, b) {}; a.prototype.setupFont = function (a, b) {}; a.prototype.measureText = function (a) { return 0 }; a.prototype.drawText = function (a, b, d, e, g, f) { this.profiler.onDrawImage() }; a.prototype.strokeRect = function (a, b, d, e, g) {}; a.prototype.pushMask = function (a) {}; a.prototype.popMask = function () {}; a.prototype.onRenderStart = function () {}; a.prototype.onRenderFinish = function () {}; a.prototype.setGlobalColorTransform = function (a) {}; a.createRendererContext = function (a) { return null }; a.imageSmoothingEnabled = !0; return a } (b.HashObject); b.RendererContext = e; e.prototype.__class__ = "egret.RendererContext" })(egret || (egret = {})); (function (b) { var e = function () { function b() {} b.MOUSE = "mouse"; b.TOUCH = "touch"; b.mode = "touch"; return b } (); b.InteractionMode = e; e.prototype.__class__ = "egret.InteractionMode" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this._currentTouchTarget = {}; this.maxTouches = 2; this.touchDownTarget = {}; this.touchingIdentifiers = []; this.lastTouchY = this.lastTouchX = -1 } __extends(a, d); a.prototype.run = function () {}; a.prototype.getTouchData = function (a, b, d) { var e = this._currentTouchTarget[a]; null == e && (e = {}, this._currentTouchTarget[a] = e); e.stageX = b; e.stageY = d; e.identifier = a; return e }; a.prototype.dispatchEvent = function (a, d) { b.TouchEvent.dispatchTouchEvent(d.target, a, d.identifier, d.stageX, d.stageY, !1, !1, !1, !0 == this.touchDownTarget[d.identifier]) }; a.prototype.onTouchBegan = function (a, d, e) { if (this.touchingIdentifiers.length != this.maxTouches) { var n = b.MainContext.instance.stage.hitTest(a, d); n && (a = this.getTouchData(e, a, d), this.touchDownTarget[e] = !0, a.target = n, a.beginTarget = n, this.dispatchEvent(b.TouchEvent.TOUCH_BEGIN, a)); this.touchingIdentifiers.push(e) } }; a.prototype.onTouchMove = function (a, d, e) { if (-1 != this.touchingIdentifiers.indexOf(e) && (a != this.lastTouchX || d != this.lastTouchY)) { this.lastTouchX = a; this.lastTouchY = d; var n = b.MainContext.instance.stage.hitTest(a, d); n && (a = this.getTouchData(e, a, d), a.target = n, this.dispatchEvent(b.TouchEvent.TOUCH_MOVE, a)) } }; a.prototype.onTouchEnd = function (a, d, e) { var n = this.touchingIdentifiers.indexOf(e); -1 != n && (this.touchingIdentifiers.splice(n, 1), n = b.MainContext.instance.stage.hitTest(a, d)) && (a = this.getTouchData(e, a, d), delete this.touchDownTarget[e], e = a.beginTarget, a.target = n, this.dispatchEvent(b.TouchEvent.TOUCH_END, a), e == n ? this.dispatchEvent(b.TouchEvent.TOUCH_TAP, a) : a.beginTarget && (a.target = a.beginTarget, this.dispatchEvent(b.TouchEvent.TOUCH_RELEASE_OUTSIDE, a)), delete this._currentTouchTarget[a.identifier]) }; return a } (b.HashObject); b.TouchContext = e; e.prototype.__class__ = "egret.TouchContext" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this) } __extends(a, d); a.prototype.proceed = function (a) {}; a._getUrl = function (a) { var d = a.url; -1 == d.indexOf("?") && a.method == b.URLRequestMethod.GET && a.data && a.data instanceof b.URLVariables && (d = d + "?" + a.data.toString()); return d }; a.prototype.getChangeList = function () { return [] }; return a } (b.HashObject); b.NetContext = e; e.prototype.__class__ = "egret.NetContext" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a() { b.call(this); this.frameRate = 60 } __extends(a, b); a.prototype.executeMainLoop = function (a, b) {}; return a } (b.HashObject); b.DeviceContext = e; e.prototype.__class__ = "egret.DeviceContext" })(egret || (egret = {})); (function (b) { var e = function () { function b() {} b.call = function (a, c) {}; b.addCallback = function (a, c) {}; return b } (); b.ExternalInterface = e; e.prototype.__class__ = "egret.ExternalInterface" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this.ua = navigator.userAgent.toLowerCase(); this.trans = this._getTrans() } __extends(a, d); a.getInstance = function () { null == a.instance && (a.instance = new a); return a.instance }; Object.defineProperty(a.prototype, "isMobile", { get : function () { b.Logger.warning("Browser.isMobile\u63a5\u53e3\u53c2\u6570\u5df2\u7ecf\u53d8\u66f4\uff0c\u8bf7\u5c3d\u5feb\u8c03\u6574\u7528\u6cd5\u4e3a egret.MainContext.deviceType == egret.MainContext.DEVICE_MOBILE "); return b.MainContext.deviceType == b.MainContext.DEVICE_MOBILE }, enumerable : !0, configurable : !0 }); a.prototype._getHeader = function (a) { if ("transform" in a) return ""; for (var b = ["webkit", "ms", "Moz", "O"], d = 0; d < b.length; d++) if (b[d] + "Transform" in a) return b[d]; return "" }; a.prototype._getTrans = function () { var a = document.createElement("div").style, a = this._getHeader(a); return "" == a ? "transform" : a + "Transform" }; a.prototype.$new = function (a) { return this.$(document.createElement(a)) }; a.prototype.$ = function (c) { var d = document; if (c = c instanceof HTMLElement ? c : d.querySelector(c)) c.find = c.find || this.$, c.hasClass = c.hasClass || function (a) { return this.className.match(new RegExp("(\\s|^)" + a + "(\\s|$)")) }, c.addClass = c.addClass || function (a) { this.hasClass(a) || (this.className && (this.className += " "), this.className += a); return this }, c.removeClass = c.removeClass || function (a) { this.hasClass(a) && (this.className = this.className.replace(a, "")); return this }, c.remove = c.remove || function () {}, c.appendTo = c.appendTo || function (a) { a.appendChild(this); return this }, c.prependTo = c.prependTo || function (a) { a.childNodes[0] ? a.insertBefore(this, a.childNodes[0]) : a.appendChild(this); return this }, c.transforms = c.transforms || function () { this.style[a.getInstance().trans] = a.getInstance().translate(this.position) + a.getInstance().rotate(this.rotation) + a.getInstance().scale(this.scale) + a.getInstance().skew(this.skew); return this }, c.position = c.position || { x : 0, y : 0 }, c.rotation = c.rotation || 0, c.scale = c.scale || { x : 1, y : 1 }, c.skew = c.skew || { x : 0, y : 0 }, c.translates = function (a, c) { this.position.x = a; this.position.y = c - b.MainContext.instance.stage.stageHeight; this.transforms(); return this }, c.rotate = function (a) { this.rotation = a; this.transforms(); return this }, c.resize = function (a, c) { this.scale.x = a; this.scale.y = c; this.transforms(); return this }, c.setSkew = function (a, c) { this.skew.x = a; this.skew.y = c; this.transforms(); return this }; return c }; a.prototype.translate = function (a) { return "translate(" + a.x + "px, " + a.y + "px) " }; a.prototype.rotate = function (a) { return "rotate(" + a + "deg) " }; a.prototype.scale = function (a) { return "scale(" + a.x + ", " + a.y + ") " }; a.prototype.skew = function (a) { return "skewX(" + -a.x + "deg) skewY(" + a.y + "deg)" }; return a } (b.HashObject); b.Browser = e; e.prototype.__class__ = "egret.Browser" })(egret || (egret = {})); (function (b) { (function (b) { b.getItem = function (b) { return null }; b.setItem = function (b, a) { return !1 }; b.removeItem = function (b) {}; b.clear = function () {} })(b.localStorage || (b.localStorage = {})) })(egret || (egret = {})); (function (b) { var e = function () { function d() {} d.parse = function (a) { a = b.SAXParser.getInstance().parserXML(a); if (!a || !a.childNodes) return null; for (var c = a.childNodes.length, e = !1, h = 0; h < c; h++) { var n = a.childNodes[h]; if (1 == n.nodeType) { e = !0; break } } return e ? d.parseNode(n) : null }; d.parseNode = function (a) { if (!a || 1 != a.nodeType) return null; var c = {}; c.localName = a.localName; c.name = a.nodeName; a.namespaceURI && (c.namespace = a.namespaceURI); a.prefix && (c.prefix = a.prefix); for (var b = a.attributes, e = b.length, n = 0; n < e; n++) { var g = b[n], f = g.name; 0 != f.indexOf("xmlns:") && (c["$" + f] = g.value) } b = a.childNodes; e = b.length; for (n = 0; n < e; n++) if (g = d.parseNode(b[n])) c.children || (c.children = []), g.parent = c, c.children.push(g); !c.children && (a = a.textContent.trim()) && (c.text = a); return c }; d.findChildren = function (a, c, b) { b ? b.length = 0 : b = []; d.findByPath(a, c, b); return b }; d.findByPath = function (a, c, b) { var e = c.indexOf("."), n; -1 == e ? (n = c, e = !0) : (n = c.substring(0, e), c = c.substring(e + 1), e = !1); if (a = a.children) for (var g = a.length, f = 0; f < g; f++) { var k = a[f]; k.localName == n && (e ? b.push(k) : d.findByPath(k, c, b)) } }; d.getAttributes = function (a, c) { c ? c.length = 0 : c = []; for (var b in a) "$" == b.charAt(0) && c.push(b.substring(1)); return c }; return d } (); b.XML = e; e.prototype.__class__ = "egret.XML" })(egret || (egret = {})); (function (b) { var e = function () { function a() {} a.LITTLE_ENDIAN = "LITTLE_ENDIAN"; a.BIG_ENDIAN = "BIG_ENDIAN"; return a } (); b.Endian = e; e.prototype.__class__ = "egret.Endian"; var d = function () { function a() { this.length = this.position = 0; this._mode = ""; this.maxlength = 0; this._endian = e.LITTLE_ENDIAN; this.isLittleEndian = !1; this._mode = "Typed array"; this.maxlength = 4; this.arraybytes = new ArrayBuffer(this.maxlength); this.unalignedarraybytestemp = new ArrayBuffer(16); this.endian = a.DEFAULT_ENDIAN } Object.defineProperty(a.prototype, "endian", { get : function () { return this._endian }, set : function (a) { this._endian = a; this.isLittleEndian = a == e.LITTLE_ENDIAN }, enumerable : !0, configurable : !0 }); a.prototype.ensureWriteableSpace = function (a) { this.ensureSpace(a + this.position) }; a.prototype.setArrayBuffer = function (a) { this.ensureSpace(a.byteLength); this.length = a.byteLength; a = new Int8Array(a); (new Int8Array(this.arraybytes, 0, this.length)).set(a); this.position = 0 }; Object.defineProperty(a.prototype, "bytesAvailable", { get : function () { return this.length - this.position }, enumerable : !0, configurable : !0 }); a.prototype.ensureSpace = function (a) { if (a > this.maxlength) { a = a + 255 & -256; var b = new ArrayBuffer(a), d = new Uint8Array(this.arraybytes, 0, this.length); (new Uint8Array(b, 0, this.length)).set(d); this.arraybytes = b; this.maxlength = a } }; a.prototype.writeByte = function (a) { this.ensureWriteableSpace(1); (new Int8Array(this.arraybytes))[this.position++] = ~~a; this.position > this.length && (this.length = this.position) }; a.prototype.readByte = function () { if (this.position >= this.length) throw "ByteArray out of bounds read. Positon=" + this.position + ", Length=" + this.length; return (new Int8Array(this.arraybytes))[this.position++] }; a.prototype.readBytes = function (a, b, d) { void 0 === b && (b = 0); void 0 === d && (d = 0); null == d && (d = a.length); a.ensureWriteableSpace(b + d); var e = new Int8Array(a.arraybytes), g = new Int8Array(this.arraybytes); e.set(g.subarray(this.position, this.position + d), b); this.position += d; d + b > a.length && (a.length += d + b - a.length) }; a.prototype.writeUnsignedByte = function (a) { this.ensureWriteableSpace(1); (new Uint8Array(this.arraybytes))[this.position++] = ~~a & 255; this.position > this.length && (this.length = this.position) }; a.prototype.readUnsignedByte = function () { if (this.position >= this.length) throw "ByteArray out of bounds read. Positon=" + this.position + ", Length=" + this.length; return (new Uint8Array(this.arraybytes))[this.position++] }; a.prototype.writeUnsignedShort = function (a) { this.ensureWriteableSpace(2); if (0 == (this.position & 1)) { var b = new Uint16Array(this.arraybytes); b[this.position >> 1] = ~~a & 65535 } else b = new Uint16Array(this.unalignedarraybytestemp, 0, 1), b[0] = ~~a & 65535, a = new Uint8Array(this.arraybytes, this.position, 2), b = new Uint8Array(this.unalignedarraybytestemp, 0, 2), a.set(b); this.position += 2; this.position > this.length && (this.length = this.position) }; a.prototype.readUTFBytes = function (a) { var b = ""; a = this.position + a; for (var d = new DataView(this.arraybytes); this.position < a; ) { var e = d.getUint8(this.position++); if (128 > e) { if (0 == e) break; b += String.fromCharCode(e) } else if (224 > e) b += String.fromCharCode((e & 63) << 6 | d.getUint8(this.position++) & 127); else if (240 > e) var g = d.getUint8(this.position++), b = b + String.fromCharCode((e & 31) << 12 | (g & 127) << 6 | d.getUint8(this.position++) & 127); else var g = d.getUint8(this.position++), f = d.getUint8(this.position++), b = b + String.fromCharCode((e & 15) << 18 | (g & 127) << 12 | f << 6 & 127 | d.getUint8(this.position++) & 127) } return b }; a.prototype.readInt = function () { var a = (new DataView(this.arraybytes)).getInt32(this.position, this.isLittleEndian); this.position += 4; return a }; a.prototype.readShort = function () { var a = (new DataView(this.arraybytes)).getInt16(this.position, this.isLittleEndian); this.position += 2; return a }; a.prototype.readDouble = function () { var a = (new DataView(this.arraybytes)).getFloat64(this.position, this.isLittleEndian); this.position += 8; return a }; a.prototype.readUnsignedShort = function () { if (this.position > this.length + 2) throw "ByteArray out of bounds read. Position=" + this.position + ", Length=" + this.length; if (0 == (this.position & 1)) { var a = new Uint16Array(this.arraybytes), b = this.position >> 1; this.position += 2; return a[b] } a = new Uint16Array(this.unalignedarraybytestemp, 0, 1); b = new Uint8Array(this.arraybytes, this.position, 2); (new Uint8Array(this.unalignedarraybytestemp, 0, 2)).set(b); this.position += 2; return a[0] }; a.prototype.writeUnsignedInt = function (a) { this.ensureWriteableSpace(4); if (0 == (this.position & 3)) { var b = new Uint32Array(this.arraybytes); b[this.position >> 2] = ~~a & 4294967295 } else b = new Uint32Array(this.unalignedarraybytestemp, 0, 1), b[0] = ~~a & 4294967295, a = new Uint8Array(this.arraybytes, this.position, 4), b = new Uint8Array(this.unalignedarraybytestemp, 0, 4), a.set(b); this.position += 4; this.position > this.length && (this.length = this.position) }; a.prototype.readUnsignedInt = function () { if (this.position > this.length + 4) throw "ByteArray out of bounds read. Position=" + this.position + ", Length=" + this.length; if (0 == (this.position & 3)) { var a = new Uint32Array(this.arraybytes), b = this.position >> 2; this.position += 4; return a[b] } a = new Uint32Array(this.unalignedarraybytestemp, 0, 1); b = new Uint8Array(this.arraybytes, this.position, 4); (new Uint8Array(this.unalignedarraybytestemp, 0, 4)).set(b); this.position += 4; return a[0] }; a.prototype.writeFloat = function (a) { this.ensureWriteableSpace(4); if (0 == (this.position & 3)) { var b = new Float32Array(this.arraybytes); b[this.position >> 2] = a } else b = new Float32Array(this.unalignedarraybytestemp, 0, 1), b[0] = a, a = new Uint8Array(this.arraybytes, this.position, 4), b = new Uint8Array(this.unalignedarraybytestemp, 0, 4), a.set(b); this.position += 4; this.position > this.length && (this.length = this.position) }; a.prototype.readFloat = function () { if (this.position > this.length + 4) throw "ByteArray out of bounds read. Positon=" + this.position + ", Length=" + this.length; if (0 == (this.position & 3)) { var a = new Float32Array(this.arraybytes), b = this.position >> 2; this.position += 4; return a[b] } a = new Float32Array(this.unalignedarraybytestemp, 0, 1); b = new Uint8Array(this.arraybytes, this.position, 4); (new Uint8Array(this.unalignedarraybytestemp, 0, 4)).set(b); this.position += 4; return a[0] }; a.DEFAULT_ENDIAN = e.BIG_ENDIAN; return a } (); b.ByteArray = d; d.prototype.__class__ = "egret.ByteArray" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(a, b, e) { d.call(this); this._target = null; this.loop = this.ignoreGlobalPause = this._useTicks = !1; this._actions = this._steps = this.pluginData = null; this.paused = !1; this.duration = 0; this._prevPos = -1; this.position = null; this._stepPosition = this._prevPosition = 0; this.passive = !1; this.initialize(a, b, e) } __extends(a, d); a.get = function (c, b, d, e) { void 0 === b && (b = null); void 0 === d && (d = null); void 0 === e && (e = !1); e && a.removeTweens(c); return new a(c, b, d) }; a.removeTweens = function (c) { if (c.tween_count) { for (var b = a._tweens, d = b.length - 1; 0 <= d; d--) b[d]._target == c && (b[d].paused = !0, b.splice(d, 1)); c.tween_count = 0 } }; a.pauseTweens = function (a) { if (a.tween_count) for (var d = b.Tween._tweens, e = d.length - 1; 0 <= e; e--) d[e]._target == a && (d[e].paused = !0) }; a.resumeTweens = function (a) { if (a.tween_count) for (var d = b.Tween._tweens, e = d.length - 1; 0 <= e; e--) d[e]._target == a && (d[e].paused = !1) }; a.tick = function (c, b) { void 0 === b && (b = !1); for (var d = a._tweens.concat(), e = d.length - 1; 0 <= e; e--) { var g = d[e]; b && !g.ignoreGlobalPause || g.paused || g.tick(g._useTicks ? 1 : c) } }; a._register = function (c, d) { var e = c._target, n = a._tweens; if (d) e && (e.tween_count = e.tween_count ? e.tween_count + 1 : 1), n.push(c), a._inited || (b.Ticker.getInstance().register(a.tick, null), a._inited = !0); else for (e && e.tween_count--, e = n.length; e--; ) if (n[e] == c) { n.splice(e, 1); break } }; a.removeAllTweens = function () { for (var c = a._tweens, b = 0, d = c.length; b < d; b++) { var e = c[b]; e.paused = !0; e._target.tweenjs_count = 0 } c.length = 0 }; a.prototype.initialize = function (c, b, d) { this._target = c; b && (this._useTicks = b.useTicks, this.ignoreGlobalPause = b.ignoreGlobalPause, this.loop = b.loop, b.onChange && this.addEventListener("change", b.onChange, b.onChangeObj), b.override && a.removeTweens(c)); this.pluginData = d || {}; this._curQueueProps = {}; this._initQueueProps = {}; this._steps = []; this._actions = []; b && b.paused ? this.paused = !0 : a._register(this, !0); b && null != b.position && this.setPosition(b.position, a.NONE) }; a.prototype.setPosition = function (a, b) { void 0 === b && (b = 1); 0 > a && (a = 0); var d = a, e = !1; d >= this.duration && (this.loop ? d %= this.duration : (d = this.duration, e = !0)); if (d == this._prevPos) return e; var g = this._prevPos; this.position = this._prevPos = d; this._prevPosition = a; if (this._target) if (e) this._updateTargetProps(null, 1); else if (0 < this._steps.length) { for (var f = 0, k = this._steps.length; f < k && !(this._steps[f].t > d); f++); f = this._steps[f - 1]; this._updateTargetProps(f, (this._stepPosition = d - f.t) / f.d) } 0 != b && 0 < this._actions.length && (this._useTicks ? this._runActions(d, d) : 1 == b && d < g ? (g != this.duration && this._runActions(g, this.duration), this._runActions(0, d, !0)) : this._runActions(g, d)); e && this.setPaused(!0); this.dispatchEventWith("change"); return e }; a.prototype._runActions = function (a, b, d) { void 0 === d && (d = !1); var e = a, g = b, f = -1, k = this._actions.length, m = 1; a > b && (e = b, g = a, f = k, k = m = -1); for (; (f += m) != k; ) { b = this._actions[f]; var p = b.t; (p == g || p > e && p < g || d && p == a) && b.f.apply(b.o, b.p) } }; a.prototype._updateTargetProps = function (c, b) { var d, e, g, f; if (c || 1 != b) { if (this.passive = !!c.v) return; c.e && (b = c.e(b, 0, 1, 1)); d = c.p0; e = c.p1 } else this.passive = !1, d = e = this._curQueueProps; for (var k in this._initQueueProps) { null == (g = d[k]) && (d[k] = g = this._initQueueProps[k]); null == (f = e[k]) && (e[k] = f = g); g = g == f || 0 == b || 1 == b || "number" != typeof g ? 1 == b ? f : g : g + (f - g) * b; var m = !1; if (f = a._plugins[k]) for (var p = 0, q = f.length; p < q; p++) { var r = f[p].tween(this, k, g, d, e, b, !!c && d == e, !c); r == a.IGNORE ? m = !0 : g = r } m || (this._target[k] = g) } }; a.prototype.setPaused = function (c) { this.paused = c; a._register(this, !c); return this }; a.prototype._cloneProps = function (a) { var b = {}, d; for (d in a) b[d] = a[d]; return b }; a.prototype._addStep = function (a) { 0 < a.d && (this._steps.push(a), a.t = this.duration, this.duration += a.d); return this }; a.prototype._appendQueueProps = function (c) { var b, d, e, g, f, k; for (k in c) if (void 0 === this._initQueueProps[k]) { d = this._target[k]; if (b = a._plugins[k]) for (e = 0, g = b.length; e < g; e++) d = b[e].init(this, k, d); this._initQueueProps[k] = this._curQueueProps[k] = void 0 === d ? null : d } for (k in c) { d = this._curQueueProps[k]; if (b = a._plugins[k]) for (f = f || {}, e = 0, g = b.length; e < g; e++) b[e].step && b[e].step(this, k, d, c[k], f); this._curQueueProps[k] = c[k] } f && this._appendQueueProps(f); return this._curQueueProps }; a.prototype._addAction = function (a) { a.t = this.duration; this._actions.push(a); return this }; a.prototype._set = function (a, b) { for (var d in a) b[d] = a[d] }; a.prototype.wait = function (a, b) { if (null == a || 0 >= a) return this; var d = this._cloneProps(this._curQueueProps); return this._addStep({ d : a, p0 : d, p1 : d, v : b }) }; a.prototype.to = function (a, b, d) { void 0 === d && (d = void 0); if (isNaN(b) || 0 > b) b = 0; return this._addStep({ d : b || 0, p0 : this._cloneProps(this._curQueueProps), e : d, p1 : this._cloneProps(this._appendQueueProps(a)) }) }; a.prototype.call = function (a, b, d) { void 0 === b && (b = void 0); void 0 === d && (d = void 0); return this._addAction({ f : a, p : d ? d : [], o : b ? b : this._target }) }; a.prototype.set = function (a, b) { void 0 === b && (b = null); return this._addAction({ f : this._set, o : this, p : [a, b ? b : this._target] }) }; a.prototype.play = function (a) { a || (a = this); return this.call(a.setPaused, a, [!1]) }; a.prototype.pause = function (a) { a || (a = this); return this.call(a.setPaused, a, [!0]) }; a.prototype.tick = function (a) { this.paused || this.setPosition(this._prevPosition + a) }; a.NONE = 0; a.LOOP = 1; a.REVERSE = 2; a._tweens = []; a.IGNORE = {}; a._plugins = {}; a._inited = !1; return a } (b.EventDispatcher); b.Tween = e; e.prototype.__class__ = "egret.Tween" })(egret || (egret = {})); (function (b) { var e = function () { function d() { b.Logger.fatal("Ease\u4e0d\u80fd\u88ab\u5b9e\u4f8b\u5316") } d.get = function (a) { -1 > a && (a = -1); 1 < a && (a = 1); return function (c) { return 0 == a ? c : 0 > a ? c * (c * -a + 1 + a) : c * ((2 - c) * a + (1 - a)) } }; d.getPowIn = function (a) { return function (c) { return Math.pow(c, a) } }; d.getPowOut = function (a) { return function (c) { return 1 - Math.pow(1 - c, a) } }; d.getPowInOut = function (a) { return function (c) { return 1 > (c *= 2) ? 0.5 * Math.pow(c, a) : 1 - 0.5 * Math.abs(Math.pow(2 - c, a)) } }; d.sineIn = function (a) { return 1 - Math.cos(a * Math.PI / 2) }; d.sineOut = function (a) { return Math.sin(a * Math.PI / 2) }; d.sineInOut = function (a) { return -0.5 * (Math.cos(Math.PI * a) - 1) }; d.getBackIn = function (a) { return function (c) { return c * c * ((a + 1) * c - a) } }; d.getBackOut = function (a) { return function (c) { return --c * c * ((a + 1) * c + a) + 1 } }; d.getBackInOut = function (a) { a *= 1.525; return function (c) { return 1 > (c *= 2) ? 0.5 * c * c * ((a + 1) * c - a) : 0.5 * ((c -= 2) * c * ((a + 1) * c + a) + 2) } }; d.circIn = function (a) { return - (Math.sqrt(1 - a * a) - 1) }; d.circOut = function (a) { return Math.sqrt(1 - --a * a) }; d.circInOut = function (a) { return 1 > (a *= 2) ? -0.5 * (Math.sqrt(1 - a * a) - 1) : 0.5 * (Math.sqrt(1 - (a -= 2) * a) + 1) }; d.bounceIn = function (a) { return 1 - d.bounceOut(1 - a) }; d.bounceOut = function (a) { return a < 1 / 2.75 ? 7.5625 * a * a : a < 2 / 2.75 ? 7.5625 * (a -= 1.5 / 2.75) * a + 0.75 : a < 2.5 / 2.75 ? 7.5625 * (a -= 2.25 / 2.75) * a + 0.9375 : 7.5625 * (a -= 2.625 / 2.75) * a + 0.984375 }; d.bounceInOut = function (a) { return 0.5 > a ? 0.5 * d.bounceIn(2 * a) : 0.5 * d.bounceOut(2 * a - 1) + 0.5 }; d.getElasticIn = function (a, c) { var b = 2 * Math.PI; return function (d) { if (0 == d || 1 == d) return d; var e = c / b * Math.asin(1 / a); return - (a * Math.pow(2, 10 * (d -= 1)) * Math.sin((d - e) * b / c)) } }; d.getElasticOut = function (a, c) { var b = 2 * Math.PI; return function (d) { if (0 == d || 1 == d) return d; var e = c / b * Math.asin(1 / a); return a * Math.pow(2, -10 * d) * Math.sin((d - e) * b / c) + 1 } }; d.getElasticInOut = function (a, c) { var b = 2 * Math.PI; return function (d) { var e = c / b * Math.asin(1 / a); return 1 > (d *= 2) ? -0.5 * a * Math.pow(2, 10 * (d -= 1)) * Math.sin((d - e) * b / c) : a * Math.pow(2, -10 * (d -= 1)) * Math.sin((d - e) * b / c) * 0.5 + 1 } }; d.quadIn = d.getPowIn(2); d.quadOut = d.getPowOut(2); d.quadInOut = d.getPowInOut(2); d.cubicIn = d.getPowIn(3); d.cubicOut = d.getPowOut(3); d.cubicInOut = d.getPowInOut(3); d.quartIn = d.getPowIn(4); d.quartOut = d.getPowOut(4); d.quartInOut = d.getPowInOut(4); d.quintIn = d.getPowIn(5); d.quintOut = d.getPowOut(5); d.quintInOut = d.getPowInOut(5); d.backIn = d.getBackIn(1.7); d.backOut = d.getBackOut(1.7); d.backInOut = d.getBackInOut(1.7); d.elasticIn = d.getElasticIn(1, 0.3); d.elasticOut = d.getElasticOut(1, 0.3); d.elasticInOut = d.getElasticInOut(1, 0.3 * 1.5); return d } (); b.Ease = e; e.prototype.__class__ = "egret.Ease" })(egret || (egret = {})); (function (b) { var e = function () { function b() { this.type = b.EFFECT } b.prototype.play = function (a) { void 0 === a && (a = !1); var c = this.audio; c && (isNaN(c.duration) || (c.currentTime = 0), c.loop = a, c.play()) }; b.prototype.pause = function () { var a = this.audio; a && a.pause() }; b.prototype.load = function () { var a = this.audio; a && a.load() }; b.prototype.addEventListener = function (a, c) { this.audio && this.audio.addEventListener(a, c, !1) }; b.prototype.removeEventListener = function (a, c) { this.audio && this.audio.removeEventListener(a, c, !1) }; b.prototype.setVolume = function (a) { var c = this.audio; c && (c.volume = a) }; b.prototype.getVolume = function () { return this.audio ? this.audio.volume : 0 }; b.prototype.preload = function (a) { this.type = a }; b.prototype._setAudio = function (a) { this.audio = a }; b.MUSIC = "music"; b.EFFECT = "effect"; return b } (); b.Sound = e; e.prototype.__class__ = "egret.Sound" })(egret || (egret = {})); (function (b) { var e = function () { function b() {} b.isNumber = function (a) { return "number" === typeof a && !isNaN(a) }; b.sin = function (a) { a = Math.round(a); a %= 360; 0 > a && (a += 360); return 90 > a ? egret_sin_map[a] : 180 > a ? egret_cos_map[a - 90] : 270 > a ? -egret_sin_map[a - 180] : -egret_cos_map[a - 270] }; b.cos = function (a) { a = Math.round(a); a %= 360; 0 > a && (a += 360); return 90 > a ? egret_cos_map[a] : 180 > a ? -egret_sin_map[a - 90] : 270 > a ? -egret_cos_map[a - 180] : egret_sin_map[a - 270] }; return b } (); b.NumberUtils = e; e.prototype.__class__ = "egret.NumberUtils" })(egret || (egret = {})); for (var egret_sin_map = {}, egret_cos_map = {}, i = 0; 90 >= i; i++) egret_sin_map[i] = Math.sin(i * egret.Matrix.DEG_TO_RAD), egret_cos_map[i] = Math.cos(i * egret.Matrix.DEG_TO_RAD); Function.prototype.bind || (Function.prototype.bind = function (b) { if ("function" !== typeof this) throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); var e = Array.prototype.slice.call(arguments, 1), d = this, a = function () {}, c = function () { return d.apply(this instanceof a && b ? this : b, e.concat(Array.prototype.slice.call(arguments))) }; a.prototype = this.prototype; c.prototype = new a; return c }); var __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }, RES; (function (b) { var e = function (b) { function a(a, e, h) { void 0 === e && (e = !1); void 0 === h && (h = !1); b.call(this, a, e, h); this.itemsTotal = this.itemsLoaded = 0 } __extends(a, b); a.dispatchResourceEvent = function (c, b, d, e, g, f) { void 0 === d && (d = ""); void 0 === e && (e = null); void 0 === g && (g = 0); void 0 === f && (f = 0); var k = egret.Event._getPropertyData(a); k.groupName = d; k.resItem = e; k.itemsLoaded = g; k.itemsTotal = f; egret.Event._dispatchByTarget(a, c, b, k) }; a.ITEM_LOAD_ERROR = "itemLoadError"; a.CONFIG_COMPLETE = "configComplete"; a.CONFIG_LOAD_ERROR = "configLoadError"; a.GROUP_PROGRESS = "groupProgress"; a.GROUP_COMPLETE = "groupComplete"; a.GROUP_LOAD_ERROR = "groupLoadError"; return a } (egret.Event); b.ResourceEvent = e; e.prototype.__class__ = "RES.ResourceEvent" })(RES || (RES = {})); (function (b) { var e = function () { function b(a, c, d) { this._loaded = !1; this.name = a; this.url = c; this.type = d } Object.defineProperty(b.prototype, "loaded", { get : function () { return this.data ? this.data.loaded : this._loaded }, set : function (a) { this.data && (this.data.loaded = a); this._loaded = a }, enumerable : !0, configurable : !0 }); b.prototype.toString = function () { return '[ResourceItem name="' + this.name + '" url="' + this.url + '" type="' + this.type + '"]' }; b.TYPE_XML = "xml"; b.TYPE_IMAGE = "image"; b.TYPE_BIN = "bin"; b.TYPE_TEXT = "text"; b.TYPE_JSON = "json"; b.TYPE_SHEET = "sheet"; b.TYPE_FONT = "font"; b.TYPE_SOUND = "sound"; return b } (); b.ResourceItem = e; e.prototype.__class__ = "RES.ResourceItem" })(RES || (RES = {})); (function (b) { var e = function () { function d() { this.keyMap = {}; this.groupDic = {}; b.configInstance = this } d.prototype.getGroupByName = function (a) { var c = []; if (!this.groupDic[a]) return c; a = this.groupDic[a]; for (var b = a.length, d = 0; d < b; d++) c.push(this.parseResourceItem(a[d])); return c }; d.prototype.getRawGroupByName = function (a) { return this.groupDic[a] ? this.groupDic[a] : [] }; d.prototype.createGroup = function (a, c, b) { void 0 === b && (b = !1); if (!b && this.groupDic[a] || !c || 0 == c.length) return !1; b = this.groupDic; for (var d = [], e = c.length, g = 0; g < e; g++) { var f = c[g], k = b[f]; if (k) for (var f = k.length, m = 0; m < f; m++) { var p = k[m]; -1 == d.indexOf(p) && d.push(p) } else (p = this.keyMap[f]) && -1 == d.indexOf(p) && d.push(p) } if (0 == d.length) return !1; this.groupDic[a] = d; return !0 }; d.prototype.parseConfig = function (a, c) { if (a) { var b = a.resources; if (b) for (var d = b.length, e = 0; e < d; e++) { var g = b[e], f = g.url; f && -1 == f.indexOf("://") && (g.url = c + f); this.addItemToKeyMap(g) } if (b = a.groups) for (d = b.length, e = 0; e < d; e++) { for (var f = b[e], k = [], m = f.keys.split(","), p = m.length, q = 0; q < p; q++) g = m[q].trim(), (g = this.keyMap[g]) && -1 == k.indexOf(g) && k.push(g); this.groupDic[f.name] = k } } }; d.prototype.addSubkey = function (a, c) { var b = this.keyMap[c]; b && !this.keyMap[a] && (this.keyMap[a] = b) }; d.prototype.addItemToKeyMap = function (a) { this.keyMap[a.name] || (this.keyMap[a.name] = a); if (a.hasOwnProperty("subkeys")) { var c = a.subkeys.split(","); a.subkeys = c; for (var b = c.length, d = 0; d < b; d++) { var e = c[d]; null == this.keyMap[e] && (this.keyMap[e] = a) } } }; d.prototype.getName = function (a) { return (a = this.keyMap[a]) ? a.name : "" }; d.prototype.getType = function (a) { return (a = this.keyMap[a]) ? a.type : "" }; d.prototype.getRawResourceItem = function (a) { return this.keyMap[a] }; d.prototype.getResourceItem = function (a) { return (a = this.keyMap[a]) ? this.parseResourceItem(a) : null }; d.prototype.parseResourceItem = function (a) { var c = new b.ResourceItem(a.name, a.url, a.type); c.data = a; return c }; return d } (); b.ResourceConfig = e; e.prototype.__class__ = "RES.ResourceConfig" })(RES || (RES = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this.thread = 2; this.loadingCount = 0; this.groupTotalDic = {}; this.numLoadedDic = {}; this.itemListDic = {}; this.groupErrorDic = {}; this.retryTimesDic = {}; this.maxRetryTimes = 3; this.failedList = []; this.priorityQueue = {}; this.lazyLoadList = []; this.analyzerDic = {}; this.queueIndex = 0 } __extends(a, d); a.prototype.isGroupInLoading = function (a) { return void 0 !== this.itemListDic[a] }; a.prototype.loadGroup = function (a, d, e) { void 0 === e && (e = 0); if (!this.itemListDic[d] && d) if (a && 0 != a.length) { this.priorityQueue[e] ? this.priorityQueue[e].push(d) : this.priorityQueue[e] = [d]; this.itemListDic[d] = a; e = a.length; for (var n = 0; n < e; n++) a[n].groupName = d; this.groupTotalDic[d] = a.length; this.numLoadedDic[d] = 0; this.next() } else egret.Logger.warning('RES\u52a0\u8f7d\u4e86\u4e0d\u5b58\u5728\u6216\u7a7a\u7684\u8d44\u6e90\u7ec4\uff1a"' + d + '"'), a = new b.ResourceEvent(b.ResourceEvent.GROUP_LOAD_ERROR), a.groupName = d, this.dispatchEvent(a) }; a.prototype.loadItem = function (a) { this.lazyLoadList.push(a); a.groupName = ""; this.next() }; a.prototype.next = function () { for (; this.loadingCount < this.thread; ) { var a = this.getOneResourceItem(); if (!a) break; this.loadingCount++; if (a.loaded) this.onItemComplete(a); else { var d = this.analyzerDic[a.type]; d || (d = this.analyzerDic[a.type] = egret.Injector.getInstance(b.AnalyzerBase, a.type)); d.loadFile(a, this.onItemComplete, this) } } }; a.prototype.getOneResourceItem = function () { if (0 < this.failedList.length) return this.failedList.shift(); var a = Number.NEGATIVE_INFINITY, b; for (b in this.priorityQueue) a = Math.max(a, b); a = this.priorityQueue[a]; if (!a || 0 == a.length) return 0 == this.lazyLoadList.length ? null : this.lazyLoadList.pop(); b = a.length; for (var d, e = 0; e < b; e++) { this.queueIndex >= b && (this.queueIndex = 0); d = this.itemListDic[a[this.queueIndex]]; if (0 < d.length) break; this.queueIndex++ } return 0 == d.length ? null : d.shift() }; a.prototype.onItemComplete = function (a) { this.loadingCount--; var d = a.groupName; if (!a.loaded) { var e = this.retryTimesDic[a.name] || 1; if (e > this.maxRetryTimes) delete this.retryTimesDic[a.name], b.ResourceEvent.dispatchResourceEvent(this.resInstance, b.ResourceEvent.ITEM_LOAD_ERROR, d, a); else { this.retryTimesDic[a.name] = e + 1; this.failedList.push(a); this.next(); return } } if (d) { this.numLoadedDic[d]++; var e = this.numLoadedDic[d], n = this.groupTotalDic[d]; a.loaded || (this.groupErrorDic[d] = !0); b.ResourceEvent.dispatchResourceEvent(this.resInstance, b.ResourceEvent.GROUP_PROGRESS, d, a, e, n); e == n && (a = this.groupErrorDic[d], this.removeGroupName(d), delete this.groupTotalDic[d], delete this.numLoadedDic[d], delete this.itemListDic[d], delete this.groupErrorDic[d], a ? b.ResourceEvent.dispatchResourceEvent(this, b.ResourceEvent.GROUP_LOAD_ERROR, d) : b.ResourceEvent.dispatchResourceEvent(this, b.ResourceEvent.GROUP_COMPLETE, d)) } else this.callBack.call(this.resInstance, a); this.next() }; a.prototype.removeGroupName = function (a) { for (var b in this.priorityQueue) { for (var d = this.priorityQueue[b], e = d.length, g = 0, f = !1, e = d.length, k = 0; k < e; k++) { if (d[k] == a) { d.splice(g, 1); f = !0; break } g++ } if (f) { 0 == d.length && delete this.priorityQueue[b]; break } } }; return a } (egret.EventDispatcher); b.ResourceLoader = e; e.prototype.__class__ = "RES.ResourceLoader" })(RES || (RES = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this.resourceConfig = b.configInstance } __extends(a, d); a.prototype.addSubkey = function (a, b) { this.resourceConfig.addSubkey(a, b) }; a.prototype.loadFile = function (a, b, d) {}; a.prototype.getRes = function (a) {}; a.prototype.destroyRes = function (a) { return !1 }; a.getStringPrefix = function (a) { if (!a) return ""; var b = a.indexOf("."); return -1 != b ? a.substring(0, b) : "" }; a.getStringTail = function (a) { if (!a) return ""; var b = a.indexOf("."); return -1 != b ? a.substring(b + 1) : "" }; return a } (egret.HashObject); b.AnalyzerBase = e; e.prototype.__class__ = "RES.AnalyzerBase" })(RES || (RES = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a() { b.call(this); this.fileDic = {}; this.resItemDic = []; this._dataFormat = egret.URLLoaderDataFormat.BINARY; this.recycler = new egret.Recycler } __extends(a, b); a.prototype.loadFile = function (a, b, d) { if (this.fileDic[a.name]) b.call(d, a); else { var e = this.getLoader(); this.resItemDic[e.hashCode] = { item : a, func : b, thisObject : d }; e.load(new egret.URLRequest(a.url)) } }; a.prototype.getLoader = function () { var a = this.recycler.pop(); a || (a = new egret.URLLoader, a.addEventListener(egret.Event.COMPLETE, this.onLoadFinish, this), a.addEventListener(egret.IOErrorEvent.IO_ERROR, this.onLoadFinish, this)); a.dataFormat = this._dataFormat; return a }; a.prototype.onLoadFinish = function (a) { var b = a.target, d = this.resItemDic[b.hashCode]; delete this.resItemDic[b.hashCode]; this.recycler.push(b); var e = d.item, g = d.func; e.loaded = a.type == egret.Event.COMPLETE; e.loaded && this.analyzeData(e, b.data); g.call(d.thisObject, e) }; a.prototype.analyzeData = function (a, b) { var d = a.name; !this.fileDic[d] && b && (this.fileDic[d] = b) }; a.prototype.getRes = function (a) { return this.fileDic[a] }; a.prototype.hasRes = function (a) { return null != this.getRes(a) }; a.prototype.destroyRes = function (a) { return this.fileDic[a] ? (delete this.fileDic[a], !0) : !1 }; return a } (b.AnalyzerBase); b.BinAnalyzer = e; e.prototype.__class__ = "RES.BinAnalyzer" })(RES || (RES = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a() { b.call(this); this._dataFormat = egret.URLLoaderDataFormat.TEXTURE } __extends(a, b); a.prototype.analyzeData = function (a, b) { var d = a.name; !this.fileDic[d] && b && (this.fileDic[d] = b, (d = a.data) && d.scale9grid && (d = d.scale9grid.split(","), b.scale9Grid = new egret.Rectangle(parseInt(d[0]), parseInt(d[1]), parseInt(d[2]), parseInt(d[3])))) }; return a } (b.BinAnalyzer); b.ImageAnalyzer = e; e.prototype.__class__ = "RES.ImageAnalyzer" })(RES || (RES = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a() { b.call(this); this._dataFormat = egret.URLLoaderDataFormat.TEXT } __extends(a, b); a.prototype.analyzeData = function (a, b) { var d = a.name; if (!this.fileDic[d] && b) try { this.fileDic[d] = JSON.parse(b) } catch (e) { egret.Logger.warning("JSON\u6587\u4ef6\u683c\u5f0f\u4e0d\u6b63\u786e: " + a.url + "\ndata:" + b) } }; return a } (b.BinAnalyzer); b.JsonAnalyzer = e; e.prototype.__class__ = "RES.JsonAnalyzer" })(RES || (RES = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a() { b.call(this); this._dataFormat = egret.URLLoaderDataFormat.TEXT } __extends(a, b); return a } (b.BinAnalyzer); b.TextAnalyzer = e; e.prototype.__class__ = "RES.TextAnalyzer" })(RES || (RES = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this.sheetMap = {}; this.textureMap = {}; this._dataFormat = egret.URLLoaderDataFormat.TEXT } __extends(a, d); a.prototype.getRes = function (a) { var d = this.fileDic[a]; d || (d = this.textureMap[a]); !d && (d = b.AnalyzerBase.getStringPrefix(a), d = this.fileDic[d]) && (a = b.AnalyzerBase.getStringTail(a), d = d.getTexture(a)); return d }; a.prototype.onLoadFinish = function (a) { var b = a.target, d = this.resItemDic[b.hashCode]; delete this.resItemDic[b.hashCode]; this.recycler.push(b); var e = d.item, g = d.func; e.loaded = a.type == egret.Event.COMPLETE; e.loaded && this.analyzeData(e, b.data); "string" == typeof b.data ? (this._dataFormat = egret.URLLoaderDataFormat.TEXTURE, this.loadFile(e, g, d.thisObject), this._dataFormat = egret.URLLoaderDataFormat.TEXT) : g.call(d.thisObject, e) }; a.prototype.analyzeData = function (a, b) { var d = a.name; if (!this.fileDic[d] && b) { var e; if ("string" == typeof b) { try { e = JSON.parse(b) } catch (g) { egret.Logger.warning("JSON\u6587\u4ef6\u683c\u5f0f\u4e0d\u6b63\u786e: " + a.url) } e && (this.sheetMap[d] = e, a.loaded = !1, a.url = this.getRelativePath(a.url, e.file)) } else e = this.sheetMap[d], delete this.sheetMap[d], b && (e = this.parseSpriteSheet(b, e, a.data && a.data.subkeys ? "" : d), this.fileDic[d] = e) } }; a.prototype.getRelativePath = function (a, b) { a = a.split("\\").join("/"); var d = a.lastIndexOf("/"); return a = -1 != d ? a.substring(0, d + 1) + b : b }; a.prototype.parseSpriteSheet = function (a, b, d) { b = b.frames; if (!b) return null; var e = new egret.SpriteSheet(a), g = this.textureMap, f; for (f in b) { var k = b[f]; a = e.createTexture(f, k.x, k.y, k.w, k.h, k.offX, k.offY, k.sourceW, k.sourceH); k.scale9grid && (k = k.scale9grid.split(","), a.scale9Grid = new egret.Rectangle(parseInt(k[0]), parseInt(k[1]), parseInt(k[2]), parseInt(k[3]))); null == g[f] && (g[f] = a, d && this.addSubkey(f, d)) } return e }; return a } (b.BinAnalyzer); b.SheetAnalyzer = e; e.prototype.__class__ = "RES.SheetAnalyzer" })(RES || (RES = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a() { b.call(this) } __extends(a, b); a.prototype.analyzeData = function (a, b) { var d = a.name; if (!this.fileDic[d] && b) { var e; "string" == typeof b ? (e = b, this.sheetMap[d] = e, a.loaded = !1, a.url = this.getTexturePath(a.url, e)) : (e = this.sheetMap[d], delete this.sheetMap[d], b && (e = new egret.BitmapTextSpriteSheet(b, e), this.fileDic[d] = e)) } }; a.prototype.getTexturePath = function (a, b) { var d = "", e = b.split("\n")[2], g = e.indexOf('file="'); -1 != g && (e = e.substring(g + 6), g = e.indexOf('"'), d = e.substring(0, g)); a = a.split("\\").join("/"); g = a.lastIndexOf("/"); return a = -1 != g ? a.substring(0, g + 1) + d : d }; return a } (b.SheetAnalyzer); b.FontAnalyzer = e; e.prototype.__class__ = "RES.FontAnalyzer" })(RES || (RES = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a() { b.call(this); this._dataFormat = egret.URLLoaderDataFormat.SOUND } __extends(a, b); a.prototype.analyzeData = function (a, b) { var d = a.name; !this.fileDic[d] && b && (this.fileDic[d] = b, (d = a.data) && d.soundType ? b.preload(d.soundType) : b.preload(egret.Sound.EFFECT)) }; return a } (b.BinAnalyzer); b.SoundAnalyzer = e; e.prototype.__class__ = "RES.SoundAnalyzer" })(RES || (RES = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (b) { function a() { b.call(this); this._dataFormat = egret.URLLoaderDataFormat.TEXT } __extends(a, b); a.prototype.analyzeData = function (a, b) { var d = a.name; if (!this.fileDic[d] && b) try { var e = egret.XML.parse(b); this.fileDic[d] = e } catch (g) {} }; return a } (b.BinAnalyzer); b.XMLAnalyzer = e; e.prototype.__class__ = "RES.XMLAnalyzer" })(RES || (RES = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { b.loadConfig = function (a, b, e) { void 0 === b && (b = ""); void 0 === e && (e = "json"); d.loadConfig(a, b, e) }; b.loadGroup = function (a, b) { void 0 === b && (b = 0); d.loadGroup(a, b) }; b.isGroupLoaded = function (a) { return d.isGroupLoaded(a) }; b.getGroupByName = function (a) { return d.getGroupByName(a) }; b.createGroup = function (a, b, e) { void 0 === e && (e = !1); return d.createGroup(a, b, e) }; b.hasRes = function (a) { return d.hasRes(a) }; b.getRes = function (a) { return d.getRes(a) }; b.getResAsync = function (a, b, e) { d.getResAsync(a, b, e) }; b.getResByUrl = function (a, b, e, h) { void 0 === h && (h = ""); d.getResByUrl(a, b, e, h) }; b.destroyRes = function (a) { return d.destroyRes(a) }; b.setMaxLoadingThread = function (a) { d.setMaxLoadingThread(a) }; b.addEventListener = function (a, b, e, h, n) { void 0 === h && (h = !1); void 0 === n && (n = 0); d.addEventListener(a, b, e, h, n) }; b.removeEventListener = function (a, b, e, h) { void 0 === h && (h = !1); d.removeEventListener(a, b, e, h) }; var e = function (a) { function c() { a.call(this); this.analyzerDic = {}; this.configItemList = []; this.configComplete = this.callLaterFlag = !1; this.loadedGroups = []; this.groupNameList = []; this.asyncDic = {}; this.init() } __extends(c, a); c.prototype.getAnalyzerByType = function (a) { var c = this.analyzerDic[a]; c || (c = this.analyzerDic[a] = egret.Injector.getInstance(b.AnalyzerBase, a)); return c }; c.prototype.init = function () { egret.Injector.hasMapRule(b.AnalyzerBase, b.ResourceItem.TYPE_BIN) || egret.Injector.mapClass(b.AnalyzerBase, b.BinAnalyzer, b.ResourceItem.TYPE_BIN); egret.Injector.hasMapRule(b.AnalyzerBase, b.ResourceItem.TYPE_IMAGE) || egret.Injector.mapClass(b.AnalyzerBase, b.ImageAnalyzer, b.ResourceItem.TYPE_IMAGE); egret.Injector.hasMapRule(b.AnalyzerBase, b.ResourceItem.TYPE_TEXT) || egret.Injector.mapClass(b.AnalyzerBase, b.TextAnalyzer, b.ResourceItem.TYPE_TEXT); egret.Injector.hasMapRule(b.AnalyzerBase, b.ResourceItem.TYPE_JSON) || egret.Injector.mapClass(b.AnalyzerBase, b.JsonAnalyzer, b.ResourceItem.TYPE_JSON); egret.Injector.hasMapRule(b.AnalyzerBase, b.ResourceItem.TYPE_SHEET) || egret.Injector.mapClass(b.AnalyzerBase, b.SheetAnalyzer, b.ResourceItem.TYPE_SHEET); egret.Injector.hasMapRule(b.AnalyzerBase, b.ResourceItem.TYPE_FONT) || egret.Injector.mapClass(b.AnalyzerBase, b.FontAnalyzer, b.ResourceItem.TYPE_FONT); egret.Injector.hasMapRule(b.AnalyzerBase, b.ResourceItem.TYPE_SOUND) || egret.Injector.mapClass(b.AnalyzerBase, b.SoundAnalyzer, b.ResourceItem.TYPE_SOUND); egret.Injector.hasMapRule(b.AnalyzerBase, b.ResourceItem.TYPE_XML) || egret.Injector.mapClass(b.AnalyzerBase, b.XMLAnalyzer, b.ResourceItem.TYPE_XML); this.resConfig = new b.ResourceConfig; this.resLoader = new b.ResourceLoader; this.resLoader.callBack = this.onResourceItemComp; this.resLoader.resInstance = this; this.resLoader.addEventListener(b.ResourceEvent.GROUP_COMPLETE, this.onGroupComp, this); this.resLoader.addEventListener(b.ResourceEvent.GROUP_LOAD_ERROR, this.onGroupError, this) }; c.prototype.loadConfig = function (a, b, c) { void 0 === c && (c = "json"); this.configItemList.push({ url : a, resourceRoot : b, type : c }); this.callLaterFlag || (egret.callLater(this.startLoadConfig, this), this.callLaterFlag = !0) }; c.prototype.startLoadConfig = function () { this.callLaterFlag = !1; var a = this.configItemList; this.configItemList = []; this.loadingConfigList = a; for (var d = a.length, e = [], g = 0; g < d; g++) { var f = a[g], f = new b.ResourceItem(f.url, f.url, f.type); e.push(f) } this.resLoader.loadGroup(e, c.GROUP_CONFIG, Number.MAX_VALUE) }; c.prototype.isGroupLoaded = function (a) { return -1 != this.loadedGroups.indexOf(a) }; c.prototype.getGroupByName = function (a) { return this.resConfig.getGroupByName(a) }; c.prototype.loadGroup = function (a, c) { void 0 === c && (c = 0); if (-1 != this.loadedGroups.indexOf(a)) b.ResourceEvent.dispatchResourceEvent(this, b.ResourceEvent.GROUP_COMPLETE, a); else if (!this.resLoader.isGroupInLoading(a)) if (this.configComplete) { var d = this.resConfig.getGroupByName(a); this.resLoader.loadGroup(d, a, c) } else this.groupNameList.push({ name : a, priority : c }) }; c.prototype.createGroup = function (a, b, c) { void 0 === c && (c = !1); if (c) { var d = this.loadedGroups.indexOf(a); -1 != d && this.loadedGroups.splice(d, 1) } return this.resConfig.createGroup(a, b, c) }; c.prototype.onGroupComp = function (a) { if (a.groupName == c.GROUP_CONFIG) { a = this.loadingConfigList.length; for (var d = 0; d < a; d++) { var e = this.loadingConfigList[d], g = this.getAnalyzerByType(e.type), f = g.getRes(e.url); g.destroyRes(e.url); this.resConfig.parseConfig(f, e.resourceRoot) } this.configComplete = !0; this.loadingConfigList = null; b.ResourceEvent.dispatchResourceEvent(this, b.ResourceEvent.CONFIG_COMPLETE); e = this.groupNameList; a = e.length; for (d = 0; d < a; d++) g = e[d], this.loadGroup(g.name, g.priority); this.groupNameList = [] } else this.loadedGroups.push(a.groupName), this.dispatchEvent(a) }; c.prototype.onGroupError = function (a) { a.groupName == c.GROUP_CONFIG ? (this.loadingConfigList = null, b.ResourceEvent.dispatchResourceEvent(this, b.ResourceEvent.CONFIG_LOAD_ERROR)) : this.dispatchEvent(a) }; c.prototype.hasRes = function (a) { var c = this.resConfig.getType(a); return "" == c && (a = b.AnalyzerBase.getStringPrefix(a), c = this.resConfig.getType(a), "" == c) ? !1 : !0 }; c.prototype.getRes = function (a) { var c = this.resConfig.getType(a); return "" == c && (c = b.AnalyzerBase.getStringPrefix(a), c = this.resConfig.getType(c), "" == c) ? null : this.getAnalyzerByType(c).getRes(a) }; c.prototype.getResAsync = function (a, c, d) { var e = this.resConfig.getType(a), f = this.resConfig.getName(a); if ("" == e && (f = b.AnalyzerBase.getStringPrefix(a), e = this.resConfig.getType(f), "" == e)) { c.call(d, null); return } (e = this.getAnalyzerByType(e).getRes(a)) ? c.call(d, e) : (a = { key : a, compFunc : c, thisObject : d }, this.asyncDic[f] ? this.asyncDic[f].push(a) : (this.asyncDic[f] = [a], f = this.resConfig.getResourceItem(f), this.resLoader.loadItem(f))) }; c.prototype.getResByUrl = function (a, c, d, e) { void 0 === e && (e = ""); if (a) { e || (e = this.getTypeByUrl(a)); var f = this.getAnalyzerByType(e).getRes(a); f ? c.call(d, f) : (c = { key : a, compFunc : c, thisObject : d }, this.asyncDic[a] ? this.asyncDic[a].push(c) : (this.asyncDic[a] = [c], a = new b.ResourceItem(a, a, e), this.resLoader.loadItem(a))) } else c.call(d, null) }; c.prototype.getTypeByUrl = function (a) { (a = a.substr(a.lastIndexOf(".") + 1)) && (a = a.toLowerCase()); switch (a) { case b.ResourceItem.TYPE_XML: case b.ResourceItem.TYPE_JSON: case b.ResourceItem.TYPE_SHEET: break; case "png": case "jpg": case "gif": a = b.ResourceItem.TYPE_IMAGE; break; case "fnt": a = b.ResourceItem.TYPE_FONT; break; case "txt": a = b.ResourceItem.TYPE_TEXT; break; case "mp3": case "ogg": case "mpeg": case "wav": case "m4a": case "mp4": case "aiff": case "wma": case "mid": a = b.ResourceItem.TYPE_SOUND; break; default: a = b.ResourceItem.TYPE_BIN } return a }; c.prototype.onResourceItemComp = function (a) { var b = this.asyncDic[a.name]; delete this.asyncDic[a.name]; a = this.getAnalyzerByType(a.type); for (var c = b.length, d = 0; d < c; d++) { var e = b[d], k = a.getRes(e.key); e.compFunc.call(e.thisObject, k, e.key) } }; c.prototype.destroyRes = function (a) { var b = this.resConfig.getRawGroupByName(a); if (b) { var c = this.loadedGroups.indexOf(a); -1 != c && this.loadedGroups.splice(c, 1); a = b.length; for (var d = 0; d < a; d++) { c = b[d]; c.loaded = !1; var e = this.getAnalyzerByType(c.type); e.destroyRes(c.name) } return !0 } b = this.resConfig.getType(a); if ("" == b) return !1; c = this.resConfig.getRawResourceItem(a); c.loaded = !1; e = this.getAnalyzerByType(b); return e.destroyRes(a) }; c.prototype.setMaxLoadingThread = function (a) { 1 > a && (a = 1); this.resLoader.thread = a }; c.GROUP_CONFIG = "RES__CONFIG"; return c } (egret.EventDispatcher); e.prototype.__class__ = "RES.Resource"; var d = new e })(RES || (RES = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(b) { void 0 === b && (b = 60); d.call(this); this.frameRate = b; this._time = 0; this._isActivate = !0; 60 == b && (a.requestAnimationFrame = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame, a.cancelAnimationFrame = window.cancelAnimationFrame || window.msCancelAnimationFrame || window.mozCancelAnimationFrame || window.webkitCancelAnimationFrame || window.oCancelAnimationFrame || window.cancelRequestAnimationFrame || window.msCancelRequestAnimationFrame || window.mozCancelRequestAnimationFrame || window.oCancelRequestAnimationFrame || window.webkitCancelRequestAnimationFrame); a.requestAnimationFrame || (a.requestAnimationFrame = function (a) { return window.setTimeout(a, 1E3 / b) }); a.cancelAnimationFrame || (a.cancelAnimationFrame = function (a) { return window.clearTimeout(a) }); a.instance = this; this.registerListener() } __extends(a, d); a.prototype.enterFrame = function () { var c = a.instance, d = a._thisObject, e = a._callback, n = b.getTimer(), g = n - c._time; c._requestAnimationId = a.requestAnimationFrame.call(window, a.prototype.enterFrame); e.call(d, g); c._time = n }; a.prototype.executeMainLoop = function (b, d) { a._callback = b; a._thisObject = d; this.enterFrame() }; a.prototype.reset = function () { var c = a.instance; c._requestAnimationId && (c._time = b.getTimer(), a.cancelAnimationFrame.call(window, c._requestAnimationId), c.enterFrame()) }; a.prototype.registerListener = function () { var c = this, d = function () { c._isActivate && (c._isActivate = !1, b.MainContext.instance.stage.dispatchEvent(new b.Event(b.Event.DEACTIVATE))) }, e = function () { c._isActivate || (c._isActivate = !0, a.instance.reset(), b.MainContext.instance.stage.dispatchEvent(new b.Event(b.Event.ACTIVATE))) }, n = function () { document[g] ? d() : e() }; window.addEventListener("focus", e, !1); window.addEventListener("blur", d, !1); var g, f; "undefined" !== typeof document.hidden ? (g = "hidden", f = "visibilitychange") : "undefined" !== typeof document.mozHidden ? (g = "mozHidden", f = "mozvisibilitychange") : "undefined" !== typeof document.msHidden ? (g = "msHidden", f = "msvisibilitychange") : "undefined" !== typeof document.webkitHidden ? (g = "webkitHidden", f = "webkitvisibilitychange") : "undefined" !== typeof document.oHidden && (g = "oHidden", f = "ovisibilitychange"); "onpageshow" in window && "onpagehide" in window && (window.addEventListener("pageshow", e, !1), window.addEventListener("pagehide", d, !1)); g && f && document.addEventListener(f, n, !1) }; return a } (b.DeviceContext); b.HTML5DeviceContext = e; e.prototype.__class__ = "egret.HTML5DeviceContext" })(egret || (egret = {})); var egret_html5_localStorage; (function (b) { b.getItem = function (b) { return window.localStorage.getItem(b) }; b.setItem = function (b, d) { try { return window.localStorage.setItem(b, d), !0 } catch (a) { return console.log("egret_html5_localStorage.setItem\u4fdd\u5b58\u5931\u8d25,key=" + b + "&value=" + d), !1 } }; b.removeItem = function (b) { window.localStorage.removeItem(b) }; b.clear = function () { window.localStorage.clear() }; b.init = function () { for (var e in b) egret.localStorage[e] = b[e] } })(egret_html5_localStorage || (egret_html5_localStorage = {})); egret_html5_localStorage.init(); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(a) { d.call(this); this.globalAlpha = 1; this.canvas = a || this.createCanvas(); this.canvasContext = this.canvas.getContext("2d"); this._cacheCanvas = document.createElement("canvas"); this._cacheCanvas.width = this.canvas.width; this._cacheCanvas.height = this.canvas.height; this._cacheCanvasContext = this._cacheCanvas.getContext("2d"); this.onResize(); var b = this.canvasContext.setTransform, e = this; this._cacheCanvasContext.setTransform = function (a, c, d, k, m, p) { e._matrixA = a; e._matrixB = c; e._matrixC = d; e._matrixD = k; e._matrixTx = m; e._matrixTy = p; b.call(e._cacheCanvasContext, a, c, d, k, m, p) }; this._matrixA = 1; this._matrixC = this._matrixB = 0; this._matrixD = 1; this._transformTy = this._transformTx = this._matrixTy = this._matrixTx = 0; this.initBlendMode() } __extends(a, d); a.prototype.createCanvas = function () { var a = b.Browser.getInstance().$("#egretCanvas"); if (!a) { var d = document.getElementById(b.StageDelegate.canvas_div_name), a = b.Browser.getInstance().$new("canvas"); a.id = "egretCanvas"; d.appendChild(a) } b.MainContext.instance.stage.addEventListener(b.Event.RESIZE, this.onResize, this); return a }; a.prototype.onResize = function () { if (this.canvas) { var a = document.getElementById(b.StageDelegate.canvas_div_name); this.canvas.width = b.MainContext.instance.stage.stageWidth; this.canvas.height = b.MainContext.instance.stage.stageHeight; this.canvas.style.width = a.style.width; this.canvas.style.height = a.style.height; this._cacheCanvas.width = this.canvas.width; this._cacheCanvas.height = this.canvas.height; this._cacheCanvasContext.imageSmoothingEnabled = b.RendererContext.imageSmoothingEnabled; this._cacheCanvasContext.webkitImageSmoothingEnabled = b.RendererContext.imageSmoothingEnabled; this._cacheCanvasContext.mozImageSmoothingEnabled = b.RendererContext.imageSmoothingEnabled; this._cacheCanvasContext.msImageSmoothingEnabled = b.RendererContext.imageSmoothingEnabled } }; a.prototype.clearScreen = function () { for (var a = b.RenderFilter.getInstance().getDrawAreaList(), d = 0, e = a.length; d < e; d++) { var n = a[d]; this.clearRect(n.x, n.y, n.width, n.height) } a = b.MainContext.instance.stage; this._cacheCanvasContext.clearRect(0, 0, a.stageWidth, a.stageHeight); this.renderCost = 0 }; a.prototype.clearRect = function (a, b, d, e) { this.canvasContext.clearRect(a, b, d * window.devicePixelRatio, e * window.devicePixelRatio) }; a.prototype.drawImage = function (a, e, h, n, g, f, k, m, p, q) { void 0 === q && (q = void 0); var r = a._bitmapData; f += this._transformTx; k += this._transformTy; var t = b.getTimer(); void 0 === q ? this._cacheCanvasContext.drawImage(r, e, h, n, g, f, k, m, p) : this.drawRepeatImage(a, e, h, n, g, f, k, m, p, q); d.prototype.drawImage.call(this, a, e, h, n, g, f, k, m, p, q); this.renderCost += b.getTimer() - t }; a.prototype.drawRepeatImage = function (a, d, e, n, g, f, k, m, p, q) { if (void 0 === a.pattern) { var r = b.MainContext.instance.rendererContext.texture_scale_factor, t = a._bitmapData, s = t; if (t.width != n || t.height != g || 1 != r) s = document.createElement("canvas"), s.width = n * r, s.height = g * r, s.getContext("2d").drawImage(t, d, e, n, g, 0, 0, n * r, g * r); d = this._cacheCanvasContext.createPattern(s, q); a.pattern = d } this._cacheCanvasContext.fillStyle = a.pattern; this._cacheCanvasContext.translate(f, k); this._cacheCanvasContext.fillRect(0, 0, m, p); this._cacheCanvasContext.translate(-f, -k) }; a.prototype.setTransform = function (a) { 1 == a.a && 0 == a.b && 0 == a.c && 1 == a.d && 1 == this._matrixA && 0 == this._matrixB && 0 == this._matrixC && 1 == this._matrixD ? (this._transformTx = a.tx - this._matrixTx, this._transformTy = a.ty - this._matrixTy) : (this._transformTx = this._transformTy = 0, this._matrixA == a.a && this._matrixB == a.b && this._matrixC == a.c && this._matrixD == a.d && this._matrixTx == a.tx && this._matrixTy == a.ty || this._cacheCanvasContext.setTransform(a.a, a.b, a.c, a.d, a.tx, a.ty)) }; a.prototype.setAlpha = function (a, d) { a != this.globalAlpha && (this._cacheCanvasContext.globalAlpha = this.globalAlpha = a); d ? (this.blendValue = this.blendModes[d], this._cacheCanvasContext.globalCompositeOperation = this.blendValue) : this.blendValue != b.BlendMode.NORMAL && (this.blendValue = this.blendModes[b.BlendMode.NORMAL], this._cacheCanvasContext.globalCompositeOperation = this.blendValue) }; a.prototype.initBlendMode = function () { this.blendModes = {}; this.blendModes[b.BlendMode.NORMAL] = "source-over"; this.blendModes[b.BlendMode.ADD] = "lighter" }; a.prototype.setupFont = function (a, b) { void 0 === b && (b = null); b = b || {}; var d = null == b.size ? a._size : b.size, e = null == b.fontFamily ? a._fontFamily : b.fontFamily, g = this._cacheCanvasContext, f = (null == b.italic ? a._italic : b.italic) ? "italic " : "normal ", f = f + ((null == b.bold ? a._bold : b.bold) ? "bold " : "normal "); g.font = f + (d + "px " + e); g.textAlign = "left"; g.textBaseline = "middle" }; a.prototype.measureText = function (a) { return this._cacheCanvasContext.measureText(a).width }; a.prototype.drawText = function (a, e, h, n, g, f) { void 0 === f && (f = null); this.setupFont(a, f); f = f || {}; var k; k = null != f.textColor ? b.toColorString(f.textColor) : a._textColorString; var m; m = null != f.strokeColor ? b.toColorString(f.strokeColor) : a._strokeColorString; var p; p = null != f.stroke ? f.stroke : a._stroke; var q = this._cacheCanvasContext; q.fillStyle = k; q.strokeStyle = m; p && (q.lineWidth = 2 * p, q.strokeText(e, h + this._transformTx, n + this._transformTy, g || 65535)); q.fillText(e, h + this._transformTx, n + this._transformTy, g || 65535); d.prototype.drawText.call(this, a, e, h, n, g, f) }; a.prototype.strokeRect = function (a, b, d, e, g) { this._cacheCanvasContext.strokeStyle = g; this._cacheCanvasContext.strokeRect(a, b, d, e) }; a.prototype.pushMask = function (a) { this._cacheCanvasContext.save(); this._cacheCanvasContext.beginPath(); this._cacheCanvasContext.rect(a.x + this._transformTx, a.y + this._transformTy, a.width, a.height); this._cacheCanvasContext.clip(); this._cacheCanvasContext.closePath() }; a.prototype.popMask = function () { this._cacheCanvasContext.restore(); this._cacheCanvasContext.setTransform(1, 0, 0, 1, 0, 0) }; a.prototype.onRenderStart = function () { this._cacheCanvasContext.save() }; a.prototype.onRenderFinish = function () { this._cacheCanvasContext.restore(); this._cacheCanvasContext.setTransform(1, 0, 0, 1, 0, 0); for (var a = this._cacheCanvas.width, d = this._cacheCanvas.height, e = b.RenderFilter.getInstance().getDrawAreaList(), n = 0, g = e.length; n < g; n++) { var f = e[n], k = f.x, m = f.y, p = f.width, f = f.height; k + p > a && (p = a - k); m + f > d && (f = d - m); 0 < p && 0 < f && this.canvasContext.drawImage(this._cacheCanvas, k, m, p, f, k, m, p, f) } }; return a } (b.RendererContext); b.HTML5CanvasRenderer = e; e.prototype.__class__ = "egret.HTML5CanvasRenderer" })(egret || (egret = {})); var egret_h5_graphics; (function (b) { b.beginFill = function (b, a) { void 0 === a && (a = 1); var c = "rgba(" + (b >> 16) + "," + ((b & 65280) >> 8) + "," + (b & 255) + "," + a + ")"; this.fillStyleColor = c; this.commandQueue.push(new e(this._setStyle, this, [c])) }; b.drawRect = function (b, a, c, l) { this.commandQueue.push(new e(function (a, b, c, d) { var e = this.renderContext; this.canvasContext.beginPath(); this.canvasContext.rect(e._transformTx + a, e._transformTy + b, c, d); this.canvasContext.closePath() }, this, [b, a, c, l])); this._fill() }; b.drawCircle = function (b, a, c) { this.commandQueue.push(new e(function (a, b, c) { var d = this.renderContext; this.canvasContext.beginPath(); this.canvasContext.arc(d._transformTx + a, d._transformTy + b, c, 0, 2 * Math.PI); this.canvasContext.closePath() }, this, [b, a, c])); this._fill() }; b.drawRoundRect = function (b, a, c, l, h, n) { this.commandQueue.push(new e(function (a, b, c, d, e, l) { var h = this.renderContext; a = h._transformTx + a; b = h._transformTy + b; e /= 2; l = l ? l / 2 : e; c = a + c; d = b + d; h = d - l; this.canvasContext.beginPath(); this.canvasContext.moveTo(c, h); this.canvasContext.quadraticCurveTo(c, d, c - e, d); this.canvasContext.lineTo(a + e, d); this.canvasContext.quadraticCurveTo(a, d, a, d - l); this.canvasContext.lineTo(a, b + l); this.canvasContext.quadraticCurveTo(a, b, a + e, b); this.canvasContext.lineTo(c - e, b); this.canvasContext.quadraticCurveTo(c, b, c, b + l); this.canvasContext.lineTo(c, h); this.canvasContext.closePath() }, this, [b, a, c, l, h, n])); this._fill() }; b.drawEllipse = function (b, a, c, l) { this.commandQueue.push(new e(function (a, b, c, d) { var e = this.renderContext; this.canvasContext.save(); a = e._transformTx + a; b = e._transformTy + b; var e = c > d ? c : d, l = c / e; d /= e; this.canvasContext.scale(l, d); this.canvasContext.beginPath(); this.canvasContext.moveTo((a + c) / l, b / d); this.canvasContext.arc(a / l, b / d, e, 0, 2 * Math.PI); this.canvasContext.closePath(); this.canvasContext.restore(); this.canvasContext.stroke() }, this, [b, a, c, l])); this._fill() }; b.lineStyle = function (b, a, c, l, h, n, g, f) { void 0 === b && (b = NaN); void 0 === a && (a = 0); void 0 === c && (c = 1); void 0 === l && (l = !1); void 0 === h && (h = "normal"); void 0 === n && (n = null); void 0 === g && (g = null); void 0 === f && (f = 3); this.strokeStyleColor && (this.createEndLineCommand(), this.commandQueue.push(this.endLineCommand)); this.strokeStyleColor = a = "rgba(" + (a >> 16) + "," + ((a & 65280) >> 8) + "," + (a & 255) + "," + c + ")"; this.commandQueue.push(new e(function (a, b) { this.canvasContext.lineWidth = a; this.canvasContext.strokeStyle = b; this.canvasContext.beginPath() }, this, [b, a])); "undefined" === typeof this.lineX && (this.lineY = this.lineX = 0); this.moveTo(this.lineX, this.lineY) }; b.lineTo = function (b, a) { this.commandQueue.push(new e(function (a, b) { var d = this.renderContext; this.canvasContext.lineTo(d._transformTx + a, d._transformTy + b) }, this, [b, a])); this.lineX = b; this.lineY = a }; b.curveTo = function (b, a, c, l) { this.commandQueue.push(new e(function (a, b, c, d) { var e = this.renderContext; this.canvasContext.quadraticCurveTo(e._transformTx + a, e._transformTy + b, e._transformTx + c, e._transformTy + d) }, this, [b, a, c, l])); this.lineX = c; this.lineY = l }; b.moveTo = function (b, a) { this.commandQueue.push(new e(function (a, b) { var d = this.renderContext; this.canvasContext.moveTo(d._transformTx + a, d._transformTy + b) }, this, [b, a])) }; b.clear = function () { this.lineY = this.lineX = this.commandQueue.length = 0; this.fillStyleColor = this.strokeStyleColor = null }; b.createEndFillCommand = function () { this.endFillCommand || (this.endFillCommand = new e(function () { this.canvasContext.fill(); this.canvasContext.closePath() }, this, null)) }; b.endFill = function () { null != this.fillStyleColor && this._fill(); this.fillStyleColor = null }; b._fill = function () { this.fillStyleColor && (this.createEndFillCommand(), this.commandQueue.push(this.endFillCommand)) }; b.createEndLineCommand = function () { this.endLineCommand || (this.endLineCommand = new e(function () { this.canvasContext.stroke(); this.canvasContext.closePath() }, this, null)) }; b._draw = function (b) { var a = this.commandQueue.length; if (0 != a) { this.renderContext = b; b = this.canvasContext = this.renderContext._cacheCanvasContext || this.renderContext.canvasContext; b.save(); this.strokeStyleColor && 0 < a && this.commandQueue[a - 1] != this.endLineCommand && (this.createEndLineCommand(), this.commandQueue.push(this.endLineCommand), a = this.commandQueue.length); for (var c = 0; c < a; c++) { var e = this.commandQueue[c]; e.method.apply(e.thisObject, e.args) } b.restore() } }; var e = function () { return function (b, a, c) { this.method = b; this.thisObject = a; this.args = c } } (); e.prototype.__class__ = "egret_h5_graphics.Command"; b._setStyle = function (b) { this.canvasContext.fillStyle = b; this.canvasContext.beginPath() }; b.init = function () { for (var d in b) egret.Graphics.prototype[d] = b[d]; egret.RendererContext.createRendererContext = function (a) { return new egret.HTML5CanvasRenderer(a) } } })(egret_h5_graphics || (egret_h5_graphics = {})); egret_h5_graphics.init(); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a(a) { d.call(this); this.size = 2E3; this.vertSize = 5; this.contextLost = !1; this.glContextId = 0; this.currentBlendMode = ""; this.currentBaseTexture = null; this.currentBatchSize = 0; this.maskList = []; this.maskDataFreeList = []; this.canvasContext = document.createElement("canvas").getContext("2d"); console.log("\u4f7f\u7528WebGL\u6a21\u5f0f"); this.canvas = a || this.createCanvas(); this.canvas.addEventListener("webglcontextlost", this.handleContextLost.bind(this), !1); this.canvas.addEventListener("webglcontextrestored", this.handleContextRestored.bind(this), !1); this.onResize(); this.projectionX = this.canvas.width / 2; this.projectionY = -this.canvas.height / 2; a = 6 * this.size; this.vertices = new Float32Array(4 * this.size * this.vertSize); this.indices = new Uint16Array(a); for (var e = 0, h = 0; e < a; e += 6, h += 4) this.indices[e + 0] = h + 0, this.indices[e + 1] = h + 1, this.indices[e + 2] = h + 2, this.indices[e + 3] = h + 0, this.indices[e + 4] = h + 2, this.indices[e + 5] = h + 3; this.initWebGL(); this.shaderManager = new b.WebGLShaderManager(this.gl); this.worldTransform = new b.Matrix; this.initBlendMode(); b.MainContext.instance.addEventListener(b.Event.FINISH_RENDER, this._draw, this); b.TextField.prototype._draw = function (a) { this.getDirty() && (this.cacheAsBitmap = !0); b.DisplayObject.prototype._draw.call(this, a) } } __extends(a, d); a.prototype.createCanvas = function () { var a = b.Browser.getInstance().$("#egretCanvas"); if (!a) { var d = document.getElementById(b.StageDelegate.canvas_div_name), a = b.Browser.getInstance().$new("canvas"); a.id = "egretCanvas"; d.appendChild(a) } b.MainContext.instance.stage.addEventListener(b.Event.RESIZE, this.onResize, this); return a }; a.prototype.onResize = function () { if (this.canvas) { var a = document.getElementById(b.StageDelegate.canvas_div_name); this.canvas.width = b.MainContext.instance.stage.stageWidth; this.canvas.height = b.MainContext.instance.stage.stageHeight; this.canvas.style.width = a.style.width; this.canvas.style.height = a.style.height; this.projectionX = this.canvas.width / 2; this.projectionY = -this.canvas.height / 2 } }; a.prototype.handleContextLost = function () { this.contextLost = !0 }; a.prototype.handleContextRestored = function () { this.initWebGL(); this.shaderManager.setContext(this.gl); this.contextLost = !1 }; a.prototype.initWebGL = function () { for (var a = { stencil : !0 }, b, d = ["experimental-webgl", "webgl"], e = 0; e < d.length; e++) { try { b = this.canvas.getContext(d[e], a) } catch (g) {} if (b) break } if (!b) throw Error("\u5f53\u524d\u6d4f\u89c8\u5668\u4e0d\u652f\u6301webgl"); this.setContext(b) }; a.prototype.setContext = function (a) { this.gl = a; a.id = this.glContextId++; this.vertexBuffer = a.createBuffer(); this.indexBuffer = a.createBuffer(); a.bindBuffer(a.ELEMENT_ARRAY_BUFFER, this.indexBuffer); a.bufferData(a.ELEMENT_ARRAY_BUFFER, this.indices, a.STATIC_DRAW); a.bindBuffer(a.ARRAY_BUFFER, this.vertexBuffer); a.bufferData(a.ARRAY_BUFFER, this.vertices, a.DYNAMIC_DRAW); a.disable(a.DEPTH_TEST); a.disable(a.CULL_FACE); a.enable(a.BLEND); a.colorMask(!0, !0, !0, !0) }; a.prototype.initBlendMode = function () { this.blendModesWebGL = {}; this.blendModesWebGL[b.BlendMode.NORMAL] = [this.gl.ONE, this.gl.ONE_MINUS_SRC_ALPHA]; this.blendModesWebGL[b.BlendMode.ADD] = [this.gl.SRC_ALPHA, this.gl.ONE] }; a.prototype.start = function () { if (!this.contextLost) { var a = this.gl; a.activeTexture(a.TEXTURE0); a.bindBuffer(a.ARRAY_BUFFER, this.vertexBuffer); a.bindBuffer(a.ELEMENT_ARRAY_BUFFER, this.indexBuffer); var b; b = this.colorTransformMatrix ? this.shaderManager.colorTransformShader : this.shaderManager.defaultShader; this.shaderManager.activateShader(b); b.syncUniforms(); a.uniform2f(b.projectionVector, this.projectionX, this.projectionY); var d = 4 * this.vertSize; a.vertexAttribPointer(b.aVertexPosition, 2, a.FLOAT, !1, d, 0); a.vertexAttribPointer(b.aTextureCoord, 2, a.FLOAT, !1, d, 8); a.vertexAttribPointer(b.colorAttribute, 2, a.FLOAT, !1, d, 16) } }; a.prototype.clearScreen = function () { var a = this.gl; a.colorMask(!0, !0, !0, !0); for (var d = b.RenderFilter.getInstance().getDrawAreaList(), e = 0, n = d.length; e < n; e++) { var g = d[e]; a.viewport(g.x, g.y, g.width, g.height); a.bindFramebuffer(a.FRAMEBUFFER, null); a.clearColor(0, 0, 0, 0); a.clear(a.COLOR_BUFFER_BIT) } d = b.MainContext.instance.stage; a.viewport(0, 0, d.stageWidth, d.stageHeight); this.renderCost = 0 }; a.prototype.setBlendMode = function (a) { a || (a = b.BlendMode.NORMAL); if (this.currentBlendMode != a) { var d = this.blendModesWebGL[a]; d && (this._draw(), this.gl.blendFunc(d[0], d[1]), this.currentBlendMode = a) } }; a.prototype.drawRepeatImage = function (a, d, e, n, g, f, k, m, p, q) { q = b.MainContext.instance.rendererContext.texture_scale_factor; n *= q; for (g *= q; f < m; f += n) for (var r = k; r < p; r += g) { var t = Math.min(n, m - f), s = Math.min(g, p - r); this.drawImage(a, d, e, t / q, s / q, f, r, t, s) } }; a.prototype.drawImage = function (a, b, d, e, g, f, k, m, p, q) { void 0 === q && (q = void 0); if (!this.contextLost) if (void 0 !== q) this.drawRepeatImage(a, b, d, e, g, f, k, m, p, q); else { this.createWebGLTexture(a); if (a.webGLTexture !== this.currentBaseTexture || this.currentBatchSize >= this.size - 1) this._draw(), this.currentBaseTexture = a.webGLTexture; var r = this.worldTransform, t = r.a, s = r.b, u = r.c, v = r.d, x = r.tx, y = r.ty; 0 == f && 0 == k || r.append(1, 0, 0, 1, f, k); 1 == e / m && 1 == g / p || r.append(m / e, 0, 0, p / g, 0, 0); f = r.a; k = r.b; m = r.c; p = r.d; q = r.tx; var w = r.ty; r.a = t; r.b = s; r.c = u; r.d = v; r.tx = x; r.ty = y; t = a._sourceWidth; s = a._sourceHeight; a = e; r = g; b /= t; d /= s; e /= t; g /= s; t = this.vertices; s = 4 * this.currentBatchSize * this.vertSize; u = this.worldAlpha; t[s++] = q; t[s++] = w; t[s++] = b; t[s++] = d; t[s++] = u; t[s++] = f * a + q; t[s++] = k * a + w; t[s++] = e + b; t[s++] = d; t[s++] = u; t[s++] = f * a + m * r + q; t[s++] = p * r + k * a + w; t[s++] = e + b; t[s++] = g + d; t[s++] = u; t[s++] = m * r + q; t[s++] = p * r + w; t[s++] = b; t[s++] = g + d; t[s++] = u; this.currentBatchSize++ } }; a.prototype._draw = function () { if (0 != this.currentBatchSize && !this.contextLost) { var a = b.getTimer(); this.start(); var d = this.gl; d.bindTexture(d.TEXTURE_2D, this.currentBaseTexture); var e = this.vertices.subarray(0, 4 * this.currentBatchSize * this.vertSize); d.bufferSubData(d.ARRAY_BUFFER, 0, e); d.drawElements(d.TRIANGLES, 6 * this.currentBatchSize, d.UNSIGNED_SHORT, 0); this.currentBatchSize = 0; this.renderCost += b.getTimer() - a; b.Profiler.getInstance().onDrawImage() } }; a.prototype.setTransform = function (a) { var b = this.worldTransform; b.a = a.a; b.b = a.b; b.c = a.c; b.d = a.d; b.tx = a.tx; b.ty = a.ty }; a.prototype.setAlpha = function (a, b) { this.worldAlpha = a; this.setBlendMode(b) }; a.prototype.createWebGLTexture = function (a) { if (!a.webGLTexture) { var b = this.gl; a.webGLTexture = b.createTexture(); b.bindTexture(b.TEXTURE_2D, a.webGLTexture); b.pixelStorei(b.UNPACK_PREMULTIPLY_ALPHA_WEBGL, !0); b.texImage2D(b.TEXTURE_2D, 0, b.RGBA, b.RGBA, b.UNSIGNED_BYTE, a._bitmapData); b.texParameteri(b.TEXTURE_2D, b.TEXTURE_MAG_FILTER, b.LINEAR); b.texParameteri(b.TEXTURE_2D, b.TEXTURE_MIN_FILTER, b.LINEAR); b.texParameteri(b.TEXTURE_2D, b.TEXTURE_WRAP_S, b.CLAMP_TO_EDGE); b.texParameteri(b.TEXTURE_2D, b.TEXTURE_WRAP_T, b.CLAMP_TO_EDGE); b.bindTexture(b.TEXTURE_2D, null) } }; a.prototype.pushMask = function (a) { this._draw(); var b = this.gl; 0 == this.maskList.length && (b.enable(b.STENCIL_TEST), b.stencilFunc(b.ALWAYS, 1, 1)); var d = this.maskDataFreeList.pop(); d ? (d.x = a.x, d.y = a.y, d.w = a.width, d.h = a.height) : d = { x : a.x, y : a.y, w : a.width, h : a.height }; this.maskList.push(d); b.colorMask(!1, !1, !1, !1); b.stencilOp(b.KEEP, b.KEEP, b.INCR); this.renderGraphics(d); b.colorMask(!0, !0, !0, !0); b.stencilFunc(b.NOTEQUAL, 0, this.maskList.length); b.stencilOp(b.KEEP, b.KEEP, b.KEEP) }; a.prototype.popMask = function () { this._draw(); var a = this.gl, b = this.maskList.pop(); b && (a.colorMask(!1, !1, !1, !1), a.stencilOp(a.KEEP, a.KEEP, a.DECR), this.renderGraphics(b), a.colorMask(!0, !0, !0, !0), a.stencilFunc(a.NOTEQUAL, 0, this.maskList.length), a.stencilOp(a.KEEP, a.KEEP, a.KEEP), this.maskDataFreeList.push(b)); 0 == this.maskList.length && a.disable(a.STENCIL_TEST) }; a.prototype.setGlobalColorTransform = function (a) { if (this.colorTransformMatrix != a && (this._draw(), this.colorTransformMatrix = a)) { a = a.concat(); var b = this.shaderManager.colorTransformShader; b.uniforms.colorAdd.value.w = a.splice(19, 1)[0] / 255; b.uniforms.colorAdd.value.z = a.splice(14, 1)[0] / 255; b.uniforms.colorAdd.value.y = a.splice(9, 1)[0] / 255; b.uniforms.colorAdd.value.x = a.splice(4, 1)[0] / 255; b.uniforms.matrix.value = a } }; a.prototype.setupFont = function (a, b) { var d = this.canvasContext, e = a.italic ? "italic " : "normal ", e = e + (a.bold ? "bold " : "normal "), e = e + (a.size + "px " + a.fontFamily); d.font = e; d.textAlign = "left"; d.textBaseline = "middle" }; a.prototype.measureText = function (a) { return this.canvasContext.measureText(a).width }; a.prototype.renderGraphics = function (a) { var b = this.gl, d = this.shaderManager.primitiveShader; this.graphicsPoints ? (this.graphicsPoints.length = 0, this.graphicsIndices.length = 0) : (this.graphicsPoints = [], this.graphicsIndices = [], this.graphicsBuffer = b.createBuffer(), this.graphicsIndexBuffer = b.createBuffer()); this.updateGraphics(a); this.shaderManager.activateShader(d); b.blendFunc(b.ONE, b.ONE_MINUS_SRC_ALPHA); b.uniformMatrix3fv(d.translationMatrix, !1, this.worldTransform.toArray(!0)); b.uniform2f(d.projectionVector, this.projectionX, -this.projectionY); b.uniform2f(d.offsetVector, 0, 0); b.uniform3fv(d.tintColor, [1, 1, 1]); b.uniform1f(d.alpha, this.worldAlpha); b.bindBuffer(b.ARRAY_BUFFER, this.graphicsBuffer); b.vertexAttribPointer(d.aVertexPosition, 2, b.FLOAT, !1, 24, 0); b.vertexAttribPointer(d.colorAttribute, 4, b.FLOAT, !1, 24, 8); b.bindBuffer(b.ELEMENT_ARRAY_BUFFER, this.graphicsIndexBuffer); b.drawElements(b.TRIANGLE_STRIP, this.graphicsIndices.length, b.UNSIGNED_SHORT, 0); this.shaderManager.activateShader(this.shaderManager.defaultShader) }; a.prototype.updateGraphics = function (a) { var b = this.gl; this.buildRectangle(a); b.bindBuffer(b.ARRAY_BUFFER, this.graphicsBuffer); b.bufferData(b.ARRAY_BUFFER, new Float32Array(this.graphicsPoints), b.STATIC_DRAW); b.bindBuffer(b.ELEMENT_ARRAY_BUFFER, this.graphicsIndexBuffer); b.bufferData(b.ELEMENT_ARRAY_BUFFER, new Uint16Array(this.graphicsIndices), b.STATIC_DRAW) }; a.prototype.buildRectangle = function (a) { var b = a.x, d = a.y, e = a.w; a = a.h; var g = this.graphicsPoints, f = this.graphicsIndices, k = g.length / 6; g.push(b, d); g.push(0, 0, 0, 1); g.push(b + e, d); g.push(0, 0, 0, 1); g.push(b, d + a); g.push(0, 0, 0, 1); g.push(b + e, d + a); g.push(0, 0, 0, 1); f.push(k, k, k + 1, k + 2, k + 3, k + 3) }; return a } (b.RendererContext); b.WebGLRenderer = e; e.prototype.__class__ = "egret.WebGLRenderer" })(egret || (egret = {})); (function (b) { var e = function () { function b() {} b.compileProgram = function (a, c, e) { e = b.compileFragmentShader(a, e); c = b.compileVertexShader(a, c); var h = a.createProgram(); a.attachShader(h, c); a.attachShader(h, e); a.linkProgram(h); a.getProgramParameter(h, a.LINK_STATUS) || console.log("\u65e0\u6cd5\u521d\u59cb\u5316\u7740\u8272\u5668"); return h }; b.compileFragmentShader = function (a, c) { return b._compileShader(a, c, a.FRAGMENT_SHADER) }; b.compileVertexShader = function (a, c) { return b._compileShader(a, c, a.VERTEX_SHADER) }; b._compileShader = function (a, b, d) { d = a.createShader(d); a.shaderSource(d, b); a.compileShader(d); return a.getShaderParameter(d, a.COMPILE_STATUS) ? d : (console.log(a.getShaderInfoLog(d)), null) }; b.checkCanUseWebGL = function () { if (void 0 == b.canUseWebGL) try { var a = document.createElement("canvas"); b.canUseWebGL = !!window.WebGLRenderingContext && !(!a.getContext("webgl") && !a.getContext("experimental-webgl")) } catch (c) { b.canUseWebGL = !1 } return b.canUseWebGL }; return b } (); b.WebGLUtils = e; e.prototype.__class__ = "egret.WebGLUtils" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function () { function b(a) { this.maxAttibs = 10; this.attribState = []; this.tempAttribState = []; for (var c = 0; c < this.maxAttibs; c++) this.attribState[c] = !1; this.setContext(a) } b.prototype.setContext = function (b) { this.gl = b; this.primitiveShader = new c(b); this.defaultShader = new d(b); this.colorTransformShader = new a(b); this.activateShader(this.defaultShader) }; b.prototype.activateShader = function (a) { this.currentShader != a && (this.gl.useProgram(a.program), this.setAttribs(a.attributes), this.currentShader = a) }; b.prototype.setAttribs = function (a) { var b, c; c = this.tempAttribState.length; for (b = 0; b < c; b++) this.tempAttribState[b] = !1; c = a.length; for (b = 0; b < c; b++) this.tempAttribState[a[b]] = !0; a = this.gl; c = this.attribState.length; for (b = 0; b < c; b++) this.attribState[b] !== this.tempAttribState[b] && (this.attribState[b] = this.tempAttribState[b], this.tempAttribState[b] ? a.enableVertexAttribArray(b) : a.disableVertexAttribArray(b)) }; return b } (); b.WebGLShaderManager = e; e.prototype.__class__ = "egret.WebGLShaderManager"; var d = function () { function a(b) { this.defaultVertexSrc = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec2 aColor;\nuniform vec2 projectionVector;\nuniform vec2 offsetVector;\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\nconst vec2 center = vec2(-1.0, 1.0);\nvoid main(void) {\n gl_Position = vec4( ((aVertexPosition + offsetVector) / projectionVector) + center , 0.0, 1.0);\n vTextureCoord = aTextureCoord;\n vColor = vec4(aColor.x, aColor.x, aColor.x, aColor.x);\n}"; this.program = null; this.fragmentSrc = "precision lowp float;\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\nuniform sampler2D uSampler;\nvoid main(void) {\ngl_FragColor = texture2D(uSampler, vTextureCoord) * vColor ;\n}"; this.gl = b; this.init() } a.prototype.init = function () { var a = this.gl, c = b.WebGLUtils.compileProgram(a, this.defaultVertexSrc, this.fragmentSrc); a.useProgram(c); this.uSampler = a.getUniformLocation(c, "uSampler"); this.projectionVector = a.getUniformLocation(c, "projectionVector"); this.offsetVector = a.getUniformLocation(c, "offsetVector"); this.dimensions = a.getUniformLocation(c, "dimensions"); this.aVertexPosition = a.getAttribLocation(c, "aVertexPosition"); this.aTextureCoord = a.getAttribLocation(c, "aTextureCoord"); this.colorAttribute = a.getAttribLocation(c, "aColor"); -1 === this.colorAttribute && (this.colorAttribute = 2); this.attributes = [this.aVertexPosition, this.aTextureCoord, this.colorAttribute]; for (var d in this.uniforms) this.uniforms[d].uniformLocation = a.getUniformLocation(c, d); this.initUniforms(); this.program = c }; a.prototype.initUniforms = function () { if (this.uniforms) { var a = this.gl, b, c; for (c in this.uniforms) { b = this.uniforms[c]; var d = b.type; "mat2" === d || "mat3" === d || "mat4" === d ? (b.glMatrix = !0, b.glValueLength = 1, "mat2" === d ? b.glFunc = a.uniformMatrix2fv : "mat3" === d ? b.glFunc = a.uniformMatrix3fv : "mat4" === d && (b.glFunc = a.uniformMatrix4fv)) : (b.glFunc = a["uniform" + d], b.glValueLength = "2f" === d || "2i" === d ? 2 : "3f" === d || "3i" === d ? 3 : "4f" === d || "4i" === d ? 4 : 1) } } }; a.prototype.syncUniforms = function () { if (this.uniforms) { var a, b = this.gl, c; for (c in this.uniforms) a = this.uniforms[c], 1 === a.glValueLength ? !0 === a.glMatrix ? a.glFunc.call(b, a.uniformLocation, a.transpose, a.value) : a.glFunc.call(b, a.uniformLocation, a.value) : 2 === a.glValueLength ? a.glFunc.call(b, a.uniformLocation, a.value.x, a.value.y) : 3 === a.glValueLength ? a.glFunc.call(b, a.uniformLocation, a.value.x, a.value.y, a.value.z) : 4 === a.glValueLength && a.glFunc.call(b, a.uniformLocation, a.value.x, a.value.y, a.value.z, a.value.w) } }; return a } (); b.EgretShader = d; d.prototype.__class__ = "egret.EgretShader"; var a = function (a) { function b(c) { a.call(this, c); this.fragmentSrc = "precision mediump float;\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\nuniform float invert;\nuniform mat4 matrix;\nuniform vec4 colorAdd;\nuniform sampler2D uSampler;\nvoid main(void) {\nvec4 locColor = texture2D(uSampler, vTextureCoord) * matrix;\nif(locColor.a != 0.0){\nlocColor += colorAdd;\n}\ngl_FragColor = locColor;\n}"; this.uniforms = { matrix : { type : "mat4", value : [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] }, colorAdd : { type : "4f", value : { x : 0, y : 0, z : 0, w : 0 } } }; this.init() } __extends(b, a); return b } (d); b.ColorTransformShader = a; a.prototype.__class__ = "egret.ColorTransformShader"; var c = function () { function a(b) { this.alpha = this.translationMatrix = this.attributes = this.colorAttribute = this.aVertexPosition = this.tintColor = this.offsetVector = this.projectionVector = this.program = null; this.fragmentSrc = "precision mediump float;\nvarying vec4 vColor;\nvoid main(void) {\n gl_FragColor = vColor;\n}"; this.vertexSrc = "attribute vec2 aVertexPosition;\nattribute vec4 aColor;\nuniform mat3 translationMatrix;\nuniform vec2 projectionVector;\nuniform vec2 offsetVector;\nuniform float alpha;\nuniform vec3 tint;\nvarying vec4 vColor;\nvoid main(void) {\n vec3 v = translationMatrix * vec3(aVertexPosition , 1.0);\n v -= offsetVector.xyx;\n gl_Position = vec4( v.x / projectionVector.x -1.0, v.y / -projectionVector.y + 1.0 , 0.0, 1.0);\n vColor = aColor * vec4(tint * alpha, alpha);\n}"; this.gl = b; this.init() } a.prototype.init = function () { var a = this.gl, c = b.WebGLUtils.compileProgram(a, this.vertexSrc, this.fragmentSrc); a.useProgram(c); this.projectionVector = a.getUniformLocation(c, "projectionVector"); this.offsetVector = a.getUniformLocation(c, "offsetVector"); this.tintColor = a.getUniformLocation(c, "tint"); this.aVertexPosition = a.getAttribLocation(c, "aVertexPosition"); this.colorAttribute = a.getAttribLocation(c, "aColor"); this.attributes = [this.aVertexPosition, this.colorAttribute]; this.translationMatrix = a.getUniformLocation(c, "translationMatrix"); this.alpha = a.getUniformLocation(c, "alpha"); this.program = c }; return a } (); b.PrimitiveShader = c; c.prototype.__class__ = "egret.PrimitiveShader" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this) } __extends(a, d); a.prototype.proceed = function (a) { function d() { if (4 == n.readyState) if (n.status != a._status && (a._status = n.status, b.HTTPStatusEvent.dispatchHTTPStatusEvent(a, n.status)), 400 <= n.status || 0 == n.status) b.IOErrorEvent.dispatchIOErrorEvent(a); else { switch (a.dataFormat) { case b.URLLoaderDataFormat.TEXT: a.data = n.responseText; break; case b.URLLoaderDataFormat.VARIABLES: a.data = new b.URLVariables(n.responseText); break; case b.URLLoaderDataFormat.BINARY: a.data = n.response; break; default: a.data = n.responseText } b.__callAsync(b.Event.dispatchEvent, b.Event, a, b.Event.COMPLETE) } } if (a.dataFormat == b.URLLoaderDataFormat.TEXTURE) this.loadTexture(a); else if (a.dataFormat == b.URLLoaderDataFormat.SOUND) this.loadSound(a); else { var e = a._request, n = this.getXHR(); n.onreadystatechange = d; var g = b.NetContext._getUrl(e); n.open(e.method, g, !0); this.setResponseType(n, a.dataFormat); e.method != b.URLRequestMethod.GET && e.data ? e.data instanceof b.URLVariables ? (n.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"), n.send(e.data.toString())) : (n.setRequestHeader("Content-Type", "multipart/form-data"), n.send(e.data)) : n.send() } }; a.prototype.loadSound = function (a) { function d(g) { window.clearTimeout(n.__timeoutId); n.removeEventListener("canplaythrough", d, !1); n.removeEventListener("error", e, !1); g = new b.Sound; g._setAudio(n); a.data = g; b.__callAsync(b.Event.dispatchEvent, b.Event, a, b.Event.COMPLETE) } function e(g) { window.clearTimeout(n.__timeoutId); n.removeEventListener("canplaythrough", d, !1); n.removeEventListener("error", e, !1); b.IOErrorEvent.dispatchIOErrorEvent(a) } var n = new Audio(a._request.url); n.__timeoutId = window.setTimeout(d, 100); n.addEventListener("canplaythrough", d, !1); n.addEventListener("error", e, !1); n.load() }; a.prototype.getXHR = function () { return window.XMLHttpRequest ? new window.XMLHttpRequest : new ActiveXObject("MSXML2.XMLHTTP") }; a.prototype.setResponseType = function (a, d) { switch (d) { case b.URLLoaderDataFormat.TEXT: case b.URLLoaderDataFormat.VARIABLES: a.responseType = b.URLLoaderDataFormat.TEXT; break; case b.URLLoaderDataFormat.BINARY: a.responseType = "arraybuffer"; break; default: a.responseType = d } }; a.prototype.loadTexture = function (a) { var d = a._request, e = new Image; e.onload = function (d) { e.onerror = null; e.onload = null; d = new b.Texture; d._setBitmapData(e); a.data = d; b.__callAsync(b.Event.dispatchEvent, b.Event, a, b.Event.COMPLETE) }; e.onerror = function (d) { e.onerror = null; e.onload = null; b.IOErrorEvent.dispatchIOErrorEvent(a) }; e.src = d.url }; return a } (b.NetContext); b.HTML5NetContext = e; e.prototype.__class__ = "egret.HTML5NetContext" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this._isTouchDown = !1; this.rootDiv = document.getElementById(b.StageDelegate.canvas_div_name) } __extends(a, d); a.prototype.prevent = function (a) { a.stopPropagation(); !0 != a.isScroll && a.preventDefault() }; a.prototype.run = function () { var a = this; window.navigator.msPointerEnabled ? (this.rootDiv.addEventListener("MSPointerDown", function (b) { a._onTouchBegin(b); a.prevent(b) }, !1), this.rootDiv.addEventListener("MSPointerMove", function (b) { a._onTouchMove(b); a.prevent(b) }, !1), this.rootDiv.addEventListener("MSPointerUp", function (b) { a._onTouchEnd(b); a.prevent(b) }, !1)) : b.MainContext.deviceType == b.MainContext.DEVICE_MOBILE ? this.addTouchListener() : b.MainContext.deviceType == b.MainContext.DEVICE_PC && (this.addTouchListener(), this.addMouseListener()); window.addEventListener("mousedown", function (b) { a.inOutOfCanvas(b) ? a.dispatchLeaveStageEvent() : a._isTouchDown = !0 }); window.addEventListener("mouseup", function (b) { a._isTouchDown && (a.inOutOfCanvas(b) ? a.dispatchLeaveStageEvent() : a._onTouchEnd(b)); a._isTouchDown = !1 }) }; a.prototype.addMouseListener = function () { var a = this; this.rootDiv.addEventListener("mousedown", function (b) { a._onTouchBegin(b) }); this.rootDiv.addEventListener("mousemove", function (b) { a._onTouchMove(b) }); this.rootDiv.addEventListener("mouseup", function (b) { a._onTouchEnd(b) }) }; a.prototype.addTouchListener = function () { var a = this; this.rootDiv.addEventListener("touchstart", function (b) { for (var d = b.changedTouches.length, e = 0; e < d; e++) a._onTouchBegin(b.changedTouches[e]); a.prevent(b) }, !1); this.rootDiv.addEventListener("touchmove", function (b) { for (var d = b.changedTouches.length, e = 0; e < d; e++) a._onTouchMove(b.changedTouches[e]); a.prevent(b) }, !1); this.rootDiv.addEventListener("touchend", function (b) { for (var d = b.changedTouches.length, e = 0; e < d; e++) a._onTouchEnd(b.changedTouches[e]); a.prevent(b) }, !1); this.rootDiv.addEventListener("touchcancel", function (b) { for (var d = b.changedTouches.length, e = 0; e < d; e++) a._onTouchEnd(b.changedTouches[e]); a.prevent(b) }, !1) }; a.prototype.inOutOfCanvas = function (a) { var d = this.getLocation(this.rootDiv, a); a = d.x; var d = d.y, e = b.MainContext.instance.stage; return 0 > a || 0 > d || a > e.stageWidth || d > e.stageHeight ? !0 : !1 }; a.prototype.dispatchLeaveStageEvent = function () { this.touchingIdentifiers.length = 0; b.MainContext.instance.stage.dispatchEventWith(b.Event.LEAVE_STAGE) }; a.prototype._onTouchBegin = function (a) { var b = this.getLocation(this.rootDiv, a), d = -1; a.hasOwnProperty("identifier") && (d = a.identifier); this.onTouchBegan(b.x, b.y, d) }; a.prototype._onTouchMove = function (a) { var b = this.getLocation(this.rootDiv, a), d = -1; a.hasOwnProperty("identifier") && (d = a.identifier); this.onTouchMove(b.x, b.y, d) }; a.prototype._onTouchEnd = function (a) { var b = this.getLocation(this.rootDiv, a), d = -1; a.hasOwnProperty("identifier") && (d = a.identifier); this.onTouchEnd(b.x, b.y, d) }; a.prototype.getLocation = function (a, d) { var e = document.documentElement, n = window, g, f; "function" === typeof a.getBoundingClientRect ? (f = a.getBoundingClientRect(), g = f.left, f = f.top) : f = g = 0; g += n.pageXOffset - e.clientLeft; f += n.pageYOffset - e.clientTop; null != d.pageX ? (e = d.pageX, n = d.pageY) : (g -= document.body.scrollLeft, f -= document.body.scrollTop, e = d.clientX, n = d.clientY); var k = b.Point.identity; k.x = (e - g) / b.StageDelegate.getInstance().getScaleX(); k.y = (n - f) / b.StageDelegate.getInstance().getScaleY(); return k }; return a } (b.TouchContext); b.HTML5TouchContext = e; e.prototype.__class__ = "egret.HTML5TouchContext" })(egret || (egret = {})); __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }; (function (b) { var e = function (d) { function a() { d.call(this); this._hasListeners = !1; this._inputType = ""; this._isShow = !1; this.textValue = ""; this._height = this._width = 0; this._styleInfoes = {}; var a = b.StageDelegate.getInstance().getScaleX(), e = b.StageDelegate.getInstance().getScaleY(), h = b.Browser.getInstance().$new("div"); h.position.x = 0; h.position.y = 0; h.scale.x = a; h.scale.y = e; h.transforms(); h.style[egret_dom.getTrans("transformOrigin")] = "0% 0% 0px"; this.div = h; e = b.MainContext.instance.stage; a = e.stageWidth; e = e.stageHeight; h = new b.Shape; h.width = a; h.height = e; h.touchEnabled = !0; this._shape = h; this.getStageDelegateDiv().appendChild(this.div) } __extends(a, d); a.prototype.getStageDelegateDiv = function () { var a = b.Browser.getInstance().$("#StageDelegateDiv"); a || (a = b.Browser.getInstance().$new("div"), a.id = "StageDelegateDiv", document.getElementById(b.StageDelegate.canvas_div_name).appendChild(a), a.transforms()); return a }; a.prototype._setMultiline = function (a) { d.prototype._setMultiline.call(this, a); this.createInput() }; a.prototype.callHandler = function (a) { a.stopPropagation() }; a.prototype._add = function () { this.div && null == this.div.parentNode && this.getStageDelegateDiv().appendChild(this.div) }; a.prototype._remove = function () { this._shape && this._shape.parent && this._shape.parent.removeChild(this._shape); this.div && this.div.parentNode && this.div.parentNode.removeChild(this.div) }; a.prototype._addListeners = function () { this.inputElement && !this._hasListeners && (this._hasListeners = !0, this.inputElement.addEventListener("mousedown", this.callHandler), this.inputElement.addEventListener("touchstart", this.callHandler), this.inputElement.addEventListener("MSPointerDown", this.callHandler)) }; a.prototype._removeListeners = function () { this.inputElement && this._hasListeners && (this._hasListeners = !1, this.inputElement.removeEventListener("mousedown", this.callHandler), this.inputElement.removeEventListener("touchstart", this.callHandler), this.inputElement.removeEventListener("MSPointerDown", this.callHandler)) }; a.prototype.createInput = function () { var a = this._multiline ? "textarea" : "input"; this._inputType != a && (this._inputType = a, null != this.inputElement && (this._removeListeners(), this.div.removeChild(this.inputElement)), this._multiline ? (a = document.createElement("textarea"), a.style.resize = "none") : a = document.createElement("input"), this._styleInfoes = {}, a.type = "text", this.inputElement = a, this.inputElement.value = "", this.div.appendChild(a), this._addListeners(), this.setElementStyle("width", "0px"), this.setElementStyle("border", "none"), this.setElementStyle("margin", "0"), this.setElementStyle("padding", "0"), this.setElementStyle("outline", "medium"), this.setElementStyle("verticalAlign", "top"), this.setElementStyle("wordBreak", "break-all"), this.setElementStyle("overflow", "hidden")) }; a.prototype._open = function (a, b, d, e) {}; a.prototype._setScale = function (a, e) { d.prototype._setScale.call(this, a, e); var h = b.StageDelegate.getInstance().getScaleX(), n = b.StageDelegate.getInstance().getScaleY(); this.div.scale.x = h * a; this.div.scale.y = n * e; this.div.transforms() }; a.prototype.changePosition = function (a, d) { var e = b.StageDelegate.getInstance().getScaleX(), n = b.StageDelegate.getInstance().getScaleY(); this.div.position.x = a * e; this.div.position.y = d * n; this.div.transforms() }; a.prototype.setStyles = function () { this.setElementStyle("fontStyle", this._italic ? "italic" : "normal"); this.setElementStyle("fontWeight", this._bold ? "bold" : "normal"); this.setElementStyle("textAlign", this._textAlign); this.setElementStyle("fontSize", this._size + "px"); this.setElementStyle("color", "#000000"); this.setElementStyle("width", this._width + "px"); this.setElementStyle("height", this._height + "px"); this.setElementStyle("border", "1px solid red"); this.setElementStyle("display", "block") }; a.prototype._show = function () { 0 < this._maxChars ? this.inputElement.setAttribute("maxlength", this._maxChars) : this.inputElement.removeAttribute("maxlength"); this._isShow = !0; var a = this._getText(); this.inputElement.value = a; var d = this; this.inputElement.oninput = function () { d.textValue = d.inputElement.value; d.dispatchEvent(new b.Event("updateText")) }; this.setStyles(); this.inputElement.focus(); this.inputElement.selectionStart = a.length; this.inputElement.selectionEnd = a.length; this._shape && null == this._shape.parent && b.MainContext.instance.stage.addChild(this._shape) }; a.prototype._hide = function () { if (null != this.inputElement) { this._isShow = !1; this.inputElement.oninput = function () {}; this.setElementStyle("border", "none"); this.setElementStyle("display", "none"); this.inputElement.value = ""; this.setElementStyle("width", "0px"); window.scrollTo(0, 0); var a = this; b.setTimeout(function () { a.inputElement.blur(); window.scrollTo(0, 0) }, this, 50); this._shape && this._shape.parent && this._shape.parent.removeChild(this._shape) } }; a.prototype._getText = function () { this.textValue || (this.textValue = ""); return this.textValue }; a.prototype._setText = function (a) { this.textValue = a; this.resetText() }; a.prototype.resetText = function () { this.inputElement && (this.inputElement.value = this.textValue) }; a.prototype._setWidth = function (a) { this._width = a }; a.prototype._setHeight = function (a) { this._height = a }; a.prototype.setElementStyle = function (a, b) { this.inputElement && this._styleInfoes[a] != b && (this.inputElement.style[a] = b, this._styleInfoes[a] = b) }; return a } (b.StageText); b.HTML5StageText = e; e.prototype.__class__ = "egret.HTML5StageText" })(egret || (egret = {})); egret.StageText.create = function () { return new egret.HTML5StageText }; var XiaobinTool = function () { function b() {} b.createBitmapByName = function (b) { var d = new egret.Bitmap; b = RES.getRes(b); d.texture = b; return d }; b.creatMovieClip = function (b, d, a) { void 0 === a && (a = ""); b = RES.getRes(b); var c = RES.getRes(d); b = new egret.MovieClip(b, c); b.name = d; b.frameRate = 60; b.gotoAndPlay(a); return b }; b.hitTest = function (b, d) { var a = b.getBounds(), c = d.getBounds(); a.x = b.x; a.y = b.y; c.x = d.x; c.y = d.y; a.width = b.width * b.scaleX; a.height = b.height * b.scaleY; c.width = d.width * d.scaleX; c.height = d.height * d.scaleY; return a.intersects(c) }; b.GAME_SCORE = "0"; b.JIANG_CHI = "0"; b.KEY = "best_score"; b.dn = ""; b.ppp = ""; b.ccc = ""; b.shouquan = !1; return b } (); XiaobinTool.prototype.__class__ = "XiaobinTool"; var __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }, ScoreSixMc = function (b) { function e() { b.call(this); this.num = 0; this.space = 40; this.theJSON = "numberText_json"; this.thePNG = "numberText_png"; this.addEventListener(egret.Event.ADDED_TO_STAGE, this.onAddToStage, this) } __extends(e, b); e.prototype.onAddToStage = function (b) { this.handredthousandText = XiaobinTool.creatMovieClip(this.theJSON, this.thePNG, "n0"); this.addChild(this.handredthousandText); this.handredthousandText.x = 0; this.tenthousandText = XiaobinTool.creatMovieClip(this.theJSON, this.thePNG, "n0"); this.addChild(this.tenthousandText); this.tenthousandText.x = this.handredthousandText.x + this.space; this.thousandText = XiaobinTool.creatMovieClip(this.theJSON, this.thePNG, "n0"); this.addChild(this.thousandText); this.thousandText.x = this.tenthousandText.x + this.space; this.handredText = XiaobinTool.creatMovieClip(this.theJSON, this.thePNG, "n0"); this.addChild(this.handredText); this.handredText.x = this.thousandText.x + this.space; this.tenText = XiaobinTool.creatMovieClip(this.theJSON, this.thePNG, "n0"); this.addChild(this.tenText); this.tenText.x = this.handredText.x + this.space; this.oneText = XiaobinTool.creatMovieClip(this.theJSON, this.thePNG, "n0"); this.addChild(this.oneText); this.oneText.x = this.tenText.x + this.space }; e.prototype.setNum = function (b) { this.num = b; b = Math.floor(this.num / 1E5).toString(); this.handredthousandText.gotoAndStop("n" + b.toString()); 0 == b && (this.handredthousandText.visible = !1); 0 < Math.floor(this.num / 1E5) && (this.handredthousandText.visible = !0); b = Math.floor(this.num / 1E4).toString(); b = b.slice(b.length - 1, b.length); this.tenthousandText.gotoAndStop("n" + b.toString()); !1 == this.handredthousandText.visible && 0 == b && (this.tenthousandText.visible = !1); 0 < Math.floor(this.num / 1E4) && (this.tenthousandText.visible = !0); b = Math.floor(this.num / 1E3).toString(); b = b.slice(b.length - 1, b.length); this.thousandText.gotoAndStop("n" + b.toString()); !1 == this.tenthousandText.visible && !1 == this.handredthousandText.visible && 0 == b && (this.thousandText.visible = !1); 0 < Math.floor(this.num / 1E3) && (this.thousandText.visible = !0); b = Math.floor(this.num / 100).toString(); b = b.slice(b.length - 1, b.length); this.handredText.gotoAndStop("n" + b.toString()); !1 == this.thousandText.visible && !1 == this.tenthousandText.visible && !1 == this.handredthousandText.visible && 0 == b && (this.handredText.visible = !1); 0 < Math.floor(this.num / 100) && (this.handredText.visible = !0); b = Math.floor(this.num / 10).toString(); b = b.slice(b.length - 1, b.length); this.tenText.gotoAndStop("n" + b.toString()); !1 == this.handredText.visible && !1 == this.thousandText.visible && !1 == this.tenthousandText.visible && !1 == this.handredthousandText.visible && 0 == b && (this.tenText.visible = !1); 0 < Math.floor(this.num / 10) && (this.tenText.visible = !0); b = this.num.toString(); b = b.slice(b.length - 1, b.length); this.oneText.gotoAndStop("n" + b.toString()) }; e.isCreat = !1; return e } (egret.Sprite); ScoreSixMc.prototype.__class__ = "ScoreSixMc"; var __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }, GameOverPanel = function (b) { function e() { b.call(this); this.addEventListener(egret.Event.ADDED_TO_STAGE, this.ats, this) } __extends(e, b); e.prototype.ats = function (b) { this.stageW = this.stage.stageWidth; this.stageH = this.stage.stageHeight; b = XiaobinTool.createBitmapByName("gameOverPanel_png"); this.addChild(b); this.sixScoreMc = new ScoreSixMc; this.sixScoreMc.x = 135; this.sixScoreMc.y = 305; this.sixScoreMc.space = 22; this.addChild(this.sixScoreMc); this.sixScoreMc.setNum(e.scoreNum); var a = XiaobinTool.createBitmapByName("replay_btn_png"); this.addChild(a); a.anchorOffsetX = a.width / 2; a.x = b.width / 2; a.y = 385; a.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.doReplay, this); a.touchEnabled = !0; var c = XiaobinTool.createBitmapByName("more_btn_png"); this.addChild(c); c.anchorOffsetX = c.width / 2; c.x = b.width / 2 + 130; c.y = a.y; c.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.doMore, this); c.touchEnabled = !0; c = XiaobinTool.createBitmapByName("share_btn_png"); this.addChild(c); c.anchorOffsetX = c.width / 2; c.x = b.width / 2 - 130; c.y = a.y; c.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.doShare, this); c.touchEnabled = !0 }; e.prototype.doReplay = function (b) { b.target.parent && b.target.parent.removeChild(b.target); b = new egret.Event("click_replay_btn", !0); this.dispatchEvent(b) }; e.prototype.doShare = function (b) { play68_submitScore(window.myPlay68Score); }; e.prototype.doMore = function (b) { Play68.goHome(); }; e.scoreNum = 0; e.duiNum = 0; return e } (egret.Sprite); GameOverPanel.prototype.__class__ = "GameOverPanel"; var __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }, StartBtn = function (b) { function e() { b.call(this); this.addEventListener(egret.Event.ADDED_TO_STAGE, this.onAddToStage, this) } __extends(e, b); e.prototype.onAddToStage = function (b) { this.bgBMP = new egret.Bitmap; this.addChild(this.bgBMP); this.bgBMP.texture = RES.getRes("start_btn_png") }; return e } (egret.Sprite); StartBtn.prototype.__class__ = "StartBtn"; var __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }, HomePage = function (b) { function e() { b.call(this); this.stageH = this.stageW = 0; this.homePage = null; this.addEventListener(egret.Event.ADDED_TO_STAGE, this.startGame, this) } __extends(e, b); e.prototype.startGame = function (b) { b = XiaobinTool.createBitmapByName("homepage_jpg"); this.addChild(b); this.stageW = this.stage.stageWidth; this.stageH = this.stage.stageHeight; null == this.homePage && (b = XiaobinTool.createBitmapByName("startPanel_png"), this.addChild(b), b.x = (this.stageW - b.width) / 2, b.y = 560, b = XiaobinTool.createBitmapByName("homepageLight_png"), this.addChild(b), b.anchorOffsetX = b.width / 2, b.anchorOffsetY = -0, b.x = this.stageW / 2, b.y = 0, b.rotation = -20, egret.Tween.get(b, { loop : !0 }).to({ rotation : 20 }, 1500).wait(0).to({ rotation : -20 }, 1500).wait(0), b = XiaobinTool.createBitmapByName("title_png"), this.addChild(b), b.x = (this.stageW - b.width) / 2, b.y = 20, b = XiaobinTool.createBitmapByName("logo_png"), this.addChild(b), b.x = (this.stageW - b.width) / 2, b.y = this.stageH - b.height, this.startBtn = new StartBtn, this.addChild(this.startBtn), this.startBtn.x = (this.stageW - this.startBtn.width) / 2, this.startBtn.y = 580, this.startBtn.touchEnabled = !0, this.startBtn.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchBegin, this)); this.touchEnabled = !0 }; e.prototype.doHelp = function (b) { null == this.helpMc && (this.helpMc = XiaobinTool.creatMovieClip("pageMc_json", "pageMc_png", "yd1"), this.addChild(this.helpMc), this.upBtn = XiaobinTool.createBitmapByName("up_png"), this.addChild(this.upBtn), this.upBtn.x = 20, this.upBtn.y = 760, this.upBtn.touchEnabled = !0, this.downBtn = XiaobinTool.createBitmapByName("down_png"), this.addChild(this.downBtn), this.downBtn.x = 20, this.downBtn.y = this.upBtn.y, this.downBtn.touchEnabled = !0, this.backBtn = XiaobinTool.createBitmapByName("back_png"), this.addChild(this.backBtn), this.backBtn.x = this.stageW - this.downBtn.width - 20, this.backBtn.y = this.upBtn.y, this.backBtn.touchEnabled = !0, this.upBtn.visible = !1, this.downBtn.visible = !0, this.upBtn.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.doUp, this), this.downBtn.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.doDown, this), this.backBtn.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.doBack, this)) }; e.prototype.doBack = function (b) { console.log("doBack"); this.removeChild(this.upBtn); this.removeChild(this.downBtn); this.removeChild(this.backBtn); this.removeChild(this.helpMc); this.helpMc = null }; e.prototype.doUp = function (b) { console.log("doUp"); this.helpMc.gotoAndStop("yd1"); this.upBtn.visible = !1; this.downBtn.visible = !0 }; e.prototype.doDown = function (b) { console.log("doDown"); this.helpMc.gotoAndStop("yd2"); this.upBtn.visible = !0; this.downBtn.visible = !1 }; e.prototype.doShare = function (b) { console.log("doShare") }; e.prototype.doMore = function (b) { console.log("doMore") }; e.prototype.loop = function (b) {}; e.prototype.onTouchBegin = function (b) { b = new egret.Event("click_start_btn", !0); this.dispatchEvent(b) }; return e } (egret.Sprite); HomePage.prototype.__class__ = "HomePage"; var __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }, InGame = function (b) { function e() { b.call(this); this.scoreNum = this.stageH = this.stageW = 0; this.gameOver = !1; this.allTime = this.curTime = 30; this.space = 20; this.speed = -2; this.dengArr = []; this.speedArr = []; this.x_speedArr = []; this.addEventListener(egret.Event.ADDED_TO_STAGE, this.ats, this) } __extends(e, b); e.prototype.ats = function (b) { this.stageW = this.stage.stageWidth; this.stageH = this.stage.stageHeight; this.touchEnabled = !0; this.creatBg(); this.bgShape = new egret.Shape; this.addChild(this.bgShape); this.bgShape.alpha = 0.7; this.bgShape.graphics.beginFill(0, 0.5); this.bgShape.graphics.drawRect(0, 0, 500, 900); this.bgShape.graphics.endFill(); this.container = new egret.Sprite; this.addChild(this.container); this.creatTip(); this.creatPoint(); this.creatTimer(); this.creatTimeBar(); this.creatScoreTxt(); this.creatScoreMc(); this.bgMusic = RES.getRes("bgSound"); this.bgMusic.play(); this.bgMusic.addEventListener("ended", this.rePlay.bind(this)); this.addEventListener(egret.Event.ENTER_FRAME, this.loop, this); this.stage.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchTap, this) }; e.prototype.rePlay = function () { this.bgMusic.load(); this.bgMusic.play() }; e.prototype.onTouchTap = function (b) { null == this.tip && !0 != this.gameOver && (this.touchX = b.stageX, this.touchY = b.stageY, this.p.x = this.touchX, this.p.y = this.touchY, this.checkHit()) }; e.prototype.checkHit = function () { for (var b = 0; b < this.dengArr.length; b++) { var a = this.dengArr[b]; if (0 == a.rotation && XiaobinTool.hitTest(this.p, a)) { a.gotoAndStop("liang"); a.rotation = -1 + Math.random(); b = Math.abs(Math.floor(this.speedArr[b])); this.scoreNum += b; this.scoreMc.setNum(this.scoreNum); this.bgShape.alpha -= 0.02; 0 > this.bgShape.alpha && (this.bgShape.alpha = 0); break } } }; e.prototype.loop = function (b) { null == this.tip && !0 != this.gameOver && (this.updateTimeBar(), this.moveDeng()) }; e.prototype.moveDeng = function () { for (var b = 0; b < this.dengArr.length; b++) { var a = this.dengArr[b]; a.y > this.stageH / 2 ? (a.x += this.x_speedArr[b], 50 > a.x && (a.x = 50), 430 < a.x && (a.x = 430)) : (a.alpha -= 0.003, 0 > a.alpha && (a.alpha = 0)); a.scaleX -= 0.003; a.scaleY -= 0.003; 0.4 > a.scaleX && (a.alpha = 0.4); 0.4 > a.scaleX && (a.alpha = 0.4); a.y += this.speedArr[b]; a.y < 0 - a.height - 100 && (this.container.removeChild(a), this.dengArr.splice(b, 1), this.x_speedArr.splice(b, 1), this.speedArr.splice(b, 1)) } }; e.prototype.updateTimeBar = function () { this.bar1 && (this.rect = new egret.Rectangle(0, 0, this.curTime / this.allTime * this.bar1.width, 300), this.bar1.mask = this.rect) }; e.prototype.creatBg = function () { this.bg = XiaobinTool.createBitmapByName("bg_jpg"); this.addChild(this.bg) }; e.prototype.creatScoreMc = function () { var b = new ScoreSixMc; this.scoreMc = b; this.scoreMc.space = 22; this.addChild(b); this.scoreMc.setNum(this.scoreNum); this.scoreMc.x = 330; this.scoreMc.y = 52 }; e.prototype.creatScoreTxt = function () { this.scoreTxt = XiaobinTool.createBitmapByName("scoreTxt_png"); this.addChild(this.scoreTxt); this.scoreTxt.x = this.stageW - this.scoreTxt.width - 10; this.scoreTxt.y = 20 }; e.prototype.creatTimeBar = function () { this.bar2 = XiaobinTool.createBitmapByName("bar2_png"); this.addChild(this.bar2); this.bar2.x = 70; this.bar2.y = 30; this.bar1 = XiaobinTool.createBitmapByName("bar1_png"); this.addChild(this.bar1); this.bar1.x = this.bar2.x; this.bar1.y = 30; this.shp = new egret.Shape; this.addChild(this.shp); this.timeTxt = XiaobinTool.createBitmapByName("timeTxt_png"); this.addChild(this.timeTxt); this.timeTxt.x = 10; this.timeTxt.y = 22 }; e.prototype.creatPoint = function () { this.p = XiaobinTool.createBitmapByName("p_png"); this.addChild(this.p); this.p.alpha = 0.001; this.p.anchorOffsetX = this.p.width / 2; this.p.anchorOffsetY = this.p.height / 2 }; e.prototype.creatTip = function () { this.tip = XiaobinTool.createBitmapByName("tip_png"); this.addChild(this.tip) }; e.prototype.creatTimer = function () { this.timer = new egret.Timer(1E3); this.timer.addEventListener(egret.TimerEvent.TIMER, this.doTimer, this); this.timer.start() }; e.prototype.doTimer = function (b) { null != this.tip ? (this.removeChild(this.tip), this.tip = null) : (this.count++, 0 < this.curTime && (this.curTime--, this.updateTimeBar(), this.creatDeng()), 0 == this.curTime && this.makeGameOver()) }; e.prototype.creatDeng = function () { Math.random(); for (var b = 0; 3 > b; b++) { var a = XiaobinTool.creatMovieClip("deng_json", "deng_png", "an"); this.container.addChild(a); a.x = 100 + (a.width + this.space) * b; a.y = this.stageH - 50; this.dengArr.push(a); var a = -1 + 2 * Math.random(), c = 0, c = 50 < this.curTime ? 2 + -1 * Math.random() : 40 < this.curTime ? 1 + -2 * Math.random() : 30 < this.curTime ? 0 + -2 * Math.random() : 20 < this.curTime ? -0.5 + -3 * Math.random() : 10 < this.curTime ? -1 + -4 * Math.random() : -1 + -5 * Math.random(); this.speedArr.push(c); this.x_speedArr.push(a) } }; e.prototype.makeGameOver = function () { this.timer.removeEventListener(egret.TimerEvent.TIMER, this.doTimer, this); this.removeEventListener(egret.Event.ENTER_FRAME, this.loop, this); GameOverPanel.scoreNum = this.scoreNum; var b = new egret.Shape; this.addChild(b); b.graphics.beginFill(0, 0.5); b.graphics.drawRect(0, 0, 800, 800); b.graphics.endFill(); b = new GameOverPanel; this.addChild(b); b.x = 30; b.y = -740; egret.Tween.get(b, { loop : !1 }).to({ y : 0 }, 1500, egret.Ease.bounceOut).wait(0); this.gameOver = !0; window.myPlay68Score = this.scoreNum; updateShare(this.scoreNum); this.bgMusic.pause() }; return e } (egret.Sprite); InGame.prototype.__class__ = "InGame"; var __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }, LoadingUI = function (b) { function e() { b.call(this); this.createView() } __extends(e, b); e.prototype.createView = function () { RES.addEventListener(RES.ResourceEvent.CONFIG_COMPLETE, this.onConfigComplete, this); RES.loadConfig("resource/resource.json", "resource/"); this.textField = new egret.TextField }; e.prototype.setProgress = function (b, a) { this.textField.text = "" + Math.floor(b / a * 100) + "%"; this.textField.x = 240 - this.textField.width / 2; this.bar1 && (this.rect = new egret.Rectangle(0, 0, b / a * this.bar1.width, 200), this.bar1.mask = this.rect); this.mc && (this.mc.x = b / a * 480, this.mc.y = 400) }; e.prototype.onConfigComplete = function (b) { RES.removeEventListener(RES.ResourceEvent.CONFIG_COMPLETE, this.onConfigComplete, this); RES.addEventListener(RES.ResourceEvent.GROUP_COMPLETE, this.onResourceLoadComplete, this); RES.loadGroup("preload") }; e.prototype.onResourceLoadComplete = function (b) { "preload" == b.groupName && (RES.removeEventListener(RES.ResourceEvent.GROUP_COMPLETE, this.onResourceLoadComplete, this), this.createPic(), this.createText(), this.createShape()) }; e.prototype.createShape = function () { this.shape = new egret.Shape; this.addChild(this.shape) }; e.prototype.createText = function () { this.addChild(this.textField); this.textField.x = 240; this.textField.y = 660; this.textField.width = 720; this.textField.height = 100; this.textField.size = 30; this.textField.textColor = 15733805; this.textField.textAlign = "center" }; e.prototype.createPic = function () { this.pic = XiaobinTool.createBitmapByName("loadBg_jpg"); this.addChild(this.pic); this.graphics.beginFill(0, 1); this.graphics.drawRect(0, 0, 720, 960); this.graphics.endFill(); this.bar2 = XiaobinTool.createBitmapByName("bar22_png"); this.addChild(this.bar2); this.bar2.x = 240 - this.bar2.width / 2; this.bar2.y = 610; this.bar1 = XiaobinTool.createBitmapByName("bar11_png"); this.addChild(this.bar1); this.bar1.x = 240 - this.bar1.width / 2; this.bar1.y = this.bar2.y + 1; this.shp = new egret.Shape; this.addChild(this.shp) }; e.prototype.createMc = function () { this.mc = XiaobinTool.creatMovieClip("hero_json", "hero_png", "wait"); this.addChild(this.mc) }; return e } (egret.Sprite); LoadingUI.prototype.__class__ = "LoadingUI"; var __extends = this.__extends || function (b, e) { function d() { this.constructor = b } for (var a in e) e.hasOwnProperty(a) && (b[a] = e[a]); d.prototype = e.prototype; b.prototype = new d }, Main = function (b) { function e() { b.call(this); this.moveTime = 400; this.stageH = this.stageW = 0; this.addEventListener(egret.Event.ADDED_TO_STAGE, this.onAddToStage, this) } __extends(e, b); e.prototype.onAddToStage = function (b) { this.loadingView = new LoadingUI; this.stage.addChild(this.loadingView); RES.addEventListener(RES.ResourceEvent.CONFIG_COMPLETE, this.onConfigComplete, this); RES.loadConfig("resource/resource.json", "resource/") }; e.prototype.onConfigComplete = function (b) { RES.removeEventListener(RES.ResourceEvent.CONFIG_COMPLETE, this.onConfigComplete, this); RES.addEventListener(RES.ResourceEvent.GROUP_COMPLETE, this.onResourceLoadComplete, this); RES.addEventListener(RES.ResourceEvent.GROUP_PROGRESS, this.onResourceProgress, this); RES.loadGroup("preload") }; e.prototype.onResourceLoadComplete = function (b) { "preload" == b.groupName && RES.loadGroup("loading"); "loading" == b.groupName && (this.stage.removeChild(this.loadingView), RES.removeEventListener(RES.ResourceEvent.GROUP_COMPLETE, this.onResourceLoadComplete, this), RES.removeEventListener(RES.ResourceEvent.GROUP_PROGRESS, this.onResourceProgress, this), this.createGameScene()) }; e.prototype.onResourceProgress = function (b) { this.loadingView.setProgress(b.itemsLoaded, b.itemsTotal) }; e.prototype.createGameScene = function () { this.stageW = this.stage.stageWidth; this.stageH = this.stage.stageHeight; null == this.homepage && (this.homepage = new HomePage); this.addChild(this.homepage); this.addEventListener("click_start_btn", this.doClickStart, this); this.addEventListener("click_replay_btn", this.doReplay, this); this.addEventListener("click_next_btn", this.doReplay, this); this.addEventListener("click_home_btn", this.doHome, this) }; e.prototype.doHome = function (b) { null != this.ingame && (this.removeChild(this.ingame), this.ingame = null); null == this.homepage && (this.homepage = new HomePage); this.addChild(this.homepage) }; e.prototype.doReplay = function () { null != this.ingame && (this.removeChild(this.ingame), this.ingame = null); this.createIngame() }; e.prototype.createIngame = function () { if (null == this.ingame) { this.ingame = new InGame; this.addChild(this.ingame); var b = new egret.Rectangle(0, 0, this.stageW, 960); this.ingame.mask = b } //ih5game.start() }; e.prototype.doClickStart = function () { null != this.homepage && (this.removeChild(this.homepage), this.homepage = null); this.createIngame() }; return e } (egret.DisplayObjectContainer); Main.prototype.__class__ = "Main";