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-2026 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
33#ifdef _MSC_VER
34#pragma warning(push)
35#pragma warning(disable: 4355) // mask warning about "this" in initializers
36#endif
41
42
43GNEMultiEntryExitDetector::GNEMultiEntryExitDetector(const std::string& id, GNENet* net, FileBucket* fileBucket, const Position pos, const SUMOTime freq,
44 const std::string& outputFilename, const std::vector<std::string>& vehicleTypes, const std::vector<std::string>& nextEdges, const std::string& detectPersons,
45 const std::string& name, const SUMOTime timeThreshold, const double speedThreshold, const bool openEntry, const bool expectedArrival, const Parameterised::Map& parameters) :
46 GNEAdditional(id, net, SUMO_TAG_ENTRY_EXIT_DETECTOR, fileBucket, name),
47 GNEAdditionalSquared(this, pos),
48 Parameterised(parameters),
49 myPeriod(freq),
50 myOutputFilename(outputFilename),
51 myVehicleTypes(vehicleTypes),
52 myNextEdges(nextEdges),
53 myDetectPersons(detectPersons),
54 myTimeThreshold(timeThreshold),
55 mySpeedThreshold(speedThreshold),
56 myOpenEntry(openEntry),
57 myExpectedArrival(expectedArrival) {
58 // update centering boundary without updating grid
60 // set default output filename
61 if (outputFilename.empty()) {
62 myOutputFilename = id + ".xml";
63 }
64}
65#ifdef _MSC_VER
66#pragma warning(pop)
67#endif
68
69
72
73
78
79
84
85
86const Parameterised*
88 return this;
89}
90
91
92void
94 bool entry = false;
95 bool exit = false;
96 // first check if E3 has at least one entry and one exit
97 for (const auto& additionalChild : getChildAdditionals()) {
98 if (additionalChild->getTagProperty()->getTag() == SUMO_TAG_DET_ENTRY) {
99 entry = true;
100 } else if (additionalChild->getTagProperty()->getTag() == SUMO_TAG_DET_EXIT) {
101 exit = true;
102 }
103 }
104 // check entry/exits
105 if (entry && exit) {
106 device.openTag(getTagProperty()->getTag());
107 // write common additional attributes
109 // write move atributes
111 // write specific attributes
112 if (getAttribute(SUMO_ATTR_PERIOD).size() > 0) {
114 }
115 if (myOutputFilename.size() > 0) {
117 }
118 if (myVehicleTypes.size() > 0) {
120 }
123 }
126 }
129 }
132 }
133 // write all entry/exits
134 for (const auto& access : getChildAdditionals()) {
135 access->writeAdditional(device);
136 }
137 // write parameters (Always after children to avoid problems with additionals.xsd)
138 writeParams(device);
139 device.closeTag();
140 } else {
141 WRITE_WARNING("E3 '" + getID() + TL("' needs at least one entry and one exit"));
142 }
143}
144
145
146bool
148 return true;
149}
150
151
152std::string
156
157
158void
162
163
164bool
166 // get edit modes
167 const auto& editModes = myNet->getViewNet()->getEditModes();
168 // check if we're in move mode
169 if (!myNet->getViewNet()->isCurrentlyMovingElements() && editModes.isCurrentSupermodeNetwork() &&
171 (editModes.networkEditMode == NetworkEditMode::NETWORK_MOVE) && myNet->getViewNet()->checkOverLockedElement(this, mySelected)) {
172 // only move the first element
174 } else {
175 return false;
176 }
177}
178
179
180void
184
185
190
191
192void
196
197
198void
199GNEMultiEntryExitDetector::splitEdgeGeometry(const double /*splitPosition*/, const GNENetworkElement* /*originalElement*/, const GNENetworkElement* /*newElement*/, GNEUndoList* /*undoList*/) {
200 // geometry of this element cannot be splitted
201}
202
203
204std::string
208
209
210void
212 // first check if additional has to be drawn
215 // draw parent and child lines
217 // draw E3
219 }
220}
221
222
223std::string
225 switch (key) {
226 case SUMO_ATTR_ID:
227 return getMicrosimID();
228 case SUMO_ATTR_PERIOD:
230 return "";
231 } else {
232 return time2string(myPeriod);
233 }
234 case SUMO_ATTR_NAME:
235 return myAdditionalName;
236 case SUMO_ATTR_FILE:
237 return myOutputFilename;
238 case SUMO_ATTR_VTYPES:
239 return toString(myVehicleTypes);
241 return toString(myNextEdges);
249 return toString(myOpenEntry);
252 default:
254 }
255}
256
257
258double
262
263
268
269
274
275
276void
277GNEMultiEntryExitDetector::setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList) {
278 if (value == getAttribute(key)) {
279 return; //avoid needless changes, later logic relies on the fact that attributes have changed
280 }
281 switch (key) {
282 case SUMO_ATTR_ID:
283 case SUMO_ATTR_PERIOD:
284 case SUMO_ATTR_NAME:
285 case SUMO_ATTR_FILE:
286 case SUMO_ATTR_VTYPES:
293 GNEChange_Attribute::changeAttribute(this, key, value, undoList);
294 break;
295 default:
296 myMoveElementView->setMovingAttribute(key, value, undoList);
297 break;
298 }
299}
300
301
302bool
303GNEMultiEntryExitDetector::isValid(SumoXMLAttr key, const std::string& value) {
304 switch (key) {
305 case SUMO_ATTR_ID:
306 return isValidDetectorID(value);
307 case SUMO_ATTR_PERIOD:
308 if (value.empty()) {
309 return true;
310 } else {
311 return (canParse<double>(value) && (parse<double>(value) >= 0));
312 }
313 case SUMO_ATTR_NAME:
315 case SUMO_ATTR_FILE:
317 case SUMO_ATTR_VTYPES:
318 if (value.empty()) {
319 return true;
320 } else {
322 }
324 if (value.empty()) {
325 return true;
326 } else {
328 }
330 if (value.empty()) {
331 return true;
332 } else {
334 }
337 return canParse<double>(value) && (parse<double>(value) >= 0);
340 return canParse<bool>(value);
341 default:
342 return myMoveElementView->isMovingAttributeValid(key, value);
343 }
344}
345
346
347bool
349 int numEntrys = 0;
350 int numExits = 0;
351 // iterate over additional chidls and obtain number of entrys and exits
352 for (auto i : getChildAdditionals()) {
353 if (i->getTagProperty()->getTag() == SUMO_TAG_DET_ENTRY) {
354 numEntrys++;
355 } else if (i->getTagProperty()->getTag() == SUMO_TAG_DET_EXIT) {
356 numExits++;
357 }
358 }
359 // write warnings
360 if (numEntrys == 0) {
361 WRITE_WARNING(TL("An entry-exit detector needs at least one entry detector"));
362 }
363 if (numExits == 0) {
364 WRITE_WARNING(TL("An entry-exit detector needs at least one exit detector"));
365 }
366 // return false depending of number of Entrys and Exits
367 return ((numEntrys != 0) && (numExits != 0));
368}
369
370
371std::string
373 return getTagStr() + ":" + getID();
374}
375
376
377std::string
381
382// ===========================================================================
383// private
384// ===========================================================================
385
386void
388 switch (key) {
389 case SUMO_ATTR_ID:
390 // update microsimID
391 setAdditionalID(value);
392 break;
393 case SUMO_ATTR_PERIOD:
394 if (value.empty()) {
396 } else {
397 myPeriod = string2time(value);
398 }
399 break;
400 case SUMO_ATTR_NAME:
401 myAdditionalName = value;
402 break;
403 case SUMO_ATTR_FILE:
404 myOutputFilename = value;
405 break;
406 case SUMO_ATTR_VTYPES:
407 myVehicleTypes = parse<std::vector<std::string> >(value);
408 break;
410 myNextEdges = parse<std::vector<std::string> >(value);
411 break;
413 myDetectPersons = value;
414 break;
416 myTimeThreshold = parse<SUMOTime>(value);
417 break;
419 mySpeedThreshold = parse<double>(value);
420 break;
422 myOpenEntry = parse<bool>(value);
423 break;
425 myExpectedArrival = parse<bool>(value);
426 break;
427 default:
429 break;
430 }
431 // update boundary (except for template)
432 if (getID().size() > 0) {
434 }
435}
436
437/****************************************************************************/
@ 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:49
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.
GNEViewNet * getViewNet() const
get view net (used for simplify code)
Definition GNENet.cpp:144
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 & openTag(const std::string &xmlElement)
Opens an XML tag.
OutputDevice & writeAttr(const ATTR_TYPE &attr, const T &val, const bool isNull=false)
writes a named attribute
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.