Darwin Neuroevolution Framework
robot.h
1 // Copyright 2018 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 "world_map.h"
18 
19 #include <core/darwin.h>
20 #include <core/math_2d.h>
21 
22 #include <memory>
23 #include <vector>
24 using namespace std;
25 
26 namespace harvester {
27 
28 class World;
29 
30 // TODO: revisit the robot interface
31 class Robot {
32  static constexpr int kOutputs = 2;
33 
34  static constexpr int kOutputMove = 0;
35  static constexpr int kOutputRotate = 1;
36 
37  struct Ray {
38  // relative to the robot's position
39  math::Vector2d ray;
40 
41  // cached hit map cell
42  int row = -1;
43  int col = -1;
44 
45  Ray() = default;
46 
47  Ray(math::Scalar dx, math::Scalar dy, int row, int col)
48  : ray(dx, dy), row(row), col(col) {}
49  };
50 
51  struct Stats {
52  double last_move_dist = 0;
53  double total_move_dist = 0;
54  int good_fruits = 0;
55  int bad_fruits = 0;
56  int junk_fruits = 0;
57  int visited_cells = 0;
58  };
59 
60  public:
61  Robot();
62 
63  static int inputsCount() { return g_config.vision_resolution * 2; }
64  static int outputsCount() { return kOutputs; }
65 
66  void grow(const darwin::Genotype* genotype, int initial_health);
67  void simInit(World* world);
68  void simStep();
69 
70  float fitness() const;
71  bool alive() const { return health_ > 0; }
72  int health() const { return health_; }
73 
74  const math::Vector2d& position() const { return pos_; }
75  double angle() const { return angle_; }
76 
77  const Stats& stats() const { return stats_; }
78  const vector<Ray>& vision() const { return vision_; }
79 
80  private:
81  void resetState();
82  void updateVision();
83  Ray castRay(const math::Vector2d& v) const;
84 
85  void rotate(double angle);
86  double move(double dist);
87  void updateHealth(int value);
88 
89  private:
90  World* world_ = nullptr;
91 
92  unique_ptr<darwin::Brain> brain_;
93 
94  int initial_health_ = 0;
95  int health_ = 0;
96 
97  // robot position within the world
98  math::Vector2d pos_;
99  double angle_ = 0;
100 
101  // vision
102  vector<Ray> vision_;
103 
104  Stats stats_;
105 };
106 
107 } // namespace harvester
A basic 2D vector.
Definition: math_2d.h:49
STL namespace.
Definition: harvester.cpp:32
double Scalar
The scalar type used with general-purpose math utilities.
Definition: math_2d.h:25
The interface to the population-specific "genetic material", the Genotype
Definition: darwin.h:126