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 "cart_pole.h"
18 
19 #include <third_party/box2d/box2d.h>
20 
21 namespace cart_pole {
22 
23 class World {
24  public:
25  World(float initial_angle, const CartPole* domain);
26 
27  // advances the physical simulation one step, returning false
28  // if the state reaches one of the termination conditions
29  bool simStep();
30 
31  // world features
32  float cartDistance() const { return cart_->GetPosition().x; }
33  float cartVelocity() const { return cart_->GetLinearVelocity().x; }
34  float poleAngle() const { return pole_->GetAngle(); }
35  float poleAngularVelocity() const { return pole_->GetAngularVelocity(); }
36 
37  // actuators
38  void moveCart(float force);
39 
40  const CartPole* domain() const { return domain_; }
41 
42  b2World* box2dWorld() { return &b2_world_; }
43 
44  private:
45  b2World b2_world_;
46 
47  b2Body* cart_ = nullptr;
48  b2Body* pole_ = nullptr;
49 
50  const CartPole* domain_ = nullptr;
51 };
52 
53 } // namespace cart_pole
Definition: agent.cpp:18