-
Notifications
You must be signed in to change notification settings - Fork 0
/
board.h
47 lines (31 loc) · 770 Bytes
/
board.h
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
#pragma once;
#include <string>
#include <set>
#include <vector>
class Board{
private:
int board[9][9]; //Dette kunne egentlig ha vært bestemt i programmet
//enklere løsning enn 3D vektor:
//gjør det litt vanskeligere å lage kordinatsystem
std::set<int> setHor[9];
std::set<int> setVer[9];
std::set<int> setBox[9];
vector<Trekk> trekkVec;
int moveCount;
public:
void printBoard();
Board(std::string filnavn); //c++ forstår ikke string elno
~Board();
void makeSets();
void write(std::string filnavn); //den forstår ikke
int getBoxCoordinates(int hor, int ver);
void setValue(int, int, int);
std::set<int > possibleValues(int, int);
bool possiblePlacement(int, int, int);
void makeMove();
};
struct Trekk{
int x;
int y;
int value;
};