index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/modules/map_select_dialog.js')
-rw-r--r-- | src/modules/map_select_dialog.js | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/src/modules/map_select_dialog.js b/src/modules/map_select_dialog.js index bbc2374..24215f6 100644 --- a/src/modules/map_select_dialog.js +++ b/src/modules/map_select_dialog.js @@ -1,6 +1,4 @@ -import sideShow from './assets/images/scenario-side_show.svg'; -import dragonHunting from './assets/images/scenario-dragon_hunting.svg'; -// import raceAgainstTime from './assets/images/scenario-race_against_time.svg'; +import { scenarios } from './scenarios.js'; export function init() { const showButton = document.getElementById('show-dialog'), @@ -8,15 +6,12 @@ export function init() { selectEl = mapDialog.querySelector('select'), confirmBtn = mapDialog.querySelector('#confirm-btn'); - let option = document.createElement('option'); - option.setAttribute('value', sideShow); - option.textContent = 'BattleTroops Scenario 1: Side Show'; - selectEl.appendChild(option); - - option = document.createElement('option'); - option.setAttribute('value', dragonHunting); - option.textContent = 'BattleTroops Scenario 2: Dragon Hunting'; - selectEl.appendChild(option); + Object.keys(scenarios).forEach(scenario => { + const option = document.createElement('option'); + option.setAttribute('value', scenario); + option.textContent = scenarios[scenario]; + selectEl.appendChild(option); + }); return { selectCurrentOptionOnPageLoad() { @@ -56,4 +51,4 @@ export function init() { }; } -export const defaultMap = sideShow; +export const defaultMap = scenarios.sideShow; |