var EHDI = EHDI || Object.create(null); EHDI.popup = EHDI.popup || Object.create(null); EHDI.popup.PausePopUp = function() { EHDI.aka.Container.call(this); this.pageNumber = 1; }; EHDI.popup.PausePopUp.prototype = Object.create(EHDI.aka.Container.prototype); EHDI.popup.PausePopUp.prototype.popUpWillAppear = function() { this.overlay = EHDI.displays.FillRectangle(0x000000, 0, 0, EHDI.GAME.sceneManager.getStageWidth(), EHDI.GAME.sceneManager.getStageHeight(),0); this.overlay.anchor.set(0.5, 0.5); this.addChild(this.overlay); this.position.x = EHDI.GAME.sceneManager.getStageWidth() * 0.5; this.bg = new EHDI.aka.Sprite(EHDI.Assets.images["gfx_pop"]); this.bg.anchor.set(0.5, 0.5); this.addChild(this.bg); this.action = (EHDI.BrowserInfo.isMobileDevice) ? "Tap" : "Click"; }; EHDI.popup.PausePopUp.prototype.popUpDidAppear = function() { this.overlay.alpha = 0.5; this.overlay.interactive = true; // this.pausedTxt = new EHDI.aka.PixiText("GAME PAUSED", {fontFamily: "Exo-Bold", fill: 0xFFFFFF, fontSize : 50}); this.pausedTxt = new EHDI.displays.TextSprite(EHDI.GAME.JSONMgr.getLocale("LBL_PAUSE_HEADER")); this.pausedTxt.anchor.set(0.5, 0.5); this.pausedTxt.position.set(-this.bg.width * 0.2, -this.bg.width * 0.24); this.bg.addChild(this.pausedTxt); this.next = new EHDI.displays.Button(EHDI.Assets.images["btn_prevnext"], EHDI.Assets.images["btn_prevnext2"], null, null); this.bg.addChild(this.next); this.next.position.set(this.bg.width * 0.45, 0); this.next.setOnClickFunction(this.nextPage.bind(this)); this.page = new EHDI.aka.Container(); this.bg.addChild(this.page); var htpImg = new EHDI.aka.Sprite(EHDI.Assets.images["htp_lostsheep1"]); htpImg.anchor.set(0.5, 0.5); htpImg.position.set(0, -this.bg.height * 0.15); this.page.addChild(htpImg); // var htpTxt = new EHDI.aka.PixiText(this.action + " the animal icons to select them. " + this.action + " again to deselect the icon.", {fontFamily: "proximanova-black", fill: 0xFFFFFF, fontSize : 28, align: 'center', wordWrap : true, wordWrapWidth : htpImg.width * 0.9}); var htpTxt = new EHDI.displays.TextSprite(EHDI.GAME.JSONMgr.getLocale("HTP_FORMAT")); var htpStr = EHDI.GAME.JSONMgr.getLocale("LBL_HTP1").TEXT; htpTxt.text = htpStr.replace("%val%", this.action); htpTxt.anchor.set(0.5, 0); htpTxt.position.set(0, this.bg.height * 0.05); this.page.addChild(htpTxt); this.previous = new EHDI.displays.Button(EHDI.Assets.images["btn_prevnext"], EHDI.Assets.images["btn_prevnext2"], null, null); this.bg.addChild(this.previous); this.previous.position.set(-this.bg.width * 0.45, 0); this.previous.scale.x = -1; this.previous.setOnClickFunction(this.previousPage.bind(this)); this.return = new EHDI.displays.Button(EHDI.Assets.images["btn_return"], EHDI.Assets.images["btn_return2"], null, null); this.bg.addChild(this.return); this.return.position.set(0, this.bg.height * 0.35); this.return.setOnClickFunction(this.resumeGame); this.exit = new EHDI.displays.Button(EHDI.Assets.images["btn_exit"], EHDI.Assets.images["btn_exit2"], null, null); this.bg.addChild(this.exit); this.exit.position.set(-this.bg.width * 0.3, this.bg.height * 0.35); this.exit.setOnClickFunction(this.exitGame.bind(this)); this.sound = new EHDI.displays.ToggleButton(EHDI.Assets.images["btn_audio1"], EHDI.Assets.images["btn_audio3"], EHDI.Assets.images["btn_audio2"], EHDI.Assets.images["btn_audio4"], EHDI.GAME.soundManager.getMuted()); this.sound.setOnClickFunction(this.toggleAudio); this.sound.position.set(this.bg.width * 0.3, this.bg.height * 0.35); this.bg.addChild(this.sound); }; EHDI.popup.PausePopUp.prototype.popUpWillDisappear = function() { this.overlay.alpha = 0; } EHDI.popup.PausePopUp.prototype.popUpDidDisappear = function() { EHDI.GAME.pauseButton.resumeGame(); } EHDI.popup.PausePopUp.prototype.toggleAudio = function(enable) { EHDI.GAME.soundManager.setMute(enable); EHDI.GAME.soundManager.playSFX("button_sfx"); var cache = EHDI.GAME.storageManager.getLocalInfo(EHDI.GAME.id); cache.isMuted = enable; EHDI.GAME.storageManager.setLocalInfo(EHDI.GAME.id, cache); } EHDI.popup.PausePopUp.prototype.resumeGame = function() { EHDI.GAME.soundManager.playSFX("button_sfx"); EHDI.GAME.sceneManager.popPopUp({y : new EHDI.scene.TransitionParameter(EHDI.GAME.sceneManager.getStageHeight() * 0.5, -EHDI.GAME.sceneManager.getStageHeight()), duration : 0.25}); } EHDI.popup.PausePopUp.prototype.exitGame = function() { EHDI.GAME.soundManager.playSFX("button_sfx"); EHDI.GAME.sceneManager.pushPopUp(new EHDI.popup.ConfirmationPopup(this.goToTitleScreen.bind(this), null), {y : new EHDI.scene.TransitionParameter(EHDI.GAME.sceneManager.getStageHeight(), 0), duration : 0.25}); }; EHDI.popup.PausePopUp.prototype.goToTitleScreen = function() { EHDI.GAME.pauseButton.isEndGame = true; EHDI.GAME.sceneManager.popPopUp(); EHDI.GAME.sceneManager.changeScene(new EHDI.scene.TitleScene(), {alpha : new EHDI.scene.TransitionParameter(0,1), duration : 0.25}); }; EHDI.popup.PausePopUp.prototype.nextPage = function() { if(this.transitionTimeline) this.transitionTimeline.kill(); if(this.upcomingPage) this.endTransition(); EHDI.GAME.soundManager.playSFX("button_sfx"); this.upcomingPage = new EHDI.aka.Container(); this.upcomingPage.alpha = 0; this.pageNumber++; if(this.pageNumber > 2) this.pageNumber = 1; var htpImg = new EHDI.aka.Sprite(EHDI.Assets.images["htp_lostsheep" + this.pageNumber]); htpImg.anchor.set(0.5, 0.5); htpImg.position.set(0, -this.bg.height * 0.15); this.upcomingPage.addChild(htpImg); // var myText = this.action + " the animal icons to select them. " + this.action + " again to deselect the icon."; var myText = EHDI.GAME.JSONMgr.getLocale("LBL_HTP1").TEXT if(this.pageNumber === 2) myText = EHDI.GAME.JSONMgr.getLocale("LBL_HTP2").TEXT; else if(this.pageNumber === 3) myText = EHDI.GAME.JSONMgr.getLocale("LBL_HTP3").TEXT; myText = myText.replace("%val%", this.action); // var htpTxt = new EHDI.aka.PixiText(myText, {fontFamily: "proximanova-black", fill: 0xFFFFFF, fontSize : 28, align: 'center', wordWrap : true, wordWrapWidth : htpImg.width * 0.9}); var htpTxt = new EHDI.displays.TextSprite(EHDI.GAME.JSONMgr.getLocale("HTP_FORMAT")); htpTxt.text = myText; htpTxt.anchor.set(0.5, 0); htpTxt.position.set(0, this.bg.height * 0.05); this.upcomingPage.addChild(htpTxt); this.transitionTimeline = new TimelineMax(); this.transitionTimeline.to(this.upcomingPage, 0.5, {alpha : 1}); this.transitionTimeline.to(this.page, 0.5, {alpha : 0}, 0); this.transitionTimeline.add(this.endTransition.bind(this)); this.bg.addChild(this.upcomingPage); }; EHDI.popup.PausePopUp.prototype.previousPage = function() { if(this.transitionTimeline) this.transitionTimeline.kill(); if(this.upcomingPage) this.endTransition(); EHDI.GAME.soundManager.playSFX("button_sfx"); this.upcomingPage = new EHDI.aka.Container(); this.upcomingPage.alpha = 0; this.pageNumber--; if(this.pageNumber < 1) this.pageNumber = 2; var htpImg = new EHDI.aka.Sprite(EHDI.Assets.images["htp_lostsheep" + this.pageNumber]); htpImg.anchor.set(0.5, 0.5); htpImg.position.set(0, -this.bg.height * 0.15); this.upcomingPage.addChild(htpImg); // var myText = this.action + " the animal icons to select them. " + this.action + " again to deselect the icon."; var myText = EHDI.GAME.JSONMgr.getLocale("LBL_HTP1").TEXT; myText = myText.replace("%val%", this.action); if(this.pageNumber === 2) myText = EHDI.GAME.JSONMgr.getLocale("LBL_HTP2").TEXT; else if(this.pageNumber === 3) myText = EHDI.GAME.JSONMgr.getLocale("LBL_HTP3").TEXT; myText = myText.replace("%val%", this.action); var htpTxt = new EHDI.displays.TextSprite(EHDI.GAME.JSONMgr.getLocale("HTP_FORMAT")); htpTxt.text = myText; htpTxt.anchor.set(0.5, 0); htpTxt.position.set(0, this.bg.height * 0.05); this.upcomingPage.addChild(htpTxt); this.transitionTimeline = new TimelineMax(); this.transitionTimeline.to(this.upcomingPage, 0.5, {alpha : 1}); this.transitionTimeline.to(this.page, 0.5, {alpha : 0}, 0); this.transitionTimeline.add(this.endTransition.bind(this)); this.bg.addChild(this.upcomingPage); }; EHDI.popup.PausePopUp.prototype.endTransition = function() { this.page.destroy({children: true}); this.page = this.upcomingPage; this.upcomingPage = null; this.page.alpa = 1; };