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/drone_controller.h>
20 #include <core_ui/sim/box2d_sandbox_window.h>
21 #include <core_ui/sim/camera_widget.h>
22 #include <core_ui/properties_widget.h>
23 #include <domains/drone_vision/domain.h>
24 #include <domains/drone_vision/scene.h>
25 
26 #include <QFrame>
27 #include <QIcon>
28 #include <QTimer>
29 
30 #include <memory>
31 #include <unordered_map>
32 #include <string>
33 using namespace std;
34 
35 namespace drone_vision_ui {
36 
37 class SandboxWindow : public physics_ui::Box2dSandboxWindow {
38  struct Variables {
39  // configuration
40  core_ui::PropertyItem* generation = nullptr;
41  core_ui::PropertyItem* max_steps = nullptr;
42  core_ui::PropertyItem* initial_target_velocity = nullptr;
43 
44  // simulation state
45  core_ui::PropertyItem* state = nullptr;
46  core_ui::PropertyItem* step = nullptr;
47  core_ui::PropertyItem* fitness = nullptr;
48  };
49 
50  public:
51  SandboxWindow() { setDebugRendering(false); }
52 
53  bool setup();
54 
55  void newScene() override;
56  void singleStep() override;
57  void updateUI() override;
58 
59  private:
60  void setupVariables();
61  void setupSceneVariables();
62  void updateVariables();
63 
64  private:
65  Variables variables_;
66  unordered_map<string, core_ui::PropertyItem*> scene_variables_map_;
67 
68  const drone_vision::DroneVision* domain_ = nullptr;
69 
70  physics_ui::CameraWidget* camera_widget_ = nullptr;
71 
72  shared_ptr<const darwin::Genotype> genotype_;
73  unique_ptr<drone_vision::Scene> scene_;
74  unique_ptr<sim::DroneController> agent_;
75  unique_ptr<SceneUi> scene_ui_;
76  int step_ = -1;
77  int max_steps_ = -1;
78 };
79 
80 } // namespace drone_vision_ui
A basic, manually-updated property item.
Definition: properties_widget.h:70
STL namespace.
Visualization for a sim::Camera object.
Definition: camera_widget.h:24
Definition: domain_ui.cpp:24
Domain: Drone Vision.
Definition: domain.h:65
A reusable sandbox window for domains based on Box2D physics simulations.
Definition: box2d_sandbox_window.h:37