SUMO - Simulation of Urban MObility
GUILane.h
Go to the documentation of this file.
1 /****************************************************************************/
9 // Representation of a lane in the micro simulation (gui-version)
10 /****************************************************************************/
11 // SUMO, Simulation of Urban MObility; see http://sumo.dlr.de/
12 // Copyright (C) 2001-2015 DLR (http://www.dlr.de/) and contributors
13 /****************************************************************************/
14 //
15 // This file is part of SUMO.
16 // SUMO is free software: you can redistribute it and/or modify
17 // it under the terms of the GNU General Public License as published by
18 // the Free Software Foundation, either version 3 of the License, or
19 // (at your option) any later version.
20 //
21 /****************************************************************************/
22 #ifndef GUILane_h
23 #define GUILane_h
24 
25 
26 // ===========================================================================
27 // included modules
28 // ===========================================================================
29 #ifdef _MSC_VER
30 #include <windows_config.h>
31 #else
32 #include <config.h>
33 #endif
34 
35 #include <fx.h>
36 #include <string>
37 #include <utility>
38 #include <microsim/MSLane.h>
39 #include <microsim/MSEdge.h>
41 #include <utils/geom/Position.h>
45 
46 
47 // ===========================================================================
48 // class declarations
49 // ===========================================================================
50 class GUINet;
51 class MSVehicle;
52 class MSNet;
53 #ifdef HAVE_OSG
54 namespace osg {
55 class Geometry;
56 }
57 #endif
58 
59 // ===========================================================================
60 // class definitions
61 // ===========================================================================
70 class GUILane : public MSLane, public GUIGlObject {
71 public:
85  GUILane(const std::string& id, SUMOReal maxSpeed,
86  SUMOReal length, MSEdge* const edge, unsigned int numericalID,
87  const PositionVector& shape, SUMOReal width,
88  SVCPermissions permissions, unsigned int index);
89 
90 
92  ~GUILane();
93 
98  const std::string& getParentName() const {
99  return getEdge().getID();
100  }
101 
102 
105 
115  const VehCont& getVehiclesSecure() const;
116 
117 
123  void releaseVehicles() const;
125 
126 
127 
130 
133  void planMovements(const SUMOTime t);
134 
137  bool executeMovements(SUMOTime t, std::vector<MSLane*>& into);
138 
143 
144 
147  void detectCollisions(SUMOTime timestep, const std::string& stage);
148 
149 
152  MSVehicle* removeVehicle(MSVehicle* remVehicle, MSMoveReminder::Notification notification, bool notify);
153 
154 
155 
157 
158 
167  GUISUMOAbstractView& parent);
168 
169 
178  GUISUMOAbstractView& parent);
179 
180 
187 
188 
193  void drawGL(const GUIVisualizationSettings& s) const;
195 
196 
197 
198  const PositionVector& getShape() const;
199  const std::vector<SUMOReal>& getShapeRotations() const;
200  const std::vector<SUMOReal>& getShapeLengths() const;
201 
202  SUMOReal firstWaitingTime() const;
203 
205  void drawMarkings(const GUIVisualizationSettings& s, SUMOReal scale) const;
206 
208  void drawBikeMarkings() const;
209 
211  void drawCrossties(SUMOReal length, SUMOReal spacing, SUMOReal halfWidth) const;
212 
213  SUMOReal getEdgeLaneNumber() const;
214 
218 
222 
223 #ifdef HAVE_OSG
224  void setGeometry(osg::Geometry* geom) {
225  myGeom = geom;
226  }
227 
228  void updateColor(const GUIVisualizationSettings& s);
229 
230 #endif
231 
233  void closeTraffic(bool rebuildAllowed = true);
234 
235  bool isClosed() const {
236  return myAmClosed;
237  }
238 
239 protected:
242 
254  virtual void incorporateVehicle(MSVehicle* veh, SUMOReal pos, SUMOReal speed,
255  const MSLane::VehCont::iterator& at,
257 
258 private:
260  void drawLinkNo(const GUIVisualizationSettings& s) const;
261  void drawTLSLinkNo(const GUIVisualizationSettings& s, const GUINet& net) const;
262  void drawTextAtEnd(const std::string& text, const PositionVector& shape, SUMOReal x, const GUIVisualizationTextSettings& settings) const;
263  void drawLinkRules(const GUIVisualizationSettings& s, const GUINet& net) const;
264  void drawLinkRule(const GUIVisualizationSettings& s, const GUINet& net, MSLink* link, const PositionVector& shape, SUMOReal x1, SUMOReal x2) const;
265  void drawArrows() const;
266  void drawLane2LaneConnections() const;
267 
268 
269 
270 private:
272  SUMOReal getColorValue(size_t activeScheme) const;
273 
275  SUMOReal getScaleValue(size_t activeScheme) const;
276 
278  bool setFunctionalColor(size_t activeScheme) const;
279 
281  bool setMultiColor(const GUIColorer& c) const;
282 
284  void setColor(const GUIVisualizationSettings& s) const;
285 
287  bool drawAsRailway(const GUIVisualizationSettings& s) const;
288 
290  bool drawAsWaterway(const GUIVisualizationSettings& s) const;
291 
293  std::vector<SUMOReal> myShapeRotations;
294 
296  std::vector<SUMOReal> myShapeLengths;
297 
299  mutable std::vector<RGBColor> myShapeColors;
300 
303 
306 
308  unsigned int myIndex;
309 
310 #ifdef HAVE_OSG
311  osg::Geometry* myGeom;
312 #endif
313 
317 
318 private:
320  mutable MFXMutex myLock;
321 
322 
323 };
324 
325 
326 #endif
327 
328 /****************************************************************************/
329 
void drawLane2LaneConnections() const
Definition: GUILane.cpp:398
std::vector< RGBColor > myShapeColors
The color of the shape parts (cached)
Definition: GUILane.h:299
const std::vector< SUMOReal > & getShapeRotations() const
Definition: GUILane.cpp:732
MSEdge & getEdge() const
Returns the lane's edge.
Definition: MSLane.h:461
Representation of a vehicle in the micro simulation.
Definition: MSVehicle.h:80
SUMOReal getScaleValue(size_t activeScheme) const
gets the scaling value according to the current scheme index
Definition: GUILane.cpp:922
long long int SUMOTime
Definition: SUMOTime.h:43
SUMOReal getLoadedEdgeWeight() const
Returns the loaded weight (effort) for the edge of this lane.
Definition: GUILane.cpp:769
void setColor(const GUIVisualizationSettings &s) const
sets the color according to the currente settings
Definition: GUILane.cpp:782
void drawLinkRules(const GUIVisualizationSettings &s, const GUINet &net) const
Definition: GUILane.cpp:247
~GUILane()
Destructor.
Definition: GUILane.cpp:96
unsigned int myIndex
The lane index.
Definition: GUILane.h:308
bool isClosed() const
Definition: GUILane.h:235
void closeTraffic(bool rebuildAllowed=true)
close this lane for traffic
Definition: GUILane.cpp:1012
Stores the information about how to visualize structures.
int SVCPermissions
const std::string & getParentName() const
Returns the name of the parent object (if any)
Definition: GUILane.h:98
void drawTextAtEnd(const std::string &text, const PositionVector &shape, SUMOReal x, const GUIVisualizationTextSettings &settings) const
Definition: GUILane.cpp:234
std::vector< MSVehicle * > VehCont
Container for vehicles.
Definition: MSLane.h:88
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
Definition: GUILane.cpp:417
Notification
Definition of a vehicle state.
void drawMarkings(const GUIVisualizationSettings &s, SUMOReal scale) const
draw lane borders and white markings
Definition: GUILane.cpp:570
SVCPermissions myOriginalPermissions
Definition: GUILane.h:316
const std::vector< SUMOReal > & getShapeLengths() const
Definition: GUILane.cpp:738
void drawArrows() const
Definition: GUILane.cpp:331
void drawCrossties(SUMOReal length, SUMOReal spacing, SUMOReal halfWidth) const
draw crossties for railroads or pedestrian crossings
Definition: GUILane.cpp:634
bool integrateNewVehicle(SUMOTime t)
Definition: GUILane.cpp:157
A class that stores a 2D geometrical boundary.
Definition: Boundary.h:48
bool setMultiColor(const GUIColorer &c) const
sets multiple colors according to the current scheme index and some lane function ...
Definition: GUILane.cpp:805
The simulated network and simulation perfomer.
Definition: MSNet.h:94
void drawBikeMarkings() const
bike lane markings on top of an intersection
Definition: GUILane.cpp:609
Representation of a lane in the micro simulation (gui-version)
Definition: GUILane.h:70
std::vector< SUMOReal > myShapeRotations
The rotations of the shape parts.
Definition: GUILane.h:293
const std::string & getID() const
Returns the id.
Definition: Named.h:65
A road/street connecting two junctions.
Definition: MSEdge.h:81
GUIParameterTableWindow * getParameterWindow(GUIMainWindow &app, GUISUMOAbstractView &parent)
Returns an own parameter window.
Definition: GUILane.cpp:688
void drawLinkNo(const GUIVisualizationSettings &s) const
helper methods
Definition: GUILane.cpp:172
bool executeMovements(SUMOTime t, std::vector< MSLane * > &into)
Definition: GUILane.cpp:136
MFXMutex myLock
The mutex used to avoid concurrent updates of the vehicle buffer.
Definition: GUILane.h:320
Boundary getCenteringBoundary() const
Returns the boundary to which the view shall be centered in order to show the object.
Definition: GUILane.cpp:711
A list of positions.
void planMovements(const SUMOTime t)
Definition: GUILane.cpp:129
bool drawAsWaterway(const GUIVisualizationSettings &s) const
whether to draw this lane as a waterway
Definition: GUILane.cpp:995
std::vector< SUMOReal > myShapeLengths
The lengths of the shape parts.
Definition: GUILane.h:296
SUMOReal firstWaitingTime() const
Definition: GUILane.cpp:744
GUILane(const std::string &id, SUMOReal maxSpeed, SUMOReal length, MSEdge *const edge, unsigned int numericalID, const PositionVector &shape, SUMOReal width, SVCPermissions permissions, unsigned int index)
Constructor.
Definition: GUILane.cpp:72
MSVehicle * removeVehicle(MSVehicle *remVehicle, MSMoveReminder::Notification notification, bool notify)
Definition: GUILane.cpp:143
virtual void incorporateVehicle(MSVehicle *veh, SUMOReal pos, SUMOReal speed, const MSLane::VehCont::iterator &at, MSMoveReminder::Notification notification=MSMoveReminder::NOTIFICATION_DEPARTED)
Inserts the vehicle into this lane, and informs it about entering the network.
Definition: GUILane.cpp:106
bool setFunctionalColor(size_t activeScheme) const
sets the color according to the current scheme index and some lane function
Definition: GUILane.cpp:791
SUMOReal getEdgeLaneNumber() const
Definition: GUILane.cpp:750
void drawLinkRule(const GUIVisualizationSettings &s, const GUINet &net, MSLink *link, const PositionVector &shape, SUMOReal x1, SUMOReal x2) const
Definition: GUILane.cpp:275
void swapAfterLaneChange(SUMOTime t)
moves myTmpVehicles int myVehicles after a lane change procedure
Definition: GUILane.cpp:150
The vehicle has departed (was inserted into the network)
SUMOReal getColorValue(size_t activeScheme) const
gets the color value according to the current scheme index
Definition: GUILane.cpp:827
void drawTLSLinkNo(const GUIVisualizationSettings &s, const GUINet &net) const
Definition: GUILane.cpp:200
A MSNet extended by some values for usage within the gui.
Definition: GUINet.h:91
SUMOReal getStoredEdgeTravelTime() const
Returns the stored traveltime for the edge of this lane.
Definition: GUILane.cpp:756
void detectCollisions(SUMOTime timestep, const std::string &stage)
Definition: GUILane.cpp:164
The popup menu of a globject.
SUMOReal myHalfLaneWidth
Half of lane width, for speed-up.
Definition: GUILane.h:302
bool drawAsRailway(const GUIVisualizationSettings &s) const
whether to draw this lane as a railway
Definition: GUILane.cpp:989
bool myAmClosed
state for dynamic lane closings
Definition: GUILane.h:315
SUMOReal myQuarterLaneWidth
Quarter of lane width, for speed-up.
Definition: GUILane.h:305
const VehCont & getVehiclesSecure() const
Returns the vehicles container; locks it for microsimulation.
Definition: GUILane.cpp:116
#define SUMOReal
Definition: config.h:215
GUIGLObjectPopupMenu * getPopUpMenu(GUIMainWindow &app, GUISUMOAbstractView &parent)
Returns an own popup-menu.
Definition: GUILane.cpp:658
Representation of a lane in the micro simulation.
Definition: MSLane.h:77
A window containing a gl-object's parameter.
void releaseVehicles() const
Allows to use the container for microsimulation again.
Definition: GUILane.cpp:123
const PositionVector & getShape() const
Definition: GUILane.cpp:726