Darwin Neuroevolution Framework
scene.h
1 // Copyright 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/sim/script.h>
18 #include <core/properties.h>
19 #include <core/utils.h>
20 #include <third_party/box2d/box2d.h>
21 
22 namespace sim {
23 
24 class Camera;
25 class TouchSensor;
26 class Accelerometer;
27 class Compass;
28 
29 struct Rect {
30  float x = 0;
31  float y = 0;
32  float width = 0;
33  float height = 0;
34 
35  Rect() = default;
36 
37  Rect(float x, float y, float width, float height)
38  : x(x), y(y), width(width), height(height) {}
39 };
40 
42 class Scene : public core::NonCopyable {
43  class ContactListener : public b2ContactListener {
44  public:
45  explicit ContactListener(Scene* scene) : scene_(scene) {}
46  void BeginContact(b2Contact* contact) override { scene_->onContact(contact); }
47 
48  private:
49  Scene* scene_ = nullptr;
50  };
51 
52  public:
53  Scene(const b2Vec2& gravity, const Rect& extents)
54  : world_(gravity), extents_(extents), contact_listener_(this) {
55  world_.SetContactListener(&contact_listener_);
56  }
57 
58  virtual ~Scene() = default;
59 
60  const Rect& extents() const { return extents_; }
61 
62  float timestamp() const { return timestamp_; }
63 
64  int objectsCount() const { return world_.GetBodyCount(); }
65 
66  void clear();
67 
68  virtual const core::PropertySet* variables() const { return nullptr; }
69  virtual const core::PropertySet* config() const { return nullptr; }
70 
71  virtual void preStep() {}
72  virtual void postStep(float /*dt*/) {}
73  virtual void onContact(b2Contact* /*contact*/) {}
74 
75  // TODO: temporary workaround, revisit
76  // (add support for Scene in Box2dSandboxWindow and Box2dWidget)
77  b2World* box2dWorld() { return &world_; }
78 
79  // sensors
80  // TODO: get rid of these methods
81  virtual const Camera* camera() const { return nullptr; }
82  virtual const sim::TouchSensor* touchSensor() const { return nullptr; }
83  virtual const sim::Accelerometer* accelerometer() const { return nullptr; }
84  virtual const sim::Compass* compass() const { return nullptr; }
85 
86  bool simStep();
87 
88  protected:
89  // this can only be called during the Scene construction
90  // TODO: support for updating scene extents at any time
91  void setExtents(const Rect& extents) { extents_ = extents; }
92 
93  protected:
94  b2World world_;
95  Rect extents_;
96  Script script_;
97  float timestamp_ = 0;
98  ContactListener contact_listener_;
99 };
100 
101 } // namespace sim
Basic accelerometer.
Definition: accelerometer.h:27
High-level physics scene abstraction.
Definition: scene.h:42
A basic touch sensor attached to a physical body.
Definition: touch_sensor.h:29
Raytraced rendering of a 2d world.
Definition: camera.h:39
Basic action scripting.
Definition: script.h:33
Definition: accelerometer.cpp:19
Tracks the local direction of the global "North" (x=0, y=1) vector.
Definition: compass.h:22
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
Classes derived from this are not copyable or movable.
Definition: utils.h:69