17 #include <core_ui/canvas.h> 18 #include <domains/harvester/world.h> 27 const QColor kBackgroundColor{ 255, 255, 255 };
28 const QColor kEmptyColor{ 240, 240, 240 };
29 const QColor kGridColor{ 160, 160, 160 };
30 const QColor kWallColor{ 128, 128, 128 };
31 const QColor kBadFruitColor{ 255, 0, 0 };
32 const QColor kJunkFruitColor{ 240, 240, 0 };
33 const QColor kGoodFruitColor{ 0, 255, 0 };
34 const QColor kVisitedColor{ 220, 220, 220 };
35 const QColor kRobotColor{ 64, 64, 255 };
36 const QColor kFovColor{ 0, 0, 255, 16 };
39 explicit WorldWidget(QWidget* parent);
41 void setWorld(
const harvester::World* world);
47 void paintEvent(QPaintEvent* event)
override;
48 void mousePressEvent(QMouseEvent* event)
override;
51 void paintWorld(QPainter& painter)
const;
52 void paintRobot(QPainter& painter)
const;
55 const harvester::World* world_ =
nullptr;
A reusable canvas with support for logical coordinates and auto-scalling the content.
Definition: canvas.h:36
Definition: harvester_ui.cpp:24