-
-
Notifications
You must be signed in to change notification settings - Fork 404
/
Seed.cpp
95 lines (67 loc) · 2.84 KB
/
Seed.cpp
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include "ViZDoom.h"
#include <iostream>
#include <vector>
#include <cstdlib>
#include <ctime>
#include <chrono>
#include <thread>
void sleep(unsigned int time){
std::this_thread::sleep_for(std::chrono::milliseconds(time));
}
using namespace vizdoom;
int main(){
std::cout << "\n\nSEED EXAMPLE\n\n";
DoomGame *game = new DoomGame();
// Choose scenario config file you wish to be watched by agent.
// Don't load two configs cause the second will overwrite the first one.
// Multiple config files are ok but combining these ones doesn't make much sense.
game->loadConfig("../../scenarios/basic.cfg");
// game->loadConfig("../../scenarios/deadly_corridor.cfg");
// game->loadConfig("../../scenarios/deathmatch.cfg");
// game->loadConfig("../../scenarios/defend_the_center.cfg");
// game->loadConfig("../../scenarios/defend_the_line.cfg");
// game->loadConfig("../../scenarios/health_gathering.cfg");
// game->loadConfig("../../scenarios/my_way_home.cfg");
// game->loadConfig("../../scenarios/predict_position.cfg");
// game->loadConfig("../../scenarios/take_cover.cfg");
game->setDoomGamePath("../../bin/freedoom2.wad");
//game->setDoomGamePath("../../bin/doom2.wad"); // Not provided with environment due to licences.
game->setScreenResolution(RES_640X480);
// Lets make episode shorter and observe starting position of Cacodemon.
game->setEpisodeTimeout(50);
unsigned int seed = 666;
// Sets the seed. It could be after init as well.
game->setSeed(seed);
game->init();
// Define some actions.
std::vector<double> actions[3];
actions[0] = {1, 0, 0};
actions[1] = {0, 1, 0};
actions[2] = {0, 0, 1};
std::srand(time(0));
int episodes = 10;
unsigned int sleepTime = 28;
for (int i = 0; i < episodes; ++i) {
std::cout << "Episode #" << i + 1 << "\n";
// Seed can be changed anytime. It will affect next episodes.
// game->setSeed(seed);
game->newEpisode();
while (!game->isEpisodeFinished()) {
// Get the state
GameStatePtr state = game->getState();
// Make random action and get reward
double reward = game->makeAction(actions[std::rand() % 3]);
std::cout << "State #" << state->number << "\n";
std::cout << "Action reward: " << reward << "\n";
std::cout << "Seed: " << game->getSeed() << "\n";
std::cout << "=====================\n";
if(sleepTime) sleep(sleepTime);
}
std::cout << "Episode finished.\n";
std::cout << "Total reward: " << game->getTotalReward() << "\n";
std::cout << "************************\n";
}
// It will be done automatically in destructor but after close You can init it again with different settings.
game->close();
delete game;
}