Eclipse SUMO - Simulation of Urban MObility
GNETAZSourceSink.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2001-2019 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials
5 // are made available under the terms of the Eclipse Public License v2.0
6 // which accompanies this distribution, and is available at
7 // http://www.eclipse.org/legal/epl-v20.html
8 // SPDX-License-Identifier: EPL-2.0
9 /****************************************************************************/
15 //
16 /****************************************************************************/
17 #ifndef GNETAZSourceSink_h
18 #define GNETAZSourceSink_h
19 
20 
21 // ===========================================================================
22 // included modules
23 // ===========================================================================
24 
25 #include "GNEAdditional.h"
26 
27 // ===========================================================================
28 // class declarations
29 // ===========================================================================
30 
31 class GNETAZ;
32 class GNETAZSink;
33 
34 // ===========================================================================
35 // class definitions
36 // ===========================================================================
42 
43 public:
50  GNETAZSourceSink(SumoXMLTag sourceSinkTag, GNEAdditional* TAZParent, GNEEdge* edge, double departWeight);
51 
54 
56  double getDepartWeight() const;
57 
60 
63  void moveGeometry(const Position& offset);
64 
68  void commitGeometryMoving(GNEUndoList* undoList);
69 
71  void updateGeometry();
72 
75 
79 
82 
85  std::string getParentName() const;
86 
91  void drawGL(const GUIVisualizationSettings& s) const;
93 
96  /* @brief method for getting the Attribute of an XML key
97  * @param[in] key The attribute key
98  * @return string with the value associated to key
99  */
100  std::string getAttribute(SumoXMLAttr key) const;
101 
102  /* @brief method for setting the attribute and letting the object perform additional changes
103  * @param[in] key The attribute key
104  * @param[in] value The new value
105  * @param[in] undoList The undoList on which to register changes
106  * @param[in] net optionally the GNENet to inform about gui updates
107  */
108  void setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList);
109 
110  /* @brief method for setting the attribute and letting the object perform additional changes
111  * @param[in] key The attribute key
112  * @param[in] value The new value
113  * @param[in] undoList The undoList on which to register changes
114  */
115  bool isValid(SumoXMLAttr key, const std::string& value);
116 
118  std::string getPopUpID() const;
119 
121  std::string getHierarchyName() const;
122 
124 
125 protected:
128 
129 private:
131  void setAttribute(SumoXMLAttr key, const std::string& value);
132 
134  GNETAZSourceSink(const GNETAZSourceSink&) = delete;
135 
137  GNETAZSourceSink& operator=(const GNETAZSourceSink&) = delete;
138 };
139 
140 #endif
141 
142 /****************************************************************************/
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
SumoXMLTag
Numbers representing SUMO-XML - element names.
~GNETAZSourceSink()
destructor
void commitGeometryMoving(GNEUndoList *undoList)
commit geometry changes in the attributes of an element after use of moveGeometry(...)
double getDepartWeight() const
get depart weight
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes ...
GNETAZSourceSink(SumoXMLTag sourceSinkTag, GNEAdditional *TAZParent, GNEEdge *edge, double departWeight)
Constructor.
Stores the information about how to visualize structures.
void moveGeometry(const Position &offset)
change the position of the element geometry without saving in undoList
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
GNETAZSourceSink & operator=(const GNETAZSourceSink &)=delete
Invalidated assignment operator.
A class that stores a 2D geometrical boundary.
Definition: Boundary.h:42
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:39
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their conrrespond attribute are valids
Definition: GNETAZ.h:35
std::string getAttribute(SumoXMLAttr key) const
inherited from GNEAttributeCarrier
A road/street connecting two junctions (netedit-version)
Definition: GNEEdge.h:50
std::string getParentName() const
Returns the name of the parent object.
double myDepartWeight
depart Weight
An Element which don't belongs to GNENet but has influency in the simulation.
Definition: GNEAdditional.h:47
Position getPositionInView() const
Returns position of additional in view.
void updateGeometry()
update pre-computed geometry information
Boundary getCenteringBoundary() const
Returns the boundary to which the view shall be centered in order to show the object.
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.