Eclipse SUMO - Simulation of Urban MObility
GUIJunctionWrapper.cpp
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3 // Copyright (C) 2001-2024 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials are made available under the
5 // terms of the Eclipse Public License 2.0 which is available at
6 // https://www.eclipse.org/legal/epl-2.0/
7 // This Source Code may also be made available under the following Secondary
8 // Licenses when the conditions for such availability set forth in the Eclipse
9 // Public License 2.0 are satisfied: GNU General Public License, version 2
10 // or later which is available at
11 // https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12 // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13 /****************************************************************************/
22 // }
23 /****************************************************************************/
24 #include <config.h>
25 
26 #include <string>
27 #include <utility>
28 #include <microsim/MSLane.h>
29 #include <microsim/MSEdge.h>
30 #include <microsim/MSJunction.h>
31 #include <utils/geom/Position.h>
32 #include <utils/geom/GeomHelper.h>
33 #include <microsim/MSNet.h>
38 #include <gui/GUIGlobals.h>
41 #include "GUIJunctionWrapper.h"
45 #include <utils/gui/div/GLHelper.h>
47 
48 #include <osgview/GUIOSGHeader.h>
49 
50 // ===========================================================================
51 // method definitions
52 // ===========================================================================
53 GUIJunctionWrapper::GUIJunctionWrapper(MSJunction& junction, const std::string& tllID):
54  GUIGlObject(GLO_JUNCTION, junction.getID(), GUIIconSubSys::getIcon(GUIIcon::JUNCTION)),
55  myJunction(junction),
56  myTesselation(junction.getID(), "", RGBColor::MAGENTA, junction.getShape(), false, true, 0),
57  myExaggeration(1),
58  myTLLID(tllID) {
59  if (myJunction.getShape().size() == 0) {
61  myBoundary = Boundary(pos.x() - 1., pos.y() - 1., pos.x() + 1., pos.y() + 1.);
62  } else {
64  }
67  myAmWaterway = myJunction.getIncoming().size() + myJunction.getOutgoing().size() > 0;
68  myAmRailway = myJunction.getIncoming().size() + myJunction.getOutgoing().size() > 0;
69  myAmAirway = myJunction.getIncoming().size() + myJunction.getOutgoing().size() > 0;
70  for (auto it = myJunction.getIncoming().begin(); it != myJunction.getIncoming().end() && (myAmWaterway || myAmRailway); ++it) {
71  if (!(*it)->isInternal()) {
72  if (!isWaterway((*it)->getPermissions())) {
73  myAmWaterway = false;
74  }
75  if (!isRailway((*it)->getPermissions())) {
76  myAmRailway = false;
77  }
78  if (!isAirway((*it)->getPermissions())) {
79  myAmAirway = false;
80  }
81  }
82  }
83  for (auto it = myJunction.getOutgoing().begin(); it != myJunction.getOutgoing().end() && (myAmWaterway || myAmRailway); ++it) {
84  if (!(*it)->isInternal()) {
85  if (!isWaterway((*it)->getPermissions())) {
86  myAmWaterway = false;
87  }
88  if (!isRailway((*it)->getPermissions())) {
89  myAmRailway = false;
90  }
91  if (!isAirway((*it)->getPermissions())) {
92  myAmAirway = false;
93  }
94  }
95  }
97 }
98 
99 
101 
102 
105  GUISUMOAbstractView& parent) {
106  GUIGLObjectPopupMenu* ret = new GUIGLObjectPopupMenu(app, parent, *this);
107  buildPopupHeader(ret, app);
112  buildPositionCopyEntry(ret, app);
113  return ret;
114 }
115 
116 
119  GUIParameterTableWindow* ret = new GUIParameterTableWindow(app, *this);
120  // add items
121  ret->mkItem(TL("type"), false, toString(myJunction.getType()));
122  ret->mkItem(TL("name"), false, myJunction.getName());
123  // close building
124  ret->closeBuilding(&myJunction);
125  return ret;
126 }
127 
128 
129 double
131  return s.junctionSize.getExaggeration(s, this, 4);
132 }
133 
134 
135 Boundary
137  Boundary b = myBoundary;
138  b.grow(1);
139  return b;
140 }
141 
142 const std::string
144  return myJunction.getName();
145 }
146 
147 void
149  const bool s2 = s.secondaryShape;
150  if (!myIsInternal && s.drawJunctionShape && !s2) {
151  // check whether it is not too small
152  const double exaggeration = getExaggeration(s);
153  if (s.scale * exaggeration >= s.junctionSize.minSize) {
156  const double colorValue = getColorValue(s, s.junctionColorer.getActive());
157  const RGBColor color = s.junctionColorer.getScheme().getColor(colorValue);
158  GLHelper::setColor(color);
159 
160  // recognize full transparency and simply don't draw
161  if (color.alpha() != 0) {
162  if ((exaggeration > 1 || myExaggeration > 1) && exaggeration != myExaggeration) {
163  myExaggeration = exaggeration;
166  myTesselation.getShapeRef().scaleRelative(exaggeration);
168  }
169  glTranslated(0, 0, getType());
170  if (s.scale * myMaxSize < 40.) {
172  } else {
174  }
175  // make small junctions more visible when coloring by type
177  glTranslated(myJunction.getPosition(s2).x(), myJunction.getPosition(s2).y(), getType() + 0.05);
178  GLHelper::drawFilledCircle(2 * exaggeration, 12);
179  }
180  }
183  if (s.geometryIndices.show(this)) {
185  }
186  }
187  }
188  if (myIsInternal) {
190  } else {
192  if (s.junctionName.show(this) && myJunction.getName() != "") {
194  }
195  if ((s.tlsPhaseIndex.show(this) || s.tlsPhaseName.show(this)) && myTLLID != "") {
197  if (s.tlsPhaseIndex.show(this)) {
198  const int index = active->getCurrentPhaseIndex();
200  }
201  if (s.tlsPhaseName.show(this)) {
202  const std::string& name = active->getCurrentPhaseDef().getName();
203  if (name != "") {
204  const Position offset = (s.tlsPhaseIndex.show(this) ?
206  : Position(0, 0));
208  }
209  }
210  }
211  }
212 }
213 
214 
215 double
216 GUIJunctionWrapper::getColorValue(const GUIVisualizationSettings& /* s */, int activeScheme) const {
217  switch (activeScheme) {
218  case 0:
219  if (myAmWaterway) {
220  return 1;
221  } else if (myAmRailway && MSNet::getInstance()->hasInternalLinks()) {
222  return 2;
223  } else if (myAmAirway) {
224  return 3;
225  } else {
226  return 0;
227  }
228  case 1:
229  return gSelected.isSelected(getType(), getGlID()) ? 1 : 0;
230  case 2:
231  switch (myJunction.getType()) {
233  return 0;
235  return 1;
237  return 2;
239  return 3;
241  return 4;
243  return 5;
245  return 6;
247  return 7;
250  return 8;
253  assert(false);
254  return 8;
256  return 9;
258  return 10;
260  return 11;
262  return 12;
264  return 13;
265  default:
266  assert(false);
267  return 0;
268  }
269  case 3:
270  return myJunction.getPosition().z();
271  default:
272  assert(false);
273  return 0;
274  }
275 }
276 
277 #ifdef HAVE_OSG
278 void
279 GUIJunctionWrapper::updateColor(const GUIVisualizationSettings& s) {
280  const double colorValue = getColorValue(s, s.junctionColorer.getActive());
281  const RGBColor& col = s.junctionColorer.getScheme().getColor(colorValue);
282  osg::Vec4ubArray* colors = dynamic_cast<osg::Vec4ubArray*>(myGeom->getColorArray());
283  (*colors)[0].set(col.red(), col.green(), col.blue(), col.alpha());
284  myGeom->setColorArray(colors);
285 }
286 #endif
287 
288 
289 /****************************************************************************/
@ GLO_JUNCTION
a junction
GUISelectedStorage gSelected
A global holder of selected objects.
GUIIcon
An enumeration of icons used by the gui applications.
Definition: GUIIcons.h:33
#define DEG2RAD(x)
Definition: GeomHelper.h:35
#define TL(string)
Definition: MsgHandler.h:315
bool isRailway(SVCPermissions permissions)
Returns whether an edge with the given permission is a railway edge.
bool isWaterway(SVCPermissions permissions)
Returns whether an edge with the given permission is a waterway edge.
bool isAirway(SVCPermissions permissions)
Returns whether an edge with the given permission is an airway edge.
T MAX2(T a, T b)
Definition: StdDefs.h:82
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition: ToString.h:46
A class that stores a 2D geometrical boundary.
Definition: Boundary.h:39
Boundary & grow(double by)
extends the boundary by the given amount
Definition: Boundary.cpp:319
double getHeight() const
Returns the height of the boundary (y-axis)
Definition: Boundary.cpp:160
double getWidth() const
Returns the width of the boudary (x-axis)
Definition: Boundary.cpp:154
static void drawFilledPoly(const PositionVector &v, bool close)
Draws a filled polygon described by the list of points.
Definition: GLHelper.cpp:203
static void setColor(const RGBColor &c)
Sets the gl-color to this value.
Definition: GLHelper.cpp:654
static void pushName(unsigned int name)
push Name
Definition: GLHelper.cpp:139
static void drawFilledCircle(const double widradiusth, const int steps=8)
Draws a filled circle around (0,0)
Definition: GLHelper.cpp:569
static void popMatrix()
pop matrix
Definition: GLHelper.cpp:130
static void debugVertices(const PositionVector &shape, const GUIVisualizationTextSettings &settings, double scale, double layer=1024)
draw vertex numbers for the given shape (in a random color)
Definition: GLHelper.cpp:953
static void popName()
pop Name
Definition: GLHelper.cpp:148
static void pushMatrix()
push matrix
Definition: GLHelper.cpp:117
static void drawTextSettings(const GUIVisualizationTextSettings &settings, const std::string &text, const Position &pos, const double scale, const double angle=0, const double layer=2048, const int align=0)
Definition: GLHelper.cpp:787
The popup menu of a globject.
void buildShowParamsPopupEntry(GUIGLObjectPopupMenu *ret, bool addSeparator=true)
Builds an entry which allows to open the parameter window.
void buildCenterPopupEntry(GUIGLObjectPopupMenu *ret, bool addSeparator=true)
Builds an entry which allows to center to the object.
void buildNameCopyPopupEntry(GUIGLObjectPopupMenu *ret, bool addSeparator=true)
Builds entries which allow to copy the name / typed name into the clipboard.
void buildPopupHeader(GUIGLObjectPopupMenu *ret, GUIMainWindow &app, bool addSeparator=true)
Builds the header.
GUIGlObjectType getType() const
Returns the type of the object as coded in GUIGlObjectType.
Definition: GUIGlObject.h:156
void buildSelectionPopupEntry(GUIGLObjectPopupMenu *ret, bool addSeparator=true)
Builds an entry which allows to (de)select the object.
void buildPositionCopyEntry(GUIGLObjectPopupMenu *ret, const GUIMainWindow &app) const
Builds an entry which allows to copy the cursor position if geo projection is used,...
GUIGlID getGlID() const
Returns the numerical id of the object.
Definition: GUIGlObject.h:104
void drawName(const Position &pos, const double scale, const GUIVisualizationTextSettings &settings, const double angle=0, bool forceShow=false) const
draw name of item
bool myAmAirway
whether this junction has only airways as incoming and outgoing edges
double myMaxSize
The maximum size (in either x-, or y-dimension) for determining whether to draw or not.
TesselatedPolygon myTesselation
An object that stores the shape and its tesselation.
Boundary myBoundary
The represented junction's boundary.
const std::string myTLLID
the associated traffic light or ""
double getColorValue(const GUIVisualizationSettings &s, int activeScheme) const
const std::string getOptionalName() const
Returns the value for generic parameter 'name' or ''.
bool myAmRailway
whether this junction has only railways as incoming and outgoing edges
bool myIsInternal
whether this wraps an instance of MSInternalJunction
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
bool myAmWaterway
whether this junction has only waterways as incoming and outgoing edges
GUIParameterTableWindow * getParameterWindow(GUIMainWindow &app, GUISUMOAbstractView &parent)
Returns an own parameter window.
GUIGLObjectPopupMenu * getPopUpMenu(GUIMainWindow &app, GUISUMOAbstractView &parent)
Returns an own popup-menu.
double getExaggeration(const GUIVisualizationSettings &s) const
return exaggeration associated with this GLObject
GUIJunctionWrapper(MSJunction &junction, const std::string &tllID)
Constructor.
Boundary getCenteringBoundary() const
Returns the boundary to which the view shall be centered in order to show the object.
MSJunction & myJunction
A reference to the represented junction.
virtual ~GUIJunctionWrapper()
Destructor.
A window containing a gl-object's parameter.
void mkItem(const char *name, bool dynamic, ValueSource< T > *src)
Adds a row which obtains its value from a ValueSource.
void closeBuilding(const Parameterised *p=0)
Closes the building of the table.
T getColor(const double value) const
bool isSelected(GUIGlObjectType type, GUIGlID id)
Returns the information whether the object with the given type and id is selected.
Stores the information about how to visualize structures.
GUIVisualizationTextSettings tlsPhaseIndex
GUIVisualizationTextSettings junctionName
GUIVisualizationSizeSettings junctionSize
GUIVisualizationTextSettings internalJunctionName
bool drawJunctionShape
whether the shape of the junction should be drawn
GUIVisualizationTextSettings geometryIndices
GUIVisualizationTextSettings junctionID
double scale
information about a lane's width (temporary, used for a single view)
bool secondaryShape
whether secondary lane shape shall be drawn
GUIVisualizationTextSettings tlsPhaseName
GUIColorer junctionColorer
The junction colorer.
double angle
The current view rotation angle.
The base class for an intersection.
Definition: MSJunction.h:58
const ConstMSEdgeVector & getIncoming() const
Definition: MSJunction.h:108
const PositionVector & getShape() const
Returns this junction's shape.
Definition: MSJunction.h:91
const ConstMSEdgeVector & getOutgoing() const
Definition: MSJunction.h:114
SumoXMLNodeType getType() const
return the type of this Junction
Definition: MSJunction.h:133
const Position & getPosition(bool secondaryShape=false) const
Definition: MSJunction.cpp:68
const std::string & getName() const
return the junction name
Definition: MSJunction.h:96
static MSNet * getInstance()
Returns the pointer to the unique instance of MSNet (singleton).
Definition: MSNet.cpp:182
MSTLLogicControl & getTLSControl()
Returns the tls logics control.
Definition: MSNet.h:451
const std::string & getName() const
MSTrafficLightLogic * getActive(const std::string &id) const
Returns the active program of a named tls.
The parent class for traffic light logics.
virtual const MSPhaseDefinition & getCurrentPhaseDef() const =0
Returns the definition of the current phase.
virtual int getCurrentPhaseIndex() const =0
Returns the current index within the program.
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:37
double x() const
Returns the x-position.
Definition: Position.h:55
Position rotateAround2D(double rad, const Position &origin)
rotate this position by rad around origin and return the result
Definition: Position.cpp:41
double z() const
Returns the z-position.
Definition: Position.h:65
double y() const
Returns the y-position.
Definition: Position.h:60
void closePolygon()
ensures that the last position equals the first
Boundary getBoxBoundary() const
Returns a boundary enclosing this list of lines.
void scaleRelative(double factor)
enlarges/shrinks the polygon by a factor based at the centroid
unsigned char red() const
Returns the red-amount of the color.
Definition: RGBColor.cpp:74
unsigned char alpha() const
Returns the alpha-amount of the color.
Definition: RGBColor.cpp:92
unsigned char green() const
Returns the green-amount of the color.
Definition: RGBColor.cpp:80
unsigned char blue() const
Returns the blue-amount of the color.
Definition: RGBColor.cpp:86
const PositionVector & getShape() const
Returns the shape of the polygon.
Definition: SUMOPolygon.cpp:51
PositionVector & getShapeRef()
Return the exterior shape of the polygon.
Definition: SUMOPolygon.h:130
virtual void setShape(const PositionVector &shape)
Sets the shape of the polygon.
Definition: SUMOPolygon.cpp:87
std::vector< GLPrimitive > myTesselation
id of the display list for the cached tesselation
Definition: GUIPolygon.h:74
void drawTesselation(const PositionVector &shape) const
perform the tesselation / drawing
Definition: GUIPolygon.cpp:117
double getExaggeration(const GUIVisualizationSettings &s, const GUIGlObject *o, double factor=20) const
return the drawing size including exaggeration and constantSize values
double minSize
The minimum size to draw this object.
bool show(const GUIGlObject *o) const
whether to show the text
double scaledSize(double scale, double constFactor=0.1) const
get scale size