19 #include <third_party/box2d/box2d.h> 25 static constexpr
float kPoleHalfWidth = 0.02f;
26 static constexpr
float kGroundY = 0.1f;
27 static constexpr
float kGroundFriction = 100.0f;
30 World(
float initial_angle,
float target_position,
const Unicycle* domain);
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(); }
42 float targetPosition()
const {
return target_position_; }
43 void setTargetPosition(
float target_position);
46 void turnWheel(
float torque);
48 const Unicycle* domain()
const {
return domain_; }
51 float fitnessBonus()
const {
return fitness_bonus_; }
53 b2World* box2dWorld() {
return &b2_world_; }
56 b2Body* createGround();
57 b2Body* createPole(
float initial_angle);
58 b2Body* createWheel();
59 void createHinge(b2Body* wheel, b2Body* pole);
63 b2Body* wheel_ =
nullptr;
64 b2Body* pole_ =
nullptr;
66 float fitness_bonus_ = 0;
67 float target_position_ = 0;
68 const Unicycle* domain_ =
nullptr;