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, g) { void 0 === a && (a = !1); void 0 === g && (g = !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 = g } __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, g, 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 p = k.pop(); p ? p._type = g : p = new c(g); p._bubbles = e; p._cancelable = f; if (d) for (var n in d) p[n] = d[n], null !== p[n] && (d[n] = null); c = a.dispatchEvent(p); k.push(p); return c }; a._getPropertyData = function(c) { var a = c._props; a || (a = c._props = {}); return a }; a.dispatchEvent = function(c, l, g, b) { void 0 === g && (g = !1); var d = a._getPropertyData(a); b && (d.data = b); a._dispatchByTarget(a, c, l, d, g) }; 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"; 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, g) { void 0 === a && (a = !1); void 0 === g && (g = !1); b.call(this, c, a, g); 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, g) { void 0 === a && (a = !1); void 0 === g && (g = !1); d.call(this, c, a, g) } __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, g, b, e, f, k, p, n, q) { void 0 === a && (a = !0); void 0 === g && (g = !0); void 0 === b && (b = 0); void 0 === e && (e = 0); void 0 === f && (f = 0); void 0 === k && (k = !1); void 0 === p && (p = !1); void 0 === q && (q = !1); d.call(this, c, a, g); this._stageY = this._stageX = 0; this.touchPointID = b; this._stageX = e; this._stageY = f; this.ctrlKey = k; this.altKey = p; 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, g, d, e, f, k, p, n) { void 0 === g && (g = 0); void 0 === d && (d = 0); void 0 === e && (e = 0); void 0 === f && (f = !1); void 0 === k && (k = !1); void 0 === p && (p = !1); void 0 === n && (n = !1); var q = b.Event._getPropertyData(a); q.touchPointID = g; q._stageX = d; q._stageY = e; q.ctrlKey = f; q.altKey = k; q.shiftKey = p; q.touchDown = n; 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, g) { void 0 === a && (a = !1); void 0 === g && (g = !1); d.call(this, c, a, g) } __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 = {})); (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, g, 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, g, e) }; a.prototype._insertEventBin = function(c, a, b, d, e) { void 0 === e && (e = void 0); for (var f = -1, k = c.length, p = 0; p < k; p++) { var n = c[p]; if (n.listener === a && n.thisObject === b && n.display === e) return !1; - 1 == f && n.priority < d && (f = p) } a = { listener: a, thisObject: b, priority: d }; e && (a.display = e); - 1 != f ? c.splice(f, 0, a) : c.push(a); return !0 }; a.prototype.removeEventListener = function(c, a, b, d) { void 0 === d && (d = !1); if (d = d ? this._captureEventsMap : this._eventsMap) { var e = d[c]; e && (this._removeEventBin(e, a, b), 0 == e.length && delete d[c]) } }; a.prototype._removeEventBin = function(c, a, b, d) { void 0 === d && (d = void 0); for (var e = c.length, f = 0; f < e; f++) { var k = c[f]; if (k.listener === a && k.thisObject === b && k.display === d) return c.splice(f, 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, g) { void 0 === a && (a = !1); b.Event.dispatchEvent(this, c, a, g) }; 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 g = 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, g, 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(), g = a.length, d = 0; d < g; 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(), g = a.length, d = 0; d < g; 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(), g = 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], g[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, g) { 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, g].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) { b.getQualifiedClassName = function(b) { b = b.prototype ? b.prototype : b.__proto__; if (b.hasOwnProperty("__class__")) return b.__class__; var d = b.constructor.toString(), a = d.indexOf("("), d = d.substring(9, a); return b.__class__ = d } })(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, g = 0; g < l; g++) if (a = a[c[g]], !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, g) { for (var m = [], h = 3; h < arguments.length; h++) m[h - 3] = arguments[h]; m = { listener: c, thisObject: l, delay: g, params: m }; 0 == a && b.Ticker.getInstance().register(e, null); a++; d[a] = m; 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, h, f) { void 0 === c && (c = 1); void 0 === a && (a = 0); void 0 === b && (b = 0); void 0 === e && (e = 1); void 0 === h && (h = 0); void 0 === f && (f = 0); d.call(this); this.a = c; this.b = a; this.c = b; this.d = e; this.tx = h; 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 p = this.a, n = this.c; this.a = p * c + this.b * b; this.b = p * a + this.b * d; this.c = n * c + this.d * b; this.d = n * 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, p = this.b, n = this.c, q = this.d; if (1 != c || 0 != a || 0 != b || 1 != d) this.a = c * k + a * n, this.b = c * p + a * q, this.c = b * k + d * n, this.d = b * p + d * q; this.tx = e * k + f * n + this.tx; this.ty = e * p + f * q + this.ty; return this }; a.prototype.prependTransform = function(c, l, b, d, e, f, k, p, n) { if (e % 360) { var q = e * a.DEG_TO_RAD; e = Math.cos(q); q = Math.sin(q) } else e = 1, q = 0; if (p || n) this.tx -= p, this.ty -= n; f || k ? (f *= a.DEG_TO_RAD, k *= a.DEG_TO_RAD, this.prepend(e * b, q * b, -q * d, e * d, 0, 0), this.prepend(Math.cos(k), Math.sin(k), -Math.sin(f), Math.cos(f), c, l)) : this.prepend(e * b, q * b, -q * d, e * d, c, l); return this }; a.prototype.appendTransform = function(c, l, b, d, e, f, k, p, n) { if (e % 360) { var q = e * a.DEG_TO_RAD; e = Math.cos(q); q = Math.sin(q) } else e = 1, q = 0; f || k ? (f *= a.DEG_TO_RAD, k *= a.DEG_TO_RAD, this.append(Math.cos(k), Math.sin(k), -Math.sin(f), Math.cos(f), c, l), this.append(e * b, q * b, -q * d, e * d, 0, 0)) : this.append(e * b, q * b, -q * d, e * d, c, l); if (p || n) this.tx -= p * this.a + n * this.c, this.ty -= p * this.b + n * 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, l) { c *= a.DEG_TO_RAD; l *= a.DEG_TO_RAD; this.append(Math.cos(l), Math.sin(l), -Math.sin(c), Math.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, g) { var d = b.Point.identity; d.x = c.a * a + c.c * g + c.tx; d.y = c.d * g + 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, g, e) { void 0 === c && (c = 0); void 0 === a && (a = 0); void 0 === g && (g = 0); void 0 === e && (e = 0); b.call(this); this.x = c; this.y = a; this.width = g; 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, g, d, n) { void 0 === n && (n = 0); b.StageDelegate.getInstance()._stageWidth = c; b.StageDelegate.getInstance()._stageHeight = a; c = document.getElementById(e.canvas_div_name); c.style.width = l + "px"; c.style.height = g + "px"; c.style.top = n + "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(), g = b / l, d = a / g, e = 1; 0 != this.minWidth && (e = Math.min(1, d / this.minWidth)); this.setEgretSize(d / e, l, a, b * e); c._scaleX = g * e; c._scaleY = g * 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(), g = l / a, d = b / g, 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 = g * e; c._scaleY = g * 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, g = l / a; this.setEgretSize(a, b / g, l, b); c._scaleX = g; c._scaleY = g }; 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(), g = this._getClientHeight(), d = b, e = g, m = d / a < e / l ? d / a : e / l, d = a * m, e = l * m, b = Math.floor((b - d) / 2); c._offSetY = Math.floor((g - e) / 2); this.setEgretSize(a, l / 1, 1 * d, e, b, c._offSetY); c._scaleX = 1 * m; c._scaleY = 1 * m }; 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(), g = this._getClientHeight(), b = b / a, g = g / l; this.setEgretSize(a, l, a * b, l * g); c._scaleX = b; c._scaleY = g }; 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, g, d, e, f, k, p, n, q, r) { void 0 === r && (r = void 0); k = k || 0; p = p || 0; var s = a._texture_to_render; if (null != s && 0 != f && 0 != e && 0 != n && 0 != q) if (0 != this._drawAreaList.length && b.MainContext.instance.rendererContext._cacheCanvasContext) { var t = b.DisplayObject.getTransformBounds(a._getSize(b.Rectangle.identity), a._worldTransform); a._worldBounds.initialize(t.x, t.y, t.width, t.height); t = this._originalData; t.sourceX = g; t.sourceY = d; t.sourceWidth = e; t.sourceHeight = f; t.destX = k; t.destY = p; t.destWidth = n; t.destHeight = q; for (var u = this.getDrawAreaList(), v = 0; v < u.length; v++) this.ignoreRender(a, u[v], t.destX, t.destY) || c.drawImage(s, g, d, e, f, k, p, n, q, r) } else c.drawImage(s, g, d, e, f, k, p, n, 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)]), c = this._defaultDrawAreaList) : c = this._drawAreaList; return c }; 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._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()) }, 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 (this._cacheAsBitmap) { if (this._cacheDirty || this.width != this.renderTexture._sourceWidth || this.height != this.renderTexture._sourceHeight) this._makeBitmapCache(), this._cacheDirty = !1; var a = this._texture_to_render, g = 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, g, d, e, a); return !0 } return !1 }; 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 g = this._measureBounds(), d = this._hasWidthSet ? this._explicitWidth : g.width, e = this._hasHeightSet ? this._explicitHeight : g.height; this._rectW = g.width; this._rectH = g.height; this._clearSizeDirty(); var f = g.x, g = g.y, k = 0, p = 0; a && (0 != this._anchorX || 0 != this._anchorY ? (k = d * this._anchorX, p = e * this._anchorY) : (k = this._anchorOffsetX, p = this._anchorOffsetY)); this._cacheBounds.initialize(f - k, g - p, 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 g = l._getSize(b.Rectangle.identity); c.prependTransform(l._x, l._y, l._scaleX, l._scaleY, l._rotation, l._skewX, l._skewY, g.width * l._anchorX, g.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 = l._parent } return c }; a.prototype.localToGlobal = function(c, a, g) { void 0 === c && (c = 0); void 0 === a && (a = 0); var d = this._getConcatenatedMatrix(); d.append(1, 0, 0, 1, c, a); g || (g = new b.Point); g.x = d.tx; g.y = d.ty; return g }; a.prototype.globalToLocal = function(c, a, g) { void 0 === c && (c = 0); void 0 === a && (a = 0); var d = this._getConcatenatedMatrix(); d.invert(); d.append(1, 0, 0, 1, c, a); g || (g = new b.Point); g.x = d.tx; g.y = d.ty; return g }; a.prototype.hitTest = function(c, a, g) { void 0 === g && (g = !1); if (!this._visible || !g && !this._touchEnabled) return null; g = this._getSize(b.Rectangle.identity); return 0 <= c && c < g.width && 0 <= a && a < g.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, g) { c = this.globalToLocal(c, a); return g ? (this._hitTestPointTexture || (this._hitTestPointTexture = new b.RenderTexture), g = this._hitTestPointTexture, g.drawToTexture(this), 0 != g.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, g; g = this._getOffsetPoint(); a = g.x; g = g.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, -g)) : c.appendTransform(this._x, this._y, this._scaleX, this._scaleY, this._rotation, this._skewX, this._skewY, a, g); 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 g = b.Point.identity; g.x = c; g.y = a; return g }; 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, g, e, h) { void 0 === e && (e = !1); void 0 === h && (h = 0); d.prototype.addEventListener.call(this, c, l, g, e, h); ((e = c == b.Event.ENTER_FRAME) || c == b.Event.RENDER) && this._insertEventBin(e ? a._enterFrameCallBackList : a._renderCallBackList, l, g, h, this) }; a.prototype.removeEventListener = function(c, l, g, e) { void 0 === e && (e = !1); d.prototype.removeEventListener.call(this, c, l, g, e); ((e = c == b.Event.ENTER_FRAME) || c == b.Event.RENDER) && this._removeEventBin(e ? a._enterFrameCallBackList : a._renderCallBackList, l, g, 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) ? this._makeBitmapCache(): this._texture_to_render = null }, enumerable: !0, configurable: !0 }); a.prototype._makeBitmapCache = function() { this.renderTexture || (this.renderTexture = new b.RenderTexture); this.renderTexture.drawToTexture(this); this._texture_to_render = this.renderTexture }; 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, p = f * a.c, f = f * a.d, n = a.tx, q = a.ty, r = n, s = n, t = q, u = q; (b = k + n) < r ? r = b : b > s && (s = b); (b = k + p + n) < r ? r = b : b > s && (s = b); (b = p + n) < r ? r = b : b > s && (s = b); (d = e + q) < t ? t = d : d > u && (u = d); (d = e + f + q) < t ? t = d : d > u && (u = d); (d = f + q) < t ? t = d : d > u && (u = d); return c.initialize(r, t, s - r, u - t) }; 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, g, 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 g = this._children.indexOf(c); 0 > g && b.Logger.fatal("child\u4e0d\u5728\u5f53\u524d\u5bb9\u5668\u5185"); this._children.splice(g, 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, g) { void 0 === g && (g = !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); g && 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 g = this._children, d = g[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); g.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 g = this._children.indexOf(c), d = this._children.indexOf(a); - 1 == g || -1 == d ? b.Logger.fatal("child\u672a\u88abaddChild\u5230\u8be5parent") : this._swapChildrenAt(g, 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, g = 0, d = 0, e = this._children.length, f = 0; f < e; f++) { var k = this._children[f]; if (k._visible) { var p = k.getBounds(b.Rectangle.identity, !1), n = p.x, q = p.y, r = p.width, p = p.height, k = k._getMatrix(), k = b.DisplayObject.getTransformBounds(b.Rectangle.identity.initialize(n, q, r, p), k), n = k.x, q = k.y, r = k.width + k.x, k = k.height + k.y; if (n < c || 0 == f) c = n; if (r > a || 0 == f) a = r; if (q < g || 0 == f) g = q; if (k > d || 0 == f) d = k } } return b.Rectangle.identity.initialize(c, g, a - c, d - g) }; a.prototype.hitTest = function(c, a, g) { void 0 === g && (g = !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 h = this._children, f = this._touchChildren, k = h.length - 1; 0 <= k; k--) { var p = h[k], n = p._getMatrix(), q = p._scrollRect; q && n.append(1, 0, 0, 1, -q.x, -q.y); n.invert(); n = b.Matrix.transformCoords(n, c, a); if (p = p.hitTest(n.x, n.y, !0)) { if (!f) return this; if (p._touchEnabled && f) return p; e = this } } return e ? e : this._texture_to_render || this.graphics ? d.prototype.hitTest.call(this, c, a, g) : 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) { if (this._scaleMode != c) { this._scaleMode = c; var a = {}; a[b.StageScaleMode.NO_SCALE] = new b.NoScale; a[b.StageScaleMode.SHOW_ALL] = new b.ShowAll; a[b.StageScaleMode.NO_BORDER] = new b.FixedWidth; a[b.StageScaleMode.EXACT_FIT] = new b.FullScreen; c = a[c]; if (!c) throw Error("\u4f7f\u7528\u4e86\u5c1a\u672a\u5b9e\u73b0\u7684ScaleMode"); 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; this.dispatchEventWith(b.Event.RESIZE) } }, enumerable: !0, configurable: !0 }); 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, g) { if (!this._touchEnabled) return null; var d; if (!this._touchChildren) return this; g = this._children; for (var e = g.length - 1; 0 <= e; e--) { d = g[e]; var f = d._getMatrix(), k = d._scrollRect; k && f.append(1, 0, 0, 1, -k.x, -k.y); f.invert(); f = b.Matrix.transformCoords(f, c, a); if ((d = d.hitTest(f.x, f.y, !0)) && d._touchEnabled) return d } 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 && (this._removeEvents(), d.prototype.removeChildAt.call(this, 0)); this._content = c; d.prototype.addChild.call(this, c); this._addEvents(); this._explicitWidth || this._getContentWidth(); this._explicitHeight || this._getContentHeight() }; 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._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._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) b ? (this._scrollTop += c, this._scrollLeft += a) : (this._scrollTop = c, this._scrollLeft = a), this._updateContentPosition() }; 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() { this.scrollRect = new b.Rectangle(this._scrollLeft, this._scrollTop, this.width, this.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 || (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) { this.delayTouchBeginEvent && (this.delayTouchBeginEvent = null, this.touchBeginTimer.stop()); var a = this._getPointChange(c); this.setScrollPosition(a.y, a.x, !0); this._calcVelocitys(c); this._logTouchEvent(c) }; a.prototype._onTouchEnd = function(c) { this.stage.removeEventListener(b.TouchEvent.TOUCH_MOVE, this._onTouchMove, this); this.stage.removeEventListener(b.TouchEvent.TOUCH_END, this._onTouchEnd, this); this.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 h = this._velocitys[e], f = a.weight[e], c = c + h.x * f, b = b + h.y * f, d = d + f; this._velocitys.length = 0; c /= d; b /= d; h = Math.abs(c); d = Math.abs(b); f = this.getMaxScrollLeft(); e = this.getMaxScrollTop(); c = 0.02 < h ? 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.weight = [1, 1.33, 1.66, 2, 2.33]; return a }(b.DisplayObjectContainer); b.ScrollView = e; e.prototype.__class__ = "egret.ScrollView" })(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, e) { void 0 === a && (a = NaN); void 0 === e && (e = NaN); d.call(this, c); this.content = c; this.width = NaN == a ? this._getContentWidth() : a; this.height = NaN == e ? this._getContentHeight() : e; b.Logger.warning("egret.Scroller\u5df2\u5e9f\u5f03\uff0c\u8bf7\u4f7f\u7528egret.ScrollView") } __extends(a, d); Object.defineProperty(a.prototype, "scrollXEnabled", { get: function() { return "off" != this.horizontalScrollPolicy }, set: function(c) { b.Logger.warning("egret.Scroller\u5df2\u5e9f\u5f03\uff0c\u8bf7\u4f7f\u7528egret.ScrollView"); this.horizontalScrollPolicy = c ? "auto" : "off" }, enumerable: !0, configurable: !0 }); Object.defineProperty(a.prototype, "scrollYEnabled", { get: function() { return "off" != this.verticalScrollPolicy }, set: function(c) { b.Logger.warning("egret.Scroller\u5df2\u5e9f\u5f03\uff0c\u8bf7\u4f7f\u7528egret.ScrollView"); this.verticalScrollPolicy = c ? "auto" : "off" }, enumerable: !0, configurable: !0 }); return a }(b.ScrollView); b.Scroller = e; e.prototype.__class__ = "egret.Scroller" })(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 h = e._texture_to_render; if (h) { var f = h._textureWidth, k = h._textureHeight; if ("scale" == e.fillMode) { var p = e.scale9Grid || h.scale9Grid; if (p && f - p.width < b && k - p.height < d) a.drawScale9GridImage(c, e, p, b, d); else { var p = h._offsetX, n = h._offsetY, q = h._bitmapWidth || f, r = h._bitmapHeight || k; b /= f; p = Math.round(p * b); b = Math.round(q * b); d /= k; n = Math.round(n * d); d = Math.round(r * d); a.renderFilter.drawImage(c, e, h._bitmapX, h._bitmapY, q, r, p, n, b, d) } } else a.drawRepeatImage(c, e, b, d, e.fillMode) } }; a.drawRepeatImage = function(c, a, d, e, h) { var f = a._texture_to_render; if (f) { var k = f._textureWidth, p = f._textureHeight, n = f._bitmapX, q = f._bitmapY, k = f._bitmapWidth || k, p = f._bitmapHeight || p, r = f._offsetX, f = f._offsetY; b.RenderFilter.getInstance().drawImage(c, a, n, q, k, p, r, f, d, e, h) } }; a.drawScale9GridImage = function(c, a, d, e, h) { var f = a._texture_to_render; if (f && d) { var k = b.RenderFilter.getInstance(), p = f._textureWidth, n = f._textureHeight, q = f._bitmapX, r = f._bitmapY, s = f._bitmapWidth || p, t = f._bitmapHeight || n, u = f._offsetX, f = f._offsetY; d = b.Rectangle.identity.initialize(d.x - Math.round(u), d.y - Math.round(u), d.width, d.height); u = Math.round(u); f = Math.round(f); e -= p - s; h -= n - t; d.y == d.bottom && (d.bottom < t ? d.bottom++ : d.y--); d.x == d.right && (d.right < s ? d.right++ : d.x--); var p = q + d.x, n = q + d.right, v = s - d.right, x = r + d.y, y = r + d.bottom, w = t - d.bottom, z = u + d.x, B = f + d.y, t = h - (t - d.bottom), s = e - (s - d.right); k.drawImage(c, a, q, r, d.x, d.y, u, f, d.x, d.y); k.drawImage(c, a, p, r, d.width, d.y, z, f, s - d.x, d.y); k.drawImage(c, a, n, r, v, d.y, u + s, f, e - s, d.y); k.drawImage(c, a, q, x, d.x, d.height, u, B, d.x, t - d.y); k.drawImage(c, a, p, x, d.width, d.height, z, B, s - d.x, t - d.y); k.drawImage(c, a, n, x, v, d.height, u + s, B, e - s, t - d.y); k.drawImage(c, a, q, y, d.x, w, u, f + t, d.x, h - t); k.drawImage(c, a, p, y, d.width, w, z, f + t, s - d.x, h - t); k.drawImage(c, a, n, y, v, w, u + s, f + t, e - s, h - t) } }; 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._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 }); a.prototype._updateTransform = function() { this.visible && (this._textChanged && this._renderText(), d.prototype._updateTransform.call(this)) }; a.prototype._renderText = function(c) { var a = c = 0; this._textChanged && this.removeChildren(); for (var d = 0, e = this.text.length; d < e; d++) { var h = this.text.charAt(d), f = this.spriteSheet.getTexture(h); if (null == f) console.log("\u5f53\u524d\u6ca1\u6709\u4f4d\u56fe\u6587\u5b57\uff1a" + h); else { var h = f._offsetX, k = f._offsetY, p = f._textureWidth; if (this._textChanged) { var n = this._bitmapPool[d]; n || (n = new b.Bitmap, this._bitmapPool.push(n)); n.texture = f; this.addChild(n); n.x = c } c += p + h; k + f._textureHeight > a && (a = k + f._textureHeight) } } 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, h) { 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, h, 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__ = "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._numLines = this._lineSpacing = this._maxChars = 0; this._multiline = !1; this._textArr = []; this._isArrayChanged = !1; 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._setTextDirty = function() { this._setSizeDirty() }; a.prototype._setBaseText = function(c) { null == c && (c = ""); if (this._text != c || this._displayAsPassword) { this._setTextDirty(); this._text = c; c = ""; if (this._displayAsPassword) for (var a = 0, b = this._text.length; a < b; a++) switch (this._text.charAt(a)) { case "\n": c += "\n"; break; case "\r": break; default: c += "*" } else c = this._text; this.setMiddleStyle([ [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, "maxScrollV", { get: function() { return this._numLines }, 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, !1); this._clearDirty() }; a.prototype._measureBounds = function() { return this.drawText(b.MainContext.instance.rendererContext, !0) }; a.prototype._setTextArray = function(c) { for (var a = "", b = 0; b < c.length; b++) a += c[b][0], c[b][0] = this.changeToPassText(c[b][0]); this._text = a; this.setMiddleStyle(c); this._setSizeDirty() }; 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 }; a.prototype._getLinesArr = function() { if (!this._isArrayChanged) return this._linesArr; this._isArrayChanged = !1; for (var c = this._textArr, a = b.MainContext.instance.rendererContext, d = this._linesArr = [], e = 0, h = 0, f = 0, k = 0; k < c.length; k++) { var p = c[k]; p[1] = p[1] || {}; for (var h = Math.max(h, p[1].size || this._size), n = p[0].toString().split(/(?:\r\n|\r|\n)/), q = 0; q < n.length; q++) { null == d[f] && (d[f] = [], e = 0); a.setupFont(this); var r = a.measureText(n[q]); if (this._hasWidthSet) if (e + r < this._explicitWidth) d[f].push([n[q], p[1], r]), e += r; else { for (var s = 0, t = 0, u = n[q]; s < u.length; s++) { r = a.measureText(u.charAt(s)); if (e + r > this._explicitWidth) break; t += r; e += r } 0 < s && (d[f].push([u.substring(0, s), p[1], t]), n[q] = u.substring(s)); q-- } else e += r, d[f].push([n[q], p[1], r]); if (q < n.length - 1) { d[f].push([e, h]); if (this._type == b.TextFieldType.INPUT && !this._multiline) return d; f++ } } k == c.length - 1 && d[f].push([e, h]) } return d }; a.prototype.drawText = function(c, a) { var d = this._getLinesArr(); c.setupFont(this); if (!d) return b.Rectangle.identity.initialize(0, 0, 0, 0); for (var e = d.length, h = 0.5 * this._size, f = 0, k = 0, p = 0; p < d.length; p++) var n = d[p], f = f + n[n.length - 1][1], k = Math.max(n[n.length - 1][0], k); f += (e - 1) * this._lineSpacing; this._hasWidthSet && (k = this._explicitWidth); p = this._hasHeightSet ? this._explicitHeight : Number.POSITIVE_INFINITY; this._hasHeightSet && f < p && (n = 0, this._verticalAlign == b.VerticalAlign.MIDDLE ? n = 0.5 : this._verticalAlign == b.VerticalAlign.BOTTOM && (n = 1), h += n * (p - f)); var h = Math.round(h), q = 0; this._textAlign == b.HorizontalAlign.CENTER ? q = 0.5 : this._textAlign == b.HorizontalAlign.RIGHT && (q = 1); for (var r = 0, p = 0; p < e; p++) { for (var n = d[p], r = Math.round((k - n[n.length - 1][0]) * q), s = 0; s < n.length - 1; s++) a || (this._type == b.TextFieldType.INPUT ? c.drawText(this, n[s][0], r, h, n[s][2], {}) : c.drawText(this, n[s][0], r, h, n[s][2], n[s][1])), r += n[s][2]; h += n[n.length - 1][1] + this._lineSpacing; if (this._hasHeightSet && h - 0.5 * this._size > this._explicitHeight) break } return b.Rectangle.identity.initialize(0, 0, k, f) }; 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() {} 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, h, f, k, p, n) { void 0 === f && (f = 0); void 0 === k && (k = 0); "undefined" === typeof p && (p = f + e); "undefined" === typeof n && (n = k + h); var q = new b.Texture; q._bitmapData = this.bitmapData; q._bitmapX = this._bitmapX + a; q._bitmapY = this._bitmapY + d; q._bitmapWidth = e; q._bitmapHeight = h; q._offsetX = f; q._offsetY = k; q._textureWidth = p; q._textureHeight = n; 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); b.Logger.warning("TextInput \u5df2\u5e9f\u5f03\uff0c\u8bf7\u4f7f\u7528TextField\u4ee3\u66ff\uff0c\u5e76\u8bbe\u7f6etype\u4e3aTextFieldType.INPUT"); this.type = b.TextFieldType.INPUT } __extends(a, d); a.prototype.setText = function(c) { b.Logger.warning("TextField.setText()\u5df2\u5e9f\u5f03\uff0c\u8bf7\u4f7f\u7528TextInput.text\u8bbe\u7f6e"); this.text = c }; a.prototype.getText = function() { b.Logger.warning("TextField.getText()\u5df2\u5e9f\u5f03\uff0c\u8bf7\u4f7f\u7528TextInput.text\u83b7\u53d6"); return this.text }; a.prototype.setTextType = function(c) { b.Logger.warning("TextField.setTextType()\u5df2\u5e9f\u5f03\uff0c\u8bf7\u4f7f\u7528TextInput.displayAsPassword\u8bbe\u7f6e"); this.displayAsPassword = "password" == c }; a.prototype.getTextType = function() { b.Logger.warning("TextField.getTextType()\u5df2\u5e9f\u5f03\uff0c\u8bf7\u4f7f\u7528TextInput.displayAsPassword\u83b7\u53d6"); return this.displayAsPassword ? "password" : "text" }; return a }(b.TextField); b.TextInput = e; e.prototype.__class__ = "egret.TextInput" })(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, h = 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 || h != k.tx || f != k.ty) { this._isFirst = !1; c = this._text.localToGlobal(); this.stageText.changePosition(c.x, c.y); var p = this; b.callLater(function() { p.stageText._setScale(p._text._worldTransform.a, p._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(c, a) { b.call(this, c); this.charList = this.parseConfig(a) } __extends(a, b); a.prototype.getTexture = function(c) { var a = this._textureMap[c]; if (!a) { a = this.charList[c]; if (!a) return null; a = this.createTexture(c, a.x, a.y, a.width, a.height, a.offsetX, a.offsetY); this._textureMap[c] = a } return a }; a.prototype.parseConfig = function(c) { c = c.split("\r\n").join("\n"); c = c.split("\n"); for (var a = this.getConfigByKey(c[3], "count"), b = {}, d = 4; d < 4 + a; d++) { var e = c[d], f = String.fromCharCode(this.getConfigByKey(e, "id")), k = {}; b[f] = k; k.x = this.getConfigByKey(e, "x"); k.y = this.getConfigByKey(e, "y"); k.width = this.getConfigByKey(e, "width"); k.height = this.getConfigByKey(e, "height"); k.offsetX = this.getConfigByKey(e, "xoffset"); k.offsetY = this.getConfigByKey(e, "yoffset") } return b }; a.prototype.getConfigByKey = function(c, a) { for (var b = c.split(" "), d = 0, e = b.length; d < e; d++) { var f = b[d]; if (a == f.substring(0, a.length)) return b = f.substring(a.length + 1), parseInt(b) } 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(c) { this.delegate.gotoAndPlay(c) }; c.prototype.gotoAndStop = function(c) { this.delegate.gotoAndStop(c) }; 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(c) { b.Logger.warning("MovieClip#setInterval\u65b9\u6cd5\u5373\u5c06\u5e9f\u5f03,\u8bf7\u4f7f\u7528MovieClip#frameRate\u4ee3\u66ff"); this.frameRate = 60 / c }; 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(c, a) { this.data = c; this._currentFrameIndex = this._passTime = this._totalFrame = 0; this._isPlaying = !1; this._frameData = c; this._spriteSheet = new b.SpriteSheet(a) } a.prototype.setMovieClip = function(c) { this.movieClip = c; this.bitmap = new b.Bitmap; this.movieClip.addChild(this.bitmap) }; a.prototype.gotoAndPlay = function(c) { this.checkHasFrame(c); this._isPlaying = !0; this._currentFrameIndex = 0; this._currentFrameName = c; this._totalFrame = this._frameData.frames[c].totalFrame; this.playNextFrame(); this._passTime = 0; b.Ticker.getInstance().register(this.update, this) }; a.prototype.gotoAndStop = function(c) { this.checkHasFrame(c); this.stop(); this._currentFrameIndex = this._passTime = 0; this._currentFrameName = c; this._totalFrame = this._frameData.frames[c].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(c) { void 0 == this._frameData.frames[c] && b.Logger.fatal("MovieClip\u6ca1\u6709\u5bf9\u5e94\u7684frame\uff1a", c) }; a.prototype.update = function(c) { for (var a = 1E3 / this.movieClip.frameRate, a = Math.floor((this._passTime % a + c) / a); 1 <= a;) 1 == a ? this.playNextFrame() : this.playNextFrame(!1), a--; this._passTime += c }; a.prototype.playNextFrame = function(c) { void 0 === c && (c = !0); var a = this._frameData.frames[this._currentFrameName].childrenFrame[this._currentFrameIndex]; if (c) { c = this.getTexture(a.res); var d = this.bitmap; d.x = a.x; d.y = a.y; d.texture = c } null != a.action && this.movieClip.dispatchEventWith(a.action); this._currentFrameIndex++; this._currentFrameIndex == this._totalFrame && (this._currentFrameIndex = 0, a.action != b.Event.COMPLETE && this.movieClip.dispatchEventWith(b.Event.COMPLETE)) }; a.prototype.getTexture = function(c) { var a = this._frameData.res[c], b = this._spriteSheet.getTexture(c); b || (b = this._spriteSheet.createTexture(c, a.x, a.y, a.w, a.h)); return b }; 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 = {})); __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(a) { var d = this._bitmapData, e = a.getBounds(b.Rectangle.identity); d.width = e.width; d.height = e.height; this.renderContext._cacheCanvas && (this.renderContext._cacheCanvas.width = e.width, this.renderContext._cacheCanvas.height = e.height); a._worldTransform.identity(); a.worldAlpha = 1; if (a instanceof b.DisplayObjectContainer) { var d = a._anchorOffsetX, m = a._anchorOffsetY; if (0 != a._anchorX || 0 != a._anchorY) d = a._anchorX * e.width, m = a._anchorY * e.height; this._offsetX = e.x + d; this._offsetY = e.y + m; a._worldTransform.append(1, 0, 0, 1, -this._offsetX, -this._offsetY); e = a._children; d = 0; for (m = e.length; d < m; 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; (m = a.mask || a._scrollRect) && this.renderContext.pushMask(m); a._render(this.renderContext); m && this.renderContext.popMask(); e._drawAreaList = d; this.renderContext.onRenderFinish(); this._textureWidth = this._bitmapData.width; this._textureHeight = this._bitmapData.height; this._sourceWidth = this._textureWidth; this._sourceHeight = this._textureHeight }; 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, h, f, k, p, n, q) { this.profiler.onDrawImage() }; a.prototype.setTransform = function(a) {}; a.prototype.setAlpha = function(a, b) {}; a.prototype.setupFont = function(a) {}; a.prototype.measureText = function(a) { return 0 }; a.prototype.drawText = function(a, b, d, e, h, f) { this.profiler.onDrawImage() }; a.prototype.strokeRect = function(a, b, d, e, h) {}; 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 m = b.MainContext.instance.stage.hitTest(a, d); m && (a = this.getTouchData(e, a, d), this.touchDownTarget[e] = !0, a.target = m, a.beginTarget = m, 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 m = b.MainContext.instance.stage.hitTest(a, d); m && (a = this.getTouchData(e, a, d), a.target = m, this.dispatchEvent(b.TouchEvent.TOUCH_MOVE, a)) } }; a.prototype.onTouchEnd = function(a, d, e) { var m = this.touchingIdentifiers.indexOf(e); - 1 != m && (this.touchingIdentifiers.splice(m, 1), m = b.MainContext.instance.stage.hitTest(a, d)) && (a = this.getTouchData(e, a, d), delete this.touchDownTarget[e], e = a.beginTarget, a.target = m, this.dispatchEvent(b.TouchEvent.TOUCH_END, a), e == m ? 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 }; 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, g = 0; g < c; g++) { var m = a.childNodes[g]; if (1 == m.nodeType) { e = !0; break } } return e ? d.parseNode(m) : 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, m = 0; m < e; m++) { var h = b[m], f = h.name; 0 != f.indexOf("xmlns:") && (c["$" + f] = h.value) } b = a.childNodes; e = b.length; for (m = 0; m < e; m++) if (h = d.parseNode(b[m])) c.children || (c.children = []), h.parent = c, c.children.push(h);!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("."), m; - 1 == e ? (m = c, e = !0) : (m = c.substring(0, e), c = c.substring(e + 1), e = !1); if (a = a.children) for (var h = a.length, f = 0; f < h; f++) { var k = a[f]; k.localName == m && (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), h = new Int8Array(this.arraybytes); e.set(h.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 h = d.getUint8(this.position++), b = b + String.fromCharCode((e & 31) << 12 | (h & 127) << 6 | d.getUint8(this.position++) & 127); else var h = d.getUint8(this.position++), f = d.getUint8(this.position++), b = b + String.fromCharCode((e & 15) << 18 | (h & 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 h = d[e]; b && !h.ignoreGlobalPause || h.paused || h.tick(h._useTicks ? 1 : c) } }; a._register = function(c, d) { var e = c._target, m = a._tweens; if (d) e && (e.tween_count = e.tween_count ? e.tween_count + 1 : 1), m.push(c), a._inited || (b.Ticker.getInstance().register(a.tick, null), a._inited = !0); else for (e && e.tween_count--, e = m.length; e--;) if (m[e] == c) { m.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 h = 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 < h ? (h != this.duration && this._runActions(h, this.duration), this._runActions(0, d, !0)) : this._runActions(h, 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, h = b, f = -1, k = this._actions.length, p = 1; a > b && (e = b, h = a, f = k, k = p = -1); for (; (f += p) != k;) { b = this._actions[f]; var n = b.t; (n == h || n > e && n < h || d && n == a) && b.f.apply(b.o, b.p) } }; a.prototype._updateTargetProps = function(c, b) { var d, e, h, 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 == (h = d[k]) && (d[k] = h = this._initQueueProps[k]); null == (f = e[k]) && (e[k] = f = h); h = h == f || 0 == b || 1 == b || "number" != typeof h ? 1 == b ? f : h : h + (f - h) * b; var p = !1; if (f = a._plugins[k]) for (var n = 0, q = f.length; n < q; n++) { var r = f[n].tween(this, k, h, d, e, b, !!c && d == e, !c); r == a.IGNORE ? p = !0 : h = r } p || (this._target[k] = h) } }; 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, h, f, k; for (k in c) if (void 0 === this._initQueueProps[k]) { d = this._target[k]; if (b = a._plugins[k]) for (e = 0, h = b.length; e < h; 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, h = b.length; e < h; 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) }; return b }(); b.NumberUtils = e; e.prototype.__class__ = "egret.NumberUtils" })(egret || (egret = {})); 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, g) { void 0 === e && (e = !1); void 0 === g && (g = !1); b.call(this, a, e, g); this.itemsTotal = this.itemsLoaded = 0 } __extends(a, b); a.dispatchResourceEvent = function(c, b, d, e, h, f) { void 0 === d && (d = ""); void 0 === e && (e = null); void 0 === h && (h = 0); void 0 === f && (f = 0); var k = egret.Event._getPropertyData(a); k.groupName = d; k.resItem = e; k.itemsLoaded = h; k.itemsTotal = f; egret.Event._dispatchByTarget(a, c, b, k) }; a.ITEM_LOAD_ERROR = "itemLoadError"; a.CONFIG_COMPLETE = "configComplete"; a.GROUP_PROGRESS = "groupProgress"; a.GROUP_COMPLETE = "groupComplete"; 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, h = 0; h < e; h++) { var f = c[h], k = b[f]; if (k) for (var f = k.length, p = 0; p < f; p++) { var n = k[p]; - 1 == d.indexOf(n) && d.push(n) } else(n = this.keyMap[f]) && -1 == d.indexOf(n) && d.push(n) } 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 h = b[e], f = h.url; f && -1 == f.indexOf("://") && (h.url = c + f); this.addItemToKeyMap(h) } if (b = a.groups) for (d = b.length, e = 0; e < d; e++) { for (var f = b[e], k = [], p = f.keys.split(","), n = p.length, q = 0; q < n; q++) h = p[q].trim(), (h = this.keyMap[h]) && -1 == k.indexOf(h) && k.push(h); 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.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 m = 0; m < e; m++) a[m].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_COMPLETE), 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() { 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; a.loaded || b.ResourceEvent.dispatchResourceEvent(this.resInstance, b.ResourceEvent.ITEM_LOAD_ERROR, d, a); if (d) { this.numLoadedDic[d] ++; var e = this.numLoadedDic[d], m = this.groupTotalDic[d]; b.ResourceEvent.dispatchResourceEvent(this.resInstance, b.ResourceEvent.GROUP_PROGRESS, d, a, e, m); e == m && (this.removeGroupName(d), delete this.groupTotalDic[d], delete this.numLoadedDic[d], delete this.itemListDic[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, h = 0, f = !1, e = d.length, k = 0; k < e; k++) { if (d[k] == a) { d.splice(h, 1); f = !0; break } h++ } 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, h = d.func; e.loaded = a.type == egret.Event.COMPLETE; e.loaded && this.analyzeData(e, b.data); h.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, h = 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, h, d.thisObject), this._dataFormat = egret.URLLoaderDataFormat.TEXT) : h.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 (h) { 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), h = 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 == h[f] && (h[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], h = e.indexOf('file="'); - 1 != h && (e = e.substring(h + 6), h = e.indexOf('"'), d = e.substring(0, h)); a = a.split("\\").join("/"); h = a.lastIndexOf("/"); return a = -1 != h ? a.substring(0, h + 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 (h) {} }; 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, g) { void 0 === g && (g = ""); d.getResByUrl(a, b, e, g) }; b.destroyRes = function(a) { return d.destroyRes(a) }; b.setMaxLoadingThread = function(a) { d.setMaxLoadingThread(a) }; b.addEventListener = function(a, b, e, g, m) { void 0 === g && (g = !1); void 0 === m && (m = 0); d.addEventListener(a, b, e, g, m) }; b.removeEventListener = function(a, b, e, g) { void 0 === g && (g = !1); d.removeEventListener(a, b, e, g) }; 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) }; 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 = [], h = 0; h < d; h++) { var f = a[h], 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, b) { void 0 === b && (b = 0); if (-1 == this.loadedGroups.indexOf(a) && !this.resLoader.isGroupInLoading(a)) if (this.configComplete) { var c = this.resConfig.getGroupByName(a); this.resLoader.loadGroup(c, a, b) } else this.groupNameList.push({ name: a, priority: b }) }; 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], h = this.getAnalyzerByType(e.type), f = h.getRes(e.url); h.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++) h = e[d], this.loadGroup(h.name, h.priority); this.groupNameList = [] } else this.loadedGroups.push(a.groupName), 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__ = "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, m = b.getTimer(), h = m - c._time; c._requestAnimationId = a.requestAnimationFrame.call(window, a.prototype.enterFrame); e.call(d, h); c._time = m }; 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))) }, m = function() { document[h] ? d() : e() }; window.addEventListener("focus", e, !1); window.addEventListener("blur", d, !1); var h, f; "undefined" !== typeof document.hidden ? (h = "hidden", f = "visibilitychange") : "undefined" !== typeof document.mozHidden ? (h = "mozHidden", f = "mozvisibilitychange") : "undefined" !== typeof document.msHidden ? (h = "msHidden", f = "msvisibilitychange") : "undefined" !== typeof document.webkitHidden ? (h = "webkitHidden", f = "webkitvisibilitychange") : "undefined" !== typeof document.oHidden && (h = "oHidden", f = "ovisibilitychange"); "onpageshow" in window && "onpagehide" in window && (window.addEventListener("pageshow", e, !1), window.addEventListener("pagehide", d, !1)); h && f && document.addEventListener(f, m, !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._cacheCanvasContext.imageSmoothingEnabled = b.RendererContext.imageSmoothingEnabled; this._cacheCanvasContext.webkitImageSmoothingEnabled = b.RendererContext.imageSmoothingEnabled; this._cacheCanvasContext.mozImageSmoothingEnabled = b.RendererContext.imageSmoothingEnabled; this._cacheCanvasContext.msImageSmoothingEnabled = b.RendererContext.imageSmoothingEnabled; var e = this.canvasContext.setTransform, g = this; this._cacheCanvasContext.setTransform = function(a, b, c, d, p, n) { g._matrixA = a; g._matrixB = b; g._matrixC = c; g._matrixD = d; g._matrixTx = p; g._matrixTy = n; e.call(g._cacheCanvasContext, a, b, c, d, p, n) }; 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"; a.width = b.MainContext.instance.stage.stageWidth; a.height = b.MainContext.instance.stage.stageHeight; a.style.width = d.style.width; a.style.height = d.style.height; d.appendChild(a) } return a }; a.prototype.clearScreen = function() { for (var a = b.RenderFilter.getInstance().getDrawAreaList(), d = 0, e = a.length; d < e; d++) { var m = a[d]; this.clearRect(m.x, m.y, m.width, m.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, e) }; a.prototype.drawImage = function(a, e, g, m, h, f, k, p, n, q) { void 0 === q && (q = void 0); var r = b.MainContext.instance.rendererContext.texture_scale_factor; e /= r; g /= r; m /= r; h /= r; r = a._bitmapData; f += this._transformTx; k += this._transformTy; var s = b.getTimer(); void 0 === q ? this._cacheCanvasContext.drawImage(r, e, g, m, h, f, k, p, n) : this.drawRepeatImage(a, e, g, m, h, f, k, p, n, q); d.prototype.drawImage.call(this, a, e, g, m, h, f, k, p, n, q); this.renderCost += b.getTimer() - s }; a.prototype.drawRepeatImage = function(a, b, d, e, h, f, k, p, n, q) { if (void 0 === a.pattern) { var r = a._bitmapData, s = r; if (r.width != e || r.height != h) s = document.createElement("canvas"), s.width = e, s.height = h, s.getContext("2d").drawImage(r, b, d, e, h, 0, 0, e, h); b = this._cacheCanvasContext.createPattern(s, q); a.pattern = b } this._cacheCanvasContext.fillStyle = a.pattern; this._cacheCanvasContext.translate(f, k); this._cacheCanvasContext.fillRect(0, 0, p, n); 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) { var b = this._cacheCanvasContext, d = a._italic ? "italic " : "normal ", d = d + (a._bold ? "bold " : "normal "), d = d + (a._size + "px " + a._fontFamily); b.font = d; b.textAlign = "left"; b.textBaseline = "middle" }; a.prototype.measureText = function(a) { return this._cacheCanvasContext.measureText(a).width }; a.prototype.drawText = function(a, e, g, m, h, f) { var k; k = f.textColor ? b.toColorString(parseInt(f.textColor)) : a._textColorString; var p; p = f.strokeColor ? b.toColorString(f.strokeColor) : a._strokeColorString; var n; n = f.outline ? f.outline : a._stroke; var q = this._cacheCanvasContext; q.fillStyle = k; q.strokeStyle = p; n && (q.lineWidth = 2 * n, q.strokeText(e, g + this._transformTx, m + this._transformTy, h || 65535)); q.fillText(e, g + this._transformTx, m + this._transformTy, h || 65535); d.prototype.drawText.call(this, a, e, g, m, h, f) }; a.prototype.strokeRect = function(a, b, d, e, h) { this._cacheCanvasContext.strokeStyle = h; 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 = b.RenderFilter.getInstance().getDrawAreaList(), d = 0, e = a.length; d < e; d++) { var m = a[d]; this.canvasContext.drawImage(this._cacheCanvas, m.x, m.y, m.width, m.height, m.x, m.y, m.width, m.height) } }; 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, g, m) { this.commandQueue.push(new e(function(a, b, c, d, e, l) { var g = this.renderContext; a = g._transformTx + a; b = g._transformTy + b; e /= 2; l = l ? l / 2 : e; c = a + c; d = b + d; g = d - l; this.canvasContext.beginPath(); this.canvasContext.moveTo(c, g); 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, g); this.canvasContext.closePath() }, this, [b, a, c, l, g, m])); 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, g, m, h, f) { void 0 === b && (b = NaN); void 0 === a && (a = 0); void 0 === c && (c = 1); void 0 === l && (l = !1); void 0 === g && (g = "normal"); void 0 === m && (m = null); void 0 === h && (h = 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__ = "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.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, g = 0; e < a; e += 6, g += 4) this.indices[e + 0] = g + 0, this.indices[e + 1] = g + 1, this.indices[e + 2] = g + 2, this.indices[e + 3] = g + 0, this.indices[e + 4] = g + 2, this.indices[e + 5] = g + 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"; a.width = b.MainContext.instance.stage.stageWidth; a.height = b.MainContext.instance.stage.stageHeight; a.style.width = d.style.width; a.style.height = d.style.height; d.appendChild(a) } return a }; 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 (h) {} 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, m = d.length; e < m; e++) { var h = d[e]; a.viewport(h.x, h.y, h.width, h.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, b, d, e, h, f, k, p, n, q) { for (; f < p; f += e) for (q = k; q < n; q += h) { var r = Math.min(e, p - f), s = Math.min(h, n - q); this.drawImage(a, b, d, r, s, f, q, r, s) } }; a.prototype.drawImage = function(a, d, e, m, h, f, k, p, n, q) { void 0 === q && (q = void 0); if (!this.contextLost) if (void 0 !== q) this.drawRepeatImage(a, d, e, m, h, f, k, p, n, q); else { q = b.MainContext.instance.rendererContext.texture_scale_factor; d /= q; e /= q; m /= q; h /= q; this.createWebGLTexture(a); if (a.webGLTexture !== this.currentBaseTexture || this.currentBatchSize >= this.size - 1) this._draw(), this.currentBaseTexture = a.webGLTexture; var r = this.worldTransform, s = r.a, t = 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 == m / p && 1 == h / n || r.append(p / m, 0, 0, n / h, 0, 0); f = r.a; k = r.b; p = r.c; n = r.d; q = r.tx; var w = r.ty; r.a = s; r.b = t; r.c = u; r.d = v; r.tx = x; r.ty = y; s = a._sourceWidth; t = a._sourceHeight; a = m; r = h; d /= s; e /= t; m /= s; h /= t; s = this.vertices; t = 4 * this.currentBatchSize * this.vertSize; u = this.worldAlpha; s[t++] = q; s[t++] = w; s[t++] = d; s[t++] = e; s[t++] = u; s[t++] = f * a + q; s[t++] = k * a + w; s[t++] = m + d; s[t++] = e; s[t++] = u; s[t++] = f * a + p * r + q; s[t++] = n * r + k * a + w; s[t++] = m + d; s[t++] = h + e; s[t++] = u; s[t++] = p * r + q; s[t++] = n * r + w; s[t++] = d; s[t++] = h + e; s[t++] = 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) { var b = this.canvasContext, d = a.italic ? "italic " : "normal ", d = d + (a.bold ? "bold " : "normal "), d = d + (a.size + "px " + a.fontFamily); b.font = d; b.textAlign = "left"; b.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 h = this.graphicsPoints, f = this.graphicsIndices, k = h.length / 6; h.push(b, d); h.push(0, 0, 0, 1); h.push(b + e, d); h.push(0, 0, 0, 1); h.push(b, d + a); h.push(0, 0, 0, 1); h.push(b + e, d + a); h.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 g = a.createProgram(); a.attachShader(g, c); a.attachShader(g, e); a.linkProgram(g); a.getProgramParameter(g, a.LINK_STATUS) || console.log("\u65e0\u6cd5\u521d\u59cb\u5316\u7740\u8272\u5668"); return g }; 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 == m.readyState) if (m.status != a._status && (a._status = m.status, b.HTTPStatusEvent.dispatchHTTPStatusEvent(a, m.status)), 400 <= m.status || 0 == m.status) b.IOErrorEvent.dispatchIOErrorEvent(a); else { switch (a.dataFormat) { case b.URLLoaderDataFormat.TEXT: a.data = m.responseText; break; case b.URLLoaderDataFormat.VARIABLES: a.data = new b.URLVariables(m.responseText); break; case b.URLLoaderDataFormat.BINARY: a.data = m.response; break; default: a.data = m.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, m = this.getXHR(); m.onreadystatechange = d; var h = b.NetContext._getUrl(e); m.open(e.method, h, !0); this.setResponseType(m, a.dataFormat); e.method != b.URLRequestMethod.GET && e.data ? e.data instanceof b.URLVariables ? (m.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"), m.send(e.data.toString())) : (m.setRequestHeader("Content-Type", "multipart/form-data"), m.send(e.data)) : m.send() } }; a.prototype.loadSound = function(a) { function d(h) { window.clearTimeout(m.__timeoutId); m.removeEventListener("canplaythrough", d, !1); m.removeEventListener("error", e, !1); h = new b.Sound; h._setAudio(m); a.data = h; b.__callAsync(b.Event.dispatchEvent, b.Event, a, b.Event.COMPLETE) } function e(h) { window.clearTimeout(m.__timeoutId); m.removeEventListener("canplaythrough", d, !1); m.removeEventListener("error", e, !1); b.IOErrorEvent.dispatchIOErrorEvent(a) } var m = new Audio(a._request.url); m.__timeoutId = window.setTimeout(d, 100); m.addEventListener("canplaythrough", d, !1); m.addEventListener("error", e, !1); m.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, m = window, h, f; "function" === typeof a.getBoundingClientRect ? (f = a.getBoundingClientRect(), h = f.left, f = f.top) : f = h = 0; h += m.pageXOffset - e.clientLeft; f += m.pageYOffset - e.clientTop; null != d.pageX ? (e = d.pageX, m = d.pageY) : (h -= document.body.scrollLeft, f -= document.body.scrollTop, e = d.clientX, m = d.clientY); var k = b.Point.identity; k.x = (e - h) / b.StageDelegate.getInstance().getScaleX(); k.y = (m - 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(), g = b.Browser.getInstance().$new("div"); g.position.x = 0; g.position.y = 0; g.scale.x = a; g.scale.y = e; g.transforms(); g.style[egret_dom.getTrans("transformOrigin")] = "0% 0% 0px"; this.div = g; e = b.MainContext.instance.stage; a = e.stageWidth; e = e.stageHeight; g = new b.Shape; g.width = a; g.height = e; g.touchEnabled = !0; this._shape = g; 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"), 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 g = b.StageDelegate.getInstance().getScaleX(), m = b.StageDelegate.getInstance().getScaleY(); this.div.scale.x = g * a; this.div.scale.y = m * e; this.div.transforms() }; a.prototype.changePosition = function(a, d) { var e = b.StageDelegate.getInstance().getScaleX(), m = b.StageDelegate.getInstance().getScaleY(); this.div.position.x = a * e; this.div.position.y = d * m; 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() { this.inputElement.setAttribute("maxlength", 0 < this._maxChars ? this._maxChars : -1); 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() { 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 Data = function() { function b() {} b.getRectWidth = function() { 0 == b._rectWidth && (b._rectWidth = (egret.MainContext.instance.stage.stageWidth - 50) / 4); return b._rectWidth }; b.getStageHeight = function() { return egret.MainContext.instance.stage.stageHeight }; b.getStageWidth = function() { return egret.MainContext.instance.stage.stageWidth }; b.score = 0; b._rectWidth = 0; b._numSum = 0; return b }(); Data.prototype.__class__ = "Data"; var RectType = function() { function b() {} b.CLICKED = "clicked"; b.NONCLICKED = "nonlicked"; return b }(); RectType.prototype.__class__ = "RectType"; 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 }, Rect = function(b) { function e() { b.call(this); this.isUsed = !1; this._num = 13; this.column = this.row = 0; this._type = RectType.NONCLICKED; this.touchEnabled = !0; this.anchorY = this.anchorX = 0.5; this.width = Data.getRectWidth(); this.height = Data.getRectWidth(); this.addEventListener(egret.Event.ADDED, this.draw, this); this.addEventListener(egret.Event.LEAVE_STAGE, this.rectHide, this) } __extends(e, b); e.prototype.draw = function() { this.alpha = this.scaleY = this.scaleX = 0; var b = egret.Tween.get(this); b.to({ scaleX: 1.2, scaleY: 1.2, alpha: 1, rotation: 720 }, 200); b.call(this.backToScale) }; e.prototype.clickDraw = function() { this._type == RectType.NONCLICKED ? (this.rotation = this.alpha = this.scaleY = this.scaleX = 0, egret.Tween.get(this).to({ scaleX: 1, scaleY: 1, rotation: 15, alpha: 1 }, 200)) : (this.alpha = this.scaleY = this.scaleX = 0, egret.Tween.get(this).to({ scaleX: 1, scaleY: 1, rotation: 0, alpha: 1 }, 200)) }; e.prototype.backToNoraml = function() { var b = egret.Tween.get(this); b.to({ scaleX: 1.05, scaleY: 1.05, rotation: -20, alpha: 1 }, 20); b.to({ scaleX: 1.1, scaleY: 1.1, rotation: 20, alpha: 1 }, 20); b.to({ scaleX: 1.15, scaleY: 1.15, rotation: -20, alpha: 1 }, 20); b.to({ scaleX: 1.2, scaleY: 1.2, rotation: 20, alpha: 1 }, 20); b.to({ scaleX: 1.25, scaleY: 1.25, rotation: 0, alpha: 1 }, 20); b.call(this.backToNoramlScale); this._type = RectType.NONCLICKED }; Object.defineProperty(e.prototype, "num", { get: function() { return this._num }, set: function(b) { this._num = b; this.texture = this.textures.getTexture("num" + this._num) }, enumerable: !0, configurable: !0 }); Object.defineProperty(e.prototype, "type", { get: function() { return this._type }, set: function(b) { this._type = b; this.texture = this._type == RectType.CLICKED ? this.textures.getTexture("num2") : this.textures.getTexture("num8"); this.draw() }, enumerable: !0, configurable: !0 }); e.prototype.onRectClick = function() { this.clickDraw() }; e.prototype.rectHide = function() { var b = egret.Tween.get(this); b.to({ scaleX: 0, scaleY: 0, rotation: -720, alpha: 0 }, 200); b.call(this.restart) }; e.prototype.backToScale = function() { egret.Tween.get(this).to({ scaleX: 1, scaleY: 1 }, 200) }; e.prototype.backToNoramlScale = function() { egret.Tween.get(this).to({ scaleX: 1, scaleY: 1 }, 100) }; e.prototype.restart = function() { this.parent && this.parent.removeChild(this); this.isUsed = !1; this.rotation = 0; this.scaleY = this.scaleX = 1; this.column = this.row = 0; this._type = RectType.NONCLICKED }; return e }(egret.Bitmap); Rect.prototype.__class__ = "Rect"; 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 }, GameView = function(b) { function e() { b.apply(this, arguments) } __extends(e, b); e.prototype.createStaticView = function(b, a) { this.createGameBackground(b); this.createTitleBack(b, a); this.createScore(b, a) }; e.prototype.createGameBackground = function(b) { var a = new egret.Bitmap; a.texture = RES.getRes("bgImage"); b.addChild(a) }; e.prototype.createTitleBack = function(b, a) { var c = new egret.Bitmap; c.texture = RES.getRes("topImage"); c.width = Data.getStageWidth(); c.height = 80; b.addChild(c) }; e.prototype.createScore = function(b, a) { var c = new egret.Bitmap; c.texture = RES.getRes("btnImage"); c.x = Data.getStageWidth() - 300; c.y = 130; e.score = new egret.TextField; e.score.width = 300; e.score.height = 60; e.score.y = 130; e.score.x = Data.getStageWidth() - 300; e.score.textColor = 16777215; e.score.textAlign = egret.HorizontalAlign.CENTER; e.score.verticalAlign = egret.VerticalAlign.MIDDLE; e.score.text = "score:0"; b.addChild(c); b.addChild(e.score) }; e.updateScore = function() { e.score.text = "score:" + Data.score }; return e }(egret.EventDispatcher); GameView.prototype.__class__ = "GameView"; var Util = function() { function b() {} b.getIndexByLineRow = function(b, d) { return 4 * b + d }; b.getPosByRect = function(b) { var d = new egret.Point; d.x = 10 + b.width / 2 + (10 + b.width) * b.column; d.y = 10 + b.width / 2 + (10 + b.width) * b.row; return d }; b.getPosByIndex = function(b) { var d = new egret.Point; d.x = Math.floor(b / 4); d.y = Math.floor(b % 4); return d }; return b }(); Util.prototype.__class__ = "Util"; 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 }, A = function(b) { function e(d) { b.call(this); this.texture = d.getTexture("a"); this.height = this.width = 82; this.anchorY = this.anchorX = 0.5; this.x = (Data.getStageWidth() - 330) / 2 + 215; this.y = Data.getStageWidth() + 201; this.touchEnabled = !0; this.addEventListener(egret.Event.ADDED, this.draw, this) } __extends(e, b); e.prototype.draw = function() { this.scaleY = this.scaleX = 0; var b = egret.Tween.get(this); b.to({ scaleX: 0.5, scaleY: 0.5, rotation: 0 }, 400); b.to({ scaleX: 1.2, scaleY: 1.2, rotation: 735 }, 200); b.call(this.backToScale) }; e.prototype.backToScale = function() { egret.Tween.get(this).to({ scaleX: 1, scaleY: 1 }, 200) }; e.prototype.clickA = function() { var b = egret.Tween.get(this); b.to({ scaleX: 1.05, scaleY: 1.05, rotation: -30, alpha: 1 }, 50); b.to({ scaleX: 1.1, scaleY: 1.1, rotation: 30, alpha: 1 }, 50); b.to({ scaleX: 1.15, scaleY: 1.15, rotation: -30, alpha: 1 }, 50); b.to({ scaleX: 1.2, scaleY: 1.2, rotation: 30, alpha: 1 }, 50); b.to({ scaleX: 1.25, scaleY: 1.25, rotation: 0, alpha: 1 }, 50) }; return e }(egret.Bitmap); A.prototype.__class__ = "A"; var DataManage = function() { function b() {} b.initData = function() { for (var e, d = 0; 16 > d; d++) e = new Rect, b._rects[d] = e, b._data[d] = 0, b._nousedata[d] = d }; b.selectRect = function() { for (var e = 0; 16 > e; e++) if (!1 == b._rects[e].isUsed) return b._rects[e]; return null }; b.addNewRectToDatas = function(e) { var d = Util.getIndexByLineRow(e.row, e.column); b._data[d] = e; b.restartData() }; b.selectNewPos = function() { var e = b._nousedata[Math.floor(b._nousedata.length * Math.random())]; return Util.getPosByIndex(e) }; b.restartData = function() { b._nousedata = []; for (var e = 0; 16 > e; e++) 0 == b._data[e] && b._nousedata.push(e) }; b.Restart = function() { for (var e = 0; 16 > e; e++) b._data[e] = 0, b._rects[e].restart(); this.restartData(); Data.score = 0; Data._numSum = 0; GameView.updateScore() }; b._rects = []; b._data = []; b._nousedata = []; return b }(); DataManage.prototype.__class__ = "DataManage"; 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(d) { b.call(this); this.scorePanel = new egret.Bitmap; this.sharePanel = new egret.Bitmap; this.againPanel = new egret.Bitmap; this.res = d; this.draw(); this.addEventListener(egret.Event.ADDED, this.showText, this) } __extends(e, b); e.prototype.draw = function() { var b = egret.MainContext.instance.stage.stageWidth, a = egret.MainContext.instance.stage.stageHeight, c = new egret.Bitmap; c.height = a; c.width = b; c.texture = RES.getRes("overbg"); this.addChild(c); this.sharePanel.x = b - 250; this.sharePanel.y = 10; this.scorePanel.width = b - 100; this.scorePanel.height = b - 100; this.scorePanel.x = 50; this.scorePanel.y = (a - b + 100) / 2; this.againPanel.width = 320; this.againPanel.height = 80; this.againPanel.x = (b - 320) / 2; this.againPanel.y = (a - b) / 2 + b; this.againPanel.touchEnabled = !0; this.sharePanel.touchEnabled = !0; this.addChild(this.sharePanel); this.addChild(this.scorePanel); this.addChild(this.againPanel); this.txt1 = new egret.TextField; this.txt1.x = 60; this.txt1.y = a / 2 + 40; this.txt1.width = b - 120; this.txt1.height = 40; this.txt1.textColor = 0; this.txt1.textAlign = egret.HorizontalAlign.CENTER; this.addChild(this.txt1); this.txt2 = new egret.TextField; this.txt2.x = 60; this.txt2.y = a / 2 + 100; this.txt2.width = b - 120; this.txt2.height = 40; this.txt2.textColor = 0; this.txt2.textAlign = egret.HorizontalAlign.CENTER; this.addChild(this.txt2); this.againPanel.addEventListener(egret.TouchEvent.TOUCH_TAP, this.startGame, this); this.sharePanel.addEventListener(egret.TouchEvent.TOUCH_TAP, this.share, this); this.alpha = this.scaleY = this.scaleX = 0; egret.Tween.get(this).to({ scaleX: 1, scaleY: 1, alpha: 1 }, 400) }; e.prototype.showText = function() { console.log(Data.score); // updateShare(Data.score); // Play68.setRankingScoreDesc(Data.score); this.txt1.text = "\u4f60\u5171\u7b97\u51fa\u4e86" + Data.score + "\u4e2a36"; 25 > Data.score ? (this.txt2.text = "\u5c0f\u5b66\u6570\u5b66\u8001\u5e08\u54ed\u6655\u5728\u5395\u6240", this.scorePanel.texture = this.res.getTexture("result4"), this.sharePanel.texture = this.res.getTexture("share4"), this.againPanel.texture = this.res.getTexture("again4")) : 25 <= Data.score && 35 > Data.score ? (this.txt2.text = "\u5c31\u6bd4\u5c0f\u5b66\u751f\u5f3a\u4e00\u4e22\u4e22", this.scorePanel.texture = this.res.getTexture("result3"), this.sharePanel.texture = this.res.getTexture("share3"), this.againPanel.texture = this.res.getTexture("again3")) : 35 <= Data.score && 45 > Data.score ? (this.txt2.text = "\u603b\u7b97\u6ca1\u8f9c\u8d1f\u8001\u5e08\u7684\u683d\u57f9", this.scorePanel.texture = this.res.getTexture("result2"), this.sharePanel.texture = this.res.getTexture("share2"), this.againPanel.texture = this.res.getTexture("again2")) : 45 <= Data.score && (this.txt2.text = "\u9ad8\u8003\u72b6\u5143\u5c31\u662f\u4f60\uff01", this.scorePanel.texture = this.res.getTexture("result1"), this.sharePanel.texture = this.res.getTexture("share1"), this.againPanel.texture = this.res.getTexture("again1")) }; e.prototype.startGame = function() { this.parent.removeChild(this); this.dispatchEventWith("startgame") }; e.prototype.share = function() { console.log("\u5206\u4eab\u6e38\u620f") }; 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 }, startGamePanel = function(b) { function e(d) { b.call(this); this.btn = new egret.Bitmap; this.txt1 = new egret.TextField; this.txt2 = new egret.TextField; this.draw(d); this.createA(d) } __extends(e, b); e.prototype.draw = function(b) { var a = Data.getStageWidth(); Data.getStageHeight(); var c = new egret.Bitmap; c.texture = RES.getRes("bgImage"); this.addChild(c); c = new egret.Bitmap; c.texture = b.getTexture("logo"); c.width = a; c.height = a; c.y = 10; this.addChild(c); this.txt1.height = 60; this.txt1.width = Data.getStageWidth(); this.txt1.text = "\u70b9\u51fb\u548c\u4e3a36\u7684\u4e24\u4e2a\u65b9\u5757\u6765\u6d88\u9664"; this.txt1.textAlign = egret.HorizontalAlign.CENTER; this.txt1.y = a + 40; this.txt1.x = 0; this.txt1.textColor = 3195109; this.txt2.textColor = 3195109; this.txt2.height = 60; this.txt2.width = Data.getStageWidth(); this.txt2.text = "\u65b9\u5757\u94fa\u6ee1\u4e86\u5c31\u8f93\u6389\u4e86\u5662"; this.txt2.y = a + 100; this.txt2.x = 0; this.txt2.textAlign = egret.HorizontalAlign.CENTER; this.addChild(this.txt1); this.addChild(this.txt2); this.btn.texture = b.getTexture("pl_y"); this.btn.width = 330; this.btn.height = 82; this.btn.x = (a - 330) / 2; this.btn.y = a + 180; this.btn.touchEnabled = !0; this.btn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.startGame, this); this.addChild(this.btn) }; e.prototype.createA = function(b) { this.a_img = new A(b); this.a_img.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onclick, this); this.addChild(this.a_img) }; e.prototype.onclick = function(b) { b.target.clickA(); this.dispatchEventWith("start"); this.parent.removeChild(this) }; e.prototype.startGame = function() { this.dispatchEventWith("start"); this.parent.removeChild(this) }; return e }(egret.Sprite); startGamePanel.prototype.__class__ = "startGamePanel"; 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 }, TimerPanel = function(b) { function e() { b.call(this); this._num = 5E4; this._timers = 0; this.draw(); this.createTimer() } __extends(e, b); e.prototype.draw = function() { this.txt = new egret.TextField; this.txt.width = (Data.getStageWidth() - 140) / 2; this.txt.height = 80; this.txt.y = 130; this.txt.x = (Data.getStageWidth() - 140) / 2 + 110; this.txt.textColor = 16777215; this.txt.textAlign = egret.HorizontalAlign.CENTER; this.txt.verticalAlign = egret.VerticalAlign.MIDDLE; this.txt.text = "time:30'00''" }; e.prototype.createTimer = function() { this._timer = new egret.Timer(100, this._num); this._timer.addEventListener(egret.TimerEvent.TIMER, this.onTimer, this); this._timer.addEventListener(egret.TimerEvent.TIMER_COMPLETE, this.onTimerEnd, this) }; e.prototype.onTimer = function() { 0 != this._timers && 0 == this._timers % 12 && 120 > this._timers ? this.dispatchEventWith("updateRect2") : 120 <= this._timers && 240 > this._timers && 0 == this._timers % 8 ? 0 == this._timers % 32 ? this.dispatchEventWith("updateRect1") : this.dispatchEventWith("updateRect2") : 240 <= this._timers && 0 == this._timers % 5 && (0 == this._timers % 20 ? this.dispatchEventWith("updateRect1") : this.dispatchEventWith("updateRect2")); this._timers += 1 }; e.prototype.onTimerEnd = function() { this.dispatchEventWith("gameover") }; e.prototype.start = function() { this._timers = 0; this._timer.reset(); this._timer.start() }; e.prototype.stop = function() { this._timer.stop() }; return e }(egret.Sprite); TimerPanel.prototype.__class__ = "TimerPanel"; 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 }, Game = function(b) { function e() { b.call(this); this.lop = "1"; new Rect; this.addEventListener(egret.Event.ADDED_TO_STAGE, this.onAddToStage, this) } __extends(e, b); e.prototype.onAddToStage = function() { RES.addEventListener(RES.ResourceEvent.GROUP_COMPLETE, this.onGroupComp, this); RES.loadConfig("resource/resource.json", "resource/"); RES.loadGroup("gameres") }; e.prototype.share = function() { /*WeixinApi.ready(function(b) { var a = new WeixinShareInfo; a.title = "\u6211\u5171\u6d88\u706d\u4e86" + Data.score + "\u5bf9\u65b9\u5757\u3002\u6240\u5411\u62ab\u9761\uff0c\u4e0d\u670d\u6765\u6218\uff01\uff01\uff01"; a.desc = "\u6211\u5171\u6d88\u706d\u4e86" + Data.score + "\u5bf9\u65b9\u5757\u3002\u6240\u5411\u62ab\u9761\uff0c\u4e0d\u670d\u6765\u6218\uff01\uff01\uff01"; a.link = "http://teamshare.bingyan.net/cmm/version3.0/index.html"; a.imgUrl = "http://teamshare.bingyan.net/cmm/logo.png"; b.shareToFriend(a); b.shareToTimeline(a) })*/ }; e.prototype.share0 = function() { /*WeixinApi.ready(function(b) { var a = new WeixinShareInfo; a.title = "\u8001\u5b50\u5c31\u662f\u770b\u4f60\u4e0d\u987a\u773c\uff01\uff01\u4e0d\u670d\u6765\u6218\uff01\uff01\uff01"; a.desc = "\u8001\u5b50\u5c31\u662f\u770b\u4f60\u4e0d\u987a\u773c\uff01\uff01\u4e0d\u670d\u6765\u6218\uff01\uff01\uff01"; a.link = "http://teamshare.bingyan.net/cmm/version3.0/index.html"; a.imgUrl = "http://teamshare.bingyan.net/cmm/logo.png"; b.shareToFriend(a); b.shareToTimeline(a) })*/ }; e.prototype.onGroupComp = function() { this.res = RES.getRes("res_json"); this.share0(); this.start() }; e.prototype.start = function() { this.startGamePanel || (this.startGamePanel = new startGamePanel(this.res), this.startGamePanel.addEventListener("start", this.startPanel, this)); this.addChild(this.startGamePanel) }; e.prototype.startPanel = function() { this.gameView = new GameView; this.gameView.createStaticView(this, this.res); this.gameLayout = new egret.Sprite; this.gameLayout.y = 250; this.addChild(this.gameLayout); DataManage.initData(); this.createTimer(); this._timerPanel.start(); this.initRect() }; e.prototype.initRect = function() { for (var b = 0; 4 > b; b++) this.createNewRects() }; e.prototype.updateRect = function() { if (8 <= DataManage._nousedata.length) for (var b = 0; 4 > b; b++) this.createNewRects(); else if (4 <= DataManage._nousedata.length && 8 > DataManage._nousedata.length) for (b = 0; 2 > b; b++) this.createNewRects(); else this.createNewRects() }; e.prototype.updateRect1 = function() { for (var b = 0; 2 > b; b++) 1 == b && (this.lop = "2"), this.createNewRects() }; e.prototype.updateRect2 = function() { this.createNewRects() }; e.prototype.createNewRects = function() { var b = Math.floor(34 * Math.random()) + 1, a = DataManage.selectRect(); this.createAnRect(this.res, a, b); b = 36 - b; a = DataManage.selectRect(); this.createAnRect(this.res, a, b) }; e.prototype.createAnRect = function(b, a, c) { if (null == a && "1" == this.lop) this.gameOver(); else if (null == a && "2" == this.lop) this.lop = "1"; else { this.lop = "1"; var e = DataManage.selectNewPos(); a.textures = b; a.isUsed = !0; a.num = c; a.row = e.x; a.column = e.y; a.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onclickRect, this); b = Util.getPosByRect(a); a.x = b.x; a.y = b.y; this.gameLayout.addChild(a); DataManage.addNewRectToDatas(a) } }; e.prototype.onclickRect = function(b) { if (b.target._type == RectType.NONCLICKED) { Data._numSum += b.target.num; if (36 < Data._numSum) { Data._numSum = b.target.num; for (var a = 0; 16 > a; a++) if (!0 == DataManage._rects[a].isUsed && DataManage._rects[a]._type == RectType.CLICKED) { var c = DataManage._rects[a]; c.backToNoraml() } b.target.onRectClick(); b.target._type = RectType.CLICKED; return null } if (36 == Data._numSum) { b.target._type = RectType.CLICKED; for (a = 0; 16 > a; a++) !0 == DataManage._rects[a].isUsed && DataManage._rects[a]._type == RectType.CLICKED && (c = DataManage._rects[a], DataManage._data[Util.getIndexByLineRow(c.row, c.column)] = 0, c.rectHide()); DataManage.restartData(); Data._numSum = 0; Data.score++; GameView.updateScore(); return null } if (36 > Data._numSum) { for (a = 0; 16 > a; a++) !0 == DataManage._rects[a].isUsed && DataManage._rects[a]._type == RectType.CLICKED && (c = DataManage._rects[a], c.backToNoraml()); b.target.onRectClick(); b.target._type = RectType.CLICKED; return null } } else b.target.onRectClick(), Data._numSum -= b.target.num, b.target._type = RectType.NONCLICKED }; e.prototype.createTimer = function() { this._timerPanel = new TimerPanel; this._timerPanel.addEventListener("updateRect", this.updateRect, this); this._timerPanel.addEventListener("updateRect1", this.updateRect1, this); this._timerPanel.addEventListener("updateRect2", this.updateRect2, this); this._timerPanel.addEventListener("gameover", this.gameOver, this); this.addChild(this._timerPanel) }; e.prototype.gameOver = function() { this._timerPanel.stop(); this.gameoverPanel || (this.gameoverPanel = new gameOverPanel(this.res), this.gameoverPanel.addEventListener("startgame", this.startGame, this)); this.addChild(this.gameoverPanel) // this.share() // alert(Data.score); }; e.prototype.startGame = function() { DataManage.Restart(); this._timerPanel.start(); this.initRect() }; return e }(egret.DisplayObjectContainer); Game.prototype.__class__ = "Game";