30 lines
1.1 KiB
JavaScript
30 lines
1.1 KiB
JavaScript
"use strict";
|
|
class PlayerController {
|
|
hostClientId;
|
|
players = new Map();
|
|
|
|
constructor() {
|
|
}
|
|
|
|
onGameMessage(message) {
|
|
message.body.commands.forEach(command => {
|
|
switch (command.name) {
|
|
case commands.syncRoomData:
|
|
if (message.from !== command.args[0]) { socket.close(); return; }
|
|
this.hostClientId = command.args[0];
|
|
this.players = new Map(command.args[1].map(playerId => [playerId, new Player(playerId)]));
|
|
break;
|
|
case commands.gameStart:
|
|
if (message.from !== this.hostClientId) { socket.close(); return; }
|
|
break;
|
|
case commands.addCard:
|
|
if (message.from !== this.hostClientId) { socket.close(); return; }
|
|
if (command.target == clientId && command.args[0] == cardTypes.unknown.id) return;
|
|
this.players.get(command.target).cards.push(new Card(cardTypes[command.args[0]], command.args[1]));
|
|
break;
|
|
}
|
|
});
|
|
}
|
|
|
|
joinNewPlayer() { }
|
|
} |