17 #include "world_map.h" 19 #include <core/darwin.h> 20 #include <core/math_2d.h> 32 static constexpr
int kOutputs = 2;
34 static constexpr
int kOutputMove = 0;
35 static constexpr
int kOutputRotate = 1;
48 : ray(dx, dy), row(row), col(col) {}
52 double last_move_dist = 0;
53 double total_move_dist = 0;
57 int visited_cells = 0;
63 static int inputsCount() {
return g_config.vision_resolution * 2; }
64 static int outputsCount() {
return kOutputs; }
67 void simInit(World* world);
70 float fitness()
const;
71 bool alive()
const {
return health_ > 0; }
72 int health()
const {
return health_; }
75 double angle()
const {
return angle_; }
77 const Stats& stats()
const {
return stats_; }
78 const vector<Ray>& vision()
const {
return vision_; }
85 void rotate(
double angle);
86 double move(
double dist);
87 void updateHealth(
int value);
90 World* world_ =
nullptr;
92 unique_ptr<darwin::Brain> brain_;
94 int initial_health_ = 0;
A basic 2D vector.
Definition: math_2d.h:49
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