com.massisframework.massis.ai.sposh.senses.NearTarget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of massis-ai-sposh Show documentation
Show all versions of massis-ai-sposh Show documentation
SPOSH High Level Controller
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.massisframework.massis.ai.sposh.senses;
import com.massisframework.massis.ai.sposh.SimulationContext;
import cz.cuni.amis.pogamut.sposh.executor.PrimitiveInfo;
/**
* Returns if the agent is near to its target,
*
* @author rpax
*/
@PrimitiveInfo(name = "Near to target", description = "Returns if the agent is near to its target")
public class NearTarget extends
SimulationSense {
public NearTarget(SimulationContext ctx) {
super(ctx);
}
public Boolean query() {
return this.ctx.getTarget() != null
&& this.ctx.getTarget().distance2D(
this.ctx.getBot().getLocation()) < this.ctx.getBot()
.getMaxSpeed()
+ this.ctx.getBot().getBodyRadius();
}
}