-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
60 lines (40 loc) · 1.13 KB
/
main.cpp
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
#include "Tablero.h"
#include <iostream>
using namespace std;
int main(int argc, char const *argv[]) {
bool turno = true;
cout << "HOLIS" << endl;
Tablero* prueba = new Tablero();
int cont = 0 ;
int nuevaPosX;
int nuevaPosY;
cout << "TURNO JUGADOR 1: " << endl;
prueba->imprimir();
while (true) {
while(true){
cout << "[X]: " << endl;
cin >> nuevaPosX;
cout << "[Y]: " << endl;
cin >> nuevaPosY;
if( (nuevaPosX < 11 && nuevaPosX > -1) && (nuevaPosY < 11 && nuevaPosY > -1) ){
break;
}else{
cout << "VALORES INVALIDOS, INGRESE DE NUEVO" << endl;
}
}
prueba->mover(nuevaPosX,nuevaPosY,turno);
if (turno == true) {
turno = false;
std::cout << "TURNO JUGADOR 2 " << std::endl;
}else{
turno = true;
}
prueba->imprimir();
if (prueba->gane(turno)==true) {
break;
}
cont++;
}
prueba->~Tablero();
return 0;
}