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/sim/track.h>
22 #include <core/properties.h>
23 
24 #include <memory>
25 using namespace std;
26 
27 namespace drone_track {
28 
29 struct SceneVariables : public core::PropertySet {
30  PROPERTY(drone_x, float, 0, "Drone x coordinate");
31  PROPERTY(drone_y, float, 0, "Drone y coordinate");
32  PROPERTY(drone_vx, float, 0, "Drone velocity (x component)");
33  PROPERTY(drone_vy, float, 0, "Drone velocity (y component)");
34  PROPERTY(drone_dir, float, 0, "Heading angle");
35  PROPERTY(distance, int, 0, "Track distance from the start (one lap is 1.0)");
36 };
37 
38 class Scene : public sim::Scene {
39  public:
40  static constexpr float kWidth = 50;
41  static constexpr float kHeight = 20;
42 
43  public:
44  explicit Scene(const sim::Track* track, const DroneTrack* domain);
45 
46  const SceneVariables* variables() const override { return &variables_; }
47 
48  const Config* config() const override { return &domain_->config(); }
49 
50  sim::Drone* drone() { return drone_.get(); }
51 
52  const sim::Track* track() const { return track_; }
53 
54  const DroneTrack* domain() const { return domain_; }
55 
57  float fitness() const;
58 
59  void postStep(float dt) override;
60 
61  private:
62  void updateVariables();
63  void updateFitness();
64 
65  private:
66  float fitness_ = 0;
67  int distance_ = 0;
68  unique_ptr<sim::Drone> drone_;
69 
70  SceneVariables variables_;
71  const sim::Track* track_ = nullptr;
72  const DroneTrack* domain_ = nullptr;
73 };
74 
75 } // namespace drone_track
High-level physics scene abstraction.
Definition: scene.h:42
STL namespace.
Definition: domain.cpp:28
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388