gameStates.js 888 B

12345678910111213141516171819202122
  1. 'use strict';
  2. // Following contains all states definitions
  3. // They all receive interface from duel controller as an argument (see stateCtrl in DuelController)
  4. // They all must implement :
  5. // - start : where it prepares the game data for this step and save it dor players
  6. // - update : where it waits for players inputs, save them
  7. // - end : where it decides what should be next state
  8. // Those 3 methods might receive a payload but not necessarily
  9. // The state have also direct acces to game data
  10. import initState from './0-initState';
  11. import selectFactionState from './1-selectFactionState';
  12. import selectDraftState from './1-selectDraftState';
  13. import selectTournamentState from './1-selectTournamentState';
  14. import changeUpTo3Cards from './2-changeUpTo3Cards';
  15. export default {
  16. initState,
  17. selectFactionState,
  18. selectDraftState,
  19. selectTournamentState,
  20. changeUpTo3Cards
  21. };