Eclipse SUMO - Simulation of Urban MObility
GNEParkingArea.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 // A class for visualizing ParkingArea geometry (adapted from GUILaneWrapper)
16 /****************************************************************************/
17 #ifndef GNEParkingArea_h
18 #define GNEParkingArea_h
19 
20 // ===========================================================================
21 // included modules
22 // ===========================================================================
23 
24 #include "GNEStoppingPlace.h"
25 
26 
27 // ===========================================================================
28 // class definitions
29 // ===========================================================================
30 
36 
37 public:
52  GNEParkingArea(const std::string& id, GNELane* lane, GNEViewNet* viewNet, const std::string& startPos, const std::string& endPos, const std::string& name, bool friendlyPosition, int roadSideCapacity,
53  bool onRoad, double width, const std::string& length, double angle, bool blockMovement);
54 
57 
61  void updateGeometry();
62 
66 
69 
73  void drawGL(const GUIVisualizationSettings& s) const;
75 
78  /* @brief method for getting the Attribute of an XML key
79  * @param[in] key The attribute key
80  * @return string with the value associated to key
81  */
82  std::string getAttribute(SumoXMLAttr key) const;
83 
84  /* @brief method for setting the attribute and letting the object perform additional changes
85  * @param[in] key The attribute key
86  * @param[in] value The new value
87  * @param[in] undoList The undoList on which to register changes
88  */
89  void setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList);
90 
91  /* @brief method for checking if the key and their correspond attribute are valids
92  * @param[in] key The attribute key
93  * @param[in] value The value asociated to key key
94  * @return true if the value is valid, false in other case
95  */
96  bool isValid(SumoXMLAttr key, const std::string& value);
98 
99 protected:
102 
104  bool myOnRoad;
105 
107  double myWidth;
108 
110  std::string myLength;
111 
113  double myAngle;
114 
115 private:
117  void setAttribute(SumoXMLAttr key, const std::string& value);
118 
120  GNEParkingArea(const GNEParkingArea&) = delete;
121 
123  GNEParkingArea& operator=(const GNEParkingArea&) = delete;
124 };
125 
126 
127 #endif
double myAngle
Angle of Parking Area.
Boundary getCenteringBoundary() const
Returns the boundary to which the view shall be centered in order to show the object.
~GNEParkingArea()
Destructor.
Stores the information about how to visualize structures.
std::string getAttribute(SumoXMLAttr key) const
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.
A class that stores a 2D geometrical boundary.
Definition: Boundary.h:42
int myRoadSideCapacity
roadside capacity of Parking Area
A lane area vehicles can park at (netedit-version)
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their conrrespond attribute are valids
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.
std::string myLength
Lenght of Parking Area (by default (endPos - startPos) / roadsideCapacity.
void updateGeometry()
update pre-computed geometry information
GNEParkingArea & operator=(const GNEParkingArea &)=delete
Invalidated assignment operator.
double myWidth
width of Parking Area
bool myOnRoad
Whether vehicles stay on the road.
GNEParkingArea(const std::string &id, GNELane *lane, GNEViewNet *viewNet, const std::string &startPos, const std::string &endPos, const std::string &name, bool friendlyPosition, int roadSideCapacity, bool onRoad, double width, const std::string &length, double angle, bool blockMovement)
Constructor.