Darwin Neuroevolution Framework
box2d_widget.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/canvas.h>
18 #include <third_party/box2d/box2d.h>
19 
20 #include <QColor>
21 
22 namespace physics_ui {
23 
24 class Box2dSandboxWindow;
25 
27 class Box2dSceneUi : public QObject {
28  Q_OBJECT
29 
30  public:
31  // rendering
32  virtual void render(QPainter& /*painter*/, const QRectF& /*viewport*/) {}
33 
34  // mouse
35  virtual void mousePressEvent(const QPointF& /*pos*/, QMouseEvent* /*event*/) {}
36  virtual void mouseReleaseEvent(const QPointF& /*pos*/, QMouseEvent* /*event*/) {}
37  virtual void mouseMoveEvent(const QPointF& /*pos*/, QMouseEvent* /*event*/) {}
38 
39  // keyboard
40  virtual void keyPressEvent(QKeyEvent* /*event*/) {}
41  virtual void keyReleaseEvent(QKeyEvent* /*event*/) {}
42 
43  // focus
44  virtual void focusInEvent() {}
45  virtual void focusOutEvent() {}
46 
47  // simulation step
48  // TODO: revisit this
49  virtual void step() {}
50 
51  // help text
52  virtual QString help() const { return ""; }
53 
54  signals:
55  void sigPlayPause();
56 };
57 
58 class Box2dWidget : public core_ui::Canvas {
59  Q_OBJECT
60 
61  const QColor kBackgroundColor{ 255, 255, 255 };
62  const QColor kViewportColor{ 240, 240, 255 };
63 
64  public:
65  explicit Box2dWidget(QWidget* parent);
66 
67  void setWorld(b2World* world, const QRectF& viewport);
68  void setSceneUi(Box2dSceneUi* scene_ui);
69 
70  bool debugRender() const { return enable_debug_render_; }
71  void setDebugRender(bool enable);
72 
73  bool renderLights() const { return render_lights_; }
74  void setRenderLights(bool enable);
75 
76  signals:
77  void sigPlayPause();
78 
79  private:
80  void paintEvent(QPaintEvent* event) override;
81 
82  void mousePressEvent(QMouseEvent* event) override;
83  void mouseReleaseEvent(QMouseEvent* event) override;
84  void mouseMoveEvent(QMouseEvent* event) override;
85 
86  void keyPressEvent(QKeyEvent* event) override;
87  void keyReleaseEvent(QKeyEvent* event) override;
88 
89  void focusInEvent(QFocusEvent*) override;
90  void focusOutEvent(QFocusEvent*) override;
91 
92  void renderDebugLayer(QPainter& painter) const;
93  void renderGeneric(QPainter& painter) const;
94 
95  private:
96  b2World* world_ = nullptr;
97  Box2dSceneUi* scene_ui_ = nullptr;
98  bool enable_debug_render_ = true;
99  bool render_lights_ = false;
100 };
101 
102 } // namespace physics_ui
A reusable canvas with support for logical coordinates and auto-scalling the content.
Definition: canvas.h:36
Custom box2d scene rendering & input processing.
Definition: box2d_widget.h:27
Definition: accelerometer_widget.cpp:23