SUMO - Simulation of Urban MObility
GNERouteProbReroute.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 
25 #include <netedit/GNEUndoList.h>
26 #include <netedit/GNEViewNet.h>
27 #include <netedit/GNENet.h>
28 
29 #include "GNERouteProbReroute.h"
30 
31 // ===========================================================================
32 // member method definitions
33 // ===========================================================================
34 
36  GNEAdditional(rerouterIntervalDialog->getEditedAdditional(), rerouterIntervalDialog->getEditedAdditional()->getViewNet(), GLO_REROUTER, SUMO_TAG_ROUTE_PROB_REROUTE, "", false) {
37  // if exist a reroute, set newRoute ID
38  if (rerouterIntervalDialog->getEditedAdditional()->getViewNet()->getNet()->getAdditionalByType(SUMO_TAG_ROUTE).size() > 0) {
39  myNewRouteId = rerouterIntervalDialog->getEditedAdditional()->getViewNet()->getNet()->getAdditionalByType(SUMO_TAG_ROUTE).begin()->first;
40  }
41  // fill route prob reroute interval with default values
43 }
44 
45 
46 GNERouteProbReroute::GNERouteProbReroute(GNEAdditional* rerouterIntervalParent, const std::string& newRouteId, double probability) :
47  GNEAdditional(rerouterIntervalParent, rerouterIntervalParent->getViewNet(), GLO_REROUTER, SUMO_TAG_ROUTE_PROB_REROUTE, "", false),
48  myNewRouteId(newRouteId),
49  myProbability(probability) {
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_ROUTE:
98  return myNewRouteId;
99  case SUMO_ATTR_PROB:
100  return toString(myProbability);
101  case GNE_ATTR_PARENT:
102  return myFirstAdditionalParent->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
112 GNERouteProbReroute::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_ROUTE:
119  case SUMO_ATTR_PROB:
120  case GNE_ATTR_GENERIC:
121  undoList->p_add(new GNEChange_Attribute(this, key, value));
122  break;
123  default:
124  throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
125  }
126 }
127 
128 
129 bool
130 GNERouteProbReroute::isValid(SumoXMLAttr key, const std::string& value) {
131  switch (key) {
132  case SUMO_ATTR_ID:
133  return isValidAdditionalID(value);
134  case SUMO_ATTR_ROUTE:
136  case SUMO_ATTR_PROB:
137  return canParse<double>(value);
138  case GNE_ATTR_GENERIC:
139  return isGenericParametersValid(value);
140  default:
141  throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
142  }
143 }
144 
145 
146 std::string
148  return getTagStr();
149 }
150 
151 
152 std::string
154  return getTagStr() + ": " + myNewRouteId;
155 }
156 
157 // ===========================================================================
158 // private
159 // ===========================================================================
160 
161 void
162 GNERouteProbReroute::setAttribute(SumoXMLAttr key, const std::string& value) {
163  switch (key) {
164  case SUMO_ATTR_ID:
165  changeAdditionalID(value);
166  break;
167  case SUMO_ATTR_ROUTE:
168  myNewRouteId = value;
169  break;
170  case SUMO_ATTR_PROB:
171  myProbability = parse<double>(value);
172  break;
173  case GNE_ATTR_GENERIC:
175  break;
176  default:
177  throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
178  }
179 }
180 
181 /****************************************************************************/
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
Position getPositionInView() const
Returns position of additional in view.
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
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
Stores the information about how to visualize structures.
std::string myNewRouteId
id of new route
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
void setDefaultValues()
change all attributes of additional with their default values (note: this cannot be undo) ...
double myProbability
probability with which a vehicle will use the given edge as destination
void moveGeometry(const Position &offset)
change the position of the element geometry without saving in undoList
void changeAdditionalID(const std::string &newID)
change ID of additional
generic attribute
begin/end of the description of a route
void p_add(GNEChange_Attribute *cmd)
special method, avoid empty changes, always execute
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition: ToString.h:49
void commitGeometryMoving(GNEUndoList *undoList)
commit geometry changes in the attributes of an element after use of moveGeometry(...)
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:39
std::string getAttribute(SumoXMLAttr key) const
static bool isGenericParametersValid(const std::string &value)
check if given string can be parsed to a map/list of generic parameters
~GNERouteProbReroute()
destructor
friend class GNEChange_Attribute
declare friend class
std::string getParentName() const
Returns the name of the parent object.
probability of route of a reroute
a Rerouter
const std::string getID() const
function to support debugging
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
GNEViewNet * getViewNet() const
Returns a pointer to GNEViewNet in which additional element is located.
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
GNERouteProbReroute(GNERerouterIntervalDialog *rerouterIntervalDialog)
constructor (Used in GNERerouterIntervalDialog)
std::string getGenericParametersStr() const
return generic parameters in string format
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their conrrespond attribute are valids
GNENet * getNet() const
get the net object
GNEAdditional * getEditedAdditional() const
get edited Additional
const std::map< std::string, GNEAdditional * > & getAdditionalByType(SumoXMLTag type) const
get map with IDs and pointers to additionals
Definition: GNENet.cpp:1812
void updateGeometry(bool updateGrid)
update pre-computed geometry information
bool isValidAdditionalID(const std::string &newID) const
check if a new additional ID is valid
parent of an additional element
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes ...
static bool isValidVehicleID(const std::string &value)
whether the given string is a valid id for a vehicle or flow
GNEAdditional * myFirstAdditionalParent
pointer to first Additional parent
virtual Position getPositionInView() const =0
Returns position of additional in view.