-
Notifications
You must be signed in to change notification settings - Fork 0
/
Seed.java
73 lines (53 loc) · 2.67 KB
/
Seed.java
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
import vizdoom.*;
import java.util.*;
import java.lang.*;
public class Seed {
public static void main (String[] args) {
System.out.println("\nSEED EXAMPLE\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/deadly_corridor.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/basic.cfg");
game.setViZDoomPath("../../bin/vizdoom");
// Sets path to doom2 iwad resource file which contains the actual doom game-> Default is "./doom2.wad".
game.setDoomGamePath("../../bin/freedoom2.wad");
//game.setDoomGamePath("../../bin/doom2.wad"); // Not provided with environment due to licences.
game.setScreenResolution(ScreenResolution.RES_640X480);
int seed = 666;
// Sets the seed. It could be after init as well.
game.setSeed(seed);
game.init();
List<double[]> actions = new ArrayList<double[]>();
actions.add(new double[] {1, 0, 1});
actions.add(new double[] {0, 1, 1});
actions.add(new double[] {0, 0, 1});
Random ran = new Random();
int episodes = 10;
for(int i = 0; i < episodes; i++){
System.out.println("Episode #" + (i + 1));
game.newEpisode();
while(!game.isEpisodeFinished()){
// Gets the state and possibly to something with it
GameState state = game.getState();
// Make random action and get reward
double reward = game.makeAction(actions.get(ran.nextInt(3)));
System.out.println("State #" + state.number);
System.out.println("Action Reward: " + reward);
System.out.println("Seed: " + game.getSeed());
System.out.println("=====================");
}
System.out.println("Episode finished!");
System.out.println("Total reward: " + game.getTotalReward());
System.out.println("************************");
}
// It will be done automatically in destructor but after close You can init it again with different settings.
game.close();
}
}