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