-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.cpp
41 lines (35 loc) · 1.01 KB
/
game.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
#include <QMessageBox>
#include "game.hh"
Game::Game(QWidget *parent) :
Game(Grid<bool>(), parent)
{
}
Game::Game(Grid<bool> grid, QWidget *parent) :
QWidget(parent)
{
m_layout = new QGridLayout;
for (int y = 0; y < grid.size(); ++y) {
QVector<Square*> row;
for (int x = 0; x < grid[y].size(); ++x) {
SquareState correctState = grid[y][x] ? SquareState::FILLED : SquareState::EMPTY;
Square *square = new Square(correctState, this);
connect(square, &Square::stateChanged,
this, &Game::checkWinCondition);
row.push_back(square);
m_layout->addWidget(square, y, x);
}
m_grid.push_back(row);
}
setLayout(m_layout);
}
void Game::checkWinCondition()
{
for (const QVector<Square*> &row : m_grid) {
for (Square *square : row) {
if (!square->isCorrectState()) {
return;
}
}
}
QMessageBox::information(this, "Victory", "You won!");
}