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/ballistics/agent.h>
22 #include <domains/ballistics/ballistics.h>
23 #include <domains/ballistics/world.h>
24 
25 #include <QFrame>
26 #include <QIcon>
27 #include <QTimer>
28 
29 #include <memory>
30 using namespace std;
31 
32 namespace ballistics_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* target_x = nullptr;
40  core_ui::PropertyItem* target_y = nullptr;
41  core_ui::PropertyItem* target_dist = nullptr;
42 
43  // simulation state
44  core_ui::PropertyItem* state = nullptr;
45  core_ui::PropertyItem* step = nullptr;
46  core_ui::PropertyItem* projectile_x = nullptr;
47  core_ui::PropertyItem* projectile_y = nullptr;
48  core_ui::PropertyItem* dist_from_target = nullptr;
49  core_ui::PropertyItem* closest_dist = nullptr;
50  };
51 
52  public:
53  bool setup();
54 
55  void newScene() override;
56  void singleStep() override;
57  void updateUI() override;
58 
59  private:
60  void newTarget(double x, double y);
61  void setupScene(const b2Vec2& target_position);
62  void setupVariables();
63  QRectF calculateViewport(QRectF old_rect = QRect(0, 0, 0, 0)) const;
64 
65  private:
66  Variables variables_;
67 
68  const ballistics::Ballistics* domain_ = nullptr;
69 
70  shared_ptr<const darwin::Genotype> genotype_;
71  unique_ptr<ballistics::World> world_;
72  unique_ptr<ballistics::Agent> agent_;
73  unique_ptr<SceneUi> scene_ui_;
74 
75  int step_ = -1;
76  int max_steps_ = -1;
77  double closest_dist_ = 0;
78 
79  QRectF viewport_rect_;
80 };
81 
82 } // namespace ballistics_ui
A basic, manually-updated property item.
Definition: properties_widget.h:70
Domain: Ballistics.
Definition: ballistics.h:74
STL namespace.
Definition: ballistics_ui.cpp:24
A reusable sandbox window for domains based on Box2D physics simulations.
Definition: box2d_sandbox_window.h:37