browser-go-proto/js/main.js

51 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-07-26 17:17:23 +00:00
/*----- constants -----*/
2019-07-26 18:02:30 +00:00
const COLORS = {
'0': 'white',
'1': 'purple',
'-1': 'lime'
};
2019-07-26 17:17:23 +00:00
/*----- app's state (variables) -----*/
2019-07-26 18:02:30 +00:00
let board, turn, winner;
2019-07-26 17:17:23 +00:00
/*----- cached element references -----*/
/*----- event listeners -----*/
2019-07-26 20:58:18 +00:00
document.querySelector('section.markers')
.addEventListener('click', handleClick);
2019-07-26 17:17:23 +00:00
2019-07-26 18:02:30 +00:00
/*----- functions -----*/
2019-07-26 20:58:18 +00:00
init();
2019-07-26 18:02:30 +00:00
function init() {
board = [
[0, 0, 0, 0, 0, 0], // column 1 (index 0)
[0, 0, 0, 0, 0, 0], // column 2 (index 1)
[0, 0, 0, 0, 0, 0], // column 3 (index 2)
[0, 0, 0, 0, 0, 0], // column 4 (index 3)
[0, 0, 0, 0, 0, 0], // column 5 (index 4)
[0, 0, 0, 0, 0, 0], // column 6 (index 5)
[0, 0, 0, 0, 0, 0], // column 7 (index 6)
];
turn = 1;
winner = null; // 1, -1, null (no winner), 'T' (tie)
2019-07-26 20:58:18 +00:00
render();
}
function render() {
// Render the board
board.forEach(function(colArr, colIdx) {
colArr.forEach(function(cell, rowIdx) {
let div = document.getElementById(`c${colIdx}r${rowIdx}`);
div.style.backgroundColor = COLORS[cell];
});
});
}
function handleClick(evt) {
let idx = parseInt(evt.target.id.replace('col', ''));
if (isNaN(idx) || winner) return;
2019-07-26 18:02:30 +00:00
}