Class LaneBasedObjectIterable<H extends Headway,L extends LaneBasedObject>
java.lang.Object
org.opentrafficsim.road.gtu.lane.perception.AbstractPerceptionReiterable<H,U>
org.opentrafficsim.road.gtu.lane.perception.AbstractPerceptionIterable<H,L,Boolean>
org.opentrafficsim.road.gtu.lane.perception.LaneBasedObjectIterable<H,L>
- Type Parameters:
H
- headway typeL
- lane based object type
- All Implemented Interfaces:
Iterable<H>
,PerceptionCollectable<H,
,L> PerceptionIterable<H>
public abstract class LaneBasedObjectIterable<H extends Headway,L extends LaneBasedObject>
extends AbstractPerceptionIterable<H,L,Boolean>
Iterable that searches downstream or upstream for a certain type of lane based object.
Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
- Author:
- Alexander Verbraeck, Peter Knoppers, Wouter Schakel
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opentrafficsim.road.gtu.lane.perception.AbstractPerceptionIterable
AbstractPerceptionIterable.Entry
Nested classes/interfaces inherited from class org.opentrafficsim.road.gtu.lane.perception.AbstractPerceptionReiterable
AbstractPerceptionReiterable.PerceptionIterator, AbstractPerceptionReiterable.PrimaryIteratorEntry
Nested classes/interfaces inherited from interface org.opentrafficsim.road.gtu.lane.perception.PerceptionCollectable
PerceptionCollectable.Intermediate<I>, PerceptionCollectable.PerceptionAccumulator<U,
I>, PerceptionCollectable.PerceptionCollector<C, U, I>, PerceptionCollectable.PerceptionFinalizer<C, I>, PerceptionCollectable.UnderlyingDistance<U> -
Constructor Summary
ConstructorDescriptionLaneBasedObjectIterable
(LaneBasedGtu perceivingGtu, Class<L> clazz, LaneRecordInterface<?> root, org.djunits.value.vdouble.scalar.Length initialPosition, boolean downstream, org.djunits.value.vdouble.scalar.Length maxDistance, RelativePosition relativePosition, Route route) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionprotected final org.djunits.value.vdouble.scalar.Length
getDistance
(L object, LaneRecordInterface<?> record, org.djunits.value.vdouble.scalar.Length position) Returns the distance to the object.protected AbstractPerceptionIterable<H,
L, Boolean>.Entry getNext
(LaneRecordInterface<?> record, org.djunits.value.vdouble.scalar.Length position, Boolean counter) Returns the next object(s) on the lane represented by the record.toString()
Methods inherited from class org.opentrafficsim.road.gtu.lane.perception.AbstractPerceptionIterable
getDx, isDownstream, isOnRoute, primaryIterator
Methods inherited from class org.opentrafficsim.road.gtu.lane.perception.AbstractPerceptionReiterable
addNext, assureNext, collect, first, getGtu, getPrimaryIterator, isEmpty, iterator, perceive, underlying, underlyingWithDistance
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
Methods inherited from interface org.opentrafficsim.road.gtu.lane.perception.PerceptionCollectable
collect
-
Constructor Details
-
LaneBasedObjectIterable
public LaneBasedObjectIterable(LaneBasedGtu perceivingGtu, Class<L> clazz, LaneRecordInterface<?> root, org.djunits.value.vdouble.scalar.Length initialPosition, boolean downstream, org.djunits.value.vdouble.scalar.Length maxDistance, RelativePosition relativePosition, Route route) Constructor.- Parameters:
perceivingGtu
- LaneBasedGtu; perceiving GTUclazz
- Class<L>; class of lane based objects to returnroot
- LaneRecord<?>; root recordinitialPosition
- Length; initial positiondownstream
- boolean; downstreammaxDistance
- Length; max distance to searchrelativePosition
- RelativePosition; relative positionroute
- Route; route of the GTU, may benull
-
-
Method Details
-
getNext
protected AbstractPerceptionIterable<H,L, getNextBoolean>.Entry (LaneRecordInterface<?> record, org.djunits.value.vdouble.scalar.Length position, Boolean counter) Returns the next object(s) on the lane represented by the record. This should only consider objects on the given lane. This method should not check the distance towards objects with the maximum distance. The counter will benull
for the first object(s). For following object(s) it is whatever value is given with the previous outputEntry
. Hence, this method maintains its own counting system.- Specified by:
getNext
in classAbstractPerceptionIterable<H extends Headway,
L extends LaneBasedObject, Boolean> - Parameters:
record
- LaneRecord<?>; record representing the lane and directionposition
- Length; position to look beyondcounter
- C; counter- Returns:
- next object(s) on the lane or
null
if none
-
getDistance
protected final org.djunits.value.vdouble.scalar.Length getDistance(L object, LaneRecordInterface<?> record, org.djunits.value.vdouble.scalar.Length position) Returns the distance to the object. The position fed in to this method is directly taken from anEntry
returned bygetNext
. The two methods need to be consistent with each other.- Specified by:
getDistance
in classAbstractPerceptionIterable<H extends Headway,
L extends LaneBasedObject, Boolean> - Parameters:
object
- U; underlying objectrecord
- LaneRecord<?>; record representing the lane and directionposition
- Length; position of the object on the lane- Returns:
- Length; distance to the object
-
toString
-