73#define DEBUG_COND (isSelected())
81std::set<std::string> MSBaseVehicle::myShallTraceMoveReminders;
98 throw ProcessError(
"getPreviousSpeed() is not available for non-MSVehicles.");
126 , myTraceMoveReminders(myShallTraceMoveReminders.count(pars->id) > 0)
129 if ((*
myRoute->begin())->isTazConnector() ||
myRoute->getLastEdge()->isTazConnector()) {
233const std::set<SUMOTrafficObject::NumericalID>
235 std::set<SUMOTrafficObject::NumericalID> result;
237 result.insert((*e)->getNumericalID());
245 if (stop ==
nullptr) {
249 if (s.busstop == stop
250 || s.containerstop == stop
251 || s.parkingarea == stop
252 || s.chargingStation == stop) {
262 if (&s.lane->getEdge() == edge) {
266 return myRoute->getLastEdge() == edge;
274 if (source ==
nullptr) {
277 if (sink ==
nullptr) {
279 if (sink ==
nullptr) {
285 std::vector<StopEdgeInfo> stops;
287 double sinkPriority = -1;
288 bool stopAtSink =
false;
294 if (stops.size() > 0) {
299 const bool skipFirst = stops.front().edge == source && (source !=
getEdge() || sourcePos +
getBrakeGap() <= firstPos + NUMERICAL_EPS);
300 const bool skipLast = (stops.back().edge == sink
302 && (stops.size() < 2 || stops.back() != stops[stops.size() - 2])
303 && (stops.size() > 1 || skipFirst));
304 if (stops.back().edge == sink &&
myArrivalPos >= lastPos) {
305 sinkPriority = stops.back().priority;
310 <<
" source=" << source->
getID() <<
" sourcePos=" << sourcePos <<
" firstPos=" << firstPos <<
" arrivalPos=" <<
myArrivalPos <<
" lastPos=" << lastPos
311 <<
" route=" <<
toString(
myRoute->getEdges()) <<
" stopEdges=" <<
toString(stops) <<
" skipFirst=" << skipFirst <<
" skipLast=" << skipLast <<
"\n";
314 if (stops.size() == 1 && (skipFirst || skipLast)) {
318 stops.erase(stops.begin());
321 stops.erase(stops.end() - 1);
324 stopAtSink = stops.size() > 0 && stops.back().edge == sink && jumps.size() == 0;
327 std::set<const MSEdge*> jumpEdges;
328 std::map<const MSEdge*, StopEdgeInfo> stopsOnVia;
330 if (stop.pars.jump >= 0) {
331 jumpEdges.insert(*stop.edge);
333 auto itsov = stopsOnVia.find(*stop.edge);
334 if (itsov == stopsOnVia.end()) {
335 stopsOnVia.insert({*stop.edge,
StopEdgeInfo(*stop.edge, stop.pars.priority, stop.getArrivalFallback(), stop.getEndPos(*
this))});
337 itsov->second.priority =
addStopPriority(itsov->second.priority, stop.pars.priority);
347 assert(viaEdge != 0);
351 auto itsov = stopsOnVia.find(viaEdge);
352 const double priority = (itsov == stopsOnVia.end() ? -1 : itsov->second.priority);
353 const SUMOTime arrival = (itsov == stopsOnVia.end() ? -1 : itsov->second.arrival);
354 const double pos = (itsov == stopsOnVia.end() ? viaEdge->
getLength() : itsov->second.pos);
355 stops.push_back(
StopEdgeInfo(viaEdge, priority, arrival, pos));
357 if (jumpEdges.count(viaEdge) != 0) {
358 jumps.insert((
int)stops.size());
366 bool hasSkipped =
false;
367 const double origSourcePos = sourcePos;
368 const MSEdge* origSource = source;
370 for (
auto& stopEdgeInfo : stops) {
371 const MSEdge*
const stopEdge = stopEdgeInfo.edge;
372 const double priority = stopEdgeInfo.priority;
375 if (jumps.count(stopIndex) != 0) {
376 edges.push_back(source);
381 router.
computeLooped(source, stopEdge,
this, t, into, silent || priority >= 0);
383 if (into.size() > 0) {
384 while (stopIt !=
myStops.end() && stopIt->pars.edge != stopEdge->
getID()) {
390 if (stopIt->pars.priority >= 0 && info !=
"device.rerouting") {
393 SUMOTime arrival = stopEdgeInfo.arrival;
395 SUMOTime delay = startTime - arrival;
400 if (delay > maxDelay) {
401 stopEdgeInfo.skipped =
true;
402 stopEdgeInfo.delay = delay;
410 sourcePos = stopEdgeInfo.pos;
411 startTime += stopIt->getMinDuration(startTime);
414 edges.insert(edges.end(), into.begin(), into.end());
416 source = into.back();
421 stopEdgeInfo.routeIndex = edges.size() - 1;
423 if ((source != sink || !stopAtSink)) {
425 stopEdgeInfo.skipped =
true;
429 std::string error =
TLF(
"Vehicle '%' has no valid route from edge '%' to stop edge '%'.",
getID(), source->
getID(), stopEdge->
getID());
434 edges.push_back(source);
441 if (stops.empty() && source == sink && onInit
447 if (!router.
compute(source, sink,
this, t, edges, silent || sinkPriority >= 0)) {
448 if (sinkPriority >= 0) {
449 edges.push_back(source);
452 stops.back().skipped =
true;
459 edges =
optimizeSkipped(t, router, origSource, origSourcePos, stops, edges, maxDelay);
460 for (
auto stop : stops) {
462 if (stop.delay > 0) {
464 }
else if (stop.backtracked) {
474 if (edges.empty() && silent) {
477 if (!edges.empty() && edges.front()->isTazConnector()) {
478 edges.erase(edges.begin());
480 if (!edges.empty() && edges.back()->isTazConnector()) {
484 const double previousCost = onInit ? routeCost : router.
recomputeCosts(oldEdgesRemaining,
this, t);
485 const double savings = previousCost - routeCost;
506 return !edges.empty();
514 if (msgReturn !=
nullptr) {
515 *msgReturn =
"No route found";
520 std::string
id =
getID();
524 const std::string idSuffix =
id +
"!var#";
528 id = idSuffix +
toString(++varIndex);
530 int oldSize = (int)edges.size();
533 if (origin != *
myCurrEdge && edges.front() == origin) {
535 oldSize = (int)edges.size();
550 if (msgReturn !=
nullptr) {
551 *msgReturn =
"duplicate routeID '" +
id +
"'";
560 if (msgReturn !=
nullptr) {
566 if (!
replaceRoute(constRoute, info, onInit, (
int)edges.size() - oldSize,
false, removeStops, msgReturn)) {
581 if (newCurrEdge == edges.end()) {
582 if (msgReturn !=
nullptr) {
583 *msgReturn =
TLF(
"current edge '%' not found in new route", (*myCurrEdge)->getID());
585#ifdef DEBUG_REPLACE_ROUTE
587 std::cout <<
" newCurrEdge not found\n";
594 (newCurrEdge + 1) == edges.end() || (*(newCurrEdge + 1)) != &(
getLane()->getOutgoingViaLanes().front().first->
getEdge()))) {
595 if (msgReturn !=
nullptr) {
596 *msgReturn =
TL(
"Vehicle is on junction-internal edge leading elsewhere");
598#ifdef DEBUG_REPLACE_ROUTE
600 std::cout <<
" Vehicle is on junction-internal edge leading elsewhere\n";
606 && (newCurrEdge + 1) != edges.end()
608 if (msgReturn !=
nullptr) {
609 *msgReturn =
TL(
"Vehicle is moving past junction and committed to move to another successor edge");
611#ifdef DEBUG_REPLACE_ROUTE
613 std::cout <<
" Vehicle is moving past junction and committed to move to another successor edge\n";
621 const bool stopsFromScratch = onInit &&
myRoute->getStops().empty();
647#ifdef DEBUG_REPLACE_ROUTE
649 std::cout <<
SIMTIME <<
" veh=" <<
getID() <<
" replaceRoute info=" << info <<
" on " << (*myCurrEdge)->getID()
651 <<
" stopsFromScratch=" << stopsFromScratch
652 <<
" newSize=" << newRoute->getEdges().size()
653 <<
" newIndex=" << (
myCurrEdge - newRoute->begin())
654 <<
" edges=" <<
toString(newRoute->getEdges())
668 if (stopsFromScratch) {
679 lastPos += (*myCurrEdge)->getLength();
682 for (std::list<MSStop>::iterator iter =
myStops.begin(); iter !=
myStops.end();) {
683 double endPos = iter->getEndPos(*
this);
684#ifdef DEBUG_REPLACE_ROUTE
686 std::cout <<
" stopEdge=" << iter->lane->getEdge().getID() <<
" start=" << (searchStart -
myCurrEdge) <<
" endPos=" << endPos <<
" lastPos=" << lastPos <<
"\n";
689 if (*searchStart != &iter->lane->getEdge()
690 || endPos + NUMERICAL_EPS < lastPos) {
691 if (searchStart != edges.end() && !iter->reached) {
697 iter->edge = std::find(searchStart, edges.end(), &iter->lane->getEdge());
698#ifdef DEBUG_REPLACE_ROUTE
700 std::cout <<
" foundIndex=" << (iter->edge -
myCurrEdge) <<
" end=" << (edges.end() -
myCurrEdge) <<
"\n";
703 if (iter->edge == edges.end()) {
711 searchStart = iter->edge;
718 for (StopParVector::const_iterator i = newRoute->getStops().begin(); i != newRoute->getStops().end(); ++i) {
734 double skippedPrio = 0;
735 double minPrio = std::numeric_limits<double>::max();
736 std::vector<int> skipped;
737 for (
int i = 0; i < (int)stops.size(); i++) {
738 if (stops[i].skipped) {
739 skipped.push_back(i);
741 minPrio =
MIN2(minPrio, stops[i].priority);
743 for (
int i : skipped) {
744 skippedPrio += stops[i].priority;
746#ifdef DEBUG_OPTIMIZE_SKIPPED
747 std::cout <<
SIMTIME <<
" veh=" <<
getID() <<
" optimzeSkipped=" <<
toString(skipped) <<
" source=" << source->
getID() <<
"\n";
748 for (
int i = 0; i < (int)stops.size(); i++) {
749 const auto& stop = stops[i];
750 std::cout <<
" " << i <<
" edge=" << stop.edge->getID() <<
" routeIndex=" << stop.routeIndex <<
" prio=" << stop.priority <<
" skipped=" << stop.skipped <<
" arrival=" << stop.arrival <<
"\n";
753 if (skippedPrio == minPrio) {
755#ifdef DEBUG_OPTIMIZE_SKIPPED
756 std::cout <<
" skippedPrio=" << skippedPrio <<
" minPrio=" << minPrio <<
"\n";
761 std::vector<int> skippedReachable;
762 for (
int si : skipped) {
764 router.
computeLooped(source, stops[si].edge,
this, t, into,
true);
765 if (into.size() > 0) {
767 if (arrival - stops[si].arrival <= maxDelay) {
768 skippedReachable.push_back(si);
772 if (skippedReachable.size() == 0) {
774#ifdef DEBUG_OPTIMIZE_SKIPPED
775 std::cout <<
" noneReachable\n";
779 std::set<int> unskippedBefore;
780 for (
int i = 0; i < (int)stops.size(); i++) {
781 if (i < skipped.back()) {
782 unskippedBefore.insert(i);
785 for (
int i : skipped) {
786 unskippedBefore.erase(i);
789 assert(unskippedBefore.size() > 0);
791 std::vector<int> unskippedEnds;
792 std::vector<int> skippedStarts;
793 for (
int i : unskippedBefore) {
794 if (unskippedBefore.count(i + 1) == 0) {
795 for (
int i2 : skippedReachable) {
797 unskippedEnds.push_back(i);
798 skippedStarts.push_back(i2);
804 std::sort(unskippedEnds.begin(), unskippedEnds.end());
805 std::set<int> skippedSet(skipped.begin(), skipped.end());
806#ifdef DEBUG_OPTIMIZE_SKIPPED
807 std::cout <<
" unskippedEnds=" <<
toString(unskippedEnds) <<
" skippedStarts=" <<
toString(skippedStarts) <<
"\n";
811 double altSkippedPrio = 0;
812 const MSEdge* firstSkipped = stops[skippedStarts.back()].edge;
813 for (
int i = unskippedEnds.back(); i >= 0; i--) {
814 double prio = stops[i].priority;
815 altSkippedPrio += prio;
816 if (skippedSet.count(i)
818 || altSkippedPrio >= skippedPrio
820 unskippedEnds.pop_back();
821 skippedStarts.pop_back();
822 if (unskippedEnds.empty()) {
826 i = unskippedEnds.back();
827 firstSkipped = stops[skippedStarts.back()].edge;
831 const MSEdge* prev = i > 0 ? stops[i - 1].edge : source;
832 const double prevPos = i > 0 ? stops[i - 1].pos : sourcePos;
834 SUMOTime start = stops[i - 1].arrival;
835 router.
computeLooped(prev, firstSkipped,
this, start, into,
true);
836 if (into.size() == 0) {
842 std::vector<StopEdgeInfo> stops2 = stops;
843 double skippedPrio2 = altSkippedPrio;
844 for (
int i2 = 0; i2 < i - 1; i2++) {
845 if (stops[i2].skipped) {
846 skippedPrio2 += stops[i2].priority;
849 for (
int i2 = i; i2 <= unskippedEnds.back(); i2++) {
850 stops2[i2].skipped =
true;
851 stops2[i2].backtracked =
true;
853 int prevRouteIndex = i > 0 ? stops[i - 1].routeIndex :
getDepartEdge();
854 assert(prevRouteIndex >= 0 && prevRouteIndex < edges.size());
856 stops2[skippedStarts.back()].skipped =
false;
857 edges2.insert(edges2.begin(), into.begin(), into.end());
858 edges2 =
routeAlongStops(start, router, stops2, edges2, skippedStarts.back(), maxDelay, skippedPrio2);
859 if (skippedPrio2 < skippedPrio) {
860#ifdef DEBUG_OPTIMIZE_SKIPPED
861 std::cout <<
" skippedPrio=" << skippedPrio <<
" skippedPrio2=" << skippedPrio2 <<
"\n";
864 skippedPrio = skippedPrio2;
875 int originStop,
SUMOTime maxDelay,
double& skippedPrio2)
const {
877 for (
int i = originStop + 1; i < (int)stops.size(); i++) {
879 router.
computeLooped(edges.back(), stops[i].edge,
this, t, into,
true);
880 if (into.size() == 0) {
881 if (stops[i].priority < 0) {
883 skippedPrio2 = std::numeric_limits<double>::max();
886 skippedPrio2 += stops[i].priority;
887 stops[i].skipped =
true;
890 SUMOTime delay = t - stops[i].arrival;
891 if (delay > maxDelay) {
892 if (stops[i].priority < 0) {
894 skippedPrio2 = std::numeric_limits<double>::max();
897 skippedPrio2 += stops[i].priority;
898 stops[i].skipped =
true;
899 stops[i].delay =
true;
902 edges.insert(edges.end(), into.begin(), into.end());
967 &&
myStops.begin()->pars.permitted.count(t->
getID()) == 0) {
971 if (taxiDevice !=
nullptr) {
1008 if (stop.edge == it && stop.pars.jump >= 0) {
1010 }
else if (stop.edge > it) {
1021 if (route ==
nullptr) {
1024 start = route->begin();
1026 const bool checkJumps = route ==
myRoute;
1030 const MSEdge& next = **(e + 1);
1032 if (!checkJumps || !
hasJump(e)) {
1035 msg =
TLF(
"No connection between edge '%' and edge '%'.", (*e)->getID(), (*(e + 1))->getID());
1041 last = route->end();
1044 if ((*e)->prohibits(
this)) {
1045 msg =
TLF(
"Edge '%' prohibits.", (*e)->getID());
1055 if (!(*myCurrEdge)->isTazConnector()) {
1057 msg =
TLF(
"Departure speed for vehicle '%' is too high for the vehicle type '%'.",
getID(),
myType->
getID());
1062 if (
myRoute->getEdges().size() > 0 && !(*myCurrEdge)->prohibits(
this)) {
1066 msg =
TLF(
"Vehicle '%' is not allowed to depart on any lane of edge '%'.",
getID(), (*myCurrEdge)->getID());
1083 }
else if (!silent) {
1086 }
else if (msgReturn !=
nullptr) {
1107 if (item.first == rem) {
1118 if (myTraceMoveReminders) {
1119 traceMoveReminder(
"add", rem, pos,
true);
1129 if (r->first == rem) {
1131 if (myTraceMoveReminders) {
1132 traceMoveReminder(
"remove", rem, 0,
false);
1149 if (rem->
getLane() !=
nullptr && remPos > 0.) {
1151 if (myTraceMoveReminders) {
1152 traceMoveReminder(
"notifyEnter_skipped", rem, remPos,
true);
1157 if (rem->
notifyEnter(*
this, reason, enteredLane)) {
1159 if (myTraceMoveReminders) {
1160 traceMoveReminder(
"notifyEnter", rem, remPos,
true);
1166 if (myTraceMoveReminders) {
1167 traceMoveReminder(
"notifyEnter", rem, remPos,
false);
1184 if (
myRoute->getLastEdge()->isTazConnector()) {
1189 WRITE_WARNINGF(
TL(
"Vehicle '%' ignores attribute arrivalEdge=% after rerouting at time=% (routeLength=%)"),
1194 arrivalEdge =
myRoute->getLastEdge();
1198 const std::vector<MSLane*>& lanes = arrivalEdge->
getLanes();
1199 const double lastLaneLength = lanes[0]->getLength();
1228 for (
MSLane* lane : lanes) {
1240 std::vector<MSLane*> usable;
1241 for (
MSLane* lane : lanes) {
1243 usable.push_back(lane);
1246 if (usable.empty()) {
1254 for (std::vector<MSLane*>::const_iterator l = lanes.begin(); l != lanes.end(); ++l) {
1267 const int routeEdges = (int)
myRoute->getEdges().size();
1281 const int routeEdges = (int)
myRoute->getEdges().size();
1316 if (
typeid(*dev) == type) {
1331 std::ostringstream os;
1372 && (
myStops.begin()->parkingarea ==
nullptr || !
myStops.begin()->parkingarea->parkOnRoad())
1407 if (parkingArea == 0) {
1408 errorMsg =
"new parkingArea is NULL";
1412 errorMsg =
"vehicle has no stops";
1415 if (
myStops.front().parkingarea == 0) {
1416 errorMsg =
"first stop is not at parkingArea";
1423 for (std::list<MSStop>::iterator iter = ++
myStops.begin(); iter !=
myStops.end();) {
1424 if (iter->parkingarea == parkingArea) {
1425 stopPar.
duration += iter->duration;
1459 return nextParkingArea;
1467 currentParkingArea =
myStops.begin()->parkingarea;
1469 return currentParkingArea;
1473const std::vector<std::string>&
1488 && (&
myStops.front().lane->getEdge()) == *
myStops.front().edge) {
1499 if (edge ==
nullptr || edge->
getOppositeEdge() ==
nullptr || stop.
lane.find(
"_") == std::string::npos) {
1516 if (stopPar.
lane ==
"") {
1519 if (stop.
lane ==
nullptr) {
1520 errorMsg =
"Vehicle '" +
myParameter->
id +
"' is not allowed to stop on any lane of edge '" + stopPar.
edge +
"'.";
1525 if (stop.
lane ==
nullptr) {
1529 assert(stop.
lane !=
nullptr);
1532 errorMsg =
"Vehicle '" +
myParameter->
id +
"' is not allowed to stop on lane '" + stopPar.
lane +
"'.";
1539 errorMsg =
"Mesoscopic simulation does not allow stopping on internal edge '" + stopPar.
edge +
"' for vehicle '" +
myParameter->
id +
"'.";
1544 if (stopPar.
until != -1) {
1551 std::string stopType =
"stop";
1552 std::string stopID =
"";
1554 if (stop.
busstop !=
nullptr) {
1555 stopType =
"busStop";
1559 stopType =
"containerStop";
1563 stopType =
"chargingStation";
1567 stopType =
"overheadWireSegment";
1571 stopType =
"parkingArea";
1574 const std::string errorMsgStart = stopID ==
"" ? stopType : stopType +
" '" + stopID +
"'";
1577 errorMsg = errorMsgStart +
" for vehicle '" +
myParameter->
id +
"' on lane '" + stop.
lane->
getID() +
"' has an invalid position.";
1580 if (stopType !=
"stop" && stopType !=
"parkingArea" &&
myType->
getLength() / 2. > parkingLength
1585 errorMsg = errorMsgStart +
" on lane '" + stop.
lane->
getID() +
"' is too short for vehicle '" +
myParameter->
id +
"'.";
1589 errorMsg = errorMsgStart +
"on lane '" + stop.
lane->
getID() +
"' forbids access because vehicle '" +
myParameter->
id +
"' does not provide any valid badge.";
1603 if (searchStart ==
nullptr) {
1607 searchStart = ≻
1610#ifdef DEBUG_ADD_STOP
1612 std::cout <<
"addStop desc=" << stop.
getDescription() <<
" stopEdge=" << stopEdge->
getID()
1613 <<
" searchStart=" << ((*searchStart) ==
myRoute->end() ?
"END" : (**searchStart)->getID())
1618 stop.
edge = std::find(*searchStart,
myRoute->end(), stopEdge);
1623 std::list<MSStop>::iterator iter =
myStops.begin();
1627 prevStopEdge =
myStops.back().edge;
1628 prevEdge = &
myStops.back().lane->getEdge();
1629 prevStopPos =
myStops.back().pars.endPos;
1630 stop.
edge = std::find(prevStopEdge,
myRoute->end(), stopEdge);
1631 if (prevStopEdge == stop.
edge
1635 stop.
edge = std::find(prevStopEdge + 1,
myRoute->end(), stopEdge);
1637#ifdef DEBUG_ADD_STOP
1639 std::cout <<
" (@end) prevStopEdge=" << (*prevStopEdge)->getID() <<
" prevStopPos=" << prevStopPos <<
" index=" << (int)(prevStopEdge -
myRoute->begin())
1645 int skipLooped = stopPar.
index -
static_cast<int>(
myStops.size());
1646 for (
int j = 0; j < skipLooped; j++) {
1647 auto nextIt = std::find(stop.
edge + 1,
myRoute->end(), stopEdge);
1648 if (nextIt ==
myRoute->end()) {
1651 errorMsg = errorMsgStart +
" for vehicle '" +
myParameter->
id +
"' could not skip " +
toString(skipLooped) +
" occurences of stop edge '" + stopEdge->
getID() +
"' in looped route.";
1660 while (iter !=
myStops.end() && (iter->edge < stop.
edge ||
1661 (iter->pars.endPos < stop.
pars.
endPos && iter->edge == stop.
edge) ||
1663 prevStopEdge = iter->edge;
1664 prevStopPos = iter->pars.endPos;
1668 int index = stopPar.
index;
1670 prevStopEdge = iter->edge;
1671 prevStopPos = iter->pars.endPos;
1675#ifdef DEBUG_ADD_STOP
1677 std::cout <<
" (@fit) prevStopEdge=" << (*prevStopEdge)->getID() <<
" index=" << (int)(prevStopEdge -
myRoute->begin()) <<
"\n";
1680 stop.
edge = std::find(prevStopEdge,
myRoute->end(), stopEdge);
1683 const bool wasTooClose = errorMsg !=
"" && errorMsg.find(
"too close") != std::string::npos;
1686 errorMsg = errorMsgStart +
" for vehicle '" +
myParameter->
id +
"' on lane '" + stop.
lane->
getID() +
"' is not downstream the current route.";
1691 const bool tooClose = (prevStopEdge == stop.
edge && prevEdge == &stop.
lane->
getEdge() &&
1694 if (prevStopEdge > stop.
edge ||
1701 if (tooClose && prevStopPos <= stop.
pars.
endPos + POSITION_EPS) {
1702 errorMsg = errorMsgStart +
" for vehicle '" +
myParameter->
id +
"' on lane '" + stop.
pars.
lane +
"' is too close to brake.";
1705 return addStop(stopPar, errorMsg, untilOffset, &next);
1722 pos += (*myCurrEdge)->getLength();
1732 return addStop(stopPar, errorMsg, untilOffset, &next);
1734 errorMsg = errorMsgStart +
" for vehicle '" +
myParameter->
id +
"' on lane '" + stop.
lane->
getID() +
"' is before departPos.";
1738 if (iter !=
myStops.begin()) {
1739 std::list<MSStop>::iterator iter2 = iter;
1745 +
" earlier than previous stop at " +
time2string(iter2->getUntil()) +
".";
1750 +
" earlier than previous stop end at " +
time2string(iter2->getUntil()) +
".";
1755 +
" earlier than previous stop arrival at " +
time2string(iter2->pars.arrival) +
".";
1772 if (stopPar.
tripId !=
"") {
1791 if (prevActiveStops > 0) {
1792 assert((
int)
myStops.size() >= prevActiveStops);
1793 auto prevStopIt =
myStops.begin();
1794 std::advance(prevStopIt, prevActiveStops - 1);
1795 const MSStop& prev = *prevStopIt;
1810 while (itPrev < stop.
edge) {
1811 if (*itPrev == *stop.
edge) {
1817 if (foundSkips > 0) {
1825 newIndex = (int)
myPastStops.size() + prevActiveStops + foundSkips;
1836 if (rem->first->notifyReroute(*
this)) {
1838 if (myTraceMoveReminders) {
1839 traceMoveReminder(
"notifyReroute", rem->first, rem->second,
true);
1845 if (myTraceMoveReminders) {
1846 traceMoveReminder(
"notifyReroute", rem->first, rem->second,
false);
1860 if (addRouteStops) {
1862 std::string errorMsg;
1866 if (errorMsg !=
"") {
1873 std::string errorMsg;
1874 if (!
addStop(stop, errorMsg, untilOffset, searchStart) && !ignoreStopErrors) {
1877 if (errorMsg !=
"") {
1891 if (stop.lane->isInternal()) {
1894 it = std::find(start,
myRoute->end(), stop.lane->getEdge().getNormalBefore());
1896 it + 1 ==
myRoute->end() || *(it + 1) != stop.lane->getEdge().getNormalSuccessor())) {
1900 it = std::find(start,
myRoute->end(), &stop.lane->getEdge());
1904 WRITE_ERRORF(
"Stop % on edge '%' is not found after edge '%' (% after current) for vehicle '%' at time=%.",
1911 if (it2 == stop.edge) {
1917 WRITE_ERRORF(
"Stop % on edge '%' used invalid route index for vehicle '%' at time=%.",
1921 }
else if (it2 < start) {
1923 WRITE_ERRORF(
"Stop % on edge '%' used invalid (relative) route index % expected after % for vehicle '%' at time=%.",
1937std::vector<MSBaseVehicle::StopEdgeInfo>
1940 std::vector<StopEdgeInfo> result;
1941 const MSStop* prev =
nullptr;
1942 const MSEdge* internalSuccessor =
nullptr;
1945 if (stop.pars.jump >= 0) {
1946 jumps.insert((
int)result.size());
1950 const double stopPos = stop.getEndPos(*
this);
1951 if ((prev ==
nullptr
1952 || prev->
edge != stop.edge
1953 || (prev->
lane == stop.lane && prev->
getEndPos(*
this) > stopPos))
1954 && *stop.edge != internalSuccessor) {
1955 result.push_back(
StopEdgeInfo(*stop.edge, stop.pars.priority, stop.getArrivalFallback(), stopPos));
1956 if (stop.lane->isInternal()) {
1957 internalSuccessor = stop.lane->getNextNormal();
1958 result.push_back(
StopEdgeInfo(internalSuccessor, stop.pars.priority, stop.getArrivalFallback(), stopPos));
1960 internalSuccessor =
nullptr;
1962 }
else if (prev !=
nullptr && prev->
edge == stop.edge) {
1963 result.back().priority =
addStopPriority(result.back().priority, stop.pars.priority);
1967 if (stop.parkingarea !=
nullptr) {
1968 firstPos =
MAX2(0., stopPos);
1974 if (stop.pars.jump >= 0) {
1975 jumps.insert((
int)result.size() - 1);
1985 if (p1 < 0 || p2 < 0) {
1991std::vector<std::pair<int, double> >
1993 std::vector<std::pair<int, double> > result;
1994 for (std::list<MSStop>::const_iterator iter =
myStops.begin(); iter !=
myStops.end(); ++iter) {
1995 result.push_back(std::make_pair(
1996 (
int)(iter->edge -
myRoute->begin()),
1997 iter->getEndPos(*
this)));
2018 return myStops.front().duration;
2027 if (nextStopIndex < 0 || (
int)
myStops.size() <= nextStopIndex) {
2030 auto stopIt =
myStops.begin();
2031 std::advance(stopIt, nextStopIndex);
2048 for (std::list<MSStop>::iterator iter =
myStops.begin(); iter !=
myStops.end(); iter++) {
2049 if (iter->lane->getID() == stop.
lane && fabs(iter->pars.endPos - stop.
endPos) < POSITION_EPS) {
2051 if (stop.
duration == 0 && stop.
until < 0 && !iter->reached) {
2063 const bool result =
addStop(stop, errorMsg);
2084 if (nextStopIndex == 0 &&
isStopped()) {
2087 auto stopIt =
myStops.begin();
2088 std::advance(stopIt, nextStopIndex);
2094 std::advance(stopIt2, nextStopIndex);
2106 const int n = (int)
myStops.size();
2107 if (nextStopIndex < 0 || nextStopIndex >= n) {
2108 errorMsg =
TLF(
"invalid nextStopIndex % for % remaining stops", nextStopIndex, n);
2111 if (nextStopIndex == 0 &&
isStopped()) {
2112 errorMsg =
TL(
"cannot replace reached stop");
2119 auto itStop =
myStops.begin();
2120 std::advance(itStop, nextStopIndex);
2121 MSStop& replacedStop = *itStop;
2126 if (pa !=
nullptr && !pa->
accepts(
this)) {
2127 errorMsg =
TLF(
"vehicle '%' does not have the right badge to access parkingArea '%'",
getID(), stop.
parkingarea);
2140 errorMsg =
TLF(
"disallowed stop lane '%'", stopLane->
getID());
2148 double startPos = nextStopIndex == 0 ?
getPositionOnLane() : stops[nextStopIndex - 1].pars.endPos;
2149 MSRouteIterator itEnd = nextStopIndex == n - 1 ? oldEdges.end() - 1 : stops[nextStopIndex + 1].edge;
2150 auto endPos = nextStopIndex == n - 1 ?
getArrivalPos() : stops[nextStopIndex + 1].pars.endPos;
2153 bool newDestination = nextStopIndex == n - 1 && stops[nextStopIndex].edge == oldEdges.end() - 1;
2157 router.
compute(*itStart, startPos, stopEdge, stop.
endPos,
this, t, toNewStop,
true);
2158 if (toNewStop.size() == 0) {
2159 errorMsg =
TLF(
"no route found from edge '%' to stop edge '%'", (*itStart)->getID(), stopEdge->
getID());
2165 if (!newDestination) {
2166 router.
compute(stopEdge, stop.
endPos, *itEnd, endPos,
this, t, fromNewStop,
true);
2167 if (fromNewStop.size() == 0) {
2168 errorMsg =
TLF(
"no route found from stop edge '%' to edge '%'", stopEdge->
getID(), (*itEnd)->getID());
2176 replacedStop.
lane = stopLane;
2180 errorMsg =
TLF(
"Mesoscopic simulation does not allow stopping on internal edge '%' for vehicle '%'.", stop.
edge,
getID());
2187 newEdges.insert(newEdges.end(),
myCurrEdge, itStart);
2189 newEdges.insert(newEdges.end(), toNewStop.begin(), toNewStop.end() - 1);
2191 newEdges.push_back(*itStart);
2193 if (!newDestination) {
2194 newEdges.insert(newEdges.end(), fromNewStop.begin(), fromNewStop.end() - 1);
2195 newEdges.insert(newEdges.end(), itEnd, oldEdges.end());
2197 newEdges.push_back(stopEdge);
2208 const double routeCost = router.
recomputeCosts(newEdges,
this, t);
2209 const double previousCost = router.
recomputeCosts(oldRemainingEdges,
this, t);
2210 const double savings = previousCost - routeCost;
2219 if (!
insertJump(nextStopIndex, itStart, errorMsg)) {
2229 const int n = (int)
myStops.size();
2230 if (nextStopIndex < 0 || nextStopIndex > n) {
2231 errorMsg =
TLF(
"invalid nextStopIndex % for % remaining stops", nextStopIndex, n);
2234 if (nextStopIndex == 0 &&
isStopped()) {
2235 errorMsg =
TL(
"cannot reroute towards reached stop");
2244 double startPos = nextStopIndex == 0 ?
getPositionOnLane() : stops[nextStopIndex - 1].pars.endPos;
2245 MSRouteIterator itEnd = nextStopIndex == n ? oldEdges.end() - 1 : stops[nextStopIndex].edge;
2246 auto endPos = nextStopIndex == n ?
getArrivalPos() : stops[nextStopIndex].pars.endPos;
2251 router.
compute(*itStart, startPos, *itEnd, endPos,
this, t, newBetween,
true);
2252 if (newBetween.size() == 0) {
2253 errorMsg =
TLF(
"no route found from edge '%' to stop edge '%'", (*itStart)->getID(), (*itEnd)->getID());
2260 newEdges.insert(newEdges.end(),
myCurrEdge, itStart);
2262 newEdges.insert(newEdges.end(), newBetween.begin(), newBetween.end() - 1);
2264 newEdges.push_back(*itStart);
2266 newEdges.insert(newEdges.end(), itEnd, oldEdges.end());
2274 const double routeCost = router.
recomputeCosts(newEdges,
this, t);
2275 const double previousCost = router.
recomputeCosts(oldRemainingEdges,
this, t);
2276 const double savings = previousCost - routeCost;
2282 if (!
insertJump(nextStopIndex, itStart, errorMsg)) {
2292 bool needJump =
true;
2293 if (nextStopIndex > 0) {
2294 auto itPriorStop =
myStops.begin();
2295 std::advance(itPriorStop, nextStopIndex - 1);
2296 const MSStop& priorStop = *itPriorStop;
2303 jumpStopPars.
endPos = (*itStart)->getLength();
2304 jumpStopPars.
speed = 1000;
2305 jumpStopPars.
jump = 0;
2306 jumpStopPars.
edge = (*itStart)->getID();
2308 MSLane* jumpStopLane =
nullptr;
2309 for (
MSLane* cand : (*itStart)->getLanes()) {
2310 if (cand->allowsVehicleClass(
getVClass())) {
2311 jumpStopLane = cand;
2315 if (jumpStopLane ==
nullptr) {
2316 errorMsg =
TL(
"unable to replace stop with teleporting");
2319 auto itStop =
myStops.begin();
2320 std::advance(itStop, nextStopIndex);
2321 MSStop jumpStop(jumpStopPars);
2323 jumpStop.
lane = jumpStopLane;
2325 myStops.insert(itStop, jumpStop);
2338 const int n = (int)
myStops.size();
2339 if (nextStopIndex < 0 || nextStopIndex > n) {
2340 errorMsg =
TLF(
"invalid nextStopIndex % for % remaining stops", nextStopIndex, n);
2343 if (nextStopIndex == 0 &&
isStopped()) {
2344 errorMsg =
TL(
"cannot insert stop before the currently reached stop");
2352 errorMsg =
TLF(
"disallowed stop lane '%'", stopLane->
getID());
2359 if (pa !=
nullptr && !pa->
accepts(
this)) {
2360 errorMsg =
TLF(
"Vehicle '%' does not have the right badge to access parkingArea '%'.",
getID(), stop.
parkingarea);
2369 double startPos = nextStopIndex == 0 ?
getPositionOnLane() : stops[nextStopIndex - 1].pars.endPos;
2370 MSRouteIterator itEnd = nextStopIndex == n ? oldEdges.end() - 1 : stops[nextStopIndex].edge;
2371 auto endPos = nextStopIndex == n ?
getArrivalPos() : stops[nextStopIndex].pars.endPos;
2374 bool newDestination = nextStopIndex == n && stopEdge == oldEdges.back();
2378 router.
compute(*itStart, startPos, stopEdge, stop.
endPos,
this, t, toNewStop,
true);
2379 if (toNewStop.size() == 0) {
2380 errorMsg =
TLF(
"no route found from edge '%' to stop edge '%'", (*itStart)->getID(), stopEdge->
getID());
2386 if (!newDestination) {
2387 router.
compute(stopEdge, stop.
endPos, *itEnd, endPos,
this, t, fromNewStop,
true);
2388 if (fromNewStop.size() == 0) {
2389 errorMsg =
TLF(
"no route found from stop edge '%' to edge '%'", stopEdge->
getID(), (*itEnd)->getID());
2394 auto itStop =
myStops.begin();
2395 std::advance(itStop, nextStopIndex);
2399 newStop.
lane = stopLane;
2403 errorMsg =
TLF(
"Mesoscopic simulation does not allow stopping on internal edge '%' for vehicle '%'.", stop.
edge,
getID());
2407 myStops.insert(itStop, newStop);
2411 newEdges.insert(newEdges.end(),
myCurrEdge, itStart);
2413 newEdges.insert(newEdges.end(), toNewStop.begin(), toNewStop.end() - 1);
2415 newEdges.push_back(*itStart);
2417 if (!newDestination) {
2418 newEdges.insert(newEdges.end(), fromNewStop.begin(), fromNewStop.end() - 1);
2419 newEdges.insert(newEdges.end(), itEnd, oldEdges.end());
2421 newEdges.push_back(stopEdge);
2432 const double routeCost = router.
recomputeCosts(newEdges,
this, t);
2433 const double previousCost = router.
recomputeCosts(oldRemainingEdges,
this, t);
2434 const double savings = previousCost - routeCost;
2551 int leavingPersonNumber = 0;
2552 const std::vector<MSTransportable*>& persons =
getPersons();
2553 for (std::vector<MSTransportable*>::const_iterator it_p = persons.begin(); it_p != persons.end(); ++it_p) {
2558 leavingPersonNumber++;
2561 return leavingPersonNumber;
2564std::vector<std::string>
2566 std::vector<std::string> ret;
2567 const std::vector<MSTransportable*>& persons =
getPersons();
2568 for (std::vector<MSTransportable*>::const_iterator it_p = persons.begin(); it_p != persons.end(); ++it_p) {
2569 ret.push_back((*it_p)->getID());
2596const std::vector<MSTransportable*>&
2606const std::vector<MSTransportable*>&
2623 if (stop.startPos <= position && position <= stop.endPos) {
2628 if (stop.startPos <= position && position <= stop.endPos) {
2639 if (dev->deviceName() == deviceName) {
2650 if (deviceName ==
"rerouting") {
2656 assert(routingDevice != 0);
2660 throw InvalidArgument(
TLF(
"creating device of type '%' is not supported", deviceName));
2669 if (dev->deviceName() == deviceName) {
2670 return dev->getParameter(key);
2680 if (dev->deviceName() == deviceName) {
2681 dev->setParameter(key, value);
2712 const std::string attrName = key.substr(15);
2734 const std::string routingModeStr =
getStringParam(
"device.rerouting.mode");
2742 throw ProcessError(
TLF(
"could not interpret routing.mode '%'", routingModeStr));
2759 assert(type !=
nullptr);
2801 if (lane ==
nullptr) {
2812 if (lane ==
nullptr) {
2824 if (tok.
size() < 3) {
2825 error =
TLF(
"Invalid device parameter '%' for vehicle '%'.", key,
getID());
2831 error =
TLF(
"Vehicle '%' does not support device parameter '%' (%).",
getID(), key, e.what());
2835 if (microVeh ==
nullptr) {
2836 error =
TLF(
"Mesoscopic vehicle '%' does not support laneChangeModel parameters.",
getID());
2839 const std::string attrName = key.substr(16);
2843 error =
TLF(
"Vehicle '%' does not support laneChangeModel parameter '%' (%).",
getID(), key, e.what());
2847 if (microVeh ==
nullptr) {
2848 error =
TLF(
"Mesoscopic vehicle '%' does not support carFollowModel parameters.",
getID());
2851 const std::string attrName = key.substr(15);
2855 error =
TLF(
"Vehicle '%' does not support carFollowModel parameter '%' (%).",
getID(), key, e.what());
2860 if (tok.
size() != 3) {
2861 error =
TL(
"Invalid check for device. Expected format is 'has.DEVICENAME.device'.");
2866 }
else if (key ==
"parking.rerouteCount") {
2869 std::vector<std::string> values;
2871 if (key ==
"parking.memory.IDList") {
2873 values.push_back(item.first->getID());
2875 }
else if (key ==
"parking.memory.score") {
2877 values.push_back(item.second.score);
2879 }
else if (key ==
"parking.memory.blockedAtTime") {
2883 }
else if (key ==
"parking.memory.blockedAtTimeLocal") {
2888 error =
TLF(
"Unsupported parking parameter '%' for vehicle '%'.", key,
getID());
2970MSBaseVehicle::initMoveReminderOutput(
const OptionsCont& oc) {
2971 if (oc.
isSet(
"movereminder-output.vehicles")) {
2972 const std::vector<std::string> vehicles = oc.
getStringVector(
"movereminder-output.vehicles");
2973 myShallTraceMoveReminders.insert(vehicles.begin(), vehicles.end());
2979MSBaseVehicle::traceMoveReminder(
const std::string& type,
MSMoveReminder* rem,
double pos,
bool keep)
const {
std::vector< const MSEdge * > ConstMSEdgeVector
ConstMSEdgeVector::const_iterator MSRouteIterator
#define WRITE_WARNINGF(...)
#define WRITE_ERRORF(...)
#define WRITE_WARNING(msg)
std::shared_ptr< const MSRoute > ConstMSRoutePtr
std::string time2string(SUMOTime t, bool humanReadable)
convert SUMOTime to string (independently of global format setting)
bool isRailway(SVCPermissions permissions)
Returns whether an edge with the given permissions is a (exclusive) railway edge.
@ RANDOM
The edge is chosen randomly.
@ GIVEN
The edge index is given.
@ DEFAULT
No information given; use default.
const long long int VEHPARS_FORCE_REROUTE
DepartLaneDefinition
Possible ways to choose a lane on depart.
@ GIVEN
The speed is given.
@ GIVEN
The position is given.
@ DEFAULT
No information given; use default.
@ BASE
Back-at-zero position.
const long long int VEHPARS_CFMODEL_PARAMS_SET
@ RANDOM
The lane is chosen randomly.
@ GIVEN
The arrival lane is given.
@ FIRST_ALLOWED
The rightmost lane the vehicle may use.
std::vector< SUMOVehicleParameter::Stop > StopParVector
@ GIVEN
The speed is given.
const int STOP_INDEX_REPEAT
const long long int VEHPARS_PARKING_BADGES_SET
const long long int VEHPARS_JUNCTIONMODEL_PARAMS_SET
const long long int VEHPARS_SPEEDFACTOR_SET
@ RANDOM
The arrival position is chosen randomly.
@ GIVEN
The arrival position is given.
@ CENTER
Half the road length.
const long long int VEHPARS_LINE_SET
const long long int VEHPARS_INSERTION_CHECKS_SET
@ CONTAINER_TRIGGERED
The departure is container triggered.
@ TRIGGERED
The departure is person triggered.
@ SUMO_TAG_CLOSING_REROUTE
reroute of type closing
@ SUMO_TAG_VEHICLE
description of a vehicle
@ SUMO_TAG_PARKING_AREA
A parking area.
@ SUMO_ATTR_CF_IGNORE_IDS
@ SUMO_ATTR_JM_IGNORE_IDS
@ SUMO_ATTR_JM_IGNORE_TYPES
@ SUMO_ATTR_CF_IGNORE_TYPES
@ SUMO_ATTR_ARRIVALPOS_RANDOMIZED
@ SUMO_ATTR_TIME
trigger: the time of the step
const double INVALID_DOUBLE
invalid double
const double SUMO_const_haltingSpeed
the speed threshold at which vehicles are considered as halting
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
double getMax() const
Returns the maximum value of this distribution.
double getMin() const
Returns the minimum value of this distribution.
double getParameter(const int index) const
Returns the nth parameter of this distribution.
double getTransportableMass() const
Returns the mass of all transportables in the vehicle.
void setSecondary(const EnergyParams *secondaryParams)
Set secondary params.
void setTransportableMass(const double mass)
Sets the mass of all transportables in the vehicle.
static double computeNoise(SUMOEmissionClass c, double v, double a)
Returns the noise produced by the a vehicle of the given type at the given speed.
MESegment * getSegmentForEdge(const MSEdge &e, double pos=0)
Get the segment for a given edge at a given position.
virtual std::string getParameter(const std::string &key) const
try to retrieve the given parameter from this laneChangeModel. Throw exception for unsupported key
BaseInfluencer()
Constructor.
double getMaxSpeed() const
Returns the maximum speed (the minimum of desired and technical maximum speed)
bool haveValidStopEdges(bool silent=false) const
check whether all stop.edge MSRouteIterators are valid and in order
int myRoutingMode
routing mode (see TraCIConstants.h)
bool hasJump(const MSRouteIterator &it) const
check wether the vehicle has jump at the given part of its route
bool hasReminder(MSMoveReminder *rem) const
Checks whether the vehilce has the given MoveReminder.
static double addStopPriority(double p1, double p2)
std::list< MSStop > myStops
The vehicle's list of stops.
StoppingPlaceMemory * myParkingMemory
memory for parking search
double getImpatience() const
Returns this vehicles impatience.
void setSkips(MSStop &stop, int prevActiveStops)
patch stop.pars.index to record the number of skipped candidate edges before stop....
virtual ConstMSEdgeVector::const_iterator getRerouteOrigin() const
Returns the starting point for reroutes (usually the current edge)
const StoppingPlaceMemory * getParkingMemory() const
const std::vector< MSTransportable * > & getPersons() const
retrieve riding persons
virtual void initDevices()
void rememberParkingAreaScore(const MSStoppingPlace *pa, const std::string &score)
score only needed when running with gui
const MSEdge * succEdge(int nSuccs) const
Returns the nSuccs'th successor of edge the vehicle is currently at.
int getDepartEdge() const
Returns the edge on which this vehicle shall depart.
void resetRoutePosition(int index, DepartLaneDefinition departLaneProcedure)
reset index of edge within route
std::string getDeviceParameter(const std::string &deviceName, const std::string &key) const
try to retrieve the given parameter from any of the vehicles devices, raise InvalidArgument if no dev...
StoppingPlaceMemory * myChargingMemory
bool replaceStop(int nextStopIndex, SUMOVehicleParameter::Stop stop, const std::string &info, bool teleport, std::string &errorMsg)
int getLeavingPersonNumber() const
Returns the number of leaving persons.
MSBaseVehicle(SUMOVehicleParameter *pars, ConstMSRoutePtr route, MSVehicleType *type, const double speedFactor)
Constructor.
void calculateArrivalParams(bool onInit)
(Re-)Calculates the arrival position and lane from the vehicle parameters
virtual double getArrivalPos() const
Returns this vehicle's desired arrivalPos for its current route (may change on reroute)
void setCarFollowModelParameter(const std::string &key, const std::string &value)
set individual carFollow model parameters (not type related)
void setRoutingMode(int value)
Sets routing behavior.
void resetParkingAreaScores()
static NumericalID myCurrentNumericalIndex
bool rerouteBetweenStops(int nextStopIndex, const std::string &info, bool teleport, std::string &errorMsg)
MoveReminderCont myMoveReminders
Currently relevant move reminders.
void rememberChargingStationScore(const MSStoppingPlace *cs, const std::string &score)
int getInsertionChecks() const
double myDepartPos
The real depart position.
const SUMOVehicleParameter & getParameter() const
Returns the vehicle's parameter (including departure definition)
double getMaxChargeRate() const
Returns the maximum charge rate allowed by the battery in the current time step (W)
void replaceParameter(const SUMOVehicleParameter *newParameter)
replace the vehicle parameter (deleting the old one)
void rememberBlockedParkingArea(const MSStoppingPlace *pa, bool local)
int getNumberParkingReroutes() const
std::vector< MSVehicleDevice * > myDevices
The devices this vehicle has.
virtual const MSEdge * getCurrentEdge() const
Returns the edge the vehicle is currently at (possibly an internal edge)
double getPreviousSpeed() const
Returns the vehicle's previous speed.
MSStop & getNextStopMutable()
virtual void addTransportable(MSTransportable *transportable)
Adds a person or container to this vehicle.
virtual BaseInfluencer & getBaseInfluencer()=0
Returns the velocity/lane influencer.
const SUMOVehicleParameter::Stop * getNextStopParameter() const
return parameters for the next stop (SUMOVehicle Interface)
void rememberBlockedChargingStation(const MSStoppingPlace *cs, bool local)
virtual bool replaceRoute(ConstMSRoutePtr route, const std::string &info, bool onInit=false, int offset=0, bool addRouteStops=true, bool removeStops=true, std::string *msgReturn=nullptr)
Replaces the current route by the given one.
SUMOTime activateRemindersOnReroute(SUMOTime currentTime)
remove outdated driveways on reroute
double getOdometer() const
Returns the distance that was already driven by this vehicle.
virtual bool hasArrived() const
Returns whether this vehicle has already arived (by default this is true if the vehicle has reached i...
const NumericalID myNumericalID
bool isStoppedInRange(const double pos, const double tolerance, bool checkFuture=false) const
return whether the given position is within range of the current stop
bool isJumping() const
Returns whether the vehicle is perform a jump.
void checkRouteRemoval()
remove route at the end of the simulation
MSVehicleType & getSingularType()
Replaces the current vehicle type with a new one used by this vehicle only.
const MSVehicleType * myType
This vehicle's type.
const MSRouteIterator & getCurrentRouteEdge() const
Returns an iterator pointing to the current edge in this vehicles route.
bool isStoppedParking() const
Returns whether the vehicle is on a parking stop.
void unregisterWaiting()
mark vehicle as active
bool hasValidRoute(std::string &msg, ConstMSRoutePtr route=0) const
Validates the current or given route.
double getLength() const
Returns the vehicle's length.
bool isParking() const
Returns whether the vehicle is parking.
MSParkingArea * getCurrentParkingArea()
get the current parking area stop or nullptr
const MSEdge * getEdge() const
Returns the edge the vehicle is currently at.
double getHarmonoise_NoiseEmissions() const
Returns noise emissions of the current state.
int getPersonNumber() const
Returns the number of persons.
double getRelativeStateOfCharge() const
Returns actual relative state of charge of battery (-)
void setJunctionModelParameter(const std::string &key, const std::string &value)
set individual junction model paramete (not type related)
void setDepartAndArrivalEdge()
apply departEdge and arrivalEdge attributes
void setID(const std::string &newID)
set the id (inherited from Named but forbidden for vehicles)
ConstMSEdgeVector routeAlongStops(SUMOTime t, SUMOAbstractRouter< MSEdge, SUMOVehicle > &router, std::vector< StopEdgeInfo > &stops, ConstMSEdgeVector edges, int originStop, SUMOTime maxDelay, double &skippedPrio2) const
MSRouteIterator myCurrEdge
Iterator to current route-edge.
static MSLane * interpretOppositeStop(SUMOVehicleParameter::Stop &stop)
interpret stop lane on opposite side of the road
StopParVector myPastStops
The list of stops that the vehicle has already reached.
static std::vector< MSTransportable * > myEmptyTransportableVector
const std::vector< std::string > & getParkingBadges() const
get the valid parking access rights (vehicle settings override vehicle type settings)
ConstMSEdgeVector optimizeSkipped(SUMOTime t, SUMOAbstractRouter< MSEdge, SUMOVehicle > &router, const MSEdge *source, double sourcePos, std::vector< StopEdgeInfo > &stops, ConstMSEdgeVector edges, SUMOTime maxDelay) const
bool hasDeparted() const
Returns whether this vehicle has already departed.
bool ignoreTransientPermissions() const
Returns whether this object is ignoring transient permission changes (during routing)
virtual void resetApproachOnReroute()
reset rail signal approach information
ConstMSRoutePtr myRoute
This vehicle's route.
MSDevice_Transportable * myContainerDevice
The containers this vehicle may have.
void resetChargingStationScores()
bool allowsBoarding(const MSTransportable *t) const
whether the given transportable is allowed to board this vehicle
double getStateOfCharge() const
Returns actual state of charge of battery (Wh) RICE_CHECK: This may be a misnomer,...
MSEdgeWeightsStorage & _getWeightsStorage() const
virtual bool handleCollisionStop(MSStop &stop, const double distToStop)
bool hasDevice(const std::string &deviceName) const
check whether the vehicle is equiped with a device of the given name
void addReminder(MSMoveReminder *rem, double pos=0)
Adds a MoveReminder dynamically.
SUMOTime getDeparture() const
Returns this vehicle's real departure time.
SUMOTime sawBlockedChargingStation(const MSStoppingPlace *cs, bool local) const
EnergyParams * getEmissionParameters() const
retrieve parameters for the energy consumption model
double basePos(const MSEdge *edge) const
departure position where the vehicle fits fully onto the edge (if possible)
void setDeviceParameter(const std::string &deviceName, const std::string &key, const std::string &value)
try to set the given parameter from any of the vehicles devices, raise InvalidArgument if no device p...
MSDevice_Transportable * myPersonDevice
The passengers this vehicle may have.
bool hasStops() const
Returns whether the vehicle has to stop somewhere.
std::string getFlowID() const
reconstruct flow id from vehicle id
virtual void activateReminders(const MSMoveReminder::Notification reason, const MSLane *enteredLane=0)
"Activates" all current move reminder
bool isLineStop(double position) const
returns whether the vehicle serves a public transport line that serves the given stop
double myChosenSpeedFactor
A precomputed factor by which the driver wants to be faster than the speed limit.
const MSStop & getNextStop() const
@ ROUTE_INVALID
route was checked and is valid
@ ROUTE_START_INVALID_LANE
@ ROUTE_START_INVALID_PERMISSIONS
std::string getPrefixedParameter(const std::string &key, std::string &error) const
retrieve parameters of devices, models and the vehicle itself
void addStops(const bool ignoreStopErrors, MSRouteIterator *searchStart=nullptr, bool addRouteStops=true)
Adds stops to the built vehicle.
void removeTransportable(MSTransportable *t)
removes a person or container
SUMOTime sawBlockedParkingArea(const MSStoppingPlace *pa, bool local) const
SUMOVehicleClass getVClass() const
Returns the vehicle's access class.
MSParkingArea * getNextParkingArea()
get the upcoming parking area stop or nullptr
int myArrivalLane
The destination lane where the vehicle stops.
int getRouteValidity(bool update=true, bool silent=false, std::string *msgReturn=nullptr)
check for route validity at first insertion attempt
MSStop & getStop(int nextStopIndex)
virtual ~MSBaseVehicle()
Destructor.
bool insertStop(int nextStopIndex, SUMOVehicleParameter::Stop stop, const std::string &info, bool teleport, std::string &errorMsg)
SUMOTime myDeparture
The real departure time.
std::vector< std::string > getPersonIDList() const
Returns the list of persons.
const MSEdgeWeightsStorage & getWeightsStorage() const
Returns the vehicle's internal edge travel times/efforts container.
bool isStoppedTriggered() const
Returns whether the vehicle is on a triggered stop.
virtual bool resumeFromStopping()=0
virtual bool hasInfluencer() const =0
whether the vehicle is individually influenced (via TraCI or special parameters)
const std::set< SUMOTrafficObject::NumericalID > getUpcomingEdgeIDs() const
returns the numerical ids of edges to travel
bool stopsAtEdge(const MSEdge *edge) const
Returns whether the vehicle stops at the given edge.
bool addStop(const SUMOVehicleParameter::Stop &stopPar, std::string &errorMsg, SUMOTime untilOffset=0, MSRouteIterator *searchStart=nullptr)
Adds a stop.
double getChargedEnergy() const
Returns the energy charged to the battery in the current time step (Wh)
void onDepart()
Called when the vehicle is inserted into the network.
void removeReminder(MSMoveReminder *rem)
Removes a MoveReminder dynamically.
SUMOTime getStopDuration() const
get remaining stop duration or 0 if the vehicle isn't stopped
virtual double getAcceleration() const
Returns the vehicle's acceleration.
virtual bool addTraciStop(SUMOVehicleParameter::Stop stop, std::string &errorMsg)
const MSRoute & getRoute() const
Returns the current route.
int getRoutingMode() const
return routing mode (configures router choice but also handling of transient permission changes)
int getRoutePosition() const
return index of edge within route
bool replaceParkingArea(MSParkingArea *parkingArea, std::string &errorMsg)
replace the current parking area stop with a new stop with merge duration
static const SUMOTime NOT_YET_DEPARTED
SUMOTime getDepartDelay() const
Returns the depart delay.
double getElecHybridCurrent() const
Returns actual current (A) of ElecHybrid device RICE_CHECK: Is this the current consumed from the ove...
bool myAmRegisteredAsWaiting
Whether this vehicle is registered as waiting for a person or container (for deadlock-recognition)
SUMOAbstractRouter< MSEdge, SUMOVehicle > & getRouterTT() const
EnergyParams * myEnergyParams
The emission parameters this vehicle may have.
const SUMOVehicleParameter * myParameter
This vehicle's parameter.
virtual bool hasValidRouteStart(std::string &msg)
checks wether the vehicle can depart on the first edge
int myRouteValidity
status of the current vehicle route
std::vector< std::pair< int, double > > getStopIndices() const
return list of route indices for the remaining stops
SUMOTime myStopUntilOffset
The offset when adding route stops with 'until' on route replacement.
virtual bool isOnRoad() const
Returns the information whether the vehicle is on a road (is simulated)
const std::vector< MSTransportable * > & getContainers() const
retrieve riding containers
bool reroute(SUMOTime t, const std::string &info, SUMOAbstractRouter< MSEdge, SUMOVehicle > &router, const bool onInit=false, const bool withTaz=false, const bool silent=false, const MSEdge *sink=nullptr)
Performs a rerouting using the given router.
bool stopsAt(MSStoppingPlace *stop) const
Returns whether the vehicle stops at the given stopping place.
MSEdgeWeightsStorage * myEdgeWeights
const MSVehicleType & getVehicleType() const
Returns the vehicle's type definition.
void createDevice(const std::string &deviceName)
create device of the given type
bool isStopped() const
Returns whether the vehicle is at a stop.
MSDevice * getDevice(const std::type_info &type) const
Returns a device of the given type if it exists, nullptr otherwise.
bool abortNextStop(int nextStopIndex=0)
deletes the next stop at the given index if it exists
int myNumberReroutes
The number of reroutings.
double myArrivalPos
The position on the destination lane where the vehicle stops.
bool insertJump(int nextStopIndex, MSRouteIterator itStart, std::string &errorMsg)
helper function
virtual void saveState(OutputDevice &out)
Saves the (common) state of a vehicle.
virtual void replaceVehicleType(const MSVehicleType *type)
Replaces the current vehicle type by the one given.
std::vector< StopEdgeInfo > getStopEdges(double &firstPos, double &lastPos, std::set< int > &jumps) const
Returns the list of still pending stop edges also returns the first and last stop position.
double myOdometer
A simple odometer to keep track of the length of the route already driven.
void initTransientModelParams()
init model parameters from generic params
int getContainerNumber() const
Returns the number of containers.
bool replaceRouteEdges(ConstMSEdgeVector &edges, double cost, double savings, const std::string &info, bool onInit=false, bool check=false, bool removeStops=true, std::string *msgReturn=nullptr)
Replaces the current route by the given edges.
virtual std::string getParameter(const MSVehicle *veh, const std::string &key) const
try to get the given parameter for this carFollowingModel
virtual void setParameter(MSVehicle *veh, const std::string &key, const std::string &value) const
try to set the given parameter for this carFollowingModel
Battery device for electric vehicles.
double getActualBatteryCapacity() const
Get the actual vehicle's Battery Capacity in Wh.
double getMaximumChargeRate() const
Get current charge rate in W depending on the state of charge.
double getMaximumBatteryCapacity() const
Get the total vehicle's Battery Capacity in Wh.
double getEnergyCharged() const
Get charged energy.
A device which collects info on the vehicle trip (mainly on departure and arrival)
double getMaximumBatteryCapacity() const
Get the total vehicle's Battery Capacity in kWh.
double getCurrentFromOverheadWire() const
Get actual current in the overhead wire segment.
double getEnergyCharged() const
Get charged energy.
double getActualBatteryCapacity() const
Get the actual vehicle's Battery Capacity in kWh.
A device that performs vehicle rerouting based on current edge speeds.
bool notifyEnter(SUMOTrafficObject &veh, MSMoveReminder::Notification reason, const MSLane *enteredLane=0)
Computes a new route on vehicle insertion.
static void buildVehicleDevices(SUMOVehicle &v, std::vector< MSVehicleDevice * > &into)
Build devices for the given vehicle, if needed.
A device which collects info on the vehicle trip (mainly on departure and arrival)
bool allowsBoarding(const MSTransportable *t) const
whether the given person is allowed to board this taxi
const std::vector< MSTransportable * > & getTransportables() const
Returns the list of transportables using this vehicle.
static bool willTransferAtJoin(const MSTransportable *t, const MSBaseVehicle *joinVeh)
check if boardingDuration should be applied
static MSDevice_Transportable * buildVehicleDevices(SUMOVehicle &v, std::vector< MSVehicleDevice * > &into, const bool isContainer)
Build devices for the given vehicle, if needed.
int size() const
Return the number of passengers / containers.
void addTransportable(MSTransportable *transportable)
Add a passenger.
void removeTransportable(MSTransportable *transportable)
Remove a passenger (TraCI)
Abstract in-vehicle / in-person device.
static void buildVehicleDevices(SUMOVehicle &v, std::vector< MSVehicleDevice * > &into)
Build devices for the given vehicle, if needed.
A road/street connecting two junctions.
bool hasTransientPermissions() const
const std::vector< MSLane * > & getLanes() const
Returns this edge's lanes.
const MSEdge * getOppositeEdge() const
Returns the opposite direction edge if on exists else a nullptr.
const std::vector< MSLane * > * allowedLanes(const MSEdge &destination, SUMOVehicleClass vclass=SVC_IGNORING, bool ignoreTransientPermissions=false) const
Get the allowed lanes to reach the destination-edge.
bool isNormal() const
return whether this edge is an internal edge
double getLength() const
return the length of the edge
bool isTazConnector() const
bool isInternal() const
return whether this edge is an internal edge
static bool dictionary(const std::string &id, MSEdge *edge)
Inserts edge into the static dictionary Returns true if the key id isn't already in the dictionary....
const MSEdge * getNormalBefore() const
if this edge is an internal edge, return its first normal predecessor, otherwise the edge itself
MSLane * getFirstAllowed(SUMOVehicleClass vClass, bool defaultFirst=false) const
A storage for edge travel times and efforts.
virtual void addEvent(Command *operation, SUMOTime execTimeStep=-1)
Adds an Event.
static MELoop * gMesoNet
mesoscopic simulation infrastructure
static int gInsertionChecks
The default value for insertion checks.
static SUMOTime gTimeToImpatience
static bool gHaveEmissions
Whether emission output of some type is needed (files or GUI)
static bool gUseStopEnded
whether the simulation should replay previous stop times
void descheduleDeparture(const SUMOVehicle *veh)
stops trying to emit the given vehicle (and delete it)
Representation of a lane in the micro simulation.
int getRNGIndex() const
returns the associated RNG index
const MSEdge * getNextNormal() const
Returns the lane's follower if it is an internal lane, the edge of the lane otherwise.
double getLength() const
Returns the lane's length.
bool allowsVehicleClass(SUMOVehicleClass vclass) const
static bool dictionary(const std::string &id, MSLane *lane)
Static (sic!) container methods {.
SumoRNG * getRNG() const
return the associated RNG
MSEdge & getEdge() const
Returns the lane's edge.
Something on a lane to be noticed about vehicle movement.
virtual bool notifyEnter(SUMOTrafficObject &veh, Notification reason, const MSLane *enteredLane)
Checks whether the reminder is activated by a vehicle entering the lane.
const std::string & getDescription() const
Notification
Definition of a vehicle state.
@ NOTIFICATION_DEPARTED
The vehicle has departed (was inserted into the network)
const MSLane * getLane() const
Returns the lane the reminder works on.
bool warnOnce(const std::string &typeAndID)
return whether a warning regarding the given object shall be issued
@ NEWROUTE
The vehicle got a new route.
static MSNet * getInstance()
Returns the pointer to the unique instance of MSNet (singleton).
MSEventControl * getBeginOfTimestepEvents()
Returns the event control for events executed at the begin of a time step.
MSVehicleRouter & getRouterTT(int rngIndex, const Prohibitions &prohibited={}) const
SUMOTime getCurrentTimeStep() const
Returns the current simulation step.
static bool hasInstance()
Returns whether the network was already constructed.
MSStoppingPlace * getStoppingPlace(const std::string &id, const SumoXMLTag category) const
Returns the named stopping place of the given category.
void informVehicleStateListener(const SUMOVehicle *const vehicle, VehicleState to, const std::string &info="")
Informs all added listeners about a vehicle's state change.
MSInsertionControl & getInsertionControl()
Returns the insertion control.
MSVehicleControl & getVehicleControl()
Returns the vehicle control.
A lane area vehicles can halt at.
bool accepts(MSBaseVehicle *veh) const
Return the parking accepts the vehicle (due to its given badges)
static void storeTripId(const std::string &tripId, const std::string &vehID)
static bool hasInstance()
const ConstMSEdgeVector & getEdges() const
void setCosts(double costs)
Sets the costs of the route.
static bool hasRoute(const std::string &id)
returns whether a route with the given id exists
static bool dictionary(const std::string &id, ConstMSRoutePtr route)
Adds a route to the dictionary.
static void checkDist(const std::string &id)
Checks the distribution whether it is permanent and deletes it if not.
void setSavings(double savings)
Sets the savings of the route.
static MSVehicleRouter & getRouterTT(const int rngIndex, SUMOVehicleClass svc, const Prohibitions &prohibited={})
return the vehicle router instance
bool canLeaveVehicle(const MSTransportable *t, const SUMOVehicle &veh, const MSStop &stop)
checks whether the person may exit at the current vehicle position
const MSLane * lane
The lane to stop at (microsim only)
MSStoppingPlace * containerstop
(Optional) container stop if one is assigned to the stop
bool isOpposite
whether this an opposite-direction stop
void initPars(const SUMOVehicleParameter::Stop &stopPar)
initialize attributes from the given stop parameters
const MESegment * segment
The segment to stop at (mesosim only)
bool reached
Information whether the stop has been reached.
MSRouteIterator edge
The edge in the route to stop at.
double getEndPos(const SUMOVehicle &veh) const
return halting position for upcoming stop;
MSParkingArea * parkingarea
(Optional) parkingArea if one is assigned to the stop
MSStoppingPlace * chargingStation
(Optional) charging station if one is assigned to the stop
std::string getDescription() const
get a short description for showing in the gui
SUMOTime getUntil() const
return until / ended time
SUMOTime getArrival() const
return arrival / started time
const SUMOVehicleParameter::Stop pars
The stop parameter.
MSStoppingPlace * busstop
(Optional) bus stop if one is assigned to the stop
MSStoppingPlace * overheadWireSegment
(Optional) overhead wire segment if one is assigned to the stop
A lane area vehicles can halt at.
double getBeginLanePosition() const
Returns the begin position of this stop.
double getParkingLength() const
double getEndLanePosition() const
Returns the end position of this stop.
const MSLane & getLane() const
Returns the lane this stop is located at.
bool isPerson() const
Whether it is a person.
const MSVehicleType & getVehicleType() const
Returns the object's "vehicle" type.
static const double DEFAULT_MAXDELAY
void vehicleDeparted(const SUMOVehicle &v)
Informs this control about a vehicle's departure.
SUMOVehicle * getVehicle(const std::string &id) const
Returns the vehicle with the given id.
void removeVType(const MSVehicleType *vehType)
void unregisterOneWaiting()
decreases the count of vehicles waiting for a transport to allow recognition of person / container re...
Abstract in-vehicle device.
Representation of a vehicle in the micro simulation.
MSAbstractLaneChangeModel & getLaneChangeModel()
const MSCFModel & getCarFollowModel() const
Returns the vehicle's car following model definition.
The car-following model and parameter.
const EnergyParams * getEmissionParameters() const
retrieve parameters for the energy consumption model
SUMOVehicleClass getVehicleClass() const
Get this vehicle type's vehicle class.
double getMaxSpeed() const
Get vehicle's (technical) maximum speed [m/s].
double getDesiredMaxSpeed() const
Returns the vehicles's desired maximum speed.
const std::string & getID() const
Returns the name of the vehicle type.
const Distribution_Parameterized & getSpeedFactor() const
Returns this type's speed factor.
bool isVehicleSpecific() const
Returns whether this type belongs to a single vehicle only (was modified)
SUMOEmissionClass getEmissionClass() const
Get this vehicle type's emission class.
double getLength() const
Get vehicle's length [m].
double getMass() const
Get this vehicle type's mass.
double computeChosenSpeedDeviation(SumoRNG *rng, const double minDev=-1.) const
Computes and returns the speed deviation.
MSVehicleType * buildSingularType(const std::string &id) const
Duplicates the microsim vehicle type giving the newly created type the given id, marking it as vehicl...
const std::vector< std::string > & getParkingBadges() const
Returns the parking access rights of this type.
static std::string getIDSecure(const T *obj, const std::string &fallBack="NULL")
get an identifier for Named-like object which may be Null
const std::string & getID() const
Returns the id.
A storage for options typed value containers)
bool isSet(const std::string &name, bool failOnNonExistant=true) const
Returns the information whether the named option is set.
const StringVector & getStringVector(const std::string &name) const
Returns the list of string-value of the named option (only for Option_StringVector)
static OptionsCont & getOptions()
Retrieves the options.
Static storage of an output device and its base (abstract) implementation.
OutputDevice & writeAttr(const SumoXMLAttr attr, const T &val)
writes a named attribute
OutputDevice & openTag(const std::string &xmlElement)
Opens an XML tag.
static OutputDevice & getDeviceByOption(const std::string &name)
Returns the device described by the option.
int getPrecision()
Returns the precision of the underlying stream.
bool closeTag(const std::string &comment="")
Closes the most recently opened tag and optionally adds a comment.
void setPrecision(int precision=gPrecision)
Sets the precision or resets it to default.
virtual const std::string getParameter(const std::string &key, const std::string defaultValue="") const
Returns the value for a given key.
const Parameterised::Map & getParametersMap() const
Returns the inner key/value map.
static const RGBColor DEFAULT_COLOR
The default color (for vehicle types and vehicles)
static double rand(SumoRNG *rng=nullptr)
Returns a random real number in [0, 1)
bool computeLooped(const E *from, const E *to, const V *const vehicle, SUMOTime msTime, std::vector< const E * > &into, bool silent=false)
Builds the route between the given edges using the minimum effort at the given time if from == to,...
virtual bool compute(const E *from, const E *to, const V *const vehicle, SUMOTime msTime, std::vector< const E * > &into, bool silent=false)=0
Builds the route between the given edges using the minimum effort at the given time The definition of...
virtual double recomputeCosts(const std::vector< const E * > &edges, const V *const v, SUMOTime msTime, double *lengthp=nullptr) const
double recomputeCostsPos(const std::vector< const E * > &edges, const V *const v, double fromPos, double toPos, SUMOTime msTime, double *lengthp=nullptr) const
std::string getStringParam(const std::string ¶mName, const bool required=false, const std::string &deflt="") const
Retrieve a string parameter for the traffic object.
virtual const MSLane * getLane() const =0
Returns the lane the object is currently at.
long long int NumericalID
virtual double getSpeed() const =0
Returns the object's current speed.
virtual SUMOTime getWaitingTime(const bool accumulated=false) const =0
double getFloatParam(const std::string ¶mName, const bool required=false, const double deflt=INVALID_DOUBLE, bool checkDist=true) const
Retrieve a floating point parameter for the traffic object.
virtual double getPositionOnLane() const =0
Get the object's position along the lane.
Representation of a vehicle.
virtual bool isIdling() const =0
Returns whether the vehicle is idling (waiting to re-enter the net.
virtual double getBrakeGap(bool delayed=false) const =0
get distance for coming to a stop (used for rerouting checks)
Definition of vehicle stop (position and duration)
std::string edge
The edge to stop at.
ParkingType parking
whether the vehicle is removed from the net while stopping
std::string lane
The lane to stop at.
double speed
the speed at which this stop counts as reached (waypoint mode)
std::string parkingarea
(Optional) parking area if one is assigned to the stop
double startPos
The stopping position start.
int parametersSet
Information for the output which parameter were set.
int index
at which position in the stops list
SUMOTime jump
transfer time if there shall be a jump from this stop to the next route edge
SUMOTime until
The time at which the vehicle may continue its journey.
bool triggered
whether an arriving person lets the vehicle continue
SUMOTime ended
the time at which this stop was ended
double endPos
The stopping position end.
std::string tripId
id of the trip within a cyclical public transport route
bool containerTriggered
whether an arriving container lets the vehicle continue
bool collision
Whether this stop was triggered by a collision.
SUMOTime arrival
The (expected) time at which the vehicle reaches the stop.
SUMOTime duration
The stopping duration.
Structure representing possible vehicle parameter.
ArrivalSpeedDefinition arrivalSpeedProcedure
Information how the vehicle's end speed shall be chosen.
double departSpeed
(optional) The initial speed of the vehicle
std::string vtypeid
The vehicle's type id.
SUMOTime repetitionOffset
The time offset between vehicle reinsertions.
std::vector< std::string > via
List of the via-edges the vehicle must visit.
int repetitionsDone
The number of times the vehicle was already inserted.
ArrivalLaneDefinition arrivalLaneProcedure
Information how the vehicle shall choose the lane to arrive on.
long long int parametersSet
Information for the router which parameter were set, TraCI may modify this (when changing color)
void write(OutputDevice &dev, const OptionsCont &oc, const SumoXMLTag altTag=SUMO_TAG_VEHICLE, const std::string &typeID="") const
Writes the parameters as a beginning element.
int personNumber
The static number of persons in the vehicle when it departs (not including boarding persons)
RouteIndexDefinition arrivalEdgeProcedure
Information how the vehicle's final edge shall be chosen.
bool wasSet(long long int what) const
Returns whether the given parameter was set.
double departPos
(optional) The position the vehicle shall depart from
DepartSpeedDefinition departSpeedProcedure
Information how the vehicle's initial speed shall be chosen.
double arrivalPos
(optional) The position the vehicle shall arrive on
std::string routeid
The vehicle's route id.
std::string id
The vehicle's id.
std::vector< std::string > parkingBadges
The parking access rights.
std::vector< Stop > stops
List of the stops the vehicle will make, TraCI may add entries here.
int departEdge
(optional) The initial edge within the route of the vehicle
ArrivalPosDefinition arrivalPosProcedure
Information how the vehicle shall choose the arrival position.
std::string toTaz
The vehicle's destination zone (district)
double arrivalSpeed
(optional) The final speed of the vehicle (not used yet)
DepartDefinition departProcedure
Information how the vehicle shall choose the depart time.
int insertionChecks
bitset of InsertionCheck
int arrivalEdge
(optional) The final edge within the route of the vehicle
std::string fromTaz
The vehicle's origin zone (district)
DepartPosDefinition departPosProcedure
Information how the vehicle shall choose the departure position.
std::string line
The vehicle's line (mainly for public transport)
int containerNumber
The static number of containers in the vehicle when it departs.
RouteIndexDefinition departEdgeProcedure
Information how the vehicle's initial edge shall be chosen.
static std::string getEdgeIDFromLane(const std::string laneID)
return edge id when given the lane ID
static int getIndexFromLane(const std::string laneID)
return lane index when given the lane ID
void resetStoppingPlaceScores()
SUMOTime sawBlockedStoppingPlace(const MSStoppingPlace *stoppingPlace, bool local) const
Get the time the StoppingPlace was confirmed to be blocked.
void rememberStoppingPlaceScore(const MSStoppingPlace *stoppingPlace, const std::string &score)
score only needed when running with gui
void rememberBlockedStoppingPlace(const MSStoppingPlace *stoppingPlace, bool local)
Store the time the StoppingPlace was confirmed to be blocked.
int size() const
returns the number of existing substrings
std::string get(int pos) const
returns the item at the given position
static bool startsWith(const std::string &str, const std::string prefix)
Checks whether a given string starts with the prefix.
static bool endsWith(const std::string &str, const std::string suffix)
Checks whether a given string ends with the suffix.
static int toInt(const std::string &sData)
converts a string into the integer value described by it by calling the char-type converter,...
A wrapper for a Command function.
#define UNUSED_PARAMETER(x)
TRACI_CONST int ROUTING_MODE_AGGREGATED
TRACI_CONST int ROUTING_MODE_DEFAULT
TRACI_CONST int ROUTING_MODE_IGNORE_TRANSIENT_PERMISSIONS