Darwin Neuroevolution Framework
track.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 <core/utils.h>
18 #include <core/math_2d.h>
19 #include <core/outline_2d.h>
20 #include <third_party/box2d/box2d.h>
21 
22 #include <vector>
23 #include <random>
24 using namespace std;
25 
26 namespace sim {
27 
28 struct TrackConfig {
29  float width = 1.8f;
30  int complexity = 10;
31  int resolution = 500;
32  float area_width = 40.0f;
33  float area_height = 20.0f;
34  float curb_width = 0.1f;
35  bool gates = true;
36  bool solid_gate_posts = true;
37  float curb_friction = 0.5f;
38 };
39 
40 class Track : public core::NonCopyable {
41  public:
42  using Seed = std::random_device::result_type;
43 
44  public:
45  Track(Seed seed, const TrackConfig& config);
46 
47  int nodesCount() const { return int(outer_outline_.nodes().size()); }
48  int updateTrackDistance(int old_distance, const b2Vec2& pos) const;
49  const math::Outline::Node& distanceToNode(int distance) const;
50 
51  void createFixtures(b2World* world) const;
52 
53  // mostly intended for rendering tracks, everything else
54  // should use the distance methods
55  const math::Outline& innerOutline() const { return inner_outline_; }
56  const math::Outline& outerOutline() const { return outer_outline_; }
57 
58  private:
59  int distanceToNodeIndex(int distance) const;
60  void generateTrackPath();
61 
62  void createCurb(b2World* world,
63  const b2Color& color,
64  const math::Outline& outline,
65  float curb_width) const;
66 
67  void createGates(b2World* world) const;
68 
69  private:
70  default_random_engine rnd_;
71  const TrackConfig config_;
72 
73  math::Outline inner_outline_;
74  math::Outline outer_outline_;
75 };
76 
77 } // namespace sim
STL namespace.
Definition: accelerometer.cpp:19
Classes derived from this are not copyable or movable.
Definition: utils.h:69
A spline aproximation.
Definition: outline_2d.h:28