class FormationControlPanel { constructor(id) { this._panel = document.getElementById(id); this._formations = ["", "Echelon", "Line abreast", "Box", "Trail", "Finger tip", "Tactical line abreast", "Fluid four", "Spread four"]; } update(selectedUnits) { if (selectedUnits.length == 1) { // Don't update if user is editing if (selectedUnits[0].leader && !this._editing) { this._panel.style.bottom = "15px"; this._showFormationControls(selectedUnits[0]); } } else { this._panel.style.bottom = (-this._panel.offsetHeight - 2) + "px"; this._showFormationControls(); // Empty, cleans the panel } } _showFormationControls(selectedUnit) { if (selectedUnit !== undefined) { this._panel.innerHTML = `
| FORMATION CONTROL | |||
| Formation: | ${selectedUnit.formationID} | ||
| Formation type: | |||