-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforca.js
223 lines (194 loc) · 4.92 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
// globais
let c = document.getElementById("canvas-id");
let ctx = c.getContext("2d");
let letrasDigitadas = "";
let palavras = ["ALURA", "ORACLE", "HTML", "JAVASCRIPT", "CSS"];
let inputs = ["input0", "input1", "input2", "input3", "input4", "input5", "input6", "input7"];
let palavraSecreta = "";
let palavra = "";
let erros = 0;
let count = 0;
function escolherPalavraSecreta() {
palavras.push(sessionStorage.getItem("1"));
palavraSecreta = palavras[Math.floor(Math.random()*palavras.length)];
if(palavraSecreta.length < 8) {
inserirElemento(palavraSecreta.length);
return palavraSecreta;
} else {
desenhaMensagem("Palavras sorteadas devem conter ate 8 caracteres", 10, 20);
}
}
function inserirElemento(index) {
if(palavraSecreta.length < 8) {
const target = document.querySelector('.main-form');
for(let i = 1 ; i < index ; i++) {
const div = document.createElement('div');
div.className = 'main-linha';
div.id = 'm-linha' + i;
div.tabIndex = '1';
target.appendChild(div);
const targetDiv = document.querySelector('#m-linha' + i);
const input = document.createElement('input');
input.type = "text";
input.id = "input" + i;
input.className = "input-linha";
input.autofocus = "false";
input.maxLength = "1";
input.size = "1";
input.disabled = "true";
const img = document.createElement('img');
img.src = 'linha.png';
img.className = 'linha';
img.id = 'line' + i;
img.alt = 'Linha' + i;
targetDiv.appendChild(input);
targetDiv.appendChild(img);
}
}
}
function inserirLetra(key) {
let t = String.fromCharCode(key).toUpperCase();
if(erros < 8) {
if(t >= "A" && t <= "Z") {
if(!verificarLetraRepetida(t)) {
console.log(t + " " + letrasDigitadas);
compararLetras(t);
}
}
}
}
function verificarLetraRepetida(str) {
let boo = false;
if(letrasDigitadas.includes(str)) {
boo = true;
} else {
letrasDigitadas += str;
document.getElementById("char").value = letrasDigitadas;
}
console.log(boo + " str: " + str + " digitadas: " + letrasDigitadas);
return boo;
}
function compararLetras(caractere) {
if(palavraSecreta.includes(caractere)) {
inserirLetraValida(caractere);
} else {
inserirLetraInvalida(caractere);
}
}
function inserirLetraValida(letra) {
if(erros < 8) {
for(let i=0; i<palavraSecreta.length; i++) {
if(palavraSecreta[i] === letra) {
document.getElementById(`${inputs[i]}`).value = letra;
}
}
if(verificarVitoria()) {
finaliza();
}
}
}
function verificarVitoria() {
let boo = true;
for(let i=0; i<palavraSecreta.length; i++) {
if(!(palavraSecreta[i] === document.getElementById(`${inputs[i]}`).value)) {
boo = false;
}
}
if(boo) {
desenhaMensagem("Você Venceu. Parabéns!", 170, 10);
}
return boo;
}
function inserirLetraInvalida() {
erros++;
desenhaForca(erros);
verificarDerrota();
}
function verificarDerrota() {
if(erros > 7) {
desenhaMensagem("Fim de Jogo", 220, 10);
}
}
function desenhaMensagem(msg, x, y) {
ctx.font='10px Inter';
ctx.fillStyle='green';
ctx.fillText(msg, x, y);
ctx.stroke();
}
function buttonStartGame() {
location.href = "forca.html";
}
function buttonInsertWord() {
location.href = "index.html"
}
function desenhaForca(err) {
//base
ctx.moveTo(20,140);
ctx.lineTo(275,140);
switch (err) {
case 1:
ctx.moveTo(120, 140);
ctx.lineTo(120, 20);
break;
case 2:
//suporte
ctx.moveTo(120, 20);
ctx.lineTo(200, 20);
ctx.moveTo(200, 20);
ctx.lineTo(200, 30);
break;
case 3:
//cabeca
ctx.moveTo(200, 30);
ctx.arc(200, 40, 10, 0, 2 * Math.PI);
break;
case 4:
//corpo
ctx.moveTo(200, 50);
ctx.lineTo(200, 90);
break;
case 5:
//braco esquerdo
ctx.moveTo(200, 60);
ctx.lineTo(180, 80);
break;
case 6:
//braco direito
ctx.moveTo(200, 60);
ctx.lineTo(220, 80);
break;
case 7:
//perna esquerdo
ctx.moveTo(200, 90);
ctx.lineTo(180, 130);
break;
case 8:
//perna direito
ctx.moveTo(200, 90);
ctx.lineTo(220, 130);
break;
}
ctx.stroke();
}
function finaliza() {
console.log("FIM");
}
let evento1 = document.querySelector(".main-buttons-first");
evento1.addEventListener('click', function() {
buttonStartGame();
});
let evento2 = document.querySelector('.main-buttons-second');
evento2.addEventListener('click', function() {
buttonInsertWord();
});
let input0 = document.querySelector('.input-linha');
input0.addEventListener('keydown', function(evt) {
evt.preventDefault();
if(palavraSecreta.length < 8) {
evt = evt || window.event;
var key = evt.keyCode || evt.which;
inserirLetra(key);
}
});
desenhaForca(0);
escolherPalavraSecreta();