Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
GNELaneAreaDetector.h
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2001-2023 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#pragma once
21#include <config.h>
22#include "GNEDetector.h"
23
24
25// ===========================================================================
26// class definitions
27// ===========================================================================
33
34public:
37
55 GNELaneAreaDetector(const std::string& id, GNELane* lane, GNENet* net, double pos, double length, const SUMOTime freq, const std::string& trafficLight,
56 const std::string& filename, const std::vector<std::string>& vehicleTypes, const std::string& name, SUMOTime timeThreshold, double speedThreshold,
57 double jamThreshold, bool friendlyPos, const Parameterised::Map& parameters);
58
76 GNELaneAreaDetector(const std::string& id, std::vector<GNELane*> lanes, GNENet* net, double pos, double endPos, const SUMOTime freq, const std::string& trafficLight,
77 const std::string& filename, const std::vector<std::string>& vehicleTypes, const std::string& name, SUMOTime timeThreshold, double speedThreshold, double jamThreshold,
78 bool friendlyPos, const Parameterised::Map& parameters);
79
82
85
89 void writeAdditional(OutputDevice& device) const;
90
92 bool isAdditionalValid() const;
93
95 std::string getAdditionalProblem() const;
96
99
101
103 void updateGeometry();
104
107
112 void drawGL(const GUIVisualizationSettings& s) const;
113
115
118
120 void computePathElement();
121
127 void drawPartialGL(const GUIVisualizationSettings& s, const GNELane* lane, const GNEPathManager::Segment* segment, const double offsetFront) const;
128
135 void drawPartialGL(const GUIVisualizationSettings& s, const GNELane* fromLane, const GNELane* toLane, const GNEPathManager::Segment* segment, const double offsetFront) const;
136
138
141
142 /* @brief method for getting the Attribute of an XML key
143 * @param[in] key The attribute key
144 * @return string with the value associated to key
145 */
146 std::string getAttribute(SumoXMLAttr key) const;
147
148 /* @brief method for getting the Attribute of an XML key in double format (to avoid unnecessary parse<double>(...) for certain attributes)
149 * @param[in] key The attribute key
150 * @return double with the value associated to key
151 */
152 double getAttributeDouble(SumoXMLAttr key) const;
153
154 /* @brief method for setting the attribute and letting the object perform additional changes
155 * @param[in] key The attribute key
156 * @param[in] value The new value
157 * @param[in] undoList The undoList on which to register changes
158 */
159 void setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList);
160
161 /* @brief method for checking if the key and their correspond attribute are valids
162 * @param[in] key The attribute key
163 * @param[in] value The value associated to key key
164 * @return true if the value is valid, false in other case
165 */
166 bool isValid(SumoXMLAttr key, const std::string& value);
167
169
170protected:
173
176
179
182
184 std::string myTrafficLight;
185
186private:
188 void setAttribute(SumoXMLAttr key, const std::string& value);
189
191 void setMoveShape(const GNEMoveResult& moveResult);
192
194 void commitMoveShape(const GNEMoveResult& moveResult, GNEUndoList* undoList);
195
198
200 double getEndGeometryPositionOverLane() const;
201
204
207};
long long int SUMOTime
Definition GUI.h:36
SumoXMLTag
Numbers representing SUMO-XML - element names.
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
GNELaneAreaDetector & operator=(const GNELaneAreaDetector &)=delete
Invalidated assignment operator.
void drawPartialGL(const GUIVisualizationSettings &s, const GNELane *lane, const GNEPathManager::Segment *segment, const double offsetFront) const
Draws partial object (lane)
void writeAdditional(OutputDevice &device) const
write additional element into a xml file
void setMoveShape(const GNEMoveResult &moveResult)
set move shape
void updateGeometry()
update pre-computed geometry information
double getAttributeDouble(SumoXMLAttr key) const
void fixAdditionalProblem()
fix additional problem
std::string getAttribute(SumoXMLAttr key) const
double myJamThreshold
The minimum distance to the next standing vehicle in order to make this vehicle count as a participan...
std::string myTrafficLight
Traffic light vinculated with this E2 Detector.
double myEndPositionOverLane
end position over lane (only for Multilane E2 detectors)
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
double getStartGeometryPositionOverLane() const
get start position over lane that is applicable to the shape
bool isAdditionalValid() const
check if current additional is valid to be writed into XML
void commitMoveShape(const GNEMoveResult &moveResult, GNEUndoList *undoList)
commit move shape
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes
double mySpeedThreshold
The speed-based threshold that describes how slow a vehicle has to be to be recognized as halting.
std::string getAdditionalProblem() const
return a string with the current additional problem
double getEndGeometryPositionOverLane() const
get end position over lane that is applicable to the shape
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their correspondent attribute are valids
GNELaneAreaDetector(const GNELaneAreaDetector &)=delete
Invalidated copy constructor.
SUMOTime myTimeThreshold
The time-based threshold that describes how much time has to pass until a vehicle is recognized as ha...
void computePathElement()
compute pathElement
This lane is powered by an underlying GNEEdge and basically knows how to draw itself.
Definition GNELane.h:46
move result
A NBNetBuilder extended by visualisation and editing capabilities.
Definition GNENet.h:42
Stores the information about how to visualize structures.
Static storage of an output device and its base (abstract) implementation.
std::map< std::string, std::string > Map
parameters map