View Javadoc
1   package org.opentrafficsim.road.network.lane;
2   
3   import java.io.Serializable;
4   
5   import org.djunits.value.vdouble.scalar.Length;
6   import org.opentrafficsim.core.geometry.OTSLine3D;
7   import org.opentrafficsim.core.gtu.GTUDirectionality;
8   import org.opentrafficsim.core.gtu.GTUException;
9   import org.opentrafficsim.core.network.LinkDirection;
10  
11  import nl.tudelft.simulation.language.Throw;
12  import nl.tudelft.simulation.language.d3.DirectedPoint;
13  
14  /**
15   * Store one position, direction and lane of a GTU.
16   * <p>
17   * Copyright (c) 2013-2018 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
18   * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
19   * </p>
20   * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $,
21   * initial version Nov 11, 2015 <br>
22   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
23   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
24   */
25  public class DirectedLanePosition implements Serializable
26  {
27      /** */
28      private static final long serialVersionUID = 20151111L;
29  
30      /** The lane for the position. */
31      private final Lane lane;
32  
33      /** The position on the lane, relative to the cross section link (design line). */
34      private final Length position;
35  
36      /** The direction the vehicle is driving to -- either in the direction of the design line, or against it. */
37      private final GTUDirectionality gtuDirection;
38  
39      /** Link direction. */
40      private LinkDirection linkDirection = null;
41  
42      /**
43       * Construct a new DirectedLanePosition.
44       * @param lane Lane; the lane for the position
45       * @param position Length; the position on the lane, relative to the cross section link (design line)
46       * @param gtuDirection GTUDirectionality; the direction the vehicle is driving to -- either in the direction of the design
47       *            line, or against it
48       * @throws GTUException when preconditions fail
49       */
50      public DirectedLanePosition(final Lane lane, final Length position, final GTUDirectionality gtuDirection)
51              throws GTUException
52      {
53          super();
54          Throw.when(lane == null, GTUException.class, "lane is null");
55          Throw.when(position == null, GTUException.class, "position is null");
56          Throw.when(gtuDirection == null, GTUException.class, "gtuDirection is null");
57          this.lane = lane;
58          this.position = position;
59          this.gtuDirection = gtuDirection;
60      }
61  
62      /**
63       * Retrieve the lane.
64       * @return Lane; the lane for the position
65       */
66      public final Lane getLane()
67      {
68          return this.lane;
69      }
70  
71      /**
72       * Retrieve the position on the lane.
73       * @return Length; the position on the lane, relative to the cross section link (design line)
74       */
75      public final Length getPosition()
76      {
77          return this.position;
78      }
79  
80      /**
81       * Retrieve the gtuDirection.
82       * @return GTUDirectionality; gtuDirection the direction the vehicle is driving to -- either in the direction of the design
83       *         line, or against it
84       */
85      public final GTUDirectionality getGtuDirection()
86      {
87          return this.gtuDirection;
88      }
89  
90      /**
91       * Retrieve the location and direction of the GTU on the lane.
92       * @return DirectedPoint; the location and direction of the GTU on the lane
93       */
94      public final DirectedPoint getLocation()
95      {
96          // double fraction = this.position.si / this.lane.getParentLink().getLength().si;
97          OTSLine3D centerLine = this.lane.getCenterLine();
98          double centerLineLength = centerLine.getLengthSI();
99          double fraction = this.position.si / centerLineLength;
100         DirectedPoint p = centerLine.getLocationFractionExtended(fraction);
101         if (this.gtuDirection.equals(GTUDirectionality.DIR_PLUS))
102         {
103             return p;
104         }
105         return new DirectedPoint(p.x, p.y, p.z, p.getRotX(), p.getRotY(), p.getRotZ() + Math.PI);
106     }
107     
108     /**
109      * Returns the lane direction in the direction of this lane direction.
110      * @return lane direction in the direction of this lane direction
111      */
112     public final LaneDirection getLaneDirection()
113     {
114         return new LaneDirection(this.lane, this.gtuDirection);
115     }
116     
117     /**
118      * Returns the link direction in the direction of this lane direction.
119      * @return link direction in the direction of this lane direction
120      */
121     public final LinkDirection getLinkDirection()
122     {
123         if (this.linkDirection == null)
124         {
125             this.linkDirection = new LinkDirection(this.lane.getParentLink(), this.gtuDirection);
126         }
127         return this.linkDirection;
128     }
129 
130     /** {@inheritDoc} */
131     @Override
132     public int hashCode()
133     {
134         final int prime = 31;
135         int result = 1;
136         result = prime * result + ((this.gtuDirection == null) ? 0 : this.gtuDirection.hashCode());
137         result = prime * result + ((this.lane == null) ? 0 : this.lane.hashCode());
138         result = prime * result + ((this.position == null) ? 0 : this.position.hashCode());
139         return result;
140     }
141 
142     /** {@inheritDoc} */
143     @Override
144     public boolean equals(final Object obj)
145     {
146         if (this == obj)
147             return true;
148         if (obj == null)
149             return false;
150         if (getClass() != obj.getClass())
151             return false;
152         DirectedLanePosition other = (DirectedLanePosition) obj;
153         if (this.gtuDirection != other.gtuDirection)
154             return false;
155         if (this.lane == null)
156         {
157             if (other.lane != null)
158                 return false;
159         }
160         else if (!this.lane.equals(other.lane))
161             return false;
162         if (this.position == null)
163         {
164             if (other.position != null)
165                 return false;
166         }
167         else if (!this.position.equals(other.position))
168             return false;
169         return true;
170     }
171 
172     /** {@inheritDoc} */
173     @Override
174     public final String toString()
175     {
176         return "DirectedLanePosition [lane=" + this.lane + ", position=" + this.position + ", gtuDirection=" + this.gtuDirection
177                 + "]";
178     }
179 
180 }