jadex.micro.examples.gameoflife.GameOfLifeProcess Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-micro Show documentation
Show all versions of jadex-applications-micro Show documentation
The Jadex micro applications package contains several example applications, benchmarks and testcases using micro agents.
package jadex.micro.examples.gameoflife;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import jadex.bridge.service.types.clock.IClockService;
import jadex.commons.SimplePropertyObject;
import jadex.extension.envsupport.environment.IEnvironmentSpace;
import jadex.extension.envsupport.environment.ISpaceObject;
import jadex.extension.envsupport.environment.ISpaceProcess;
import jadex.extension.envsupport.environment.space2d.Grid2D;
import jadex.extension.envsupport.environment.space2d.Space2D;
import jadex.extension.envsupport.math.Vector1Int;
import jadex.extension.envsupport.math.Vector2Int;
/**
* Environment process for creating wastes.
*/
public class GameOfLifeProcess extends SimplePropertyObject implements ISpaceProcess
{
//-------- attributes --------
/** The last tick. */
protected double lasttick;
//-------- ISpaceProcess interface --------
/**
* This method will be executed by the object before the process gets added
* to the execution queue.
* @param clock The clock.
* @param space The space this process is running in.
*/
public void start(IClockService clock, IEnvironmentSpace space)
{
this.lasttick = clock.getTick();
// Initialize the field.
Space2D grid = (Space2D)space;
int sizex = grid.getAreaSize().getXAsInteger();
int sizey = grid.getAreaSize().getYAsInteger();
for(int x=0; x0.7);
props.put("alive", alive);
props.put(Space2D.PROPERTY_POSITION, new Vector2Int(x, y));
grid.createSpaceObject("cell", props, null);
}
}
// System.out.println("create waste process started.");
}
/**
* This method will be executed by the object before the process is removed
* from the execution queue.
* @param clock The clock.
* @param space The space this process is running in.
*/
public void shutdown(IEnvironmentSpace space)
{
// System.out.println("create waste process shutdowned.");
}
/**
* Executes the environment process
* @param clock The clock.
* @param space The space this process is running in.
*/
public void execute(IClockService clock, IEnvironmentSpace space)
{
// System.out.println("process called: "+space);
Grid2D grid = (Grid2D)space;
long rate = getProperty("rate")!=null?
((Number)getProperty("rate")).longValue(): 3;
if(lasttick+rate