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 /****************************************************************************/
10 /// @file    GNEParkingAreaReroute.cpp
11 /// @author  Jakob Erdmann
12 /// @date    May 2018
13 /// @version $Id$
14 ///
15 //
16 /****************************************************************************/
17 
18 // ===========================================================================
19 // included modules
20 // ===========================================================================
21 #include <config.h>
22 
23 #include <netedit/dialogs/GNERerouterIntervalDialog.h>
24 #include <netedit/changes/GNEChange_Attribute.h>
25 
26 #include "GNEParkingAreaReroute.h"
27 #include <netedit/GNEUndoList.h>
28 #include <netedit/GNEViewNet.h>
29 #include <netedit/GNENet.h>
30 
31 // ===========================================================================
32 // member method definitions
33 // ===========================================================================
34 
GNEParkingAreaReroute(GNERerouterIntervalDialog * rerouterIntervalDialog)35 GNEParkingAreaReroute::GNEParkingAreaReroute(GNERerouterIntervalDialog* rerouterIntervalDialog) :
36     GNEAdditional(rerouterIntervalDialog->getEditedAdditional(), rerouterIntervalDialog->getEditedAdditional()->getViewNet(), GLO_REROUTER, SUMO_TAG_PARKING_ZONE_REROUTE, "", false,
37 {}, {}, {}, {rerouterIntervalDialog->getEditedAdditional(), rerouterIntervalDialog->getEditedAdditional()->getViewNet()->getNet()->getAdditionalByType(SUMO_TAG_PARKING_AREA).begin()->second}, {}, {}, {}, {}, {}, {}) {
38     // fill route type with default values
39     setDefaultValues();
40 }
41 
42 
GNEParkingAreaReroute(GNEAdditional * rerouterIntervalParent,GNEAdditional * newParkingArea,double probability,bool visible)43 GNEParkingAreaReroute::GNEParkingAreaReroute(GNEAdditional* rerouterIntervalParent, GNEAdditional* newParkingArea, double probability, bool visible):
44     GNEAdditional(rerouterIntervalParent, rerouterIntervalParent->getViewNet(), GLO_REROUTER, SUMO_TAG_PARKING_ZONE_REROUTE, "", false,
45 {}, {}, {}, {rerouterIntervalParent, newParkingArea}, {}, {}, {}, {}, {}, {}),
46 myProbability(probability),
47 myVisible(visible) {
48 }
49 
50 
~GNEParkingAreaReroute()51 GNEParkingAreaReroute::~GNEParkingAreaReroute() {}
52 
53 
54 void
moveGeometry(const Position &)55 GNEParkingAreaReroute::moveGeometry(const Position&) {
56     // This additional cannot be moved
57 }
58 
59 
60 void
commitGeometryMoving(GNEUndoList *)61 GNEParkingAreaReroute::commitGeometryMoving(GNEUndoList*) {
62     // This additional cannot be moved
63 }
64 
65 
66 void
updateGeometry(bool)67 GNEParkingAreaReroute::updateGeometry(bool /*updateGrid*/) {
68     // Currently this additional doesn't own a Geometry
69 }
70 
71 
72 Position
getPositionInView() const73 GNEParkingAreaReroute::getPositionInView() const {
74     return getAdditionalParents().at(0)->getPositionInView();
75 }
76 
77 
78 std::string
getParentName() const79 GNEParkingAreaReroute::getParentName() const {
80     return getAdditionalParents().at(0)->getID();
81 }
82 
83 
84 void
drawGL(const GUIVisualizationSettings &) const85 GNEParkingAreaReroute::drawGL(const GUIVisualizationSettings& /* s */) const {
86     // Currently this additional isn't drawn
87 }
88 
89 
90 std::string
getAttribute(SumoXMLAttr key) const91 GNEParkingAreaReroute::getAttribute(SumoXMLAttr key) const {
92     switch (key) {
93         case SUMO_ATTR_ID:
94             return getAdditionalID();
95         case SUMO_ATTR_PARKING:
96             return getAdditionalParents().at(1)->getID();
97         case SUMO_ATTR_PROB:
98             return toString(myProbability);
99         case SUMO_ATTR_VISIBLE:
100             return toString(myVisible);
101         case GNE_ATTR_PARENT:
102             return toString(getAdditionalParents().at(0)->getID());
103         case GNE_ATTR_GENERIC:
104             return getGenericParametersStr();
105         default:
106             throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
107     }
108 }
109 
110 
111 void
setAttribute(SumoXMLAttr key,const std::string & value,GNEUndoList * undoList)112 GNEParkingAreaReroute::setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList) {
113     if (value == getAttribute(key)) {
114         return; //avoid needless changes, later logic relies on the fact that attributes have changed
115     }
116     switch (key) {
117         case SUMO_ATTR_ID:
118         case SUMO_ATTR_PARKING:
119         case SUMO_ATTR_PROB:
120         case SUMO_ATTR_VISIBLE:
121         case GNE_ATTR_GENERIC:
122             undoList->p_add(new GNEChange_Attribute(this, myViewNet->getNet(), key, value));
123             break;
124         default:
125             throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
126     }
127 }
128 
129 
130 bool
isValid(SumoXMLAttr key,const std::string & value)131 GNEParkingAreaReroute::isValid(SumoXMLAttr key, const std::string& value) {
132     switch (key) {
133         case SUMO_ATTR_ID:
134             return isValidAdditionalID(value);
135         case SUMO_ATTR_PARKING:
136             return isValidAdditionalID(value) && (myViewNet->getNet()->retrieveAdditional(SUMO_TAG_PARKING_AREA, value, false) != nullptr);
137         case SUMO_ATTR_PROB:
138             return canParse<double>(value) && parse<double>(value) >= 0 && parse<double>(value) <= 1;
139         case SUMO_ATTR_VISIBLE:
140             return canParse<bool>(value);
141         case GNE_ATTR_GENERIC:
142             return isGenericParametersValid(value);
143         default:
144             throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
145     }
146 }
147 
148 
149 std::string
getPopUpID() const150 GNEParkingAreaReroute::getPopUpID() const {
151     return getTagStr();
152 }
153 
154 
155 std::string
getHierarchyName() const156 GNEParkingAreaReroute::getHierarchyName() const {
157     return getTagStr() + ": " + getAdditionalParents().at(1)->getID();
158 }
159 
160 // ===========================================================================
161 // private
162 // ===========================================================================
163 
164 void
setAttribute(SumoXMLAttr key,const std::string & value)165 GNEParkingAreaReroute::setAttribute(SumoXMLAttr key, const std::string& value) {
166     switch (key) {
167         case SUMO_ATTR_ID:
168             changeAdditionalID(value);
169             break;
170         case SUMO_ATTR_PARKING:
171             changeAdditionalParent(this, value, 1);
172             break;
173         case SUMO_ATTR_PROB:
174             myProbability = parse<double>(value);
175             break;
176         case SUMO_ATTR_VISIBLE:
177             myVisible = parse<bool>(value);
178             break;
179         case GNE_ATTR_GENERIC:
180             setGenericParametersStr(value);
181             break;
182         default:
183             throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
184     }
185     // check if updated attribute requieres update geometry
186     if (myTagProperty.hasAttribute(key) && myTagProperty.getAttributeProperties(key).requiereUpdateGeometry()) {
187         updateGeometry(true);
188     }
189 }
190 
191 /****************************************************************************/
192