SUMO - Simulation of Urban MObility
GNECalibratorRoute.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 // Route used by GNECalibrators
16 /****************************************************************************/
17 #ifndef GNECalibratorRoute_h
18 #define GNECalibratorRoute_h
19 
20 
21 // ===========================================================================
22 // included modules
23 // ===========================================================================
24 
25 #include "GNEAdditional.h"
26 
27 // ===========================================================================
28 // class declaration
29 // ===========================================================================
30 
31 class GNEEdge;
32 
33 // ===========================================================================
34 // class definitions
35 // ===========================================================================
41 
42 public:
45 
47  GNECalibratorRoute(GNEViewNet* viewNet, const std::string& routeID, const std::vector<GNEEdge*>& edges, const RGBColor& color);
48 
51 
53  const std::vector<GNEEdge*>& getGNEEdges() const;
54 
57 
60  void moveGeometry(const Position& offset);
61 
65  void commitGeometryMoving(GNEUndoList* undoList);
66 
68  void updateGeometry(bool updateGrid);
69 
73 
76 
79  std::string getParentName() const;
80 
85  void drawGL(const GUIVisualizationSettings& s) const;
87 
90  /* @brief method for getting the Attribute of an XML key
91  * @param[in] key The attribute key
92  * @return string with the value associated to key
93  */
94  std::string getAttribute(SumoXMLAttr key) const;
95 
96  /* @brief method for setting the attribute and letting the object perform additional changes
97  * @param[in] key The attribute key
98  * @param[in] value The new value
99  * @param[in] undoList The undoList on which to register changes
100  * @param[in] net optionally the GNENet to inform about gui updates
101  */
102  void setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList);
103 
104  /* @brief method for setting the attribute and letting the object perform additional changes
105  * @param[in] key The attribute key
106  * @param[in] value The new value
107  * @param[in] undoList The undoList on which to register changes
108  */
109  bool isValid(SumoXMLAttr key, const std::string& value);
110 
112  std::string getPopUpID() const;
113 
115  std::string getHierarchyName() const;
117 
118 protected:
120  std::vector<GNEEdge*> myEdges;
121 
124 
125 private:
127  void setAttribute(SumoXMLAttr key, const std::string& value);
128 
131 
134 };
135 
136 #endif
137 /****************************************************************************/
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
Stores the information about how to visualize structures.
GNECalibratorRoute & operator=(GNECalibratorRoute *)=delete
Invalidated assignment operator.
void moveGeometry(const Position &offset)
change the position of the element geometry without saving in undoList
std::string getParentName() const
Returns the name of the parent object.
const std::vector< GNEEdge * > & getGNEEdges() const
get GNEEdges of Calibrator ROute
GNECalibratorRoute(GNEViewNet *viewNet)
default constructor (used only in GNECalibratorDialog)
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
std::vector< GNEEdge * > myEdges
edges of route
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes ...
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:39
RGBColor myColor
color of ROute
~GNECalibratorRoute()
destructor
void updateGeometry(bool updateGrid)
update pre-computed geometry information
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
std::string getAttribute(SumoXMLAttr key) const
inherited from GNEAttributeCarrier
A road/street connecting two junctions (netedit-version)
Definition: GNEEdge.h:50
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their conrrespond attribute are valids
Position getPositionInView() const
Returns position of additional in view.
An Element which don&#39;t belongs to GNENet but has influency in the simulation.
Definition: GNEAdditional.h:48
void commitGeometryMoving(GNEUndoList *undoList)
commit geometry changes in the attributes of an element after use of moveGeometry(...)