diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-10-11 09:46:30 +0200 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-10-11 09:46:30 +0200 |
commit | 8846ab63c39339a0346c50105cb0bcf1710d8066 (patch) | |
tree | b3c99eab178ac80106e47671481d2594207c5fe6 | |
parent | bb0ec8ba1def89dddc6d9a65b175686d6e39ba08 (diff) | |
download | algeria-8846ab63c39339a0346c50105cb0bcf1710d8066.tar.gz |
place OAS
-rw-r--r-- | play.js | 29 | ||||
-rw-r--r-- | rules.js | 72 |
2 files changed, 81 insertions, 20 deletions
@@ -129,6 +129,10 @@ function is_area_country(l) { return data.areas[l].type === COUNTRY } +function is_area_oas_active(l) { + return view.oas === l +} + // === UNIT STATE === // location (8 bits), op box (2 bits), dispersed (1 bit), airmobile (1 bit), neutralized (1 bit) @@ -304,7 +308,7 @@ function create_area_markers(i, area_id) { ui.area_markers[i] = {} - for (let marker of ['remote', 'fln_control', 'gov_control', 'terror']) { + for (let marker of ['remote', 'fln_control', 'gov_control', 'terror', 'oas_active']) { let em = ui.area_markers[i][marker] = document.createElement("div") em.id = `area-marker-${i}-${marker}` em.className = `counter ${marker} s` @@ -323,6 +327,7 @@ function create_box(i, area_id, box_id) { e.style.width = 94 / SCALE + "px" e.style.height = 94 / SCALE + "px" document.getElementById("boxes").appendChild(e) + return e } function on_init() { @@ -368,7 +373,16 @@ function on_init() { create_box(i, area_id, box_id) } } else { - create_box(i, area_id, 0) + let e = create_box(i, area_id, 0) + + if (area_id === "FRANCE") { + ui.area_markers[i] = {} + let marker = 'oas_active' + let em = ui.area_markers[i][marker] = document.createElement("div") + em.id = `area-marker-${i}-${marker}` + em.className = `counter ${marker}` + e.appendChild(em) + } } } } @@ -480,10 +494,13 @@ function update_map() { let em = ui.area_markers[i] if (em) { - em.fln_control.classList.toggle("hide", !is_area_fln_control(loc)) - em.gov_control.classList.toggle("hide", !is_area_gov_control(loc)) - em.remote.classList.toggle("hide", !is_area_remote(loc)) - em.terror.classList.toggle("hide", !is_area_terrorized(loc)) + if (!is_area_country(loc)) { + em.fln_control.classList.toggle("hide", !is_area_fln_control(loc)) + em.gov_control.classList.toggle("hide", !is_area_gov_control(loc)) + em.remote.classList.toggle("hide", !is_area_remote(loc)) + em.terror.classList.toggle("hide", !is_area_terrorized(loc)) + } + em.oas_active.classList.toggle("hide", !is_area_oas_active(loc)) } } } @@ -511,8 +511,12 @@ function free_unit(u) { } function activate_oas() { - log("Gov. PSL<=30: OAS Active") - game.oas = 1 + log("Gov. PSL<=30: OAS Activated") + game.oas = DEPLOY + game.oas_control = -1 +} + +function roll_oas_control() { let roll = roll_1d6() if (roll <= 3) { game.oas_control = FLN @@ -923,6 +927,7 @@ exports.view = function(state, player) { helo_avail: game.helo_avail, helo_max: game.helo_max, naval: game.naval, + oas: game.oas, is_morocco_tunisia_independent: game.is_morocco_tunisia_independent, border_zone_active: game.border_zone_active, @@ -1532,7 +1537,8 @@ function end_random_event() { // See who controls OAS if (game.oas) { - activate_oas() + log("OAS Active") + roll_oas_control() } goto_gov_reinforcement_phase() } @@ -1541,12 +1547,12 @@ function goto_gov_reinforcement_phase() { game.phasing = GOV_NAME set_active_player() log_h2(`${game.active} Reinforcement`) - game.state = "gov_reinforcement" game.selected = [] if (!game.oas && game.gov_psl <= 30) { activate_oas() - } else if (game.oas && game.gov.psl >= 70) { + roll_oas_control() + } else if (game.oas && game.gov_psl >= 70) { remove_oas() } @@ -1561,7 +1567,38 @@ function goto_gov_reinforcement_phase() { set_unit_box(u, OPS) }) - // TODO In the Reinforcement Phase, the controlling player places the OAS marker in any urban area of Algeria or in France. + // In the Reinforcement Phase, the controlling player places the OAS marker in any urban area of Algeria or in France. + if (game.oas && game.oas_control === GOV) { + game.state = "place_oas" + } else { + game.state = "gov_reinforcement" + } +} + +states.place_oas = { + inactive: "to place OAS", + prompt() { + view.prompt = "Reinforcement: Place OAS in Urban area or France" + + for_each_map_area(loc => { + if (is_area_urban(loc)) + gen_action_loc(loc) + }) + gen_action_loc(FRANCE) + }, + loc(to) { + push_undo() + game.oas = to + log(`OAS placed in ${areas[to].name}`) + + // TODO OAS automatic missions + + if (is_gov_player()) { + game.state = "gov_reinforcement" + } else { + game.state = "fln_reinforcement" + } + } } const COST_AIR_POINT = 2 @@ -1856,7 +1893,6 @@ function goto_fln_reinforcement_phase() { game.phasing = FLN_NAME set_active_player() log_h2(`${game.active} Reinforcement`) - game.state = "fln_reinforcement" game.selected = [] // Make sure all available units can be build / converted @@ -1870,7 +1906,12 @@ function goto_fln_reinforcement_phase() { give_fln_ap() log_br() - // TODO In the Reinforcement Phase, the controlling player places the OAS marker in any urban area of Algeria or in France. + // In the Reinforcement Phase, the controlling player places the OAS marker in any urban area of Algeria or in France. + if (game.oas && game.oas_control === FLN) { + game.state = "place_oas" + } else { + game.state = "fln_reinforcement" + } } const BUILD_COST = 3 @@ -3736,12 +3777,15 @@ function final_psl_adjustment() { } } - if (is_area_algerian(game.oas)) { - log("OAS deployed in Algeria") - lower_gov_psl(1) - } else if (is_area_france(game.oas)) { - log("OAS deployed in France") - lower_gov_psl(2) + if (game.oas) { + log_br() + if (is_area_algerian(game.oas)) { + log("OAS deployed in Algeria") + lower_gov_psl(1) + } else if (is_area_france(game.oas)) { + log("OAS deployed in France") + lower_gov_psl(2) + } } // for each area currently Terrorized or ever Resettled |