diff options
author | teisuru <31881306+teisuru@users.noreply.github.com> | 2023-08-03 00:34:02 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-10 18:16:55 +0100 |
commit | 353e68e874e24114a65eaf93b433e51dd24ae65f (patch) | |
tree | a308895ddc45fa992b63f410fda7ab3a77d7ea4d | |
parent | ffd7a60601e70f3fe2c98860b108e8ffdc537548 (diff) | |
download | plantagenet-353e68e874e24114a65eaf93b433e51dd24ae65f.tar.gz |
init cities town fortress markers
-rw-r--r-- | play.js | 24 | ||||
-rw-r--r-- | rules.js | 22 |
2 files changed, 45 insertions, 1 deletions
@@ -548,6 +548,12 @@ const ui = { turn: document.getElementById("turn"), end: document.getElementById("end"), victory_check: document.getElementById("victory_check"), + fortressl: document.getElementById("fortresses_l"), + fortressy: document.getElementById("fortresses_y"), + townl: document.getElementById("towns_l"), + towny: document.getElementById("towns_y"), + citiesl: document.getElementById("cities_l"), + citiesy: document.getElementById("cities_y"), court1_header: document.getElementById("court1_header"), court2_header: document.getElementById("court2_header"), court1: document.getElementById("court1"), @@ -1260,6 +1266,24 @@ function on_update() { ui.victory_check.style.top = (track_xy[view.victory_check][1]) + "px" ui.victory_check.style.left = (track_xy[view.victory_check][0]) + "px" + ui.townl.style.top = (track_xy[view.townl][1]) + "px" + ui.townl.style.left = (track_xy[view.townl][0]) + "px" + + ui.towny.style.top = (track_xy[view.towny][1]) + "px" + ui.towny.style.left = (track_xy[view.towny][0]) + "px" + + ui.citiesl.style.top = (track_xy[view.citiesl][1]) + "px" + ui.citiesl.style.left = (track_xy[view.citiesl][0]) + "px" + + ui.citiesy.style.top = (track_xy[view.citiesy][1]) + "px" + ui.citiesy.style.left = (track_xy[view.citiesy][0]) + "px" + + ui.fortressl.style.top = (track_xy[view.fortressl][1]) + "px" + ui.fortressl.style.left = (track_xy[view.fortressl][0]) + "px" + + ui.fortressy.style.top = (track_xy[view.fortressy][1]) + "px" + ui.fortressy.style.left = (track_xy[view.fortressy][0]) + "px" + update_plan() update_cards() @@ -1300,7 +1300,13 @@ exports.setup = function (seed, scenario, options) { state: "setup_lords", stack: [], victory_check: 0, - + towny:0, + fortressy:0, + citiesy:0, + townl:0, + fortressl:0, + citiesl:0, + hand1: [], hand2: [], plan1: [], @@ -1378,6 +1384,12 @@ function setup_Ia(first_player, second_player) { P2 = second_player game.active = first_player game.victory_check = 40 + game.towny = 0 + game.townl = 0 + game.citiesy = 0 + game.citiesl = 0 + game.fortressy = 0 + game.fortressl = 0 muster_lord(LORD_YORK, LOC_ELY) muster_lord(LORD_MARCH, LOC_LUDLOW) muster_lord(LORD_HENRY_VI, LOC_LONDON) @@ -6888,6 +6900,14 @@ exports.view = function (state, current) { end: scenario_last_turn[game.scenario], turn: game.turn, victory_check: game.victory_check, + townl: game.townl, + towny: game.townl, + fortressl: game.fortressl, + fortressy: game.fortressy, + citiesl: game.citiesl, + citiesy: game.citiesy, + + events: game.events, pieces: game.pieces, battle: game.battle, |