summaryrefslogtreecommitdiffstats
path: root/examples/designer/taskmenuextension/tictactoe.cpp
blob: 58bc359b3574c9d3169f6a7579a4e63ed80f9079 (plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include "tictactoe.h"

#include <QMouseEvent>
#include <QPainter>

using namespace Qt::StringLiterals;

static inline QString defaultState() { return u"---------"_s; }

TicTacToe::TicTacToe(QWidget *parent)
    : QWidget(parent), myState(defaultState())
{
}

QSize TicTacToe::minimumSizeHint() const
{
    return {200, 200};
}

QSize TicTacToe::sizeHint() const
{
    return {200, 200};
}

void TicTacToe::setState(const QString &newState)
{
    turnNumber = 0;
    myState = defaultState();
    const int count = qMin(9, int(newState.length()));
    for (int position = 0; position < count; ++position) {
        const QChar mark = newState.at(position);
        if (mark == Cross || mark == Nought) {
            ++turnNumber;
            myState[position] = mark;
        }
    }
    update();
}

QString TicTacToe::state() const
{
    return myState;
}

void TicTacToe::clearBoard()
{
    myState = defaultState();
    turnNumber = 0;
    update();
}

void TicTacToe::mousePressEvent(QMouseEvent *event)
{
    if (turnNumber == 9) {
        clearBoard();
        return;
    }
    for (int position = 0; position < 9; ++position) {
        const QRect &cell = cellRect(position);
        if (cell.contains(event->position().toPoint())) {
            if (myState.at(position) == Empty) {
                myState[position] = turnNumber % 2 == 0
                                    ? Cross : Nought;
                ++turnNumber;
                update();
            }
        }
    }
}

void TicTacToe::paintEvent(QPaintEvent * /* event */)
{
    QPainter painter(this);
    painter.setRenderHint(QPainter::Antialiasing);

    painter.setPen(QPen(Qt::darkGreen, 1));
    painter.drawLine(cellWidth(), 0, cellWidth(), height());
    painter.drawLine(2 * cellWidth(), 0, 2 * cellWidth(), height());
    painter.drawLine(0, cellHeight(), width(), cellHeight());
    painter.drawLine(0, 2 * cellHeight(), width(), 2 * cellHeight());

    painter.setPen(QPen(Qt::darkBlue, 2));

    for (int position = 0; position < 9; ++position) {
        const QRect &cell = cellRect(position);

        if (myState.at(position) == Cross) {
            painter.drawLine(cell.topLeft(), cell.bottomRight());
            painter.drawLine(cell.topRight(), cell.bottomLeft());
        } else if (myState.at(position) == Nought) {
            painter.drawEllipse(cell);
        }
    }

    painter.setPen(QPen(Qt::yellow, 3));

    for (int position = 0; position < 9; position = position + 3) {
        if (myState.at(position) != Empty
                && myState.at(position + 1) == myState.at(position)
                && myState.at(position + 2) == myState.at(position)) {
            const int y = cellRect(position).center().y();
            painter.drawLine(0, y, width(), y);
            turnNumber = 9;
        }
    }

    for (int position = 0; position < 3; ++position) {
        if (myState.at(position) != Empty
                && myState.at(position + 3) == myState.at(position)
                && myState.at(position + 6) == myState.at(position)) {
            const int x = cellRect(position).center().x();
            painter.drawLine(x, 0, x, height());
            turnNumber = 9;
        }
    }
    if (myState.at(0) != Empty && myState.at(4) == myState.at(0)
            && myState.at(8) == myState.at(0)) {
        painter.drawLine(0, 0, width(), height());
        turnNumber = 9;
    }
    if (myState.at(2) != Empty && myState.at(4) == myState.at(2)
            && myState.at(6) == myState.at(2)) {
        painter.drawLine(0, height(), width(), 0);
        turnNumber = 9;
    }
}

QRect TicTacToe::cellRect(int position) const
{
    const int HMargin = width() / 30;
    const int VMargin = height() / 30;
    const int row = position / 3;
    const int column = position % 3;
    const QPoint pos{column * cellWidth() + HMargin,
                     row * cellHeight() + VMargin};
    const QSize size{cellWidth() - 2 * HMargin,
                     cellHeight() - 2 * VMargin};
    return {pos, size};
}