package org.opentrafficsim.demo.carFollowing; import java.awt.Color; import java.awt.Container; import java.awt.Frame; import java.awt.geom.Rectangle2D; import java.rmi.RemoteException; import java.util.ArrayList; import java.util.Iterator; import java.util.LinkedHashSet; import java.util.List; import java.util.Random; import java.util.Set; import javax.naming.NamingException; import javax.swing.JPanel; import nl.tudelft.simulation.dsol.SimRuntimeException; import nl.tudelft.simulation.dsol.gui.swing.TablePanel; import nl.tudelft.simulation.dsol.simulators.SimulatorInterface; import nl.tudelft.simulation.jstats.distributions.DistContinuous; import nl.tudelft.simulation.jstats.distributions.DistErlang; import nl.tudelft.simulation.jstats.distributions.DistTriangular; import nl.tudelft.simulation.jstats.streams.MersenneTwister; import org.djunits.unit.AccelerationUnit; import org.djunits.unit.TimeUnit; import org.djunits.unit.UNITS; import org.djunits.value.vdouble.scalar.Acceleration; import org.djunits.value.vdouble.scalar.DoubleScalar; import org.djunits.value.vdouble.scalar.DoubleScalar.Abs; import org.djunits.value.vdouble.scalar.Length; import org.djunits.value.vdouble.scalar.Speed; import org.djunits.value.vdouble.scalar.Time; import org.opentrafficsim.core.dsol.OTSDEVSSimulatorInterface; import org.opentrafficsim.core.dsol.OTSModelInterface; import org.opentrafficsim.core.dsol.OTSSimTimeDouble; import org.opentrafficsim.core.geometry.OTSGeometryException; import org.opentrafficsim.core.geometry.OTSPoint3D; import org.opentrafficsim.core.gtu.GTU; import org.opentrafficsim.core.gtu.GTUDirectionality; import org.opentrafficsim.core.gtu.GTUException; import org.opentrafficsim.core.gtu.GTUType; import org.opentrafficsim.core.gtu.animation.GTUColorer; import org.opentrafficsim.core.network.LongitudinalDirectionality; import org.opentrafficsim.core.network.NetworkException; import org.opentrafficsim.core.network.Node; import org.opentrafficsim.core.network.OTSNetwork; import org.opentrafficsim.core.network.OTSNode; import org.opentrafficsim.core.network.route.FixedRouteGenerator; import org.opentrafficsim.core.network.route.ProbabilisticRouteGenerator; import org.opentrafficsim.core.network.route.ProbabilisticRouteGenerator.RouteProbability; import org.opentrafficsim.core.network.route.Route; import org.opentrafficsim.core.network.route.RouteGenerator; import org.opentrafficsim.graphs.LaneBasedGTUSampler; import org.opentrafficsim.graphs.TrajectoryPlot; import org.opentrafficsim.road.car.LaneBasedIndividualCar; import org.opentrafficsim.road.gtu.animation.DefaultCarAnimation; import org.opentrafficsim.road.gtu.lane.AbstractLaneBasedGTU; import org.opentrafficsim.road.gtu.lane.driver.LaneBasedDrivingCharacteristics; import org.opentrafficsim.road.gtu.lane.perception.LanePerceptionFull; import org.opentrafficsim.road.gtu.lane.tactical.LaneBasedCFLCTacticalPlanner; import org.opentrafficsim.road.gtu.lane.tactical.LaneBasedGTUFollowingLaneChangeTacticalPlanner; import org.opentrafficsim.road.gtu.lane.tactical.following.FixedAccelerationModel; import org.opentrafficsim.road.gtu.lane.tactical.following.GTUFollowingModel; import org.opentrafficsim.road.gtu.lane.tactical.following.IDM; import org.opentrafficsim.road.gtu.lane.tactical.following.IDMPlus; import org.opentrafficsim.road.gtu.lane.tactical.lanechangemobil.AbstractLaneChangeModel; import org.opentrafficsim.road.gtu.lane.tactical.lanechangemobil.Egoistic; import org.opentrafficsim.road.gtu.lane.tactical.lanechangemobil.FixedLaneChangeModel; import org.opentrafficsim.road.gtu.lane.tactical.lanechangemobil.LaneChangeModel; import org.opentrafficsim.road.gtu.strategical.LaneBasedStrategicalPlanner; import org.opentrafficsim.road.gtu.strategical.route.LaneBasedStrategicalRoutePlanner; import org.opentrafficsim.road.network.factory.LaneFactory; import org.opentrafficsim.road.network.lane.CrossSectionLink; import org.opentrafficsim.road.network.lane.DirectedLanePosition; import org.opentrafficsim.road.network.lane.Lane; import org.opentrafficsim.road.network.lane.LaneType; import org.opentrafficsim.road.network.lane.Sensor; import org.opentrafficsim.road.network.lane.SinkSensor; import org.opentrafficsim.road.network.lane.changing.OvertakingConditions; import org.opentrafficsim.simulationengine.AbstractWrappableAnimation; import org.opentrafficsim.simulationengine.properties.AbstractProperty; import org.opentrafficsim.simulationengine.properties.CompoundProperty; import org.opentrafficsim.simulationengine.properties.ContinuousProperty; import org.opentrafficsim.simulationengine.properties.IDMPropertySet; import org.opentrafficsim.simulationengine.properties.ProbabilityDistributionProperty; import org.opentrafficsim.simulationengine.properties.SelectionProperty; /** *

* Copyright (c) 2013-2015 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See OpenTrafficSim License. *

* $LastChangedDate$, @version $Revision$, by $Author$, * initial version 4 mrt. 2015
* @author Hans van Lint * @author Peter Knoppers */ public class XMLNetworks extends AbstractWrappableAnimation implements UNITS { /** the model. */ private XMLNetworkModel model; /** * Define the XMLNetworks. */ public XMLNetworks() { this.properties.add(new SelectionProperty("Network", "Network", new String[]{"Merge 1 plus 1 into 1", "Merge 2 plus 1 into 2", "Merge 2 plus 2 into 4", "Split 1 into 1 plus 1", "Split 2 into 1 plus 2", "Split 4 into 2 plus 2"}, 0, false, 0)); this.properties.add(new ContinuousProperty("Flow per input lane", "Traffic flow per input lane", 500d, 0d, 3000d, "%.0f veh/h", false, 1)); } /** {@inheritDoc} */ @Override public final void stopTimersThreads() { super.stopTimersThreads(); this.model = null; } /** {@inheritDoc} */ @Override protected final Rectangle2D.Double makeAnimationRectangle() { return new Rectangle2D.Double(-50, -300, 1300, 600); } /** {@inheritDoc} */ @Override protected final OTSModelInterface makeModel(final GTUColorer colorer) { this.model = new XMLNetworkModel(this.savedUserModifiedProperties, colorer); return this.model; } /** {@inheritDoc} */ @Override protected final JPanel makeCharts() { int graphCount = this.model.pathCount(); int columns = 1; int rows = 0 == columns ? 0 : (int) Math.ceil(graphCount * 1.0 / columns); TablePanel charts = new TablePanel(columns, rows); for (int graphIndex = 0; graphIndex < graphCount; graphIndex++) { TrajectoryPlot tp = new TrajectoryPlot("Trajectories on lane " + (graphIndex + 1), new Time.Rel(0.5, SECOND), this.model.getPath(graphIndex)); tp.setTitle("Trajectory Graph"); tp.setExtendedState(Frame.MAXIMIZED_BOTH); LaneBasedGTUSampler graph = tp; Container container = tp.getContentPane(); charts.setCell(container, graphIndex % columns, graphIndex / columns); this.model.getPlots().add(graph); } return charts; } /** {@inheritDoc} */ @Override public final String shortName() { return "Test networks"; } /** {@inheritDoc} */ @Override public final String description() { return "

Test Networks

Prove that the test networks can be constructed and rendered on screen " + "and that a mix of cars and trucks can run on them.
On the statistics tab, a trajectory plot " + "is generated for each lane."; } } /** *

* Copyright (c) 2013-2015 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See OpenTrafficSim License. *

* $LastChangedDate$, @version $Revision$, by $Author$, * initial version mrt. 2015
* @author Hans van Lint * @author Peter Knoppers */ class XMLNetworkModel implements OTSModelInterface, UNITS { /** */ private static final long serialVersionUID = 20150304L; /** the simulator. */ private OTSDEVSSimulatorInterface simulator; /** network. */ private OTSNetwork network = new OTSNetwork("network"); /** The plots. */ private ArrayList plots = new ArrayList(); /** User settable properties. */ private ArrayList> properties = null; /** The sequence of Lanes that all vehicles will follow. */ private ArrayList> paths = new ArrayList>(); /** The average headway (inter-vehicle time). */ private Time.Rel averageHeadway; /** The minimum headway. */ private Time.Rel minimumHeadway; /** The probability distribution for the variable part of the headway. */ private DistContinuous headwayGenerator; /** The speed limit. */ private Speed speedLimit = new Speed(60, KM_PER_HOUR); /** number of cars created. */ private int carsCreated = 0; /** type of all GTUs (required to permit lane changing). */ private GTUType gtuType = GTUType.makeGTUType("Car"); /** the car following model, e.g. IDM Plus for cars. */ private GTUFollowingModel carFollowingModelCars; /** the car following model, e.g. IDM Plus for trucks. */ private GTUFollowingModel carFollowingModelTrucks; /** The lane change model. */ private AbstractLaneChangeModel laneChangeModel = new Egoistic(); /** The probability that the next generated GTU is a passenger car. */ private double carProbability; /** The random number generator used to decide what kind of GTU to generate. */ private Random randomGenerator = new Random(12346); /** disttria(70,80,100). */ private DistContinuous disttria = new DistTriangular(new MersenneTwister(), 70, 80, 100); /** The route generator. */ private RouteGenerator routeGenerator; /** The GTUColorer for the generated vehicles. */ private final GTUColorer gtuColorer; /** * @param userModifiedProperties ArrayList<AbstractProperty<?>>; the (possibly user modified) properties * @param gtuColorer the default and initial GTUColorer, e.g. a DefaultSwitchableTUColorer. */ XMLNetworkModel(final ArrayList> userModifiedProperties, final GTUColorer gtuColorer) { this.properties = userModifiedProperties; // this.gtuColorer = gtuColorer; this.gtuColorer = new DirectionGTUColorer(); } /** * @param index int; the rank number of the path * @return List<Lane>; the set of lanes for the specified index */ public final List getPath(final int index) { return this.paths.get(index); } /** * Return the number of paths that can be used to show graphs. * @return int; the number of paths that can be used to show graphs */ public final int pathCount() { return this.paths.size(); } /** * @return plots */ public final ArrayList getPlots() { return this.plots; } /** {@inheritDoc} */ @Override public final void constructModel( final SimulatorInterface, DoubleScalar.Rel, OTSSimTimeDouble> theSimulator) throws SimRuntimeException, RemoteException { this.simulator = (OTSDEVSSimulatorInterface) theSimulator; this.simulator = (OTSDEVSSimulatorInterface) theSimulator; OTSNode from = new OTSNode("From", new OTSPoint3D(0, 0, 0)); OTSNode end = new OTSNode("End", new OTSPoint3D(1200, 0, 0)); OTSNode from2a = new OTSNode("From2a", new OTSPoint3D(0, -50, 0)); OTSNode from2b = new OTSNode("From2b", new OTSPoint3D(490, -2, 0)); OTSNode firstVia = new OTSNode("Via1", new OTSPoint3D(500, 0, 0)); OTSNode end2a = new OTSNode("End2a", new OTSPoint3D(1020, -2, 0)); OTSNode end2b = new OTSNode("End2b", new OTSPoint3D(1200, -50, 0)); OTSNode secondVia = new OTSNode("Via2", new OTSPoint3D(1000, 0, 0)); CompoundProperty cp = new CompoundProperty("", "", this.properties, false, 0); String networkType = (String) cp.findByShortName("Network").getValue(); boolean merge = networkType.startsWith("M"); int lanesOnMain = Integer.parseInt(networkType.split(" ")[merge ? 1 : 5]); int lanesOnBranch = Integer.parseInt(networkType.split(" ")[3]); int lanesOnCommon = lanesOnMain + lanesOnBranch; int lanesOnCommonCompressed = Integer.parseInt(networkType.split(" ")[merge ? 5 : 1]); LaneType laneType = new LaneType("CarLane"); laneType.addCompatibility(this.gtuType); try { String carFollowingModelName = null; CompoundProperty propertyContainer = new CompoundProperty("", "", this.properties, false, 0); AbstractProperty cfmp = propertyContainer.findByShortName("Car following model"); if (null == cfmp) { throw new Error("Cannot find \"Car following model\" property"); } if (cfmp instanceof SelectionProperty) { carFollowingModelName = ((SelectionProperty) cfmp).getValue(); } else { throw new Error("\"Car following model\" property has wrong type"); } Iterator>>> iterator = new CompoundProperty("", "", this.properties, false, 0).iterator(); while (iterator.hasNext()) { AbstractProperty ap = iterator.next(); if (ap instanceof SelectionProperty) { SelectionProperty sp = (SelectionProperty) ap; if ("Car following model".equals(sp.getShortName())) { carFollowingModelName = sp.getValue(); } } else if (ap instanceof ProbabilityDistributionProperty) { ProbabilityDistributionProperty pdp = (ProbabilityDistributionProperty) ap; String modelName = ap.getShortName(); if (modelName.equals("Traffic composition")) { this.carProbability = pdp.getValue()[0]; } } else if (ap instanceof ContinuousProperty) { ContinuousProperty contP = (ContinuousProperty) ap; if (contP.getShortName().startsWith("Flow ")) { this.averageHeadway = new Time.Rel(3600.0 / contP.getValue(), SECOND); this.minimumHeadway = new Time.Rel(3, SECOND); this.headwayGenerator = new DistErlang(new MersenneTwister(1234), 4, DoubleScalar.minus(this.averageHeadway, this.minimumHeadway).getSI()); } } else if (ap instanceof CompoundProperty) { CompoundProperty compoundProperty = (CompoundProperty) ap; if (ap.getShortName().equals("Output")) { continue; // Output settings are handled elsewhere } if (ap.getShortName().contains("IDM")) { Acceleration a = IDMPropertySet.getA(compoundProperty); Acceleration b = IDMPropertySet.getB(compoundProperty); Length.Rel s0 = IDMPropertySet.getS0(compoundProperty); Time.Rel tSafe = IDMPropertySet.getTSafe(compoundProperty); GTUFollowingModel gtuFollowingModel = null; if (carFollowingModelName.equals("IDM")) { gtuFollowingModel = new IDM(a, b, s0, tSafe, 1.0); } else if (carFollowingModelName.equals("IDM+")) { gtuFollowingModel = new IDMPlus(a, b, s0, tSafe, 1.0); } else { throw new Error("Unknown gtu following model: " + carFollowingModelName); } if (ap.getShortName().contains(" Car ")) { this.carFollowingModelCars = gtuFollowingModel; } else if (ap.getShortName().contains(" Truck ")) { this.carFollowingModelTrucks = gtuFollowingModel; } else { throw new Error("Cannot determine gtu type for " + ap.getShortName()); } } } } Lane[] startLanes = LaneFactory.makeMultiLane("From to FirstVia", from, firstVia, null, merge ? lanesOnMain : lanesOnCommonCompressed, laneType, this.speedLimit, this.simulator, LongitudinalDirectionality.DIR_PLUS); setupGenerator(new Lane[] {startLanes[0]}); // XXX setupGenerator(startLanes); Lane[] common = LaneFactory.makeMultiLane("FirstVia to SecondVia", firstVia, secondVia, null, lanesOnCommon, laneType, this.speedLimit, this.simulator, LongitudinalDirectionality.DIR_PLUS); if (merge) { for (int i = lanesOnCommonCompressed; i < lanesOnCommon; i++) { setupBlock(common[i]); } } setupSink(LaneFactory.makeMultiLane("SecondVia to end", secondVia, end, null, merge ? lanesOnCommonCompressed : lanesOnMain, laneType, this.speedLimit, this.simulator, LongitudinalDirectionality.DIR_PLUS), laneType); if (merge) { setupGenerator(LaneFactory.makeMultiLane("From2a to From2b", from2a, from2b, null, lanesOnBranch, 0, lanesOnCommon - lanesOnBranch, laneType, this.speedLimit, this.simulator, LongitudinalDirectionality.DIR_PLUS)); LaneFactory.makeMultiLaneBezier("From2b to FirstVia", from2a, from2b, firstVia, secondVia, lanesOnBranch, lanesOnCommon - lanesOnBranch, lanesOnCommon - lanesOnBranch, laneType, this.speedLimit, this.simulator, LongitudinalDirectionality.DIR_PLUS); // provide a route -- at the merge point, the GTU can otherwise decide to "go back" ArrayList mainRouteNodes = new ArrayList(); mainRouteNodes.add(firstVia); mainRouteNodes.add(secondVia); mainRouteNodes.add(end); Route mainRoute = new Route("main", mainRouteNodes); this.routeGenerator = new FixedRouteGenerator(mainRoute); } else { LaneFactory.makeMultiLaneBezier("SecondVia to end2a", firstVia, secondVia, end2a, end2b, lanesOnBranch, lanesOnCommon - lanesOnBranch, lanesOnCommon - lanesOnBranch, laneType, this.speedLimit, this.simulator, LongitudinalDirectionality.DIR_PLUS); setupSink( LaneFactory.makeMultiLane("end2a to end2b", end2a, end2b, null, lanesOnBranch, lanesOnCommon - lanesOnBranch, 0, laneType, this.speedLimit, this.simulator, LongitudinalDirectionality.DIR_PLUS), laneType); // determine the routes List routeProbabilities = new ArrayList<>(); ArrayList mainRouteNodes = new ArrayList(); mainRouteNodes.add(firstVia); mainRouteNodes.add(secondVia); mainRouteNodes.add(end); Route mainRoute = new Route("main", mainRouteNodes); routeProbabilities.add(new RouteProbability(mainRoute, new java.lang.Double(lanesOnMain))); ArrayList sideRouteNodes = new ArrayList(); sideRouteNodes.add(firstVia); sideRouteNodes.add(secondVia); sideRouteNodes.add(end2a); sideRouteNodes.add(end2b); Route sideRoute = new Route("side", sideRouteNodes); routeProbabilities.add(new RouteProbability(sideRoute, new java.lang.Double(lanesOnBranch))); this.routeGenerator = new ProbabilisticRouteGenerator(routeProbabilities, new MersenneTwister(1234)); } for (int index = 0; index < lanesOnCommon; index++) { this.paths.add(new ArrayList()); Lane lane = common[index]; // Follow back while (lane.prevLanes(this.gtuType).size() > 0) { if (lane.prevLanes(this.gtuType).size() > 1) { throw new NetworkException("This network should not have lane merge points"); } lane = lane.prevLanes(this.gtuType).keySet().iterator().next(); } // Follow forward while (true) { this.paths.get(index).add(lane); int branching = lane.nextLanes(this.gtuType).size(); if (branching == 0) { break; } if (branching > 1) { throw new NetworkException("This network should not have lane split points"); } lane = lane.nextLanes(this.gtuType).keySet().iterator().next(); } } this.simulator.scheduleEventAbs(new DoubleScalar.Abs(0.999, SECOND), this, this, "drawGraphs", null); } catch (NamingException | NetworkException | GTUException | OTSGeometryException exception1) { exception1.printStackTrace(); } } /** * Add a generator to an array of Lane. * @param lanes Lane[]; the lanes that must get a generator at the start * @return Lane[]; the lanes * @throws SimRuntimeException on ??? */ private Lane[] setupGenerator(final Lane[] lanes) throws SimRuntimeException { for (Lane lane : lanes) { Object[] arguments = new Object[1]; arguments[0] = lane; this.simulator.scheduleEventAbs(new Time.Abs(0.0, SECOND), this, this, "generateCar", arguments); } return lanes; } /** * Append a sink to each lane of an array of Lanes. * @param lanes Lane[]; the array of lanes * @param laneType the LaneType for cars * @return Lane[]; the lanes * @throws NetworkException on network inconsistency * @throws OTSGeometryException on problem making the path for a link */ private Lane[] setupSink(final Lane[] lanes, final LaneType laneType) throws NetworkException, OTSGeometryException { CrossSectionLink link = lanes[0].getParentLink(); OTSNode to = link.getEndNode(); OTSNode from = link.getStartNode(); double endLinkLength = 50; // [m] double endX = to.getPoint().x + (endLinkLength / link.getLength().getSI()) * (to.getPoint().x - from.getPoint().x); double endY = to.getPoint().y + (endLinkLength / link.getLength().getSI()) * (to.getPoint().y - from.getPoint().y); OTSNode end = new OTSNode("END", new OTSPoint3D(endX, endY, to.getPoint().z)); CrossSectionLink endLink = LaneFactory.makeLink("endLink", to, end, null, LongitudinalDirectionality.DIR_PLUS); for (Lane lane : lanes) { // Overtaking left and right allowed on the sinkLane Lane sinkLane = new Lane(endLink, lane.getId() + "." + "sinkLane", lane.getLateralCenterPosition(1.0), lane.getLateralCenterPosition(1.0), lane.getWidth(1.0), lane.getWidth(1.0), laneType, LongitudinalDirectionality.DIR_PLUS, this.speedLimit, new OvertakingConditions.LeftAndRight()); Sensor sensor = new SinkSensor(sinkLane, new Length.Rel(10.0, METER), this.simulator); sinkLane.addSensor(sensor, GTUType.ALL); } return lanes; } /** * Put a block at the end of a Lane. * @param lane Lane; the lane on which the block is placed * @return Lane; the lane * @throws NamingException on ??? * @throws NetworkException on network inconsistency * @throws SimRuntimeException on ??? * @throws GTUException when construction of the GTU (the block is a GTU) fails * @throws OTSGeometryException when the initial path is wrong */ private Lane setupBlock(final Lane lane) throws NamingException, NetworkException, SimRuntimeException, GTUException, OTSGeometryException { Length.Rel initialPosition = lane.getLength(); Set initialPositions = new LinkedHashSet<>(1); initialPositions.add(new DirectedLanePosition(lane, initialPosition, GTUDirectionality.DIR_PLUS)); GTUFollowingModel gfm = new FixedAccelerationModel(new Acceleration(0, AccelerationUnit.SI), new Time.Rel( java.lang.Double.MAX_VALUE, TimeUnit.SI)); LaneChangeModel lcm = new FixedLaneChangeModel(null); LaneBasedDrivingCharacteristics drivingCharacteristics = new LaneBasedDrivingCharacteristics(gfm, lcm); LaneBasedStrategicalPlanner strategicalPlanner = new LaneBasedStrategicalRoutePlanner(drivingCharacteristics, new LaneBasedGTUFollowingLaneChangeTacticalPlanner()); // new LaneBasedCFLCTacticalPlanner()); new LaneBasedIndividualCar("999999", this.gtuType, initialPositions, new Speed(0.0, KM_PER_HOUR), new Length.Rel(1, METER), lane.getWidth(1), new Speed(0.0, KM_PER_HOUR), this.simulator, strategicalPlanner, new LanePerceptionFull(), DefaultCarAnimation.class, this.gtuColorer, this.network); return lane; } /** * Notify the contour plots that the underlying data has changed. */ protected final void drawGraphs() { for (LaneBasedGTUSampler plot : this.plots) { plot.reGraph(); } // Re schedule this method try { this.simulator.scheduleEventAbs(new Time.Abs(this.simulator.getSimulatorTime().get().getSI() + 1, SECOND), this, this, "drawGraphs", null); } catch (SimRuntimeException exception) { exception.printStackTrace(); } } /** * Generate cars at a fixed rate (implemented by re-scheduling this method). * @param lane Lane; the lane on which the generated cars are placed */ protected final void generateCar(final Lane lane) { boolean generateTruck = this.randomGenerator.nextDouble() > this.carProbability; Length.Rel initialPosition = new Length.Rel(16, METER); Speed initialSpeed = new Speed(50, KM_PER_HOUR); Set initialPositions = new LinkedHashSet<>(1); initialPositions.add(new DirectedLanePosition(lane, initialPosition, GTUDirectionality.DIR_PLUS)); try { Length.Rel vehicleLength = new Length.Rel(generateTruck ? 15 : 4, METER); GTUFollowingModel gtuFollowingModel = generateTruck ? this.carFollowingModelTrucks : this.carFollowingModelCars; double speed = this.disttria.draw(); LaneBasedDrivingCharacteristics drivingCharacteristics = new LaneBasedDrivingCharacteristics(gtuFollowingModel, this.laneChangeModel); LaneBasedStrategicalPlanner strategicalPlanner = new LaneBasedStrategicalRoutePlanner(drivingCharacteristics, new LaneBasedGTUFollowingLaneChangeTacticalPlanner(), this.routeGenerator.generateRoute()); // LaneBasedStrategicalPlanner strategicalPlanner = // new LaneBasedStrategicalRoutePlanner(drivingCharacteristics, // new LaneBasedCFLCTacticalPlanner(), this.routeGenerator.generateRoute()); new LaneBasedIndividualCar("" + (++this.carsCreated), this.gtuType, initialPositions, initialSpeed, vehicleLength, new Length.Rel(1.8, METER), new Speed(speed, KM_PER_HOUR), this.simulator, strategicalPlanner, new LanePerceptionFull(), DefaultCarAnimation.class, this.gtuColorer, this.network); Object[] arguments = new Object[1]; arguments[0] = lane; this.simulator.scheduleEventRel(new Time.Rel(this.headwayGenerator.draw(), SECOND), this, this, "generateCar", arguments); } catch (SimRuntimeException | NamingException | NetworkException | GTUException | OTSGeometryException exception) { exception.printStackTrace(); } } /** {@inheritDoc} */ @Override public SimulatorInterface, DoubleScalar.Rel, OTSSimTimeDouble> getSimulator() throws RemoteException { return this.simulator; } /** * The route colorer to show whether GTUs stay on the main route or go right at the split. *

* Copyright (c) 2013-2015 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands.
* All rights reserved.
* BSD-style license. See OpenTrafficSim License. *

* $LastChangedDate$, @version $Revision$, by $Author$, * initial version Jan 3, 2016
* @author Alexander Verbraeck * @author Peter Knoppers */ private class DirectionGTUColorer implements GTUColorer { /** the legend. */ private List legend = new ArrayList<>(); /** */ DirectionGTUColorer() { super(); this.legend.add(new LegendEntry(Color.RED, "Right", "Go right")); this.legend.add(new LegendEntry(Color.BLUE, "Main", "Main route")); } /** {@inheritDoc} */ @Override public Color getColor(final GTU gtu) { AbstractLaneBasedGTU laneBasedGTU = (AbstractLaneBasedGTU) gtu; Route route = ((LaneBasedStrategicalRoutePlanner) laneBasedGTU.getStrategicalPlanner()).getRoute(); if (route == null) { return Color.black; } if (route.toString().toLowerCase().contains("end2")) { return Color.red; } if (route.toString().toLowerCase().contains("end")) { return Color.blue; } return Color.black; } /** {@inheritDoc} */ @Override public List getLegend() { return this.legend; } } }