Darwin Neuroevolution Framework
sandbox_window.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/properties_widget.h>
18 #include <domains/harvester/robot.h>
19 #include <domains/harvester/world.h>
20 #include <domains/harvester/world_map.h>
21 
22 #include <QFrame>
23 #include <QIcon>
24 #include <QTimer>
25 
26 #include <memory>
27 using namespace std;
28 
29 namespace harvester_ui {
30 
31 namespace Ui {
32 class SandboxWindow;
33 }
34 
35 class SandboxWindow : public QFrame {
36  Q_OBJECT
37 
38  static constexpr int kDefaultTimerSpeed = 40; // ms
39 
40  const QIcon kPlayIcon{ ":/resources/mc_play.png" };
41  const QIcon kPauseIcon{ ":/resources/mc_pause.png" };
42 
43  struct Variables {
44  // configuration
45  core_ui::PropertyItem* generation = nullptr;
46  core_ui::PropertyItem* initial_health = nullptr;
47  core_ui::PropertyItem* world_width = nullptr;
48  core_ui::PropertyItem* world_height = nullptr;
49 
50  // simulation state
51  core_ui::PropertyItem* state = nullptr;
52  core_ui::PropertyItem* sim_step = nullptr;
53  core_ui::PropertyItem* health = nullptr;
54  core_ui::PropertyItem* pos = nullptr;
55  core_ui::PropertyItem* angle = nullptr;
56  core_ui::PropertyItem* last_move_dist = nullptr;
57  core_ui::PropertyItem* total_move_dist = nullptr;
58  core_ui::PropertyItem* good_fruits = nullptr;
59  core_ui::PropertyItem* junk_fruits = nullptr;
60  core_ui::PropertyItem* bad_fruits = nullptr;
61  core_ui::PropertyItem* visited_cells = nullptr;
62  };
63 
64  public:
65  explicit SandboxWindow(QWidget* parent = nullptr);
66  ~SandboxWindow();
67 
68  bool setup();
69 
70  private slots:
71  void on_simulation_speed_valueChanged(int value);
72  void on_play_pause_clicked();
73  void on_single_step_clicked();
74  void on_restart_clicked();
75 
76  private:
77  void singleStep();
78  void updateUI();
79  void setupVariables();
80  void pause();
81  void play();
82 
83  private:
84  Ui::SandboxWindow* ui = nullptr;
85  QTimer timer_;
86 
87  unique_ptr<harvester::Robot> robot_;
88  unique_ptr<harvester::World> world_;
89  Variables variables_;
90 };
91 
92 } // namespace harvester_ui
A basic, manually-updated property item.
Definition: properties_widget.h:70
Definition: evolution_window.h:22
Definition: harvester_ui.cpp:24
STL namespace.