17 #include <core_ui/canvas.h> 18 #include <domains/conquest/game.h> 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;
34 const QColor kBlueColor{ 128, 128, 255 };
35 const QColor kRedColor{ 255, 128, 128 };
38 explicit BoardWidget(QWidget* parent);
40 void setDebugRendering(
bool debug);
43 void setGame(conquest::Game* game);
50 void paintEvent(QPaintEvent* event)
override;
51 void mousePressEvent(QMouseEvent* event)
override;
52 void mouseReleaseEvent(QMouseEvent* event)
override;
53 void mouseMoveEvent(QMouseEvent* event)
override;
56 QRect nodeRect(
int index)
const;
57 QPoint nodePos(
int index)
const;
58 int hitTest(
const QPoint& pos)
const;
59 void paintOrder(QPainter& painter,
62 const QPoint& dst_pos)
const;
63 void paintDeployment(QPainter& painter,
int arc)
const;
66 int findArc(
int src,
int dst)
const;
69 conquest::Game* game_ =
nullptr;
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