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-2020 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials are made available under the
5 // terms of the Eclipse Public License 2.0 which is available at
6 // https://www.eclipse.org/legal/epl-2.0/
7 // This Source Code may also be made available under the following Secondary
8 // Licenses when the conditions for such availability set forth in the Eclipse
9 // Public License 2.0 are satisfied: GNU General Public License, version 2
10 // or later which is available at
11 // https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12 // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13 /****************************************************************************/
18 // A class for visualizing ParkingSpace geometry (adapted from GUILaneWrapper)
19 /****************************************************************************/
20 #pragma once
21 #include "GNEAdditional.h"
22 
23 // ===========================================================================
24 // class declarations
25 // ===========================================================================
26 class GNEParkingArea;
27 
28 // ===========================================================================
29 // class definitions
30 // ===========================================================================
31 
37 
38 public:
48  GNEParkingSpace(GNENet* net, GNEAdditional* parkingAreaParent, const Position& pos, double width, double length, double angle, bool blockMovement);
49 
52 
56  GNEMoveOperation* getMoveOperation(const double shapeOffset);
57 
61  void updateGeometry();
62 
64  void updateCenteringBoundary(const bool updateGrid);
65 
67  void splitEdgeGeometry(const double splitPosition, const GNENetworkElement* originalElement, const GNENetworkElement* newElement, GNEUndoList* undoList);
69 
74  std::string getParentName() const;
75 
80  void drawGL(const GUIVisualizationSettings& s) const;
82 
85  /* @brief method for getting the Attribute of an XML key
86  * @param[in] key The attribute key
87  * @return string with the value associated to key
88  */
89  std::string getAttribute(SumoXMLAttr key) const;
90 
91  /* @brief method for getting the Attribute of an XML key in double format (to avoid unnecessary parse<double>(...) for certain attributes)
92  * @param[in] key The attribute key
93  * @return double with the value associated to key
94  */
95  double getAttributeDouble(SumoXMLAttr key) const;
96 
97  /* @brief method for setting the attribute and letting the object perform additional changes
98  * @param[in] key The attribute key
99  * @param[in] value The new value
100  * @param[in] undoList The undoList on which to register changes
101  */
102  void setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList);
103 
104  /* @brief method for checking if the key and their correspond attribute are valids
105  * @param[in] key The attribute key
106  * @param[in] value The value asociated to key key
107  * @return true if the value is valid, false in other case
108  */
109  bool isValid(SumoXMLAttr key, const std::string& value);
110 
111  /* @brief method for check if the value for certain attribute is set
112  * @param[in] key The attribute key
113  */
114  bool isAttributeEnabled(SumoXMLAttr key) const;
115 
117  std::string getPopUpID() const;
118 
120  std::string getHierarchyName() const;
122 
123 protected:
126 
128  double myWidth;
129 
131  double myLength;
132 
134  double myAngle;
135 
136 private:
138  void setAttribute(SumoXMLAttr key, const std::string& value);
139 
141  void setMoveShape(const GNEMoveResult& moveResult);
142 
144  void commitMoveShape(const GNEMoveResult& moveResult, GNEUndoList* undoList);
145 
148 
151 };
152 
153 
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
An Element which don't belongs to GNENet but has influency in the simulation.
Definition: GNEAdditional.h:47
move operation
move result
A NBNetBuilder extended by visualisation and editing capabilities.
Definition: GNENet.h:40
A lane area vehicles can park at (netedit-version)
vehicle space used by GNEParkingAreas
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
GNEParkingSpace(GNENet *net, GNEAdditional *parkingAreaParent, const Position &pos, double width, double length, double angle, bool blockMovement)
Constructor.
void setMoveShape(const GNEMoveResult &moveResult)
set move shape
double getAttributeDouble(SumoXMLAttr key) const
std::string getAttribute(SumoXMLAttr key) const
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes
void splitEdgeGeometry(const double splitPosition, const GNENetworkElement *originalElement, const GNENetworkElement *newElement, GNEUndoList *undoList)
split geometry
Position myPosition
position of Parking Space in view
GNEParkingSpace & operator=(const GNEParkingSpace &)=delete
Invalidated assignment operator.
GNEMoveOperation * getMoveOperation(const double shapeOffset)
get move operation for the given shapeOffset
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their conrrespond attribute are valids
double myWidth
width of Parking Space
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
~GNEParkingSpace()
Destructor.
std::string getParentName() const
Returns the name of the parent object (if any)
void commitMoveShape(const GNEMoveResult &moveResult, GNEUndoList *undoList)
commit move shape
bool isAttributeEnabled(SumoXMLAttr key) const
void updateCenteringBoundary(const bool updateGrid)
update centering boundary (implies change in RTREE)
double myLength
Length of Parking Space.
double myAngle
Angle of Parking Space.
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
GNEParkingSpace(const GNEParkingSpace &)=delete
Invalidated copy constructor.
void updateGeometry()
update pre-computed geometry information
Stores the information about how to visualize structures.
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:36