Eclipse SUMO - Simulation of Urban MObility
GNEVariableSpeedSign.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 /****************************************************************************/
14 //
15 /****************************************************************************/
16 #ifndef GNEVariableSpeedSign_h
17 #define GNEVariableSpeedSign_h
18 
19 
20 // ===========================================================================
21 // included modules
22 // ===========================================================================
23 
24 #include "GNEAdditional.h"
25 
26 // ===========================================================================
27 // class declarations
28 // ===========================================================================
29 
31 
32 // ===========================================================================
33 // class definitions
34 // ===========================================================================
40 
41 public:
42 
51  GNEVariableSpeedSign(const std::string& id, GNEViewNet* viewNet, const Position& pos, const std::vector<GNELane*>& lanes, const std::string& name, bool blockMovement);
52 
55 
57  void openAdditionalDialog();
58 
61 
64  void moveGeometry(const Position& offset);
65 
69  void commitGeometryMoving(GNEUndoList* undoList);
70 
72  void updateGeometry();
73 
76 
79 
81  void splitEdgeGeometry(const double splitPosition, const GNENetElement* originalElement, const GNENetElement* newElement, GNEUndoList* undoList);
83 
86 
89  std::string getParentName() const;
90 
95  void drawGL(const GUIVisualizationSettings& s) const;
97 
100  /* @brief method for getting the Attribute of an XML key
101  * @param[in] key The attribute key
102  * @return string with the value associated to key
103  */
104  std::string getAttribute(SumoXMLAttr key) const;
105 
106  /* @brief method for getting the Attribute of an XML key in double format (to avoid unnecessary parse<double>(...) for certain attributes)
107  * @param[in] key The attribute key
108  * @return double with the value associated to key
109  */
110  double getAttributeDouble(SumoXMLAttr key) const;
111 
112  /* @brief method for setting the attribute and letting the object perform additional changes
113  * @param[in] key The attribute key
114  * @param[in] value The new value
115  * @param[in] undoList The undoList on which to register changes
116  */
117  void setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList);
118 
119  /* @brief method for checking if the key and their correspond attribute are valids
120  * @param[in] key The attribute key
121  * @param[in] value The value asociated to key key
122  * @return true if the value is valid, false in other case
123  */
124  bool isValid(SumoXMLAttr key, const std::string& value);
125 
126  /* @brief method for check if the value for certain attribute is set
127  * @param[in] key The attribute key
128  */
129  bool isAttributeEnabled(SumoXMLAttr key) const;
130 
132  std::string getPopUpID() const;
133 
135  std::string getHierarchyName() const;
137 
138 protected:
141 
142 private:
144  void setAttribute(SumoXMLAttr key, const std::string& value);
145 
148 
151 };
152 
153 #endif
154 
155 /****************************************************************************/
GNEVariableSpeedSign::isAttributeEnabled
bool isAttributeEnabled(SumoXMLAttr key) const
Definition: GNEVariableSpeedSign.cpp:264
GNEVariableSpeedSign::splitEdgeGeometry
void splitEdgeGeometry(const double splitPosition, const GNENetElement *originalElement, const GNENetElement *newElement, GNEUndoList *undoList)
split geometry
Definition: GNEVariableSpeedSign.cpp:85
GNEVariableSpeedSign::isValid
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their conrrespond attribute are valids
Definition: GNEVariableSpeedSign.cpp:237
GNEAdditional
An Element which don't belongs to GNENet but has influency in the simulation.
Definition: GNEAdditional.h:48
GNEAdditional.h
GNEVariableSpeedSign::operator=
GNEVariableSpeedSign & operator=(const GNEVariableSpeedSign &)=delete
Invalidated assignment operator.
GNEVariableSpeedSign::getCenteringBoundary
Boundary getCenteringBoundary() const
Returns the boundary to which the view shall be centered in order to show the object.
Definition: GNEVariableSpeedSign.cpp:71
GNEVariableSpeedSignStep
Definition: GNEVariableSpeedSignStep.h:40
GNEVariableSpeedSign::commitGeometryMoving
void commitGeometryMoving(GNEUndoList *undoList)
commit geometry changes in the attributes of an element after use of moveGeometry(....
Definition: GNEVariableSpeedSign.cpp:109
GNEVariableSpeedSign::updateGeometry
void updateGeometry()
update pre-computed geometry information
Definition: GNEVariableSpeedSign.cpp:49
GNEVariableSpeedSign
Definition: GNEVariableSpeedSign.h:39
GNEViewNet
Definition: GNEViewNet.h:42
GNEVariableSpeedSign::getPopUpID
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
Definition: GNEVariableSpeedSign.cpp:270
GNEVariableSpeedSign::drawGL
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
Definition: GNEVariableSpeedSign.cpp:124
GNEVariableSpeedSign::getAttribute
std::string getAttribute(SumoXMLAttr key) const
Definition: GNEVariableSpeedSign.cpp:179
GNEVariableSpeedSign::getAttributeDouble
double getAttributeDouble(SumoXMLAttr key) const
Definition: GNEVariableSpeedSign.cpp:202
GNEVariableSpeedSign::moveGeometry
void moveGeometry(const Position &offset)
change the position of the element geometry without saving in undoList
Definition: GNEVariableSpeedSign.cpp:98
GNEVariableSpeedSign::getPositionInView
Position getPositionInView() const
Returns position of additional in view.
Definition: GNEVariableSpeedSign.cpp:65
GNEVariableSpeedSign::getHierarchyName
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
Definition: GNEVariableSpeedSign.cpp:276
Boundary
A class that stores a 2D geometrical boundary.
Definition: Boundary.h:41
Position
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:38
GNEVariableSpeedSign::~GNEVariableSpeedSign
~GNEVariableSpeedSign()
Destructor.
Definition: GNEVariableSpeedSign.cpp:44
GNENetElement
Definition: GNENetElement.h:43
GNEVariableSpeedSign::setAttribute
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes
Definition: GNEVariableSpeedSign.cpp:208
GNEVariableSpeedSign::GNEVariableSpeedSign
GNEVariableSpeedSign(const std::string &id, GNEViewNet *viewNet, const Position &pos, const std::vector< GNELane * > &lanes, const std::string &name, bool blockMovement)
Constructor.
Definition: GNEVariableSpeedSign.cpp:38
GNEVariableSpeedSign::myPosition
Position myPosition
position of VSS in view
Definition: GNEVariableSpeedSign.h:140
GNEUndoList
Definition: GNEUndoList.h:48
GUIVisualizationSettings
Stores the information about how to visualize structures.
Definition: GUIVisualizationSettings.h:345
GNEVariableSpeedSign::getParentName
std::string getParentName() const
Returns the name of the parent object.
Definition: GNEVariableSpeedSign.cpp:118
SumoXMLAttr
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
Definition: SUMOXMLDefinitions.h:372
GNEVariableSpeedSign::openAdditionalDialog
void openAdditionalDialog()
open GNEVariableSpeedSignDialog
Definition: GNEVariableSpeedSign.cpp:91