Eclipse SUMO - Simulation of Urban MObility
GNEAccess.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 /****************************************************************************/
15 //
16 /****************************************************************************/
17 #ifndef GNEAccess_h
18 #define GNEAccess_h
19 
20 
21 // ===========================================================================
22 // included modules
23 // ===========================================================================
24 
25 #include "GNEAdditional.h"
26 
27 // ===========================================================================
28 // class declarations
29 // ===========================================================================
30 class GNEBusStop;
31 
32 // ===========================================================================
33 // class definitions
34 // ===========================================================================
39 class GNEAccess : public GNEAdditional {
40 
41 public:
52  GNEAccess(GNEAdditional* busStop, GNELane* lane, GNEViewNet* viewNet, const std::string& pos, const std::string& length, bool friendlyPos, bool blockMovement);
53 
55  ~GNEAccess();
56 
58  bool isAccessPositionFixed() const;
59 
61  GNEEdge& getEdge() const;
62 
65 
68  void moveGeometry(const Position& offset);
69 
73  void commitGeometryMoving(GNEUndoList* undoList);
74 
76  void updateGeometry();
77 
79  Position getPositionInView() const ;
80 
84 
88  std::string getParentName() const;
89 
91 
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 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 
121  std::string getPopUpID() const;
122 
124  std::string getHierarchyName() const;
126 
127 protected:
129  std::string myPositionOverLane;
130 
132  std::string myLength;
133 
136 
137 private:
139  void setAttribute(SumoXMLAttr key, const std::string& value);
140 
142  GNEAccess(const GNEAccess&) = delete;
143 
145  GNEAccess& operator=(const GNEAccess&) = delete;
146 };
147 
148 #endif
149 /****************************************************************************/
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
Definition: GNEAccess.cpp:293
bool isAccessPositionFixed() const
check if Position of Access is fixed
Definition: GNEAccess.cpp:136
Stores the information about how to visualize structures.
GNEEdge & getEdge() const
get edge in which this Access is placed
Definition: GNEAccess.cpp:151
This lane is powered by an underlying GNEEdge and basically knows how to draw itself.
Definition: GNELane.h:46
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes ...
Definition: GNEAccess.cpp:222
A class that stores a 2D geometrical boundary.
Definition: Boundary.h:42
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
Definition: GNEAccess.cpp:287
std::string myLength
Acces lenght.
Definition: GNEAccess.h:132
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
Definition: GNEAccess.cpp:163
bool myFriendlyPosition
flag to check if friendly position is enabled
Definition: GNEAccess.h:135
GNEAccess & operator=(const GNEAccess &)=delete
Invalidated assignment operator.
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:39
void updateGeometry()
update pre-computed geometry information
Definition: GNEAccess.cpp:77
A lane area vehicles can halt at (netedit-version)
Definition: GNEBusStop.h:35
Position getPositionInView() const
Returns position of additional in view.
Definition: GNEAccess.cpp:113
GNEAccess(GNEAdditional *busStop, GNELane *lane, GNEViewNet *viewNet, const std::string &pos, const std::string &length, bool friendlyPos, bool blockMovement)
Constructor.
Definition: GNEAccess.cpp:39
Boundary getCenteringBoundary() const
Returns the boundary to which the view shall be centered in order to show the object.
Definition: GNEAccess.cpp:130
void moveGeometry(const Position &offset)
change the position of the element geometry without saving in undoList
Definition: GNEAccess.cpp:53
A road/street connecting two junctions (netedit-version)
Definition: GNEEdge.h:50
An Element which don't belongs to GNENet but has influency in the simulation.
Definition: GNEAdditional.h:47
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their conrrespond attribute are valids
Definition: GNEAccess.cpp:244
std::string myPositionOverLane
position over lane
Definition: GNEAccess.h:129
~GNEAccess()
Destructor.
Definition: GNEAccess.cpp:48
void commitGeometryMoving(GNEUndoList *undoList)
commit geometry changes in the attributes of an element after use of moveGeometry(...)
Definition: GNEAccess.cpp:66
std::string getParentName() const
Returns the name of the parent object (if any)
Definition: GNEAccess.cpp:157
std::string getAttribute(SumoXMLAttr key) const
Definition: GNEAccess.cpp:195