package org.opentrafficsim.demo.conflict; import static org.opentrafficsim.core.gtu.GTUType.VEHICLE; import java.net.URL; import java.rmi.RemoteException; import java.util.ArrayList; import javax.naming.NamingException; import javax.swing.SwingUtilities; import org.djunits.unit.DurationUnit; import org.djunits.unit.LengthUnit; import org.djunits.value.vdouble.scalar.Duration; import org.djunits.value.vdouble.scalar.Length; import org.djunits.value.vdouble.scalar.Time; import org.opentrafficsim.base.modelproperties.Property; import org.opentrafficsim.base.modelproperties.PropertyException; import org.opentrafficsim.core.dsol.OTSModelInterface; import org.opentrafficsim.core.network.OTSNetwork; import org.opentrafficsim.road.animation.AnimationToggles; import org.opentrafficsim.road.gtu.lane.plan.operational.LaneOperationalPlanBuilder; import org.opentrafficsim.road.network.factory.xml.XmlNetworkLaneParser; import org.opentrafficsim.road.network.lane.CrossSectionLink; import org.opentrafficsim.road.network.lane.Lane; import org.opentrafficsim.road.network.lane.conflict.ConflictBuilder; import org.opentrafficsim.road.network.lane.object.trafficlight.SimpleTrafficLight; import org.opentrafficsim.road.network.lane.object.trafficlight.TrafficLightColor; import org.opentrafficsim.simulationengine.AbstractWrappableAnimation; import org.opentrafficsim.simulationengine.OTSSimulationException; import nl.tudelft.simulation.dsol.SimRuntimeException; import nl.tudelft.simulation.dsol.simtime.SimTimeDoubleUnit; import nl.tudelft.simulation.dsol.simulators.DEVSSimulatorInterface; import nl.tudelft.simulation.dsol.simulators.SimulatorInterface; import nl.tudelft.simulation.language.io.URLResource; /** *

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

* @version $Revision$, $LastChangedDate$, by $Author$, initial version 11 dec. 2016
* @author Alexander Verbraeck * @author Peter Knoppers * @author Wouter Schakel */ public class TJunctionDemo extends AbstractWrappableAnimation { /** */ private static final long serialVersionUID = 20161211L; /** {@inheritDoc} */ @Override protected final OTSModelInterface makeModel() throws OTSSimulationException { return new TJunctionModel(); } /** {@inheritDoc} */ @Override protected final void addAnimationToggles() { AnimationToggles.setIconAnimationTogglesStandard(this); } /** {@inheritDoc} */ @Override public final String shortName() { return "T-junction demonstration"; } /** {@inheritDoc} */ @Override public final String description() { return "T-junction demonstration"; } /** * The simulation model. */ class TJunctionModel implements OTSModelInterface { /** */ private static final long serialVersionUID = 20161211L; /** The network. */ private OTSNetwork network; /** Simulator. */ private DEVSSimulatorInterface.TimeDoubleUnit simulator; /** {@inheritDoc} */ @Override public void constructModel(final SimulatorInterface arg0) throws SimRuntimeException { this.simulator = (DEVSSimulatorInterface.TimeDoubleUnit) arg0; try { URL url = URLResource.getResource("/conflict/TJunction.xml"); XmlNetworkLaneParser nlp = new XmlNetworkLaneParser(this.simulator, TJunctionDemo.this.getColorer()); this.network = nlp.build(url, false); // add conflicts // ((CrossSectionLink) this.network.getLink("SCEC")).setPriority(Priority.STOP); // ((CrossSectionLink) this.network.getLink("SCWC")).setPriority(Priority.STOP); ConflictBuilder.buildConflicts(this.network, VEHICLE, this.simulator, new ConflictBuilder.FixedWidthGenerator(new Length(2.0, LengthUnit.SI))); // add trafficlight after Lane lane = ((CrossSectionLink) this.network.getLink("ECE")).getLanes().get(0); SimpleTrafficLight trafficLight = new SimpleTrafficLight("light", lane, new Length(50.0, LengthUnit.SI), this.simulator); trafficLight.setTrafficLightColor(TrafficLightColor.RED); changePhase(trafficLight); } catch (Exception exception) { exception.printStackTrace(); } } /** * Changes color of traffic light. * @param trafficLight traffic light * @throws SimRuntimeException scheduling error */ private void changePhase(final SimpleTrafficLight trafficLight) throws SimRuntimeException { switch (trafficLight.getTrafficLightColor()) { case RED: { trafficLight.setTrafficLightColor(TrafficLightColor.GREEN); this.simulator.scheduleEventRel(new Duration(30.0, DurationUnit.SECOND), this, this, "changePhase", new Object[] { trafficLight }); break; } case YELLOW: { trafficLight.setTrafficLightColor(TrafficLightColor.RED); this.simulator.scheduleEventRel(new Duration(56.0, DurationUnit.SECOND), this, this, "changePhase", new Object[] { trafficLight }); break; } case GREEN: { trafficLight.setTrafficLightColor(TrafficLightColor.YELLOW); this.simulator.scheduleEventRel(new Duration(4.0, DurationUnit.SECOND), this, this, "changePhase", new Object[] { trafficLight }); break; } default: { // } } } /** {@inheritDoc} */ @Override public SimulatorInterface getSimulator() { return this.simulator; } /** {@inheritDoc} */ @Override public OTSNetwork getNetwork() { return this.network; } } /** * Main program. * @param args String[]; the command line arguments (not used) * @throws SimRuntimeException should never happen */ public static void main(final String[] args) throws SimRuntimeException { LaneOperationalPlanBuilder.INSTANT_LANE_CHANGES = true; SwingUtilities.invokeLater(new Runnable() { @Override public void run() { try { TJunctionDemo animation = new TJunctionDemo(); // 1 hour simulation run for testing animation.buildAnimator(Time.ZERO, Duration.ZERO, new Duration(60.0, DurationUnit.MINUTE), new ArrayList>(), null, true); } catch (SimRuntimeException | NamingException | OTSSimulationException | PropertyException exception) { exception.printStackTrace(); } } }); } }