Darwin Neuroevolution Framework
box2d_renderer.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 <third_party/box2d/box2d.h>
18 
19 #include <QPainter>
20 
21 namespace physics_ui {
22 
24 class Box2dRenderer : public b2Draw {
25  public:
26  explicit Box2dRenderer(QPainter* painter) : painter_(painter) {}
27 
28  // draw a closed polygon provided in CCW order
29  void DrawPolygon(const b2Vec2* vertices,
30  int32 vertexCount,
31  const b2Color& color) override;
32 
33  // draw a solid closed polygon provided in CCW order
34  void DrawSolidPolygon(const b2Vec2* vertices,
35  int32 vertexCount,
36  const b2Color& color) override;
37 
38  void DrawCircle(const b2Vec2& center, float32 radius, const b2Color& color) override;
39 
40  void DrawSolidCircle(const b2Vec2& center,
41  float32 radius,
42  const b2Vec2& axis,
43  const b2Color& color) override;
44 
45  void DrawSegment(const b2Vec2& p1, const b2Vec2& p2, const b2Color& color) override;
46 
47  void DrawTransform(const b2Transform& xf) override;
48 
49  void DrawPoint(const b2Vec2& p, float32 size, const b2Color& color) override;
50 
51  private:
52  QPainter* painter_ = nullptr;
53 };
54 
55 } // namespace physics_ui
A QPainter-based implementation of Box2d debug draw interface (b2Draw)
Definition: box2d_renderer.h:24
Definition: accelerometer_widget.cpp:23