View Javadoc
1   package org.opentrafficsim.road.gtu.lane;
2   
3   import java.util.ArrayList;
4   import java.util.Collections;
5   import java.util.Iterator;
6   import java.util.LinkedHashMap;
7   import java.util.LinkedHashSet;
8   import java.util.List;
9   import java.util.Map;
10  import java.util.Set;
11  
12  import javax.media.j3d.Bounds;
13  import javax.vecmath.Point3d;
14  
15  import org.djunits.unit.DurationUnit;
16  import org.djunits.unit.LengthUnit;
17  import org.djunits.value.vdouble.scalar.Acceleration;
18  import org.djunits.value.vdouble.scalar.Duration;
19  import org.djunits.value.vdouble.scalar.Length;
20  import org.djunits.value.vdouble.scalar.Speed;
21  import org.djunits.value.vdouble.scalar.Time;
22  import org.djutils.exceptions.Throw;
23  import org.djutils.exceptions.Try;
24  import org.djutils.immutablecollections.ImmutableMap;
25  import org.opentrafficsim.base.parameters.ParameterException;
26  import org.opentrafficsim.core.dsol.OTSSimulatorInterface;
27  import org.opentrafficsim.core.geometry.OTSGeometryException;
28  import org.opentrafficsim.core.geometry.OTSLine3D;
29  import org.opentrafficsim.core.geometry.OTSLine3D.FractionalFallback;
30  import org.opentrafficsim.core.geometry.OTSPoint3D;
31  import org.opentrafficsim.core.gtu.AbstractGTU;
32  import org.opentrafficsim.core.gtu.GTU;
33  import org.opentrafficsim.core.gtu.GTUDirectionality;
34  import org.opentrafficsim.core.gtu.GTUException;
35  import org.opentrafficsim.core.gtu.GTUType;
36  import org.opentrafficsim.core.gtu.RelativePosition;
37  import org.opentrafficsim.core.gtu.TurnIndicatorStatus;
38  import org.opentrafficsim.core.gtu.perception.EgoPerception;
39  import org.opentrafficsim.core.gtu.plan.operational.OperationalPlan;
40  import org.opentrafficsim.core.gtu.plan.operational.OperationalPlanBuilder;
41  import org.opentrafficsim.core.gtu.plan.operational.OperationalPlanException;
42  import org.opentrafficsim.core.network.LateralDirectionality;
43  import org.opentrafficsim.core.network.Link;
44  import org.opentrafficsim.core.network.NetworkException;
45  import org.opentrafficsim.core.perception.Historical;
46  import org.opentrafficsim.core.perception.HistoricalValue;
47  import org.opentrafficsim.core.perception.HistoryManager;
48  import org.opentrafficsim.core.perception.collections.HistoricalLinkedHashMap;
49  import org.opentrafficsim.core.perception.collections.HistoricalMap;
50  import org.opentrafficsim.road.gtu.lane.perception.LanePerception;
51  import org.opentrafficsim.road.gtu.lane.perception.PerceptionCollectable;
52  import org.opentrafficsim.road.gtu.lane.perception.RelativeLane;
53  import org.opentrafficsim.road.gtu.lane.perception.categories.DefaultSimplePerception;
54  import org.opentrafficsim.road.gtu.lane.perception.categories.InfrastructurePerception;
55  import org.opentrafficsim.road.gtu.lane.perception.categories.neighbors.NeighborsPerception;
56  import org.opentrafficsim.road.gtu.lane.perception.headway.HeadwayGTU;
57  import org.opentrafficsim.road.gtu.lane.plan.operational.LaneBasedOperationalPlan;
58  import org.opentrafficsim.road.gtu.strategical.LaneBasedStrategicalPlanner;
59  import org.opentrafficsim.road.network.OTSRoadNetwork;
60  import org.opentrafficsim.road.network.RoadNetwork;
61  import org.opentrafficsim.road.network.lane.CrossSectionElement;
62  import org.opentrafficsim.road.network.lane.CrossSectionLink;
63  import org.opentrafficsim.road.network.lane.DirectedLanePosition;
64  import org.opentrafficsim.road.network.lane.Lane;
65  import org.opentrafficsim.road.network.lane.LaneDirection;
66  import org.opentrafficsim.road.network.speed.SpeedLimitInfo;
67  import org.opentrafficsim.road.network.speed.SpeedLimitTypes;
68  
69  import nl.tudelft.simulation.dsol.SimRuntimeException;
70  import nl.tudelft.simulation.dsol.formalisms.eventscheduling.SimEvent;
71  import nl.tudelft.simulation.dsol.formalisms.eventscheduling.SimEventInterface;
72  import nl.tudelft.simulation.dsol.logger.SimLogger;
73  import nl.tudelft.simulation.dsol.simtime.SimTimeDoubleUnit;
74  import nl.tudelft.simulation.language.d3.BoundingBox;
75  import nl.tudelft.simulation.language.d3.DirectedPoint;
76  
77  /**
78   * This class contains most of the code that is needed to run a lane based GTU. <br>
79   * The starting point of a LaneBasedTU is that it can be in <b>multiple lanes</b> at the same time. This can be due to a lane
80   * change (lateral), or due to crossing a link (front of the GTU is on another Lane than rear of the GTU). If a Lane is shorter
81   * than the length of the GTU (e.g. when we do node expansion on a crossing, this is very well possible), a GTU could occupy
82   * dozens of Lanes at the same time.
83   * <p>
84   * When calculating a headway, the GTU has to look in successive lanes. When Lanes (or underlying CrossSectionLinks) diverge,
85   * the headway algorithms have to look at multiple Lanes and return the minimum headway in each of the Lanes. When the Lanes (or
86   * underlying CrossSectionLinks) converge, "parallel" traffic is not taken into account in the headway calculation. Instead, gap
87   * acceptance algorithms or their equivalent should guide the merging behavior.
88   * <p>
89   * To decide its movement, an AbstractLaneBasedGTU applies its car following algorithm and lane change algorithm to set the
90   * acceleration and any lane change operation to perform. It then schedules the triggers that will add it to subsequent lanes
91   * and remove it from current lanes as needed during the time step that is has committed to. Finally, it re-schedules its next
92   * movement evaluation with the simulator.
93   * <p>
94   * Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
95   * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
96   * <p>
97   * @version $Revision: 1408 $, $LastChangedDate: 2015-09-24 15:17:25 +0200 (Thu, 24 Sep 2015) $, by $Author: pknoppers $,
98   *          initial version Oct 22, 2014 <br>
99   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
100  * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
101  */
102 public abstract class AbstractLaneBasedGTU extends AbstractGTU implements LaneBasedGTU
103 {
104     /** */
105     private static final long serialVersionUID = 20140822L;
106 
107     /**
108      * Fractional longitudinal positions of the reference point of the GTU on one or more links at the start of the current
109      * operational plan. Because the reference point of the GTU might not be on all the links the GTU is registered on, the
110      * fractional longitudinal positions can be more than one, or less than zero.
111      */
112     private HistoricalMap<Link, Double> fractionalLinkPositions;
113 
114     /**
115      * The lanes the GTU is registered on. Each lane has to have its link registered in the fractionalLinkPositions as well to
116      * keep consistency. Each link from the fractionalLinkPositions can have one or more Lanes on which the vehicle is
117      * registered. This is a list to improve reproducibility: The 'oldest' lanes on which the vehicle is registered are at the
118      * front of the list, the later ones more to the back.
119      */
120     private final HistoricalMap<Lane, GTUDirectionality> currentLanes;
121 
122     /** Maps that we enter when initiating a lane change, but we may not actually enter given a deviative plan. */
123     private final Set<Lane> enteredLanes = new LinkedHashSet<>();
124 
125     /** Pending leave triggers for each lane. */
126     private Map<Lane, List<SimEventInterface<SimTimeDoubleUnit>>> pendingLeaveTriggers = new LinkedHashMap<>();
127 
128     /** Pending enter triggers for each lane. */
129     private Map<Lane, List<SimEventInterface<SimTimeDoubleUnit>>> pendingEnterTriggers = new LinkedHashMap<>();
130 
131     /** Event to finalize lane change. */
132     private SimEventInterface<SimTimeDoubleUnit> finalizeLaneChangeEvent = null;
133 
134     /** Cached desired speed. */
135     private Speed cachedDesiredSpeed;
136 
137     /** Time desired speed was cached. */
138     private Time desiredSpeedTime;
139 
140     /** Cached car-following acceleration. */
141     private Acceleration cachedCarFollowingAcceleration;
142 
143     /** Time car-following acceleration was cached. */
144     private Time carFollowingAccelerationTime;
145 
146     /** The object to lock to make the GTU thread safe. */
147     private Object lock = new Object();
148 
149     /** The threshold distance for differences between initial locations of the GTU on different lanes. */
150     @SuppressWarnings("checkstyle:visibilitymodifier")
151     public static Length initialLocationThresholdDifference = new Length(1.0, LengthUnit.MILLIMETER);
152 
153     /** Turn indicator status. */
154     private final Historical<TurnIndicatorStatus> turnIndicatorStatus;
155 
156     /** Caching on or off. */
157     // TODO: should be indicated with a Parameter
158     public static boolean CACHING = true;
159 
160     /** cached position count. */
161     // TODO: can be removed after testing period
162     public static int CACHED_POSITION = 0;
163 
164     /** cached position count. */
165     // TODO: can be removed after testing period
166     public static int NON_CACHED_POSITION = 0;
167 
168     /** Vehicle model. */
169     private VehicleModel vehicleModel = VehicleModel.MINMAX;
170 
171     /**
172      * Construct a Lane Based GTU.
173      * @param id String; the id of the GTU
174      * @param gtuType GTUType; the type of GTU, e.g. TruckType, CarType, BusType
175      * @param simulator OTSSimulatorInterface; to initialize the move method and to get the current time
176      * @param network OTSRoadNetwork; the network that the GTU is initially registered in
177      * @throws GTUException when initial values are not correct
178      */
179     public AbstractLaneBasedGTU(final String id, final GTUType gtuType, final OTSSimulatorInterface simulator,
180             final OTSRoadNetwork network) throws GTUException
181     {
182         super(id, gtuType, simulator, network);
183         HistoryManager historyManager = simulator.getReplication().getHistoryManager(simulator);
184         this.fractionalLinkPositions = new HistoricalLinkedHashMap<>(historyManager);
185         this.currentLanes = new HistoricalLinkedHashMap<>(historyManager);
186         this.turnIndicatorStatus = new HistoricalValue<>(historyManager, TurnIndicatorStatus.NOTPRESENT);
187     }
188 
189     /**
190      * @param strategicalPlanner LaneBasedStrategicalPlanner; the strategical planner (e.g., route determination) to use
191      * @param initialLongitudinalPositions Set&lt;DirectedLanePosition&gt;; the initial positions of the car on one or more
192      *            lanes with their directions
193      * @param initialSpeed Speed; the initial speed of the car on the lane
194      * @throws NetworkException when the GTU cannot be placed on the given lane
195      * @throws SimRuntimeException when the move method cannot be scheduled
196      * @throws GTUException when initial values are not correct
197      * @throws OTSGeometryException when the initial path is wrong
198      */
199     @SuppressWarnings("checkstyle:designforextension")
200     public void init(final LaneBasedStrategicalPlanner strategicalPlanner,
201             final Set<DirectedLanePosition> initialLongitudinalPositions, final Speed initialSpeed)
202             throws NetworkException, SimRuntimeException, GTUException, OTSGeometryException
203     {
204         Throw.when(null == initialLongitudinalPositions, GTUException.class, "InitialLongitudinalPositions is null");
205         Throw.when(0 == initialLongitudinalPositions.size(), GTUException.class, "InitialLongitudinalPositions is empty set");
206 
207         DirectedPoint lastPoint = null;
208         for (DirectedLanePosition pos : initialLongitudinalPositions)
209         {
210             // Throw.when(lastPoint != null && pos.getLocation().distance(lastPoint) > initialLocationThresholdDifference.si,
211             // GTUException.class, "initial locations for GTU have distance > " + initialLocationThresholdDifference);
212             lastPoint = pos.getLocation();
213         }
214         DirectedPoint initialLocation = lastPoint;
215 
216         // Give the GTU a 1 micrometer long operational plan, or a stand-still plan, so the first move and events will work
217         Time now = getSimulator().getSimulatorTime();
218         try
219         {
220             if (initialSpeed.si < OperationalPlan.DRIFTING_SPEED_SI)
221             {
222                 this.operationalPlan
223                         .set(new OperationalPlan(this, initialLocation, now, new Duration(1E-6, DurationUnit.SECOND)));
224             }
225             else
226             {
227                 OTSPoint3D p2 = new OTSPoint3D(initialLocation.x + 1E-6 * Math.cos(initialLocation.getRotZ()),
228                         initialLocation.y + 1E-6 * Math.sin(initialLocation.getRotZ()), initialLocation.z);
229                 OTSLine3D path = new OTSLine3D(new OTSPoint3D(initialLocation), p2);
230                 this.operationalPlan.set(OperationalPlanBuilder.buildConstantSpeedPlan(this, path, now, initialSpeed));
231             }
232         }
233         catch (OperationalPlanException e)
234         {
235             throw new RuntimeException("Initial operational plan could not be created.", e);
236         }
237 
238         // register the GTU on the lanes
239         for (DirectedLanePosition directedLanePosition : initialLongitudinalPositions)
240         {
241             Lane lane = directedLanePosition.getLane();
242             addLaneToGtu(lane, directedLanePosition.getPosition(), directedLanePosition.getGtuDirection()); // enter lane part 1
243         }
244 
245         // init event
246         DirectedLanePosition referencePosition = getReferencePosition();
247         fireTimedEvent(LaneBasedGTU.LANEBASED_INIT_EVENT,
248                 new Object[] { getId(), initialLocation, getLength(), getWidth(), referencePosition.getLane(),
249                         referencePosition.getPosition(), referencePosition.getGtuDirection(), getGTUType() },
250                 getSimulator().getSimulatorTime());
251 
252         // register the GTU on the lanes
253         for (DirectedLanePosition directedLanePosition : initialLongitudinalPositions)
254         {
255             Lane lane = directedLanePosition.getLane();
256             lane.addGTU(this, directedLanePosition.getPosition()); // enter lane part 2
257         }
258 
259         // initiate the actual move
260         super.init(strategicalPlanner, initialLocation, initialSpeed);
261 
262         this.referencePositionTime = Double.NaN; // remove cache, it may be invalid as the above init results in a lane change
263 
264     }
265 
266     /**
267      * {@inheritDoc} All lanes the GTU is on will be left.
268      */
269     @Override
270     public void setParent(final GTU gtu) throws GTUException
271     {
272         for (Lane lane : new LinkedHashSet<>(this.currentLanes.keySet())) // copy for concurrency problems
273         {
274             leaveLane(lane);
275         }
276         super.setParent(gtu);
277     }
278 
279     /**
280      * Reinitializes the GTU on the network using the existing strategical planner and zero speed.
281      * @param initialLongitudinalPositions Set&lt;DirectedLanePosition&gt;; initial position
282      * @throws NetworkException when the GTU cannot be placed on the given lane
283      * @throws SimRuntimeException when the move method cannot be scheduled
284      * @throws GTUException when initial values are not correct
285      * @throws OTSGeometryException when the initial path is wrong
286      */
287     public void reinit(final Set<DirectedLanePosition> initialLongitudinalPositions)
288             throws NetworkException, SimRuntimeException, GTUException, OTSGeometryException
289     {
290         init(getStrategicalPlanner(), initialLongitudinalPositions, Speed.ZERO);
291     }
292 
293     /**
294      * Hack method. TODO remove and solve better
295      * @return safe to change
296      * @throws GTUException on error
297      */
298     public final boolean isSafeToChange() throws GTUException
299     {
300         return this.fractionalLinkPositions.get(getReferencePosition().getLane().getParentLink()) > 0.0;
301     }
302 
303     /**
304      * insert GTU at a certain position. This can happen at setup (first initialization), and after a lane change of the GTU.
305      * The relative position that will be registered is the referencePosition (dx, dy, dz) = (0, 0, 0). Front and rear positions
306      * are relative towards this position.
307      * @param lane Lane; the lane to add to the list of lanes on which the GTU is registered.
308      * @param gtuDirection GTUDirectionality; the direction of the GTU on the lane (which can be bidirectional). If the GTU has
309      *            a positive speed, it is moving in this direction.
310      * @param position Length; the position on the lane.
311      * @throws GTUException when positioning the GTU on the lane causes a problem
312      */
313     @SuppressWarnings("checkstyle:designforextension")
314     public void enterLane(final Lane lane, final Length position, final GTUDirectionality gtuDirection) throws GTUException
315     {
316         if (lane == null || gtuDirection == null || position == null)
317         {
318             throw new GTUException("enterLane - one of the arguments is null");
319         }
320         addLaneToGtu(lane, position, gtuDirection);
321         addGtuToLane(lane, position);
322     }
323 
324     /**
325      * Registers the lane at the GTU. Only works at the start of a operational plan.
326      * @param lane Lane; the lane to add to the list of lanes on which the GTU is registered.
327      * @param gtuDirection GTUDirectionality; the direction of the GTU on the lane (which can be bidirectional). If the GTU has
328      *            a positive speed, it is moving in this direction.
329      * @param position Length; the position on the lane.
330      * @throws GTUException when positioning the GTU on the lane causes a problem
331      */
332     private void addLaneToGtu(final Lane lane, final Length position, final GTUDirectionality gtuDirection) throws GTUException
333     {
334         if (this.currentLanes.containsKey(lane))
335         {
336             System.err.println(this + " is already registered on lane: " + lane + " at fractional position "
337                     + this.fractionalPosition(lane, RelativePosition.REFERENCE_POSITION) + " intended position is " + position
338                     + " length of lane is " + lane.getLength());
339             return;
340         }
341         // if the GTU is already registered on a lane of the same link, do not change its fractional position, as
342         // this might lead to a "jump".
343         if (!this.fractionalLinkPositions.containsKey(lane.getParentLink()))
344         {
345             this.fractionalLinkPositions.put(lane.getParentLink(), lane.fraction(position));
346         }
347         this.currentLanes.put(lane, gtuDirection);
348     }
349 
350     /**
351      * Part of 'enterLane' which registers the GTU with the lane so the lane can report its GTUs.
352      * @param lane Lane; lane
353      * @param position Length; position
354      * @throws GTUException on exception
355      */
356     protected void addGtuToLane(final Lane lane, final Length position) throws GTUException
357     {
358         List<SimEventInterface<SimTimeDoubleUnit>> pending = this.pendingEnterTriggers.get(lane);
359         if (null != pending)
360         {
361             for (SimEventInterface<SimTimeDoubleUnit> event : pending)
362             {
363                 if (event.getAbsoluteExecutionTime().get().ge(getSimulator().getSimulatorTime()))
364                 {
365                     boolean result = getSimulator().cancelEvent(event);
366                     if (!result && event.getAbsoluteExecutionTime().get().ne(getSimulator().getSimulatorTime()))
367                     {
368                         System.err.println("addLaneToGtu, trying to remove event: NOTHING REMOVED -- result=" + result
369                                 + ", simTime=" + getSimulator().getSimulatorTime() + ", eventTime="
370                                 + event.getAbsoluteExecutionTime().get());
371                     }
372                 }
373             }
374             this.pendingEnterTriggers.remove(lane);
375         }
376         lane.addGTU(this, position);
377     }
378 
379     /**
380      * Unregister the GTU from a lane.
381      * @param lane Lane; the lane to remove from the list of lanes on which the GTU is registered.
382      * @throws GTUException when leaveLane should not be called
383      */
384     @SuppressWarnings("checkstyle:designforextension")
385     public void leaveLane(final Lane lane) throws GTUException
386     {
387         leaveLane(lane, false);
388     }
389 
390     /**
391      * Leave a lane but do not complain about having no lanes left when beingDestroyed is true.
392      * @param lane Lane; the lane to leave
393      * @param beingDestroyed boolean; if true, no complaints about having no lanes left
394      * @throws GTUException in case leaveLane should not be called
395      */
396     @SuppressWarnings("checkstyle:designforextension")
397     public void leaveLane(final Lane lane, final boolean beingDestroyed) throws GTUException
398     {
399         Length position = position(lane, getReference());
400         this.currentLanes.remove(lane);
401         removePendingEvents(lane, this.pendingLeaveTriggers);
402         removePendingEvents(lane, this.pendingEnterTriggers);
403         // check if there are any lanes for this link left. If not, remove the link.
404         boolean found = false;
405         for (Lane l : this.currentLanes.keySet())
406         {
407             if (l.getParentLink().equals(lane.getParentLink()))
408             {
409                 found = true;
410             }
411         }
412         if (!found)
413         {
414             this.fractionalLinkPositions.remove(lane.getParentLink());
415         }
416         lane.removeGTU(this, !found, position);
417         if (this.currentLanes.size() == 0 && !beingDestroyed)
418         {
419             System.err.println("leaveLane: lanes.size() = 0 for GTU " + getId());
420         }
421     }
422 
423     /**
424      * Removes and cancels events for the given lane.
425      * @param lane Lane; lane
426      * @param triggers Map&lt;Lane, List&lt;SimEventInterface&lt;SimTimeDoubleUnit&gt;&gt;&gt;; map to use
427      */
428     private void removePendingEvents(final Lane lane, final Map<Lane, List<SimEventInterface<SimTimeDoubleUnit>>> triggers)
429     {
430         List<SimEventInterface<SimTimeDoubleUnit>> pending = triggers.get(lane);
431         if (null != pending)
432         {
433             for (SimEventInterface<SimTimeDoubleUnit> event : pending)
434             {
435                 if (event.getAbsoluteExecutionTime().get().ge(getSimulator().getSimulatorTime()))
436                 {
437                     boolean result = getSimulator().cancelEvent(event);
438                     if (!result && event.getAbsoluteExecutionTime().get().ne(getSimulator().getSimulatorTime()))
439                     {
440                         System.err.println("leaveLane, trying to remove event: NOTHING REMOVED -- result=" + result
441                                 + ", simTime=" + getSimulator().getSimulatorTime() + ", eventTime="
442                                 + event.getAbsoluteExecutionTime().get());
443                     }
444                 }
445             }
446             triggers.remove(lane);
447         }
448     }
449 
450     /** {@inheritDoc} */
451     @Override
452     public void changeLaneInstantaneously(final LateralDirectionality laneChangeDirection) throws GTUException
453     {
454 
455         // from info
456         DirectedLanePosition from = getReferencePosition();
457 
458         // keep a copy of the lanes and directions (!)
459         Set<Lane> lanesToBeRemoved = new LinkedHashSet<>(this.currentLanes.keySet());
460 
461         // store the new positions
462         // start with current link position, these will be overwritten, except if from a lane no adjacent lane is found, i.e.
463         // changing over a continuous line when probably the reference point is past the line
464         Map<Link, Double> newLinkPositionsLC = new LinkedHashMap<>(this.fractionalLinkPositions);
465 
466         // obtain position on lane adjacent to reference lane and enter lanes upstream/downstream from there
467         Set<Lane> adjLanes = from.getLane().accessibleAdjacentLanesPhysical(laneChangeDirection, getGTUType(),
468                 this.currentLanes.get(from.getLane()));
469         Lane adjLane = adjLanes.iterator().next();
470         Length position = adjLane.position(from.getLane().fraction(from.getPosition()));
471         GTUDirectionality direction = getDirection(from.getLane());
472         Length planLength = Try.assign(() -> getOperationalPlan().getTraveledDistance(getSimulator().getSimulatorTime()),
473                 "Exception while determining plan length.");
474         enterLaneRecursive(new LaneDirection(adjLane, direction), position, newLinkPositionsLC, planLength, lanesToBeRemoved,
475                 0);
476 
477         // update the positions on the lanes we are registered on
478         this.fractionalLinkPositions.clear();
479         this.fractionalLinkPositions.putAll(newLinkPositionsLC);
480 
481         // leave the from lanes
482         for (Lane lane : lanesToBeRemoved)
483         {
484             leaveLane(lane);
485         }
486 
487         // stored positions no longer valid
488         this.referencePositionTime = Double.NaN;
489         this.cachedPositions.clear();
490 
491         // fire event
492         this.fireTimedEvent(LaneBasedGTU.LANE_CHANGE_EVENT, new Object[] { getId(), laneChangeDirection, from },
493                 getSimulator().getSimulatorTime());
494 
495     }
496 
497     /**
498      * Enters lanes upstream and downstream of the new location after an instantaneous lane change.
499      * @param lane LaneDirection; considered lane
500      * @param position Length; position to add GTU at
501      * @param newLinkPositionsLC Map&lt;Link, Double&gt;; new link fractions to store
502      * @param planLength Length; length of plan, to consider fractions at start
503      * @param lanesToBeRemoved Set&lt;Lane&gt;; lanes to leave, from which lanes are removed when entered (such that they arent
504      *            then left)
505      * @param dir int; below 0 for upstream, above 0 for downstream, 0 for both
506      * @throws GTUException on exception
507      */
508     private void enterLaneRecursive(final LaneDirection lane, final Length position, final Map<Link, Double> newLinkPositionsLC,
509             final Length planLength, final Set<Lane> lanesToBeRemoved, final int dir) throws GTUException
510     {
511         enterLane(lane.getLane(), position, lane.getDirection());
512         lanesToBeRemoved.remove(lane);
513         Length adjusted = lane.getDirection().isPlus() ? position.minus(planLength) : position.plus(planLength);
514         newLinkPositionsLC.put(lane.getLane().getParentLink(), adjusted.si / lane.getLength().si);
515 
516         // upstream
517         if (dir < 1)
518         {
519             Length rear = lane.getDirection().isPlus() ? position.plus(getRear().getDx()) : position.minus(getRear().getDx());
520             Length before = null;
521             if (lane.getDirection().isPlus() && rear.si < 0.0)
522             {
523                 before = rear.neg();
524             }
525             else if (lane.getDirection().isMinus() && rear.si > lane.getLength().si)
526             {
527                 before = rear.minus(lane.getLength());
528             }
529             if (before != null)
530             {
531                 GTUDirectionality upDir = lane.getDirection();
532                 ImmutableMap<Lane, GTUDirectionality> upstream = lane.getLane().upstreamLanes(upDir, getGTUType());
533                 if (!upstream.isEmpty())
534                 {
535                     Lane upLane = null;
536                     for (Lane nextUp : upstream.keySet())
537                     {
538                         if (newLinkPositionsLC.containsKey(nextUp.getParentLink()))
539                         {
540                             // multiple upstream lanes could belong to the same link, we pick an arbitrary lane
541                             // (a conflict should solve this)
542                             upLane = nextUp;
543                             break;
544                         }
545                     }
546                     if (upLane == null)
547                     {
548                         // the rear is on an upstream section we weren't before the lane change, due to curvature, we pick an
549                         // arbitrary lane (a conflict should solve this)
550                         upLane = upstream.keySet().iterator().next();
551                     }
552                     if (!this.currentLanes.containsKey(upLane))
553                     {
554                         upDir = upstream.get(upLane);
555                         LaneDirectionk/lane/LaneDirection.html#LaneDirection">LaneDirection next = new LaneDirection(upLane, upDir);
556                         Length nextPos = upDir.isPlus() ? next.getLength().minus(before).minus(getRear().getDx())
557                                 : before.plus(getRear().getDx());
558                         enterLaneRecursive(next, nextPos, newLinkPositionsLC, planLength, lanesToBeRemoved, -1);
559                     }
560                 }
561             }
562         }
563 
564         // downstream
565         if (dir > -1)
566         {
567             Length front =
568                     lane.getDirection().isPlus() ? position.plus(getFront().getDx()) : position.minus(getFront().getDx());
569             Length passed = null;
570             if (lane.getDirection().isPlus() && front.si > lane.getLength().si)
571             {
572                 passed = front.minus(lane.getLength());
573             }
574             else if (lane.getDirection().isMinus() && front.si < 0.0)
575             {
576                 passed = front.neg();
577             }
578             if (passed != null)
579             {
580                 LaneDirection next = lane.getNextLaneDirection(this);
581                 if (!this.currentLanes.containsKey(next.getLane()))
582                 {
583                     Length nextPos = next.getDirection().isPlus() ? passed.minus(getFront().getDx())
584                             : next.getLength().minus(passed).plus(getFront().getDx());
585                     enterLaneRecursive(next, nextPos, newLinkPositionsLC, planLength, lanesToBeRemoved, 1);
586                 }
587             }
588         }
589     }
590 
591     /**
592      * Register on lanes in target lane.
593      * @param laneChangeDirection LateralDirectionality; direction of lane change
594      * @throws GTUException exception
595      */
596     @Override
597     @SuppressWarnings("checkstyle:designforextension")
598     public void initLaneChange(final LateralDirectionality laneChangeDirection) throws GTUException
599     {
600         Map<Lane, GTUDirectionality> lanesCopy = new LinkedHashMap<>(this.currentLanes);
601         Map<Lane, Double> fractionalLanePositions = new LinkedHashMap<>();
602         for (Lane lane : lanesCopy.keySet())
603         {
604             fractionalLanePositions.put(lane, fractionalPosition(lane, getReference()));
605         }
606         int numRegistered = 0;
607         for (Lane lane : lanesCopy.keySet())
608         {
609             Set<Lane> laneSet = lane.accessibleAdjacentLanesLegal(laneChangeDirection, getGTUType(), getDirection(lane));
610             if (laneSet.size() > 0)
611             {
612                 numRegistered++;
613                 Lane adjacentLane = laneSet.iterator().next();
614                 Length position = adjacentLane.getLength().times(fractionalLanePositions.get(lane));
615                 if (lanesCopy.get(lane).isPlus() ? position.lt(lane.getLength().minus(getRear().getDx()))
616                         : position.gt(getFront().getDx().neg()))
617                 {
618                     this.enteredLanes.add(adjacentLane);
619                     enterLane(adjacentLane, position, lanesCopy.get(lane));
620                 }
621                 else
622                 {
623                     System.out.println("Skipping enterLane for GTU " + getId() + " on lane " + lane.getFullId() + " at "
624                             + position + ", lane length = " + lane.getLength() + " rear = " + getRear().getDx() + " front = "
625                             + getFront().getDx());
626                 }
627             }
628         }
629         Throw.when(numRegistered == 0, GTUException.class, "Gtu %s starting %s lane change, but no adjacent lane found.",
630                 getId(), laneChangeDirection);
631     }
632 
633     /**
634      * Performs the finalization of a lane change by leaving the from lanes.
635      * @param laneChangeDirection LateralDirectionality; direction of lane change
636      */
637     @SuppressWarnings("checkstyle:designforextension")
638     protected void finalizeLaneChange(final LateralDirectionality laneChangeDirection)
639     {
640         Map<Lane, GTUDirectionality> lanesCopy = new LinkedHashMap<>(this.currentLanes);
641         Set<Lane> lanesToBeRemoved = new LinkedHashSet<>();
642         Lane fromLane = null;
643         Length fromPosition = null;
644         GTUDirectionality fromDirection = null;
645         try
646         {
647             // find lanes to leave as they have an adjacent lane the GTU is also on in the lane change direction
648             for (Lane lane : lanesCopy.keySet())
649             {
650                 Iterator<Lane> iterator =
651                         lane.accessibleAdjacentLanesPhysical(laneChangeDirection, getGTUType(), getDirection(lane)).iterator();
652                 if (iterator.hasNext() && lanesCopy.keySet().contains(iterator.next()))
653                 {
654                     lanesToBeRemoved.add(lane);
655                 }
656             }
657             // some lanes registered to the GTU may be downstream of a split and have no adjacent lane, find longitudinally
658             boolean added = true;
659             while (added)
660             {
661                 added = false;
662                 Set<Lane> lanesToAlsoBeRemoved = new LinkedHashSet<>();
663                 for (Lane lane : lanesToBeRemoved)
664                 {
665                     GTUDirectionality direction = getDirection(lane);
666                     for (Lane nextLane : direction.isPlus() ? lane.nextLanes(getGTUType()).keySet()
667                             : lane.prevLanes(getGTUType()).keySet())
668                     {
669                         if (lanesCopy.containsKey(nextLane) && !lanesToBeRemoved.contains(nextLane))
670                         {
671                             added = true;
672                             lanesToAlsoBeRemoved.add(nextLane);
673                         }
674                     }
675                 }
676                 lanesToBeRemoved.addAll(lanesToAlsoBeRemoved);
677             }
678             double nearest = Double.POSITIVE_INFINITY;
679             for (Lane lane : lanesToBeRemoved)
680             {
681                 Length pos = position(lane, RelativePosition.REFERENCE_POSITION);
682                 if (0.0 <= pos.si && pos.si <= lane.getLength().si)
683                 {
684                     fromLane = lane;
685                     fromPosition = pos;
686                     fromDirection = getDirection(lane);
687                 }
688                 else if (fromLane == null && (getDirection(lane).isPlus() ? pos.si > lane.getLength().si : pos.le0()))
689                 {
690                     // if the reference point is in between two lanes, this recognizes the lane upstream of the gap
691                     double distance = getDirection(lane).isPlus() ? pos.si - lane.getLength().si : -pos.si;
692                     if (distance < nearest)
693                     {
694                         nearest = distance;
695                         fromLane = lane;
696                         fromPosition = pos;
697                         fromDirection = getDirection(lane);
698                     }
699                 }
700                 leaveLane(lane);
701             }
702             this.referencePositionTime = Double.NaN;
703             this.finalizeLaneChangeEvent = null;
704         }
705         catch (GTUException exception)
706         {
707             // should not happen, lane was obtained from GTU
708             throw new RuntimeException("position on lane not possible", exception);
709         }
710         Throw.when(fromLane == null, RuntimeException.class, "No from lane for lane change event.");
711         DirectedLanePosition from;
712         try
713         {
714             from = new DirectedLanePosition(fromLane, fromPosition, fromDirection);
715         }
716         catch (GTUException exception)
717         {
718             throw new RuntimeException(exception);
719         }
720         this.fireTimedEvent(LaneBasedGTU.LANE_CHANGE_EVENT, new Object[] { getId(), laneChangeDirection, from },
721                 getSimulator().getSimulatorTime());
722     }
723 
724     /** {@inheritDoc} */
725     @Override
726     public void setFinalizeLaneChangeEvent(final SimEventInterface<SimTimeDoubleUnit> event)
727     {
728         this.finalizeLaneChangeEvent = event;
729     }
730 
731     /** {@inheritDoc} */
732     @Override
733     public final GTUDirectionality getDirection(final Lane lane) throws GTUException
734     {
735         Throw.when(!this.currentLanes.containsKey(lane), GTUException.class, "getDirection: Lanes %s does not contain %s",
736                 this.currentLanes.keySet(), lane);
737         return this.currentLanes.get(lane);
738     }
739 
740     /** {@inheritDoc} */
741     @Override
742     @SuppressWarnings("checkstyle:designforextension")
743     protected boolean move(final DirectedPoint fromLocation)
744             throws SimRuntimeException, GTUException, OperationalPlanException, NetworkException, ParameterException
745     {
746         // DirectedPoint currentPoint = getLocation(); // used for "jump" detection that is also commented out
747         // Only carry out move() if we still have lane(s) to drive on.
748         // Note: a (Sink) trigger can have 'destroyed' us between the previous evaluation step and this one.
749         if (this.currentLanes.isEmpty())
750         {
751             destroy();
752             return false; // Done; do not re-schedule execution of this move method.
753         }
754 
755         // remove enter events
756         // WS: why?
757         // for (Lane lane : this.pendingEnterTriggers.keySet())
758         // {
759         // System.out.println("GTU " + getId() + " is canceling event on lane " + lane.getFullId());
760         // List<SimEventInterface<SimTimeDoubleUnit>> events = this.pendingEnterTriggers.get(lane);
761         // for (SimEventInterface<SimTimeDoubleUnit> event : events)
762         // {
763         // // also unregister from lane
764         // this.currentLanes.remove(lane);
765         // getSimulator().cancelEvent(event);
766         // }
767         // }
768         // this.pendingEnterTriggers.clear();
769 
770         // get distance covered in previous plan, to aid a shift in link fraction (from which a plan moves onwards)
771         Length covered;
772         if (getOperationalPlan() instanceof LaneBasedOperationalPlan
773                 && ((LaneBasedOperationalPlan) getOperationalPlan()).isDeviative())
774         {
775             // traveled distance as difference between start and current position on reference lane
776             // note that for a deviative plan the traveled distance along the path is not valuable here
777             LaneBasedOperationalPlanrg/opentrafficsim/road/gtu/lane/plan/operational/LaneBasedOperationalPlan.html#LaneBasedOperationalPlan">LaneBasedOperationalPlan plan = (LaneBasedOperationalPlan) getOperationalPlan();
778             DirectedLanePosition ref = getReferencePosition();
779             covered = ref.getGtuDirection().isPlus()
780                     ? position(ref.getLane(), getReference())
781                             .minus(position(ref.getLane(), getReference(), plan.getStartTime()))
782                     : position(ref.getLane(), getReference(), plan.getStartTime())
783                             .minus(position(ref.getLane(), getReference()));
784             // Note that distance is valid as the reference lane can not change (and location of previous plan is start location
785             // of current plan). Only instantaneous lane changes can do that, which do not result in deviative plans.
786         }
787         else
788         {
789             covered = getOperationalPlan().getTraveledDistance(getSimulator().getSimulatorTime());
790         }
791 
792         // generate the next operational plan and carry it out
793         // in case of an instantaneous lane change, fractionalLinkPositions will be accordingly adjusted to the new lane
794         super.move(fromLocation);
795 
796         // update the positions on the lanes we are registered on
797         // WS: this was previously done using fractions calculated before super.move() based on the GTU position, but an
798         // instantaneous lane change while e.g. the nose is on the next lane which is curved, results in a different fraction on
799         // the next link (the GTU doesn't stretch or shrink)
800         Map<Link, Double> newLinkFractions = new LinkedHashMap<>(this.fractionalLinkPositions);
801         Set<Link> done = new LinkedHashSet<>();
802         // WS: this used to be on all current lanes, skipping links already processed, but 'covered' regards the reference lane
803         updateLinkFraction(getReferencePosition().getLane(), newLinkFractions, done, false, covered, true);
804         updateLinkFraction(getReferencePosition().getLane(), newLinkFractions, done, true, covered, true);
805         this.fractionalLinkPositions.clear();
806         this.fractionalLinkPositions.putAll(newLinkFractions);
807 
808         DirectedLanePosition dlp = getReferencePosition();
809         fireTimedEvent(
810                 LaneBasedGTU.LANEBASED_MOVE_EVENT, new Object[] { getId(), fromLocation, getSpeed(), getAcceleration(),
811                         getTurnIndicatorStatus(), getOdometer(), dlp.getLane(), dlp.getPosition(), dlp.getGtuDirection() },
812                 getSimulator().getSimulatorTime());
813 
814         if (getOperationalPlan().getAcceleration(Duration.ZERO).si < -10
815                 && getOperationalPlan().getSpeed(Duration.ZERO).si > 2.5)
816         {
817             System.err.println("GTU: " + getId() + " - getOperationalPlan().getAcceleration(Duration.ZERO).si < -10)");
818             System.err.println("Lanes in current plan: " + this.currentLanes.keySet());
819             if (getTacticalPlanner().getPerception().contains(DefaultSimplePerception.class))
820             {
821                 DefaultSimplePerception p =
822                         getTacticalPlanner().getPerception().getPerceptionCategory(DefaultSimplePerception.class);
823                 System.err.println("HeadwayGTU: " + p.getForwardHeadwayGTU());
824                 System.err.println("HeadwayObject: " + p.getForwardHeadwayObject());
825             }
826         }
827         // DirectedPoint currentPointAfterMove = getLocation();
828         // if (currentPoint.distance(currentPointAfterMove) > 0.1)
829         // {
830         // System.err.println(this.getId() + " jumped");
831         // }
832         // schedule triggers and determine when to enter lanes with front and leave lanes with rear
833         scheduleEnterLeaveTriggers();
834         return false;
835     }
836 
837     /**
838      * Recursive update of link fractions based on a moved distance.
839      * @param lane Lane; current lane, start with reference lane
840      * @param newLinkFractions Map&lt;Link, Double&gt;; map to put new fractions in
841      * @param done Set&lt;Link&gt;; links to skip as link are already done
842      * @param prevs boolean; whether to loop to the previous or next lanes, regardless of driving direction
843      * @param covered Length; covered distance along the reference lane
844      * @param isReferenceLane boolean; whether this lane is the reference lane (to skip in second call)
845      */
846     private void updateLinkFraction(final Lane lane, final Map<Link, Double> newLinkFractions, final Set<Link> done,
847             final boolean prevs, final Length covered, final boolean isReferenceLane)
848     {
849         if (!prevs || !isReferenceLane)
850         {
851             if (done.contains(lane.getParentLink()) || !this.currentLanes.containsKey(lane))
852             {
853                 return;
854             }
855             double sign;
856             try
857             {
858                 sign = getDirection(lane).isPlus() ? 1.0 : -1.0;
859             }
860             catch (GTUException exception)
861             {
862                 // can not happen as we check that the lane is in the currentLanes
863                 throw new RuntimeException("Unexpected exception: trying to obtain direction on lane.", exception);
864             }
865             newLinkFractions.put(lane.getParentLink(),
866                     this.fractionalLinkPositions.get(lane.getParentLink()) + sign * covered.si / lane.getLength().si);
867             done.add(lane.getParentLink());
868         }
869         for (Lane nextLane : (prevs ? lane.prevLanes(getGTUType()) : lane.nextLanes(getGTUType())).keySet())
870         {
871             updateLinkFraction(nextLane, newLinkFractions, done, prevs, covered, false);
872         }
873     }
874 
875     /** {@inheritDoc} */
876     @Override
877     public final Map<Lane, Length> positions(final RelativePosition relativePosition) throws GTUException
878     {
879         return positions(relativePosition, getSimulator().getSimulatorTime());
880     }
881 
882     /** {@inheritDoc} */
883     @Override
884     public final Map<Lane, Length> positions(final RelativePosition relativePosition, final Time when) throws GTUException
885     {
886         Map<Lane, Length> positions = new LinkedHashMap<>();
887         for (Lane lane : this.currentLanes.keySet())
888         {
889             positions.put(lane, position(lane, relativePosition, when));
890         }
891         return positions;
892     }
893 
894     /** {@inheritDoc} */
895     @Override
896     public final Length position(final Lane lane, final RelativePosition relativePosition) throws GTUException
897     {
898         return position(lane, relativePosition, getSimulator().getSimulatorTime());
899     }
900 
901     /**
902      * Return the longitudinal position that the indicated relative position of this GTU would have if it were to change to
903      * another Lane with a / the current CrossSectionLink. This point may be before the begin or after the end of the link of
904      * the projection lane of the GTU. This preserves the length of the GTU.
905      * @param projectionLane Lane; the lane onto which the position of this GTU must be projected
906      * @param relativePosition RelativePosition; the point on this GTU that must be projected
907      * @param when Time; the time for which to project the position of this GTU
908      * @return Length; the position of this GTU in the projectionLane
909      * @throws GTUException when projectionLane it not in any of the CrossSectionLink that the GTU is on
910      */
911     @SuppressWarnings("checkstyle:designforextension")
912     public Length translatedPosition(final Lane projectionLane, final RelativePosition relativePosition, final Time when)
913             throws GTUException
914     {
915         CrossSectionLink link = projectionLane.getParentLink();
916         for (CrossSectionElement cse : link.getCrossSectionElementList())
917         {
918             if (cse instanceof Lane)
919             {
920                 Lane"../../../../../org/opentrafficsim/road/network/lane/Lane.html#Lane">Lane cseLane = (Lane) cse;
921                 if (null != this.currentLanes.get(cseLane))
922                 {
923                     double fractionalPosition = fractionalPosition(cseLane, RelativePosition.REFERENCE_POSITION, when);
924                     Length pos = new Length(projectionLane.getLength().getSI() * fractionalPosition, LengthUnit.SI);
925                     if (this.currentLanes.get(cseLane).isPlus())
926                     {
927                         return pos.plus(relativePosition.getDx());
928                     }
929                     return pos.minus(relativePosition.getDx());
930                 }
931             }
932         }
933         throw new GTUException(this + " is not on any lane of Link " + link);
934     }
935 
936     /**
937      * Return the longitudinal position on the projection lane that has the same fractional position on one of the current lanes
938      * of the indicated relative position. This preserves the fractional positions of all relative positions of the GTU.
939      * @param projectionLane Lane; the lane onto which the position of this GTU must be projected
940      * @param relativePosition RelativePosition; the point on this GTU that must be projected
941      * @param when Time; the time for which to project the position of this GTU
942      * @return Length; the position of this GTU in the projectionLane
943      * @throws GTUException when projectionLane it not in any of the CrossSectionLink that the GTU is on
944      */
945     @SuppressWarnings("checkstyle:designforextension")
946     public Length projectedPosition(final Lane projectionLane, final RelativePosition relativePosition, final Time when)
947             throws GTUException
948     {
949         CrossSectionLink link = projectionLane.getParentLink();
950         for (CrossSectionElement cse : link.getCrossSectionElementList())
951         {
952             if (cse instanceof Lane)
953             {
954                 Lane"../../../../../org/opentrafficsim/road/network/lane/Lane.html#Lane">Lane cseLane = (Lane) cse;
955                 if (null != this.currentLanes.get(cseLane))
956                 {
957                     double fractionalPosition = fractionalPosition(cseLane, relativePosition, when);
958                     return new Length(projectionLane.getLength().getSI() * fractionalPosition, LengthUnit.SI);
959                 }
960             }
961         }
962         throw new GTUException(this + " is not on any lane of Link " + link);
963     }
964 
965     /** caching of time field for last stored position(s). */
966     private double cachePositionsTime = Double.NaN;
967 
968     /** caching of last stored position(s). */
969     private Map<Integer, Length> cachedPositions = new LinkedHashMap<>();
970 
971     /** {@inheritDoc} */
972     @Override
973     @SuppressWarnings("checkstyle:designforextension")
974     public Length position(final Lane lane, final RelativePosition relativePosition, final Time when) throws GTUException
975     {
976         int cacheIndex = 0;
977         if (CACHING)
978         {
979             cacheIndex = 17 * lane.hashCode() + relativePosition.hashCode();
980             Length l;
981             if (when.si == this.cachePositionsTime && (l = this.cachedPositions.get(cacheIndex)) != null)
982             {
983                 // PK verify the result; uncomment if you don't trust the cache
984                 // this.cachedPositions.clear();
985                 // Length difficultWay = position(lane, relativePosition, when);
986                 // if (Math.abs(l.si - difficultWay.si) > 0.00001)
987                 // {
988                 // System.err.println("Whoops: cache returns bad value for GTU " + getId());
989                 // }
990                 CACHED_POSITION++;
991                 return l;
992             }
993             if (when.si != this.cachePositionsTime)
994             {
995                 this.cachedPositions.clear();
996                 this.cachePositionsTime = when.si;
997             }
998         }
999         NON_CACHED_POSITION++;
1000 
1001         synchronized (this.lock)
1002         {
1003             double loc = Double.NaN;
1004             try
1005             {
1006                 OperationalPlan plan = getOperationalPlan(when);
1007                 if (!(plan instanceof LaneBasedOperationalPlanorg/opentrafficsim/road/gtu/lane/plan/operational/LaneBasedOperationalPlan.html#LaneBasedOperationalPlan">LaneBasedOperationalPlan) || !((LaneBasedOperationalPlan) plan).isDeviative())
1008                 {
1009                     double longitudinalPosition;
1010                     try
1011                     {
1012                         longitudinalPosition =
1013                                 lane.positionSI(this.fractionalLinkPositions.get(when).get(lane.getParentLink()));
1014                     }
1015                     catch (NullPointerException exception)
1016                     {
1017                         throw exception;
1018                     }
1019                     if (this.currentLanes.get(when).get(lane).isPlus())
1020                     {
1021                         loc = longitudinalPosition + plan.getTraveledDistanceSI(when) + relativePosition.getDx().si;
1022                     }
1023                     else
1024                     {
1025                         loc = longitudinalPosition - plan.getTraveledDistanceSI(when) - relativePosition.getDx().si;
1026                     }
1027                 }
1028                 else
1029                 {
1030                     // deviative LaneBasedOperationalPlan, i.e. the GTU is not on a center line
1031                     DirectedPoint p = plan.getLocation(when, relativePosition);
1032                     double f = lane.getCenterLine().projectFractional(null, null, p.x, p.y, FractionalFallback.NaN);
1033                     if (!Double.isNaN(f))
1034                     {
1035                         loc = f * lane.getLength().si;
1036                     }
1037                     else
1038                     {
1039                         // the point does not project fractionally to this lane, it has to be up- or downstream of the lane
1040 
1041                         // simple heuristic to decide if we first look upstream or downstream
1042                         boolean upstream = this.fractionalLinkPositions.get(lane.getParentLink()) < 0.0 ? true : false;
1043 
1044                         // use loop up to 2 times (for loop creates 'loc not initialized' warning)
1045                         int i = 0;
1046                         while (true)
1047                         {
1048                             Set<Lane> otherLanesToConsider = new LinkedHashSet<>();
1049                             otherLanesToConsider.addAll(this.currentLanes.keySet());
1050                             double distance = getDistanceAtOtherLane(lane, when, upstream, 0.0, p, otherLanesToConsider);
1051                             // distance can be positive on an upstream lane due to a loop
1052                             if (!Double.isNaN(distance))
1053                             {
1054                                 if (i == 1 && !Double.isNaN(loc))
1055                                 {
1056                                     // loc was determined in both loops, this constitutes a lane-loop, select nearest
1057                                     double loc2 = upstream ? -distance : distance + lane.getLength().si;
1058                                     double d1 = loc < 0.0 ? -loc : loc - lane.getLength().si;
1059                                     double d2 = loc2 < 0.0 ? -loc2 : loc2 - lane.getLength().si;
1060                                     loc = d1 < d2 ? loc : loc2;
1061                                     break;
1062                                 }
1063                                 else
1064                                 {
1065                                     // loc was determined in second loop
1066                                     loc = upstream ? -distance : distance + lane.getLength().si;
1067                                 }
1068                             }
1069                             else if (!Double.isNaN(loc))
1070                             {
1071                                 // loc was determined in first loop
1072                                 break;
1073                             }
1074                             else if (i == 1)
1075                             {
1076                                 // loc was determined in neither loop
1077                                 // Lane change ended while moving to next link. The source lanes are left and for a leave-lane
1078                                 // event the position is required. This may depend on upstream or downstream lanes as the
1079                                 // reference position is projected to that lane. But if we already left that lane, we can't use
1080                                 // it. We thus use ENDPOINT fallback instead.
1081                                 loc = lane.getLength().si * lane.getCenterLine().projectFractional(null, null, p.x, p.y,
1082                                         FractionalFallback.ENDPOINT);
1083                                 break;
1084                             }
1085                             // try other direction
1086                             i++;
1087                             upstream = !upstream;
1088                         }
1089                     }
1090                 }
1091             }
1092             catch (NullPointerException e)
1093             {
1094                 throw new GTUException("lanesCurrentOperationalPlan or fractionalLinkPositions is null", e);
1095             }
1096             catch (Exception e)
1097             {
1098                 System.err.println(toString());
1099                 System.err.println(this.currentLanes.get(when));
1100                 System.err.println(this.fractionalLinkPositions.get(when));
1101                 throw new GTUException(e);
1102             }
1103             if (Double.isNaN(loc))
1104             {
1105                 System.out.println("loc is NaN");
1106             }
1107             Length length = Length.instantiateSI(loc);
1108             if (CACHING)
1109             {
1110                 this.cachedPositions.put(cacheIndex, length);
1111             }
1112             return length;
1113         }
1114     }
1115 
1116     /** Set of lane to attempt when determining the location with a deviative lane change. */
1117     // private Set<Lane> otherLanesToConsider;
1118 
1119     /**
1120      * In case of a deviative operational plan (not on the center lines), positions are projected fractionally to the center
1121      * lines. For points upstream or downstream of a lane, fractional projection is not valid. In such cases we need to project
1122      * the position to an upstream or downstream lane instead, and adjust length along the center lines.
1123      * @param lane Lane; lane to determine the position on
1124      * @param when Time; time
1125      * @param upstream boolean; whether to check upstream (or downstream)
1126      * @param distance double; cumulative distance in recursive search, starts at 0.0
1127      * @param point DirectedPoint; absolute point of GTU to be projected to center line
1128      * @param otherLanesToConsider Set&lt;Lane&gt;; lanes to consider
1129      * @return Length; position on lane being &lt;0 or &gt;{@code lane.getLength()}
1130      * @throws GTUException if GTU is not on the lane
1131      */
1132     private double getDistanceAtOtherLane(final Lane lane, final Time when, final boolean upstream, final double distance,
1133             final DirectedPoint point, final Set<Lane> otherLanesToConsider) throws GTUException
1134     {
1135         Set<Lane> nextLanes = new LinkedHashSet<>(upstream == getDirection(lane).isPlus()
1136                 ? lane.prevLanes(getGTUType()).keySet() : lane.nextLanes(getGTUType()).keySet()); // safe copy
1137         nextLanes.retainAll(otherLanesToConsider); // as we delete here
1138         if (!upstream && nextLanes.size() > 1)
1139         {
1140             LaneDirectionane/LaneDirection.html#LaneDirection">LaneDirection laneDir = new LaneDirection(lane, getDirection(lane)).getNextLaneDirection(this);
1141             if (nextLanes.contains(laneDir.getLane()))
1142             {
1143                 nextLanes.clear();
1144                 nextLanes.add(laneDir.getLane());
1145             }
1146             else
1147             {
1148                 SimLogger.always().error("Distance on downstream lane could not be determined.");
1149             }
1150         }
1151         // TODO When requesting the position at the end of the plan, which will be on a further lane, this lane is not yet
1152         // part of the lanes in the current operational plan. This can be upstream or downstream depending on the direction of
1153         // travel. We might check whether getDirection(lane)=DIR_PLUS and upstream=false, or getDirection(lane)=DIR_MINUS and
1154         // upstream=true, to then use LaneDirection.getNextLaneDirection(this) to obtain the next lane. This is only required if
1155         // nextLanes originally had more than 1 lane, otherwise we can simply use that one lane. Problem is that the search
1156         // might go on far or even eternally (on a circular network), as projection simply keeps failing because the GTU is
1157         // actually towards the other longitudinal direction. Hence, the heuristic used before this method is called should
1158         // change and first always search against the direction of travel, and only consider lanes in currentLanes, while the
1159         // consecutive search in the direction of travel should then always find a point. We could build in a counter to prevent
1160         // a hanging software.
1161         if (nextLanes.size() == 0)
1162         {
1163             return Double.NaN; // point must be in the other direction
1164         }
1165         Throw.when(nextLanes.size() > 1, IllegalStateException.class,
1166                 "A position (%s) of GTU %s is not on any of the current registered lanes.", point, this.getId());
1167         Lane nextLane = nextLanes.iterator().next();
1168         otherLanesToConsider.remove(lane);
1169         double f = nextLane.getCenterLine().projectFractional(null, null, point.x, point.y, FractionalFallback.NaN);
1170         if (Double.isNaN(f))
1171         {
1172             return getDistanceAtOtherLane(nextLane, when, upstream, distance + nextLane.getLength().si, point,
1173                     otherLanesToConsider);
1174         }
1175         return distance + (upstream == this.currentLanes.get(nextLane).isPlus() ? 1.0 - f : f) * nextLane.getLength().si;
1176     }
1177 
1178     /** Time of reference position cache. */
1179     private double referencePositionTime = Double.NaN;
1180 
1181     /** Cached reference position. */
1182     private DirectedLanePosition cachedReferencePosition = null;
1183 
1184     /** {@inheritDoc} */
1185     @Override
1186     @SuppressWarnings("checkstyle:designforextension")
1187     public DirectedLanePosition getReferencePosition() throws GTUException
1188     {
1189         if (this.referencePositionTime == getSimulator().getSimulatorTime().si)
1190         {
1191             return this.cachedReferencePosition;
1192         }
1193         boolean anyOnLink = false;
1194         Lane refLane = null;
1195         double closest = Double.POSITIVE_INFINITY;
1196         double minEps = Double.POSITIVE_INFINITY;
1197         for (Lane lane : this.currentLanes.keySet())
1198         {
1199             double fraction = fractionalPosition(lane, getReference());
1200             if (fraction >= 0.0 && fraction <= 1.0)
1201             {
1202                 // TODO widest lane in case we are registered on more than one lane with the reference point?
1203                 // TODO lane that leads to our location or not if we are registered on parallel lanes?
1204                 if (!anyOnLink)
1205                 {
1206                     refLane = lane;
1207                 }
1208                 else
1209                 {
1210                     DirectedPoint loc = getLocation();
1211                     double f = lane.getCenterLine().projectFractional(null, null, loc.x, loc.y, FractionalFallback.ENDPOINT);
1212                     double distance = loc.distance(lane.getCenterLine().getLocationFractionExtended(f));
1213                     if (refLane != null && Double.isInfinite(closest))
1214                     {
1215                         f = refLane.getCenterLine().projectFractional(null, null, loc.x, loc.y, FractionalFallback.ENDPOINT);
1216                         closest = loc.distance(refLane.getCenterLine().getLocationFractionExtended(f));
1217                     }
1218                     if (distance < closest)
1219                     {
1220                         refLane = lane;
1221                         closest = distance;
1222                     }
1223                 }
1224                 anyOnLink = true;
1225             }
1226             else if (!anyOnLink && Double.isInfinite(closest))// && getOperationalPlan() instanceof LaneBasedOperationalPlan
1227             // && ((LaneBasedOperationalPlan) getOperationalPlan()).isDeviative())
1228             {
1229                 double eps = (fraction > 1.0 ? lane.getCenterLine().getLast() : lane.getCenterLine().getFirst())
1230                         .distanceSI(new OTSPoint3D(getLocation()));
1231                 if (eps < minEps)
1232                 {
1233                     minEps = eps;
1234                     refLane = lane;
1235                 }
1236             }
1237         }
1238         if (refLane != null)
1239         {
1240             this.cachedReferencePosition =
1241                     new DirectedLanePosition(refLane, position(refLane, getReference()), this.getDirection(refLane));
1242             this.referencePositionTime = getSimulator().getSimulatorTime().si;
1243             return this.cachedReferencePosition;
1244         }
1245         // for (Lane lane : this.currentLanes.keySet())
1246         // {
1247         // Length relativePosition = position(lane, RelativePosition.REFERENCE_POSITION);
1248         // System.err
1249         // .println(String.format("Lane %s of Link %s: absolute position %s, relative position %5.1f%%", lane.getId(),
1250         // lane.getParentLink().getId(), relativePosition, relativePosition.si * 100 / lane.getLength().si));
1251         // }
1252         throw new GTUException("The reference point of GTU " + this + " is not on any of the lanes on which it is registered");
1253     }
1254 
1255     /**
1256      * Schedule the triggers for this GTU that are going to happen until the next evaluation time. Also schedule the
1257      * registration and deregistration of lanes when the vehicle enters or leaves them, at the exact right time. <br>
1258      * Note: when the GTU makes a lane change, the vehicle will be registered for both lanes during the entire maneuver.
1259      * @throws NetworkException on network inconsistency
1260      * @throws SimRuntimeException should never happen
1261      * @throws GTUException when a branch is reached where the GTU does not know where to go next
1262      */
1263     @SuppressWarnings("checkstyle:designforextension")
1264     protected void scheduleEnterLeaveTriggers() throws NetworkException, SimRuntimeException, GTUException
1265     {
1266 
1267         LaneBasedOperationalPlan plan = null;
1268         double moveSI;
1269         if (getOperationalPlan() instanceof LaneBasedOperationalPlan)
1270         {
1271             plan = (LaneBasedOperationalPlan) getOperationalPlan();
1272             moveSI = plan.getTotalLengthAlongLane(this).si;
1273         }
1274         else
1275         {
1276             moveSI = getOperationalPlan().getTotalLength().si;
1277         }
1278 
1279         // Figure out which lanes this GTU will enter with its FRONT, and schedule the lane enter events
1280         Map<Lane, GTUDirectionality> lanesCopy = new LinkedHashMap<>(this.currentLanes);
1281         Iterator<Lane> it = lanesCopy.keySet().iterator();
1282         Lane enteredLane = null;
1283         // LateralDirectionality forceSide = LateralDirectionality.NONE;
1284         while (it.hasNext() || enteredLane != null) // use a copy because this.currentLanes can change
1285         {
1286             // next lane from 'lanesCopy', or asses the lane we just entered as it may be very short and also passed fully
1287             Lane lane;
1288             GTUDirectionality laneDir;
1289             if (enteredLane == null)
1290             {
1291                 lane = it.next();
1292                 laneDir = lanesCopy.get(lane);
1293             }
1294             else
1295             {
1296                 lane = enteredLane;
1297                 laneDir = this.currentLanes.get(lane);
1298             }
1299             double sign = laneDir.isPlus() ? 1.0 : -1.0;
1300             enteredLane = null;
1301 
1302             // skip if already on next lane
1303             if (!Collections.disjoint(this.currentLanes.keySet(),
1304                     lane.downstreamLanes(laneDir, getGTUType()).keySet().toCollection()))
1305             {
1306                 continue;
1307             }
1308 
1309             // schedule triggers on this lane
1310             double referenceStartSI = this.fractionalLinkPositions.get(lane.getParentLink()) * lane.getLength().getSI();
1311             // referenceStartSI is position of reference of GTU on current lane
1312             if (laneDir.isPlus())
1313             {
1314                 lane.scheduleSensorTriggers(this, referenceStartSI, moveSI);
1315             }
1316             else
1317             {
1318                 lane.scheduleSensorTriggers(this, referenceStartSI - moveSI, moveSI);
1319             }
1320 
1321             double nextFrontPosSI = referenceStartSI + sign * (moveSI + getFront().getDx().si);
1322             Lane nextLane = null;
1323             GTUDirectionality nextDirection = null;
1324             Length refPosAtLastTimestep = null;
1325             DirectedPoint end = null;
1326             if (laneDir.isPlus() ? nextFrontPosSI > lane.getLength().si : nextFrontPosSI < 0.0)
1327             {
1328                 LaneDirectionk/lane/LaneDirection.html#LaneDirection">LaneDirection next = new LaneDirection(lane, laneDir).getNextLaneDirection(this);
1329                 if (null == next)
1330                 {
1331                     // A sink should delete the GTU, or a lane change should end, before reaching the end of the lane
1332                     continue;
1333                 }
1334                 nextLane = next.getLane();
1335                 nextDirection = next.getDirection();
1336                 double endPos = laneDir.isPlus() ? lane.getLength().si - getFront().getDx().si : getFront().getDx().si;
1337                 Lane endLane = lane;
1338                 GTUDirectionality endLaneDir = laneDir;
1339                 while (endLaneDir.isPlus() ? endPos < 0.0 : endPos > endLane.getLength().si)
1340                 {
1341                     // GTU front is more than lane length, so end location can not be extracted from the lane, let's move then
1342                     Map<Lane, GTUDirectionality> map = endLane.upstreamLanes(endLaneDir, getGTUType()).toMap();
1343                     map.keySet().retainAll(this.currentLanes.keySet());
1344                     double remain = endLaneDir.isPlus() ? -endPos : endPos - endLane.getLength().si;
1345                     endLane = map.keySet().iterator().next();
1346                     endLaneDir = map.get(endLane);
1347                     endPos = endLaneDir.isPlus() ? endLane.getLength().si - remain : remain;
1348                 }
1349                 end = endLane.getCenterLine().getLocationExtendedSI(endPos);
1350                 if (laneDir.isPlus())
1351                 {
1352                     refPosAtLastTimestep = nextDirection.isPlus() ? Length.instantiateSI(referenceStartSI - lane.getLength().si)
1353                             : Length.instantiateSI(nextLane.getLength().si - referenceStartSI + lane.getLength().si);
1354                 }
1355                 else
1356                 {
1357                     refPosAtLastTimestep = nextDirection.isPlus() ? Length.instantiateSI(-referenceStartSI)
1358                             : Length.instantiateSI(nextLane.getLength().si + referenceStartSI);
1359                 }
1360             }
1361 
1362             if (end != null)
1363             {
1364                 Time enterTime = getOperationalPlan().timeAtPoint(end, false);
1365                 if (enterTime != null)
1366                 {
1367                     if (Double.isNaN(enterTime.si))
1368                     {
1369                         // TODO: this escape was in timeAtPoint, where it was changed to return null for leave lane events
1370                         enterTime = Time.instantiateSI(getOperationalPlan().getEndTime().si - 1e-9);
1371                         // -1e-9 prevents that next move() reschedules enter
1372                     }
1373                     addLaneToGtu(nextLane, refPosAtLastTimestep, nextDirection);
1374                     enteredLane = nextLane;
1375                     Length coveredDistance;
1376                     if (plan == null || !plan.isDeviative())
1377                     {
1378                         try
1379                         {
1380                             coveredDistance = getOperationalPlan().getTraveledDistance(enterTime);
1381                         }
1382                         catch (OperationalPlanException exception)
1383                         {
1384                             throw new RuntimeException("Enter time of lane beyond plan.", exception);
1385                         }
1386                     }
1387                     else
1388                     {
1389                         coveredDistance = plan.getDistanceAlongLane(this, end);
1390                     }
1391                     SimEventInterface<SimTimeDoubleUnit> event = getSimulator().scheduleEventAbs(enterTime, this, this,
1392                             "addGtuToLane", new Object[] { nextLane, refPosAtLastTimestep.plus(coveredDistance) });
1393                     addEnterTrigger(nextLane, event);
1394                 }
1395             }
1396         }
1397 
1398         // Figure out which lanes this GTU will exit with its BACK, and schedule the lane exit events
1399         for (Lane lane : this.currentLanes.keySet())
1400         {
1401 
1402             double referenceStartSI = this.fractionalLinkPositions.get(lane.getParentLink()) * lane.getLength().getSI();
1403             Time exitTime = null;
1404 
1405             GTUDirectionality laneDir = getDirection(lane);
1406 
1407             if (plan == null || !plan.isDeviative())
1408             {
1409                 double sign = laneDir.isPlus() ? 1.0 : -1.0;
1410                 double nextRearPosSI = referenceStartSI + sign * (getRear().getDx().si + moveSI);
1411                 if (laneDir.isPlus() ? nextRearPosSI > lane.getLength().si : nextRearPosSI < 0.0)
1412                 {
1413                     exitTime = getOperationalPlan().timeAtDistance(
1414                             Length.instantiateSI((laneDir.isPlus() ? lane.getLength().si - referenceStartSI : referenceStartSI)
1415                                     - getRear().getDx().si));
1416                 }
1417             }
1418             else
1419             {
1420                 DirectedPoint end = null;
1421                 double endPos = laneDir.isPlus() ? lane.getLength().si - getRear().getDx().si : getRear().getDx().si;
1422                 Lane endLane = lane;
1423                 GTUDirectionality endLaneDir = laneDir;
1424                 while (endLaneDir.isPlus() ? endPos > endLane.getLength().si : endPos < 0.0)
1425                 {
1426                     Map<Lane, GTUDirectionality> map = endLane.downstreamLanes(endLaneDir, getGTUType()).toMap();
1427                     map.keySet().retainAll(this.currentLanes.keySet());
1428                     if (!map.isEmpty())
1429                     {
1430                         double remain = endLaneDir.isPlus() ? endPos - endLane.getLength().si : -endPos;
1431                         endLane = map.keySet().iterator().next();
1432                         endLaneDir = map.get(endLane);
1433                         endPos = endLaneDir.isPlus() ? remain : endLane.getLength().si - remain;
1434                     }
1435                     else
1436                     {
1437                         endPos = endLaneDir.isPlus() ? endLane.getLength().si - getRear().getDx().si : getRear().getDx().si;
1438                         break;
1439                     }
1440                 }
1441                 end = endLane.getCenterLine().getLocationExtendedSI(endPos);
1442                 if (end != null)
1443                 {
1444                     exitTime = getOperationalPlan().timeAtPoint(end, false);
1445                     if (Double.isNaN(exitTime.si))
1446                     {
1447                         // code below will leave entered lanes if exitTime is null, make this so if NaN results due to the lane
1448                         // end being beyond the plan (rather than the GTU never having been there, but being registered there
1449                         // upon lane change initiation)
1450                         double sign = laneDir.isPlus() ? 1.0 : -1.0;
1451                         double nextRearPosSI = referenceStartSI + sign * (getRear().getDx().si + moveSI);
1452                         if (laneDir.isPlus() ? nextRearPosSI < lane.getLength().si : nextRearPosSI > 0.0)
1453                         {
1454                             exitTime = null;
1455                         }
1456                     }
1457                 }
1458             }
1459 
1460             if (exitTime != null && !Double.isNaN(exitTime.si))
1461             {
1462                 SimEvent<SimTimeDoubleUnit> event = new SimEvent<>(new SimTimeDoubleUnit(exitTime), this, this, "leaveLane",
1463                         new Object[] { lane, new Boolean(false) });
1464                 getSimulator().scheduleEvent(event);
1465                 addTrigger(lane, event);
1466             }
1467             else if (exitTime != null && this.enteredLanes.contains(lane))
1468             {
1469                 // This lane was entered when initiating the lane change due to a fractional calculation. Now, the deviative
1470                 // plan indicates we will never reach this location.
1471                 SimEvent<SimTimeDoubleUnit> event = new SimEvent<>(getSimulator().getSimTime(), this, this, "leaveLane",
1472                         new Object[] { lane, new Boolean(false) });
1473                 getSimulator().scheduleEvent(event);
1474                 addTrigger(lane, event);
1475             }
1476         }
1477 
1478         this.enteredLanes.clear();
1479     }
1480 
1481     /** {@inheritDoc} */
1482     @Override
1483     public final Map<Lane, Double> fractionalPositions(final RelativePosition relativePosition) throws GTUException
1484     {
1485         return fractionalPositions(relativePosition, getSimulator().getSimulatorTime());
1486     }
1487 
1488     /** {@inheritDoc} */
1489     @Override
1490     public final Map<Lane, Double> fractionalPositions(final RelativePosition relativePosition, final Time when)
1491             throws GTUException
1492     {
1493         Map<Lane, Double> positions = new LinkedHashMap<>();
1494         for (Lane lane : this.currentLanes.keySet())
1495         {
1496             positions.put(lane, fractionalPosition(lane, relativePosition, when));
1497         }
1498         return positions;
1499     }
1500 
1501     /** {@inheritDoc} */
1502     @Override
1503     public final double fractionalPosition(final Lane lane, final RelativePosition relativePosition, final Time when)
1504             throws GTUException
1505     {
1506         return position(lane, relativePosition, when).getSI() / lane.getLength().getSI();
1507     }
1508 
1509     /** {@inheritDoc} */
1510     @Override
1511     public final double fractionalPosition(final Lane lane, final RelativePosition relativePosition) throws GTUException
1512     {
1513         return position(lane, relativePosition).getSI() / lane.getLength().getSI();
1514     }
1515 
1516     /** {@inheritDoc} */
1517     @Override
1518     public final void addTrigger(final Lane lane, final SimEventInterface<SimTimeDoubleUnit> event)
1519     {
1520         List<SimEventInterface<SimTimeDoubleUnit>> list = this.pendingLeaveTriggers.get(lane);
1521         if (null == list)
1522         {
1523             list = new ArrayList<>();
1524         }
1525         list.add(event);
1526         this.pendingLeaveTriggers.put(lane, list);
1527     }
1528 
1529     /**
1530      * Add enter trigger.
1531      * @param lane Lane; lane
1532      * @param event SimEventInterface&lt;SimTimeDoubleUnit&gt;; event
1533      */
1534     private void addEnterTrigger(final Lane lane, final SimEventInterface<SimTimeDoubleUnit> event)
1535     {
1536         List<SimEventInterface<SimTimeDoubleUnit>> list = this.pendingEnterTriggers.get(lane);
1537         if (null == list)
1538         {
1539             list = new ArrayList<>();
1540         }
1541         list.add(event);
1542         this.pendingEnterTriggers.put(lane, list);
1543     }
1544 
1545     /**
1546      * Sets a vehicle model.
1547      * @param vehicleModel VehicleModel; vehicle model
1548      */
1549     public void setVehicleModel(final VehicleModel vehicleModel)
1550     {
1551         this.vehicleModel = vehicleModel;
1552     }
1553 
1554     /** {@inheritDoc} */
1555     @Override
1556     public VehicleModel getVehicleModel()
1557     {
1558         return this.vehicleModel;
1559     }
1560 
1561     /** {@inheritDoc} */
1562     @Override
1563     @SuppressWarnings("checkstyle:designforextension")
1564     public void destroy()
1565     {
1566         DirectedLanePosition dlp = null;
1567         try
1568         {
1569             dlp = getReferencePosition();
1570         }
1571         catch (GTUException e)
1572         {
1573             // ignore. not important at destroy
1574         }
1575         DirectedPoint location = this.getOperationalPlan() == null ? new DirectedPoint(0.0, 0.0, 0.0) : getLocation();
1576 
1577         synchronized (this.lock)
1578         {
1579             Set<Lane> laneSet = new LinkedHashSet<>(this.currentLanes.keySet()); // Operate on a copy of the key
1580                                                                                  // set
1581             for (Lane lane : laneSet)
1582             {
1583                 try
1584                 {
1585                     leaveLane(lane, true);
1586                 }
1587                 catch (GTUException e)
1588                 {
1589                     // ignore. not important at destroy
1590                 }
1591             }
1592         }
1593 
1594         if (dlp != null && dlp.getLane() != null)
1595         {
1596             Lane referenceLane = dlp.getLane();
1597             fireTimedEvent(LaneBasedGTU.LANEBASED_DESTROY_EVENT,
1598                     new Object[] { getId(), location, getOdometer(), referenceLane, dlp.getPosition(), dlp.getGtuDirection() },
1599                     getSimulator().getSimulatorTime());
1600         }
1601         else
1602         {
1603             fireTimedEvent(LaneBasedGTU.LANEBASED_DESTROY_EVENT,
1604                     new Object[] { getId(), location, getOdometer(), null, Length.ZERO, null },
1605                     getSimulator().getSimulatorTime());
1606         }
1607         if (this.finalizeLaneChangeEvent != null)
1608         {
1609             getSimulator().cancelEvent(this.finalizeLaneChangeEvent);
1610         }
1611 
1612         super.destroy();
1613     }
1614 
1615     /** {@inheritDoc} */
1616     @Override
1617     public final Bounds getBounds()
1618     {
1619         double dx = 0.5 * getLength().doubleValue();
1620         double dy = 0.5 * getWidth().doubleValue();
1621         return new BoundingBox(new Point3d(-dx, -dy, 0.0), new Point3d(dx, dy, 0.0));
1622     }
1623 
1624     /** {@inheritDoc} */
1625     @Override
1626     public final LaneBasedStrategicalPlanner getStrategicalPlanner()
1627     {
1628         return (LaneBasedStrategicalPlanner) super.getStrategicalPlanner();
1629     }
1630 
1631     /** {@inheritDoc} */
1632     @Override
1633     public final LaneBasedStrategicalPlanner getStrategicalPlanner(final Time time)
1634     {
1635         return (LaneBasedStrategicalPlanner) super.getStrategicalPlanner(time);
1636     }
1637 
1638     /** {@inheritDoc} */
1639     @Override
1640     public RoadNetwork getNetwork()
1641     {
1642         return (RoadNetwork) super.getPerceivableContext();
1643     }
1644 
1645     /** {@inheritDoc} */
1646     @Override
1647     public Speed getDesiredSpeed()
1648     {
1649         Time simTime = getSimulator().getSimulatorTime();
1650         if (this.desiredSpeedTime == null || this.desiredSpeedTime.si < simTime.si)
1651         {
1652             InfrastructurePerception infra =
1653                     getTacticalPlanner().getPerception().getPerceptionCategoryOrNull(InfrastructurePerception.class);
1654             SpeedLimitInfo speedInfo;
1655             if (infra == null)
1656             {
1657                 speedInfo = new SpeedLimitInfo();
1658                 speedInfo.addSpeedInfo(SpeedLimitTypes.MAX_VEHICLE_SPEED, getMaximumSpeed());
1659             }
1660             else
1661             {
1662                 // Throw.whenNull(infra, "InfrastructurePerception is required to determine the desired speed.");
1663                 speedInfo = infra.getSpeedLimitProspect(RelativeLane.CURRENT).getSpeedLimitInfo(Length.ZERO);
1664             }
1665             this.cachedDesiredSpeed =
1666                     Try.assign(() -> getTacticalPlanner().getCarFollowingModel().desiredSpeed(getParameters(), speedInfo),
1667                             "Parameter exception while obtaining the desired speed.");
1668             this.desiredSpeedTime = simTime;
1669         }
1670         return this.cachedDesiredSpeed;
1671     }
1672 
1673     /** {@inheritDoc} */
1674     @Override
1675     public Acceleration getCarFollowingAcceleration()
1676     {
1677         Time simTime = getSimulator().getSimulatorTime();
1678         if (this.carFollowingAccelerationTime == null || this.carFollowingAccelerationTime.si < simTime.si)
1679         {
1680             LanePerception perception = getTacticalPlanner().getPerception();
1681             // speed
1682             EgoPerception<?, ?> ego = perception.getPerceptionCategoryOrNull(EgoPerception.class);
1683             Throw.whenNull(ego, "EgoPerception is required to determine the speed.");
1684             Speed speed = ego.getSpeed();
1685             // speed limit info
1686             InfrastructurePerception infra = perception.getPerceptionCategoryOrNull(InfrastructurePerception.class);
1687             Throw.whenNull(infra, "InfrastructurePerception is required to determine the desired speed.");
1688             SpeedLimitInfo speedInfo = infra.getSpeedLimitProspect(RelativeLane.CURRENT).getSpeedLimitInfo(Length.ZERO);
1689             // leaders
1690             NeighborsPerception neighbors = perception.getPerceptionCategoryOrNull(NeighborsPerception.class);
1691             Throw.whenNull(neighbors, "NeighborsPerception is required to determine the car-following acceleration.");
1692             PerceptionCollectable<HeadwayGTU, LaneBasedGTU> leaders = neighbors.getLeaders(RelativeLane.CURRENT);
1693             // obtain
1694             this.cachedCarFollowingAcceleration =
1695                     Try.assign(() -> getTacticalPlanner().getCarFollowingModel().followingAcceleration(getParameters(), speed,
1696                             speedInfo, leaders), "Parameter exception while obtaining the desired speed.");
1697             this.carFollowingAccelerationTime = simTime;
1698         }
1699         return this.cachedCarFollowingAcceleration;
1700     }
1701 
1702     /** {@inheritDoc} */
1703     @Override
1704     public final TurnIndicatorStatus getTurnIndicatorStatus()
1705     {
1706         return this.turnIndicatorStatus.get();
1707     }
1708 
1709     /** {@inheritDoc} */
1710     @Override
1711     public final TurnIndicatorStatus getTurnIndicatorStatus(final Time time)
1712     {
1713         return this.turnIndicatorStatus.get(time);
1714     }
1715 
1716     /** {@inheritDoc} */
1717     @Override
1718     public final void setTurnIndicatorStatus(final TurnIndicatorStatus turnIndicatorStatus)
1719     {
1720         this.turnIndicatorStatus.set(turnIndicatorStatus);
1721     }
1722 
1723     /** {@inheritDoc} */
1724     @Override
1725     @SuppressWarnings("checkstyle:designforextension")
1726     public String toString()
1727     {
1728         return String.format("GTU " + getId());
1729     }
1730 
1731 }