All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.massisframework.massis.ai.sposh.senses.NearTarget Maven / Gradle / Ivy

There is a newer version: 1.2.22
Show newest version
/*
 * 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();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy