17 #include <core/sim/script.h> 18 #include <core/properties.h> 19 #include <core/utils.h> 20 #include <third_party/box2d/box2d.h> 37 Rect(
float x,
float y,
float width,
float height)
38 : x(x), y(y), width(width), height(height) {}
43 class ContactListener :
public b2ContactListener {
45 explicit ContactListener(
Scene* scene) : scene_(scene) {}
46 void BeginContact(b2Contact* contact)
override { scene_->onContact(contact); }
49 Scene* scene_ =
nullptr;
53 Scene(
const b2Vec2& gravity,
const Rect& extents)
54 : world_(gravity), extents_(extents), contact_listener_(
this) {
55 world_.SetContactListener(&contact_listener_);
58 virtual ~
Scene() =
default;
60 const Rect& extents()
const {
return extents_; }
62 float timestamp()
const {
return timestamp_; }
64 int objectsCount()
const {
return world_.GetBodyCount(); }
71 virtual void preStep() {}
72 virtual void postStep(
float ) {}
73 virtual void onContact(b2Contact* ) {}
77 b2World* box2dWorld() {
return &world_; }
81 virtual const Camera* camera()
const {
return nullptr; }
84 virtual const sim::Compass* compass()
const {
return nullptr; }
91 void setExtents(
const Rect& extents) { extents_ = extents; }
98 ContactListener contact_listener_;
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