duel-controller.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. 'use strict';
  2. /* This file will be used by server for online game, and by app for local game
  3. Therfore it should not have any dependency on any of those environments.
  4. It is a state machine that follows the game steps
  5. It receives a dataStore to get and share data but doesn't care what is
  6. behind (socket.io comm for online, direct call to vuex store for local)
  7. Is gives an interface in order to receive notifications
  8. Receiving interface :
  9. - dataStore : provides methods :
  10. - .load() : to get saved game data
  11. - .save(data) : to store game data and propagate (returns true if it succeeded, false otherwise)
  12. - .getHeroesJson() : to get JSON file with all heroes cards described
  13. Provides interface :
  14. - duelControllerProxy : provides methods :
  15. - endTurn(data) : notifies the controller that players ended current turn with attached data */
  16. import { initHeroesFromJson } from './heroesHelper';
  17. import gameStates from './gameStates/gameStates';
  18. const DuelController = function(dataStore) {
  19. let gameData = {
  20. game: {},
  21. bluePlayer: {},
  22. redPlayer: {}
  23. };
  24. let allHeroes = null;
  25. /** ***** STATE MACHINE internal methods ***** */
  26. // Holds current running state
  27. let currentGameState = null;
  28. // Set new current State
  29. let setCurrentState = stateName => {
  30. currentGameState = states[stateName];
  31. gameData.game.gameState = stateName;
  32. };
  33. // get new State
  34. let getCurrentState = () => {
  35. return currentGameState;
  36. };
  37. // Start the current state
  38. let startCurrentState = (payload = null) => {
  39. currentGameState.start(payload);
  40. };
  41. // Update the current state
  42. let updateCurrentState = (payload = null) => {
  43. currentGameState.update(payload);
  44. };
  45. // End the current state
  46. let endCurrentState = (payload = null) => {
  47. currentGameState.end(payload);
  48. };
  49. let getGameData = () => gameData;
  50. // Interface to set data and store it
  51. let storeData = data => {
  52. setData(data);
  53. return dataStore.save(gameData);
  54. };
  55. // Interface to set data only
  56. let setData = data => {
  57. gameData = data;
  58. };
  59. // Interface to load data
  60. let loadData = () => {
  61. gameData = dataStore.load();
  62. };
  63. // Interface to get set of all heroes
  64. let getAllHeroes = () => {
  65. if (!allHeroes) {
  66. allHeroes = initHeroesFromJson(dataStore.getHeroesJson());
  67. }
  68. return allHeroes;
  69. };
  70. // Pass those state machine methods to each state
  71. let stateCtrl = {
  72. setCurrentState,
  73. getCurrentState,
  74. startCurrentState,
  75. updateCurrentState,
  76. endCurrentState,
  77. storeData,
  78. setData,
  79. getGameData,
  80. loadData,
  81. getAllHeroes
  82. };
  83. // declare all states
  84. // First state to be set after public APIs (start or resume game) are called
  85. let states = {
  86. '0_INIT': new gameStates.initState(stateCtrl),
  87. '1_SELECT_FACTION': new gameStates.selectFactionState(stateCtrl)
  88. };
  89. /** ***** Following are public methods ***** */
  90. // Method to create and start a new game (both players are there)
  91. let startNewGame = function(player1Name, player2Name, gameOptions) {
  92. // 1st state is init
  93. setCurrentState('0_INIT');
  94. //Start it
  95. startCurrentState({
  96. player1Name,
  97. player2Name,
  98. gameOptions
  99. });
  100. };
  101. // Method to resume existing game, gameData is passed already
  102. let resumeGame = function(data) {
  103. gameData = data;
  104. // Just set state per data in DB
  105. // This state will wait for update
  106. setCurrentState(gameData.gameState);
  107. };
  108. // Provide an interface so that players can notify the DuelController
  109. let DuelControllerProxy = () => {
  110. return {
  111. endTurn: data => {
  112. currentGameState.update(data);
  113. }
  114. };
  115. };
  116. // Return public methods
  117. return {
  118. startNewGame,
  119. resumeGame,
  120. duelControllerProxy: new DuelControllerProxy()
  121. };
  122. };
  123. export default DuelController;