SUMO - Simulation of Urban MObility
GNEClosingLaneReroute.cpp
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 //
16 /****************************************************************************/
17 
18 // ===========================================================================
19 // included modules
20 // ===========================================================================
21 #include <config.h>
22 
23 #include "GNEClosingLaneReroute.h"
28 
29 #include <netedit/GNEUndoList.h>
30 #include <netedit/GNEViewNet.h>
31 #include <netedit/GNENet.h>
32 
33 
34 // ===========================================================================
35 // member method definitions
36 // ===========================================================================
37 
39  GNEAdditional(rerouterIntervalDialog->getEditedAdditional(), rerouterIntervalDialog->getEditedAdditional()->getViewNet(), GLO_REROUTER, SUMO_TAG_CLOSING_LANE_REROUTE, "", false),
40  myClosedLane(rerouterIntervalDialog->getEditedAdditional()->getFirstAdditionalParent()->getEdgeChilds().at(0)->getLanes().at(0)) {
41  // fill closing lane reroute interval with default values
43 }
44 
45 
46 GNEClosingLaneReroute::GNEClosingLaneReroute(GNEAdditional* rerouterIntervalParent, GNELane* closedLane, SVCPermissions permissions) :
47  GNEAdditional(rerouterIntervalParent, rerouterIntervalParent->getViewNet(), GLO_REROUTER, SUMO_TAG_CLOSING_LANE_REROUTE, "", false),
48  myClosedLane(closedLane),
49  myPermissions(permissions) {
50 }
51 
52 
54 
55 
56 void
58  // This additional cannot be moved
59 }
60 
61 
62 void
64  // This additional cannot be moved
65 }
66 
67 
68 void
70  // Currently this additional doesn't own a Geometry
71 }
72 
73 
77 }
78 
79 
80 std::string
83 }
84 
85 
86 void
88  // Currently this additional isn't drawn
89 }
90 
91 
92 std::string
94  switch (key) {
95  case SUMO_ATTR_ID:
96  return getAdditionalID();
97  case SUMO_ATTR_LANE:
98  return myClosedLane->getID();
99  case SUMO_ATTR_ALLOW:
101  case SUMO_ATTR_DISALLOW:
103  case GNE_ATTR_PARENT:
104  return myFirstAdditionalParent->getID();
105  case GNE_ATTR_GENERIC:
106  return getGenericParametersStr();
107  default:
108  throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
109  }
110 }
111 
112 
113 void
114 GNEClosingLaneReroute::setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList) {
115  if (value == getAttribute(key)) {
116  return; //avoid needless changes, later logic relies on the fact that attributes have changed
117  }
118  switch (key) {
119  case SUMO_ATTR_ID:
120  case SUMO_ATTR_LANE:
121  case SUMO_ATTR_ALLOW:
122  case SUMO_ATTR_DISALLOW:
123  case GNE_ATTR_GENERIC:
124  undoList->p_add(new GNEChange_Attribute(this, key, value));
125  break;
126  default:
127  throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
128  }
129 }
130 
131 
132 bool
133 GNEClosingLaneReroute::isValid(SumoXMLAttr key, const std::string& value) {
134  switch (key) {
135  case SUMO_ATTR_ID:
136  return isValidAdditionalID(value);
137  case SUMO_ATTR_LANE:
138  return (myViewNet->getNet()->retrieveLane(value, false) != nullptr);
139  case SUMO_ATTR_ALLOW:
140  case SUMO_ATTR_DISALLOW:
141  return canParseVehicleClasses(value);
142  case GNE_ATTR_GENERIC:
143  return isGenericParametersValid(value);
144  default:
145  throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
146  }
147 }
148 
149 
150 std::string
152  return getTagStr();
153 }
154 
155 
156 std::string
158  return getTagStr() + ": " + myClosedLane->getID();
159 }
160 
161 // ===========================================================================
162 // private
163 // ===========================================================================
164 
165 void
166 GNEClosingLaneReroute::setAttribute(SumoXMLAttr key, const std::string& value) {
167  switch (key) {
168  case SUMO_ATTR_ID:
169  changeAdditionalID(value);
170  break;
171  case SUMO_ATTR_LANE:
173  break;
174  case SUMO_ATTR_ALLOW:
176  break;
177  case SUMO_ATTR_DISALLOW:
179  break;
180  case GNE_ATTR_GENERIC:
182  break;
183  default:
184  throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
185  }
186 }
187 
188 /****************************************************************************/
std::string getVehicleClassNames(SVCPermissions permissions, bool expand)
Returns the ids of the given classes, divided using a &#39; &#39;.
Dialog for edit rerouter intervals.
void setGenericParametersStr(const std::string &value)
set generic parameters in string format
const std::string & getAdditionalID() const
returns Additional ID
lane of a reroute of type closing
Stores the information about how to visualize structures.
int SVCPermissions
bitset where each bit declares whether a certain SVC may use this edge/lane
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.
void setDefaultValues()
change all attributes of additional with their default values (note: this cannot be undo) ...
void changeAdditionalID(const std::string &newID)
change ID of additional
generic attribute
SVCPermissions invertPermissions(SVCPermissions permissions)
negate the given permissions and ensure that only relevant bits are set
GNEViewNet * myViewNet
The GNEViewNet this additional element belongs.
void p_add(GNEChange_Attribute *cmd)
special method, avoid empty changes, always execute
void commitGeometryMoving(GNEUndoList *undoList)
commit geometry changes in the attributes of an element after use of moveGeometry(...)
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition: ToString.h:49
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:39
static bool isGenericParametersValid(const std::string &value)
check if given string can be parsed to a map/list of generic parameters
std::string getAttribute(SumoXMLAttr key) const
void updateGeometry(bool updateGrid)
update pre-computed geometry information
friend class GNEChange_Attribute
declare friend class
void moveGeometry(const Position &offset)
change the position of the element geometry without saving in undoList
SVCPermissions parseVehicleClasses(const std::string &allowedS)
Parses the given definition of allowed vehicle classes into the given containers Deprecated classes g...
a Rerouter
const std::string getID() const
function to support debugging
GNELane * myClosedLane
closed lane
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their conrrespond attribute are valids
Position getPositionInView() const
Returns position of additional in view.
bool canParseVehicleClasses(const std::string &classes)
Checks whether the given string contains only known vehicle classes.
GNEViewNet * getViewNet() const
Returns a pointer to GNEViewNet in which additional element is located.
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
An Element which don&#39;t belongs to GNENet but has influency in the simulation.
Definition: GNEAdditional.h:48
const std::string & getTagStr() const
get tag assigned to this object in string format
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
std::string getGenericParametersStr() const
return generic parameters in string format
GNENet * getNet() const
get the net object
bool isValidAdditionalID(const std::string &newID) const
check if a new additional ID is valid
parent of an additional element
GNELane * retrieveLane(const std::string &id, bool failHard=true, bool checkVolatileChange=false)
get lane by id
Definition: GNENet.cpp:1059
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes ...
std::string getParentName() const
Returns the name of the parent object.
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
GNEClosingLaneReroute(GNERerouterIntervalDialog *rerouterIntervalDialog)
constructor (Used in GNERerouterIntervalDialog)
GNEAdditional * myFirstAdditionalParent
pointer to first Additional parent
virtual Position getPositionInView() const =0
Returns position of additional in view.