-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforca.js
108 lines (95 loc) · 1.88 KB
/
forca.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
var p=0;
var count=0;
var word=''
var letraUser=''
var userPerdeu=false
var botaoIniciar = document.querySelector("#iniciar-jogo");
botaoIniciar.addEventListener('click',function(_event){
word=buscaPalavra();
console.log(word);
letras=split(word);
espacos=letras.length;
addNumeroLinhas(espacos);
var tecla=document.getElementById('keyboard');
tecla.onclick=teclaEnter;
document.addEventListener('keydown', (event) => {
var name = event.key;
letraUser=name.toUpperCase();
if(verifica(letraUser)){
verificaLetra(letraUser);
}
}, false);
});
function split(word){
var word=word.split('');
return word;
};
function teclaEnter(event) {
letraUser=event.target.id;
if(verifica(letraUser)){
verificaLetra(letraUser);
};
}
function verificaLetra(letra){
var index=[];
n=0;
for(var i=0; i<espacos;i++){
if(letra==letras[i]){
index[n]=i;
n=n+1;
count=count+1;
}
}
if(n==0){
desenhaMan(p);
addLetraErrada(letra);
p=p+1;
}
else{
addLetrasPosicao(letra, index);
addLetraCerta(letra);
}
if(p==6){
perdeu(word);
userPerdeu=true;
}
if(count==letras.length){
venceu();
userPerdeu=true;
}
};
function addLetraErrada(letra){
a=document.querySelector('#'+letra);
a.setAttribute('data-state', 'absent');
}
function addLetraCerta(letra){
a=document.querySelector('#'+letra);
a.setAttribute('data-state', 'valid');
}
function validaLetra(letra){
var letters = /^[A-Za-z]+$/;
if(letra.match(letters)){
return true;
}
else{
return false;
}
}
function repeticao(letra){
a=document.querySelector('#'+letra);
b=a.getAttribute('data-state');
if(b=='valid' || b=='absent'){
return false;
}
else{
return true;
}
}
function verifica(_letra){
if(validaLetra(letraUser)&& repeticao(letraUser)&&!userPerdeu){
return true;
}
else{
return false;
}
}