Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
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
24#include <netedit/GNENet.h>
26
28
29// ===========================================================================
30// member method definitions
31// ===========================================================================
32
37
38
39GNEMultiEntryExitDetector::GNEMultiEntryExitDetector(const std::string& id, GNENet* net, const std::string& filename, const Position pos, const SUMOTime freq,
40 const std::string& outputFilename, const std::vector<std::string>& vehicleTypes, const std::vector<std::string>& nextEdges, const std::string& detectPersons,
41 const std::string& name, const SUMOTime timeThreshold, const double speedThreshold, const bool openEntry, const bool expectedArrival, const Parameterised::Map& parameters) :
42 GNEAdditional(id, net, filename, SUMO_TAG_ENTRY_EXIT_DETECTOR, name),
43 GNEAdditionalSquared(this, pos),
44 Parameterised(parameters),
45 myPeriod(freq),
46 myOutputFilename(outputFilename),
47 myVehicleTypes(vehicleTypes),
48 myNextEdges(nextEdges),
49 myDetectPersons(detectPersons),
50 myTimeThreshold(timeThreshold),
51 mySpeedThreshold(speedThreshold),
52 myOpenEntry(openEntry),
53 myExpectedArrival(expectedArrival) {
54 // update centering boundary without updating grid
56 // set default output filename
57 if (outputFilename.empty()) {
58 myOutputFilename = id + ".xml";
59 }
60}
61
62
65
66
71
72
77
78
79const Parameterised*
81 return this;
82}
83
84
85void
87 bool entry = false;
88 bool exit = false;
89 // first check if E3 has at least one entry and one exit
90 for (const auto& additionalChild : getChildAdditionals()) {
91 if (additionalChild->getTagProperty()->getTag() == SUMO_TAG_DET_ENTRY) {
92 entry = true;
93 } else if (additionalChild->getTagProperty()->getTag() == SUMO_TAG_DET_EXIT) {
94 exit = true;
95 }
96 }
97 // check entry/exits
98 if (entry && exit) {
99 device.openTag(getTagProperty()->getTag());
100 // write common additional attributes
102 // write move atributes
104 // write specific attributes
105 if (getAttribute(SUMO_ATTR_PERIOD).size() > 0) {
107 }
108 if (myOutputFilename.size() > 0) {
110 }
111 if (myVehicleTypes.size() > 0) {
113 }
116 }
119 }
122 }
125 }
126 // write all entry/exits
127 for (const auto& access : getChildAdditionals()) {
128 access->writeAdditional(device);
129 }
130 // write parameters (Always after children to avoid problems with additionals.xsd)
131 writeParams(device);
132 device.closeTag();
133 } else {
134 WRITE_WARNING("E3 '" + getID() + TL("' needs at least one entry and one exit"));
135 }
136}
137
138
139bool
141 return true;
142}
143
144
145std::string
149
150
151void
155
156
157bool
159 // get edit modes
160 const auto& editModes = myNet->getViewNet()->getEditModes();
161 // check if we're in move mode
162 if (!myNet->getViewNet()->isCurrentlyMovingElements() && editModes.isCurrentSupermodeNetwork() &&
164 (editModes.networkEditMode == NetworkEditMode::NETWORK_MOVE) && myNet->getViewNet()->checkOverLockedElement(this, mySelected)) {
165 // only move the first element
167 } else {
168 return false;
169 }
170}
171
172
173void
177
178
183
184
185void
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();
221 case SUMO_ATTR_PERIOD:
223 return "";
224 } else {
225 return time2string(myPeriod);
226 }
227 case SUMO_ATTR_NAME:
228 return myAdditionalName;
229 case SUMO_ATTR_FILE:
230 return myOutputFilename;
231 case SUMO_ATTR_VTYPES:
232 return toString(myVehicleTypes);
234 return toString(myNextEdges);
242 return toString(myOpenEntry);
245 default:
247 }
248}
249
250
251double
255
256
261
262
267
268
269void
270GNEMultiEntryExitDetector::setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList) {
271 if (value == getAttribute(key)) {
272 return; //avoid needless changes, later logic relies on the fact that attributes have changed
273 }
274 switch (key) {
275 case SUMO_ATTR_ID:
276 case SUMO_ATTR_PERIOD:
277 case SUMO_ATTR_NAME:
278 case SUMO_ATTR_FILE:
279 case SUMO_ATTR_VTYPES:
286 GNEChange_Attribute::changeAttribute(this, key, value, undoList);
287 break;
288 default:
289 myMoveElementView->setMovingAttribute(key, value, undoList);
290 break;
291 }
292}
293
294
295bool
296GNEMultiEntryExitDetector::isValid(SumoXMLAttr key, const std::string& value) {
297 switch (key) {
298 case SUMO_ATTR_ID:
299 return isValidDetectorID(value);
300 case SUMO_ATTR_PERIOD:
301 if (value.empty()) {
302 return true;
303 } else {
304 return (canParse<double>(value) && (parse<double>(value) >= 0));
305 }
306 case SUMO_ATTR_NAME:
308 case SUMO_ATTR_FILE:
310 case SUMO_ATTR_VTYPES:
311 if (value.empty()) {
312 return true;
313 } else {
315 }
317 if (value.empty()) {
318 return true;
319 } else {
321 }
323 if (value.empty()) {
324 return true;
325 } else {
327 }
330 return canParse<double>(value) && (parse<double>(value) >= 0);
333 return canParse<bool>(value);
334 default:
335 return myMoveElementView->isMovingAttributeValid(key, value);
336 }
337}
338
339
340bool
342 int numEntrys = 0;
343 int numExits = 0;
344 // iterate over additional chidls and obtain number of entrys and exits
345 for (auto i : getChildAdditionals()) {
346 if (i->getTagProperty()->getTag() == SUMO_TAG_DET_ENTRY) {
347 numEntrys++;
348 } else if (i->getTagProperty()->getTag() == SUMO_TAG_DET_EXIT) {
349 numExits++;
350 }
351 }
352 // write warnings
353 if (numEntrys == 0) {
354 WRITE_WARNING(TL("An entry-exit detector needs at least one entry detector"));
355 }
356 if (numExits == 0) {
357 WRITE_WARNING(TL("An entry-exit detector needs at least one exit detector"));
358 }
359 // return false depending of number of Entrys and Exits
360 return ((numEntrys != 0) && (numExits != 0));
361}
362
363
364std::string
366 return getTagStr() + ":" + getID();
367}
368
369
370std::string
374
375// ===========================================================================
376// private
377// ===========================================================================
378
379void
381 switch (key) {
382 case SUMO_ATTR_ID:
383 // update microsimID
384 setAdditionalID(value);
385 break;
386 case SUMO_ATTR_PERIOD:
387 if (value.empty()) {
389 } else {
390 myPeriod = string2time(value);
391 }
392 break;
393 case SUMO_ATTR_NAME:
394 myAdditionalName = value;
395 break;
396 case SUMO_ATTR_FILE:
397 myOutputFilename = value;
398 break;
399 case SUMO_ATTR_VTYPES:
400 myVehicleTypes = parse<std::vector<std::string> >(value);
401 break;
403 myNextEdges = parse<std::vector<std::string> >(value);
404 break;
406 myDetectPersons = value;
407 break;
409 myTimeThreshold = parse<SUMOTime>(value);
410 break;
412 mySpeedThreshold = parse<double>(value);
413 break;
415 myOpenEntry = parse<bool>(value);
416 break;
418 myExpectedArrival = parse<bool>(value);
419 break;
420 default:
422 break;
423 }
424 // update boundary (except for template)
425 if (getID().size() > 0) {
427 }
428}
429
430/****************************************************************************/
@ NETWORK_MOVE
mode for moving network elements
long long int SUMOTime
Definition GUI.h:36
#define WRITE_WARNING(msg)
Definition MsgHandler.h:286
#define TL(string)
Definition MsgHandler.h:304
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_DETECT_PERSONS
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition ToString.h:46
void setAdditionalID(const std::string &newID)
set additional ID
bool isValidDetectorID(const std::string &value) const
check if a new detector ID is valid
std::string myAdditionalName
name of additional
void writeAdditionalAttributes(OutputDevice &device) const
write common additional attributes
void drawParentChildLines(const GUIVisualizationSettings &s, const RGBColor &color, const bool onlySymbols=false) const
draw parent and child lines
void updatedSquaredGeometry()
updated squared geometry
Position myPosOverView
position over view
void updatedSquaredCenteringBoundary(const bool updateGrid)
updated squared centering boundary
GNEMoveElementView * myMoveElementView
move element over view
void drawSquaredAdditional(const GUIVisualizationSettings &s, const double size, GUITexture texture, GUITexture selectedTexture) const
draw squared additional
bool mySelected
boolean to check if this AC is selected (more quickly as checking GUIGlObjectStorage)
const std::string getID() const override
get ID (all Attribute Carriers have one)
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
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
Position getMovingAttributePosition(SumoXMLAttr key) const override
get moving attribute position
void writeMoveAttributes(OutputDevice &device) const
write move attributes
void setMovingAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList) override
set moving attribute (using undo-list)
PositionVector getMovingAttributePositionVector(SumoXMLAttr key) const override
get moving attribute positionVector
double getMovingAttributeDouble(SumoXMLAttr key) const override
get moving attribute double
std::string getMovingAttribute(SumoXMLAttr key) const override
get moving attribute
bool isMovingAttributeValid(SumoXMLAttr key, const std::string &value) const override
check if the given moving attribute is valid
bool myExpectedArrival
flag for enable/disable expected arrival
bool isAdditionalValid() const override
check if current additional is valid to be written into XML (must be reimplemented in all detector ch...
std::vector< std::string > myNextEdges
next edges
double getAttributeDouble(SumoXMLAttr key) const override
std::vector< std::string > myVehicleTypes
attribute vehicle types
std::string getHierarchyName() const override
get Hierarchy Name (Used in AC Hierarchy)
std::string getParentName() const override
Returns the name of the parent object.
void splitEdgeGeometry(const double splitPosition, const GNENetworkElement *originalElement, const GNENetworkElement *newElement, GNEUndoList *undoList) override
split geometry
std::string myOutputFilename
fielname of E3 detector
SUMOTime myTimeThreshold
The time-based threshold that describes how much time has to pass until a vehicle is recognized as ha...
void writeAdditional(OutputDevice &device) const override
write additional element into a xml file
Parameterised * getParameters() override
get parameters associated with this multiEntryExitDetector
void fixAdditionalProblem() override
fix additional problem (must be reimplemented in all detector children)
bool isValid(SumoXMLAttr key, const std::string &value) override
std::string myDetectPersons
detect persons
~GNEMultiEntryExitDetector()
GNEMultiEntryExitDetector Destructor.
PositionVector getAttributePositionVector(SumoXMLAttr key) const override
GNEMultiEntryExitDetector(GNENet *net)
default constructor
std::string getPopUpID() const override
get PopPup ID (Used in AC Hierarchy)
std::string getAttribute(SumoXMLAttr key) const override
bool checkDrawMoveContour() const override
check if draw move contour (red)
SUMOTime myPeriod
period of E3 detector
void updateGeometry() override
update pre-computed geometry information
bool checkChildAdditionalRestriction() const override
check restriction with the number of children
bool myOpenEntry
@brie open entry
GNEMoveElement * getMoveElement() const override
methods to retrieve the elements linked to this multiEntryExitDetector
Position getPositionInView() const override
Returns position of additional in view.
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList) override
void drawGL(const GUIVisualizationSettings &s) const override
Draws the object.
Position getAttributePosition(SumoXMLAttr key) const override
void updateCenteringBoundary(const bool updateGrid) override
update centering boundary (implies change in RTREE)
std::string getAdditionalProblem() const override
return a string with the current additional problem (must be reimplemented in all detector children)
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
GNEViewNet * getViewNet() const
get view net
Definition GNENet.cpp:2193
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
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
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
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.
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
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.