| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- function CEndPanel(oSpriteBg) {
- var _oBg;
- var _oGroup;
- var _oFade;
- var _oMsgText1;
- var _oScoreText1;
- var _oButRestart;
- var _oButHome;
- var _oListener;
- this._init = function (oSpriteBg) {
- _oFade = new createjs.Shape();
- _oFade.graphics.beginFill("black").drawRect(0, 0, CANVAS_WIDTH, CANVAS_HEIGHT);
- _oFade.alpha = 0.7;
- _oListener = _oFade.on("click", function(){});
- _oBg = createBitmap(oSpriteBg);
- _oBg.x = CANVAS_WIDTH_HALF;
- _oBg.y = CANVAS_HEIGHT_HALF + 95;
- _oBg.regX = oSpriteBg.width * 0.5;
- _oBg.regY = oSpriteBg.height * 0.5;
- _oFade.on("click", function () {}, null, true);
- _oMsgText1 = new createjs.Text("", "72px " + SECONDARY_FONT, "#fff");
- _oMsgText1.x = CANVAS_WIDTH / 2;
- _oMsgText1.y = (CANVAS_HEIGHT / 2) - 50;
- _oMsgText1.textAlign = "center";
- _oMsgText1.textBaseline = "alphabetic";
- _oMsgText1.lineHeight = 60;
- _oMsgText1.lineWidth = 450;
- _oScoreText1 = new createjs.Text("", "45px " + SECONDARY_FONT, "#fff");
- _oScoreText1.x = CANVAS_WIDTH / 2;
- _oScoreText1.y = (CANVAS_HEIGHT / 2) + 30;
- _oScoreText1.textAlign = "center";
- _oScoreText1.textBaseline = "alphabetic";
- _oScoreText1.lineHeight = 60;
- _oScoreText1.lineWidth = 470;
- _oGroup = new createjs.Container();
- _oGroup.alpha = 0;
- _oGroup.visible = false;
- _oGroup.addChild(_oFade, _oBg, _oScoreText1, _oMsgText1);
- var oSpriteRestart = s_oSpriteLibrary.getSprite('but_restart');
- _oButRestart = new CGfxButton(CANVAS_WIDTH / 2 + 170, CANVAS_HEIGHT_HALF + 120, oSpriteRestart, _oGroup);
- var oSpriteHome = s_oSpriteLibrary.getSprite('but_home');
- _oButHome = new CGfxButton(CANVAS_WIDTH / 2 - 170, CANVAS_HEIGHT_HALF + 120, oSpriteHome, _oGroup);
- s_oStage.addChild(_oGroup);
- };
- this.unload = function () {
- _oFade.off("click", _oListener);
- createjs.Tween.get(_oGroup).to({alpha: 0}, 500).call(function () {
- _oButHome.unload();
- _oButRestart.unload();
- s_oStage.removeChild(_oGroup);
- });
- };
- this._initListener = function () {
- _oButHome.addEventListener(ON_MOUSE_UP, this._onExit, this);
- _oButRestart.addEventListener(ON_MOUSE_UP, this._onRestart, this);
- };
- this.show = function (iScore) {
- if(iScore<300){
- _oMsgText1.text = TEXT_GAMEOVER;
- } else {
- _oMsgText1.text = TEXT_PERFECT;
- }
- _oScoreText1.text = TEXT_SCORE + ": " + iScore;
- _oGroup.visible = true;
- var oParent = this;
- createjs.Tween.get(_oGroup).to({alpha: 1}, 500).call(function () {
- oParent._initListener();
- if (s_iAdsLevel === NUM_LEVEL_FOR_ADS) {
- $(s_oMain).trigger("show_interlevel_ad");
- s_iAdsLevel = 1;
- } else {
- s_iAdsLevel++;
- }
- });
- $(s_oMain).trigger("share_event", iScore);
- $(s_oMain).trigger("save_score", iScore);
- };
- this._onRestart = function () {
- this.unload();
- s_oGame.restartGame();
- };
- this._onExit = function () {
- this.unload();
- s_oGame.onExit();
- };
- this._init(oSpriteBg);
- return this;
- }
|