From dfee21deb86c156c1a45e90bec83d4e3f87dcdfb Mon Sep 17 00:00:00 2001 From: roshka Date: Tue, 23 Oct 2018 15:55:48 -0300 Subject: [PATCH] Tateti en js --- #README.md# | 1 + README.md | 0 TatetiJS/tateti.html | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ TatetiJS/tateti.js | 157 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 209 insertions(+) create mode 100644 #README.md# create mode 100644 README.md create mode 100644 TatetiJS/tateti.html create mode 100644 TatetiJS/tateti.js diff --git a/#README.md# b/#README.md# new file mode 100644 index 0000000..afecb3a --- /dev/null +++ b/#README.md# @@ -0,0 +1 @@ +Para jugar es obligatorio ingresar nombres para los jugadores, asi se evita problemas. despues de eso se puede jugar sin problema. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/README.md diff --git a/TatetiJS/tateti.html b/TatetiJS/tateti.html new file mode 100644 index 0000000..757ba4c --- /dev/null +++ b/TatetiJS/tateti.html @@ -0,0 +1,51 @@ + + + + + + + +
+

TaTeTi

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Jugador 1Jugador 2
+ +
+
+ + + + \ No newline at end of file diff --git a/TatetiJS/tateti.js b/TatetiJS/tateti.js new file mode 100644 index 0000000..42f35d0 --- /dev/null +++ b/TatetiJS/tateti.js @@ -0,0 +1,157 @@ + var img='http://images.coveralia.com/audio/d/Def_Leppard-X-Frontal.jpg' ; + var turno=1; + var arreglo = new Array(); + var jug1=0; + var jug2=0; + var jugada = 0; + + for(i=0; i<=8; i++){ + + arreglo[i]=-1; + + } + +function cargarJugadores(){ + do { + jug1=prompt("ingrese el jugador1"); + } while (jug1==""); + do { + jug2=prompt('ingrese el jugador2'); + } while (jug2==""); + + document.getElementById("jugador1").innerHTML=jug1; + document.getElementById("jugador2").innerHTML=jug2; +} + + function box(pos){ + + if(arreglo[pos]==-1){ + + if(turno==1){ + if(img=='http://images.coveralia.com/audio/d/Def_Leppard-X-Frontal.jpg'){ + imagen=document.createElement("img"); + imagen.src=img; + imagen.width=100; + document.getElementById('c'+pos).appendChild(imagen); + arreglo[pos]=1; + turno=2; + img='https://steemitimages.com/0x0/https://s5.postimg.cc/5z0fqjfnr/redonda_1.jpg'; + jugada++; + } + + }else if(turno==2){ + if(img=='https://steemitimages.com/0x0/https://s5.postimg.cc/5z0fqjfnr/redonda_1.jpg'){ + imagen=document.createElement("img"); + imagen.src=img; + imagen.width=100; + document.getElementById('c'+pos).appendChild(imagen); + arreglo[pos]=0; + turno=1; + img='http://images.coveralia.com/audio/d/Def_Leppard-X-Frontal.jpg' ; + jugada++; + } + + } + + }else{ alert('Posicion ocupada!'); } + + if(arreglo[0]==1 && arreglo[1]==1 && arreglo[2]==1){ + alert('gano X'); + jug1=jug1+1; + + } + + if(arreglo[0]==0 && arreglo[1]==0 && arreglo[2]==0){ + alert('gano O'); + jug2=jug2+1; + + } + + if(arreglo[3]==1 && arreglo[4]==1 && arreglo[5]==1){ + alert('gano X'); + jug1=jug1+1; + + } + + if(arreglo[3]==0 && arreglo[4]==0 && arreglo[5]==0){ + alert('gano O'); + jug2=jug2+1; + + } + + if(arreglo[6]==1 && arreglo[7]==1 && arreglo[8]==1){ + alert('gano X'); + jug1=jug1+1; + + } + + if(arreglo[6]==0 && arreglo[7]==0 && arreglo[8]==0){ + alert('gano O'); + jug2=jug2+1; + + } + + if(arreglo[0]==1 && arreglo[3]==1 && arreglo[6]==1){ + alert('gano X'); + jug1=jug1+1; + + } + + if(arreglo[0]==0 && arreglo[3]==0 && arreglo[6]==0){ + alert('gano O'); + jug2=jug2+1; + + } + + if(arreglo[1]==1 && arreglo[4]==1 && arreglo[7]==1){ + alert('gano X'); + jug1=jug1+1; + + } + + if(arreglo[1]==0 && arreglo[4]==0 && arreglo[7]==0){ + alert('gano O'); + jug2=jug2+1; + + } + + if(arreglo[2]==1 && arreglo[5]==1 && arreglo[8]==1){ + alert('gano X'); + jug1=jug1+1; + + } + + if(arreglo[2]==0 && arreglo[5]==0 && arreglo[8]==0){ + alert('gano O'); + jug2=jug2+1; + + } + + if(arreglo[0]==1 && arreglo[4]==1 && arreglo[8]==1){ + alert('gano X'); + jug1=jug1+1; + + } + + if(arreglo[0]==0 && arreglo[4]==0 && arreglo[8]==0){ + alert('gano O'); + jug2=jug2+1; + + } + + if(arreglo[2]==1 && arreglo[4]==1 && arreglo[6]==1){ + alert('gano X'); + jug1=jug1+1; + + } + + if(arreglo[2]==0 && arreglo[4]==0 && arreglo[6]==0){ + alert('gano O'); + jug2=jug2+1; + + } + if (jugada == 9) { + alert("Empate") + } + + } \ No newline at end of file -- libgit2 0.26.0