Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
GNERouteProbe.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//
19/****************************************************************************/
20
22#include <netedit/GNENet.h>
25
26#include "GNERouteProbe.h"
27
28// ===========================================================================
29// member method definitions
30// ===========================================================================
31
35
36
37GNERouteProbe::GNERouteProbe(const std::string& id, GNENet* net, const std::string& filename, GNEEdge* edge, const SUMOTime period, const std::string& name,
38 const std::string& outputFilename, SUMOTime begin, const std::vector<std::string>& vehicleTypes,
39 const Parameterised::Map& parameters) :
40 GNEAdditional(id, net, filename, SUMO_TAG_ROUTEPROBE, name),
41 Parameterised(parameters),
42 myPeriod(period),
43 myOutputFilename(outputFilename),
44 myBegin(begin),
45 myVehicleTypes(vehicleTypes) {
46 // set parents
47 setParent<GNEEdge*>(edge);
48 // update centering boundary without updating grid
50 // set default output filename if not set
51 if (myOutputFilename.empty()) {
52 myOutputFilename = getID() + ".xml";
53 }
54}
55
56
59
60
63 return nullptr;
64}
65
66
69 return this;
70}
71
72
73const Parameterised*
75 return this;
76}
77
78
79void
81 // open tag
83 // write common additional attributes
85 // write specific attributes
87 if (getAttribute(SUMO_ATTR_PERIOD).size() > 0) {
89 }
90 device.writeAttr(SUMO_ATTR_EDGE, getParentEdges().front()->getID());
91 if (!myOutputFilename.empty()) {
93 }
94 if (!myVehicleTypes.empty()) {
96 }
97 // write parameters (Always after children to avoid problems with additionals.xsd)
98 writeParams(device);
99 device.closeTag();
100}
101
102
103bool
105 return true;
106}
107
108
109std::string
111 return "";
112}
113
114
115void
117 // nothing to fix
118}
119
120
121void
123 // calculate perpendicular line
125}
126
127
132
133
134void
135GNERouteProbe::updateCenteringBoundary(const bool /*pdateGrid*/) {
136 // nothing to do
137}
138
139
140void
141GNERouteProbe::splitEdgeGeometry(const double /*splitPosition*/, const GNENetworkElement* /*originalElement*/, const GNENetworkElement* /*newElement*/, GNEUndoList* /*undoList*/) {
142 // geometry of this element cannot be splitted
143}
144
145
146bool
148 return false;
149}
150
151
152std::string
154 return getParentEdges().front()->getID();
155}
156
157
158void
160 // first check if additional has to be drawn
162 // Obtain exaggeration of the draw
163 const double routeProbeExaggeration = getExaggeration(s);
164 // declare colors
165 RGBColor routeProbeColor, centralLineColor;
166 // set colors
167 if (drawUsingSelectColor()) {
168 routeProbeColor = s.colorSettings.selectedAdditionalColor;
169 centralLineColor = routeProbeColor.changedBrightness(-32);
170 } else {
171 routeProbeColor = s.additionalSettings.routeProbeColor;
172 centralLineColor = RGBColor::WHITE;
173 }
174 // get detail level
175 const auto d = s.getDetailLevel(routeProbeExaggeration);
176 // draw geometry only if we'rent in drawForObjectUnderCursor mode
178 // draw parent and child lines
180 // Add layer matrix matrix
182 // translate to front
184 // set base color
185 GLHelper::setColor(routeProbeColor);
186 // Draw the area using shape, shapeRotations, shapeLengths and value of exaggeration
187 GUIGeometry::drawGeometry(d, myAdditionalGeometry, 0.3 * routeProbeExaggeration);
188 // move to front
189 glTranslated(0, 0, .1);
190 // set central color
191 GLHelper::setColor(centralLineColor);
192 // Draw the area using shape, shapeRotations, shapeLengths and value of exaggeration
193 GUIGeometry::drawGeometry(d, myAdditionalGeometry, 0.05 * routeProbeExaggeration);
194 // move to icon position and front
195 glTranslated(myAdditionalGeometry.getShape().front().x(), myAdditionalGeometry.getShape().front().y(), .1);
196 // rotate over lane
198 // Draw icon depending of level of detail
200 // set color
201 glColor3d(1, 1, 1);
202 // rotate texture
203 glRotated(90, 0, 0, 1);
204 // draw texture
205 if (drawUsingSelectColor()) {
207 } else {
209 }
210 } else {
211 // set route probe color
212 GLHelper::setColor(routeProbeColor);
213 // just drawn a box
215 }
216 // pop layer matrix
218 // draw additional name
220 // draw dotted contour
223 }
224 // calculate contour and draw dotted geometry
226 s.additionalSettings.routeProbeSize, getType(), 0, 0, (myAdditionalGeometry.getShapeRotations().front() * -1), routeProbeExaggeration, getParentEdges().front());
227 mySymbolBaseContour.calculateContourExtrudedShape(s, d, this, myAdditionalGeometry.getShape(), getType(), 0.3, routeProbeExaggeration,
228 true, true, 0, nullptr, getParentEdges().front());
229 }
230}
231
232
233std::string
235 switch (key) {
236 case SUMO_ATTR_ID:
237 return getMicrosimID();
238 case SUMO_ATTR_EDGE:
239 return getParentEdges().front()->getID();
240 case SUMO_ATTR_NAME:
241 return myAdditionalName;
242 case SUMO_ATTR_FILE:
243 return myOutputFilename;
244 case SUMO_ATTR_PERIOD:
247 return "";
248 } else {
249 return time2string(myPeriod);
250 }
251 case SUMO_ATTR_BEGIN:
252 return time2string(myBegin);
253 case SUMO_ATTR_VTYPES:
254 return toString(myVehicleTypes);
255 default:
256 return getCommonAttribute(key);
257 }
258}
259
260
261double
263 switch (key) {
264 case SUMO_ATTR_BEGIN:
265 return STEPS2TIME(myBegin);
266 default:
267 return getCommonAttributeDouble(key);
268 }
269}
270
271
276
277
282
283
284void
285GNERouteProbe::setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList) {
286 if (value == getAttribute(key)) {
287 return; //avoid needless changes, later logic relies on the fact that attributes have changed
288 }
289 switch (key) {
290 case SUMO_ATTR_ID:
291 case SUMO_ATTR_EDGE:
292 case SUMO_ATTR_NAME:
293 case SUMO_ATTR_FILE:
294 case SUMO_ATTR_PERIOD:
296 case SUMO_ATTR_BEGIN:
297 case SUMO_ATTR_VTYPES:
298 GNEChange_Attribute::changeAttribute(this, key, value, undoList);
299 break;
300 default:
301 setCommonAttribute(key, value, undoList);
302 break;
303 }
304}
305
306
307std::string
309 return getTagStr();
310}
311
312
313std::string
317
318// ===========================================================================
319// private
320// ===========================================================================
321
322bool
323GNERouteProbe::isValid(SumoXMLAttr key, const std::string& value) {
324 switch (key) {
325 case SUMO_ATTR_ID:
326 return isValidAdditionalID(value);
327 case SUMO_ATTR_EDGE:
328 if (myNet->getAttributeCarriers()->retrieveEdge(value, false) != nullptr) {
329 return true;
330 } else {
331 return false;
332 }
333 case SUMO_ATTR_NAME:
335 case SUMO_ATTR_FILE:
337 case SUMO_ATTR_PERIOD:
339 if (value.empty()) {
340 return true;
341 } else {
342 return (canParse<double>(value) && (parse<double>(value) >= 0));
343 }
344 case SUMO_ATTR_BEGIN:
345 return canParse<SUMOTime>(value) && (parse<SUMOTime>(value) >= 0);
346 case SUMO_ATTR_VTYPES:
347 if (value.empty()) {
348 return true;
349 } else {
351 }
352 default:
353 return isCommonAttributeValid(key, value);
354 }
355}
356
357
358void
359GNERouteProbe::setAttribute(SumoXMLAttr key, const std::string& value) {
360 switch (key) {
361 case SUMO_ATTR_ID:
362 // update microsimID
363 setAdditionalID(value);
364 break;
365 case SUMO_ATTR_EDGE:
367 break;
368 case SUMO_ATTR_NAME:
369 myAdditionalName = value;
370 break;
371 case SUMO_ATTR_FILE:
372 myOutputFilename = value;
373 break;
374 case SUMO_ATTR_PERIOD:
376 if (value.empty()) {
378 } else {
379 myPeriod = string2time(value);
380 }
381 break;
382 case SUMO_ATTR_BEGIN:
383 myBegin = parse<SUMOTime>(value);
384 break;
385 case SUMO_ATTR_VTYPES:
386 myVehicleTypes = parse<std::vector<std::string> >(value);
387 break;
388 default:
389 setCommonAttribute(key, value);
390 break;
391 }
392}
393
394/****************************************************************************/
long long int SUMOTime
Definition GUI.h:36
@ GLO_ROUTEPROBE
a RouteProbe
@ ROUTEPROBE_SELECTED
SUMOTime string2time(const std::string &r)
convert string to SUMOTime
Definition SUMOTime.cpp:46
std::string time2string(SUMOTime t, bool humanReadable)
convert SUMOTime to string (independently of global format setting)
Definition SUMOTime.cpp:91
#define STEPS2TIME(x)
Definition SUMOTime.h:55
#define SUMOTime_MAX_PERIOD
Definition SUMOTime.h:36
@ SUMO_TAG_ROUTEPROBE
a routeprobe detector
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
@ SUMO_ATTR_FILE
@ SUMO_ATTR_EDGE
@ SUMO_ATTR_BEGIN
weights: time range begin
@ SUMO_ATTR_VTYPES
@ SUMO_ATTR_NAME
@ SUMO_ATTR_PERIOD
@ SUMO_ATTR_FREQUENCY
@ SUMO_ATTR_ID
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition ToString.h:46
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 drawBoxLine(const Position &beg, double rot, double visLength, double width, double offset=0)
Draws a thick line.
Definition GLHelper.cpp:296
static void pushMatrix()
push matrix
Definition GLHelper.cpp:118
double getExaggeration(const GUIVisualizationSettings &s) const override
return exaggeration associated with this GLObject
bool isValidAdditionalID(const std::string &value) const
check if a new additional ID is valid
void setAdditionalID(const std::string &newID)
set additional ID
GNEContour myAdditionalContour
variable used for draw additional contours
GUIGeometry myAdditionalGeometry
geometry to be precomputed in updateGeometry(...)
void replaceAdditionalParentEdges(const std::string &value)
replace additional parent edges
void calculatePerpendicularLine(const double endLaneposition)
calculate perpendicular line between lane parents
std::string myAdditionalName
name of additional
void drawAdditionalName(const GUIVisualizationSettings &s) const
draw additional name
void writeAdditionalAttributes(OutputDevice &device) const
write common additional attributes
const GUIGeometry & getAdditionalGeometry() const
obtain additional geometry
void drawParentChildLines(const GUIVisualizationSettings &s, const RGBColor &color, const bool onlySymbols=false) const
draw parent and child lines
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)
PositionVector getCommonAttributePositionVector(SumoXMLAttr key) const
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 drawUsingSelectColor() const
check if attribute carrier must be drawn using selecting color.
void drawInLayer(const double typeOrLayer, const double extraOffset=0) const
draw element in the given layer, or in front if corresponding flag is enabled
Position getCommonAttributePosition(SumoXMLAttr key) const
GNENet * myNet
pointer to net
bool isCommonAttributeValid(SumoXMLAttr key, const std::string &value) const
std::string getCommonAttribute(SumoXMLAttr key) const
static void changeAttribute(GNEAttributeCarrier *AC, SumoXMLAttr key, const std::string &value, GNEUndoList *undoList, const bool force=false)
change attribute
void calculateContourExtrudedShape(const GUIVisualizationSettings &s, const GUIVisualizationSettings::Detail d, const GUIGlObject *glObject, const PositionVector &shape, const double layer, const double extrusionWidth, const double scale, const bool closeFirstExtrem, const bool closeLastExtrem, const double offset, const GNESegment *segment, const GUIGlObject *boundaryParent, const bool addToSelectedObjects=true) const
calculate contour extruded (used in elements formed by a central shape)
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...)
void calculateContourRectangleShape(const GUIVisualizationSettings &s, const GUIVisualizationSettings::Detail d, const GUIGlObject *glObject, const Position &pos, const double width, const double height, const double layer, const double offsetX, const double offsetY, const double rot, const double scale, const GUIGlObject *boundaryParent) const
calculate contour (for rectangled elements)
const GNEHierarchicalContainerParents< GNEEdge * > & getParentEdges() const
get parent edges
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
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
SUMOTime myBegin
begin of rerouter
std::vector< std::string > myVehicleTypes
vehicle types
bool checkDrawMoveContour() const override
check if draw move contour (red)
std::string getAttribute(SumoXMLAttr key) const override
SUMOTime myPeriod
RouteProbe period.
void splitEdgeGeometry(const double splitPosition, const GNENetworkElement *originalElement, const GNENetworkElement *newElement, GNEUndoList *undoList) override
split geometry
bool isAdditionalValid() const override
check if current additional is valid to be written into XML (must be reimplemented in all detector ch...
double getAttributeDouble(SumoXMLAttr key) const override
std::string myOutputFilename
output filename
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList) override
Parameterised * getParameters() override
get parameters associated with this routeProbe
~GNERouteProbe()
Destructor.
std::string getPopUpID() const override
get PopPup ID (Used in AC Hierarchy)
GNEContour mySymbolBaseContour
symbol base contour
GNERouteProbe(GNENet *net)
Constructor.
void updateGeometry() override
update pre-computed geometry information
void fixAdditionalProblem() override
fix additional problem (must be reimplemented in all detector children)
GNEMoveElement * getMoveElement() const override
methods to retrieve the elements linked to this routeProbe
Position getPositionInView() const override
Returns position of additional in view.
std::string getAdditionalProblem() const override
return a string with the current additional problem (must be reimplemented in all detector children)
bool isValid(SumoXMLAttr key, const std::string &value) override
std::string getHierarchyName() const override
get Hierarchy Name (Used in AC Hierarchy)
void writeAdditional(OutputDevice &device) const override
write additional element into a xml file
PositionVector getAttributePositionVector(SumoXMLAttr key) const override
std::string getParentName() const override
Returns the name of the parent object.
Position getAttributePosition(SumoXMLAttr key) const override
void drawGL(const GUIVisualizationSettings &s) const override
Draws the object.
void updateCenteringBoundary(const bool updateGrid) override
update centering boundary (implies change in RTREE)
const GNEViewNetHelper::DataViewOptions & getDataViewOptions() const
get data view options
static void rotateOverLane(const double rot)
rotate over lane (used by Lock icons, detector logos, etc.)
const std::vector< double > & getShapeRotations() const
The rotations of the single shape parts.
static void drawGeometry(const GUIVisualizationSettings::Detail d, const GUIGeometry &geometry, const double width, double offset=0)
draw geometry
const PositionVector & getShape() const
The shape of the additional element.
const std::string & getMicrosimID() const
Returns the id of the object as known to microsim.
GUIGlObjectType getType() const
Returns the type of the object as coded in GUIGlObjectType.
static GUIGlID getTexture(GUITexture which)
returns a texture previously defined in the enum GUITexture
static void drawTexturedBox(int which, double size)
Draws a named texture as a box with the given size.
Stores the information about how to visualize structures.
bool checkDrawAdditional(Detail d, const bool selected) const
check if draw additionals
Detail getDetailLevel(const double exaggeration) const
return the detail level
GUIVisualizationColorSettings colorSettings
color settings
GUIVisualizationDottedContourSettings dottedContourSettings
dotted contour settings
GUIVisualizationAdditionalSettings additionalSettings
Additional settings.
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.
An upper class for objects with additional parameters.
std::map< std::string, std::string > Map
parameters map
void writeParams(OutputDevice &device) const
write Params in the given outputdevice
A point in 2D or 3D with translation and scaling methods.
Definition Position.h:37
A list of positions.
Position getPolygonCenter() const
Returns the arithmetic of all corner points.
static const RGBColor WHITE
Definition RGBColor.h:195
RGBColor changedBrightness(int change, int toChange=3) const
Returns a new color with altered brightness.
Definition RGBColor.cpp:200
static bool isValidFilename(const std::string &value)
whether the given string is a valid attribute for a filename (for example, a name)
static bool isValidListOfTypeID(const std::string &value)
whether the given string is a valid list of ids for an edge or vehicle type (empty aren't allowed)
static bool isValidAttribute(const std::string &value)
whether the given string is a valid attribute for a certain key (for example, a name)
bool showAdditionals() const
check if additionals has to be drawn
static const double routeProbeSize
RouteProbe size.
static const RGBColor connectionColor
connection color
static const RGBColor routeProbeColor
color for route probes
RGBColor selectedAdditionalColor
additional selection color (busStops, Detectors...)
static const double segmentWidthSmall
width of small dotted contour segments
static const double segmentWidth
width of dotted contour segments