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/scene.h>
20 #include <core/sim/drone.h>
21 #include <core/properties.h>
22 
23 #include <memory>
24 #include <random>
25 using namespace std;
26 
27 namespace drone_vision {
28 
29 using sim::Drone;
30 
31 struct SceneVariables : public core::PropertySet {
32  PROPERTY(drone_x, float, 0, "Drone x coordinate");
33  PROPERTY(drone_y, float, 0, "Drone y coordinate");
34  PROPERTY(drone_vx, float, 0, "Drone velocity (x component)");
35  PROPERTY(drone_vy, float, 0, "Drone velocity (y component)");
36  PROPERTY(drone_dir, float, 0, "Heading angle");
37  PROPERTY(target_angle, float, 0, "Angle between drone direction and target");
38 };
39 
40 class Scene : public sim::Scene {
41  public:
42  explicit Scene(const b2Vec2& target_velocity, const DroneVision* domain);
43 
44  const SceneVariables* variables() const override { return &variables_; }
45 
46  const Config* config() const override { return &domain_->config(); }
47 
48  Drone* drone() { return drone_.get(); }
49 
50  const DroneVision* domain() const { return domain_; }
51 
53  float fitness() const { return fitness_; }
54 
55  void postStep(float dt) override;
56 
57  private:
58  b2Body* createTarget(const b2Vec2& pos, const b2Vec2& v, float radius);
59  void createDebris();
60  void createRoundDebris(const b2Vec2& pos, float radius);
61  void createBoxDebris(const b2Vec2& pos, float width, float height);
62  void createColumns();
63  void createColumnFixture(b2Body* body, const b2Vec2& pos, const b2Color& color);
64  void createLight(b2Body* body, const b2Vec2& pos, const b2Color& color);
65  void updateFitness();
66  void updateVariables();
67 
69  float aimAngle() const;
70 
71  private:
72  b2Body* target_ = nullptr;
73  float fitness_ = 0;
74  unique_ptr<Drone> drone_;
75  SceneVariables variables_;
76  const DroneVision* domain_ = nullptr;
77  default_random_engine rnd_{ random_device{}() };
78 };
79 
80 } // namespace drone_vision
High-level physics scene abstraction.
Definition: scene.h:42
STL namespace.
Definition: domain.cpp:27
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388