Eclipse SUMO - Simulation of Urban MObility
GNERouteProbReroute.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 GNERouteProbReroute_h
17 #define GNERouteProbReroute_h
18 
19 
20 // ===========================================================================
21 // included modules
22 // ===========================================================================
23 
24 #include "GNEAdditional.h"
25 
26 // ===========================================================================
27 // class declarations
28 // ===========================================================================
29 
30 class GNEEdge;
33 
34 // ===========================================================================
35 // class definitions
36 // ===========================================================================
37 
43 public:
45  GNERouteProbReroute(GNERerouterIntervalDialog* rerouterIntervalDialog);
46 
48  GNERouteProbReroute(GNEAdditional* rerouterIntervalParent, const std::string& newRouteId, double probability);
49 
52 
55 
58  void moveGeometry(const Position& offset);
59 
63  void commitGeometryMoving(GNEUndoList* undoList);
64 
66  void updateGeometry();
67 
70 
73 
75  void splitEdgeGeometry(const double splitPosition, const GNENetElement* originalElement, const GNENetElement* newElement, GNEUndoList* undoList);
77 
80 
83  std::string getParentName() const;
84 
89  void drawGL(const GUIVisualizationSettings& s) const;
91 
94  /* @brief method for getting the Attribute of an XML key
95  * @param[in] key The attribute key
96  * @return string with the value associated to key
97  */
98  std::string getAttribute(SumoXMLAttr key) const;
99 
100  /* @brief method for getting the Attribute of an XML key in double format (to avoid unnecessary parse<double>(...) for certain attributes)
101  * @param[in] key The attribute key
102  * @return double with the value associated to key
103  */
104 
105  double getAttributeDouble(SumoXMLAttr key) const;
106  /* @brief method for setting the attribute and letting the object perform additional changes
107  * @param[in] key The attribute key
108  * @param[in] value The new value
109  * @param[in] undoList The undoList on which to register changes
110  */
111  void setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList);
112 
113  /* @brief method for checking if the key and their correspond attribute are valids
114  * @param[in] key The attribute key
115  * @param[in] value The value asociated to key key
116  * @return true if the value is valid, false in other case
117  */
118  bool isValid(SumoXMLAttr key, const std::string& value);
119 
120  /* @brief method for check if the value for certain attribute is set
121  * @param[in] key The attribute key
122  */
123  bool isAttributeEnabled(SumoXMLAttr key) const;
124 
126  std::string getPopUpID() const;
127 
129  std::string getHierarchyName() const;
131 
132 protected:
134  std::string myNewRouteId;
135 
138 
139 private:
141  void setAttribute(SumoXMLAttr key, const std::string& value);
142 
144  GNERouteProbReroute(const GNERouteProbReroute&) = delete;
145 
148 };
149 
150 #endif
151 
152 /****************************************************************************/
GNEAdditional
An Element which don't belongs to GNENet but has influency in the simulation.
Definition: GNEAdditional.h:48
GNEAdditional.h
GNERouteProbReroute::getParentName
std::string getParentName() const
Returns the name of the parent object.
Definition: GNERouteProbReroute.cpp:94
GNERerouterInterval
Definition: GNERerouterInterval.h:45
GNERouteProbReroute::getHierarchyName
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
Definition: GNERouteProbReroute.cpp:178
GNERouteProbReroute::getAttribute
std::string getAttribute(SumoXMLAttr key) const
Definition: GNERouteProbReroute.cpp:106
GNERouteProbReroute::~GNERouteProbReroute
~GNERouteProbReroute()
destructor
Definition: GNERouteProbReroute.cpp:54
GNERouteProbReroute::isValid
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their conrrespond attribute are valids
Definition: GNERouteProbReroute.cpp:149
GNERouteProbReroute::getAttributeDouble
double getAttributeDouble(SumoXMLAttr key) const
Definition: GNERouteProbReroute.cpp:125
GNERouteProbReroute::updateGeometry
void updateGeometry()
update pre-computed geometry information
Definition: GNERouteProbReroute.cpp:70
GNERouteProbReroute::drawGL
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
Definition: GNERouteProbReroute.cpp:100
GNEEdge
A road/street connecting two junctions (netedit-version)
Definition: GNEEdge.h:51
GNERouteProbReroute::setAttribute
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes
Definition: GNERouteProbReroute.cpp:131
GNERouteProbReroute::getPopUpID
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
Definition: GNERouteProbReroute.cpp:172
GNERouteProbReroute::getCenteringBoundary
Boundary getCenteringBoundary() const
Returns the boundary to which the view shall be centered in order to show the object.
Definition: GNERouteProbReroute.cpp:82
GNERouteProbReroute::GNERouteProbReroute
GNERouteProbReroute(GNERerouterIntervalDialog *rerouterIntervalDialog)
constructor (Used in GNERerouterIntervalDialog)
Definition: GNERouteProbReroute.cpp:34
GNERouteProbReroute
Definition: GNERouteProbReroute.h:42
Boundary
A class that stores a 2D geometrical boundary.
Definition: Boundary.h:41
GNERouteProbReroute::isAttributeEnabled
bool isAttributeEnabled(SumoXMLAttr key) const
Definition: GNERouteProbReroute.cpp:166
Position
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:38
GNENetElement
Definition: GNENetElement.h:43
GNERouteProbReroute::operator=
GNERouteProbReroute & operator=(const GNERouteProbReroute &)=delete
Invalidated assignment operator.
GNERouteProbReroute::getPositionInView
Position getPositionInView() const
Returns position of additional in view.
Definition: GNERouteProbReroute.cpp:76
GNERouteProbReroute::myProbability
double myProbability
probability with which a vehicle will use the given edge as destination
Definition: GNERouteProbReroute.h:137
GNEUndoList
Definition: GNEUndoList.h:48
GUIVisualizationSettings
Stores the information about how to visualize structures.
Definition: GUIVisualizationSettings.h:345
GNERouteProbReroute::myNewRouteId
std::string myNewRouteId
id of new route
Definition: GNERouteProbReroute.h:134
SumoXMLAttr
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
Definition: SUMOXMLDefinitions.h:372
GNERouteProbReroute::commitGeometryMoving
void commitGeometryMoving(GNEUndoList *undoList)
commit geometry changes in the attributes of an element after use of moveGeometry(....
Definition: GNERouteProbReroute.cpp:64
GNERouteProbReroute::splitEdgeGeometry
void splitEdgeGeometry(const double splitPosition, const GNENetElement *originalElement, const GNENetElement *newElement, GNEUndoList *undoList)
split geometry
Definition: GNERouteProbReroute.cpp:88
GNERerouterIntervalDialog
Dialog for edit rerouter intervals.
Definition: GNERerouterIntervalDialog.h:49
GNERouteProbReroute::moveGeometry
void moveGeometry(const Position &offset)
change the position of the element geometry without saving in undoList
Definition: GNERouteProbReroute.cpp:58