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-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 // 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(bool updateGrid);
63 
66 
70  void drawGL(const GUIVisualizationSettings& s) const;
72 
75  /* @brief method for getting the Attribute of an XML key
76  * @param[in] key The attribute key
77  * @return string with the value associated to key
78  */
79  std::string getAttribute(SumoXMLAttr key) const;
80 
81  /* @brief method for setting the attribute and letting the object perform additional changes
82  * @param[in] key The attribute key
83  * @param[in] value The new value
84  * @param[in] undoList The undoList on which to register changes
85  */
86  void setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList);
87 
88  /* @brief method for checking if the key and their correspond attribute are valids
89  * @param[in] key The attribute key
90  * @param[in] value The value asociated to key key
91  * @return true if the value is valid, false in other case
92  */
93  bool isValid(SumoXMLAttr key, const std::string& value);
95 
96 protected:
99 
101  bool myOnRoad;
102 
104  double myWidth;
105 
107  std::string myLength;
108 
110  double myAngle;
111 
112 private:
114  void setAttribute(SumoXMLAttr key, const std::string& value);
115 
117  GNEParkingArea(const GNEParkingArea&) = delete;
118 
120  GNEParkingArea& operator=(const GNEParkingArea&) = delete;
121 };
122 
123 
124 #endif
double myAngle
Angle of Parking Area.
~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:47
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
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(bool updateGrid)
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.