From b794669d0ec1aa634272fe5f138eda847506b454 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 15 Jun 2021 17:52:18 +0200 Subject: Add "Rematch" button for easier repeat match making. --- play.html | 2 ++ ui.js | 14 +++++--------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/play.html b/play.html index d347df6..09ac0c9 100644 --- a/play.html +++ b/play.html @@ -360,6 +360,8 @@ div.card_3{background-image:url('cards/card_3.jpg')} + +
diff --git a/ui.js b/ui.js index d7655c1..75d97a4 100644 --- a/ui.js +++ b/ui.js @@ -38,8 +38,6 @@ function toggle_blocks() { document.getElementById("map").classList.toggle("hide_blocks"); } -let game = null; - let ui = { cards: {}, areas: {}, @@ -475,7 +473,7 @@ function hide_block(element) { ui.offmap_element.appendChild(element); } -function update_map(player) { +function update_map() { let overflow = { England: [], Scotland: [] }; let layout = {}; @@ -628,7 +626,7 @@ function update_cards() { document.querySelector("#scotland_card").className = "small_card " + CARDS[game.s_card].image; } -function update_battle(player) { +function update_battle() { function fill_cell(name, list, reserve) { let cell = window[name]; @@ -706,9 +704,7 @@ function update_battle(player) { } } -function on_update(state, player) { - game = state; - +function on_update() { show_action_button("#undo_button", "undo"); show_action_button("#pass_button", "pass"); show_action_button("#play_event_button", "play_event"); @@ -729,7 +725,7 @@ function on_update(state, player) { document.getElementById("scotland_vp").textContent = game.s_vp; update_cards(); - update_map(player); + update_map(); if (game.actions && game.actions.noble) { document.querySelector(".herald").classList.add("show"); @@ -748,7 +744,7 @@ function on_update(state, player) { document.querySelector(".battle_header").textContent = game.battle.title; document.querySelector(".battle_message").textContent = game.battle.flash; document.querySelector(".battle").classList.add("show"); - update_battle(player); + update_battle(); } else { document.querySelector(".battle").classList.remove("show"); } -- cgit v1.2.3