main.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. 'use strict';
  2. /* eslint-disable no-unused-vars */
  3. import MenuController from './menu/control/menu-controller';
  4. import Phaser from 'phaser';
  5. function startGame() {
  6. console.log('start Game');
  7. let phaserConfig = {
  8. type: Phaser.AUTO,
  9. pixelArt: true,
  10. scale: {
  11. mode: Phaser.Scale.RESIZE,
  12. autoCenter: Phaser.Scale.CENTER_BOTH,
  13. width: window.innerWidth,
  14. height: window.innerHeight
  15. },
  16. physics: {
  17. default: 'arcade',
  18. arcade: {
  19. debug: true,
  20. gravity: { y: 250 },
  21. }
  22. },
  23. parent: 'phaser-parent',
  24. dom: {
  25. createContainer: true
  26. }
  27. };
  28. let phaserEngine = new Phaser.Game(phaserConfig);
  29. let menuController = new MenuController(phaserEngine);
  30. menuController.displayMainMenu();
  31. }
  32. let app = {
  33. // Application Constructor
  34. initialize: function () {
  35. console.log('app initialize');
  36. document.addEventListener('deviceready', this.onDeviceReady.bind(this), false);
  37. },
  38. onDeviceReady: function () {
  39. startGame();
  40. },
  41. };
  42. console.log('cordova env ? :', process.env.CORDOVA);
  43. if (process.env.CORDOVA && process.env.CORDOVA === true) {
  44. app.initialize();
  45. } else {
  46. startGame();
  47. }