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 <core/darwin.h>
18 
19 namespace find_max_value {
20 
21 struct World;
22 
23 struct Robot {
24  static constexpr int kInputs = 3;
25  static constexpr int kOutputs = 3;
26 
27  enum class Action { None, MoveLeft, MoveRight, Done };
28 
29  static constexpr int kInputLeftAntena = 0;
30  static constexpr int kInputRightAntena = 1;
31  static constexpr int kInputValue = 2;
32 
33  static constexpr int kOutputMoveLeft = 0;
34  static constexpr int kOutputMoveRight = 1;
35  static constexpr int kOutputDone = 2;
36 
37  unique_ptr<darwin::Brain> brain;
38 
39  int pos = 0;
40  int health = 0;
41  float fitness = 0;
42 
43  const World* world = nullptr;
44 
45  void grow(const darwin::Genotype* genotype);
46  bool alive() const { return health > 0; }
47 
48  void simInit(const World* new_world);
49  void simStep();
50 
51  private:
52  Action decideAction() const;
53 };
54 
55 } // namespace find_max_value
Definition: max.h:27
The interface to the population-specific "genetic material", the Genotype
Definition: darwin.h:126