Darwin Neuroevolution Framework
accelerometer.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 <third_party/box2d/box2d.h>
18 
19 namespace sim {
20 
28  static constexpr float kMaxLinearAcceleration = 100.0f;
29  static constexpr float kMaxAngularAcceleration = 120.0f;
30 
31  public:
32  Accelerometer(b2Body* body);
33 
34  b2Body* body() const { return body_; }
35 
36  // update state (must be called on every simulation step)
37  //
38  // dt == 0 means instantaneous velocity change (no acceleration)
39  //
40  void update(float dt);
41 
42  // the linear acceleration vector length is in the [0, 1] range
43  const b2Vec2& linearAcceleration() const { return linear_acceleration_; }
44 
45  // angular acceleration is in the [-1, 1] range
46  float angularAcceleration() const { return angular_acceleration_; }
47 
48  private:
49  b2Body* body_ = nullptr;
50  b2Vec2 linear_acceleration_;
51  float angular_acceleration_;
52  b2Vec2 last_linear_velocity_;
53  float last_angular_velocity_;
54 };
55 
56 } // namespace sim
Basic accelerometer.
Definition: accelerometer.h:27
Definition: accelerometer.cpp:19