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 "ballistics.h"
18 
19 #include <third_party/box2d/box2d.h>
20 
21 namespace ballistics {
22 
23 class World {
24  public:
25  World(b2Vec2 target_pos, const Ballistics* domain);
26 
27  // creates a projectile with the initial velocity and the given angle (radians)
28  void fireProjectile(float aim_angle);
29 
30  // advances the physical simulation one step, returning false
31  // if the state reaches one of the termination conditions
32  bool simStep();
33 
34  // world features
35  b2Vec2 projectilePosition() const { return projectile_->GetPosition(); }
36  b2Vec2 targetPosition() const { return target_->GetPosition(); }
37 
38  float verticalLimit() const { return vertical_limit_; }
39  void setVerticalLimit(float y) { vertical_limit_ = y; }
40 
41  const Ballistics* domain() const { return domain_; }
42 
43  b2World* box2dWorld() { return &b2_world_; }
44 
45  private:
46  b2World b2_world_;
47  b2Body* target_ = nullptr;
48  b2Body* projectile_ = nullptr;
49 
50  float vertical_limit_ = 0;
51 
52  const Ballistics* domain_ = nullptr;
53 };
54 
55 } // namespace ballistics
Definition: agent.cpp:18