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 <core_ui/canvas.h>
18 #include <domains/conquest/game.h>
19 
20 #include <QColor>
21 #include <QPoint>
22 #include <QRect>
23 
24 namespace conquest_ui {
25 
26 class BoardWidget : public core_ui::Canvas {
27  Q_OBJECT
28 
29  static constexpr int kBorderSize = 15;
30  static constexpr int kNodeRadius = 30;
31  static constexpr float kSx = 2.5f;
32  static constexpr float kSy = 2.5f;
33 
34  const QColor kBlueColor{ 128, 128, 255 };
35  const QColor kRedColor{ 255, 128, 128 };
36 
37  public:
38  explicit BoardWidget(QWidget* parent);
39 
40  void setDebugRendering(bool debug);
41 
42  void reset();
43  void setGame(conquest::Game* game);
44 
45  signals:
46  void sigPause();
47  void sigResume();
48 
49  protected:
50  void paintEvent(QPaintEvent* event) override;
51  void mousePressEvent(QMouseEvent* event) override;
52  void mouseReleaseEvent(QMouseEvent* event) override;
53  void mouseMoveEvent(QMouseEvent* event) override;
54 
55  private:
56  QRect nodeRect(int index) const;
57  QPoint nodePos(int index) const;
58  int hitTest(const QPoint& pos) const;
59  void paintOrder(QPainter& painter,
60  const QColor& color,
61  int src,
62  const QPoint& dst_pos) const;
63  void paintDeployment(QPainter& painter, int arc) const;
64  void exitEditMode();
65  void enterEditMode();
66  int findArc(int src, int dst) const;
67 
68  private:
69  conquest::Game* game_ = nullptr;
70 
71  bool debug_ = true;
72  bool paused_ = false;
73 
74  int blue_order_ = -1;
75  int red_order_ = -1;
76 
77  int highlight_ = -1;
78  int src_ = -1;
79  int dst_ = -1;
80 
81  QPoint mouse_pos_; // tracked mouse pos, in viewport coord
82 };
83 
84 } // namespace conquest_ui
void reset(std::vector< T > &v)
Reset the values in a vector to 0.
Definition: ann_dynamic.h:32
A reusable canvas with support for logical coordinates and auto-scalling the content.
Definition: canvas.h:36
Definition: board_widget.cpp:34