GTU.java
package org.opentrafficsim.core.gtu;
import java.awt.Color;
import java.io.Serializable;
import org.djunits.value.vdouble.scalar.Acceleration;
import org.djunits.value.vdouble.scalar.Length;
import org.djunits.value.vdouble.scalar.Speed;
import org.opentrafficsim.base.immutablecollections.ImmutableMap;
import org.opentrafficsim.base.immutablecollections.ImmutableSet;
import org.opentrafficsim.core.dsol.OTSDEVSSimulatorInterface;
import org.opentrafficsim.core.gtu.behavioralcharacteristics.BehavioralCharacteristics;
import org.opentrafficsim.core.gtu.plan.operational.OperationalPlan;
import org.opentrafficsim.core.gtu.plan.strategical.StrategicalPlanner;
import org.opentrafficsim.core.gtu.plan.tactical.TacticalPlanner;
import nl.tudelft.simulation.dsol.animation.Locatable;
import nl.tudelft.simulation.event.EventProducerInterface;
import nl.tudelft.simulation.event.EventType;
/**
* Generalized Travel Unit. <br>
* A GTU is an object (person, car, ship) that can travel over the infrastructure. It has a (directed) location, dimensions, and
* some properties that all GTUs share. The GTU is not bound to any infrastructure and can travel freely in the world. <br>
* For its movement, a GTU uses an OperationalPlan, which indicates a shape in the world with a speed profile that the GTU will
* use to move. The OperationalPlan can be updated or replaced, for which a tactical planner is responsible. A tactical plan can
* for instance be for a car to change two lanes to the left during the next 200 m to be able to make a left turn in 200 m. The
* operational plans are then the implementation of segments of the movement (time, location, speed, acceleration) that the car
* will make to drive on the road and (safely) make the lane changes. On the highest level, a StrategicPlan puts boundary
* conditions on the tactical plans. The strategic plan contains for instance the destination we want to reach and possibly some
* constraints on solutions that the tactical plans have to comply with.
* <p>
* Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
* BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
* <p>
* @version $Revision: 2398 $, $LastChangedDate: 2016-10-18 14:07:25 +0200 (Tue, 18 Oct 2016) $, by $Author: averbraeck $,
* initial version May 15, 2014 <br>
* @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
* @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
*/
public interface GTU extends Locatable, Serializable, EventProducerInterface
{
/** @return the id of the GTU */
String getId();
/** @return the maximum length of the GTU (parallel with driving direction). */
Length getLength();
/** @return the maximum width of the GTU (perpendicular to driving direction). */
Length getWidth();
/** @return the maximum speed of the GTU, in the direction of movement. */
Speed getMaximumSpeed();
/** @return the maximum acceleration of the GTU, in the linear direction. */
Acceleration getMaximumAcceleration();
/** @return the maximum deceleration of the GTU, in the linear direction, stored as a negative number. */
Acceleration getMaximumDeceleration();
/** @return the type of GTU, e.g. TruckType, CarType, BusType. */
GTUType getGTUType();
/** @return the simulator of the GTU. */
OTSDEVSSimulatorInterface getSimulator();
/** @return the reference position of the GTU, by definition (0, 0, 0). */
RelativePosition getReference();
/** @return the front position of the GTU, relative to its reference point. */
RelativePosition getFront();
/** @return the rear position of the GTU, relative to its reference point. */
RelativePosition getRear();
/** @return the center position of the GTU, relative to its reference point. */
RelativePosition getCenter();
/** @return the contour points of the GTU. */
ImmutableSet<RelativePosition> getContourPoints();
/** @return the positions for this GTU, but not the contour points. */
ImmutableMap<RelativePosition.TYPE, RelativePosition> getRelativePositions();
/** @return the current speed of the GTU, along the direction of movement. */
Speed getSpeed();
/** @return the current acceleration of the GTU, along the direction of movement. */
Acceleration getAcceleration();
/** @return Length; the current odometer value. */
Length getOdometer();
/** @return Behavioral characteristics. */
BehavioralCharacteristics getBehavioralCharacteristics();
/**
* @return StrategicalPlanner; the planner responsible for the overall 'mission' of the GTU, usually indicating where it
* needs to go. It operates by instantiating tactical planners to do the work.
*/
StrategicalPlanner getStrategicalPlanner();
/** @return TacticalPlanner; the current tactical planner that can generate an operational plan */
TacticalPlanner getTacticalPlanner();
/** @return the current operational plan for the GTU. */
OperationalPlan getOperationalPlan();
/** @return the status of the turn indicator. */
TurnIndicatorStatus getTurnIndicatorStatus();
/**
* Set the status of the turn indicator.
* @param turnIndicatorStatus the new status of the turn indicator.
* @throws GTUException when GTUType does not have a turn indicator
*/
void setTurnIndicatorStatus(TurnIndicatorStatus turnIndicatorStatus) throws GTUException;
/** Destroy the GTU from the simulation and animation. */
void destroy();
/**
* Return the base color of the GTU (not the state-based color).
* @return Color; the base color of the GTU (not the state-based color)
*/
Color getBaseColor();
/**
* The event type for pub/sub indicating the initialization of a new GTU. <br>
* Payload: [String id, DirectedPoint initialPosition, Length length, Length width, Color gtuBaseColor]
*/
EventType INIT_EVENT = new EventType("GTU.INIT");
/**
* The event type for pub/sub indicating a move. <br>
* Payload: [String id, DirectedPoint position, Speed speed, Acceleration acceleration, TurnIndicatorStatus
* turnIndicatorStatus, Length odometer]
*/
EventType MOVE_EVENT = new EventType("GTU.MOVE");
/**
* The event type for pub/sub indicating destruction of the GTU. <br>
* Payload: [String id, DirectedPoint lastPosition, Length odometer]
*/
EventType DESTROY_EVENT = new EventType("GTU.DESTROY");
}