games-manager.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. 'use strict';
  2. import OnlineDuelSync from './online-duel-sync';
  3. const fs = require('fs');
  4. const path = require('path');
  5. export default function GamesManager(ioServer, mariadbConn) {
  6. let currentGames = new Map();
  7. // We create Heroes data from JSON file, it will be needed by the duelController
  8. // DuelController has no dependency to browser env nor node env. So it cannot read the
  9. // file itself (not same mechanism, in node we use fs readFileSync)
  10. // Read once here for all the games to come
  11. let allHeroesJson = JSON.parse(
  12. fs.readFileSync(
  13. path.resolve(__dirname, '../client-server-shared/all-heroes.json')
  14. )
  15. );
  16. // Method to add player into a game, create or add to game syncer
  17. let addPlayerInGame = function(
  18. player,
  19. gameId,
  20. joinCreatedGame,
  21. isNewGame = false,
  22. gameOptions = {}
  23. ) {
  24. if (currentGames.has(gameId)) {
  25. player.isPlayingGameId = gameId;
  26. let duelSync = currentGames.get(gameId);
  27. return duelSync.addPlayer(player);
  28. } else if (joinCreatedGame === false) {
  29. player.isPlayingGameId = gameId;
  30. currentGames.set(
  31. gameId,
  32. new OnlineDuelSync(
  33. ioServer,
  34. mariadbConn,
  35. gameId,
  36. player,
  37. isNewGame,
  38. gameOptions,
  39. allHeroesJson
  40. )
  41. );
  42. return true;
  43. // We are supposed to join a new game, but not there, must have been deleted in the meantime
  44. } else {
  45. console.log(
  46. 'error : ' +
  47. player.playerName +
  48. ' tries to join a created game that does not exist anymore'
  49. );
  50. return false;
  51. }
  52. };
  53. let playerLeft = function(player, disconnected) {
  54. let id = player.isPlayingGameId;
  55. if (currentGames.has(id)) {
  56. currentGames.get(id).playerLeft(player, disconnected);
  57. if (!currentGames.get(id).hasPlayers()) {
  58. // If it was new created game, don't set it to pause, game will be removed
  59. if (!currentGames.get(id).isNewlyCreatedGame()) {
  60. mariadbConn.updateGameStatus(id, 'PAUSED');
  61. }
  62. currentGames.delete(id);
  63. }
  64. }
  65. player.isPlayingGameId = -1;
  66. };
  67. return {
  68. addPlayerInGame,
  69. playerLeft
  70. };
  71. }