-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ahorcado.js
67 lines (48 loc) · 1.49 KB
/
Ahorcado.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
var letrasCorrectas=0
//////////////////////////////////////////////
dibujarHorca()
dibujarLineas()
document.onkeydown = (e) => {
let letra=e.key.toUpperCase()
if(!verificarLetraPulsada(e.key)){
if(palabraElegida.includes(letra)){
adicionarLetraCorrecta(palabraElegida.indexOf(letra))
for( let i=0; i<palabraElegida.length; i++){
if(palabraElegida[i]===letra){
escribirLetraCorrecta(i)
letrasCorrectas++
}
}
if(letrasCorrectas==palabraElegida.length){
dibujarGanaste();
stop(document.onkeydown = (e));
}
}else{
adicionarLetraIncorrecta(letra);
EscribirLetraIncorrecta(letra,errores);
if(errores==6){
dibujarCabeza();
}
if(errores==5){
dibujarCuerpo();
}
if(errores==4){
dibujarBrazoDer();
}
if(errores==3){
dibujarBrazoIzq();
}
if(errores==2){
dibujarPieDer();
}
if(errores==1){
dibujarPieIzq();
}
if(errores==0){
dibujarCorteCuelloYOjos();
dibujarPerdiste()
stop(document.onkeydown = (e));
}
}
}
};