Darwin Neuroevolution Framework
drone.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/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>
22 
23 #include <third_party/box2d/box2d.h>
24 
25 namespace sim {
26 
27 struct DroneConfig {
28  b2Vec2 position{};
29  float angle = 0;
30  float radius = 1.0f;
31  bool camera = false;
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;
38  bool compass = false;
39  bool lights = false;
40  float max_move_force = 5.0f;
41  float max_lateral_force = 5.0f;
42  float max_rotate_torque = 1.0f;
43  float density = 0.1f;
44  float friction = 1.0f;
45  float restitution = 0.2f;
46  b2Color color;
47 };
48 
49 class Drone : public core::NonCopyable {
50  public:
51  Drone(b2World* world, const DroneConfig& config);
52 
53  void postStep(float dt);
54 
55  // actuators
56  void move(b2Vec2 force);
57  void rotate(float torque);
58 
59  // sensors
60  const Camera* camera() const { return camera_.get(); }
61  const sim::TouchSensor* touchSensor() const { return touch_sensor_.get(); }
62  const sim::Accelerometer* accelerometer() const { return accelerometer_.get(); }
63  const sim::Compass* compass() const { return compass_.get(); }
64 
65  b2Body* body() { return body_; }
66  const b2Body* body() const { return body_; }
67 
68  const auto& config() const { return config_; }
69 
70  private:
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_;
77 };
78 
79 } // namespace sim
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