Darwin Neuroevolution Framework
world_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/harvester/world.h>
19 
20 #include <QColor>
21 
22 namespace harvester_ui {
23 
24 class WorldWidget : public core_ui::Canvas {
25  Q_OBJECT
26 
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 };
37 
38  public:
39  explicit WorldWidget(QWidget* parent);
40 
41  void setWorld(const harvester::World* world);
42 
43  signals:
44  void sigSingleStep();
45 
46  protected:
47  void paintEvent(QPaintEvent* event) override;
48  void mousePressEvent(QMouseEvent* event) override;
49 
50  private:
51  void paintWorld(QPainter& painter) const;
52  void paintRobot(QPainter& painter) const;
53 
54  private:
55  const harvester::World* world_ = nullptr;
56  int rows_ = 0;
57  int cols_ = 0;
58 };
59 
60 } // namespace harvester_ui
A reusable canvas with support for logical coordinates and auto-scalling the content.
Definition: canvas.h:36
Definition: harvester_ui.cpp:24