17 #include <core/sim/camera.h> 18 #include <core/sim/accelerometer.h> 19 #include <core/sim/touch_sensor.h> 20 #include <core/sim/compass.h> 21 #include <core/utils.h> 23 #include <third_party/box2d/box2d.h> 32 float camera_fov = 90;
33 int camera_resolution = 64;
34 bool camera_depth =
false;
35 bool touch_sensor =
false;
36 int touch_resolution = 16;
37 bool accelerometer =
false;
40 float max_move_force = 5.0f;
41 float max_lateral_force = 5.0f;
42 float max_rotate_torque = 1.0f;
44 float friction = 1.0f;
45 float restitution = 0.2f;
51 Drone(b2World* world,
const DroneConfig& config);
53 void postStep(
float dt);
56 void move(b2Vec2 force);
57 void rotate(
float torque);
60 const Camera* camera()
const {
return camera_.get(); }
63 const sim::Compass* compass()
const {
return compass_.get(); }
65 b2Body* body() {
return body_; }
66 const b2Body* body()
const {
return body_; }
68 const auto& config()
const {
return config_; }
71 b2Body* body_ =
nullptr;
72 unique_ptr<Camera> camera_;
73 unique_ptr<TouchSensor> touch_sensor_;
74 unique_ptr<Accelerometer> accelerometer_;
75 unique_ptr<Compass> compass_;
76 const DroneConfig config_;
Basic accelerometer.
Definition: accelerometer.h:27
A basic touch sensor attached to a physical body.
Definition: touch_sensor.h:29
Definition: accelerometer.cpp:19
Tracks the local direction of the global "North" (x=0, y=1) vector.
Definition: compass.h:22
Classes derived from this are not copyable or movable.
Definition: utils.h:69