@andreabiagini5/applicazioni-e-servizi-web-project
Version:
Project for Applicazioni e Servizi Web.
78 lines • 3.39 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.match = void 0;
const matchController = __importStar(require("../controllers/match"));
const matchService = __importStar(require("../services/match"));
const Move_1 = require("../models/Move");
const ioHandler = __importStar(require("../sockets/socket"));
const botService = __importStar(require("../services/bot"));
const match = (socket) => {
async function addMove(matchId, movingPlayer, x, y) {
if (socket.rooms.has(matchId)) {
await matchController.addMove(matchId, movingPlayer, Move_1.MoveFactory.create(x, y));
}
}
socket.on('getMatch', async (matchId, callback) => {
try {
const match = await matchService.getMatch(matchId);
const socketUsername = ioHandler.getSocketUsername(socket);
callback(null, Object.assign(Object.assign({}, match), { winner: match.winner }), match.player1 == socketUsername ? 1 : 2);
}
catch (error) {
callback(error, null, null);
}
});
socket.on('addMove', async (matchId, movingPlayer, x, y) => {
if (socket.rooms.has(matchId)) {
matchController.addMove(matchId, movingPlayer, Move_1.MoveFactory.create(x, y)).then(() => {
matchService.getMatch(matchId).then(match => {
if (match && match.player2 == 'bot') {
const currentState = match.computeCurrentState();
botService.getMove(currentState).then(async (botMove) => {
await matchController.addMove(matchId, 'bot', Move_1.MoveFactory.create(botMove.x, botMove.y));
});
}
});
});
}
});
socket.on('matchHistory', async (username, callback) => {
const matchIds = await matchService.getEndedMatchesByPlayer(username);
callback(matchIds);
});
};
exports.match = match;
//# sourceMappingURL=match.js.map