SUMO - Simulation of Urban MObility
GNERerouter.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 GNERerouter_h
18 #define GNERerouter_h
19 
20 
21 // ===========================================================================
22 // included modules
23 // ===========================================================================
24 
25 #include "GNEAdditional.h"
26 
27 // ===========================================================================
28 // class declarations
29 // ===========================================================================
30 
31 class GNEEdge;
32 
33 // ===========================================================================
34 // class definitions
35 // ===========================================================================
40 class GNERerouter : public GNEAdditional {
41 
42 public:
54  GNERerouter(const std::string& id, GNEViewNet* viewNet, const Position& pos, const std::vector<GNEEdge*>& edges, const std::string& name,
55  const std::string& filename, double probability, bool off, double timeThreshold, const std::string& vTypes, bool blockMovement);
56 
58  ~GNERerouter();
59 
61  void openAdditionalDialog();
62 
65 
68  void moveGeometry(const Position& offset);
69 
73  void commitGeometryMoving(GNEUndoList* undoList);
74 
76  void updateGeometry(bool updateGrid);
77 
81 
86  std::string getParentName() const;
87 
92  void drawGL(const GUIVisualizationSettings& s) const;
94 
97  /* @brief method for getting the Attribute of an XML key
98  * @param[in] key The attribute key
99  * @return string with the value associated to key
100  */
101  std::string getAttribute(SumoXMLAttr key) const;
102 
103  /* @brief method for setting the attribute and letting the object perform additional changes
104  * @param[in] key The attribute key
105  * @param[in] value The new value
106  * @param[in] undoList The undoList on which to register changes
107  */
108  void setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList);
109 
110  /* @brief method for checking if the key and their correspond attribute are valids
111  * @param[in] key The attribute key
112  * @param[in] value The value asociated to key key
113  * @return true if the value is valid, false in other case
114  */
115  bool isValid(SumoXMLAttr key, const std::string& value);
116 
118  std::string getPopUpID() const;
119 
121  std::string getHierarchyName() const;
123 
124 protected:
127 
129  std::string myFilename;
130 
133 
135  bool myOff;
136 
139 
141  std::string myVTypes;
142 
143 private:
145  void setAttribute(SumoXMLAttr key, const std::string& value);
146 
148  GNERerouter(const GNERerouter&) = delete;
149 
151  GNERerouter& operator=(const GNERerouter&) = delete;
152 };
153 
154 #endif
155 
156 /****************************************************************************/
~GNERerouter()
Destructor.
Definition: GNERerouter.cpp:52
Stores the information about how to visualize structures.
std::string getAttribute(SumoXMLAttr key) const
Position getPositionInView() const
Returns position of additional in view.
Definition: GNERerouter.cpp:89
Position myPosition
position of rerouter in view
Definition: GNERerouter.h:126
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
bool myOff
attribute to enable or disable inactive initially
Definition: GNERerouter.h:135
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
GNERerouter(const std::string &id, GNEViewNet *viewNet, const Position &pos, const std::vector< GNEEdge *> &edges, const std::string &name, const std::string &filename, double probability, bool off, double timeThreshold, const std::string &vTypes, bool blockMovement)
Constructor.
Definition: GNERerouter.cpp:41
double myProbability
probability of rerouter
Definition: GNERerouter.h:132
void commitGeometryMoving(GNEUndoList *undoList)
commit geometry changes in the attributes of an element after use of moveGeometry(...)
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes ...
void moveGeometry(const Position &offset)
change the position of the element geometry without saving in undoList
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their conrrespond attribute are valids
std::string myFilename
filename of rerouter
Definition: GNERerouter.h:129
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:39
std::string myVTypes
optional vehicle types for restricting the rerouter
Definition: GNERerouter.h:141
A road/street connecting two junctions (netedit-version)
Definition: GNEEdge.h:50
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
An Element which don&#39;t belongs to GNENet but has influency in the simulation.
Definition: GNEAdditional.h:48
void updateGeometry(bool updateGrid)
update pre-computed geometry information
Definition: GNERerouter.cpp:57
std::string getParentName() const
Returns the name of the parent object (if any)
GNERerouter & operator=(const GNERerouter &)=delete
Invalidated assignment operator.
double myTimeThreshold
attribute to configure activation time threshold
Definition: GNERerouter.h:138
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
void openAdditionalDialog()
open GNERerouterDialog
Definition: GNERerouter.cpp:95