-
Notifications
You must be signed in to change notification settings - Fork 0
/
funny.js
333 lines (226 loc) · 7.85 KB
/
funny.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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
let palabrita;
let cant_errores = 0; //cuantas veces me equivoqué
let cant_aciertos = 0; //cuantas letras acerté
let btn1 = id('agregarPalabra');
let texto = id('texto');
let btnAgregar = id('agregarPalabraPrincip');
let bodi = id('bodi');
let audioBack = id('audioBack');
let click = id('click');
let sumador = 0;
let cancelBot = id('cancelar');
let btnMiedo = id('btnMiedo');
let btnFruta = id('btnFruta');
let btnMispalabra = id('btnMispalabra');
let caja_boton = id('caja_boton');
let miedo = [
'CHILE', /* 0 */
'PERU', /* 1 */
'ECUADOR', /* 2 */
'SUIZA', /* 3 */
'BOLIVIA', /* 4 */
'BRASIL', /* 5 */
'URUGUAY', /* 6 */
'COLOMBIA', /* 7 */
'MEXICO', /* 8 */
'CANADA', /* 9 */
];
let fruta = [
'BANANA',
'MANZANA',
'UVA',
'NARANJA',
'FRUTILLA',
];
let mispalabra = []
function miedos() {
iniciar(miedo);
bodi.style.background = "url(./img/fondofunny.jpg) no-repeat center";
bodi.style.backgroundSize = "cover";
btnAgregar.style.display = "none";
btnMiedo.style.display = "none"
btnFruta.style.display = "none"
btnMispalabra.style.display = "none"
btn1.style.display = "none";
texto.style.display = "none";
cancelBot.style.display = "inline";
caja_boton.style.display ="none";
}
function frutas() {
iniciar(fruta);
btnAgregar.style.display = "none";
bodi.style.background = "url(./img/fondofunny.jpg) no-repeat center";
bodi.style.backgroundSize = "cover";
btnMiedo.style.display = "none"
btnFruta.style.display = "none"
btnMispalabra.style.display = "none"
btn1.style.display = "none";
texto.style.display = "none";
cancelBot.style.display = "inline";
caja_boton.style.display ="none";
}
function mispalabras() {
iniciar(mispalabra);
btnAgregar.style.display = "none";
bodi.style.background = "url(./img/fondofunny.jpg) no-repeat center";
bodi.style.backgroundSize = "cover";
btnMiedo.style.display = "none"
btnFruta.style.display = "none"
btnMispalabra.style.display = "none"
btn1.style.display = "none";
texto.style.display = "none";
cancelBot.style.display = "inline";
caja_boton.style.display ="none";
}
//prueba de remover clases
const resetClassBtn = () => {
const btn_letras = document.querySelectorAll("#letras button");
for (let i = 0; i < btn_letras.length; i++) {
btn_letras[i].classList.remove('btnUsed');
btn_letras[i].classList.remove('btnUsedHit');
}
}
// fx para que cuando se haga click reproduzca musica de fondo
function audio() {
audioBack.play();
}
document.addEventListener('click', audio);
//fx para que cuando se haga click en el teclado haga el beep
function clickear() {
click.play();
}
//esta funcion se usa para cencelar y volver a jugar con palabras nuevas
function cancel() {
location.reload();
}
//esta funcion es para visualizar el texto a agregar y el boton btn1
function agregarPalabraPrincip() {
btn1.style.display = "inline";
texto.style.display = "inline";
btnAgregar.style.display = "none";
btnMiedo.style.display = "none"
btnFruta.style.display = "none"
btnMispalabra.style.display = "none"
caja_boton.style.display ="none";
}
// funcion para agregar palabras
function agregarPalabra() {
let dato = document.getElementById('texto').value.toUpperCase();
if (/^[A-Z]{3,8}$/g.test(dato)) {
texto.value = "";
mispalabra.push(dato);
swal("Perfecto", "tu palabra se agrego correctamente! ", "success");
btnMiedo.style.display = "inline"
btnFruta.style.display = "inline"
btnMispalabra.style.display = "inline"
texto.style.display = "none";
btn1.style.display = "none";
caja_boton.style.display ="inline";
} else {
texto.value = "";
swal("ERROR", "Ingrese un min. de 3 letras y un max. 8 letras", "success");
}
}
const imagen = id('imagen');
const btn_letras = document.querySelectorAll("#letras button");
const cartel = id('cartel');
/* click en iniciar juego */
function iniciar(opcion) {
cartel.src = 'img/cartel0.png';
imagen.src = 'img/im0.png';
cant_errores = 0;
cant_aciertos = 0;
const parrafo = id('palabra_a_adivinar');
parrafo.innerHTML = '';
const cant_palabras = opcion.length;
const valor_al_azar = obtener_random(0, cant_palabras);
palabrita = opcion[valor_al_azar];
console.log(palabrita);
const cant_letras = palabrita.length;
for (let i = 0; i < btn_letras.length; i++) {
btn_letras[i].disabled = false;
btn_letras[i].style.visibility = "visible";
}
for (let i = 0; i < cant_letras; i++) {
const span = document.createElement('span');
parrafo.appendChild(span);
}
}
/* click de adivinar letra */
for (let i = 0; i < btn_letras.length; i++) {
btn_letras[i].addEventListener('click', click_letras);
}
//click del sonido
for (let i = 0; i < btn_letras.length; i++) {
btn_letras[i].addEventListener('click', clickear);
}
function click_letras(event) {
const spans = document.querySelectorAll('#palabra_a_adivinar span');
const button = event.target; //cuál de todas las letras, llamó a la función.
button.disabled = true;
const letra = button.innerHTML.toUpperCase();
const palabra = palabrita.toUpperCase(); // .toUpperCase( ) .toLowerCase()
let acerto = false;
for (let i = 0; i < palabra.length; i++) {
if (letra == palabra[i]) {
//la variable i es la posición de la letra en la palabra.
//que coincide con el span al que tenemos que mostarle esta letra...
spans[i].innerHTML = letra;
cant_aciertos++;
acerto = true;
button.classList.add('btnUsedHit');
sumador += 10;
id('score').innerHTML = "PUNTAJE: " + sumador;
}
}
if (acerto == false) {
cant_errores++;
const source = `img/im${cant_errores}.png`;
imagen.src = source;
const buscar = `img/cartel${cant_errores}.png`;
cartel.src = buscar;
button.classList.add('btnUsed');
}
if (cant_errores == 7) {
swal({
title: "Perdiste, la palabra era " + palabrita,
text: "Desea volver al menú principal",
icon: "warning",
buttons: true,
dangerMode: true,
})
.then((willDelete) => {
if (willDelete) {
swal("Volver a la pag principal", {
icon: "success",
});
location.reload();
} else {
swal("Seguir jugando");
}
});
sumador = 0;
id('score').innerHTML = "PUNTAJE: " + sumador;
game_over();
} else if (cant_aciertos == palabrita.length) {
swal("Ganaste!", "continua sumando puntos! ", "success");
game_over();
}
console.log("la letra " + letra + " en la palabra " + palabra + " ¿existe?: " + acerto);
}
/* fin del juego */
function game_over() {
for (let i = 0; i < btn_letras.length; i++) {
btn_letras[i].style.visibility = "hidden";
}
btn1.style.display = "none";
texto.style.display = "none";
btnAgregar.style.display = "inline";
cancelBot.style.display = "none";
btnMiedo.style.display = "inline"
btnFruta.style.display = "inline"
btnMispalabra.style.display = "none"
caja_boton.style.display ="inline";
resetClassBtn();
}
game_over();