Darwin Neuroevolution Framework
board_widget.h
1 // Copyright 2018 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include "game.h"
18 
19 #include <core_ui/canvas.h>
20 
21 #include <QColor>
22 #include <QPointF>
23 
24 namespace tic_tac_toe_ui {
25 
26 class BoardWidget : public core_ui::Canvas {
27  Q_OBJECT
28 
29  static constexpr int kBorderSize = 15;
30 
31  const QColor kGridColor{ 128, 128, 128 };
32  const QColor kPieceColor{ 32, 32, 32 };
33  const QColor kLastPieceColor{ 32, 32, 200 };
34  const QColor kWinningLineColor{ 64, 128, 64, 64 };
35 
36  public:
37  explicit BoardWidget(QWidget* parent);
38 
39  void setGame(Game* game);
40 
41  signals:
42  void sigReady();
43 
44  protected:
45  void paintEvent(QPaintEvent* event) override;
46  void mousePressEvent(QMouseEvent* event) override;
47  void mouseReleaseEvent(QMouseEvent* event) override;
48  void leaveEvent(QEvent* event) override;
49 
50  private:
51  int hitTest(const QPointF& pos) const;
52 
53  private:
54  Game* game_ = nullptr;
55  int selected_square_ = tic_tac_toe::Board::kNoSquare;
56 };
57 
58 } // namespace tic_tac_toe_ui
A reusable canvas with support for logical coordinates and auto-scalling the content.
Definition: canvas.h:36
Definition: board_widget.cpp:26