From 47bad1e560b1b39d5d7c9768284e0d3fda8e0995 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 16 Feb 2022 13:37:02 +0100 Subject: WIP DEBUG SUPPLY LINES --- rules.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/rules.js b/rules.js index 31eb917..3d141b1 100644 --- a/rules.js +++ b/rules.js @@ -1923,6 +1923,25 @@ function search_supply_spaces() { } } +function goto_debug_supply(role) { + if (game.state === 'debug_supply') { + pop_undo(); + } else { + push_undo(); + set_active(role); + game.state = 'debug_supply'; + } +} + +states.debug_supply = { + prompt() { + search_supply_spaces(); + view.prompt = "Showing supply lines."; + supply_cache.forEach(gen_action_space); + }, + space: pop_undo +} + function is_in_supply(space) { if (!supply_cache) search_supply_spaces(); @@ -8087,6 +8106,8 @@ exports.action = function (state, current, action, arg) { } else { if (action === 'undo' && game.undo && game.undo.length > 0) pop_undo(); + else if (action === 'supply') + goto_debug_supply(current); else throw new Error("Invalid action: " + action); } -- cgit v1.2.3