Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
GNEEdgeRelData.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-2025 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/****************************************************************************/
18// class for edge relation data
19/****************************************************************************/
20
21#include <netedit/GNENet.h>
23#include <netedit/GNESegment.h>
24#include <netedit/GNEUndoList.h>
25#include <netedit/GNEViewNet.h>
31
32#include "GNEEdgeRelData.h"
33#include "GNEDataInterval.h"
34
35// ===========================================================================
36// member method definitions
37// ===========================================================================
38
42
43
44GNEEdgeRelData::GNEEdgeRelData(GNEDataInterval* dataIntervalParent, GNEEdge* fromEdge, GNEEdge* toEdge,
45 const Parameterised::Map& parameters) :
46 GNEGenericData(SUMO_TAG_EDGEREL, dataIntervalParent, parameters) {
47 // set parents
48 setParents<GNEEdge*>({fromEdge, toEdge});
49}
50
51
53
54
57 // set default color
62 // user defined rainbow
63 double val = getColorValue(s, s.dataColorer.getActive());
64 col = s.dataColorer.getScheme().getColor(val);
66 // get selected data interval and filtered attribute
68 const std::string filteredAttribute = myNet->getViewNet()->getViewParent()->getEdgeRelDataFrame()->getAttributeSelector()->getFilteredAttribute();
69 // continue if there is a selected data interval and filtered attribute
70 if (dataInterval && (filteredAttribute.size() > 0)) {
71 // obtain minimum and maximum value
72 const double minValue = dataInterval->getSpecificAttributeColors().at(myTagProperty->getTag()).getMinValue(filteredAttribute);
73 const double maxValue = dataInterval->getSpecificAttributeColors().at(myTagProperty->getTag()).getMaxValue(filteredAttribute);
74 // get value
75 const double value = parse<double>(getParameter(filteredAttribute, "0"));
76 col = GNEViewNetHelper::getRainbowScaledColor(minValue, maxValue, value);
77 }
78 }
79 return col;
80}
81
82
83double
85 switch (activeScheme) {
86 case 0:
87 return 0;
88 case 1:
90 case 2:
91 return 0; // setfunctional color const GNEAdditional* TAZA = getParentAdditionals().front();
92 case 3:
93 return 0; // setfunctional color const GNEAdditional* TAZA = getParentAdditionals().back();
94 case 4:
95 // by numerical attribute value
96 try {
99 } else {
101 }
102 } catch (NumberFormatException&) {
104 }
105 default:
106 return 0;
107 }
108}
109
110
111bool
113 // obtain pointer to edge data frame (only for code legibly)
114 const GNEEdgeRelDataFrame* edgeRelDataFrame = myNet->getViewNet()->getViewParent()->getEdgeRelDataFrame();
115 // get current data edit mode
117 // check if we have to filter generic data
118 if ((dataMode == DataEditMode::DATA_INSPECT) || (dataMode == DataEditMode::DATA_DELETE) || (dataMode == DataEditMode::DATA_SELECT)) {
120 } else if (edgeRelDataFrame->shown()) {
121 // check interval
122 if ((edgeRelDataFrame->getIntervalSelector()->getDataInterval() != nullptr) &&
123 (edgeRelDataFrame->getIntervalSelector()->getDataInterval() != myDataIntervalParent)) {
124 return false;
125 }
126 // check attribute
127 if ((edgeRelDataFrame->getAttributeSelector()->getFilteredAttribute().size() > 0) &&
128 (getParametersMap().count(edgeRelDataFrame->getAttributeSelector()->getFilteredAttribute()) == 0)) {
129 return false;
130 }
131 // all checks ok, then return true
132 return true;
133 } else {
134 // GNEEdgeRelDataFrame hidden, then return false
135 return false;
136 }
137}
138
139
140void
142 // just compute path
144}
145
146
147void
149 // Nothing to draw
150}
151
152
153void
158
159
160void
161GNEEdgeRelData::drawLanePartialGL(const GUIVisualizationSettings& s, const GNESegment* segment, const double offsetFront) const {
162 // get color
163 const auto color = setColor(s);
164 if (segment->getLane() && (color.alpha() != 0) && myNet->getViewNet()->getEditModes().isCurrentSupermodeData()) {
165 // get detail level
166 const auto d = s.getDetailLevel(1);
167 // draw over all edge's lanes
168 for (const auto& laneEdge : segment->getLane()->getParentEdge()->getChildLanes()) {
169 // get lane width
170 const double laneWidth = s.addSize.getExaggeration(s, laneEdge) * s.edgeRelWidthExaggeration *
171 (laneEdge->getParentEdge()->getNBEdge()->getLaneWidth(laneEdge->getIndex()) * 0.5);
172 // Add a draw matrix
174 // Start with the drawing of the area translating matrix to origin
175 drawInLayer(GLO_EDGERELDATA, offsetFront);
177 // draw box lines
178
179
180 GLHelper::drawBoxLines(laneEdge->getLaneShape(), laneEdge->getShapeRotations(),
181 laneEdge->getShapeLengths(), laneWidth);
182 // translate to top
183 glTranslated(0, 0, 0.01);
184 GLHelper::setColor(color);
185 // draw internal box lines
186 GLHelper::drawBoxLines(laneEdge->getLaneShape(), laneEdge->getShapeRotations(),
187 laneEdge->getShapeLengths(), (laneWidth - 0.1));
188 // Pop last matrix
190 // draw lock icon
192 // draw filtered attribute
193 if (getParentEdges().front()->getChildLanes().front() == laneEdge) {
194 drawFilteredAttribute(s, laneEdge->getLaneShape(),
197 }
198 // draw dotted contour
199 segment->getContour()->drawDottedContours(s, d, this, s.dottedContourSettings.segmentWidth, true);
200 }
201 // draw dotted contour
202 if (getParentEdges().front() == segment->getLane()->getParentEdge()) {
203 segment->getContour()->calculateContourEdge(s, d, getParentEdges().front(), this, getType(), true, false);
204 }
205 if (getParentEdges().back() == segment->getLane()->getParentEdge()) {
206 segment->getContour()->calculateContourEdge(s, d, getParentEdges().back(), this, getType(), false, true);
207 }
208 // check if add this path element to redraw buffer
211 }
212
213 }
214}
215
216
217void
218GNEEdgeRelData::drawJunctionPartialGL(const GUIVisualizationSettings& s, const GNESegment* segment, const double /*offsetFront*/) const {
219 // get color
220 const auto color = setColor(s);
221 if ((color.alpha() != 0) && myNet->getViewNet()->getEditModes().isCurrentSupermodeData()) {
222 // get detail level
223 const auto d = s.getDetailLevel(1);
224 // get flag for only draw contour
225
226 // finish
227
228 // draw dotted contour
229 if (segment->getPreviousLane() && segment->getNextLane()) {
230 segment->getContour()->calculateContourEdges(s, d, segment->getPreviousLane()->getParentEdge(), segment->getNextLane()->getParentEdge());
231 }
232 // check if add this path element to redraw buffer
235 }
236 }
237}
238
239
240GNELane*
242 /* temporal */
243 return nullptr;
244}
245
246
247GNELane*
249 /* temporal */
250 return nullptr;
251}
252
253
256 return getParentEdges().front()->getPositionInView();
257}
258
259
260void
262 // open device
264 // write from
265 device.writeAttr(SUMO_ATTR_FROM, getParentEdges().front()->getID());
266 // write to
267 device.writeAttr(SUMO_ATTR_TO, getParentEdges().back()->getID());
268 // iterate over attributes
269 for (const auto& attribute : getParametersMap()) {
270 // write attribute (don't use writeParams)
271 device.writeAttr(attribute.first, attribute.second);
272 }
273 // close device
274 device.closeTag();
275}
276
277
278bool
280 return true;
281}
282
283
284std::string
286 return "";
287}
288
289
290void
292 throw InvalidArgument(getTagStr() + " cannot fix any problem");
293}
294
295
298 return getParentEdges().front()->getCenteringBoundary();
299}
300
301
302std::string
304 switch (key) {
305 case SUMO_ATTR_ID:
306 return getPartialID() + getParentEdges().front()->getID();
307 case SUMO_ATTR_FROM:
308 return getParentEdges().front()->getID();
309 case SUMO_ATTR_TO:
310 return getParentEdges().back()->getID();
311 case GNE_ATTR_DATASET:
313 case SUMO_ATTR_BEGIN:
315 case SUMO_ATTR_END:
317 default:
318 return getCommonAttribute(key);
319 }
320}
321
322
323double
327
328
329void
330GNEEdgeRelData::setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList) {
331 if (value == getAttribute(key)) {
332 return; //avoid needless changes, later logic relies on the fact that attributes have changed
333 }
334 switch (key) {
335 case SUMO_ATTR_FROM:
336 case SUMO_ATTR_TO:
337 GNEChange_Attribute::changeAttribute(this, key, value, undoList);
338 break;
339 default:
340 setCommonAttribute(key, value, undoList);
341 break;
342 }
343}
344
345
346bool
347GNEEdgeRelData::isValid(SumoXMLAttr key, const std::string& value) {
348 switch (key) {
349 case SUMO_ATTR_FROM:
350 return SUMOXMLDefinitions::isValidNetID(value) && (myNet->getAttributeCarriers()->retrieveEdge(value, false) != nullptr) &&
351 (value != getParentEdges().back()->getID());
352 case SUMO_ATTR_TO:
353 return SUMOXMLDefinitions::isValidNetID(value) && (myNet->getAttributeCarriers()->retrieveEdge(value, false) != nullptr) &&
354 (value != getParentEdges().front()->getID());
355 default:
356 return isCommonAttributeValid(key, value);
357 }
358}
359
360
362 switch (key) {
363 case SUMO_ATTR_ID:
364 return false;
365 default:
366 return true;
367 }
368}
369
370
371std::string
373 return getTagStr();
374}
375
376
377std::string
379 return getTagStr() + ": " + getParentEdges().front()->getID() + "->" + getParentEdges().back()->getID();
380}
381
382
383void
384GNEEdgeRelData::setAttribute(SumoXMLAttr key, const std::string& value) {
385 switch (key) {
386 case SUMO_ATTR_FROM: {
387 // change first edge
389 break;
390 }
391 case SUMO_ATTR_TO: {
392 // change last edge
394 break;
395 }
396 default:
397 setCommonAttribute(key, value);
398 if (!isTemplate()) {
400 }
401 break;
402 }
403 // mark interval toolbar for update
405}
406
407/****************************************************************************/
DataEditMode
enum for data edit modes
@ DATA_EDGERELDATA
mode for create edgeRelData elements
@ DATA_SELECT
mode for selecting data elements
@ DATA_INSPECT
mode for inspecting data elements
@ DATA_DELETE
mode for deleting data elements
@ GLO_EDGERELDATA
edge relation data
GUIViewObjectsHandler gViewObjectsHandler
@ SVC_IGNORING
vehicles ignoring classes
@ SUMO_TAG_EDGEREL
a relation between two edges
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
@ SUMO_ATTR_BEGIN
weights: time range begin
@ SUMO_ATTR_TO
@ SUMO_ATTR_FROM
@ SUMO_ATTR_END
weights: time range end
@ GNE_ATTR_DATASET
data set of a generic data
@ SUMO_ATTR_ID
A class that stores a 2D geometrical boundary.
Definition Boundary.h:39
static void setColor(const RGBColor &c)
Sets the gl-color to this value.
Definition GLHelper.cpp:649
static void popMatrix()
pop matrix
Definition GLHelper.cpp:131
static void drawBoxLines(const PositionVector &geom, const std::vector< double > &rots, const std::vector< double > &lengths, double width, int cornerDetail=0, double offset=0)
Draws thick lines.
Definition GLHelper.cpp:348
static void pushMatrix()
push matrix
Definition GLHelper.cpp:118
bool isAttributeCarrierSelected() const
check if attribute carrier is selected
double getCommonAttributeDouble(SumoXMLAttr key) const
const std::string getID() const override
get ID (all Attribute Carriers have one)
void setCommonAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
const std::string & getTagStr() const
get tag assigned to this object in string format
bool isTemplate() const
check if this AC is template
void drawInLayer(const double typeOrLayer, const double extraOffset=0) const
draw element in the given layer, or in front if corresponding flag is enabled
GNENet * myNet
pointer to net
bool isCommonAttributeValid(SumoXMLAttr key, const std::string &value) const
std::string getCommonAttribute(SumoXMLAttr key) const
const GNETagProperties * myTagProperty
reference to tagProperty associated with this attribute carrier
static void changeAttribute(GNEAttributeCarrier *AC, SumoXMLAttr key, const std::string &value, GNEUndoList *undoList, const bool force=false)
change attribute
void calculateContourEdges(const GUIVisualizationSettings &s, const GUIVisualizationSettings::Detail d, const GNEEdge *fromEdge, const GNEEdge *toEdge) const
calculate contour between two consecutive edges
void calculateContourEdge(const GUIVisualizationSettings &s, const GUIVisualizationSettings::Detail d, const GNEEdge *edge, const GUIGlObject *elementToRegister, const double layer, const bool closeFirstExtrem, const bool closeLastExtrem) const
calculate contour edge
bool drawDottedContours(const GUIVisualizationSettings &s, const GUIVisualizationSettings::Detail d, const GNEAttributeCarrier *AC, const double lineWidth, const bool addOffset) const
draw dotted contours (basics, select, delete, inspect...)
bool checkDrawPathContour(const GUIVisualizationSettings &s, const GUIVisualizationSettings::Detail d, const GNEAttributeCarrier *AC) const
drawing contour functions
GNEDataSet * getDataSetParent() const
Returns a pointer to GNEDataSet parent.
const std::map< SumoXMLTag, GNEDataSet::AttributeColors > & getSpecificAttributeColors() const
specific attribute colors
std::string getAttribute(SumoXMLAttr key) const override
void updateAttributeColors()
update attribute colors deprecated
std::string getGenericDataProblem() const override
return a string with the current data set problem (by default empty, can be reimplemented in children...
std::string getPopUpID() const override
get PopPup ID (Used in AC Hierarchy)
GNELane * getLastPathLane() const override
get last path lane
void writeGenericData(OutputDevice &device) const override
write data set element into a xml file
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList) override
method for setting the attribute and letting the object perform data set changes
double getColorValue(const GUIVisualizationSettings &s, int activeScheme) const override
bool isAttributeEnabled(SumoXMLAttr key) const override
void drawGL(const GUIVisualizationSettings &s) const override
Draws the object.
void updateGeometry() override
update pre-computed geometry information
void drawJunctionPartialGL(const GUIVisualizationSettings &s, const GNESegment *segment, const double offsetFront) const override
Draws partial object over junction.
void fixGenericDataProblem() override
fix data set problem (by default throw an exception, has to be reimplemented in children)
std::string getHierarchyName() const override
get Hierarchy Name (Used in AC Hierarchy)
GNEEdgeRelData(GNENet *net)
default Constructor
std::string getAttribute(SumoXMLAttr key) const override
bool isGenericDataVisible() const override
check if current edge rel data is visible
bool isGenericDataValid() const override
check if current data set is valid to be written into XML (by default true, can be reimplemented in c...
void drawLanePartialGL(const GUIVisualizationSettings &s, const GNESegment *segment, const double offsetFront) const override
Draws partial object over lane.
RGBColor setColor(const GUIVisualizationSettings &s) const
get edge rel data color
~GNEEdgeRelData()
Destructor.
bool isValid(SumoXMLAttr key, const std::string &value) override
method for checking if the key and their conrrespond attribute are valids
Boundary getCenteringBoundary() const override
GNELane * getFirstPathLane() const override
get first path lane
Position getPositionInView() const override
Returns element position in view.
double getAttributeDouble(SumoXMLAttr key) const override
void computePathElement() override
compute pathElement
std::string getFilteredAttribute() const
get filtered attribute
GNEDataInterval * getDataInterval() const
get current select data set ID
const AttributeSelector * getAttributeSelector() const
getattribute selector modul
const IntervalSelector * getIntervalSelector() const
get interval selector modul
GNEDataInterval * myDataIntervalParent
dataInterval Parent
std::string getPartialID() const
get partial ID
bool isVisibleInspectDeleteSelect() const
check if attribute is visible in inspect, delete or select mode
void replaceFirstParentEdge(const std::string &value)
replace the first parent edge
void drawFilteredAttribute(const GUIVisualizationSettings &s, const PositionVector &laneShape, const std::string &attribute, const GNEDataInterval *dataIntervalParent) const
draw filtered attribute
void replaceLastParentEdge(const std::string &value)
replace the last parent edge
const GNEHierarchicalContainerParents< GNEEdge * > & getParentEdges() const
get parent edges
const GNEHierarchicalContainerChildren< GNELane * > & getChildLanes() const
get child lanes
GNEEdge * getParentEdge() const
get parent edge
Definition GNELane.cpp:214
GNEEdge * retrieveEdge(const std::string &id, bool hardFail=true) const
get edge by id
A NBNetBuilder extended by visualisation and editing capabilities.
Definition GNENet.h:42
GNEPathManager * getDataPathManager()
get data path manager
Definition GNENet.cpp:180
GNENetHelper::AttributeCarriers * getAttributeCarriers() const
get all attribute carriers used in this net
Definition GNENet.cpp:144
GNEViewNet * getViewNet() const
get view net
Definition GNENet.cpp:2193
void calculateConsecutivePathEdges(GNEPathElement *pathElement, SUMOVehicleClass vClass, const std::vector< GNEEdge * > &edges, const int firstLaneIndex=-1, const int lastLaneIndex=-1)
calculate consecutive path edges
const GNELane * getLane() const
get lane associated with this segment
const GNELane * getNextLane() const
get next lane
const GNELane * getPreviousLane() const
get previous lane
GNEContour * getContour() const
SumoXMLTag getTag() const
get Tag vinculated with this attribute Property
const GNEViewNetHelper::EditModes & getEditModes() const
get edit modes
GNEViewNetHelper::IntervalBar & getIntervalBar()
get interval bar
GNEViewParent * getViewParent() const
get the net object
GNEEdgeRelDataFrame * getEdgeRelDataFrame() const
get frame for DATA_EDGERELDATA
GUIGlObjectType getType() const
Returns the type of the object as coded in GUIGlObjectType.
T getColor(const double value) const
const std::string & getName() const
void addToRedrawPathElements(const GNEPathElement *pathElement)
add path element to redrawing set
bool isPathElementMarkForRedraw(const GNEPathElement *pathElement) const
check if the given path element has to be redraw again
Stores the information about how to visualize structures.
static const std::string SCHEME_NAME_DATA_ATTRIBUTE_NUMERICAL
GUIVisualizationSizeSettings addSize
Detail getDetailLevel(const double exaggeration) const
return the detail level
GUIVisualizationColorSettings colorSettings
color settings
double edgeRelWidthExaggeration
The edgeRelation exaggeration (upscale thickness)
GUIVisualizationDottedContourSettings dottedContourSettings
dotted contour settings
std::string relDataAttr
key for coloring by edgeRelation / tazRelation attribute
Static storage of an output device and its base (abstract) implementation.
OutputDevice & writeAttr(const SumoXMLAttr attr, const T &val)
writes a named attribute
OutputDevice & openTag(const std::string &xmlElement)
Opens an XML tag.
bool closeTag(const std::string &comment="")
Closes the most recently opened tag and optionally adds a comment.
bool hasParameter(const std::string &key) const
Returns whether the parameter is set.
std::map< std::string, std::string > Map
parameters map
virtual const std::string getParameter(const std::string &key, const std::string defaultValue="") const
Returns the value for a given key.
const Parameterised::Map & getParametersMap() const
Returns the inner key/value map.
A point in 2D or 3D with translation and scaling methods.
Definition Position.h:37
static const RGBColor GREEN
Definition RGBColor.h:189
static const RGBColor BLACK
Definition RGBColor.h:196
static bool isValidNetID(const std::string &value)
whether the given string is a valid id for a network element
static double toDouble(const std::string &sData)
converts a string into the double value described by it by calling the char-type converter
DataEditMode dataEditMode
the current Data edit mode
bool isCurrentSupermodeData() const
@check if current supermode is Data
static void drawLockIcon(const GUIVisualizationSettings::Detail d, const GNEAttributeCarrier *AC, GUIGlObjectType type, const Position position, const double exaggeration, const double size=0.5, const double offsetx=0, const double offsety=0)
draw lock icon
static const RGBColor & getRainbowScaledColor(const double min, const double max, const double value)
get rainbow scaled color
RGBColor selectedEdgeDataColor
edge data selection color
static const double segmentWidth
width of dotted contour segments
double getExaggeration(const GUIVisualizationSettings &s, const GUIGlObject *o, double factor=20) const
return the drawing size including exaggeration and constantSize values