Eclipse 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-2022 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//
19/****************************************************************************/
20#include <config.h>
21
23#include <netedit/GNEUndoList.h>
24#include <netedit/GNENet.h>
25
26#include "GNERouteProbReroute.h"
27
28// ===========================================================================
29// member method definitions
30// ===========================================================================
31
34 GUIIconSubSys::getIcon(GUIIcon::ROUTEPROBREROUTE), "", {}, {}, {}, {}, {}, {}),
35myProbability(0) {
36 // reset default values
38}
39
40
41GNERouteProbReroute::GNERouteProbReroute(GNEAdditional* rerouterIntervalParent, GNEDemandElement* route, double probability) :
43 GUIIconSubSys::getIcon(GUIIcon::ROUTEPROBREROUTE), "", {}, {}, {}, {rerouterIntervalParent}, {route}, {}),
44myProbability(probability) {
45 // update boundary of rerouter parent
46 rerouterIntervalParent->getParentAdditionals().front()->updateCenteringBoundary(true);
47}
48
49
51
52
53void
58 device.closeTag();
59}
60
61
64 // GNERouteProbReroutes cannot be moved
65 return nullptr;
66}
67
68
69void
71 // update centering boundary (needed for centering)
73}
74
75
76void
81}
82
83
86 // get rerouter parent position
87 Position signPosition = getParentAdditionals().front()->getParentAdditionals().front()->getPositionInView();
88 // set position depending of indexes
89 signPosition.add(4.5 + 6.25, (getDrawPositionIndex() * -1) - getParentAdditionals().front()->getDrawPositionIndex() + 1, 0);
90 // return signPosition
91 return signPosition;
92}
93
94
95void
96GNERouteProbReroute::splitEdgeGeometry(const double /*splitPosition*/, const GNENetworkElement* /*originalElement*/, const GNENetworkElement* /*newElement*/, GNEUndoList* /*undoList*/) {
97 // geometry of this element cannot be splitted
98}
99
100
101std::string
103 return getParentAdditionals().at(0)->getID();
104}
105
106
107void
109 // draw route prob reroute as listed attribute
114}
115
116
117std::string
119 switch (key) {
120 case SUMO_ATTR_ID:
121 return getMicrosimID();
122 case SUMO_ATTR_ROUTE:
123 return getParentDemandElements().front()->getID();
124 case SUMO_ATTR_PROB:
125 return toString(myProbability);
126 case GNE_ATTR_PARENT:
127 return getParentAdditionals().at(0)->getID();
130 default:
131 throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
132 }
133}
134
135
136double
138 throw InvalidArgument(getTagStr() + " doesn't have a double attribute of type '" + toString(key) + "'");
139}
140
141
144 return PARAMETERS_EMPTY;
145}
146
147
148void
149GNERouteProbReroute::setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList) {
150 if (value == getAttribute(key)) {
151 return; //avoid needless changes, later logic relies on the fact that attributes have changed
152 }
153 switch (key) {
154 case SUMO_ATTR_ID:
155 case SUMO_ATTR_ROUTE:
156 case SUMO_ATTR_PROB:
158 undoList->changeAttribute(new GNEChange_Attribute(this, key, value));
159 break;
160 default:
161 throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
162 }
163}
164
165
166bool
167GNERouteProbReroute::isValid(SumoXMLAttr key, const std::string& value) {
168 switch (key) {
169 case SUMO_ATTR_ID:
170 return isValidAdditionalID(value);
171 case SUMO_ATTR_ROUTE:
172 return (myNet->getAttributeCarriers()->retrieveDemandElement(SUMO_TAG_ROUTE, value, false) != nullptr);
173 case SUMO_ATTR_PROB:
174 return canParse<double>(value);
176 return canParse<bool>(value);
177 default:
178 throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
179 }
180}
181
182
183std::string
185 return getTagStr();
186}
187
188
189std::string
191 return getTagStr() + ": " + getParentDemandElements().front()->getID();
192}
193
194// ===========================================================================
195// private
196// ===========================================================================
197
198void
199GNERouteProbReroute::setAttribute(SumoXMLAttr key, const std::string& value) {
200 switch (key) {
201 case SUMO_ATTR_ID:
202 // update microsimID
203 setMicrosimID(value);
204 break;
205 case SUMO_ATTR_ROUTE:
207 break;
208 case SUMO_ATTR_PROB:
209 myProbability = parse<double>(value);
210 break;
212 if (parse<bool>(value)) {
214 } else {
216 }
217 break;
218 default:
219 throw InvalidArgument(getTagStr() + " doesn't have an attribute of type '" + toString(key) + "'");
220 }
221}
222
223
224void
226 // nothing to do
227}
228
229
230void GNERouteProbReroute::commitMoveShape(const GNEMoveResult& /*moveResult*/, GNEUndoList* /*undoList*/) {
231 // nothing to do
232}
233
234
235/****************************************************************************/
@ GLO_REROUTER_ROUTEPROBREROUTE
a route probability reroute
GUIIcon
An enumeration of icons used by the gui applications.
Definition: GUIIcons.h:33
@ ROUTEPROBREROUTE
@ REROUTER_ROUTEPROBREROUTE
@ SUMO_TAG_ROUTE_PROB_REROUTE
probability of route of a reroute
@ SUMO_TAG_ROUTE
begin/end of the description of a route
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
@ GNE_ATTR_PARENT
parent of an additional element
@ GNE_ATTR_SELECTED
element is selected
@ SUMO_ATTR_PROB
@ SUMO_ATTR_ROUTE
@ SUMO_ATTR_ID
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition: ToString.h:46
void add(double x, double y, double z=0)
Makes the boundary include the given coordinate.
Definition: Boundary.cpp:78
void reset()
Resets the boundary.
Definition: Boundary.cpp:66
Boundary & grow(double by)
extends the boundary by the given amount
Definition: Boundary.cpp:300
An Element which don't belong to GNENet but has influence in the simulation.
Definition: GNEAdditional.h:48
void drawListedAddtional(const GUIVisualizationSettings &s, const Position &parentPosition, const double offsetX, const double extraOffsetY, const RGBColor baseCol, const RGBColor textCol, GUITexture texture, const std::string text) const
draw listed additional
int getDrawPositionIndex() const
get draw position index (used in rerouters and VSS)
Boundary myAdditionalBoundary
Additional Boundary.
void replaceDemandElementParent(SumoXMLTag tag, const std::string &value, const int parentIndex)
replace demand element parent
bool isValidAdditionalID(const std::string &newID) const
check if a new additional ID is valid
bool isAttributeCarrierSelected() const
check if attribute carrier is selected
friend class GNEChange_Attribute
declare friend class
const std::string & getTagStr() const
get tag assigned to this object in string format
void unselectAttributeCarrier(const bool changeFlag=true)
unselect attribute carrier using GUIGlobalSelection
static const Parameterised::Map PARAMETERS_EMPTY
empty parameter maps (used by ACs without parameters)
void resetDefaultValues()
reset attribute carrier to their default values
GNENet * myNet
pointer to net
void selectAttributeCarrier(const bool changeFlag=true)
select attribute carrier using GUIGlobalSelection
An Element which don't belong to GNENet but has influence in the simulation.
const std::vector< GNEDemandElement * > & getParentDemandElements() const
get parent demand elements
const std::vector< GNEAdditional * > & getParentAdditionals() const
get parent additionals
move operation
move result
GNEDemandElement * retrieveDemandElement(SumoXMLTag type, const std::string &id, bool hardFail=true) const
Returns the named demand element.
A NBNetBuilder extended by visualisation and editing capabilities.
Definition: GNENet.h:42
GNENetHelper::AttributeCarriers * getAttributeCarriers() const
get all attribute carriers used in this net
Definition: GNENet.cpp:132
double myProbability
probability with which a vehicle will use the given edge as destination
void setMoveShape(const GNEMoveResult &moveResult)
set move shape
void splitEdgeGeometry(const double splitPosition, const GNENetworkElement *originalElement, const GNENetworkElement *newElement, GNEUndoList *undoList)
split geometry
void updateCenteringBoundary(const bool updateGrid)
update centering boundary (implies change in RTREE)
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
const Parameterised::Map & getACParametersMap() const
get parameters map
std::string getParentName() const
Returns the name of the parent object.
GNERouteProbReroute(GNENet *net)
default constructor
void updateGeometry()
update pre-computed geometry information
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
GNEMoveOperation * getMoveOperation()
get move operation
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 writeAdditional(OutputDevice &device) const
write additional element into a xml file
double getAttributeDouble(SumoXMLAttr key) const
void commitMoveShape(const GNEMoveResult &moveResult, GNEUndoList *undoList)
commit move shape
Position getPositionInView() const
Returns position of additional in view.
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their correspondent attribute are valids
void changeAttribute(GNEChange_Attribute *change)
special method for change attributes, avoid empty changes, always execute
const std::string & getMicrosimID() const
Returns the id of the object as known to microsim.
Definition: GUIGlObject.h:141
virtual void setMicrosimID(const std::string &newID)
Changes the microsimID of the object.
Stores the information about how to visualize structures.
Static storage of an output device and its base (abstract) implementation.
Definition: OutputDevice.h:61
OutputDevice & writeAttr(const SumoXMLAttr attr, const T &val)
writes a named attribute
Definition: OutputDevice.h:251
OutputDevice & openTag(const std::string &xmlElement)
Opens an XML tag.
bool closeTag(const std::string &comment="")
Closes the most recently opened tag and optionally adds a comment.
std::map< std::string, std::string > Map
parameters map
Definition: Parameterised.h:45
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:37
void add(const Position &pos)
Adds the given position to this one.
Definition: Position.h:125
static const RGBColor YELLOW
Definition: RGBColor.h:188
static const RGBColor RED
named colors
Definition: RGBColor.h:185