-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathengine.h
52 lines (43 loc) · 1.1 KB
/
engine.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <cstdbool>
#include <iostream>
#include <cstdlib>
#include <ctime>
#include <vector>
#include "ai_functions.h"
#include "enums.h"
#include "move.h"
#include "state.h"
#include "tests.h"
#ifndef ENGINE_H
#define ENGINE_H
void do_random_game();
void print_game_state(GameState* state);
class Agent {
public:
virtual void setup(void) {
srand(time(NULL));
}
virtual void teardown(void) {
;
}
virtual void get_move(GameState* state, Move* bestMove) {
*bestMove = state->getMoves().at(rand() % state->getMoves().size());
}
virtual void do_deployment(GameState* state) {
std::vector<DeploymentMove> deploymentMoves;
do_semirandom_deployment(state, &deploymentMoves);
}
};
class Game {
public:
GameState state;
void setAgent(Player player, Agent* agent);
Player play(int turn_limit, bool verbose);
GameState getGameState();
private:
Agent* redAgent;
Agent* blueAgent;
int lastRedMove;
int lastBlueMove;
};
#endif