add separate class for intern Ant representation and adopt gui cell size to panel size

This commit is contained in:
Jan Löwenstrom 2019-12-09 12:08:53 +01:00
parent c11cc2c3f2
commit 2fb218a129
7 changed files with 56 additions and 32 deletions

View File

@ -5,13 +5,9 @@
<output-test url="file://$MODULE_DIR$/build/classes/java/test" />
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
<excludeFolder url="file://$MODULE_DIR$/build" />
</content>
<content url="file://$MODULE_DIR$/build/generated/sources/annotationProcessor/java/main">
<sourceFolder url="file://$MODULE_DIR$/build/generated/sources/annotationProcessor/java/main" isTestSource="false" generated="true" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" scope="PROVIDED" name="Gradle: org.projectlombok:lombok:1.18.10" level="project" />

View File

@ -0,0 +1,22 @@
package evironment.antGame;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.Setter;
import java.awt.*;
@AllArgsConstructor
@Getter
@Setter
public class Ant {
private Point pos;
private boolean spawned;
@Getter(AccessLevel.NONE)
private boolean hasFood;
public boolean hasFood(){
return hasFood;
}
}

View File

@ -14,7 +14,7 @@ public class AntWorld {
* Intern (backend) representation of the ant.
* The AntWorld essentially acts like the game host of the original AntGame.
*/
private MyAnt myAnt;
private Ant myAnt;
/**
* The client agent. In the original AntGame the host would send jade messages
* of the current observation to each client on every tick.
@ -46,16 +46,11 @@ public class AntWorld {
public MainFrame getGui(){
return gui;
}
public AntWorld(){
this(Constants.DEFAULT_GRID_WIDTH, Constants.DEFAULT_GRID_HEIGHT, Constants.DEFAULT_FOOD_DENSITY);
}
public class MyAnt{
public Point pos;
public boolean hasFood;
public boolean spawned;
}
public StepResult step(DiscreteAction<AntAction> action){
AntObservation observation;
State newState;
@ -63,18 +58,17 @@ public class AntWorld {
String info = "";
boolean done = false;
if(!myAnt.spawned){
myAnt.spawned = true;
myAnt.pos = grid.getStartPoint();
observation = new AntObservation(grid.getCell(myAnt.pos), myAnt.pos, myAnt.hasFood);
if(!myAnt.isSpawned()){
myAnt.setSpawned(true);
myAnt.setPos(grid.getStartPoint());
observation = new AntObservation(grid.getCell(myAnt.getPos()), myAnt.getPos(), myAnt.hasFood());
newState = antAgent.feedObservation(observation);
reward = 0.0;
return new StepResult(newState, reward, false, "Just spawned on the map");
}
Cell currentCell = grid.getCell(myAnt.pos);
Point potentialNextPos = new Point(myAnt.pos.x, myAnt.pos.y);
Cell currentCell = grid.getCell(myAnt.getPos());
Point potentialNextPos = new Point(myAnt.getPos().x, myAnt.getPos().y);
boolean stayOnCell = true;
// flag to enable a check if all food has been collected only fired if food was dropped
// on the starting position
@ -98,7 +92,7 @@ public class AntWorld {
stayOnCell = false;
break;
case PICK_UP:
if(myAnt.hasFood){
if(myAnt.hasFood()){
// Ant tries to pick up food but can only hold one piece
reward = Reward.FOOD_PICK_UP_FAIL_HAS_FOOD_ALREADY;
}else if(currentCell.getFood() == 0){
@ -107,18 +101,18 @@ public class AntWorld {
}else if(currentCell.getFood() > 0){
// Ant successfully picks up food
currentCell.setFood(currentCell.getFood() - 1);
myAnt.hasFood = true;
myAnt.setHasFood(true);
reward = Reward.FOOD_DROP_DOWN_SUCCESS;
}
break;
case DROP_DOWN:
if(!myAnt.hasFood){
if(!myAnt.hasFood()){
// Ant had no food to drop
reward = Reward.FOOD_DROP_DOWN_FAIL_NO_FOOD;
}else{
// Drop food onto the ground
currentCell.setFood(currentCell.getFood() + 1);
myAnt.hasFood = false;
myAnt.setHasFood(false);
// negative reward if the agent drops food on any other field
// than the starting point
@ -147,8 +141,8 @@ public class AntWorld {
// valid movement
if(!stayOnCell){
myAnt.pos = potentialNextPos;
if(antAgent.getCell(myAnt.pos).getType() == CellType.UNKNOWN){
myAnt.setPos(potentialNextPos);
if(antAgent.getCell(myAnt.getPos()).getType() == CellType.UNKNOWN){
// the ant will move to a cell that was previously unknown
reward = Reward.UNKNOWN_FIELD_EXPLORED;
}else{
@ -157,7 +151,7 @@ public class AntWorld {
}
// get observation after action was computed
observation = new AntObservation(grid.getCell(myAnt.pos), myAnt.pos, myAnt.hasFood);
observation = new AntObservation(grid.getCell(myAnt.getPos()), myAnt.getPos(), myAnt.hasFood());
// let the ant agent process the observation to create a valid markov state
newState = antAgent.feedObservation(observation);
@ -183,7 +177,7 @@ public class AntWorld {
public void reset() {
RNG.reseed();
grid.initRandomWorld();
myAnt = new MyAnt();
myAnt = new Ant(new Point(-1,-1), false, false);
}
public void setMaxEpisodeLength(int maxTicks){
@ -197,12 +191,12 @@ public class AntWorld {
return grid.getGrid();
}
public MyAnt getMyAnt(){
public Ant getAnt(){
return myAnt;
}
public static void main(String[] args) {
RNG.setSeed(1993);
AntWorld a = new AntWorld(30, 30, 0.1);
AntWorld a = new AntWorld(10, 10, 0.1);
System.out.println("ayay");
a.getGui().repaint();
for(int i = 0; i< 10; ++i){

View File

@ -1,7 +1,7 @@
package evironment.antGame;
public class Constants {
public static final int DEFAULT_GRID_WIDTH = 30;
public static final int DEFAULT_GRID_HEIGHT = 30;
public static final int DEFAULT_GRID_WIDTH = 10;
public static final int DEFAULT_GRID_HEIGHT = 10;
public static final double DEFAULT_FOOD_DENSITY = 0.1;
}

View File

@ -7,11 +7,14 @@ import java.awt.*;
public class CellsScrollPane extends JScrollPane {
private int cellSize;
private final int paneWidth = 500;
private final int paneHeight = 500;
public CellsScrollPane(Cell[][] cells, int size){
super();
cellSize = size;
setPreferredSize(new Dimension(500, 500));
setPreferredSize(new Dimension(paneWidth, paneHeight));
cellSize = (paneWidth- cells.length) /cells.length;
JPanel worldPanel = new JPanel(){
{
setPreferredSize(new Dimension(cells.length * cellSize, cells[0].length * cellSize));

View File

@ -0,0 +1,9 @@
package evironment.antGame.gui;
import javax.swing.*;
public class HistoryPanel extends JPanel {
public HistoryPanel(){
}
}

View File

@ -10,7 +10,7 @@ public class MainFrame extends JFrame {
public MainFrame(AntWorld antWorld, AntAgent antAgent){
setLayout(new BorderLayout());
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
CellsScrollPane worldPane = new CellsScrollPane(antWorld.getCellArray(), 10);
CellsScrollPane antBrainPane = new CellsScrollPane(antAgent.getKnownWorld(), 10);