SUMO - Simulation of Urban MObility
GNEVariableSpeedSignStep.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-2018 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 GNEVariableSpeedSignStep_h
18 #define GNEVariableSpeedSignStep_h
19 
20 
21 // ===========================================================================
22 // included modules
23 // ===========================================================================
24 
25 #include "GNEAdditional.h"
26 
27 // ===========================================================================
28 // class declarations
29 // ===========================================================================
30 
33 
34 // ===========================================================================
35 // class definitions
36 // ===========================================================================
42 
43 public:
45  GNEVariableSpeedSignStep(GNEVariableSpeedSignDialog* variableSpeedSignDialog);
46 
48  GNEVariableSpeedSignStep(GNEAdditional* variableSpeedSignParent, double time, double speed);
49 
52 
54  double getTime() const;
55 
58 
61  void moveGeometry(const Position& offset);
62 
66  void commitGeometryMoving(GNEUndoList* undoList);
67 
69  void updateGeometry(bool updateGrid);
70 
74 
77 
80  std::string getParentName() const;
81 
86  void drawGL(const GUIVisualizationSettings& s) const;
88 
91  /* @brief method for getting the Attribute of an XML key
92  * @param[in] key The attribute key
93  * @return string with the value associated to key
94  */
95  std::string getAttribute(SumoXMLAttr key) const;
96 
97  /* @brief method for setting the attribute and letting the object perform additional changes
98  * @param[in] key The attribute key
99  * @param[in] value The new value
100  * @param[in] undoList The undoList on which to register changes
101  * @param[in] net optionally the GNENet to inform about gui updates
102  */
103  void setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList);
104 
105  /* @brief method for setting the attribute and letting the object perform additional changes
106  * @param[in] key The attribute key
107  * @param[in] value The new value
108  * @param[in] undoList The undoList on which to register changes
109  */
110  bool isValid(SumoXMLAttr key, const std::string& value);
111 
113  std::string getPopUpID() const;
114 
116  std::string getHierarchyName() const;
118 
119 protected:
121  double myTime;
122 
124  double mySpeed;
125 
126 private:
128  void setAttribute(SumoXMLAttr key, const std::string& value);
129 
132 
135 };
136 
137 #endif
138 
139 /****************************************************************************/
void updateGeometry(bool updateGrid)
update pre-computed geometry information
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
GNEVariableSpeedSignStep(GNEVariableSpeedSignDialog *variableSpeedSignDialog)
default constructor
Stores the information about how to visualize structures.
double getTime() const
get time
void commitGeometryMoving(GNEUndoList *undoList)
commit geometry changes in the attributes of an element after use of moveGeometry(...)
void moveGeometry(const Position &offset)
change the position of the element geometry without saving in undoList
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
std::string getAttribute(SumoXMLAttr key) const
inherited from GNEAttributeCarrier
Position getPositionInView() const
Returns position of additional in view.
GNEVariableSpeedSignStep & operator=(const GNEVariableSpeedSignStep &)=delete
Invalidated assignment operator.
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:39
double mySpeed
speed in this timeStep
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes ...
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
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 belongs to GNENet but has influency in the simulation.
Definition: GNEAdditional.h:48
std::string getParentName() const
Returns the name of the parent object.