-
Notifications
You must be signed in to change notification settings - Fork 0
/
jogoGalo_AI.js
40 lines (28 loc) · 1.02 KB
/
jogoGalo_AI.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
function humanoFalse ()
{
nomeJogador2.innerHTML = "Quantic AI"
//array dos i livres
for(i=0; i<arrayJogo.length;i++)
{
if (arrayJogo[i] === "") arrayIfree.push(i)
}
index = Math.round(Math.random() * 8)
while (!arrayIfree.includes(index)) {index = Math.round(Math.random() * 8)}
arrayIfree.slice(arrayIfree.indexOf(index),1)
arrayJogo[index] = letraOn; //guardar no array do jogo
fraseJogadorOn.innerHTML = "É a minha vez!"
setTimeout(() => {
fraseJogadorOn.innerHTML = "Hum...estou a pensar..."
}, 1000);
let cell = document.getElementById(`${index}`)
setTimeout(() => {
cell.innerHTML = o;
validar()
if(continua)
{
jogadorOn = jogador1.value
fraseJogadorOn.innerHTML = jogadorOn + ", é a tua vez de jogar!"
}
arrayIfree.length = 0
}, 3000);
}