17 #include <core/math_2d.h> 18 #include <core/matrix.h> 19 #include <core/properties.h> 29 PROPERTY(test_maps,
int, 5,
"Number of test maps");
32 PROPERTY(map_width,
int, 64,
"Map width");
33 PROPERTY(map_height,
int, 64,
"Map height");
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");
41 PROPERTY(vision_resolution,
int, 3,
"Number of vision rays");
45 "Vision field of view (in radians)");
47 PROPERTY(robot_size,
double, 0.6,
"Robot size");
49 PROPERTY(exclusive_actuators,
52 "At each step, the robot can either move or turn, but not both");
54 PROPERTY(move_speed,
double, 1,
"Move speed");
55 PROPERTY(rotation_speed,
58 "Rotation speed (in radians)");
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");
72 enum class Cell : char { Empty, Visited, FruitGood, FruitBad, FruitJunk, Wall };
82 WorldMap(
int height,
int width) : cells(height, width) {
83 for (
auto& cell : cells.values)
87 bool generate(
int max_attempts = 1000);
89 Pos startPosition()
const;
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