- Added multiplayer functions #27

Merged
H4CK3R-01 merged 3 commits from multiplayer into main 2021-06-14 10:08:31 +00:00
3 changed files with 15 additions and 6 deletions
Showing only changes of commit 00d868f963 - Show all commits

View File

@ -63,6 +63,15 @@ io.on('connection', socket => {
gameState['players'].splice(index, 1);
gameState['positions'].splice(index, 1);
}
socket.leave(socket.room);
if (gameState['players'].length === 0) {
gameState['players'] = [];
gameState['positions'] = [];
gameState['whosNext'] = 0;
gameState['started'] = false;
}
}
generate_log_message(socket.room, socket.username, "LEFT", "");

View File

@ -50,25 +50,25 @@ function Card(game_board_size, s, a1, a2, a3, a4, d, your_turn) {
// Answers
this.buttons.push(new Button(0xffffff, 0xcccccc, 0x4169E1, this.card_width - 40, 150, this.card_x + 20, this.card_y + this.card_height - 120 - 170 * 4, this.a1.text, this.a1.status, true, function () {
if (this.your_turn) {
if (_this.your_turn) {
select_answer(0, _this.a1.text);
}
}));
this.buttons.push(new Button(0xffffff, 0xcccccc, 0x4169E1, this.card_width - 40, 150, this.card_x + 20, this.card_y + this.card_height - 120 - 170 * 3, this.a2.text, this.a2.status, true, function () {
if (this.your_turn) {
if (_this.your_turn) {
select_answer(1, _this.a2.text);
}
}));
this.buttons.push(new Button(0xffffff, 0xcccccc, 0x4169E1, this.card_width - 40, 150, this.card_x + 20, this.card_y + this.card_height - 120 - 170 * 2, this.a3.text, this.a3.status, true, function () {
if (this.your_turn) {
if (_this.your_turn) {
select_answer(2, _this.a3.text);
}
}));
this.buttons.push(new Button(0xffffff, 0xcccccc, 0x4169E1, this.card_width - 40, 150, this.card_x + 20, this.card_y + this.card_height - 120 - 170 * 1, this.a4.text, this.a4.status, true, function () {
if (this.your_turn) {
if (_this.your_turn) {
select_answer(3, _this.a4.text);
}
}));
@ -88,8 +88,6 @@ function Card(game_board_size, s, a1, a2, a3, a4, d, your_turn) {
answer = null;
diced = false;
rolled_number = null;
rolled_number_text.destroy();
border_card_stack.clear();
socket.emit('card finished', d);
} else {
alert("Bitte wähle eine Antwortmöglichkeit aus");

View File

@ -170,6 +170,8 @@ function start_game() {
socket.on('card destroyed', function () {
card.destroyCard();
rolled_number_text.destroy();
border_card_stack.clear();
});
resize();