Eclipse SUMO - Simulation of Urban MObility
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GNEPlanParents.cpp
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2001-2025 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// Builds demand objects for netedit
19/****************************************************************************/
20
21#include <netedit/GNENet.h>
22#include <netedit/GNEUndoList.h>
23#include <netedit/GNEViewNet.h>
30
31#include "GNEContainer.h"
32#include "GNEPerson.h"
33#include "GNEPersonTrip.h"
34#include "GNERide.h"
35#include "GNERoute.h"
37#include "GNEPlanParents.h"
38#include "GNEStop.h"
39#include "GNETranship.h"
40#include "GNETransport.h"
41#include "GNEVehicle.h"
42#include "GNEVType.h"
44#include "GNEWalk.h"
45#include "GNEStopPlan.h"
46
47// ===========================================================================
48// member method definitions
49// ===========================================================================
50
52
53
56 // edges
57 fromEdge = ACs->retrieveEdge(planParameters.fromEdge, false);
58 toEdge = ACs->retrieveEdge(planParameters.toEdge, false);
59 for (const auto& edgeID : planParameters.consecutiveEdges) {
60 auto parsedEdge = ACs->retrieveEdge(edgeID, false);
61 // avoid null and consecutive dulicated edges
62 if (parsedEdge && (consecutiveEdges.empty() || (consecutiveEdges.back() != parsedEdge))) {
63 consecutiveEdges.push_back(parsedEdge);
64 }
65 }
66 // junctions
67 fromJunction = ACs->retrieveJunction(planParameters.fromJunction, false);
68 toJunction = ACs->retrieveJunction(planParameters.toJunction, false);
69 // TAZs
70 fromTAZ = ACs->retrieveAdditional(SUMO_TAG_TAZ, planParameters.fromTAZ, false);
71 toTAZ = ACs->retrieveAdditional(SUMO_TAG_TAZ, planParameters.toTAZ, false);
72 // bus stops
73 if (fromStoppingPlace == nullptr) {
75 }
76 if (toStoppingPlace == nullptr) {
78 }
79 // train stops
80 if (fromStoppingPlace == nullptr) {
82 }
83 if (toStoppingPlace == nullptr) {
85 }
86 // container stops
87 if (fromStoppingPlace == nullptr) {
89 }
90 if (toStoppingPlace == nullptr) {
92 }
93 // charging station
94 if (fromStoppingPlace == nullptr) {
96 }
97 if (toStoppingPlace == nullptr) {
99 }
100 // parking area
101 if (fromStoppingPlace == nullptr) {
103 }
104 if (toStoppingPlace == nullptr) {
106 }
107 // routes
108 fromRoute = ACs->retrieveDemandElement(SUMO_TAG_ROUTE, planParameters.fromRoute, false);
109 toRoute = ACs->retrieveDemandElement(SUMO_TAG_ROUTE, planParameters.toRoute, false);
110}
111
112
113bool
115 if (!planParameters.fromEdge.empty() && !fromEdge) {
116 WRITE_WARNING(TLF("Invalid from edge '%' used in % of % '%'", planParameters.fromEdge, toString(planTag), parent->getTagStr(), parent->getID()));
117 return false;
118 } else if (!planParameters.toEdge.empty() && !toEdge) {
119 WRITE_WARNING(TLF("Invalid to edge '%' used in % of % '%'", planParameters.toEdge, toString(planTag), parent->getTagStr(), parent->getID()));
120 return false;
121 } else if (!planParameters.fromJunction.empty() && !fromJunction) {
122 WRITE_WARNING(TLF("Invalid from junction '%' used in % of % '%'", planParameters.fromJunction, toString(planTag), parent->getTagStr(), parent->getID()));
123 return false;
124 } else if (!planParameters.toJunction.empty() && !toJunction) {
125 WRITE_WARNING(TLF("Invalid to junction '%' used in % of % '%'", planParameters.toJunction, toString(planTag), parent->getTagStr(), parent->getID()));
126 return false;
127 } else if (!planParameters.fromTAZ.empty() && !fromTAZ) {
128 WRITE_WARNING(TLF("Invalid from TAZ '%' used in % of % '%'", planParameters.fromTAZ, toString(planTag), parent->getTagStr(), parent->getID()));
129 return false;
130 } else if (!planParameters.toTAZ.empty() && !toTAZ) {
131 WRITE_WARNING(TLF("Invalid to TAZ '%' used in % of % '%'", planParameters.toTAZ, toString(planTag), parent->getTagStr(), parent->getID()));
132 return false;
133 } else if (!planParameters.fromBusStop.empty() && !fromStoppingPlace) {
134 WRITE_WARNING(TLF("Invalid from bus stop '%' used in % of % '%'", planParameters.fromBusStop, toString(planTag), parent->getTagStr(), parent->getID()));
135 return false;
136 } else if (!planParameters.fromTrainStop.empty() && !fromStoppingPlace) {
137 WRITE_WARNING(TLF("Invalid from train stop '%' used in % of % '%'", planParameters.fromTrainStop, toString(planTag), parent->getTagStr(), parent->getID()));
138 return false;
139 } else if (!planParameters.fromContainerStop.empty() && !fromStoppingPlace) {
140 WRITE_WARNING(TLF("Invalid from container stop '%' used in % of % '%'", planParameters.fromContainerStop, toString(planTag), parent->getTagStr(), parent->getID()));
141 return false;
142 } else if (!planParameters.fromChargingStation.empty() && !fromStoppingPlace) {
143 WRITE_WARNING(TLF("Invalid from charging station '%' used in % of % '%'", planParameters.fromChargingStation, toString(planTag), parent->getTagStr(), parent->getID()));
144 return false;
145 } else if (!planParameters.fromParkingArea.empty() && !fromStoppingPlace) {
146 WRITE_WARNING(TLF("Invalid from parking area '%' used in % of % '%'", planParameters.fromParkingArea, toString(planTag), parent->getTagStr(), parent->getID()));
147 return false;
148 } else if (!planParameters.toBusStop.empty() && !toStoppingPlace) {
149 WRITE_WARNING(TLF("Invalid to bus stop '%' used in % of % '%'", planParameters.toBusStop, toString(planTag), parent->getTagStr(), parent->getID()));
150 return false;
151 } else if (!planParameters.toTrainStop.empty() && !toStoppingPlace) {
152 WRITE_WARNING(TLF("Invalid to train stop '%' used in % of % '%'", planParameters.toTrainStop, toString(planTag), parent->getTagStr(), parent->getID()));
153 return false;
154 } else if (!planParameters.toContainerStop.empty() && !toStoppingPlace) {
155 WRITE_WARNING(TLF("Invalid to container stop '%' used in % of % '%'", planParameters.toContainerStop, toString(planTag), parent->getTagStr(), parent->getID()));
156 return false;
157 } else if (!planParameters.toChargingStation.empty() && !toStoppingPlace) {
158 WRITE_WARNING(TLF("Invalid to charging station '%' used in % of % '%'", planParameters.toChargingStation, toString(planTag), parent->getTagStr(), parent->getID()));
159 return false;
160 } else if (!planParameters.toParkingArea.empty() && !toStoppingPlace) {
161 WRITE_WARNING(TLF("Invalid to parking area '%' used in % of % '%'", planParameters.toParkingArea, toString(planTag), parent->getTagStr(), parent->getID()));
162 return false;
163 } else if (!planParameters.fromRoute.empty() && !fromRoute) {
164 WRITE_WARNING(TLF("Invalid from route '%' used in % of % '%'", planParameters.fromRoute, toString(planTag), parent->getTagStr(), parent->getID()));
165 return false;
166 } else if (!planParameters.toRoute.empty() && !toRoute) {
167 WRITE_WARNING(TLF("Invalid to route '%' used in % of % '%'", planParameters.toRoute, toString(planTag), parent->getTagStr(), parent->getID()));
168 return false;
169 } else {
170 return true;
171 }
172}
173
174void
176 if (fromEdge) {
177 fromEdge->addChildElement(element);
178 }
179 if (toEdge) {
180 toEdge->addChildElement(element);
181 }
182 for (const auto& consecutiveEdge : consecutiveEdges) {
183 consecutiveEdge->addChildElement(element);
184 }
185 if (fromJunction) {
187 }
188 if (toJunction) {
189 toJunction->addChildElement(element);
190 }
191 if (fromTAZ) {
192 fromTAZ->addChildElement(element);
193 }
194 if (toTAZ) {
195 toTAZ->addChildElement(element);
196 }
197 if (fromStoppingPlace) {
199 }
200 if (toStoppingPlace) {
202 }
203 if (fromRoute) {
204 fromRoute->addChildElement(element);
205 }
206 if (toRoute) {
207 toRoute->addChildElement(element);
208 }
209}
210
211
212void
214 fromEdge = nullptr;
215 toEdge = nullptr;
216 consecutiveEdges.clear();
217 fromJunction = nullptr;
218 toJunction = nullptr;
219 fromTAZ = nullptr;
220 toTAZ = nullptr;
221 fromStoppingPlace = nullptr;
222 toStoppingPlace = nullptr;
223 fromRoute = nullptr;
224 toRoute = nullptr;
225}
226
227
228bool
230 if (fromStoppingPlace) {
232 } else {
233 return false;
234 }
235}
236
237
238bool
240 if (toStoppingPlace) {
242 } else {
243 return false;
244 }
245}
246
247
248bool
250 if (fromStoppingPlace) {
252 } else {
253 return false;
254 }
255}
256
257
258bool
260 if (toStoppingPlace) {
262 } else {
263 return false;
264 }
265}
266
267
268bool
270 if (fromStoppingPlace) {
272 } else {
273 return false;
274 }
275}
276
277
278bool
280 if (toStoppingPlace) {
282 } else {
283 return false;
284 }
285}
286
287
288bool
290 if (fromStoppingPlace) {
292 } else {
293 return false;
294 }
295}
296
297
298bool
300 if (toStoppingPlace) {
302 } else {
303 return false;
304 }
305}
306
307
308bool
310 if (fromStoppingPlace) {
312 } else {
313 return false;
314 }
315}
316
317
318bool
320 if (toStoppingPlace) {
322 } else {
323 return false;
324 }
325}
326
327
328std::vector<GNEJunction*>
330 std::vector<GNEJunction*> junctions;
331 if (fromJunction) {
332 junctions.push_back(fromJunction);
333 }
334 if (toJunction) {
335 junctions.push_back(toJunction);
336 }
337 return junctions;
338}
339
340
341std::vector<GNEEdge*>
343 if (consecutiveEdges.size() > 0) {
344 return consecutiveEdges;
345 } else {
346 std::vector<GNEEdge*> edges;
347 if (fromEdge) {
348 edges.push_back(fromEdge);
349 }
350 if (toEdge) {
351 edges.push_back(toEdge);
352 }
353 return edges;
354 }
355}
356
357
358std::vector<GNEAdditional*>
360 std::vector<GNEAdditional*> additionals;
361 if (fromStoppingPlace) {
362 additionals.push_back(fromStoppingPlace);
363 }
364 if (toStoppingPlace) {
365 additionals.push_back(toStoppingPlace);
366 }
367 if (fromTAZ) {
368 additionals.push_back(fromTAZ);
369 }
370 if (toTAZ) {
371 additionals.push_back(toTAZ);
372 }
373 return additionals;
374}
375
376
377std::vector<GNEDemandElement*>
379 std::vector<GNEDemandElement*> demandElements;
380 // always add parent first
381 demandElements.push_back(parent);
382 if (fromRoute) {
383 demandElements.push_back(fromRoute);
384 }
385 if (toRoute) {
386 demandElements.push_back(toRoute);
387 }
388 return demandElements;
389}
390
391/****************************************************************************/
#define WRITE_WARNING(msg)
Definition MsgHandler.h:283
#define TLF(string,...)
Definition MsgHandler.h:303
SumoXMLTag
Numbers representing SUMO-XML - element names.
@ SUMO_TAG_TAZ
a traffic assignment zone
@ SUMO_TAG_CHARGING_STATION
A Charging Station.
@ SUMO_TAG_CONTAINER_STOP
A container stop.
@ SUMO_TAG_BUS_STOP
A bus stop.
@ SUMO_TAG_PARKING_AREA
A parking area.
@ SUMO_TAG_ROUTE
begin/end of the description of a route
@ SUMO_TAG_TRAIN_STOP
A train stop (alias for bus stop)
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition ToString.h:46
plan parameters (used for group all from-to parameters related with plans)
std::string fromJunction
from junction
std::string fromContainerStop
from containerStop
std::string fromTrainStop
from trainStop
std::string toParkingArea
to parkingArea
std::vector< std::string > consecutiveEdges
consecutive edges
std::string fromChargingStation
from chargingStation
std::string toChargingStation
to chargingStation
std::string fromParkingArea
from parkingArea
std::string toContainerStop
to containerStop
const std::string getID() const
get ID (all Attribute Carriers have one)
const std::string & getTagStr() const
get tag assigned to this object in string format
const GNETagProperties * getTagProperty() const
get tagProperty associated with this Attribute Carrier
void addChildElement(ChildType *element)
add child without updating parent (ONLY used if we're creating elements without undo-redo)
struct used for saving all attribute carriers of net, in different formats
GNEAdditional * retrieveAdditional(SumoXMLTag type, const std::string &id, bool hardFail=true) const
Returns the named additional.
GNEJunction * retrieveJunction(const std::string &id, bool hardFail=true) const
get junction by id
GNEEdge * retrieveEdge(const std::string &id, bool hardFail=true) const
get edge by id
GNEDemandElement * retrieveDemandElement(SumoXMLTag type, const std::string &id, bool hardFail=true) const
Returns the named demand element.
std::vector< GNEDemandElement * > getDemandElements(GNEDemandElement *parent) const
get demand elements (used in plan constructors)
bool checkIntegrity(SumoXMLTag planTag, const GNEDemandElement *parent, const CommonXMLStructure::PlanParameters &planParameters) const
check integrity between planParameters and GNE elements
bool getFromContainerStop() const
get from containerStop
std::vector< GNEEdge * > consecutiveEdges
edges
bool getFromParkingArea() const
get from parkingArea
GNEAdditional * fromTAZ
from TAZ
void clear()
clear elements
GNEJunction * toJunction
to junction
std::vector< GNEAdditional * > getAdditionalElements() const
get additionalElements (used in plan constructors)
GNEEdge * toEdge
to edge
GNEDemandElement * fromRoute
from route (currently only used by walks)
GNEAdditional * toStoppingPlace
to stoppingPlace
GNEEdge * fromEdge
from edge
bool getToParkingArea() const
get to parkingArea
std::vector< GNEEdge * > getEdges() const
get edges (used in plan constructors)
bool getFromTrainStop() const
get from trainStop
bool getFromChargingStation() const
get from chargingStation
bool getToChargingStation() const
get to chargingStation
GNEJunction * fromJunction
from junction
bool getFromBusStop() const
bool getToContainerStop() const
get to containerStop
std::vector< GNEJunction * > getJunctions() const
get junctions (used in plan constructors)
bool getToTrainStop() const
get to trainStop
GNEAdditional * fromStoppingPlace
from stoppingPlace
GNEPlanParents()
default constructor
GNEAdditional * toTAZ
to TAZ
bool getToBusStop() const
get to busStop
void addDemandElementChild(GNEDemandElement *element)
add the given demand element in the element as child
GNEDemandElement * toRoute
to route (currently only used by walks)
SumoXMLTag getTag() const
get Tag vinculated with this attribute Property