games-manager.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import OnlineDuelSync from './online-duel-sync';
  2. export default function GamesManager(ioServer, mariadbConn) {
  3. let currentGames = new Map();
  4. // Method to add player into a game, create or add to game syncer
  5. let addPlayerInGame = function(player, gameId, joinCreatedGame) {
  6. if (currentGames.has(gameId)) {
  7. player.isPlayingGameId = gameId;
  8. return currentGames.get(gameId).addPlayer(player);
  9. } else if (joinCreatedGame === false) {
  10. player.isPlayingGameId = gameId;
  11. currentGames.set(
  12. gameId,
  13. new OnlineDuelSync(ioServer, mariadbConn, gameId, player)
  14. );
  15. return true;
  16. // We are supposed to join a new game, but not there, must have been deleted in the meantime
  17. } else {
  18. console.log(
  19. 'error : ' +
  20. player.playerName +
  21. ' tries to join a created game that does not exist anymore'
  22. );
  23. return false;
  24. }
  25. };
  26. let playerLeft = function(player, disconnected) {
  27. let id = player.isPlayingGameId;
  28. if (currentGames.has(id)) {
  29. currentGames.get(id).playerLeft(player, disconnected);
  30. if (!currentGames.get(id).hasPlayers()) {
  31. currentGames.delete(id);
  32. }
  33. }
  34. player.isPlayingGameId = -1;
  35. };
  36. return {
  37. addPlayerInGame,
  38. playerLeft
  39. };
  40. }