Eclipse SUMO - Simulation of Urban MObility
GNEParkingSpace.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 ParkingSpace geometry (adapted from GUILaneWrapper)
16 /****************************************************************************/
17 #ifndef GNEParkingSpace_h
18 #define GNEParkingSpace_h
19 
20 // ===========================================================================
21 // included modules
22 // ===========================================================================
23 
24 #include "GNEAdditional.h"
25 
26 // ===========================================================================
27 // class declarations
28 // ===========================================================================
29 class GNEParkingArea;
30 
31 // ===========================================================================
32 // class definitions
33 // ===========================================================================
34 
40 
41 public:
51  GNEParkingSpace(GNEViewNet* viewNet, GNEAdditional* parkingAreaParent, const Position& pos, double width, double length, double angle, bool blockMovement);
52 
55 
58 
61  void moveGeometry(const Position& offset);
62 
66  void commitGeometryMoving(GNEUndoList* undoList);
67 
69  void updateGeometry();
70 
73 
77 
82  std::string getParentName() const;
83 
88  void drawGL(const GUIVisualizationSettings& s) const;
90 
93  /* @brief method for getting the Attribute of an XML key
94  * @param[in] key The attribute key
95  * @return string with the value associated to key
96  */
97  std::string getAttribute(SumoXMLAttr key) const;
98 
99  /* @brief method for setting the attribute and letting the object perform additional changes
100  * @param[in] key The attribute key
101  * @param[in] value The new value
102  * @param[in] undoList The undoList on which to register changes
103  */
104  void setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList);
105 
106  /* @brief method for checking if the key and their correspond attribute are valids
107  * @param[in] key The attribute key
108  * @param[in] value The value asociated to key key
109  * @return true if the value is valid, false in other case
110  */
111  bool isValid(SumoXMLAttr key, const std::string& value);
112 
114  std::string getPopUpID() const;
115 
117  std::string getHierarchyName() const;
119 
120 protected:
123 
125  double myWidth;
126 
128  double myLength;
129 
131  double myAngle;
132 
133 private:
135  void setAttribute(SumoXMLAttr key, const std::string& value);
136 
138  GNEParkingSpace(const GNEParkingSpace&) = delete;
139 
141  GNEParkingSpace& operator=(const GNEParkingSpace&) = delete;
142 };
143 
144 
145 #endif
GNEParkingSpace::myPosition
Position myPosition
position of Parking Space in view
Definition: GNEParkingSpace.h:122
GNEParkingSpace::getPositionInView
Position getPositionInView() const
Returns position of additional in view.
Definition: GNEParkingSpace.cpp:76
GNEAdditional
An Element which don't belongs to GNENet but has influency in the simulation.
Definition: GNEAdditional.h:47
GNEAdditional.h
GNEParkingSpace::~GNEParkingSpace
~GNEParkingSpace()
Destructor.
Definition: GNEParkingSpace.cpp:46
GNEParkingSpace::commitGeometryMoving
void commitGeometryMoving(GNEUndoList *undoList)
commit geometry changes in the attributes of an element after use of moveGeometry(....
Definition: GNEParkingSpace.cpp:61
GNEParkingSpace::GNEParkingSpace
GNEParkingSpace(GNEViewNet *viewNet, GNEAdditional *parkingAreaParent, const Position &pos, double width, double length, double angle, bool blockMovement)
Constructor.
Definition: GNEParkingSpace.cpp:36
GNEViewNet
Definition: GNEViewNet.h:43
GNEParkingSpace::operator=
GNEParkingSpace & operator=(const GNEParkingSpace &)=delete
Invalidated assignment operator.
GNEParkingSpace::getPopUpID
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
Definition: GNEParkingSpace.cpp:235
GNEParkingArea
A lane area vehicles can park at (netedit-version)
Definition: GNEParkingArea.h:35
GNEParkingSpace::myWidth
double myWidth
width of Parking Space
Definition: GNEParkingSpace.h:125
Boundary
A class that stores a 2D geometrical boundary.
Definition: Boundary.h:42
GNEParkingSpace::updateGeometry
void updateGeometry()
update pre-computed geometry information
Definition: GNEParkingSpace.cpp:70
Position
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:39
GNEParkingSpace::myLength
double myLength
Lenght of Parking Space.
Definition: GNEParkingSpace.h:128
GNEParkingSpace
vehicle space used by GNEParkingAreas
Definition: GNEParkingSpace.h:39
GNEParkingSpace::setAttribute
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes
Definition: GNEParkingSpace.cpp:185
GNEParkingSpace::drawGL
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
Definition: GNEParkingSpace.cpp:111
GNEParkingSpace::myAngle
double myAngle
Angle of Parking Space.
Definition: GNEParkingSpace.h:131
GNEParkingSpace::getAttribute
std::string getAttribute(SumoXMLAttr key) const
Definition: GNEParkingSpace.cpp:158
GNEParkingSpace::getCenteringBoundary
Boundary getCenteringBoundary() const
Returns the boundary to which the view shall be centered in order to show the object.
Definition: GNEParkingSpace.cpp:82
GNEParkingSpace::getParentName
std::string getParentName() const
Returns the name of the parent object (if any)
Definition: GNEParkingSpace.cpp:105
GNEUndoList
Definition: GNEUndoList.h:49
GUIVisualizationSettings
Stores the information about how to visualize structures.
Definition: GUIVisualizationSettings.h:346
SumoXMLAttr
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
Definition: SUMOXMLDefinitions.h:373
GNEParkingSpace::isValid
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their conrrespond attribute are valids
Definition: GNEParkingSpace.cpp:208
GNEParkingSpace::moveGeometry
void moveGeometry(const Position &offset)
change the position of the element geometry without saving in undoList
Definition: GNEParkingSpace.cpp:50
GNEParkingSpace::getHierarchyName
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
Definition: GNEParkingSpace.cpp:241