From d0761c05a44c293a4f91e8a53bd2023563f45f09 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sat, 21 Oct 2023 00:29:14 +0200 Subject: Use raster image for map instead of SVG. Chrome is too slow with the SVG map for a good experience. --- map150.jpg | Bin 0 -> 626894 bytes map150.png | Bin 0 -> 2826207 bytes map75.jpg | Bin 0 -> 506690 bytes map75.png | Bin 0 -> 1068375 bytes play.css | 9 ++++++++- play.html | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++----- play.js | 25 ++--------------------- 7 files changed, 71 insertions(+), 29 deletions(-) create mode 100644 map150.jpg create mode 100644 map150.png create mode 100644 map75.jpg create mode 100644 map75.png diff --git a/map150.jpg b/map150.jpg new file mode 100644 index 0000000..b6e3958 Binary files /dev/null and b/map150.jpg differ diff --git a/map150.png b/map150.png new file mode 100644 index 0000000..1e996a4 Binary files /dev/null and b/map150.png differ diff --git a/map75.jpg b/map75.jpg new file mode 100644 index 0000000..8a219d9 Binary files /dev/null and b/map75.jpg differ diff --git a/map75.png b/map75.png new file mode 100644 index 0000000..03e5907 Binary files /dev/null and b/map75.png differ diff --git a/play.css b/play.css index 8967dd2..c8b8fd7 100644 --- a/play.css +++ b/play.css @@ -208,13 +208,20 @@ td img { vertical-align: middle } /* MAP */ #map { - background-repeat: no-repeat; + background-image: url(map75.jpg); + background-size: 2672px 960px; width: 2672px; height: 960px; overflow: clip; box-shadow: 0px 1px 10px rgba(0,0,0,0.5); } +@media (min-resolution: 97dpi) { + #map { + background-image: url(map150.jpg); + } +} + #mapsvg { display: block; position: absolute; diff --git a/play.html b/play.html index e7ed795..2fd0b18 100644 --- a/play.html +++ b/play.html @@ -52,7 +52,7 @@
-
+
@@ -97,10 +97,66 @@ - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +2 +5 +2 + + + + + + diff --git a/play.js b/play.js index dfa7f6a..db11411 100644 --- a/play.js +++ b/play.js @@ -336,11 +336,6 @@ document.getElementById("map").addEventListener("mousedown", function (evt) { } }) -function for_each_side_in_path(path, fn) { - for (let i = 1; i < path.length; ++i) - fn(to_side_id(path[i-1], path[i])) -} - function on_focus_hex(evt) { let hex = evt.target.hex let text = hex_name[hex] @@ -524,7 +519,6 @@ function build_hexes() { case 4: x1 = (x-w); y1 = (y-b); x2 = (x+0); y2 = (y-a); break; // NW case 5: x1 = (x+0); y1 = (y-a); x2 = (x+w); y2 = (y-b); break; // NE } - path.push("M", x1, y1, x2, y2) let side = ui.sides[side_id] = document.createElementNS(svgNS, "line") document.getElementById("mapsvg").getElementById("sides").appendChild(side) @@ -571,7 +565,6 @@ function build_hexes() { ].join(" ") } - let path = [] for (let y = 0; y < map_h+1; ++y) { for (let x = 0; x < map_w+1; ++x) { let hex_id = y * map_w + x @@ -626,8 +619,6 @@ function build_hexes() { ui.months[month] = document.getElementById("month" + month) } - document.getElementById("mapsvg").getElementById("grid").setAttribute("d", path.join(" ")) - ui.benghazi = document.getElementById("mapsvg").getElementById("fortress_benghazi") ui.bardia = document.getElementById("mapsvg").getElementById("fortress_bardia") ui.tobruk = document.getElementById("mapsvg").getElementById("fortress_tobruk") @@ -1173,20 +1164,8 @@ function on_log(text) { return p } +build_hexes() + drag_element_with_mouse("#battle", "#battle_header") drag_element_with_mouse("#pursuit", "#pursuit_header") scroll_with_middle_mouse("main") - -fetch("map.svg") - .then(r => { - if (!r.ok) - throw new Error("Could not fetch \"map.svg\": " + r.statusText) - return r.text() - }) - .then(text => { - document.getElementById("mapsvg").outerHTML = text - build_hexes() - }) - .catch(error => { - window.alert(error.message) - }) -- cgit v1.2.3