Darwin Neuroevolution Framework
world.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 "unicycle.h"
18 
19 #include <third_party/box2d/box2d.h>
20 
21 namespace unicycle {
22 
23 class World {
24  public:
25  static constexpr float kPoleHalfWidth = 0.02f;
26  static constexpr float kGroundY = 0.1f;
27  static constexpr float kGroundFriction = 100.0f;
28 
29  public:
30  World(float initial_angle, float target_position, const Unicycle* domain);
31 
32  // advances the physical simulation one step, returning false
33  // if the state reaches one of the termination conditions
34  bool simStep();
35 
36  // world features
37  float wheelDistance() const { return wheel_->GetPosition().x; }
38  float wheelVelocity() const { return wheel_->GetLinearVelocity().x; }
39  float poleAngle() const { return pole_->GetAngle(); }
40  float poleAngularVelocity() const { return pole_->GetAngularVelocity(); }
41 
42  float targetPosition() const { return target_position_; }
43  void setTargetPosition(float target_position);
44 
45  // actuators
46  void turnWheel(float torque);
47 
48  const Unicycle* domain() const { return domain_; }
49 
50  // extra reward for staying close to the target position
51  float fitnessBonus() const { return fitness_bonus_; }
52 
53  b2World* box2dWorld() { return &b2_world_; }
54 
55  private:
56  b2Body* createGround();
57  b2Body* createPole(float initial_angle);
58  b2Body* createWheel();
59  void createHinge(b2Body* wheel, b2Body* pole);
60 
61  private:
62  b2World b2_world_;
63  b2Body* wheel_ = nullptr;
64  b2Body* pole_ = nullptr;
65 
66  float fitness_bonus_ = 0;
67  float target_position_ = 0;
68  const Unicycle* domain_ = nullptr;
69 };
70 
71 } // namespace unicycle
Definition: agent.cpp:18