summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-10-04 12:32:21 +0200
committerTor Andersson <tor@ccxvii.net>2023-02-18 12:42:59 +0100
commitaeed1073cf5ecf19dc064b6d6169b20b3c292d62 (patch)
tree9601720049c0ce5426c25f657dc4db1cba72d550
parentcfdba0c522f460df3d97580ec2900fef80af9f77 (diff)
download300-earth-and-water-aeed1073cf5ecf19dc064b6d6169b20b3c292d62.tar.gz
300: Add tooltips to card numbers in game log.
-rw-r--r--play.html6
-rw-r--r--rules.js2
-rw-r--r--ui.js19
3 files changed, 26 insertions, 1 deletions
diff --git a/play.html b/play.html
index 8180fd1..7b70ca2 100644
--- a/play.html
+++ b/play.html
@@ -77,6 +77,12 @@
border-radius: 10px;
}
+.log span.tip {
+ cursor: help;
+ text-decoration: underline;
+ color: blue;
+}
+
#tooltip.card {
position: fixed;
z-index: 200;
diff --git a/rules.js b/rules.js
index 14f3e63..ddcca14 100644
--- a/rules.js
+++ b/rules.js
@@ -2167,7 +2167,7 @@ function can_play_ostracism() {
function play_ostracism() {
let card = draw_card(game.greek.hand);
game.discard.push(card);
- log("Card " + card + " is discarded.");
+ log("Persia discards Greek card " + card + ".");
end_persian_operation();
}
diff --git a/ui.js b/ui.js
index d37adf6..a667fae 100644
--- a/ui.js
+++ b/ui.js
@@ -59,12 +59,31 @@ let ui = {
selected_fleets: null,
};
+create_log_entry = function (text) {
+ let p = document.createElement("div");
+ text = text.replace(/&/g, "&amp;");
+ text = text.replace(/</g, "&lt;");
+ text = text.replace(/>/g, "&gt;");
+ text = text.replace(/card (\d+)/g,
+ '<span class="tip" onmouseenter="on_focus_card_tip($1)" onmouseleave="on_blur_card_tip()">card $1</span>');
+ p.innerHTML = text;
+ return p;
+}
+
function remove_from_array(array, item) {
let i = array.indexOf(item);
if (i >= 0)
array.splice(i, 1);
}
+function on_focus_card_tip(card_number) {
+ document.getElementById("tooltip").className = "card show card_" + card_number;
+}
+
+function on_blur_card_tip() {
+ document.getElementById("tooltip").classList = "card";
+}
+
function on_focus_discard(evt) {
if (game.discard)
document.getElementById("tooltip").className = "card show card_" + game.discard;