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 "double_cart_pole.h"
18 
19 #include <third_party/box2d/box2d.h>
20 
21 namespace double_cart_pole {
22 
23 class World {
24  static constexpr float kCartHalfWidth = 0.2f;
25  static constexpr float kCartHalfHeight = 0.05f;
26  static constexpr float kPoleHalfWidth = 0.02f;
27  static constexpr float kGroundY = 0.1f;
28 
29  public:
30  World(float initial_angle_1, float initial_angle_2, const DoubleCartPole* 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 cartDistance() const { return cart_->GetPosition().x; }
38  float cartVelocity() const { return cart_->GetLinearVelocity().x; }
39  float pole1Angle() const { return pole_1_->GetAngle(); }
40  float pole1AngularVelocity() const { return pole_1_->GetAngularVelocity(); }
41  float pole2Angle() const { return pole_2_->GetAngle(); }
42  float pole2AngularVelocity() const { return pole_2_->GetAngularVelocity(); }
43 
44  // actuators
45  void moveCart(float force);
46 
47  const DoubleCartPole* domain() const { return domain_; }
48 
49  b2World* box2dWorld() { return &b2_world_; }
50 
51  private:
52  b2Body* createPole(float length, float density, float initial_angle);
53  b2Body* createCart(float density, float friction);
54  void createHinge(b2Body* cart, b2Body* pole);
55 
56  private:
57  b2World b2_world_;
58 
59  b2Body* cart_ = nullptr;
60  b2Body* pole_1_ = nullptr;
61  b2Body* pole_2_ = nullptr;
62 
63  const DoubleCartPole* domain_ = nullptr;
64 };
65 
66 } // namespace double_cart_pole
Definition: agent.cpp:18