//----------------------------------------------------------------------------
// Copyright (C) 2011 Ingrid Nunes
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// To contact the authors:
// http://inf.ufrgs.br/~ingridnunes/bdi4jade/
//
//----------------------------------------------------------------------------
package bdi4jade.examples.compositegoal;
import java.util.HashSet;
import java.util.Set;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import bdi4jade.annotation.Parameter;
import bdi4jade.annotation.Parameter.Direction;
import bdi4jade.belief.BeliefBase;
import bdi4jade.core.Capability;
import bdi4jade.event.GoalEvent;
import bdi4jade.event.GoalFinishedEvent;
import bdi4jade.event.GoalListener;
import bdi4jade.goal.Goal;
import bdi4jade.plan.Plan;
import bdi4jade.plan.PlanLibrary;
import bdi4jade.plan.SimplePlan;
import bdi4jade.util.goal.CompositeGoal;
import bdi4jade.util.goal.ParallelGoal;
import bdi4jade.util.goal.SequentialGoal;
/**
* @author ingrid
*
*/
public class CompositeGoalCapability extends Capability implements GoalListener {
public class MyGoal1 implements Goal {
private static final long serialVersionUID = 3405041038738876061L;
private String msg;
public MyGoal1(String msg) {
this.msg = msg;
}
@Parameter(direction = Direction.OUT)
public String getMsg() {
return msg;
}
@Override
public String toString() {
return getClass().getSimpleName() + ": " + msg;
}
};
public class MyGoal2 implements Goal {
private static final long serialVersionUID = 3405041038738876061L;
private String message;
@Parameter(direction = Direction.INOUT)
public String getMsg() {
return message;
}
public void setMsg(String msg) {
this.message = msg;
}
@Override
public String toString() {
return getClass().getSimpleName() + ": " + message;
}
};
public class MyGoal3 implements Goal {
private static final long serialVersionUID = 3405041038738876061L;
private String msg;
@Parameter(direction = Direction.IN)
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
@Override
public String toString() {
return getClass().getSimpleName() + ": " + msg;
}
};
private static final Log log = LogFactory
.getLog(CompositeGoalCapability.class);
private static final long serialVersionUID = -4800805796961540570L;
private static Set<Plan> getPlans() {
Set<Plan> plans = new HashSet<Plan>();
SimplePlan plan = new SimplePlan(MyPlan.class);
plan.addGoal(MyGoal1.class);
plan.addGoal(MyGoal2.class);
plan.addGoal(MyGoal3.class);
plans.add(plan);
return plans;
}
private boolean sequential;
public CompositeGoalCapability(boolean sequential) {
super(new BeliefBase(), new PlanLibrary(getPlans()));
this.sequential = sequential;
}
@Override
public void goalPerformed(GoalEvent event) {
if (event instanceof GoalFinishedEvent
&& event.getGoal() instanceof CompositeGoal) {
log.info(event.getGoal() + " Status: "
+ ((GoalFinishedEvent) event).getStatus());
log.info("Goal finished!! Removing capability of this agent...");
myAgent.removeCapability(this);
}
}
@Override
protected void setup() {
Goal[] goals = { new MyGoal1("Hello World!"), new MyGoal2(),
new MyGoal3() };
CompositeGoal compositeGoal = null;
if (this.sequential) {
compositeGoal = new SequentialGoal(goals);
} else {
compositeGoal = new ParallelGoal(goals);
}
this.myAgent.addGoal(compositeGoal, this);
}
}