LaneBasedTemplateGTUType.java
package org.opentrafficsim.road.gtu.lane;
import java.util.Set;
import org.djunits.value.vdouble.scalar.Length;
import org.djunits.value.vdouble.scalar.Speed;
import org.opentrafficsim.core.distributions.Generator;
import org.opentrafficsim.core.distributions.ProbabilityException;
import org.opentrafficsim.core.dsol.OTSDEVSSimulatorInterface;
import org.opentrafficsim.core.gtu.GTUType;
import org.opentrafficsim.core.gtu.TemplateGTUType;
import org.opentrafficsim.core.gtu.behavioralcharacteristics.ParameterException;
import org.opentrafficsim.core.idgenerator.IdGenerator;
import org.opentrafficsim.core.network.OTSNetwork;
import org.opentrafficsim.road.gtu.strategical.LaneBasedStrategicalPlannerFactory;
import org.opentrafficsim.road.network.lane.DirectedLanePosition;
import nl.tudelft.simulation.language.Throw;
/**
* Generate lane based GTUs using a template.
* <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>
* $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $,
* initial version Nov 29, 2015 <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 class LaneBasedTemplateGTUType extends TemplateGTUType implements LaneBasedGTUCharacteristicsGenerator
{
/** */
private static final long serialVersionUID = 20160101L;
/** Factory for the strategical planner. */
private final LaneBasedStrategicalPlannerFactory strategicalPlannerFactory;
/** Generator for the initial speed of the next GTU. */
private Generator<Speed> initialSpeedGenerator;
/** Initial longitudinal positions of all generated GTUs. */
private Set<DirectedLanePosition> initialLongitudinalPositions;
/**
* @param gtuType The GTUType to make it identifiable.
* @param idGenerator IdGenerator; the id generator used to generate names for GTUs constructed using this TemplateGTUType.
* Provide null to use the default id generator of AbstractGTU.
* @param lengthGenerator Generator<Length> generator for the length of the GTU type (parallel with driving
* direction).
* @param widthGenerator Generator<Length>; generator for the width of the GTU type (perpendicular to driving
* direction).
* @param maximumSpeedGenerator Generator<Speed>; generator for the maximum speed of the GTU type (in the driving
* direction).
* @param simulator the simulator.
* @param strategicalPlannerFactory Factory for the strategical planner (e.g., route determination)
* @param initialLongitudinalPositions Set<DirectedLanePosition>; the initial lanes, directions and positions of
* generated GTUs
* @param initialSpeedGenerator Generator<Speed>; the generator for the initial speed of generated GTUs
* @param network OTSNetwork; the network that all generated GTUs are registered in
* @throws NullPointerException when one or more parameters are null
*/
@SuppressWarnings("checkstyle:parameternumber")
public LaneBasedTemplateGTUType(final GTUType gtuType, final IdGenerator idGenerator,
final Generator<Length> lengthGenerator, final Generator<Length> widthGenerator,
final Generator<Speed> maximumSpeedGenerator, final OTSDEVSSimulatorInterface simulator,
final LaneBasedStrategicalPlannerFactory strategicalPlannerFactory,
final Set<DirectedLanePosition> initialLongitudinalPositions, final Generator<Speed> initialSpeedGenerator,
final OTSNetwork network) throws NullPointerException
{
super(gtuType, idGenerator, lengthGenerator, widthGenerator, maximumSpeedGenerator, simulator, network);
Throw.whenNull(strategicalPlannerFactory, "strategicalPlannerFactory is null");
Throw.whenNull(initialLongitudinalPositions, "initialLongitudinalPositions is null");
Throw.whenNull(initialSpeedGenerator, "initialSpeedGenerator is null");
this.strategicalPlannerFactory = strategicalPlannerFactory;
this.initialLongitudinalPositions = initialLongitudinalPositions;
this.initialSpeedGenerator = initialSpeedGenerator;
}
/**
* Generate the properties of the next GTU.
* @return the LaneBasedGTUCharacteristics with a drawn perception, strategical planner, and initial speed.
* @throws ProbabilityException when a generator is improperly configured
* @throws ParameterException in case of a parameter problem.
*/
@Override
public final LaneBasedGTUCharacteristics draw() throws ProbabilityException, ParameterException
{
return new LaneBasedGTUCharacteristics(super.draw(), this.strategicalPlannerFactory,
this.initialSpeedGenerator.draw(), this.initialLongitudinalPositions);
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public String toString()
{
return String.format("LaneBasedGTUTemplate [%s, %s, %s, %s]", this.initialLongitudinalPositions,
this.strategicalPlannerFactory, this.initialSpeedGenerator, super.toString());
}
}