Eclipse SUMO - Simulation of Urban MObility
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GNEMultiEntryExitDetector.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// multi entry-exit (E3) detector
19/****************************************************************************/
20#include <config.h>
21
22#include <netedit/GNENet.h>
24#include <netedit/GNEUndoList.h>
25#include <netedit/GNEViewNet.h>
29
31
32// ===========================================================================
33// member method definitions
34// ===========================================================================
35
39
40
41GNEMultiEntryExitDetector::GNEMultiEntryExitDetector(const std::string& id, GNENet* net, const std::string& filename, const Position pos, const SUMOTime freq,
42 const std::string& outputFilename, const std::vector<std::string>& vehicleTypes, const std::vector<std::string>& nextEdges, const std::string& detectPersons,
43 const std::string& name, const SUMOTime timeThreshold, const double speedThreshold, const bool openEntry, const bool expectedArrival, const Parameterised::Map& parameters) :
44 GNEAdditional(id, net, filename, SUMO_TAG_ENTRY_EXIT_DETECTOR, name),
45 Parameterised(parameters),
46 myPosition(pos),
47 myPeriod(freq),
48 myOutputFilename(outputFilename),
49 myVehicleTypes(vehicleTypes),
50 myNextEdges(nextEdges),
51 myDetectPersons(detectPersons),
52 myTimeThreshold(timeThreshold),
53 mySpeedThreshold(speedThreshold),
54 myOpenEntry(openEntry),
55 myExpectedArrival(expectedArrival) {
56 // update centering boundary without updating grid
58}
59
60
62
63
66 // return move operation for additional placed in view
67 return new GNEMoveOperation(this, myPosition);
68}
69
70
71void
73 bool entry = false;
74 bool exit = false;
75 // first check if E3 has at least one entry and one exit
76 for (const auto& additionalChild : getChildAdditionals()) {
77 if (additionalChild->getTagProperty()->getTag() == SUMO_TAG_DET_ENTRY) {
78 entry = true;
79 } else if (additionalChild->getTagProperty()->getTag() == SUMO_TAG_DET_EXIT) {
80 exit = true;
81 }
82 }
83 // check entry/exits
84 if (entry && exit) {
85 device.openTag(getTagProperty()->getTag());
86 device.writeAttr(SUMO_ATTR_ID, getID());
87 if (!myAdditionalName.empty()) {
89 }
91 if (getAttribute(SUMO_ATTR_PERIOD).size() > 0) {
93 }
94 if (myOutputFilename.size() > 0) {
96 }
97 if (myVehicleTypes.size() > 0) {
99 }
102 }
105 }
108 }
111 }
112 // write all entry/exits
113 for (const auto& access : getChildAdditionals()) {
114 access->writeAdditional(device);
115 }
116 // write parameters (Always after children to avoid problems with additionals.xsd)
117 writeParams(device);
118 device.closeTag();
119 } else {
120 WRITE_WARNING("E3 '" + getID() + TL("' needs at least one entry and one exit"));
121 }
122}
123
124
125bool
127 return true;
128}
129
130
131std::string
135
136
137void
141
142
143bool
145 // get edit modes
146 const auto& editModes = myNet->getViewNet()->getEditModes();
147 // check if we're in move mode
148 if (!myNet->getViewNet()->isCurrentlyMovingElements() && editModes.isCurrentSupermodeNetwork() &&
150 (editModes.networkEditMode == NetworkEditMode::NETWORK_MOVE) && myNet->getViewNet()->checkOverLockedElement(this, mySelected)) {
151 // only move the first element
153 } else {
154 return false;
155 }
156}
157
158
159void
164
165
170
171
172void
174 // remove additional from grid
175 if (updateGrid) {
177 }
178 // now update geometry
180 // add shape boundary
182 // grow
184 // add additional into RTREE again
185 if (updateGrid) {
187 }
188}
189
190
191void
192GNEMultiEntryExitDetector::splitEdgeGeometry(const double /*splitPosition*/, const GNENetworkElement* /*originalElement*/, const GNENetworkElement* /*newElement*/, GNEUndoList* /*undoList*/) {
193 // geometry of this element cannot be splitted
194}
195
196
197std::string
201
202
203void
205 // first check if additional has to be drawn
208 // draw parent and child lines
210 // draw E3
212 }
213}
214
215
216std::string
218 switch (key) {
219 case SUMO_ATTR_ID:
220 return getMicrosimID();
222 return toString(myPosition);
223 case SUMO_ATTR_PERIOD:
225 return "";
226 } else {
227 return time2string(myPeriod);
228 }
229 case SUMO_ATTR_NAME:
230 return myAdditionalName;
231 case SUMO_ATTR_FILE:
232 return myOutputFilename;
233 case SUMO_ATTR_VTYPES:
234 return toString(myVehicleTypes);
236 return toString(myNextEdges);
244 return toString(myOpenEntry);
247 default:
248 return getCommonAttribute(this, key);
249 }
250}
251
252
253double
255 throw InvalidArgument(getTagStr() + " doesn't have a double attribute of type '" + toString(key) + "'");
256}
257
258
263
264
265void
266GNEMultiEntryExitDetector::setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList) {
267 if (value == getAttribute(key)) {
268 return; //avoid needless changes, later logic relies on the fact that attributes have changed
269 }
270 switch (key) {
271 case SUMO_ATTR_ID:
272 case SUMO_ATTR_PERIOD:
274 case SUMO_ATTR_NAME:
275 case SUMO_ATTR_FILE:
276 case SUMO_ATTR_VTYPES:
283 GNEChange_Attribute::changeAttribute(this, key, value, undoList);
284 break;
285 default:
286 setCommonAttribute(key, value, undoList);
287 break;
288 }
289}
290
291
292bool
293GNEMultiEntryExitDetector::isValid(SumoXMLAttr key, const std::string& value) {
294 switch (key) {
295 case SUMO_ATTR_ID:
296 return isValidDetectorID(value);
298 return canParse<Position>(value);
299 case SUMO_ATTR_PERIOD:
300 if (value.empty()) {
301 return true;
302 } else {
303 return (canParse<double>(value) && (parse<double>(value) >= 0));
304 }
305 case SUMO_ATTR_NAME:
307 case SUMO_ATTR_FILE:
309 case SUMO_ATTR_VTYPES:
310 if (value.empty()) {
311 return true;
312 } else {
314 }
316 if (value.empty()) {
317 return true;
318 } else {
320 }
322 if (value.empty()) {
323 return true;
324 } else {
326 }
329 return canParse<double>(value) && (parse<double>(value) >= 0);
332 return canParse<bool>(value);
333 default:
334 return isCommonValid(key, value);
335 }
336}
337
338
339bool
341 int numEntrys = 0;
342 int numExits = 0;
343 // iterate over additional chidls and obtain number of entrys and exits
344 for (auto i : getChildAdditionals()) {
345 if (i->getTagProperty()->getTag() == SUMO_TAG_DET_ENTRY) {
346 numEntrys++;
347 } else if (i->getTagProperty()->getTag() == SUMO_TAG_DET_EXIT) {
348 numExits++;
349 }
350 }
351 // write warnings
352 if (numEntrys == 0) {
353 WRITE_WARNING(TL("An entry-exit detector needs at least one entry detector"));
354 }
355 if (numExits == 0) {
356 WRITE_WARNING(TL("An entry-exit detector needs at least one exit detector"));
357 }
358 // return false depending of number of Entrys and Exits
359 return ((numEntrys != 0) && (numExits != 0));
360}
361
362
363std::string
365 return getTagStr() + ":" + getID();
366}
367
368
369std::string
373
374// ===========================================================================
375// private
376// ===========================================================================
377
378void
380 switch (key) {
381 case SUMO_ATTR_ID:
382 // update microsimID
383 setAdditionalID(value);
384 break;
386 myPosition = parse<Position>(value);
387 // update boundary (except for template)
388 if (getID().size() > 0) {
390 }
391 break;
392 case SUMO_ATTR_PERIOD:
393 if (value.empty()) {
395 } else {
396 myPeriod = string2time(value);
397 }
398 break;
399 case SUMO_ATTR_NAME:
400 myAdditionalName = value;
401 break;
402 case SUMO_ATTR_FILE:
403 myOutputFilename = value;
404 break;
405 case SUMO_ATTR_VTYPES:
406 myVehicleTypes = parse<std::vector<std::string> >(value);
407 break;
409 myNextEdges = parse<std::vector<std::string> >(value);
410 break;
412 myDetectPersons = value;
413 break;
415 myTimeThreshold = parse<SUMOTime>(value);
416 break;
418 mySpeedThreshold = parse<double>(value);
419 break;
421 myOpenEntry = parse<bool>(value);
422 break;
424 myExpectedArrival = parse<bool>(value);
425 break;
426 default:
427 setCommonAttribute(this, key, value);
428 break;
429 }
430}
431
432
433void
435 // update position
436 myPosition = moveResult.shapeToUpdate.front();
437 // update geometry
439}
440
441
442void
444 undoList->begin(this, "position of " + getTagStr());
446 undoList->end();
447}
448
449
450/****************************************************************************/
@ NETWORK_MOVE
mode for moving network elements
long long int SUMOTime
Definition GUI.h:36
#define WRITE_WARNING(msg)
Definition MsgHandler.h:283
#define TL(string)
Definition MsgHandler.h:301
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 SUMOTime_MAX_PERIOD
Definition SUMOTime.h:36
@ SUMO_TAG_DET_ENTRY
an e3 entry point
@ SUMO_TAG_DET_EXIT
an e3 exit point
@ SUMO_TAG_ENTRY_EXIT_DETECTOR
alternative tag for e3 detector
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
@ SUMO_ATTR_EXPECT_ARRIVAL
@ SUMO_ATTR_NEXT_EDGES
@ SUMO_ATTR_FILE
@ SUMO_ATTR_HALTING_TIME_THRESHOLD
@ SUMO_ATTR_VTYPES
@ SUMO_ATTR_NAME
@ SUMO_ATTR_PERIOD
@ SUMO_ATTR_HALTING_SPEED_THRESHOLD
@ SUMO_ATTR_ID
@ SUMO_ATTR_OPEN_ENTRY
@ SUMO_ATTR_POSITION
@ SUMO_ATTR_DETECT_PERSONS
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition ToString.h:46
Boundary & grow(double by)
extends the boundary by the given amount
Definition Boundary.cpp:340
void setAdditionalID(const std::string &newID)
set additional ID
GUIGeometry myAdditionalGeometry
geometry to be precomputed in updateGeometry(...)
bool isValidDetectorID(const std::string &value) const
check if a new detector ID is valid
std::string myAdditionalName
name of additional
void drawSquaredAdditional(const GUIVisualizationSettings &s, const Position &pos, const double size, GUITexture texture, GUITexture selectedTexture) const
draw squared additional
Boundary myAdditionalBoundary
Additional Boundary (used only by additionals placed over grid)
void drawParentChildLines(const GUIVisualizationSettings &s, const RGBColor &color, const bool onlySymbols=false) const
draw parent and child lines
const std::string getID() const
get ID (all Attribute Carriers have one)
bool mySelected
boolean to check if this AC is selected (more quickly as checking GUIGlObjectStorage)
std::string getCommonAttribute(const Parameterised *parameterised, 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
const GNETagProperties * getTagProperty() const
get tagProperty associated with this Attribute Carrier
GNENet * myNet
pointer to net
bool isCommonValid(SumoXMLAttr key, const std::string &value) 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
const GNEHierarchicalContainerChildren< GNEAdditional * > & getChildAdditionals() const
return child additionals
move operation
move result
PositionVector shapeToUpdate
shape to update (edited in moveElement)
bool isAdditionalValid() const
check if current additional is valid to be written into XML (must be reimplemented in all detector ch...
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
bool myExpectedArrival
flag for enable/disable expected arrival
bool checkDrawMoveContour() const
check if draw move contour (red)
std::string getAttribute(SumoXMLAttr key) const
void setMoveShape(const GNEMoveResult &moveResult)
set move shape
std::vector< std::string > myNextEdges
next edges
std::vector< std::string > myVehicleTypes
attribute vehicle types
std::string myOutputFilename
fielname of E3 detector
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
void updateCenteringBoundary(const bool updateGrid)
update centering boundary (implies change in RTREE)
SUMOTime myTimeThreshold
The time-based threshold that describes how much time has to pass until a vehicle is recognized as ha...
bool checkChildAdditionalRestriction() const
check restriction with the number of children
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their correspondent attribute are valids
Position myPosition
position of E3 in view
double getAttributeDouble(SumoXMLAttr key) const
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
void fixAdditionalProblem()
fix additional problem (must be reimplemented in all detector children)
Position getPositionInView() const
Returns position of additional in view.
std::string getParentName() const
Returns the name of the parent object.
std::string myDetectPersons
detect persons
~GNEMultiEntryExitDetector()
GNEMultiEntryExitDetector Destructor.
void splitEdgeGeometry(const double splitPosition, const GNENetworkElement *originalElement, const GNENetworkElement *newElement, GNEUndoList *undoList)
split geometry
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes
GNEMultiEntryExitDetector(GNENet *net)
default constructor
std::string getAdditionalProblem() const
return a string with the current additional problem (must be reimplemented in all detector children)
SUMOTime myPeriod
period of E3 detector
void writeAdditional(OutputDevice &device) const
write additional element into a xml file
const Parameterised::Map & getACParametersMap() const
get parameters map
void commitMoveShape(const GNEMoveResult &moveResult, GNEUndoList *undoList)
commit move shape
bool myOpenEntry
@brie open entry
void updateGeometry()
update pre-computed geometry information
GNEMoveOperation * getMoveOperation()
get move operation
double mySpeedThreshold
The speed-based threshold that describes how slow a vehicle has to be to be recognized as halting.
A NBNetBuilder extended by visualisation and editing capabilities.
Definition GNENet.h:42
void addGLObjectIntoGrid(GNEAttributeCarrier *AC)
add GL Object into net
Definition GNENet.cpp:1442
void removeGLObjectFromGrid(GNEAttributeCarrier *AC)
add GL Object into net
Definition GNENet.cpp:1452
GNEViewNet * getViewNet() const
get view net
Definition GNENet.cpp:2194
bool getDefaultBoolValue(SumoXMLAttr attr) const
get default bool value
double getDefaultDoubleValue(SumoXMLAttr attr) const
get default double value
SUMOTime getDefaultTimeValue(SumoXMLAttr attr) const
get default time value
SumoXMLTag getTag() const
get Tag vinculated with this attribute Property
void end()
End undo command sub-group. If the sub-group is still empty, it will be deleted; otherwise,...
void begin(GUIIcon icon, const std::string &description)
Begin undo command sub-group with current supermode. This begins a new group of commands that are tre...
const GUIGlObject * getGUIGlObjectFront() const
get front GUIGLObject or a pointer to nullptr
bool isCurrentlyMovingElements() const
check if an element is being moved
const GNEViewNetHelper::DataViewOptions & getDataViewOptions() const
get data view options
const GNEViewNetHelper::EditModes & getEditModes() const
get edit modes
const GNEViewNetHelper::EditNetworkElementShapes & getEditNetworkElementShapes() const
get Edit Shape module
bool checkOverLockedElement(const GUIGlObject *GLObject, const bool isSelected) const
check if given element is locked (used for drawing select and delete contour)
const GNEViewNetHelper::ViewObjectsSelector & getViewObjectsSelector() const
get objects under cursor
bool selectingDetectorsTLSMode() const
check if we're selecting detectors in TLS mode
void updateSinglePosGeometry(const Position &position, const double rotation)
update position and rotation
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.
Stores the information about how to visualize structures.
GUIVisualizationAdditionalSettings additionalSettings
Additional settings.
GUIVisualizationDetectorSettings detectorSettings
Detector 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
const Parameterised::Map & getParametersMap() const
Returns the inner key/value 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
Boundary getBoxBoundary() const
Returns a boundary enclosing this list of lines.
static StringBijection< PersonMode > PersonModeValues
person modes
static bool isValidListOfNetIDs(const std::string &value)
whether the given string is a valid list of id for a network (empty aren't allowed)
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 hasString(const std::string &str) const
check if the given string exist
static std::string escapeXML(const std::string &orig, const bool maskDoubleHyphen=false)
Replaces the standard escapes by their XML entities.
bool showAdditionals() const
check if additionals has to be drawn
GNENetworkElement * getEditedNetworkElement() const
pointer to edited network element
static const RGBColor connectionColor
connection color
static const double E3Size
E3 detector size.