main-menu-scene.js 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. 'use strict';
  2. import { PhaserScene } from '../../common/utils/const/phaser-scene-enum';
  3. import Phaser from 'phaser';
  4. import LoginDivPage from './menu-pages/login-div-page';
  5. import OnlineRoomDivPage from './menu-pages/online-room-div-page';
  6. import GameCreationDivPage from './menu-pages/game-creation-div-page';
  7. import MenuPages from '../../assets/html/main-menu.html';
  8. import Cover from '../../assets/twelveHeroes_cover.png';
  9. export default class MainMenuScene extends Phaser.Scene {
  10. constructor(menuEventListener) {
  11. super({ key: PhaserScene.MAIN_MENU, active: false });
  12. this.menuEventListener = menuEventListener;
  13. this.username = '';
  14. this.previousPages = new Array();
  15. }
  16. preload() {
  17. this.load.image('game-cover', Cover);
  18. }
  19. // create is call automatically by Phaser engine
  20. create() {
  21. let background = this.add.image(0, 0, 'game-cover');
  22. background.setOrigin(0, 0);
  23. // Add main-menu HTML
  24. let element = this.add.dom(250, 0).createFromHTML(MenuPages);
  25. element.setPerspective(800);
  26. // Menu div pages
  27. this.loginDivPage = new LoginDivPage(element,this.loginPageListener());
  28. this.onlineRoomDivPage = new OnlineRoomDivPage(element, this.onlineRoomPageListener());
  29. this.gameCreationDivPage = new GameCreationDivPage(element, this.gameCreationPageListener());
  30. setTimeout(() => {
  31. this.loginDivPage.show();
  32. this.tweens.add({
  33. targets: element,
  34. y: 190,
  35. duration: 2300,
  36. ease: 'Power3'
  37. });
  38. }, 700);
  39. // TODO : Display main menu
  40. // Create new scenes : Local player room / Multi player room
  41. // Pass to them the event listener
  42. // On local player room, user can enter player names, selected color, game deck mode & rules
  43. }
  44. update() {
  45. }
  46. // Listener for login page events
  47. loginPageListener() {
  48. return {
  49. onRequestConnection: this.onRequestConnection.bind(this),
  50. onRequestDisconnection: this.onRequestDisconnection.bind(this),
  51. onGoOnlineRoom: this.onGoOnlineRoom.bind(this)
  52. };
  53. }
  54. // Listener for online room page events
  55. onlineRoomPageListener() {
  56. return {
  57. onRequestOnlineGamesList: this.onRequestOnlineGamesList.bind(this),
  58. onGoGameCreation: this.onGoGameCreation.bind(this),
  59. onGoPreviousPage: this.onGoPreviousPage.bind(this),
  60. onSetNewGameListenerCb: this.onSetNewGameListenerCb.bind(this),
  61. onUnsetNewGameListenerCb: this.onSetNewGameListenerCb.bind(this)
  62. };
  63. }
  64. // Listener for game creation page events
  65. gameCreationPageListener() {
  66. return {
  67. onGoPreviousPage: this.onGoPreviousPage.bind(this),
  68. onValidGameCreation: this.onValidGameCreation.bind(this),
  69. onGameCreated:this.onGameCreated.bind(this)
  70. };
  71. }
  72. // Callbacks implementation
  73. onGoPreviousPage(fromPage) {
  74. fromPage.hide();
  75. this.previousPages.pop().show();
  76. }
  77. // Login page specific
  78. onGoOnlineRoom() {
  79. this.loginDivPage.hide();
  80. this.previousPages.push(this.loginDivPage);
  81. this.onlineRoomDivPage.setConnectionStatus(this.loginDivPage.getConnectionStatus());
  82. this.onlineRoomDivPage.show();
  83. }
  84. onRequestConnection(username) {
  85. this.username=username;
  86. return this.menuEventListener.onTryConnect(username);
  87. }
  88. onRequestDisconnection() {
  89. this.menuEventListener.onRequestDisconnection();
  90. }
  91. // Online room specific
  92. onRequestOnlineGamesList() {
  93. return this.menuEventListener.onOnlineGamesListRequested(this.username);
  94. }
  95. onGoGameCreation() {
  96. this.onlineRoomDivPage.hide();
  97. this.previousPages.push(this.onlineRoomDivPage);
  98. this.gameCreationDivPage.show();
  99. }
  100. onSetNewGameListenerCb(callback) {
  101. this.menuEventListener.onSetNewGameListenerCb(callback);
  102. }
  103. onUnsetNewGameListenerCb() {
  104. this.menuEventListener.onUnsetNewGameListenerCb();
  105. }
  106. // Game cration div page specific
  107. onValidGameCreation(deckModeSelected, advancedOptions) {
  108. return this.menuEventListener.onGameCreationRequest(this.username, deckModeSelected, advancedOptions);
  109. }
  110. onGameCreated() {
  111. console.log('Game created, send user to game scene');
  112. this.gameCreationDivPage.hide();
  113. setTimeout(() => {
  114. alert('Sorry nothing more ! we are still coding the game part :)');
  115. }, 1000);
  116. // let gameDeckMode = "factions";
  117. // let advancedRules = [];
  118. // console.log("Calling listener");
  119. // this.menuEventListener.onNewPnpGame(pBlueName, pRedName, gameDeckMode, advancedRules)
  120. }
  121. }