diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-07-02 13:55:02 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:12:55 +0100 |
commit | 4985d79dc1ece7eb4c87f1feb659f5e5f2ca5b72 (patch) | |
tree | 4d0a09a7f3d8e0dca8f62e44db06c8292558fd9f | |
parent | 7293b76b928687233bac13f45c5a56382de23dc9 (diff) | |
download | richard-iii-4985d79dc1ece7eb4c87f1feb659f5e5f2ca5b72.tar.gz |
Improve logging of block retreats.
Print which block retreats during the round.
Print summary of retreat destinations at the end of the round.
-rw-r--r-- | rules.js | 15 |
1 files changed, 12 insertions, 3 deletions
@@ -1973,6 +1973,8 @@ function resume_battle() { } function end_battle() { + if (game.turn_log && game.turn_log.length > 0) + print_turn_log("Retreats from " + game.where + ":"); free_henry_vi(); game.flash = ""; game.battle_round = 0; @@ -2033,6 +2035,10 @@ function bring_on_reserves(owner, moved) { function start_battle_round() { if (++game.battle_round <= 4) { + if (game.turn_log && game.turn_log.length > 0) + print_turn_log("Retreats from " + game.where + ":"); + game.turn_log = []; + log("~ Battle Round " + game.battle_round + " ~"); reset_border_limits(); @@ -2534,8 +2540,9 @@ states.retreat_in_battle = { game.location[game.who] = to; game.state = 'sea_retreat_to'; } else { - game.flash = block_name(game.who) + " retreats to " + to + "."; - logp("retreats to " + to + "."); + game.flash = block_name(game.who) + " retreats."; + log_battle(game.flash); + game.turn_log.push([game.active, to]); use_border(game.where, to); game.location[game.who] = to; resume_battle(); @@ -2567,8 +2574,10 @@ states.sea_retreat_to = { gen_action(view, 'area', to); }, area: function (to) { + let sea = game.location[game.who]; + game.turn_log.push([game.active, sea, to]); game.flash = block_name(game.who) + " retreats by sea."; - logp("sea retreats to " + to + "."); + log_battle(game.flash); game.location[game.who] = to; resume_battle(); }, |