-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontroller.h
68 lines (60 loc) · 1.67 KB
/
controller.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#ifndef CONTROLLER_H
#define CONTROLLER_H
#define MOTHER_BOARD "/home/dominik/code/qt/sudoku/motherSudoku.sdk"
#define RECORDS_FILE "/home/dominik/code/qt/sudoku/records.sdr"
#include <QObject>
#include "model/board.h"
#include "lib/libsudoku.h"
#include <QFileDialog>
#include <QInputDialog>
#include <fstream>
#include <sstream>
#include <string>
class Controller : public QObject {
Q_OBJECT
// read interface
public:
//singleton
static Controller& getInstance() {
static Controller instance;
return instance;
}
// qt change interface
public slots:
void changeValue(int x, int y, int value);
void resetGame();
void saveState();
void loadState();
void newGame(int difficulty);
void getDoublesStateChanged(int state);
void getFieldValue(int x, int y);
void getRandomFieldValue();
void getAllFieldsValues();
void checkIfGameEnds();
void setLastMoveTime(int t);
// qt inform interface
signals:
void disableFields(matrix<int> fields);
void markFields(matrix<bool> toMark);
void setGameState(matrix<int> fields);
void gameEndCheatedDialogue();
void gameEndDialogue();
void startTimer();
void stopTimer();
void displayRecords(std::vector<Record>);
private:
//singleton
int currentDifficulty;
int lastMoveTime;
void gameEnd();
Controller(Board board = LibSudoku::generateBoard(EASY)) {}
Controller(Controller const&);
void operator=(Controller const&);
bool cheated;
Board board;
matrix<int> initialState;
matrix<int> solvedState;
bool recordsLoaded = false;
std::vector<Record> records;
};
#endif // CONTROLLER_H