-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
98 lines (82 loc) · 2.89 KB
/
app.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
let numeroSecreto = 0;
let intentos = 0;
let listaNumerosSorteados = [];
let numeroMaximo = 10;
// Capturar evento de desplazamiento y evitar el desplazamiento horizontal
document.addEventListener('DOMContentLoaded', function () {
if (window.matchMedia("(max-width: 767px)").matches) {
document.body.classList.add('mobile-no-scroll');
}
var xStart, yStart;
document.addEventListener('touchstart', function (e) {
xStart = e.touches[0].clientX;
yStart = e.touches[0].clientY;
});
document.addEventListener('touchmove', function (e) {
var xMovement = Math.abs(e.touches[0].clientX - xStart);
var yMovement = Math.abs(e.touches[0].clientY - yStart);
if (xMovement > yMovement) {
e.preventDefault();
}
});
});
function asignarTextoElemento(elemento, texto) {
let elementoHTML = document.querySelector(elemento);
elementoHTML.innerHTML = texto;
return;
}
function verificarIntento() {
let numeroDeUsuario = parseInt(document.getElementById('valorUsuario').value);
if(numeroDeUsuario === numeroSecreto) {
asignarTextoElemento('p',`Acertaste el número en ${intentos} ${(intentos === 1) ? 'vez':'veces'}`);
document.getElementById('reiniciar').removeAttribute('disabled');
} else {
//El usuario no acertó
if(numeroDeUsuario > numeroSecreto) {
asignarTextoElemento('p','El numero secreto es menor');
} else {
asignarTextoElemento('p','El numero secreto es mayor');
}
intentos++;
limpiarCaja();
}
return;
}
function limpiarCaja() {
document.querySelector('#valorUsuario').value = '';
}
function generarNumeroSecreto() {
let numeroGenerado = Math.floor(Math.random()*numeroMaximo)+1;
console.log(numeroGenerado);
console.log(listaNumerosSorteados);
//Si ya sorteamos todos los numeros
if(listaNumerosSorteados.length == numeroMaximo) {
asignarTextoElemento('p','Ya se sortearon todos los números posibles');
} else {
//Si el número generado esta en la lista
if (listaNumerosSorteados.includes(numeroGenerado)) {
return generarNumeroSecreto();
} else {
listaNumerosSorteados.push(numeroGenerado);
return numeroGenerado;
}
}
}
function condicionesIniciales() {
asignarTextoElemento('h1','Juego del número secreto!');
asignarTextoElemento('p',`Indica un numero del 1 al ${numeroMaximo}`);
numeroSecreto = generarNumeroSecreto();
intentos = 1;
}
function reiniciarJuego() {
//limpiar caja
limpiarCaja();
//Indicar mensaje de intervalo de numeros
//Generar el numero aleatoreo
//Inicializar el numero intentos
condicionesIniciales();
//Deshabilitar el boton de nuevo juego
document.querySelector('#reiniciar').setAttribute('disabled','true');
}
condicionesIniciales();
//Warp!