summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-10-18 23:34:54 +0200
committerTor Andersson <tor@ccxvii.net>2023-10-18 23:34:54 +0200
commit065edf40611e66c9d88cf2f5c1548312b010c847 (patch)
tree50d980ea8a311bedc5226549aad6d70f3754ab75
parentd0b765b52b6cf2bda1216fbe61ab650dcec6361e (diff)
downloadshores-of-tripoli-065edf40611e66c9d88cf2f5c1548312b010c847.tar.gz
Remove semicolons.
-rw-r--r--play.js487
1 files changed, 247 insertions, 240 deletions
diff --git a/play.js b/play.js
index bc5ec92..5f1062a 100644
--- a/play.js
+++ b/play.js
@@ -1,52 +1,52 @@
-"use strict";
+"use strict"
-const SCALE = 2/3
+const SCALE = 2 / 3
-const SEASON_X = [ 893, 978, 1064, 1149 ];
-const YEAR_X = { 1801: 175, 1802: 294, 1803: 413, 1804: 532, 1805: 652, 1806: 771 };
-const YEAR_Y = 728;
+const SEASON_X = [ 893, 978, 1064, 1149 ]
+const YEAR_X = { 1801: 175, 1802: 294, 1803: 413, 1804: 532, 1805: 652, 1806: 771 }
+const YEAR_Y = 728
function get_piece_id(name) {
- return PIECES.indexOf(name);
+ return PIECES.indexOf(name)
}
function get_space_id(name) {
- return SPACES.indexOf(name);
+ return SPACES.indexOf(name)
}
function create_piece_list(n, name) {
- let list = [];
+ let list = []
for (let i = 1; i <= n; ++i)
- list.push(get_piece_id(name + i));
- return list;
-}
-
-const US_FRIGATES = create_piece_list(8, 'us_frigate_');
-const TR_FRIGATES = create_piece_list(2, 'tr_frigate_');
-const FRIGATES = US_FRIGATES.concat(TR_FRIGATES);
-
-const ALEXANDRIA = get_space_id("Alexandria");
-const ALGIERS = get_space_id("Algiers");
-const ALGIERS_PATROL_ZONE = get_space_id("Algiers Patrol Zone");
-const BENGHAZI = get_space_id("Benghazi");
-const DERNE = get_space_id("Derne");
-const GIBRALTAR = get_space_id("Gibraltar");
-const GIBRALTAR_PATROL_ZONE = get_space_id("Gibraltar Patrol Zone");
-const MALTA = get_space_id("Malta");
-const TANGIER = get_space_id("Tangier");
-const TANGIER_PATROL_ZONE = get_space_id("Tangier Patrol Zone");
-const TRIPOLI = get_space_id("Tripoli");
-const TRIPOLI_PATROL_ZONE = get_space_id("Tripoli Patrol Zone");
-const TUNIS = get_space_id("Tunis");
-const TUNIS_PATROL_ZONE = get_space_id("Tunis Patrol Zone");
-const UNITED_STATES_SUPPLY = get_space_id("United States Supply");
-const TRIPOLITAN_SUPPLY = get_space_id("Tripolitan Supply");
-const TRACK_1801 = get_space_id("1801");
-const TRACK_1802 = get_space_id("1802");
-const TRACK_1803 = get_space_id("1803");
-const TRACK_1804 = get_space_id("1804");
-const TRACK_1805 = get_space_id("1805");
-const TRACK_1806 = get_space_id("1806");
+ list.push(get_piece_id(name + i))
+ return list
+}
+
+const US_FRIGATES = create_piece_list(8, "us_frigate_")
+const TR_FRIGATES = create_piece_list(2, "tr_frigate_")
+const FRIGATES = US_FRIGATES.concat(TR_FRIGATES)
+
+const ALEXANDRIA = get_space_id("Alexandria")
+const ALGIERS = get_space_id("Algiers")
+const ALGIERS_PATROL_ZONE = get_space_id("Algiers Patrol Zone")
+const BENGHAZI = get_space_id("Benghazi")
+const DERNE = get_space_id("Derne")
+const GIBRALTAR = get_space_id("Gibraltar")
+const GIBRALTAR_PATROL_ZONE = get_space_id("Gibraltar Patrol Zone")
+const MALTA = get_space_id("Malta")
+const TANGIER = get_space_id("Tangier")
+const TANGIER_PATROL_ZONE = get_space_id("Tangier Patrol Zone")
+const TRIPOLI = get_space_id("Tripoli")
+const TRIPOLI_PATROL_ZONE = get_space_id("Tripoli Patrol Zone")
+const TUNIS = get_space_id("Tunis")
+const TUNIS_PATROL_ZONE = get_space_id("Tunis Patrol Zone")
+const UNITED_STATES_SUPPLY = get_space_id("United States Supply")
+const TRIPOLITAN_SUPPLY = get_space_id("Tripolitan Supply")
+const TRACK_1801 = get_space_id("1801")
+const TRACK_1802 = get_space_id("1802")
+const TRACK_1803 = get_space_id("1803")
+const TRACK_1804 = get_space_id("1804")
+const TRACK_1805 = get_space_id("1805")
+const TRACK_1806 = get_space_id("1806")
const US_CARD_NAMES = [
"Thomas Jefferson",
@@ -76,7 +76,7 @@ const US_CARD_NAMES = [
"Send in the Marines",
"Lieutenant O'Bannon Leads the Charge",
"Marine Sharpshooters",
-];
+]
const TR_CARD_NAMES = [
"Yusuf Qaramanli",
@@ -106,7 +106,7 @@ const TR_CARD_NAMES = [
"Happy Hunting",
"The Guns of Tripoli",
"Mercenaries Desert",
-];
+]
let ui = {
spaces: {},
@@ -116,371 +116,378 @@ let ui = {
}
function sub_log_entry_tip(match, p1, offset, string) {
- let card_number;
- card_number = US_CARD_NAMES.indexOf(p1) + 1;
+ let card_number
+ card_number = US_CARD_NAMES.indexOf(p1) + 1
if (card_number > 0)
- return `\n<span class="us_tip" onmouseenter="on_focus_card_tip('us_card_${card_number}')" onmouseleave="on_blur_card_tip()">${p1}</span>`;
- card_number = TR_CARD_NAMES.indexOf(p1) + 1;
+ return `\n<span class="us_tip" onmouseenter="on_focus_card_tip('us_card_${card_number}')" onmouseleave="on_blur_card_tip()">${p1}</span>`
+ card_number = TR_CARD_NAMES.indexOf(p1) + 1
if (card_number > 0)
- return `\n<span class="tr_tip" onmouseenter="on_focus_card_tip('tr_card_${card_number}')" onmouseleave="on_blur_card_tip()">${p1}</span>`;
- return match;
+ return `\n<span class="tr_tip" onmouseenter="on_focus_card_tip('tr_card_${card_number}')" onmouseleave="on_blur_card_tip()">${p1}</span>`
+ return match
}
function sub_log_entry_tip2(match, p1, offset, string) {
- let card_number = p1 | 0;
+ let card_number = p1 | 0
if (card_number < 28)
- return `\n<span class="us_tip" onmouseenter="on_focus_card_tip('us_card_${card_number}')" onmouseleave="on_blur_card_tip()">${US_CARD_NAMES[card_number-1]}</span>`;
+ return `\n<span class="us_tip" onmouseenter="on_focus_card_tip('us_card_${card_number}')" onmouseleave="on_blur_card_tip()">${US_CARD_NAMES[card_number-1]}</span>`
else
- return `\n<span class="tr_tip" onmouseenter="on_focus_card_tip('tr_card_${card_number-27}')" onmouseleave="on_blur_card_tip()">${TR_CARD_NAMES[card_number-28]}</span>`;
- return match;
+ return `\n<span class="tr_tip" onmouseenter="on_focus_card_tip('tr_card_${card_number-27}')" onmouseleave="on_blur_card_tip()">${TR_CARD_NAMES[card_number-28]}</span>`
+ return match
}
-let last_log_who = 'st';
+let last_log_who = "st"
function on_log(text) {
- let p = document.createElement("div");
- text = text.replace(/&/g, "&amp;");
- text = text.replace(/</g, "&lt;");
- text = text.replace(/>/g, "&gt;");
- text = text.replace(/\u201c(.*)\u201d/g, sub_log_entry_tip);
- text = text.replace(/#(\d+)/g, sub_log_entry_tip2);
+ let p = document.createElement("div")
+ text = text.replace(/&/g, "&amp;")
+ text = text.replace(/</g, "&lt;")
+ text = text.replace(/>/g, "&gt;")
+ text = text.replace(/\u201c(.*)\u201d/g, sub_log_entry_tip)
+ text = text.replace(/#(\d+)/g, sub_log_entry_tip2)
if (text.match(/^Start of \d+/)) {
- text = text.substring(9, text.length-1);
- p.className = 'year';
+ text = text.substring(9, text.length - 1)
+ p.className = "year"
} else if (text.match(/^Start of /)) {
- text = text.substring(9, text.length-1);
- p.className = 'season';
+ text = text.substring(9, text.length - 1)
+ p.className = "season"
} else if (text.match(/^.year \d+/)) {
- text = text.substring(6);
- p.className = 'year';
+ text = text.substring(6)
+ p.className = "year"
} else if (text.match(/^.season /)) {
- text = text.substring(8);
- p.className = 'season';
+ text = text.substring(8)
+ p.className = "season"
} else if (text.match(/^Pirate raid from/)) {
- p.className = 'raid';
+ p.className = "raid"
} else if (text.match(/^(Naval|Land) (battle|bombardment) in/)) {
- p.className = 'battle';
+ p.className = "battle"
} else if (text.match(/^(Naval|Land) battle (round)/)) {
- p.className = 'round';
+ p.className = "round"
} else if (text.match(/(victory:|ends in a draw)/)) {
- p.className = 'end';
+ p.className = "end"
}
- p.innerHTML = text;
- return p;
+ p.innerHTML = text
+ return p
}
function on_focus_card_tip(card_name) {
- document.getElementById("tooltip").classList = "card show " + card_name;
+ document.getElementById("tooltip").classList = "card show " + card_name
}
function on_blur_card_tip() {
- document.getElementById("tooltip").classList = "card";
+ document.getElementById("tooltip").classList = "card"
}
function on_focus_space(evt) {
- let where = SPACES[evt.target.space];
- document.getElementById("status").textContent = where;
+ let where = SPACES[evt.target.space]
+ document.getElementById("status").textContent = where
}
function on_focus_piece(evt) {
- let who = PIECES[evt.target.piece];
- document.getElementById("status").textContent = who;
+ let who = PIECES[evt.target.piece]
+ document.getElementById("status").textContent = who
}
function on_blur(evt) {
- document.getElementById("status").textContent = "";
+ document.getElementById("status").textContent = ""
}
-function on_click_space(evt) { send_action('space', evt.target.space); }
-function on_click_piece(evt) { send_action('piece', evt.target.piece); }
+function on_click_space(evt) {
+ send_action("space", evt.target.space)
+}
+function on_click_piece(evt) {
+ send_action("piece", evt.target.piece)
+}
function on_focus_active_card(evt) {
- if (typeof view.card === 'number') {
+ if (typeof view.card === "number") {
if (view.card < 27)
- document.getElementById("tooltip").className = "card show us_card_" + view.card;
+ document.getElementById("tooltip").className = "card show us_card_" + view.card
else
- document.getElementById("tooltip").className = "card show tr_card_" + (view.card-27);
+ document.getElementById("tooltip").className = "card show tr_card_" + (view.card - 27)
}
}
function on_blur_active_card(evt) {
- document.getElementById("tooltip").classList = "card";
+ document.getElementById("tooltip").classList = "card"
}
function build_map() {
- let map = document.getElementById("svgmap");
+ let map = document.getElementById("svgmap")
for (let i = 0; i < SPACES.length; ++i) {
- let space = SPACES[i];
- let id = space.replace(/ /g, "_").toLowerCase();
- let e = map.getElementById(id);
+ let space = SPACES[i]
+ let id = space.replace(/ /g, "_").toLowerCase()
+ let e = map.getElementById(id)
if (e) {
- e.addEventListener("mouseenter", on_focus_space);
- e.addEventListener("mouseleave", on_blur);
- e.addEventListener("click", on_click_space);
- e.space = i;
- ui.spaces[i] = e;
+ e.addEventListener("mouseenter", on_focus_space)
+ e.addEventListener("mouseleave", on_blur)
+ e.addEventListener("click", on_click_space)
+ e.space = i
+ ui.spaces[i] = e
}
}
for (let i = 0; i < PIECES.length; ++i) {
- let piece = PIECES[i];
- let e = document.getElementById(piece);
+ let piece = PIECES[i]
+ let e = document.getElementById(piece)
if (e) {
- e.addEventListener("mouseenter", on_focus_piece);
- e.addEventListener("mouseleave", on_blur);
- e.addEventListener("click", on_click_piece);
- e.piece = i;
- ui.pieces[i] = e;
+ e.addEventListener("mouseenter", on_focus_piece)
+ e.addEventListener("mouseleave", on_blur)
+ e.addEventListener("click", on_click_piece)
+ e.piece = i
+ ui.pieces[i] = e
}
}
for (let i = 1; i <= 12; ++i) {
- ui.gold.push(document.getElementById("gold_" + i));
+ ui.gold.push(document.getElementById("gold_" + i))
}
for (let i = 1; i <= 27; ++i) {
- let e = ui.cards[i] = document.getElementById("us_card_"+i);
- e.addEventListener("click", on_click_card);
- e.card = i;
+ let e = (ui.cards[i] = document.getElementById("us_card_" + i))
+ e.addEventListener("click", on_click_card)
+ e.card = i
}
for (let i = 28; i <= 54; ++i) {
- let e = ui.cards[i] = document.getElementById("tr_card_"+(i-27));
- e.addEventListener("click", on_click_card);
- e.card = i;
+ let e = (ui.cards[i] = document.getElementById("tr_card_" + (i - 27)))
+ e.addEventListener("click", on_click_card)
+ e.card = i
}
- document.getElementById("active_card").addEventListener("mouseenter", on_focus_active_card);
- document.getElementById("active_card").addEventListener("mouseleave", on_blur_active_card);
+ document.getElementById("active_card").addEventListener("mouseenter", on_focus_active_card)
+ document.getElementById("active_card").addEventListener("mouseleave", on_blur_active_card)
}
const CARD_ACTIONS = [
- 'card_build_corsair',
- 'card_build_gunboat',
- 'card_event',
- 'card_move_frigates',
- 'card_pirate_raid',
- 'card_take',
- 'discard',
-];
+ "card_build_corsair",
+ "card_build_gunboat",
+ "card_event",
+ "card_move_frigates",
+ "card_pirate_raid",
+ "card_take",
+ "discard",
+]
function is_card_enabled(c) {
if (view.actions)
for (let a of CARD_ACTIONS)
if (view.actions[a] && view.actions[a].includes(c))
- return true;
- return false;
+ return true
+ return false
}
function update_card(c, show) {
if (is_card_enabled(c))
- ui.cards[c].classList.add('enabled');
+ ui.cards[c].classList.add("enabled")
else
- ui.cards[c].classList.remove('enabled');
+ ui.cards[c].classList.remove("enabled")
if (show)
- ui.cards[c].classList.add('show');
+ ui.cards[c].classList.add("show")
else
- ui.cards[c].classList.remove('show');
+ ui.cards[c].classList.remove("show")
}
function update_cards() {
for (let i = 1; i <= 3; ++i) {
- update_card(i, view.core.includes(i));
- update_card(i+27, view.core.includes(i+27));
+ update_card(i, view.core.includes(i))
+ update_card(i + 27, view.core.includes(i + 27))
}
for (let i = 4; i <= 27; ++i) {
- update_card(i, view.hand.includes(i));
- update_card(i+27, view.hand.includes(i+27));
+ update_card(i, view.hand.includes(i))
+ update_card(i + 27, view.hand.includes(i + 27))
}
}
/* MAP AND PIECE LAYOUT */
function tr_info() {
- let text = "";
- text += "Hand: " + view.tr.hand + " / ";
- text += "Draw: " + view.tr.draw + " / ";
- text += "Discard: " + view.tr.discard + "\n";
- return text;
+ let text = ""
+ text += "Hand: " + view.tr.hand + " / "
+ text += "Draw: " + view.tr.draw + " / "
+ text += "Discard: " + view.tr.discard + "\n"
+ return text
}
function us_info() {
- let text = "";
- text += "Hand: " + view.us.hand + " / ";
- text += "Draw: " + view.us.draw + " / ";
- text += "Discard: " + view.us.discard + "\n";
- return text;
+ let text = ""
+ text += "Hand: " + view.us.hand + " / "
+ text += "Draw: " + view.us.draw + " / "
+ text += "Discard: " + view.us.discard + "\n"
+ return text
}
function on_update() {
- action_button("pass", "Pass");
- action_button("next", "Next");
- action_button("undo", "Undo");
+ action_button("pass", "Pass")
+ action_button("next", "Next")
+ action_button("undo", "Undo")
- document.getElementById("tr_score").textContent = view.tr.score;
- document.getElementById("us_score").textContent = view.us.score;
- document.getElementById("tr_info").textContent = tr_info();
- document.getElementById("us_info").textContent = us_info();
+ document.getElementById("tr_score").textContent = view.tr.score
+ document.getElementById("us_score").textContent = view.us.score
+ document.getElementById("tr_info").textContent = tr_info()
+ document.getElementById("us_info").textContent = us_info()
if (view.card === undefined)
- document.getElementById("active_card").className = "card show blank";
+ document.getElementById("active_card").className = "card show blank"
else if (view.card === "United States")
- document.getElementById("active_card").className = "card show us_card_back";
+ document.getElementById("active_card").className = "card show us_card_back"
else if (view.card === "Tripolitania")
- document.getElementById("active_card").className = "card show tr_card_back";
+ document.getElementById("active_card").className = "card show tr_card_back"
else if (view.card < 27)
- document.getElementById("active_card").className = "card show us_card_" + view.card;
+ document.getElementById("active_card").className = "card show us_card_" + view.card
else
- document.getElementById("active_card").className = "card show tr_card_" + (view.card-27);
+ document.getElementById("active_card").className = "card show tr_card_" + (view.card - 27)
- update_year_marker(view.year);
- update_season_marker(view.season);
- update_gold();
- update_pieces();
- update_cards();
- update_spaces();
+ update_year_marker(view.year)
+ update_season_marker(view.season)
+ update_gold()
+ update_pieces()
+ update_cards()
+ update_spaces()
}
function update_year_marker(year) {
- let e = document.getElementById("year");
- e.style.left = Math.round((YEAR_X[year] - 27) * SCALE) + "px";
- e.style.top = Math.round((YEAR_Y - 27) * SCALE) + "px";
+ let e = document.getElementById("year")
+ e.style.left = Math.round((YEAR_X[year] - 27) * SCALE) + "px"
+ e.style.top = Math.round((YEAR_Y - 27) * SCALE) + "px"
}
function update_season_marker(season) {
- let e = document.getElementById("season");
- e.style.left = Math.round((SEASON_X[season] - 27) * SCALE) + "px";
- e.style.top = Math.round((YEAR_Y - 27) * SCALE) + "px";
+ let e = document.getElementById("season")
+ e.style.left = Math.round((SEASON_X[season] - 27) * SCALE) + "px"
+ e.style.top = Math.round((YEAR_Y - 27) * SCALE) + "px"
}
function set_piece_xy(p, x, y) {
- let e = ui.pieces[p];
- e.style.left = Math.round(x * SCALE - e.offsetWidth/2) + "px";
- e.style.top = Math.round(y * SCALE - e.offsetHeight/2) + "px";
+ let e = ui.pieces[p]
+ e.style.left = Math.round(x * SCALE - e.offsetWidth / 2) + "px"
+ e.style.top = Math.round(y * SCALE - e.offsetHeight / 2) + "px"
}
function set_gold_xy(i, x, y) {
- let e = ui.gold[i];
- e.style.left = Math.round(x * SCALE - e.offsetWidth/2) + "px";
- e.style.top = Math.round(y * SCALE - e.offsetHeight/2) + "px";
+ let e = ui.gold[i]
+ e.style.left = Math.round(x * SCALE - e.offsetWidth / 2) + "px"
+ e.style.top = Math.round(y * SCALE - e.offsetHeight / 2) + "px"
}
function layout_space(location, s, x0, y0, size) {
- const LOUT_W = { se_f:46, us_f:46, tr_f:46, us_g:36, tr_c:36, al_c:36, us_m:28, ar_i:28, tr_i:28 };
- const LOUT_H = { se_f:32, us_f:32, tr_f:32, us_g:28, tr_c:28, al_c:28, us_m:28, ar_i:28, tr_i:28 };
+ const LOUT_W = { se_f: 46, us_f: 46, tr_f: 46, us_g: 36, tr_c: 36, al_c: 36, us_m: 28, ar_i: 28, tr_i: 28 }
+ const LOUT_H = { se_f: 32, us_f: 32, tr_f: 32, us_g: 28, tr_c: 28, al_c: 28, us_m: 28, ar_i: 28, tr_i: 28 }
function lout(row, prefix) {
- row.w = LOUT_W[prefix];
- row.h = LOUT_H[prefix];
- return row;
+ row.w = LOUT_W[prefix]
+ row.h = LOUT_H[prefix]
+ return row
}
- let pps = { se_f:[], us_f:[], us_g:[], us_m:[], ar_i:[], tr_f:[], tr_c:[], al_c:[], tr_i:[] };
+ let pps = { se_f: [], us_f: [], us_g: [], us_m: [], ar_i: [], tr_f: [], tr_c: [], al_c: [], tr_i: [] }
for (let p = 0; p < PIECES.length; ++p) {
if (location[p] === s) {
- let prefix = PIECES[p].substring(0,4);
- if (location[p] === TRIPOLITAN_SUPPLY && prefix === 'tr_f') prefix = 'us_f';
- if (prefix === 'se_f') prefix = 'us_f';
- if (prefix === 'al_c') prefix = 'tr_c';
- pps[prefix].push(p);
+ let prefix = PIECES[p].substring(0, 4)
+ if (location[p] === TRIPOLITAN_SUPPLY && prefix === "tr_f")
+ prefix = "us_f"
+ if (prefix === "se_f")
+ prefix = "us_f"
+ if (prefix === "al_c")
+ prefix = "tr_c"
+ pps[prefix].push(p)
}
}
- let rows = [];
+ let rows = []
for (let prefix in pps) {
- let row = pps[prefix];
+ let row = pps[prefix]
if (row.length > 0) {
- let wrap = (prefix === 'ar_i' || prefix === 'tr_i') ? size+1 : size;
- if (row.length > wrap*2) {
- rows.push(lout(row.slice(0,wrap), prefix))
- rows.push(lout(row.slice(wrap,wrap*2), prefix))
- rows.push(lout(row.slice(wrap*2), prefix))
+ let wrap = prefix === "ar_i" || prefix === "tr_i" ? size + 1 : size
+ if (row.length > wrap * 2) {
+ rows.push(lout(row.slice(0, wrap), prefix))
+ rows.push(lout(row.slice(wrap, wrap * 2), prefix))
+ rows.push(lout(row.slice(wrap * 2), prefix))
} else if (row.length > wrap) {
- rows.push(lout(row.slice(0,wrap), prefix))
+ rows.push(lout(row.slice(0, wrap), prefix))
rows.push(lout(row.slice(wrap), prefix))
} else {
- rows.push(lout(row, prefix));
+ rows.push(lout(row, prefix))
}
}
}
- let h = rows.reduce((acc, row) => acc + row.h, 0);
- let y = y0 - h / 2;
+ let h = rows.reduce((acc, row) => acc + row.h, 0)
+ let y = y0 - h / 2
for (let r = 0; r < rows.length; ++r) {
- let row = rows[r];
- let w = row.w * row.length;
- let x = x0 - w / 2 + row.w/2;
+ let row = rows[r]
+ let w = row.w * row.length
+ let x = x0 - w / 2 + row.w / 2
for (let c = 0; c < row.length; ++c) {
- let p = row[c];
- set_piece_xy(p, x + c * row.w, y + row.h/2);
+ let p = row[c]
+ set_piece_xy(p, x + c * row.w, y + row.h / 2)
}
- y += row.h;
+ y += row.h
}
}
function update_pieces() {
- layout_space(view.location, UNITED_STATES_SUPPLY, 1933, 180, 5);
- layout_space(view.location, TRIPOLITAN_SUPPLY, 2195, 180, 6);
-
- layout_space(view.location, TRACK_1801, YEAR_X[1801], 625, 2);
- layout_space(view.location, TRACK_1802, YEAR_X[1802], 625, 2);
- layout_space(view.location, TRACK_1803, YEAR_X[1803], 625, 2);
- layout_space(view.location, TRACK_1804, YEAR_X[1804], 625, 2);
- layout_space(view.location, TRACK_1805, YEAR_X[1805], 625, 2);
- layout_space(view.location, TRACK_1806, YEAR_X[1806], 625, 2);
-
- layout_space(view.location, ALEXANDRIA, 2335, 454, 3);
- layout_space(view.location, ALGIERS, 883, 318, 3);
- layout_space(view.location, BENGHAZI, 1877, 583, 3);
- layout_space(view.location, DERNE, 2030, 437, 3);
- layout_space(view.location, GIBRALTAR, 374, 216, 3);
- layout_space(view.location, MALTA, 1592, 189, 3);
- layout_space(view.location, TANGIER, 296, 426, 3);
- layout_space(view.location, TRIPOLI, 1416, 604, 5);
- layout_space(view.location, TUNIS, 1232, 278, 3);
-
- layout_space(view.location, ALGIERS_PATROL_ZONE, 875, 170, 3);
- layout_space(view.location, GIBRALTAR_PATROL_ZONE, 560, 245, 3);
- layout_space(view.location, TANGIER_PATROL_ZONE, 125, 410, 3);
- layout_space(view.location, TRIPOLI_PATROL_ZONE, 1575, 420, 5);
- layout_space(view.location, TUNIS_PATROL_ZONE, 1300, 130, 3);
+ layout_space(view.location, UNITED_STATES_SUPPLY, 1933, 180, 5)
+ layout_space(view.location, TRIPOLITAN_SUPPLY, 2195, 180, 6)
+
+ layout_space(view.location, TRACK_1801, YEAR_X[1801], 625, 2)
+ layout_space(view.location, TRACK_1802, YEAR_X[1802], 625, 2)
+ layout_space(view.location, TRACK_1803, YEAR_X[1803], 625, 2)
+ layout_space(view.location, TRACK_1804, YEAR_X[1804], 625, 2)
+ layout_space(view.location, TRACK_1805, YEAR_X[1805], 625, 2)
+ layout_space(view.location, TRACK_1806, YEAR_X[1806], 625, 2)
+
+ layout_space(view.location, ALEXANDRIA, 2335, 454, 3)
+ layout_space(view.location, ALGIERS, 883, 318, 3)
+ layout_space(view.location, BENGHAZI, 1877, 583, 3)
+ layout_space(view.location, DERNE, 2030, 437, 3)
+ layout_space(view.location, GIBRALTAR, 374, 216, 3)
+ layout_space(view.location, MALTA, 1592, 189, 3)
+ layout_space(view.location, TANGIER, 296, 426, 3)
+ layout_space(view.location, TRIPOLI, 1416, 604, 5)
+ layout_space(view.location, TUNIS, 1232, 278, 3)
+
+ layout_space(view.location, ALGIERS_PATROL_ZONE, 875, 170, 3)
+ layout_space(view.location, GIBRALTAR_PATROL_ZONE, 560, 245, 3)
+ layout_space(view.location, TANGIER_PATROL_ZONE, 125, 410, 3)
+ layout_space(view.location, TRIPOLI_PATROL_ZONE, 1575, 420, 5)
+ layout_space(view.location, TUNIS_PATROL_ZONE, 1300, 130, 3)
for (let p of FRIGATES) {
if (view.damaged.includes(p))
- ui.pieces[p].classList.add("damaged");
+ ui.pieces[p].classList.add("damaged")
else
- ui.pieces[p].classList.remove("damaged");
+ ui.pieces[p].classList.remove("damaged")
}
for (let p = 0; p < PIECES.length; ++p) {
if (view.actions && view.actions.piece && view.actions.piece.includes(p))
- ui.pieces[p].classList.add("highlight");
+ ui.pieces[p].classList.add("highlight")
else
- ui.pieces[p].classList.remove("highlight");
+ ui.pieces[p].classList.remove("highlight")
}
}
function update_gold() {
- let split = 12 - view.tr.gold;
- let x, y;
- x = 690;
- y = 50;
+ let split = 12 - view.tr.gold
+ let x, y
+ x = 690
+ y = 50
for (let i = 0; i < split; ++i) {
- set_gold_xy(i, x, y);
- x += 50;
+ set_gold_xy(i, x, y)
+ x += 50
}
- x = 2250;
- y = 750;
+ x = 2250
+ y = 750
for (let i = 11; i >= split; --i) {
- set_gold_xy(i, x, y);
- x -= 50;
+ set_gold_xy(i, x, y)
+ x -= 50
}
}
function update_spaces() {
for (let space in ui.spaces) {
- ui.spaces[space].classList.remove('highlight');
- ui.spaces[space].classList.remove('where');
+ ui.spaces[space].classList.remove("highlight")
+ ui.spaces[space].classList.remove("where")
}
if (view.where !== null) {
- ui.spaces[view.where].classList.add('where');
+ ui.spaces[view.where].classList.add("where")
}
if (view.actions && view.actions.space) {
for (let space of view.actions.space) {
- ui.spaces[space].classList.add('highlight');
+ ui.spaces[space].classList.add("highlight")
}
}
}
@@ -561,5 +568,5 @@ function on_click_card(evt) {
/* INITIALIZE CLIENT */
-build_map();
-scroll_with_middle_mouse("main");
+build_map()
+scroll_with_middle_mouse("main")