Eclipse SUMO - Simulation of Urban MObility
GNEEdgeRelData.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-2024 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 // class for edge relation data
19 /****************************************************************************/
20 #pragma once
21 #include <config.h>
22 
23 
24 // ===========================================================================
25 // included modules
26 // ===========================================================================
27 #include "GNEGenericData.h"
28 
29 
30 // ===========================================================================
31 // class definitions
32 // ===========================================================================
38 
39 public:
46  GNEEdgeRelData(GNEDataInterval* dataIntervalParent, GNEEdge* fromEdge, GNEEdge* toEdge,
47  const Parameterised::Map& parameters);
48 
51 
54  double getColorValue(const GUIVisualizationSettings& s, int activeScheme) const;
55 
57  bool isGenericDataVisible() const;
58 
60  void updateGeometry();
61 
64 
67 
70  void writeGenericData(OutputDevice& device) const;
71 
73  bool isGenericDataValid() const;
74 
76  std::string getGenericDataProblem() const;
77 
79  void fixGenericDataProblem();
81 
84 
89  void drawGL(const GUIVisualizationSettings& s) const;
90 
93 
95 
98 
100  void computePathElement();
101 
107  void drawLanePartialGL(const GUIVisualizationSettings& s, const GNEPathManager::Segment* segment, const double offsetFront) const;
108 
114  void drawJunctionPartialGL(const GUIVisualizationSettings& s, const GNEPathManager::Segment* segment, const double offsetFront) const;
115 
117  GNELane* getFirstPathLane() const;
118 
120  GNELane* getLastPathLane() const;
122 
125  /* @brief method for getting the Attribute of an XML key
126  * @param[in] key The attribute key
127  * @return string with the value associated to key
128  */
129  std::string getAttribute(SumoXMLAttr key) const;
130 
131  /* @brief method for getting the Attribute of an XML key in double format (to avoid unnecessary parse<double>(...) for certain attributes)
132  * @param[in] key The attribute key
133  * @return double with the value associated to key
134  */
135  double getAttributeDouble(SumoXMLAttr key) const;
136 
142  void setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList);
143 
149  bool isValid(SumoXMLAttr key, const std::string& value);
150 
151  /* @brief method for check if the value for certain attribute is set
152  * @param[in] key The attribute key
153  */
154  bool isAttributeEnabled(SumoXMLAttr key) const;
155 
157  std::string getPopUpID() const;
158 
160  std::string getHierarchyName() const;
162 
163 private:
165  void setAttribute(SumoXMLAttr key, const std::string& value);
166 
168  GNEEdgeRelData(const GNEEdgeRelData&) = delete;
169 
172 };
173 
174 /****************************************************************************/
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
A class that stores a 2D geometrical boundary.
Definition: Boundary.h:39
An Element which don't belong to GNENet but has influence in the simulation.
A road/street connecting two junctions (netedit-version)
Definition: GNEEdge.h:53
An Element which don't belong to GNENet but has influence in the simulation.
void drawJunctionPartialGL(const GUIVisualizationSettings &s, const GNEPathManager::Segment *segment, const double offsetFront) const
Draws partial object over junction.
Position getPositionInView() const
Returns element position in view.
bool isGenericDataValid() const
check if current data set is valid to be written into XML (by default true, can be reimplemented in c...
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
GNELane * getLastPathLane() const
get last path lane
GNEEdgeRelData(const GNEEdgeRelData &)=delete
Invalidated copy constructor.
double getAttributeDouble(SumoXMLAttr key) const
std::string getAttribute(SumoXMLAttr key) const
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform data set changes
bool isAttributeEnabled(SumoXMLAttr key) const
void drawLanePartialGL(const GUIVisualizationSettings &s, const GNEPathManager::Segment *segment, const double offsetFront) const
Draws partial object over lane.
void fixGenericDataProblem()
fix data set problem (by default throw an exception, has to be reimplemented in children)
void computePathElement()
compute pathElement
std::string getGenericDataProblem() const
return a string with the current data set problem (by default empty, can be reimplemented in children...
bool isGenericDataVisible() const
check if current edge rel data is visible
Boundary getCenteringBoundary() const
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
RGBColor setColor(const GUIVisualizationSettings &s) const
get edge rel data color
~GNEEdgeRelData()
Destructor.
GNEEdgeRelData & operator=(const GNEEdgeRelData &)=delete
Invalidated assignment operator.
void writeGenericData(OutputDevice &device) const
write data set element into a xml file
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
double getColorValue(const GUIVisualizationSettings &s, int activeScheme) const
GNEEdgeRelData(GNEDataInterval *dataIntervalParent, GNEEdge *fromEdge, GNEEdge *toEdge, const Parameterised::Map &parameters)
Constructor.
void updateGeometry()
update pre-computed geometry information
GNELane * getFirstPathLane() const
get first path lane
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their conrrespond attribute are valids
An Element which don't belong to GNENet but has influence in the simulation.
This lane is powered by an underlying GNEEdge and basically knows how to draw itself.
Definition: GNELane.h:46
Stores the information about how to visualize structures.
Static storage of an output device and its base (abstract) implementation.
Definition: OutputDevice.h:61
std::map< std::string, std::string > Map
parameters map
Definition: Parameterised.h:45
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:37