Darwin Neuroevolution Framework
world_map.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 <core/math_2d.h>
18 #include <core/matrix.h>
19 #include <core/properties.h>
20 
21 #include <algorithm>
22 #include <vector>
23 using namespace std;
24 
25 namespace harvester {
26 
28 struct Config : public core::PropertySet {
29  PROPERTY(test_maps, int, 5, "Number of test maps");
30 
31  // map configuration
32  PROPERTY(map_width, int, 64, "Map width");
33  PROPERTY(map_height, int, 64, "Map height");
34 
35  PROPERTY(map_walls, int, 70, "Number of generated walls");
36  PROPERTY(map_good_fruits, int, 40, "Number of 'good' fruits");
37  PROPERTY(map_junk_fruits, int, 30, "Number of 'junk' fruits");
38  PROPERTY(map_bad_fruits, int, 30, "Number of 'bad' fruits");
39 
40  // robot configuration
41  PROPERTY(vision_resolution, int, 3, "Number of vision rays");
42  PROPERTY(vision_fov,
43  double,
45  "Vision field of view (in radians)");
46 
47  PROPERTY(robot_size, double, 0.6, "Robot size");
48 
49  PROPERTY(exclusive_actuators,
50  bool,
51  true,
52  "At each step, the robot can either move or turn, but not both");
53 
54  PROPERTY(move_speed, double, 1, "Move speed");
55  PROPERTY(rotation_speed,
56  double,
58  "Rotation speed (in radians)");
59 
60  // health parameters
61  PROPERTY(initial_health, int, 1000, "Initial health");
62  PROPERTY(forward_move_drain, double, 2, "Health drain when moving forward");
63  PROPERTY(reverse_move_drain, double, 6, "Health drain when moving backward");
64  PROPERTY(good_fruit_health, int, 30, "Health update when eating a 'good' fruit");
65  PROPERTY(junk_fruit_health, int, 5, "Health update when eating a 'junk' fruit");
66  PROPERTY(bad_fruit_health, int, -100, "Health update when eating a 'bad' fruit");
67 };
68 
69 extern Config g_config;
70 
71 struct WorldMap {
72  enum class Cell : char { Empty, Visited, FruitGood, FruitBad, FruitJunk, Wall };
73 
74  struct Pos {
75  size_t row = -1;
76  size_t col = -1;
77  };
78 
79  core::Matrix<Cell> cells;
80 
81  public:
82  WorldMap(int height, int width) : cells(height, width) {
83  for (auto& cell : cells.values)
84  cell = Cell::Empty;
85  }
86 
87  bool generate(int max_attempts = 1000);
88 
89  Pos startPosition() const;
90 
91  private:
92  bool isValid() const;
93 };
94 
95 } // namespace harvester
STL namespace.
constexpr Scalar degreesToRadians(Scalar degrees)
Degree to Radian conversion
Definition: math_2d.h:44
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
Harvester domain configuration.
Definition: world_map.h:28
Definition: harvester.cpp:32