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_ui/sim/box2d_sandbox_window.h>
20 #include <core_ui/properties_widget.h>
21 #include <domains/unicycle/agent.h>
22 #include <domains/unicycle/unicycle.h>
23 #include <domains/unicycle/world.h>
24 
25 #include <QFrame>
26 #include <QIcon>
27 #include <QTimer>
28 
29 #include <memory>
30 using namespace std;
31 
32 namespace unicycle_ui {
33 
34 class SandboxWindow : public physics_ui::Box2dSandboxWindow {
35  struct Variables {
36  // configuration
37  core_ui::PropertyItem* generation = nullptr;
38  core_ui::PropertyItem* max_steps = nullptr;
39  core_ui::PropertyItem* initial_angle = nullptr;
40  core_ui::PropertyItem* target_position = nullptr;
41 
42  // simulation state
43  core_ui::PropertyItem* state = nullptr;
44  core_ui::PropertyItem* step = nullptr;
45  core_ui::PropertyItem* fitness_bonus = nullptr;
46  core_ui::PropertyItem* position = nullptr;
47  core_ui::PropertyItem* velocity = nullptr;
48  core_ui::PropertyItem* angle = nullptr;
49  core_ui::PropertyItem* angular_velocity = nullptr;
50  core_ui::PropertyItem* dist_from_target = nullptr;
51  };
52 
53  public:
54  bool setup();
55 
56  void newScene() override;
57  void singleStep() override;
58  void updateUI() override;
59 
60  private:
61  void setupVariables();
62 
63  private:
64  Variables variables_;
65 
66  const unicycle::Unicycle* domain_ = nullptr;
67 
68  shared_ptr<const darwin::Genotype> genotype_;
69  unique_ptr<unicycle::World> world_;
70  unique_ptr<unicycle::Agent> agent_;
71  unique_ptr<SceneUi> scene_ui_;
72  int step_ = -1;
73  int max_steps_ = -1;
74 };
75 
76 } // namespace unicycle_ui
A basic, manually-updated property item.
Definition: properties_widget.h:70
STL namespace.
Domain: Unicycle.
Definition: unicycle.h:102
Definition: sandbox_window.cpp:25
A reusable sandbox window for domains based on Box2D physics simulations.
Definition: box2d_sandbox_window.h:37