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/cart_pole/agent.h>
20 #include <domains/cart_pole/cart_pole.h>
21 #include <domains/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 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 = nullptr;
44  core_ui::PropertyItem* angular_velocity = nullptr;
45  };
46 
47  public:
48  bool setup();
49 
50  void newScene() override;
51  void singleStep() override;
52  void updateUI() override;
53 
54  private:
55  void setupVariables();
56 
57  private:
58  Variables variables_;
59 
60  const cart_pole::CartPole* cart_pole_ = nullptr;
61 
62  shared_ptr<const darwin::Genotype> genotype_;
63  unique_ptr<cart_pole::World> world_;
64  unique_ptr<cart_pole::Agent> agent_;
65  int step_ = -1;
66  int max_steps_ = -1;
67 };
68 
69 } // namespace cart_pole_ui
Domain: Cart-Pole.
Definition: cart_pole.h:90
A basic, manually-updated property item.
Definition: properties_widget.h:70
STL namespace.
Definition: cart_pole_ui.cpp:24
A reusable sandbox window for domains based on Box2D physics simulations.
Definition: box2d_sandbox_window.h:37