Darwin Neuroevolution Framework
board.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/stringify.h>
18 
19 #include <initializer_list>
20 #include <string>
21 #include <vector>
22 using namespace std;
23 
24 namespace conquest {
25 
26 enum class BoardConfiguration {
27  Triangle,
28  Diamond,
29  SimplifiedDiamond,
30  Hexagon,
31  SimplifiedHexagon,
32 };
33 
34 inline auto customStringify(core::TypeTag<BoardConfiguration>) {
36  { BoardConfiguration::Triangle, "triangle" },
37  { BoardConfiguration::Diamond, "diamond" },
38  { BoardConfiguration::SimplifiedDiamond, "simple diamond" },
39  { BoardConfiguration::Hexagon, "hexagon" },
40  { BoardConfiguration::SimplifiedHexagon, "simple hexagon" },
41  };
42  return stringify;
43 }
44 
45 // the board configuration
46 struct Board {
47  struct Node {
48  int x;
49  int y;
50  };
51 
52  struct Edge {
53  int src;
54  int dst;
55  };
56 
57  struct StartNodes {
58  int blue_node;
59  int red_node;
60  };
61 
62  struct Arc {
63  int src;
64  int dst;
65  double length;
66  };
67 
68  vector<Node> nodes;
69  vector<Arc> arcs;
70  vector<StartNodes> start_nodes;
71 
72  Board(initializer_list<Node> nodes,
73  initializer_list<Edge> edges,
74  initializer_list<StartNodes> start_nodes);
75 
76  static const Board* getBoard(BoardConfiguration configuration);
77 };
78 
79 } // namespace conquest
Definition: ann_player.cpp:25
STL namespace.
Handles types with a fixed, known set of values (enumerations for example)
Definition: stringify.h:85
const Stringify< T > * stringify()
Returns the stringifier for type T.
Definition: stringify.h:166