-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm.cpp
59 lines (54 loc) · 1.33 KB
/
m.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
#include <algorithm>
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include "board.h"
#include "solver.h"
using namespace std;
void printMatrix(vector<vector<string>> m) {
for (size_t i = 0; i < m.size(); i++) {
for (size_t j = 0; j < m[0].size(); j++) {
cout << m[i][j] << " ";
}
cout << endl;
}
}
int main() {
int boardSize = 16;
Board board = Board(boardSize);
string line;
while (1) {
line = "";
int success = 0;
printf("\x1B[2J");
printf("\x1B[H");
board.printMaskedBoard();
cout << "Type \"solve\" to solve, \"exit\" to exit" << endl;
getline(cin, line);
if (line == "exit") {
break;
}
if (line == "solve") {
Solver solver = Solver(&board);
success = solver.solve();
} else {
stringstream ss(line);
int x = -1, y = -1;
ss >> x >> y;
success = board.revealTile(x, y);
}
if (board.didWin()) {
cout << "You won!" << endl;
break;
}
if (!success) {
printf("\x1B[2J");
printf("\x1B[H");
board.printMaskedBoard();
cout << "You lose!" << endl;
break;
}
}
return 0;
}