render 5 frames for every RL step
- temp. repainting JComponent in env.step()
This commit is contained in:
parent
ec86006a07
commit
b7d991cc92
|
@ -16,12 +16,14 @@ public class DinoWorld implements Environment<DinoAction>, Visualizable {
|
||||||
private Obstacle currentObstacle;
|
private Obstacle currentObstacle;
|
||||||
private boolean randomObstacleSpeed;
|
private boolean randomObstacleSpeed;
|
||||||
private boolean randomObstacleDistance;
|
private boolean randomObstacleDistance;
|
||||||
|
private DinoWorldComponent comp;
|
||||||
|
|
||||||
public DinoWorld(boolean randomObstacleSpeed, boolean randomObstacleDistance){
|
public DinoWorld(boolean randomObstacleSpeed, boolean randomObstacleDistance){
|
||||||
this.randomObstacleSpeed = randomObstacleSpeed;
|
this.randomObstacleSpeed = randomObstacleSpeed;
|
||||||
this.randomObstacleDistance = randomObstacleDistance;
|
this.randomObstacleDistance = randomObstacleDistance;
|
||||||
dino = new Dino(Config.DINO_SIZE, Config.DINO_STARTING_X, Config.FRAME_HEIGHT - Config.GROUND_Y - Config.DINO_SIZE, 0, 0, Color.GREEN);
|
dino = new Dino(Config.DINO_SIZE, Config.DINO_STARTING_X, Config.FRAME_HEIGHT - Config.GROUND_Y - Config.DINO_SIZE, 0, 0, Color.GREEN);
|
||||||
spawnNewObstacle();
|
spawnNewObstacle();
|
||||||
|
comp = new DinoWorldComponent(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
public DinoWorld(){
|
public DinoWorld(){
|
||||||
|
@ -54,17 +56,19 @@ public class DinoWorld implements Environment<DinoAction>, Visualizable {
|
||||||
dino.jump();
|
dino.jump();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for(int i= 0; i < 5; ++i){
|
||||||
dino.tick();
|
dino.tick();
|
||||||
currentObstacle.tick();
|
currentObstacle.tick();
|
||||||
if(currentObstacle.getX() < -Config.OBSTACLE_SIZE){
|
if(currentObstacle.getX() < -Config.OBSTACLE_SIZE){
|
||||||
spawnNewObstacle();
|
spawnNewObstacle();
|
||||||
}
|
}
|
||||||
|
comp.repaint();
|
||||||
if(ranIntoObstacle()){
|
if(ranIntoObstacle()){
|
||||||
done = true;
|
done = true;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return new StepResultEnvironment(new DinoState(getDistanceToObstacle()), reward, done, "");
|
return new StepResultEnvironment(new DinoStateWithSpeed(getDistanceToObstacle(), getCurrentObstacle().getDx()), reward, done, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -101,6 +105,6 @@ public class DinoWorld implements Environment<DinoAction>, Visualizable {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public JComponent visualize() {
|
public JComponent visualize() {
|
||||||
return new DinoWorldComponent(this);
|
return comp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue