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/car.h>
21 #include <core/sim/track.h>
22 #include <core/properties.h>
23 
24 #include <memory>
25 using namespace std;
26 
27 namespace car_track {
28 
29 struct SceneVariables : public core::PropertySet {
30  PROPERTY(car_x, float, 0, "Car x coordinate");
31  PROPERTY(car_y, float, 0, "Car y coordinate");
32  PROPERTY(car_vx, float, 0, "Car velocity (x component)");
33  PROPERTY(car_vy, float, 0, "Car velocity (y component)");
34  PROPERTY(car_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 CarTrack* domain);
45 
46  const SceneVariables* variables() const override { return &variables_; }
47 
48  const Config* config() const override { return &domain_->config(); }
49 
50  sim::Car* car() { return car_.get(); }
51 
52  const sim::Track* track() const { return track_; }
53 
54  const CarTrack* domain() const { return domain_; }
55 
57  float fitness() const;
58 
59  void preStep() override;
60  void postStep(float dt) override;
61 
62  private:
63  void updateVariables();
64  void updateFitness();
65 
66  private:
67  float fitness_ = 0;
68  int distance_ = 0;
69  unique_ptr<sim::Car> car_;
70 
71  SceneVariables variables_;
72  const sim::Track* track_ = nullptr;
73  const CarTrack* domain_ = nullptr;
74 };
75 
76 } // namespace car_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