3enraya.html 5.18 KB
Newer Older
nicodev77 committed
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
<!DOCTYPE html>
<html>
<head>
	
	<title>  Ta-Te-Ti  </title>
	<style type ="text/css">
		section#principal{
			display :run-in;
			margin : 1 auto;
			text-align: center;
			width: 100%;
		}
		article#comandos{
			border: 10px solid red;
			display:  run-in ;
			min-height: 300px;
			vertical-align: top;
			width: 25%;
		}
		article#tablero{
			border : 10px solid blue;
			display :block-inline;
			margin: 0 auto;
			text-align: center;
			width: 50%;
		}
		article#tablero input {

			font-size:3em;
			height: 80px;
			margin: 10px;
			width: 80px;

		}
		input[type="button"]#iniciar{
			font-size:0.8em;
			margin-top: 2em;
			padding: 0.7em;
		}
		input[type="text"]{
			font-size: 1em;
			margin: 0.2em;
			padding: 0.1em;

		}
		label{
			font-size:1em;
			font-weight: bold;
			text-align: center;
		}
		.botonInicial{
			color:#77d;
			background-color: #77d;
		}
		.botonJugador1{
			color: red;
			background-color: #0000FF;
		}

		.botonJugador2{
			color: blue;
			background-color: #FF0000;
		}
	</style>
	<script type ="text/javascript">
		let flag = false; //indica si el juego inicia
		let turno=0; //turno del juegador entre 1 y 2
		let tab = new Array();  //arreglo de los botones
		window.onload = function(){
			let iniciar = document.getElementById("iniciar");
			iniciar.addEventListener("click",comenzar);

		}
		function comenzar(){
			flag = true;
			let jugador1 = document.getElementById("jugador1");
			let jugador2 = document.getElementById("jugador2");
			if(jugador1.value==""){
				alert("Falta el nombre del Jugador 1");
				jugador1.focus();
			}else{
				if(jugador2.value==""){
				alert("Falta el nombre del Jugador 2");
				jugador2.focus();	
				}else{
					tab[0] = document.getElementById("b0");
					tab[1] = document.getElementById("b1");
					tab[2] = document.getElementById("b2");
					tab[3] = document.getElementById("b3");
					tab[4] = document.getElementById("b4");
					tab[5] = document.getElementById("b5");
					tab[6] = document.getElementById("b6");
					tab[7] = document.getElementById("b7");
					tab[8] = document.getElementById("b8");
					for(let i = 0; i<9;i++){
						tab[i].className = "botonInicial";
						tab[i].value = "I";
					}
					turno = 1;
					document.getElementById("turnoJugador").innerHTML = 
					"Adelante Jugador " + jugador1.value;
				}
			}
		}
		function colocar(boton){
			if(flag==true){
				if(turno==1 && boton.value=="I"){
					turno = 2;
					document.getElementById("turnoJugador").innerHTML =
					"Adelante Jugador " + jugador2.value;
					boton.value = "X";
					boton.className = "botonJugador1";
				}else{
					if(turno==2 && boton.value == "I"){
						turno = 1;
					document.getElementById("turnoJugador").innerHTML =
					"Adelante Jugador " + jugador1.value;
					boton.value = "O";
					boton.className = "botonJugador2";
					}
				}
			}
			validar();
		}
		function validar(){ //validacion para saber cual jugador gano
			if((tab[0].value =="X" && tab[1].value=="X" && tab[2].value=="X")
				//horizontales
				||(tab[3].value =="X" && tab[4].value=="X" && tab[5].value=="X")
				||(tab[6].value =="X" && tab[7].value=="X" && tab[8].value=="X")
				//verticales
				||(tab[0].value =="X" && tab[3].value=="X" && tab[6].value=="X")
				||(tab[1].value =="X" && tab[4].value=="X" && tab[7].value=="X")
				||(tab[2].value =="X" && tab[5].value=="X" && tab[8].value=="X")
				||(tab[0].value =="X" && tab[4].value=="X" && tab[8].value=="X")
				||(tab[2].value =="X" && tab[4].value=="X" && tab[6].value=="X")
				){
				alert("Felicidades ganaste Jugador "+ jugador1.value);
				flag=false;
			}
			if((tab[0].value =="O" && tab[1].value=="O" && tab[2].value=="O")
					//horizontales	
					||(tab[3].value =="O" && tab[4].value=="O" && tab[5].value=="O")
					||(tab[6].value =="O" && tab[7].value=="O" && tab[8].value=="O")
					//verticales
					||(tab[0].value =="O" && tab[3].value=="O" && tab[6].value=="O")
					||(tab[1].value =="O" && tab[4].value=="O" && tab[7].value=="O")
					||(tab[2].value =="O" && tab[5].value=="O" && tab[8].value=="O")
					//diagonales
					||(tab[0].value =="O" && tab[4].value=="O" && tab[8].value=="O")
					||(tab[2].value =="O" && tab[4].value=="O" && tab[6].value=="O")
			){
		alert("Felicidades ganaste Jugador "+ jugador2.value);
		flag=false;	
		}
	}
	</script>
</head>
<body>

	<section id = "principal">
		Bienvenidos al Tateti de Eduardo Nicolas Chamorro del Bootcamp VII de ROSHKA
		<article id = "comandos">
			


			Jugador 1:
			<input type = "text" id="jugador1"><br>
			Jugador 2:
			<input type = "text" id="jugador2"><br>
			<input type ="button" id="iniciar" value ="comenzar"><br>
			<label id="turnoJugador"></label>
		</article>
		<article id = "tablero">
			<input type ="button" id="b0" onclick="colocar(this)">
			<input type ="button" id="b1" onclick="colocar(this)">
			<input type ="button" id="b2" onclick="colocar(this)"><br>


			<input type ="button" id="b3" onclick="colocar(this)">
			<input type ="button" id="b4" onclick="colocar(this)">
			<input type ="button" id="b5" onclick="colocar(this)"><br>



			<input type ="button" id="b6" onclick="colocar(this)">
			<input type ="button" id="b7" onclick="colocar(this)">
			<input type ="button" id="b8" onclick="colocar(this)"><br>
		</article>

</body>
</html>