Darwin Neuroevolution Framework
box2d_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/properties_widget.h>
18 #include <third_party/box2d/box2d.h>
19 
20 #include <QFrame>
21 #include <QIcon>
22 #include <QTimer>
23 
24 #include <memory>
25 using namespace std;
26 
27 namespace physics_ui {
28 
29 namespace Ui {
30 class Box2dSandboxWindow;
31 }
32 
33 class Box2dWidget;
34 class Box2dSceneUi;
35 
37 class Box2dSandboxWindow : public QFrame {
38  Q_OBJECT
39 
40  static constexpr int kDefaultTimerSpeed = 20; // ms
41 
42  const QIcon kPlayIcon{ ":/resources/mc_play.png" };
43  const QIcon kPauseIcon{ ":/resources/mc_pause.png" };
44 
45  public:
47  enum class State { None, Running, Paused, Failed, Completed };
48 
49  public:
52  virtual ~Box2dSandboxWindow();
53 
54  void addBottomPane(QWidget* widget);
55 
56  void setDebugRendering(bool enable);
57  void setRenderLights(bool enable);
58 
59  protected:
60  void focusInEvent(QFocusEvent* event) override;
61 
63  State state() const { return state_; }
64 
66  QString stateDescription() const;
67 
69  virtual void newScene() = 0;
70 
72  virtual void singleStep() = 0;
73 
75  virtual void updateUI() = 0;
76 
78  void setWorld(b2World* world, const QRectF& viewport);
79 
81  void setSceneUi(Box2dSceneUi* scene_ui);
82 
84  void play();
85 
87  void pause();
88 
90  void stop(State state);
91 
93  Box2dWidget* box2dWidget() const;
94 
96  core_ui::PropertiesWidget* variablesWidget() const;
97 
98  private slots:
99  void on_play_pause_clicked();
100  void on_single_step_clicked();
101  void on_restart_clicked();
102  void on_simulation_speed_valueChanged(int value);
103  void on_debug_rendering_toggled(bool checked);
104  void on_render_lights_toggled(bool checked);
105 
106  private:
107  Ui::Box2dSandboxWindow* ui = nullptr;
108  QTimer timer_;
109  State state_ = State::None;
110 };
111 
112 } // namespace physics_ui
A visualizer/editor for a set of properties, grouped into collapsible sections.
Definition: properties_widget.h:132
Definition: evolution_window.h:22
State state() const
Current state.
Definition: box2d_sandbox_window.h:63
STL namespace.
Custom box2d scene rendering & input processing.
Definition: box2d_widget.h:27
Definition: accelerometer_widget.cpp:23
State
Sandbox state.
Definition: box2d_sandbox_window.h:47
A reusable sandbox window for domains based on Box2D physics simulations.
Definition: box2d_sandbox_window.h:37