44#define OPPOSITE_OVERTAKING_SAFE_TIMEGAP 0.0
45#define OPPOSITE_OVERTAKING_SAFETYGAP_HEADWAY_FACTOR 0.0
46#define OPPOSITE_OVERTAKING_SAFETY_FACTOR 1.2
48#define OPPOSITE_OVERTAKING_MAX_LOOKAHEAD 150.0
49#define OPPOSITE_OVERTAKING_MAX_LOOKAHEAD_EMERGENCY 1000.0
51#define OPPOSITE_OVERTAKING_ONCOMING_LOOKAHEAD 1000.0
53#define OPPOSITE_OVERTAKING_MAX_SPACE_TO_OVERTAKE 1000.0
54#define OPPOSITE_OVERTAKING_HILLTOP_THRESHOHOLD 5
57#define OPPOSITE_OVERTAKING_DEADLOCK_WAIT 1
73#define DEBUG_COND (vehicle->isSelected())
86 firstBlocked(nullptr),
88 ahead(_lane->getWidth()),
89 aheadNext(_lane->getWidth(), nullptr, 0.) {
95 lane->myTmpVehicles.insert(lane->myTmpVehicles.begin(), vehicle);
110 for (std::vector<MSLane*>::const_iterator lane = lanes->begin(); lane != lanes->end(); ++lane) {
112 myChanger.back().mayChangeRight = lane != lanes->begin();
113 myChanger.back().mayChangeLeft = (lane + 1) != lanes->end();
114 if ((*lane)->isInternal()) {
116 if (
myChanger.back().mayChangeRight && (*lane)->getLogicalPredecessorLane() == (*(lane - 1))->getLogicalPredecessorLane()) {
119 if (
myChanger.back().mayChangeLeft && (*lane)->getLogicalPredecessorLane() == (*(lane + 1))->getLogicalPredecessorLane()) {
123 if (
myChanger.back().mayChangeRight && (*lane)->getLength() != (*(lane - 1))->getLength()) {
127 if (
myChanger.back().mayChangeLeft && (*lane)->getLength() != (*(lane + 1))->getLength()) {
149 const bool haveChanged =
change();
156 ce->lane->releaseVehicles();
168 ce->hoppedVeh =
nullptr;
169 ce->lastBlocked =
nullptr;
170 ce->firstBlocked =
nullptr;
171 ce->lastStopped =
nullptr;
173 ce->lane->getVehiclesSecure();
187 if (!vehHasChanged) {
210 ce->lane->swapAfterLaneChange(t);
211 ce->lane->releaseVehicles();
221#ifdef DEBUG_CANDIDATE
222 std::cout <<
SIMTIME <<
" findCandidate() on edge " <<
myChanger.begin()->lane->getEdge().getID() << std::endl;
226 if (
veh(ce) ==
nullptr) {
229#ifdef DEBUG_CANDIDATE
230 std::cout <<
" lane = " << ce->lane->getID() <<
"\n";
234#ifdef DEBUG_CANDIDATE
240 assert(
veh(ce) != 0);
241 assert(
veh(max) != 0);
242 if (
veh(max)->getPositionOnLane() <
veh(ce)->getPositionOnLane()) {
243#ifdef DEBUG_CANDIDATE
250 assert(
veh(max) != 0);
257 if (direction == 0) {
264 if (direction == -1) {
265 return myCandi->mayChangeRight && (
myCandi - 1)->lane->allowsVehicleClass(svc) &&
myCandi->lane->allowsChangingRight(svc);
266 }
else if (direction == 1) {
267 return myCandi->mayChangeLeft && (
myCandi + 1)->lane->allowsVehicleClass(svc) &&
myCandi->lane->allowsChangingLeft(svc);
284#ifdef DEBUG_ACTIONSTEPS
299 myCandi->lastStopped = vehicle;
305#ifdef DEBUG_ACTIONSTEPS
307 std::cout <<
SIMTIME <<
" veh '" << vehicle->
getID() <<
"' skips regular change checks." << std::endl;
310 bool changed =
false;
334 for (
int i = 0; i < (int)
myChanger.size(); ++i) {
338 const std::vector<MSVehicle::LaneQ>& preb = vehicle->
getBestLanes();
349 (
myCandi - 1)->lastBlocked = vehicle;
350 if ((
myCandi - 1)->firstBlocked ==
nullptr) {
351 (
myCandi - 1)->firstBlocked = vehicle;
366 (
myCandi + 1)->lastBlocked = vehicle;
367 if ((
myCandi + 1)->firstBlocked ==
nullptr) {
368 (
myCandi + 1)->firstBlocked = vehicle;
413 <<
" veh=" << vehicle->
getID()
416 << ((newstate &
LCA_BLOCKED) != 0 ?
" (blocked)" :
"")
427 bool changed =
false;
429 const int dir = (state &
LCA_RIGHT) != 0 ? -1 : ((state &
LCA_LEFT) != 0 ? 1 : 0);
430 const bool execute = dir != 0 && ((state &
LCA_BLOCKED) == 0);
438 to->registerHop(vehicle);
460 to->registerHop(vehicle);
461 to->lane->requireCollisionCheck();
482 to->registerHop(vehicle);
486 from->registerHop(vehicle);
487 from->lane->requireCollisionCheck();
504#ifdef DEBUG_CONTINUE_CHANGE
507 <<
" continueChange veh=" << vehicle->
getID()
509 <<
" dir=" << direction
510 <<
" speedLat=" << speedLat
511 <<
" pastMidpoint=" << pastMidpoint
523std::pair<MSVehicle* const, double>
527#ifdef DEBUG_SURROUNDING_VEHICLES
529 std::cout <<
SIMTIME <<
" veh '" << vehicle->
getID() <<
"' looks for leader on lc-target lane '" << target->lane->getID() <<
"'." << std::endl;
535#ifdef DEBUG_SURROUNDING_VEHICLES
537 if (neighLead != 0) {
538 std::cout <<
"Considering '" << neighLead->
getID() <<
"' at position " << neighLead->
getPositionOnLane() << std::endl;
544 if (target->hoppedVeh !=
nullptr) {
545 double hoppedPos = target->hoppedVeh->getPositionOnLane();
546#ifdef DEBUG_SURROUNDING_VEHICLES
548 std::cout <<
"Considering hopped vehicle '" << target->hoppedVeh->getID() <<
"' at position " << hoppedPos << std::endl;
552 neighLead = target->hoppedVeh;
557 const bool checkBidi = target->lane->getBidiLane() !=
nullptr && target->lane->getBidiLane()->getVehicleNumberWithPartials() > 0;
558 if (neighLead ==
nullptr || checkBidi) {
559#ifdef DEBUG_SURROUNDING_VEHICLES
561 std::cout <<
"Looking for leader on consecutive lanes." << std::endl;
566 MSLane* targetLane = target->lane;
568 double leaderBack = targetLane->
getLength();
569 if (neighLead !=
nullptr) {
573 double plBack = pl->getBackPositionOnLane(targetLane);
574 if (pl->isBidiOn(targetLane)) {
575 plBack -= pl->getVehicleType().getLengthWithGap();
577 const double plPos = plBack + pl->getVehicleType().getLength();
578#ifdef DEBUG_SURROUNDING_VEHICLES
580 std::cout <<
" partial=" << pl->getID() <<
" plBack=" << plBack <<
" plPos=" << plPos <<
" leaderBack=" << leaderBack <<
" egoBack=" << egoBack <<
"\n";
583 if (plBack < leaderBack && plPos + pl->getVehicleType().getMinGap() >= egoBack) {
588 if (neighLead !=
nullptr) {
589#ifdef DEBUG_SURROUNDING_VEHICLES
591 std::cout <<
" found leader=" << neighLead->
getID() <<
" (partial)\n";
595 return std::pair<MSVehicle*, double>(neighLead, gap);
600 if (target->lane->getBidiLane() !=
nullptr) {
601 dist += target->lane->getBidiLane()->getMaximumBrakeDist();
604 if (seen > dist && !
myCandi->lane->isInternal()) {
605#ifdef DEBUG_SURROUNDING_VEHICLES
607 std::cout <<
" found no leader within dist=" << dist <<
"\n";
610 return std::pair<MSVehicle* const, double>(
static_cast<MSVehicle*
>(
nullptr), -1);
614 std::pair<MSVehicle* const, double> result = target->lane->getLeaderOnConsecutive(dist, seen, speed, *vehicle, bestLaneConts);
615#ifdef DEBUG_SURROUNDING_VEHICLES
622#ifdef DEBUG_SURROUNDING_VEHICLES
624 std::cout <<
" found leader=" << neighLead->
getID() <<
"\n";
632std::pair<MSVehicle* const, double>
636#ifdef DEBUG_SURROUNDING_VEHICLES
638 std::cout <<
SIMTIME <<
" veh '" << vehicle->
getID() <<
"' looks for follower on lc-target lane '" << target->lane->getID() <<
"'." << std::endl;
644 neighFollow =
veh(target);
647 if (target->lane->myVehicles.size() > 1) {
648 neighFollow = target->lane->myVehicles[target->lane->myVehicles.size() - 2];
652#ifdef DEBUG_SURROUNDING_VEHICLES
654 if (neighFollow != 0) {
655 std::cout <<
"veh(target) returns '" << neighFollow->
getID() <<
"' at position " << neighFollow->
getPositionOnLane() << std::endl;
657 std::cout <<
"veh(target) returns none." << std::endl;
663#ifdef DEBUG_SURROUNDING_VEHICLES
665 if (
getCloserFollower(candiPos, neighFollow, target->hoppedVeh) != neighFollow) {
666 std::cout <<
"Hopped vehicle '" << target->hoppedVeh->getID() <<
"' at position " << target->hoppedVeh->getPositionOnLane() <<
" is closer." << std::endl;
675#ifdef DEBUG_SURROUNDING_VEHICLES
678 if (partialBehind != 0 && partialBehind != neighFollow) {
679 std::cout <<
"'Partial behind'-vehicle '" << target->lane->getPartialBehind(vehicle)->getID() <<
"' at position " << partialBehind->
getPositionOnLane() <<
" is closer." << std::endl;
684 neighFollow =
getCloserFollower(candiPos, neighFollow, target->lane->getPartialBehind(vehicle));
686 if (neighFollow ==
nullptr) {
688#ifdef DEBUG_SURROUNDING_VEHICLES
690 if (consecutiveFollower.first == 0) {
691 std::cout <<
"no follower found." << std::endl;
693 std::cout <<
"found follower '" << consecutiveFollower.first->getID() <<
"' on consecutive lanes." << std::endl;
697 return std::make_pair(
const_cast<MSVehicle*
>(consecutiveFollower.first), consecutiveFollower.second);
699#ifdef DEBUG_SURROUNDING_VEHICLES
701 std::cout <<
"found follower '" << neighFollow->
getID() <<
"'." << std::endl;
704 return std::pair<MSVehicle* const, double>(neighFollow,
728 const std::pair<MSVehicle* const, double>& leader,
729 const std::vector<MSVehicle::LaneQ>& preb)
const {
734 if (neighLead.first !=
nullptr && neighLead.first == neighFollow.first) {
737 neighFollow.first = 0;
740 return checkChange(laneOffset, target->lane, leader, follower, neighLead, neighFollow, preb);
747 const std::pair<MSVehicle* const, double>& leader,
748 const std::pair<MSVehicle* const, double>& follower,
749 const std::pair<MSVehicle* const, double>& neighLead,
750 const std::pair<MSVehicle* const, double>& neighFollow,
751 const std::vector<MSVehicle::LaneQ>& preb)
const {
755#ifdef DEBUG_CHECK_CHANGE
758 <<
"\n" <<
SIMTIME <<
" checkChange() for vehicle '" << vehicle->
getID() <<
"'"
767 if (neighFollow.first !=
nullptr && neighFollow.second < 0) {
771#ifdef DEBUG_CHECK_CHANGE
774 <<
" overlapping with follower..."
780 if (neighLead.first !=
nullptr && neighLead.second < 0) {
783#ifdef DEBUG_CHECK_CHANGE
786 <<
" overlapping with leader..."
798 if ((blocked & blockedByFollower) == 0 && neighFollow.first !=
nullptr) {
806 const double vNextFollower = neighFollow.first->getSpeed() +
MAX2(0., tauRemainder * neighFollow.first->getAcceleration());
809 secureBackGap = neighFollow.first->getCarFollowModel().getSecureGap(neighFollow.first, vehicle, vNextFollower,
811#ifdef DEBUG_CHECK_CHANGE
814 <<
" follower=" << neighFollow.first->getID()
815 <<
" backGap=" << neighFollow.second
816 <<
" vNextFollower=" << vNextFollower
817 <<
" vNextEgo=" << vNextLeader
818 <<
" secureGap=" << secureBackGap
826 && neighFollow.first->getLaneChangeModel().getLastLaneChangeOffset() == laneOffset) {
831#ifdef DEBUG_CHECK_CHANGE
833 std::cout <<
" ignoring opposite follower who changed in this step\n";
837 blocked |= blockedByFollower;
843 if ((blocked & blockedByLeader) == 0 && neighLead.first !=
nullptr) {
852 const double vNextLeader = neighLead.first->getSpeed() +
MIN2(0., tauRemainder * neighLead.first->getAcceleration());
856#ifdef DEBUG_CHECK_CHANGE
859 <<
" leader=" << neighLead.first->getID()
860 <<
" frontGap=" << neighLead.second
861 <<
" vNextEgo=" << vNextFollower
862 <<
" vNextLeader=" << vNextLeader
863 <<
" secureGap=" << secureFrontGap
870 blocked |= blockedByLeader;
877 if (nextLeader.first != 0) {
881#ifdef DEBUG_CHECK_CHANGE
883 std::cout <<
SIMTIME <<
" pedestrian on road " + leader.first->getID() <<
" gap=" << gap <<
" brakeGap=" << brakeGap <<
"\n";
886 if (brakeGap > gap) {
887 blocked |= blockedByLeader;
888#ifdef DEBUG_CHECK_CHANGE
890 std::cout <<
SIMTIME <<
" blocked by pedestrian " + leader.first->getID() <<
"\n";
897 if (leader.first !=
nullptr) {
898 secureOrigFrontGap = vehicle->
getCarFollowModel().
getSecureGap(vehicle, leader.first, vehicle->
getSpeed(), leader.first->getSpeed(), leader.first->getCarFollowModel().getMaxDecel());
903 laneOffset, msg, blocked, leader, follower, neighLead, neighFollow, *targetLane, preb, &(
myCandi->lastBlocked), &(
myCandi->firstBlocked));
912 const double speed = vehicle->
getSpeed();
914 if (seen < dist || myCandi->lane->isInternal()) {
915 std::pair<MSVehicle* const, double> neighLead2 = targetLane->
getCriticalLeader(dist, seen, speed, *vehicle);
916 if (neighLead2.first !=
nullptr && neighLead2.first != neighLead.first) {
918 neighLead2.first->getSpeed(), neighLead2.first->getCarFollowModel().getMaxDecel());
920#ifdef DEBUG_SURROUNDING_VEHICLES
922 std::cout <<
SIMTIME <<
" found critical leader=" << neighLead2.first->getID()
923 <<
" gap=" << neighLead2.second <<
" secGap=" << secureGap <<
" secGap2=" << secureGap2 <<
"\n";
926 if (neighLead2.second < secureGap2) {
927 state |= blockedByLeader;
935 state |= blockedByLeader;
947 if (estimatedLCDuration == -1) {
949#ifdef DEBUG_CHECK_CHANGE
951 std::cout <<
SIMTIME <<
" checkChange() too slow to guarantee completion of continuous lane change."
952 <<
"\nestimatedLCDuration=" << estimatedLCDuration
953 <<
"\ndistToNeighLane=" << distToNeighLane
961 const double avgSpeed = 0.5 * (
965 const double space2change = avgSpeed * estimatedLCDuration;
968#ifdef DEBUG_CHECK_CHANGE
970 std::cout <<
SIMTIME <<
" checkChange() checking continuous lane change..."
971 <<
"\ndistToNeighLane=" << distToNeighLane
972 <<
" estimatedLCDuration=" << estimatedLCDuration
973 <<
" space2change=" << space2change
974 <<
" avgSpeed=" << avgSpeed
983 std::vector<MSLink*>::const_iterator link =
MSLane::succLinkSec(*vehicle, view, *nextLane, bestLaneConts);
984 while (!nextLane->
isLinkEnd(link) && seen <= space2change) {
988 || (nextLane->
getEdge().
isInternal() && (*link)->getViaLaneOrLane()->getEdge().isInternal())
993 if ((*link)->getViaLane() ==
nullptr) {
996 nextLane = (*link)->getViaLaneOrLane();
1001#ifdef DEBUG_CHECK_CHANGE
1003 std::cout <<
" available distance=" << seen << std::endl;
1006 if (nextLane->
isLinkEnd(link) && seen < space2change) {
1007#ifdef DEBUG_CHECK_CHANGE
1009 std::cout <<
SIMTIME <<
" checkChange insufficientSpace: seen=" << seen <<
" space2change=" << space2change <<
"\n";
1018 const double speed = vehicle->
getSpeed();
1020 nextLane = vehicle->
getLane();
1023 std::vector<MSLink*>::const_iterator nextLink =
MSLane::succLinkSec(*vehicle, view, *nextLane, bestLaneConts);
1024 while (!nextLane->
isLinkEnd(nextLink) && seen <= space2change && seen <= dist) {
1025 nextLane = (*nextLink)->getViaLaneOrLane();
1027 if (parallelLane ==
nullptr) {
1031 std::pair<MSVehicle* const, double> neighLead2 = parallelLane->
getLeader(vehicle, -seen, std::vector<MSLane*>());
1032 if (neighLead2.first !=
nullptr && neighLead2.first != neighLead.first
1034 vehicle->
getSpeed(), neighLead2.first->getSpeed(), neighLead2.first->getCarFollowModel().getMaxDecel()))) {
1035 state |= blockedByLeader;
1039 if ((*nextLink)->getViaLane() ==
nullptr) {
1049 const int oldstate = state;
1053#ifdef DEBUG_CHECK_CHANGE
1056 <<
" veh=" << vehicle->
getID()
1076 if (laneOffset != 0) {
1098 std::pair<MSVehicle*, double> neighLead(
nullptr, -1);
1099 std::pair<MSVehicle*, double> oncoming(
nullptr, -1);
1102 const int bestOffset = preb[laneIndex].bestLaneOffset;
1113 const double timeToStop =
MAX2(timeToStopForward, timeToStopLateral);
1117 const double searchDist = timeToStop * oncomingLane->
getSpeedLimit() * 2 + spaceToStop;
1125 double oncomingSpeed;
1126 const double surplusGap =
computeSurplusGap(vehicle, opposite, oncoming, timeToStop, spaceToStop, oncomingSpeed);
1127 if (!isOpposite && surplusGap < 0) {
1128#ifdef DEBUG_CHANGE_OPPOSITE
1130 std::cout <<
" cannot changeOppositeStop due to dangerous oncoming spaceToStop=" << spaceToStop
1131 <<
" timeToStopForward=" << timeToStopForward <<
" timeToStopLateral=" << timeToStopLateral <<
" surplusGap=" << surplusGap <<
"\n";
1137 if (bestOffset > 0) {
1138 MSLane*
const target = preb[laneIndex + 1].lane;
1150std::vector<MSVehicle::LaneQ>
1157 const std::vector<MSLane*>& oLanes = opposite->
getLanes();
1158 std::vector<MSVehicle::LaneQ> preb = vehicle->
getBestLanes();
1159 for (
int i = 0; i < numOpposite; i++) {
1160 preb.push_back(preb.back());
1161 preb.back().lane = oLanes[numOpposite - 1 - i];
1162 preb.back().length = oppositeLength;
1164 preb.back().bestLaneOffset = -1 - i;
1168 if (stopLane !=
nullptr) {
1169 const int stopIndex = numForward + numOpposite - stopLane->
getIndex() - 1;
1170 for (
int i = 0; i < (int)preb.size(); i++) {
1171 preb[i].bestLaneOffset = stopIndex - i;
1176#ifdef DEBUG_CHANGE_OPPOSITE
1178 std::cout <<
SIMTIME <<
" getBestLanesOpposite " << vehicle->
getID() <<
" isOpposite=" << isOpposite <<
"\n";
1179 for (
int i = 0; i < (int)preb.size(); i++) {
1180 std::cout <<
" i=" << i <<
" lane=" << preb[i].lane->getID() <<
" bestOffset=" << preb[i].bestLaneOffset <<
" length=" << preb[i].length <<
"\n";
1198#ifdef DEBUG_CHANGE_OPPOSITE
1201 std::cout <<
SIMTIME <<
" veh=" << vehicle->
getID() <<
" considerChangeOpposite source=" << source->
getID()
1206 if (opposite ==
nullptr) {
1216 bool oppositeChangeByTraci =
false;
1219 if (isOpposite && (ret &
LCA_LEFT) != 0) {
1223 oppositeChangeByTraci =
true;
1227#ifdef DEBUG_CHANGE_OPPOSITE
1229 std::cout <<
" not overtaking due to changeLeft restriction\n";
1240 const MSLane* oncomingLane = isOpposite ? source : opposite;
1243 int direction = isOpposite ? -1 : 1;
1244 std::pair<MSVehicle*, double> neighLead(
nullptr, -1);
1247 double surplusGap = std::numeric_limits<double>::max();
1256 std::pair<MSVehicle*, double> overtaken(
nullptr, -1);
1258 std::pair<MSVehicle*, double> oncoming(
nullptr, -1);
1260 std::pair<MSVehicle*, double> oncomingOpposite(
nullptr, -1);
1271 if (!isOpposite && leader.first ==
nullptr && !oppositeChangeByTraci) {
1277 if (!isOpposite && !oppositeChangeByTraci
1279 && leader.first !=
nullptr) {
1284#ifdef DEBUG_CHANGE_OPPOSITE
1286 std::cout <<
" not overtaking leader " << leader.first->getID() <<
" that has blinker set\n";
1292 resolveDeadlock(vehicle, leader, neighLead, std::make_pair(lastStopped, lastStoppedGap));
1295 }
else if (leader.second < 0) {
1297#ifdef DEBUG_CHANGE_OPPOSITE
1299 std::cout <<
" not overtaking leader " << leader.first->getID() <<
" with gap " << leader.second <<
"\n";
1307 double timeToOvertake = std::numeric_limits<double>::max();
1308 double spaceToOvertake = std::numeric_limits<double>::max();
1309 double maxSpaceToOvertake = 0;
1311 if (oppositeChangeByTraci) {
1321 if (overtaken.first ==
nullptr && neighLead.first !=
nullptr) {
1322 overtaken = neighLead;
1324 if (overtaken.first !=
nullptr) {
1327#ifdef DEBUG_CHANGE_OPPOSITE
1329 std::cout <<
" leaderOnSource=" <<
Named::getIDSecure(oncoming.first) <<
" gap=" << oncoming.second <<
"\n";
1330 std::cout <<
" leaderOnTarget=" <<
Named::getIDSecure(neighLead.first) <<
" gap=" << neighLead.second <<
"\n";
1331 std::cout <<
" overtaken=" <<
Named::getIDSecure(overtaken.first) <<
" gap=" << overtaken.second <<
"\n";
1338 if (overtaken.first == 0) {
1341#ifdef DEBUG_CHANGE_OPPOSITE
1343 std::cout <<
" no leader found\n";
1348 resolveDeadlock(vehicle, leader, neighLead, std::make_pair(
nullptr, leader.second));
1353#ifdef DEBUG_CHANGE_OPPOSITE
1355 std::cout <<
" compute time/space to overtake for columnLeader=" << overtaken.first->getID() <<
" egoGap=" << overtaken.second <<
"\n";
1363 computeOvertakingTime(vehicle, vMax, overtaken.first, overtaken.second, timeToOvertake, spaceToOvertake);
1364#ifdef DEBUG_CHANGE_OPPOSITE
1367 <<
" veh=" << vehicle->
getID()
1368 <<
" changeOpposite opposite=" << opposite->
getID()
1370 <<
" maxSpaceToOvertake=" << maxSpaceToOvertake
1372 <<
" timeToOvertake=" << timeToOvertake
1373 <<
" spaceToOvertake=" << spaceToOvertake
1379#ifdef DEBUG_CHANGE_OPPOSITE
1381 std::cout <<
" cannot changeOpposite (cannot overtake fast leader " <<
Named::getIDSecure(overtaken.first) <<
" v=" << overtaken.first->getSpeed() <<
")\n";
1389 if (!wait && lastStopped !=
nullptr) {
1391#ifdef DEBUG_CHANGE_OPPOSITE
1393 std::cout <<
" lastStopped=" <<
Named::getIDSecure(lastStopped) <<
" gap=" << lastStoppedGap <<
"\n";
1396 avoidDeadlock(vehicle, neighLead, std::make_pair(lastStopped, lastStoppedGap), leader);
1405 assert(timeToOvertake != std::numeric_limits<double>::max());
1406 assert(spaceToOvertake != std::numeric_limits<double>::max());
1409 double searchDist = timeToOvertake * oncomingLane->
getSpeedLimit() * 2 + spaceToOvertake;
1416 oncoming =
getOncomingVehicle(oncomingLane, oncoming, searchDist, vMax, overtaken.first);
1419 if (oncoming.first !=
nullptr && (oncoming.first->isStopped()
1422 const double oncomingGap = oncoming.second - oncoming.first->getVehicleType().getMinGap();
1423 if (oncomingGap > 0) {
1426#ifdef DEBUG_CHANGE_OPPOSITE
1428 std::cout <<
" oncoming=" << oncoming.first->getID() <<
" stopped=" << oncoming.first->isStopped()
1429 <<
" halting=" << oncoming.first->getWaitingSeconds()
1430 <<
" oncomingGap=" << oncomingGap
1432 <<
" vMax=" << vMax <<
"\n";
1439 computeOvertakingTime(vehicle, vMax, overtaken.first, overtaken.second, timeToOvertake, spaceToOvertake);
1440#ifdef DEBUG_CHANGE_OPPOSITE
1442 std::cout <<
" recomputed overtaking time with vMax=" << vMax
1443 <<
" timeToOvertake=" << timeToOvertake
1444 <<
" spaceToOvertake=" << spaceToOvertake
1451#ifdef DEBUG_CHANGE_OPPOSITE
1453 std::cout <<
" cannot changeOpposite (check2: cannot overtake fast leader " <<
Named::getIDSecure(overtaken.first) <<
" v=" << overtaken.first->getSpeed() <<
")\n";
1461#ifdef DEBUG_CHANGE_OPPOSITE
1463 std::cout <<
" cannot changeOpposite due to upcoming stop (dist=" << vehicle->
nextStopDist() <<
" spaceToOvertake=" << spaceToOvertake <<
")\n";
1468 assert(timeToOvertake != std::numeric_limits<double>::max());
1469 assert(spaceToOvertake != std::numeric_limits<double>::max());
1473 surplusGap =
computeSurplusGap(vehicle, opposite, oncoming, timeToOvertake, spaceToOvertake, oncomingSpeed);
1474 if (oncomingOpposite.first !=
nullptr) {
1475 double oncomingSpeed2;
1476 const double conservativeTime = ceil(timeToOvertake /
TS) *
TS;
1478 const double surplusGap2 =
computeSurplusGap(vehicle, opposite, oncomingOpposite, conservativeTime, conservativeSpace, oncomingSpeed2,
true);
1479#ifdef DEBUG_CHANGE_OPPOSITE
1481 std::cout <<
" oncomingOpposite=" << oncomingOpposite.first->getID() <<
" speed=" << oncomingSpeed2 <<
" gap=" << oncomingOpposite.second <<
" surplusGap2=" << surplusGap2 <<
"\n";
1484 surplusGap =
MIN2(surplusGap, surplusGap2);
1485 oncomingSpeed =
MAX2(oncomingSpeed, oncomingSpeed2);
1486 if (!isOpposite && surplusGap >= 0 && oncoming.first !=
nullptr && oncoming.first->isStopped()
1487 && oncomingOpposite.second > oncoming.second) {
1491 const double oSpeed =
MAX2(oncomingOpposite.first->getSpeed(), NUMERICAL_EPS);
1494 + oncomingOpposite.first->getLane()->getVehicleMaxSpeed(oncomingOpposite.first));
1495 const double ooSTO = oncomingOpposite.second - oncoming.second + oncomingOpposite.first->getVehicleType().getLengthWithGap();
1496 double ooTTO = ooSTO / oSpeed;
1498 ooTTO = ceil(ooTTO /
TS) *
TS;
1499 const double surplusGap3 = oncomingOpposite.second - ooTTO * closingSpeed;
1500#ifdef DEBUG_CHANGE_OPPOSITE
1502 std::cout <<
" oSpeed=" << oSpeed <<
" ooSTO=" << ooSTO <<
" ooTTO=" << ooTTO <<
" surplusGap3=" << surplusGap3 <<
"\n";
1505 surplusGap =
MIN2(surplusGap, surplusGap3);
1508 if (!isOpposite && surplusGap < 0) {
1509#ifdef DEBUG_CHANGE_OPPOSITE
1511 std::cout <<
" cannot changeOpposite due to dangerous oncoming (surplusGap=" << surplusGap <<
")\n";
1515#ifdef DEBUG_CHANGE_OPPOSITE
1517 if (oncoming.first->getLaneChangeModel().isOpposite()) {
1518 std::cout <<
SIMTIME <<
" ego=" << vehicle->
getID() <<
" does not changeOpposite due to dangerous oncoming " << oncoming.first->getID() <<
" (but the leader is also opposite)\n";
1530 if (usableDist < spaceToOvertake) {
1533 assert(bestLaneConts.size() >= 1);
1534 std::vector<MSLane*>::const_iterator it = bestLaneConts.begin() + 1;
1535 while (usableDist < spaceToOvertake && it != bestLaneConts.end()) {
1536#ifdef DEBUG_CHANGE_OPPOSITE
1538 std::cout <<
" usableDist=" << usableDist <<
" opposite=" <<
Named::getIDSecure((*it)->getOpposite()) <<
"\n";
1541 if ((*it)->getOpposite() ==
nullptr || !(*it)->getOpposite()->allowsVehicleClass(vehicle->
getVClass())) {
1546 const MSLane*
const prev = *(it - 1);
1547 if (prev !=
nullptr) {
1556#ifdef DEBUG_CHANGE_OPPOSITE
1558 std::cout <<
" stop lookahead at link=" << (link == 0 ?
"NULL" : link->
getViaLaneOrLane()->
getID()) <<
" state=" << (link == 0 ?
"?" :
toString(link->getState())) <<
" ignoreRed=" << vehicle->
ignoreRed(link,
true) <<
"\n";
1564 usableDist += (*it)->getLength();
1568 if (!isOpposite && usableDist < spaceToOvertake) {
1569#ifdef DEBUG_CHANGE_OPPOSITE
1571 std::cout <<
" cannot changeOpposite due to insufficient space (seen=" << usableDist <<
" spaceToOvertake=" << spaceToOvertake <<
")\n";
1580 bool foundHill = vehicle->
getSlope() > 0;
1585#ifdef DEBUG_CHANGE_OPPOSITE
1587 std::cout <<
" usableDist=" << usableDist <<
" spaceToOvertake=" << spaceToOvertake <<
" timeToOvertake=" << timeToOvertake <<
"\n";
1592 double oppositeLength = vehicle->
getBestLanes().back().length;
1595 oppositeLength =
computeSafeOppositeLength(vehicle, oppositeLength, source, usableDist, oncoming, vMax, oncomingSpeed, neighLead, overtaken, neighFollow, surplusGap, opposite, canOvertake);
1596 leader.first =
nullptr;
1597 if (neighLead.first !=
nullptr && neighLead.first->getLaneChangeModel().isOpposite()) {
1599 neighLead.first =
nullptr;
1604#ifdef DEBUG_CHANGE_OPPOSITE
1606 std::cout <<
" not changing to avoid deadlock\n";
1611 if (neighLead.first !=
nullptr && neighLead.first->isStopped()) {
1617 if (oncoming.first !=
nullptr && oncoming.first != neighLead.first && oncoming.first->isStopped()) {
1625 return checkChangeOpposite(vehicle, direction, opposite, leader, neighLead, neighFollow, preb);
1631 std::pair<MSVehicle*, double> neighLead,
1632 std::pair<MSVehicle*, double> overtaken,
1633 std::pair<MSVehicle*, double> leader) {
1635#ifdef DEBUG_CHANGE_OPPOSITE_DEADLOCK
1637 std::cout <<
SIMTIME <<
" veh=" << vehicle->
getID() <<
" avoidDeadlock"
1644 if (leader.first ==
nullptr || neighLead.first ==
nullptr || overtaken.first ==
nullptr) {
1646 }
else if (!neighLead.first->isStopped()
1650 auto neighLeadFollow = neighLead.first->getFollower(overtaken.second);
1651 neighLead.second += neighLead.first->getVehicleType().getLengthWithGap() + neighLeadFollow.second;
1652 neighLead.first =
const_cast<MSVehicle*
>(neighLeadFollow.first);
1653#ifdef DEBUG_CHANGE_OPPOSITE_DEADLOCK
1655 std::cout <<
" neighLead follower=" <<
Named::getIDSecure(neighLeadFollow.first) <<
"\n";
1658 if (neighLead.first ==
nullptr) {
1665 if (neighLead.first->isStopped()
1666 && (overtaken.first->isStopped()
1667 || leader.first->getLaneChangeModel().isOpposite()
1672 requiredGap =
MAX2(requiredGap, overtaken.first->getVehicleType().getLengthWithGap());
1673 requiredGap =
MAX2(requiredGap, leader.first->getVehicleType().getLengthWithGap());
1675 const double distToStop = neighLead.second - requiredGap;
1679 while (neighLead.first !=
nullptr && neighLead.first->isStopped()) {
1680 const double nextGap = neighLead.second + neighLead.first->getVehicleType().getLengthWithGap();
1681 if (neighStoppedBack + nextGap > overtaken.second) {
1684 neighStoppedBack += nextGap;
1685 auto neighLeadFollow = neighLead.first->getFollower();
1686 neighLead.second = neighLeadFollow.second;
1687 neighLead.first =
const_cast<MSVehicle*
>(neighLeadFollow.first);
1688#ifdef DEBUG_CHANGE_OPPOSITE_DEADLOCK
1693 if (neighStoppedBack > overtaken.second) {
1698 const double leaderBGap = leader.first->
getBrakeGap();
1699 const double leaderFGap = leader.first->getLane()->getLeader(leader.first, leader.first->getPositionOnLane(), vehicle->
getBestLanesContinuation(), overtaken.second,
true).second;
1700 const double extraGap =
MAX2(leaderBGap, leaderFGap);
1702#ifdef DEBUG_CHANGE_OPPOSITE_DEADLOCK
1704 std::cout <<
SIMTIME <<
" veh=" << vehicle->
getID() <<
" avoidDeadlock"
1705 <<
" neighLeadGap=" << neighLead.second
1706 <<
" leaderGap=" << leader.second
1707 <<
" bGap=" << leaderBGap
1708 <<
" fGap=" << leaderFGap
1709 <<
" eGap=" << extraGap
1710 <<
" neighStoppedBack=" << neighStoppedBack
1712 <<
" requiredGap=" << requiredGap
1713 <<
" gapWithEgo=" << gapWithEgo
1714 <<
" yield=" << yield
1719 if (leader.first->getLaneChangeModel().isOpposite() || yield || gapWithEgo < requiredGap) {
1720 const std::vector<MSVehicle::LaneQ>& preb = vehicle->
getBestLanes();
1721 const double currentDist = preb[vehicle->
getLane()->
getIndex()].length;
1723#ifdef DEBUG_CHANGE_OPPOSITE_DEADLOCK
1725 std::cout <<
" currentDist=" << currentDist <<
" stopPos=" << stopPos <<
" lGap+eGap=" << leader.second + extraGap <<
" distToStop=" << distToStop <<
"\n";
1728 if (leader.second + leaderBGap + leader.first->getLength() > distToStop) {
1729 const double blockerLength = currentDist - stopPos;
1731#ifdef DEBUG_CHANGE_OPPOSITE_DEADLOCK
1733 std::cout <<
SIMTIME <<
" veh=" << vehicle->
getID() <<
" avoidDeadlock"
1734 <<
" blockerLength=" << blockerLength
1735 <<
" reserved=" << reserved
1753 std::pair<const MSVehicle*, double> follower = stoppedNeigh->
getFollower(dist);
1755 while (follower.first !=
nullptr && followerGap < dist && follower.first->isStopped()) {
1756 followerGap += follower.second + follower.first->getVehicleType().getLengthWithGap();
1757 follower = follower.first->getFollower(dist);
1759 if (follower.first !=
nullptr) {
1760 followerGap += follower.second;
1762#ifdef DEBUG_CHANGE_OPPOSITE_DEADLOCK
1764 std::cout <<
SIMTIME <<
" veh=" << vehicle->
getID() <<
" yieldToDeadlockOncoming"
1765 <<
" dist=" << dist <<
" follower=" <<
Named::getIDSecure(follower.first) <<
" fGap=" << followerGap
1769 return follower.first !=
nullptr && followerGap < dist && !follower.first->isStopped();
1777 std::pair<const MSVehicle*, double> follower = stoppedNeigh->
getFollower(dist);
1778 while (follower.first !=
nullptr && follower.second < dist && follower.first->isStopped()) {
1779 follower = follower.first->getFollower(dist);
1781#ifdef DEBUG_CHANGE_OPPOSITE_DEADLOCK
1782 if (
DEBUG_COND && follower.first !=
nullptr) {
1783 std::cout <<
SIMTIME <<
" yieldToOppositeWaiting veh=" << vehicle->
getID() <<
" stoppedNeigh=" << stoppedNeigh->
getID()
1784 <<
" oncoming=" << follower.first->getID()
1785 <<
" wait=" << follower.first->getWaitingSeconds()
1791 if (follower.first !=
nullptr && follower.second < dist && follower.first->getWaitingTime() > vehicle->
getWaitingTime() + deltaWait) {
1800 std::pair<MSVehicle* const, double> leader,
1801 std::pair<MSVehicle*, double> neighLead,
1802 std::pair<MSVehicle*, double> overtaken) {
1803 const double deadLockZone = overtaken.second;
1804#ifdef DEBUG_CHANGE_OPPOSITE_DEADLOCK
1808 <<
" gap=" << leader.second
1817 std::pair<MSVehicle* const, double> oncomingOpposite =
getOncomingOppositeVehicle(vehicle, std::make_pair(
nullptr, -1), leader.second);
1818#ifdef DEBUG_CHANGE_OPPOSITE_DEADLOCK
1820 std::cout <<
SIMTIME <<
" veh=" << vehicle->
getID() <<
" resolveDeadlock"
1821 <<
" leader=" << leader.first->getID()
1822 <<
" leaderGap=" << leader.second
1824 <<
" deadLockZone=" << deadLockZone
1828 if (neighLead.first !=
nullptr && !neighLead.first->isStopped()) {
1831 auto neighLeadFollow = neighLead.first->getFollower(deadLockZone);
1832 neighLead.second += neighLead.first->getVehicleType().getLengthWithGap() + neighLeadFollow.second;
1833 neighLead.first =
const_cast<MSVehicle*
>(neighLeadFollow.first);
1834#ifdef DEBUG_CHANGE_OPPOSITE_DEADLOCK
1836 std::cout <<
" neighLead follower=" <<
Named::getIDSecure(neighLeadFollow.first) <<
"\n";
1841 if (oncomingOpposite.first !=
nullptr ||
1842 (neighLead.first !=
nullptr && neighLead.first->isStopped()
1844 const std::vector<MSVehicle::LaneQ>& preb = vehicle->
getBestLanes();
1845 const double currentDist = preb[vehicle->
getLane()->
getIndex()].length;
1849#ifdef DEBUG_CHANGE_OPPOSITE_DEADLOCK
1851 std::cout <<
SIMTIME <<
" veh=" << vehicle->
getID() <<
" resolveDeadlock"
1852 <<
" leader=" << leader.first->getID()
1853 <<
" leaderGap=" << leader.second
1855 <<
" currentDist=" << currentDist
1856 <<
" blockerLength=" << blockerLength
1857 <<
" reserved=" << reserved
1872 std::pair<MSVehicle*, double> oncoming,
double vMax,
double oncomingSpeed,
1873 std::pair<MSVehicle*, double> neighLead,
1874 std::pair<MSVehicle*, double> overtaken,
1875 std::pair<MSVehicle*, double> neighFollow,
1876 double surplusGap,
const MSLane* opposite,
1886 oppositeLength =
MIN2(oppositeLength, usableDist + forwardPos);
1888 oppositeLength =
MIN2(oppositeLength, vehicle->
nextStopDist() + forwardPos);
1889#ifdef DEBUG_CHANGE_OPPOSITE
1891 std::cout <<
" laneQLength=" << oppositeLength <<
" usableDist=" << usableDist <<
" forwardPos=" << forwardPos <<
" stopDist=" << vehicle->
nextStopDist() <<
"\n";
1895 const MSVehicle* oncomingVeh = oncoming.first;
1896 if (oncomingVeh != 0) {
1898 double egoSpeedFraction = 0.5;
1899 if (oncomingSpeed > 0) {
1900 egoSpeedFraction =
MIN2(egoSpeedFraction, vMax / (vMax + oncomingSpeed));
1902 oppositeLength =
MIN2(oppositeLength, forwardPos + oncoming.second * egoSpeedFraction);
1903#ifdef DEBUG_CHANGE_OPPOSITE
1905 std::cout <<
SIMTIME <<
" found oncoming leader=" << oncomingVeh->
getID() <<
" gap=" << oncoming.second
1906 <<
" egoSpeedFraction=" << egoSpeedFraction <<
" newDist=" << oppositeLength <<
"\n";
1910#ifdef DEBUG_CHANGE_OPPOSITE
1912 std::cout <<
SIMTIME <<
" opposite leader=" << oncomingVeh->
getID() <<
" gap=" << oncoming.second <<
" is driving against the flow\n";
1916 if (neighLead.first !=
nullptr) {
1917 if (overtaken.first ==
nullptr) {
1918#ifdef DEBUG_CHANGE_OPPOSITE
1920 std::cout <<
SIMTIME <<
" ego=" << vehicle->
getID() <<
" did not find columnleader to overtake\n";
1923 }
else if (oncomingVeh !=
nullptr && oncomingVeh->
isStopped()
1924 && neighLead.second > 0
1925 && neighFollow.second > 0
1928 oppositeLength = forwardPos + neighLead.second;
1930 if (surplusGap > 0) {
1933 oppositeLength += 1000;
1936 if (overtaken.second > 0) {
1937 oppositeLength =
MIN2(oppositeLength, forwardPos + overtaken.second);
1942#ifdef DEBUG_CHANGE_OPPOSITE
1944 std::cout <<
SIMTIME <<
" ego=" << vehicle->
getID() <<
" is overtaking " << overtaken.first->getID()
1945 <<
" surplusGap=" << surplusGap
1946 <<
" final laneQLength=" << oppositeLength
1953 if (overtaken.first ==
nullptr || !canOvertake) {
1956 if (oppFollow.first ==
nullptr) {
1957 oppositeLength = forwardPos;
1959 const double secureGap = oppFollow.first->getCarFollowModel().getSecureGap(
1961#ifdef DEBUG_CHANGE_OPPOSITE
1963 std::cout <<
SIMTIME <<
" ego=" << vehicle->
getID() <<
" neighFollow=" << oppFollow.first->getID() <<
" gap=" << oppFollow.second <<
" secureGap=" << secureGap <<
"\n";
1966 if (oppFollow.second > secureGap) {
1968 oppositeLength = forwardPos;
1973#ifdef DEBUG_CHANGE_OPPOSITE
1975 std::cout <<
SIMTIME <<
" veh=" << vehicle->
getID() <<
" remaining dist=" << oppositeLength - forwardPos <<
" forwardPos=" << forwardPos <<
" oppositeLength=" << oppositeLength <<
"\n";
1978 return oppositeLength;
1982std::pair<MSVehicle* const, double>
1985 double gap = oncoming.second;
1986 while (oncoming.first !=
nullptr && (oncoming.first->getLaneChangeModel().isOpposite() || oncoming.first->getLaneChangeModel().getShadowLane() == opposite)) {
1987 searchDist -= (oncoming.first->getVehicleType().getLengthWithGap() +
MAX2(0.0, oncoming.second));
1989 gap += oncoming.first->getVehicleType().getLengthWithGap();
1990 if (oncoming.first != overtaken) {
1991 vMax =
MIN2(vMax, oncoming.first->getSpeed());
1993#ifdef DEBUG_CHANGE_OPPOSITE
1995 std::cout <<
SIMTIME <<
" oncoming=" << oncoming.first->getID() <<
" isOpposite gap=" << oncoming.second
1996 <<
" totalGap=" << gap <<
" searchDist=" << searchDist <<
" vMax=" << vMax <<
"\n";
1999 if (searchDist < 0) {
2003 if (oncoming.first->getLaneChangeModel().getShadowLane() != opposite) {
2004 opposite = oncoming.first->getLane();
2006 oncoming = opposite->
getFollower(oncoming.first, oncoming.first->getPositionOnLane(opposite), searchDist, mLinkMode);
2007 if (oncoming.first !=
nullptr) {
2008 gap += oncoming.second + oncoming.first->getVehicleType().getLength();
2009#ifdef DEBUG_CHANGE_OPPOSITE
2011 std::cout <<
SIMTIME <<
" oncoming=" << oncoming.first->getID() <<
" gap=" << oncoming.second <<
" totalGap=" << gap <<
"\n";
2016 oncoming.second = gap;
2021std::pair<MSVehicle* const, double>
2025 if (overtaken.first !=
nullptr) {
2027 front = overtaken.first;
2035 const bool checkTmpVehicles = front->
getLane() == vehicle->
getLane();
2037 while (conts.size() > 0 && conts.front() != front->
getLane()) {
2038 conts.erase(conts.begin());
2041 if (oncoming.first !=
nullptr) {
2042 const bool isOpposite = oncoming.first->getLaneChangeModel().isOpposite();
2043 const MSLane* shadowLane = oncoming.first->getLaneChangeModel().getShadowLane();
2044#ifdef DEBUG_CHANGE_OPPOSITE
2047 <<
" front=" << front->
getID() <<
" searchDist=" << searchDist
2048 <<
" oncomingOpposite=" << oncoming.first->getID()
2049 <<
" gap=" << oncoming.second
2050 <<
" isOpposite=" << isOpposite
2055 if (isOpposite && shadowLane != front->
getLane()) {
2057 oncoming.second -= oncoming.first->getVehicleType().getLength();
2058 oncoming.second += gap;
2062 return std::make_pair(
nullptr, -1);
2068 double timeToOvertake,
double spaceToOvertake,
double& oncomingSpeed,
bool oncomingOpposite) {
2069 double surplusGap = std::numeric_limits<double>::max();
2070 const MSVehicle* oncomingVeh = oncoming.first;
2071 if (oncomingVeh != 0 && (oncomingOpposite
2082 surplusGap = oncoming.second - spaceToOvertake - timeToOvertake * oncomingSpeed - safetyGap;
2083#ifdef DEBUG_CHANGE_OPPOSITE
2086 <<
" oncoming=" << oncomingVeh->
getID()
2087 <<
" oGap=" << oncoming.second
2088 <<
" oSpeed=" << oncomingSpeed
2089 <<
" sto=" << spaceToOvertake
2090 <<
" tto=" << timeToOvertake
2091 <<
" safetyGap=" << safetyGap
2092 <<
" surplusGap=" << surplusGap
2102 if (view >= (
int)bestLanes.size()) {
2105 MSLane* lane = bestLanes[view];
2106 double laneDist = 0;
2108 double lastZ = lastMax;
2109 for (
int i = 1; i < (int)shape.size(); i++) {
2112 if (laneDist > pos) {
2113 const double z = shape[i].z();
2121#ifdef DEBUG_CHANGE_OPPOSITE
2123 std::cout <<
SIMTIME <<
" foundHill=" << foundHill <<
" searchDist=" << searchDist <<
" lastMax=" << lastMax <<
" lane=" << lane->
getID() <<
" laneDist=" << laneDist <<
" z=" << z <<
"\n";
2126 if (foundHill && z < lastMax) {
2127 const double drop = lastMax - z;
2129 if (drop > hilltopThreshold) {
2130#ifdef DEBUG_CHANGE_OPPOSITE
2132 std::cout <<
" cannot changeOpposite before the top of a hill searchDist=" << searchDist <<
" hillDrop=" << drop
2133 <<
" lastMax=" << lastMax <<
" lane=" << lane->
getID() <<
" laneDist=" << laneDist <<
" z=" << z <<
"\n";
2142 searchDist -= laneDist - pos;
2145 if (searchDist <= 0) {
2150 return foundHilltop(vehicle, foundHill, searchDist, bestLanes, view + 1, 0, lastMax, hilltopThreshold);
2159 const std::pair<MSVehicle* const, double>& leader,
2160 const std::pair<MSVehicle* const, double>& neighLead,
2161 const std::pair<MSVehicle* const, double>& neighFollow,
2162 const std::vector<MSVehicle::LaneQ>& preb) {
2165 const std::pair<MSVehicle* const, double> follower(
nullptr, -1);
2166 int state =
checkChange(laneOffset, targetLane, leader, follower, neighLead, neighFollow, preb);
2168 bool changingAllowed = (state &
LCA_BLOCKED) == 0;
2174#ifdef DEBUG_CHANGE_OPPOSITE
2176 std::cout <<
SIMTIME <<
" changing to opposite veh=" << vehicle->
getID() <<
" dir=" << laneOffset <<
" opposite=" <<
Named::getIDSecure(targetLane)
2185#ifdef DEBUG_CHANGE_OPPOSITE
2187 std::cout <<
SIMTIME <<
" not changing to opposite veh=" << vehicle->
getID() <<
" dir=" << laneOffset
2204 const double v = vehicle->
getSpeed();
2208 const double g =
MAX2(0.0, (
2219 const double sign = -1;
2223 double t = (u - v - sqrt(4 * (u - v) * (u - v) + 8 * a * g) * sign * 0.5) / a;
2224#ifdef DEBUG_CHANGE_OPPOSITE_OVERTAKINGTIME
2226 std::cout <<
" computeOvertakingTime v=" << v <<
" vMax=" << vMax <<
" u=" << u <<
" a=" << a <<
" d=" << d <<
" gap=" << gap <<
" g=" << g <<
" t=" << t
2227 <<
" distEgo=" << v* t + t* t* a * 0.5 <<
" distLead=" << g + u* t
2234 timeToOvertake = std::numeric_limits<double>::max();
2235 spaceToOvertake = std::numeric_limits<double>::max();
2243 t = ceil(t /
TS) *
TS;
2247 const double timeToMaxSpeed = (vMax - v) / a;
2249#ifdef DEBUG_CHANGE_OPPOSITE_OVERTAKINGTIME
2251 std::cout <<
" t=" << t <<
" tvMax=" << timeToMaxSpeed <<
"\n";
2254 if (t <= timeToMaxSpeed) {
2256 spaceToOvertake = v * t + t * t * a * 0.5;
2257#ifdef DEBUG_CHANGE_OPPOSITE_OVERTAKINGTIME
2259 std::cout <<
" sto=" << spaceToOvertake <<
"\n";
2264 const double s = v * timeToMaxSpeed + timeToMaxSpeed * timeToMaxSpeed * a * 0.5;
2265 const double m = timeToMaxSpeed;
2268 t = (g - s + m * vMax) / (vMax - u);
2271#ifdef DEBUG_CHANGE_OPPOSITE_OVERTAKINGTIME
2273 std::cout <<
" t2=" << t <<
"\n";
2276 timeToOvertake = std::numeric_limits<double>::max();
2277 spaceToOvertake = std::numeric_limits<double>::max();
2284 t = ceil(t /
TS) *
TS;
2287 spaceToOvertake = s + (t - m) * vMax;
2288#ifdef DEBUG_CHANGE_OPPOSITE_OVERTAKINGTIME
2290 std::cout <<
" t2=" << t <<
" s=" << s <<
" sto=" << spaceToOvertake <<
" m=" << m <<
"\n";
2296 timeToOvertake *= safetyFactor;
2298 spaceToOvertake *= safetyFactor;
2300 double frac = fmod(timeToOvertake,
TS);
2303 timeToOvertake +=
TS - frac;
2305#ifdef DEBUG_CHANGE_OPPOSITE_OVERTAKINGTIME
2307 if (safetyFactor != 1) {
2308 std::cout <<
" applying safetyFactor=" << safetyFactor
2310 <<
" tto=" << timeToOvertake <<
" sto=" << spaceToOvertake <<
"\n";
2318std::pair<MSVehicle*, double>
2320 assert(leader.first != 0);
2325 std::pair<MSVehicle*, double> columnLeader = leader;
2326 double egoGap = leader.second;
2327 bool foundSpaceAhead =
false;
2328 double seen = leader.second + leader.first->getVehicleType().getLengthWithGap();
2330 if (maxLookAhead == std::numeric_limits<double>::max()) {
2334 maxLookAhead =
MAX2(maxLookAhead, mergeBrakeGap + 10
2336 + leader.first->getVehicleType().getLengthWithGap());
2338#ifdef DEBUG_CHANGE_OPPOSITE
2340 std::cout <<
" getColumnleader vehicle=" << vehicle->
getID() <<
" leader=" << leader.first->getID() <<
" gap=" << leader.second <<
" maxLookAhead=" << maxLookAhead <<
"\n";
2344 while (!foundSpaceAhead) {
2345 const double requiredSpaceAfterLeader = (columnLeader.first->getCarFollowModel().getSecureGap(
2346 columnLeader.first, vehicle,
2348 + columnLeader.first->getVehicleType().getMinGap()
2353 const bool checkTmpVehicles = (&columnLeader.first->getLane()->getEdge() == &source->
getEdge());
2354 double searchStart = columnLeader.first->getPositionOnLane();
2355 std::pair<MSVehicle*, double> leadLead = columnLeader.first->getLane()->getLeader(
2356 columnLeader.first, searchStart, conts, requiredSpaceAfterLeader + mergeBrakeGap,
2358 std::set<MSVehicle*> seenLeaders;
2359 while (leadLead.first !=
nullptr && leadLead.first->getLaneChangeModel().isOpposite()) {
2360#ifdef DEBUG_CHANGE_OPPOSITE
2362 std::cout <<
" skipping opposite leadLead=" << leadLead.first->getID() <<
" gap=" << leadLead.second <<
"\n";
2365 if (leadLead.second + seen > maxLookAhead || seenLeaders.count(leadLead.first) > 0) {
2366 leadLead.first =
nullptr;
2369 seenLeaders.insert(leadLead.first);
2371 const double searchStart2 = searchStart +
MAX2(0.0, leadLead.second) + leadLead.first->getVehicleType().getLengthWithGap();
2372 leadLead = columnLeader.first->getLane()->getLeader(
2373 columnLeader.first, searchStart2, conts, requiredSpaceAfterLeader + mergeBrakeGap,
2375 leadLead.second += (searchStart2 - searchStart);
2377 if (leadLead.first ==
nullptr) {
2378 double availableSpace = columnLeader.first->getLane()->getLength() - columnLeader.first->getPositionOnLane();
2379 double requiredSpace = safetyFactor * requiredSpaceAfterLeader;
2380 if (!columnLeader.first->isStopped()) {
2382 requiredSpace += safetyFactor * mergeBrakeGap;
2384#ifdef DEBUG_CHANGE_OPPOSITE
2386 std::cout <<
" no direct leader found after columnLeader " << columnLeader.first->getID()
2387 <<
" availableSpace=" << availableSpace
2388 <<
" reqAfterLeader=" << requiredSpaceAfterLeader
2389 <<
" ovSpeed=" << overtakingSpeed
2390 <<
" reqBGap=" << mergeBrakeGap
2391 <<
" reqMin=" << requiredSpace / safetyFactor
2392 <<
" req=" << requiredSpace
2396 if (availableSpace > requiredSpace) {
2397 foundSpaceAhead =
true;
2402 bool contsEnd =
false;
2403 const MSLane* next =
getLaneAfter(columnLeader.first->getLane(), conts, allowMinor, contsEnd);
2404#ifdef DEBUG_CHANGE_OPPOSITE
2406 std::cout <<
" look for another leader on lane " <<
Named::getIDSecure(next) <<
"\n";
2409 while (next !=
nullptr && seen < maxLookAhead) {
2412 if (cand ==
nullptr) {
2414 if (availableSpace > requiredSpace) {
2415 foundSpaceAhead =
true;
2418 next =
getLaneAfter(next, conts, allowMinor, contsEnd);
2421 if (availableSpace > requiredSpace) {
2422 foundSpaceAhead =
true;
2429#ifdef DEBUG_CHANGE_OPPOSITE
2431 std::cout <<
" foundSpaceAhead=" << foundSpaceAhead <<
" availableSpace=" << availableSpace <<
" next=" <<
Named::getIDSecure(next) <<
" contsEnd=" << contsEnd <<
" conts=" <<
toString(conts) <<
"\n";
2434 if (!foundSpaceAhead && contsEnd) {
2435 foundSpaceAhead =
true;
2436 availableSpace = requiredSpace;
2438 if (!foundSpaceAhead) {
2439 return std::make_pair(
nullptr, -1);
2442 maxSpace = egoGap + columnLeader.first->getVehicleType().getLength() + availableSpace;
2445 overtakingSpeed, leadLead.first->
getSpeed(), leadLead.first->getCarFollowModel().getMaxDecel());
2446 double requiredSpace = safetyFactor * requiredSpaceAfterLeader;
2447 if (!columnLeader.first->isStopped()) {
2449 requiredSpace += safetyFactor * sGap;
2451#ifdef DEBUG_CHANGE_OPPOSITE
2453 std::cout <<
" leader's leader " << leadLead.first->getID() <<
" space=" << leadLead.second
2454 <<
" reqAfterLeader=" << requiredSpaceAfterLeader
2455 <<
" ovSpeed=" << overtakingSpeed
2456 <<
" reqSGap=" << sGap
2457 <<
" reqMin=" << requiredSpace / safetyFactor
2458 <<
" req=" << requiredSpace
2462 if (leadLead.second > requiredSpace) {
2463 foundSpaceAhead =
true;
2464 maxSpace = egoGap + columnLeader.first->getVehicleType().getLength() + leadLead.second;
2467 if (leadLead.second < 0) {
2469#ifdef DEBUG_CHANGE_OPPOSITE
2471 std::cout <<
" leader's leader " << leadLead.first->getID() <<
" gap=" << leadLead.second <<
" is junction leader (aborting)\n";
2474 return std::make_pair(
nullptr, -1);
2477#ifdef DEBUG_CHANGE_OPPOSITE
2479 std::cout <<
" not enough space after columnLeader=" << columnLeader.first->getID() <<
" required=" << requiredSpace <<
"\n";
2482 seen +=
MAX2(0., leadLead.second) + leadLead.first->getVehicleType().getLengthWithGap();
2483 if (seen > maxLookAhead) {
2484#ifdef DEBUG_CHANGE_OPPOSITE
2486 std::cout <<
" cannot changeOpposite due to insufficient free space after columnLeader (seen=" << seen <<
" columnLeader=" << columnLeader.first->getID() <<
")\n";
2489 return std::make_pair(
nullptr, -1);
2492 egoGap += columnLeader.first->getVehicleType().getLengthWithGap() + leadLead.second;
2493 columnLeader = leadLead;
2494#ifdef DEBUG_CHANGE_OPPOSITE
2496 std::cout <<
" new columnLeader=" << columnLeader.first->getID() <<
"\n";
2502 columnLeader.second = egoGap;
2503 return columnLeader;
2509 for (
auto it = conts.begin(); it != conts.end(); ++it) {
2511 if (it + 1 != conts.end()) {
2513 const MSLane* next = *(it + 1);
2515 if (link ==
nullptr || (!allowMinor && !link->
havePriority())) {
2533 const double v = sqrt(2 * maxSpaceToOvertake * a * d / (a + d));
#define OPPOSITE_OVERTAKING_HILLTOP_THRESHOHOLD
#define OPPOSITE_OVERTAKING_MAX_LOOKAHEAD
#define OPPOSITE_OVERTAKING_SAFETYGAP_HEADWAY_FACTOR
#define OPPOSITE_OVERTAKING_MAX_LOOKAHEAD_EMERGENCY
#define OPPOSITE_OVERTAKING_DEADLOCK_WAIT
#define OPPOSITE_OVERTAKING_ONCOMING_LOOKAHEAD
#define OPPOSITE_OVERTAKING_SAFETY_FACTOR
#define OPPOSITE_OVERTAKING_SAFE_TIMEGAP
#define OPPOSITE_OVERTAKING_MAX_SPACE_TO_OVERTAKE
std::pair< const MSVehicle *, double > CLeaderDist
std::pair< const MSPerson *, double > PersonDist
SUMOVehicleClass
Definition of vehicle classes to differ between different lane usage and authority types.
@ SVC_EMERGENCY
public emergency vehicles
@ RIGHT
The link is a (hard) right direction.
@ LEFT
The link is a (hard) left direction.
@ STRAIGHT
The link is a straight direction.
@ LINKSTATE_ZIPPER
This is an uncontrolled, zipper-merge link.
LaneChangeAction
The state of a vehicle's lane-change behavior.
@ LCA_BLOCKED
blocked in all directions
@ LCA_URGENT
The action is urgent (to be defined by lc-model)
@ LCA_BLOCKED_BY_RIGHT_LEADER
The vehicle is blocked by right leader.
@ LCA_INSUFFICIENT_SPACE
The vehicle does not have enough space to complete a continuous change before the next turn.
@ LCA_BLOCKED_BY_LEFT_FOLLOWER
The vehicle is blocked by left follower.
@ LCA_COOPERATIVE
The action is done to help someone else.
@ LCA_INSUFFICIENT_SPEED
Vehicle is too slow to complete a continuous lane change (in case that maxSpeedLatStanding==0)
@ LCA_OVERLAPPING
The vehicle is blocked being overlapping.
@ LCA_LEFT
Wants go to the left.
@ LCA_BLOCKED_BY_RIGHT_FOLLOWER
The vehicle is blocked by right follower.
@ LCA_TRACI
The action is due to a TraCI request.
@ LCA_WANTS_LANECHANGE
lane can change
@ LCA_RIGHT
Wants go to the right.
@ LCA_BLOCKED_BY_LEFT_LEADER
const double SUMO_const_laneWidth
#define UNUSED_PARAMETER(x)
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
A class responsible for exchanging messages between cars involved in lane-change interaction.
Interface for lane-change models.
double getLaneChangeCompletion() const
Get the current lane change completion ratio.
double getForwardPos() const
get vehicle position relative to the forward direction lane
void setFollowerGaps(CLeaderDist follower, double secGap)
virtual void setOwnState(const int state)
virtual double getAssumedDecelForLaneChangeDuration() const
Returns a deceleration value which is used for the estimation of the duration of a lane change.
virtual double estimateLCDuration(const double speed, const double remainingManeuverDist, const double decel, bool urgent) const
Calculates the maximal time needed to complete a lane change maneuver if lcMaxSpeedLatFactor and lcMa...
int getLaneChangeDirection() const
return the direction of the current lane change maneuver
MSLane * getShadowLane() const
Returns the lane the vehicle's shadow is on during continuous/sublane lane change.
bool startLaneChangeManeuver(MSLane *source, MSLane *target, int direction)
start the lane change maneuver and return whether it continues
void endLaneChangeManeuver(const MSMoveReminder::Notification reason=MSMoveReminder::NOTIFICATION_LANE_CHANGE)
virtual double getSafetyFactor() const
return factor for modifying the safety constraints of the car-following model
static const double NO_NEIGHBOR
void saveLCState(const int dir, int stateWithoutTraCI, const int state)
virtual bool saveBlockerLength(double, double)
reserve space at the end of the lane to avoid dead locks
virtual int wantsChange(int laneOffset, MSAbstractLaneChangeModel::MSLCMessager &msgPass, int blocked, const std::pair< MSVehicle *, double > &leader, const std::pair< MSVehicle *, double > &follower, const std::pair< MSVehicle *, double > &neighLead, const std::pair< MSVehicle *, double > &neighFollow, const MSLane &neighLane, const std::vector< MSVehicle::LaneQ > &preb, MSVehicle **lastBlocked, MSVehicle **firstBlocked)
Called to examine whether the vehicle wants to change using the given laneOffset. This method gets th...
virtual double getOppositeSafetyFactor() const
return factor for modifying the safety constraints for opposite-diretction overtaking of the car-foll...
void setLeaderGaps(CLeaderDist, double secGap)
void setOrigLeaderGaps(CLeaderDist, double secGap)
int getNormalizedLaneIndex()
brief return lane index that treats opposite lanes like normal lanes to the left of the forward lanes
virtual int checkChangeBeforeCommitting(const MSVehicle *veh, int state) const
Informs the vehicle that it is about to be moved on an adjacent lane. The method can be used to re-ev...
void checkTraCICommands()
Check for commands issued for the vehicle via TraCI and apply the appropriate state changes For the s...
void primaryLaneChanged(MSLane *source, MSLane *target, int direction)
called once when the vehicles primary lane changes
double getSpeedLat() const
return the lateral speed of the current lane change maneuver
bool alreadyChanged() const
reset the flag whether a vehicle already moved to false
bool isChangingLanes() const
return true if the vehicle currently performs a lane change maneuver
void clearNeighbors()
Clear info on neighboring vehicle from previous step.
void saveNeighbors(const int dir, const MSLeaderDistanceInfo &followers, const MSLeaderDistanceInfo &leaders)
Saves the lane change relevant vehicles, which are currently on neighboring lanes in the given direct...
double getWaitingSeconds() const
Returns the number of seconds waited (speed was lesser than 0.1m/s)
bool hasStops() const
Returns whether the vehicle has to stop somewhere.
SUMOVehicleClass getVClass() const
Returns the vehicle's access class.
SUMOTime getStopDuration() const
get remaining stop duration or 0 if the vehicle isn't stopped
const MSVehicleType & getVehicleType() const
Returns the vehicle's type definition.
bool isStopped() const
Returns whether the vehicle is at a stop.
virtual double getSecureGap(const MSVehicle *const veh, const MSVehicle *const, const double speed, const double leaderSpeed, const double leaderMaxDecel) const
Returns the minimum gap to reserve if the leader is braking at maximum (>=0)
double getMaxAccel() const
Get the vehicle type's maximum acceleration [m/s^2].
double brakeGap(const double speed) const
Returns the distance the vehicle needs to halt including driver's reaction time tau (i....
double getMaxDecel() const
Get the vehicle type's maximal comfortable deceleration [m/s^2].
virtual double getHeadwayTime() const
Get the driver's desired headway [s].
A road/street connecting two junctions.
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 MSEdge * getNormalSuccessor() const
if this edge is an internal edge, return its first normal successor, otherwise the edge itself
bool isInternal() const
return whether this edge is an internal edge
static double gLateralResolution
static bool gLefthand
Whether lefthand-drive is being simulated.
static bool gSublane
whether sublane simulation is enabled (sublane model or continuous lanechanging)
static SUMOTime gLaneChangeDuration
virtual ~MSLaneChanger()
Destructor.
bool applyTraCICommands(MSVehicle *vehicle)
Execute TraCI LC-commands.
bool continueChange(MSVehicle *vehicle, ChangerIt &from)
continue a lane change maneuver and return whether the vehicle has completely moved onto the new lane...
const bool myChangeToOpposite
whether this edge allows changing to the opposite direction edge
bool checkOppositeStop(MSVehicle *vehicle, const MSLane *oncomingLane, const MSLane *opposite, std::pair< MSVehicle *, double > leader)
decide whether to change (back or forth) for an opposite stop
bool changeOpposite(MSVehicle *vehicle, std::pair< MSVehicle *, double > leader, MSVehicle *lastStopped)
MSLaneChanger()
Default constructor.
static bool hasOppositeStop(MSVehicle *vehicle)
whether vehicle has an opposite-direction stop within relevant range
void checkTraCICommands(MSVehicle *vehicle)
Take into account traci LC-commands.
void laneChange(SUMOTime t)
Start lane-change-process for all vehicles on the edge'e lanes.
virtual void initChanger()
Initialize the changer before looping over all vehicles.
bool vehInChanger() const
Check if there is a single change-candidate in the changer. Returns true if there is one.
std::pair< MSVehicle *const, double > getRealFollower(const ChangerIt &target) const
static const MSLane * getLaneAfter(const MSLane *lane, const std::vector< MSLane * > &conts, bool allowMinor, bool &contsEnd)
return the next lane in conts beyond lane or nullptr
std::pair< MSVehicle *const, double > getOncomingOppositeVehicle(const MSVehicle *vehicle, std::pair< MSVehicle *, double > overtaken, double searchDist)
MSVehicle * veh(ConstChangerIt ce) const
std::pair< MSVehicle *const, double > getOncomingVehicle(const MSLane *opposite, std::pair< MSVehicle *, double > neighOncoming, double searchDist, double &vMax, const MSVehicle *overtaken=nullptr, MSLane::MinorLinkMode mLinkMode=MSLane::MinorLinkMode::FOLLOW_NEVER)
bool startChange(MSVehicle *vehicle, ChangerIt &from, int direction)
const bool myAllowsChanging
double computeSafeOppositeLength(MSVehicle *vehicle, double oppositeLength, const MSLane *source, double usableDist, std::pair< MSVehicle *, double > oncoming, double vMax, double oncomingSpeed, std::pair< MSVehicle *, double > neighLead, std::pair< MSVehicle *, double > overtaken, std::pair< MSVehicle *, double > neighFollow, double surplusGap, const MSLane *opposite, bool canOvertake)
determine for how long the vehicle can drive safely on the opposite side
int checkChangeWithinEdge(int laneOffset, const std::pair< MSVehicle *const, double > &leader, const std::vector< MSVehicle::LaneQ > &preb) const
static bool foundHilltop(MSVehicle *vehicle, bool foundHill, double searchDist, const std::vector< MSLane * > &bestLanes, int view, double pos, double lastMax, double hilltopThreshold)
Changer myChanger
Container for ChangeElemements, one for every lane in the edge.
static double computeSurplusGap(const MSVehicle *vehicle, const MSLane *opposite, std::pair< MSVehicle *, double > oncoming, double timeToOvertake, double spaceToOvertake, double &oncomingSpeed, bool oncomingOpposite=false)
ChangerIt findCandidate()
Find current candidate. If there is none, myChanger.end() is returned.
bool mayChange(int direction) const
whether changing to the lane in the given direction should be considered
bool yieldToOppositeWaiting(const MSVehicle *vehicle, const MSVehicle *stoppedNeigh, double dist, SUMOTime deltaWait=0)
check whether to yield for oncoming vehicles that have waited longer for opposite overtaking
static MSVehicle * getCloserFollower(const double maxPos, MSVehicle *follow1, MSVehicle *follow2)
return the closer follower of ego
void registerUnchanged(MSVehicle *vehicle)
void updateLanes(SUMOTime t)
bool avoidDeadlock(MSVehicle *vehicle, std::pair< MSVehicle *, double > neighLead, std::pair< MSVehicle *, double > overtaken, std::pair< MSVehicle *, double > leader)
avoid opposite-diretion deadlock when vehicles are stopped on both sides of the road The method may c...
static std::pair< MSVehicle *, double > getColumnleader(double &maxSpace, MSVehicle *vehicle, std::pair< MSVehicle *, double > leader, double maxLookAhead=std::numeric_limits< double >::max())
return leader vehicle that is to be overtaken
static double getMaxOvertakingSpeed(const MSVehicle *vehicle, double maxSpaceToOvertake)
compute maximum maneuver speed
bool resolveDeadlock(MSVehicle *vehicle, std::pair< MSVehicle *const, double > leader, std::pair< MSVehicle *, double > neighLead, std::pair< MSVehicle *, double > overtaken)
keep stopping to resolve opposite-diretion deadlock while there is oncoming traffic The method may ca...
std::pair< MSVehicle *const, double > getRealLeader(const ChangerIt &target) const
bool yieldToDeadlockOncoming(const MSVehicle *vehicle, const MSVehicle *stoppedNeigh, double dist)
check whether to keep stopping for oncoming vehicles in the deadlock zone
Changer::iterator ChangerIt
the iterator moving over the ChangeElems
int checkChange(int laneOffset, const MSLane *targetLane, const std::pair< MSVehicle *const, double > &leader, const std::pair< MSVehicle *const, double > &follower, const std::pair< MSVehicle *const, double > &neighLead, const std::pair< MSVehicle *const, double > &neighFollow, const std::vector< MSVehicle::LaneQ > &preb) const
virtual bool checkChangeOpposite(MSVehicle *vehicle, int laneOffset, MSLane *targetLane, const std::pair< MSVehicle *const, double > &leader, const std::pair< MSVehicle *const, double > &neighLead, const std::pair< MSVehicle *const, double > &neighFollow, const std::vector< MSVehicle::LaneQ > &preb)
static void computeOvertakingTime(const MSVehicle *vehicle, double vMax, const MSVehicle *leader, double gap, double &timeToOvertake, double &spaceToOvertake)
Compute the time and space required for overtaking the given leader.
static std::vector< MSVehicle::LaneQ > getBestLanesOpposite(MSVehicle *vehicle, const MSLane *stopLane, double oppositeLength)
add LaneQ for opposite lanes
virtual void updateChanger(bool vehHasChanged)
Representation of a lane in the micro simulation.
std::pair< MSVehicle *const, double > getFollower(const MSVehicle *ego, double egoPos, double dist, MinorLinkMode mLinkMode) const
Find follower vehicle for the given ego vehicle (which may be on the opposite direction lane)
std::pair< const MSPerson *, double > nextBlocking(double minPos, double minRight, double maxLeft, double stopTime=0, bool bidi=false) const
This is just a wrapper around MSPModel::nextBlocking. You should always check using hasPedestrians be...
MSLane * getParallelLane(int offset, bool includeOpposite=true) const
Returns the lane with the given offset parallel to this one or 0 if it does not exist.
static std::vector< MSLink * >::const_iterator succLinkSec(const SUMOVehicle &veh, int nRouteSuccs, const MSLane &succLinkSource, const std::vector< MSLane * > &conts)
const MSLink * getLinkTo(const MSLane *const) const
returns the link to the given lane or nullptr, if it is not connected
double getSpeedLimit() const
Returns the lane's maximum allowed speed.
std::vector< MSVehicle * > VehCont
Container for vehicles.
std::pair< MSVehicle *const, double > getOppositeLeader(const MSVehicle *ego, double dist, bool oppositeDir, MinorLinkMode mLinkMode=MinorLinkMode::FOLLOW_NEVER) const
double getLength() const
Returns the lane's length.
bool allowsChangingLeft(SUMOVehicleClass vclass) const
Returns whether the given vehicle class may change left from this lane.
std::pair< MSVehicle *const, double > getCriticalLeader(double dist, double seen, double speed, const MSVehicle &veh) const
Returns the most dangerous leader and the distance to him.
bool isLinkEnd(std::vector< MSLink * >::const_iterator &i) const
bool allowsVehicleClass(SUMOVehicleClass vclass) const
double getVehicleMaxSpeed(const SUMOTrafficObject *const veh) const
Returns the lane's maximum speed, given a vehicle's speed limit adaptation.
std::pair< MSVehicle *const, double > getOppositeFollower(const MSVehicle *ego) const
bool hasPedestrians() const
whether the lane has pedestrians on it
int getIndex() const
Returns the lane's index.
void requireCollisionCheck()
require another collision check due to relevant changes in the simulation
double getOppositePos(double pos) const
return the corresponding position on the opposite lane
MSVehicle * getLastAnyVehicle() const
returns the last vehicle that is fully or partially on this lane
VehCont myPartialVehicles
The lane's partial vehicles. This container holds all vehicles that are partially on this lane but wh...
MinorLinkMode
determine whether/how getFollowers looks upstream beyond minor links
double interpolateGeometryPosToLanePos(double geometryPos) const
std::pair< MSVehicle *const, double > getLeader(const MSVehicle *veh, const double vehPos, const std::vector< MSLane * > &bestLaneConts, double dist=-1, bool checkTmpVehicles=false) const
Returns the immediate leader of veh and the distance to veh starting on this lane.
MSLane * getOpposite() const
return the neighboring opposite direction lane for lane changing or nullptr
virtual const PositionVector & getShape(bool) const
MSEdge & getEdge() const
Returns the lane's edge.
double getWidth() const
Returns the lane's width.
LinkState getState() const
Returns the current state of the link.
bool havePriority() const
Returns whether this link is a major link.
MSLane * getViaLaneOrLane() const
return the via lane if it exists and the lane otherwise
LinkDirection getDirection() const
Returns the direction the vehicle passing this link take.
bool haveRed() const
Returns whether this link is blocked by a red (or redyellow) traffic light.
static MSNet * getInstance()
Returns the pointer to the unique instance of MSNet (singleton).
bool hasElevation() const
return whether the network contains elevation data
const MSLane * lane
The lane to stop at (microsim only)
bool isOpposite
whether this an opposite-direction stop
bool getRespectJunctionPriority() const
Returns whether junction priority rules shall be respected (concerns approaching vehicles outside the...
SUMOTime getLaneTimeLineDuration()
double myPosLat
the stored lateral position
Representation of a vehicle in the micro simulation.
void updateBestLanes(bool forceRebuild=false, const MSLane *startLane=0)
computes the best lanes to use in order to continue the route
double computeAngle() const
compute the current vehicle angle
bool isStoppedOnLane() const
bool isActive() const
Returns whether the current simulation step is an action point for the vehicle.
SUMOTime getWaitingTime(const bool accumulated=false) const
Returns the SUMOTime waited (speed was lesser than 0.1m/s)
bool isFrontOnLane(const MSLane *lane) const
Returns the information whether the front of the vehicle is on the given lane.
MSAbstractLaneChangeModel & getLaneChangeModel()
int influenceChangeDecision(int state)
allow TraCI to influence a lane change decision
bool isRemoteControlled() const
Returns the information whether the vehicle is fully controlled via TraCI.
double nextStopDist() const
return the distance to the next stop or doubleMax if there is none.
void adaptBestLanesOccupation(int laneIndex, double density)
update occupation from MSLaneChanger
double getAcceleration() const
Returns the vehicle's acceleration in m/s (this is computed as the last step's mean acceleration in c...
Position getPosition(const double offset=0) const
Return current position (x/y, cartesian)
const std::vector< MSLane * > & getBestLanesContinuation() const
Returns the best sequence of lanes to continue the route starting at myLane.
double getBackPositionOnLane(const MSLane *lane) const
Get the vehicle's position relative to the given lane.
@ VEH_SIGNAL_BLINKER_RIGHT
Right blinker lights are switched on.
@ VEH_SIGNAL_BLINKER_LEFT
Left blinker lights are switched on.
SUMOTime getActionStepLength() const
Returns the vehicle's action step length in millisecs, i.e. the interval between two action points.
const MSLane * getLane() const
Returns the lane the vehicle is on.
std::pair< const MSVehicle *const, double > getFollower(double dist=0) const
Returns the follower of the vehicle looking for a fixed distance.
MSLane * getMutableLane() const
Returns the lane the vehicle is on Non const version indicates that something volatile is going on.
Influencer & getInfluencer()
double getRightSideOnLane() const
Get the lateral position of the vehicles right side on the lane:
bool unsafeLinkAhead(const MSLane *lane) const
whether the vehicle may safely move to the given lane with regard to upcoming links
double getLateralPositionOnLane() const
Get the vehicle's lateral position on the lane.
double getSlope() const
Returns the slope of the road at vehicle's position in degrees.
double getSpeed() const
Returns the vehicle's current speed.
Position myCachedPosition
const std::vector< LaneQ > & getBestLanes() const
Returns the description of best lanes to use in order to continue the route.
const MSCFModel & getCarFollowModel() const
Returns the vehicle's car following model definition.
double myAngle
the angle in radians (
bool ignoreRed(const MSLink *link, bool canBrake) const
decide whether a red (or yellow light) may be ignored
double getPositionOnLane() const
Get the vehicle's position along the lane.
bool hasInfluencer() const
whether the vehicle is individually influenced (via TraCI or special parameters)
double getBrakeGap(bool delayed=false) const
get distance for coming to a stop (used for rerouting checks)
State myState
This Vehicles driving state (pos and speed)
double getLengthWithGap() const
Get vehicle's length including the minimum gap [m].
double getWidth() const
Get the width which vehicles of this class shall have when being drawn.
SUMOVehicleClass getVehicleClass() const
Get this vehicle type's vehicle class.
double getMinGap() const
Get the free space in front of vehicles of this class.
double getMaxSpeedLat() const
Get vehicle's maximum lateral speed [m/s].
double getLength() const
Get vehicle's length [m].
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.
static const Position INVALID
used to indicate that a position is valid
double z() const
Returns the z-position.
ChangeElem(MSLane *_lane)
void registerHop(MSVehicle *vehicle)
Register that vehicle belongs to Changer Item to after LC decisions.