Darwin Neuroevolution Framework
scene.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 "domain.h"
18 
19 #include <core/sim/camera.h>
20 #include <core/sim/scene.h>
21 #include <core/sim/drone.h>
22 #include <core/properties.h>
23 
24 #include <memory>
25 #include <random>
26 using namespace std;
27 
28 namespace drone_follow {
29 
30 using sim::Camera;
31 using sim::Drone;
32 
33 struct SceneVariables : public core::PropertySet {
34  PROPERTY(drone_x, float, 0, "Drone x coordinate");
35  PROPERTY(drone_y, float, 0, "Drone y coordinate");
36  PROPERTY(drone_vx, float, 0, "Drone velocity (x component)");
37  PROPERTY(drone_vy, float, 0, "Drone velocity (y component)");
38  PROPERTY(drone_dir, float, 0, "Heading angle");
39  PROPERTY(target_dist, float, 0, "Distance from target");
40 };
41 
42 class Scene : public sim::Scene {
43  static constexpr float kWidth = 20;
44  static constexpr float kHeight = 20;
45 
46  public:
47  using Seed = std::random_device::result_type;
48 
49  public:
50  explicit Scene(Seed seed, const DroneFollow* domain);
51 
52  const SceneVariables* variables() const override { return &variables_; }
53 
54  const Config* config() const override { return &domain_->config(); }
55 
56  Drone* drone() { return drone_.get(); }
57  Drone* targetDrone() { return target_drone_.get(); }
58 
59  const DroneFollow* domain() const { return domain_; }
60 
62  float fitness() const { return fitness_; }
63 
64  void preStep() override;
65  void postStep(float dt) override;
66 
67  private:
68  unique_ptr<Drone> createTargetDrone();
69  void createLight(b2Body* body, const b2Vec2& pos, const b2Color& color);
70  void createDebris();
71  void createRoundDebris(const b2Vec2& pos, float radius);
72  void createBoxDebris(const b2Vec2& pos, float width, float height);
73  void createColumns();
74  void createColumnFixture(b2Body* body, const b2Vec2& pos, const b2Color& color);
75  void updateVariables();
76  float targetDistance() const;
77  void updateFitness();
78  void generateTargetPos();
79 
80  private:
81  float fitness_ = 0;
82  unique_ptr<Drone> drone_;
83 
84  default_random_engine rnd_;
85  unique_ptr<Drone> target_drone_;
86  b2Vec2 start_pos_;
87  b2Vec2 target_pos_;
88 
89  SceneVariables variables_;
90  const DroneFollow* domain_ = nullptr;
91 };
92 
93 } // namespace drone_follow
High-level physics scene abstraction.
Definition: scene.h:42
STL namespace.
Definition: domain.cpp:27
Raytraced rendering of a 2d world.
Definition: camera.h:39
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388