Darwin Neuroevolution Framework
sandbox_window.h
1 // Copyright 2019 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 "scene_ui.h"
18 
19 #include <core/sim/car_controller.h>
20 #include <core/sim/track.h>
21 #include <core_ui/sim/box2d_sandbox_window.h>
22 #include <core_ui/sim/camera_widget.h>
23 #include <core_ui/sim/compass_widget.h>
24 #include <core_ui/sim/accelerometer_widget.h>
25 #include <core_ui/sim/touch_widget.h>
26 #include <core_ui/properties_widget.h>
27 #include <domains/car_track/domain.h>
28 #include <domains/car_track/scene.h>
29 
30 #include <QFrame>
31 #include <QIcon>
32 #include <QTimer>
33 
34 #include <memory>
35 #include <unordered_map>
36 #include <string>
37 using namespace std;
38 
39 namespace car_track_ui {
40 
41 class SandboxWindow : public physics_ui::Box2dSandboxWindow {
42  struct Variables {
43  // configuration
44  core_ui::PropertyItem* generation = nullptr;
45  core_ui::PropertyItem* max_steps = nullptr;
46 
47  // simulation state
48  core_ui::PropertyItem* state = nullptr;
49  core_ui::PropertyItem* step = nullptr;
50  core_ui::PropertyItem* fitness = nullptr;
51  };
52 
53  public:
54  SandboxWindow() { setDebugRendering(false); }
55 
56  bool setup();
57 
58  void newScene() override;
59  void singleStep() override;
60  void updateUI() override;
61 
62  private:
63  void setupUi();
64  void setupVariables();
65  void setupSceneVariables();
66  void updateVariables();
67 
68  private:
69  Variables variables_;
70  unordered_map<string, core_ui::PropertyItem*> scene_variables_map_;
71 
72  const car_track::CarTrack* domain_ = nullptr;
73 
74  physics_ui::CameraWidget* camera_widget_ = nullptr;
75  physics_ui::CompassWidget* compass_widget_ = nullptr;
76  physics_ui::AccelerometerWidget* accelerometer_widget_ = nullptr;
77  physics_ui::TouchSensorWidget* touch_widget_ = nullptr;
78 
79  shared_ptr<const darwin::Genotype> genotype_;
80  unique_ptr<sim::Track> track_;
81  unique_ptr<car_track::Scene> scene_;
82  unique_ptr<sim::CarController> agent_;
83  unique_ptr<SceneUi> scene_ui_;
84  int step_ = -1;
85  int max_steps_ = -1;
86 };
87 
88 } // namespace car_track_ui
Definition: domain_ui.cpp:24
A basic, manually-updated property item.
Definition: properties_widget.h:70
STL namespace.
Visualization for a sim::Accelerometer object.
Definition: accelerometer_widget.h:23
Visualization for a sim::TouchSensor object.
Definition: touch_widget.h:23
Visualization for a sim::Compass object.
Definition: compass_widget.h:23
Visualization for a sim::Camera object.
Definition: camera_widget.h:24
Domain: Car Track.
Definition: domain.h:74
A reusable sandbox window for domains based on Box2D physics simulations.
Definition: box2d_sandbox_window.h:37