any-player.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. import { socketService } from '../../../main';
  2. export default function AnyPlayer() {
  3. const initPlayerState = {
  4. // Username of this player
  5. name: '',
  6. // Color of this player (blue or red)
  7. color: '',
  8. // Faction chosen (will stay empty if not faction mode)
  9. faction: '',
  10. // Will contain the IDs of the heroes selectable for draft mode
  11. draftHeroesIds: [],
  12. // the 12 heroes the player is playing with
  13. // Player will fill it himself if mode is draft or tournament
  14. // contains object : {id:heroId , position:'pile' , possibleActions :[]}
  15. twelveHeroes: [],
  16. foodInCamp: 0,
  17. // Can see already we might have issues with left/right depending from where we look :)
  18. 'foodInBattle/left': 0,
  19. 'foodInBattle/center': 0,
  20. 'foodInBattle/right': 0,
  21. // During military phase it will contain actions made by player to be replayed by other
  22. actionsPerformed: []
  23. };
  24. const state = Object.assign({}, initPlayerState);
  25. const getters = {
  26. color: state => {
  27. return state.color;
  28. },
  29. draftIds: state => {
  30. return state.draftHeroesIds;
  31. },
  32. twelveHeroes: state => {
  33. return state.twelveHeroes;
  34. }
  35. };
  36. const mutations = {
  37. SET_FULL_PLAYER_STATE: (state, payload) => {
  38. Object.assign(state, payload);
  39. },
  40. INIT_PLAYER_STATE: state => {
  41. Object.assign(state, initPlayerState);
  42. }
  43. };
  44. const actions = {
  45. submitFaction: ({ commit, state }, payload) => {
  46. commit(
  47. 'game/SET_WAITING_FOR',
  48. { color: state.color, value: false },
  49. { root: true }
  50. );
  51. socketService
  52. .endTurn({ color: state.color, faction: payload })
  53. .catch(err => {
  54. console.log('Error sending data : ', err);
  55. //Unvalid submit
  56. commit(
  57. 'game/SET_WAITING_FOR',
  58. { color: state.color, value: true },
  59. { root: true }
  60. );
  61. });
  62. }
  63. };
  64. return {
  65. namespace: true,
  66. state,
  67. getters,
  68. mutations,
  69. actions
  70. };
  71. }