
jadex.bdi.examples.garbagecollector_classic.TakePlan Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-bdi Show documentation
Show all versions of jadex-applications-bdi Show documentation
The Jadex BDI applications package contain
several example applications, benchmarks and
testcases using BDI agents.
The newest version!
package jadex.bdi.examples.garbagecollector_classic;
import jadex.bdi.runtime.IGoal;
import jadex.bdi.runtime.Plan;
/**
* Take some garbage and bring it to the burner.
*/
public class TakePlan extends Plan
{
/**
* The plan body.
*/
public void body()
{
Environment env = (Environment)getBeliefbase().getBelief("env").getFact();
// Pickup the garbarge.
IGoal pickup = createGoal("pick");
dispatchSubgoalAndWait(pickup);
// Go to the burner.
Position oldpos = env.getPosition(getComponentName());
IGoal go = createGoal("go");
go.getParameter("pos").setValue(env.getBurnerPosition());
dispatchSubgoalAndWait(go);
// Put down the garbarge.
//System.out.println("Calling drop: "+getAgentName()+" "+getRootGoal());
env.drop(getComponentName());
// Go back.
IGoal goback = createGoal("go");
goback.getParameter("pos").setValue(oldpos);
dispatchSubgoalAndWait(goback);
}
/*
public void aborted()
{
System.out.println("aborted: "+getAgentName()+" "+this);
}
public void failed()
{
System.out.println("failed: "+getAgentName()+" "+this+" "+getException());
getException().printStackTrace();
}
public void passed()
{
System.out.println("passed: "+getAgentName()+" "+this);
}
*/
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy