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_follow/domain.h>
24 #include <domains/drone_follow/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_follow_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 
43  // simulation state
44  core_ui::PropertyItem* state = nullptr;
45  core_ui::PropertyItem* step = nullptr;
46  core_ui::PropertyItem* fitness = nullptr;
47  };
48 
49  public:
50  SandboxWindow() { setDebugRendering(false); }
51 
52  bool setup();
53 
54  void newScene() override;
55  void singleStep() override;
56  void updateUI() override;
57 
58  private:
59  void setupVariables();
60  void setupSceneVariables();
61  void updateVariables();
62 
63  private:
64  Variables variables_;
65  unordered_map<string, core_ui::PropertyItem*> scene_variables_map_;
66 
67  const drone_follow::DroneFollow* domain_ = nullptr;
68 
69  physics_ui::CameraWidget* camera_widget_ = nullptr;
70 
71  shared_ptr<const darwin::Genotype> genotype_;
72  unique_ptr<drone_follow::Scene> scene_;
73  unique_ptr<sim::DroneController> agent_;
74  unique_ptr<SceneUi> scene_ui_;
75  int step_ = -1;
76  int max_steps_ = -1;
77 };
78 
79 } // namespace drone_follow_ui
A basic, manually-updated property item.
Definition: properties_widget.h:70
Definition: domain_ui.cpp:24
Domain: Drone Follow.
Definition: domain.h:75
STL namespace.
Visualization for a sim::Camera object.
Definition: camera_widget.h:24
A reusable sandbox window for domains based on Box2D physics simulations.
Definition: box2d_sandbox_window.h:37