57#define CALL_MICRO_FUN(veh, fun, mesoResult) ((dynamic_cast<MSVehicle*>(veh) == nullptr ? (mesoResult) : dynamic_cast<MSVehicle*>(veh)->fun))
58#define CALL_MESO_FUN(veh, fun, microResult) ((dynamic_cast<MEVehicle*>(veh) == nullptr ? (microResult) : dynamic_cast<MEVehicle*>(veh)->fun))
66#define DEBUG_COND (veh->isSelected())
88Vehicle::isOnInit(
const std::string& vehID) {
90 return sumoVehicle ==
nullptr || sumoVehicle->
getLane() ==
nullptr;
94std::vector<std::string>
96 std::vector<std::string> ids;
99 if (isVisible((*i).second)) {
100 ids.push_back((*i).first);
107Vehicle::getIDCount() {
108 return (
int)getIDList().size();
113Vehicle::getSpeed(
const std::string& vehID) {
119Vehicle::getLateralSpeed(
const std::string& vehID) {
126Vehicle::getAcceleration(
const std::string& vehID) {
133Vehicle::getSpeedWithoutTraCI(
const std::string& vehID) {
140Vehicle::getPosition(
const std::string& vehID,
const bool includeZ) {
142 if (isVisible(veh)) {
145 return TraCIPosition();
150Vehicle::getPosition3D(
const std::string& vehID) {
151 return getPosition(vehID,
true);
156Vehicle::getAngle(
const std::string& vehID) {
163Vehicle::getSlope(
const std::string& vehID) {
170Vehicle::getRoadID(
const std::string& vehID) {
177Vehicle::getLaneID(
const std::string& vehID) {
184Vehicle::getLaneIndex(
const std::string& vehID) {
188 if (microVeh !=
nullptr) {
200Vehicle::getSegmentID(
const std::string& vehID) {
206Vehicle::getSegmentIndex(
const std::string& vehID) {
212Vehicle::getTypeID(
const std::string& vehID) {
218Vehicle::getRouteID(
const std::string& vehID) {
224Vehicle::getDeparture(
const std::string& vehID) {
231Vehicle::getDepartDelay(
const std::string& vehID) {
237Vehicle::getRouteIndex(
const std::string& vehID) {
244Vehicle::getColor(
const std::string& vehID) {
249Vehicle::getLanePosition(
const std::string& vehID) {
255Vehicle::getLateralLanePosition(
const std::string& vehID) {
261Vehicle::getCO2Emission(
const std::string& vehID) {
267Vehicle::getCOEmission(
const std::string& vehID) {
273Vehicle::getHCEmission(
const std::string& vehID) {
279Vehicle::getPMxEmission(
const std::string& vehID) {
285Vehicle::getNOxEmission(
const std::string& vehID) {
291Vehicle::getFuelConsumption(
const std::string& vehID) {
297Vehicle::getNoiseEmission(
const std::string& vehID) {
303Vehicle::getElectricityConsumption(
const std::string& vehID) {
309Vehicle::getPersonNumber(
const std::string& vehID) {
314Vehicle::getPersonCapacity(
const std::string& vehID) {
320Vehicle::getBoardingDuration(
const std::string& vehID) {
325std::vector<std::string>
326Vehicle::getPersonIDList(
const std::string& vehID) {
330std::pair<std::string, double>
331Vehicle::getLeader(
const std::string& vehID,
double dist) {
334 std::pair<const MSVehicle* const, double> leaderInfo = veh->
getLeader(dist,
false);
335 const std::string leaderID = leaderInfo.first !=
nullptr ? leaderInfo.first->getID() :
"";
336 double gap = leaderInfo.second;
337 if (leaderInfo.first !=
nullptr
338 && leaderInfo.first->getLane() !=
nullptr
339 && leaderInfo.first->getLane()->isInternal()
342 || (veh->
getLane()->
getLinkCont().front()->getIndex() != leaderInfo.first->getLane()->getLinkCont().front()->getIndex()))) {
345 gap =
MAX2(0.0, gap);
347 return std::make_pair(leaderID, gap);
349 return std::make_pair(
"", -1);
354std::pair<std::string, double>
355Vehicle::getFollower(
const std::string& vehID,
double dist) {
358 std::pair<const MSVehicle* const, double> leaderInfo = veh->
getFollower(dist);
359 return std::make_pair(
360 leaderInfo.first !=
nullptr ? leaderInfo.first->getID() :
"",
363 return std::make_pair(
"", -1);
368std::vector<TraCIJunctionFoe>
369Vehicle::getJunctionFoes(
const std::string& vehID,
double dist) {
370 std::vector<TraCIJunctionFoe> result;
373 if (veh ==
nullptr) {
379 const std::vector<const MSLane*> internalLanes;
383 curDist += lane->getLength();
384 if (lane->isInternal()) {
385 const MSLink* exitLink = lane->getLinkCont().front();
387 const std::vector<MSLink::ConflictInfo>& conflicts = exitLink->
getConflicts();
395 const MSLink* foeExitLink = foeLane->getLinkCont().front();
396 const double distToCrossing = curDist - distBehindCrossing;
401 jf.foeId = foe->
getID();
402 jf.egoDist = distToCrossing;
408 jf.foeDist = item.second.dist - foeDistBehindCrossing - prevFoeDist;
411 jf.egoLane = lane->getID();
412 jf.foeLane = foeLane->getID();
415 result.push_back(jf);
427Vehicle::getWaitingTime(
const std::string& vehID) {
433Vehicle::getAccumulatedWaitingTime(
const std::string& vehID) {
440Vehicle::getAdaptedTraveltime(
const std::string& vehID,
double time,
const std::string& edgeID) {
449Vehicle::getEffort(
const std::string& vehID,
double time,
const std::string& edgeID) {
458Vehicle::isRouteValid(
const std::string& vehID) {
464std::vector<std::string>
465Vehicle::getRoute(
const std::string& vehID) {
466 std::vector<std::string> result;
470 result.push_back((*i)->getID());
477Vehicle::getSignals(
const std::string& vehID) {
483std::vector<TraCIBestLanesData>
484Vehicle::getBestLanes(
const std::string& vehID) {
485 std::vector<TraCIBestLanesData> result;
487 if (veh !=
nullptr && veh->
isOnRoad()) {
489 TraCIBestLanesData bld;
490 bld.laneID = lq.lane->
getID();
491 bld.length = lq.length;
492 bld.occupation = lq.nextOccupation;
493 bld.bestLaneOffset = lq.bestLaneOffset;
494 bld.allowsContinuation = lq.allowsContinuation;
495 for (
const MSLane*
const lane : lq.bestContinuations) {
496 if (lane !=
nullptr) {
497 bld.continuationLanes.push_back(lane->getID());
500 result.emplace_back(bld);
507std::vector<TraCINextTLSData>
508Vehicle::getNextTLS(
const std::string& vehID) {
509 std::vector<TraCINextTLSData> result;
512 if (veh !=
nullptr) {
519 std::vector<MSLink*>::const_iterator linkIt =
MSLane::succLinkSec(*veh, view, *lane, bestLaneConts);
522 if ((*linkIt)->isTLSControlled()) {
523 TraCINextTLSData ntd;
524 ntd.id = (*linkIt)->getTLLogic()->getID();
525 ntd.tlIndex = (*linkIt)->getTLIndex();
527 ntd.state = (char)(*linkIt)->getState();
528 result.push_back(ntd);
531 lane = (*linkIt)->getViaLaneOrLane();
542 for (
int i = 0; i < remainingEdges; i++) {
546 if (allowed !=
nullptr && allowed->size() != 0) {
547 for (
const MSLink*
const link : allowed->front()->getLinkCont()) {
548 if (&link->getLane()->getEdge() == next) {
549 if (link->isTLSControlled()) {
550 TraCINextTLSData ntd;
551 ntd.id = link->getTLLogic()->getID();
552 ntd.tlIndex = link->getTLIndex();
554 ntd.state = (char)link->getState();
555 result.push_back(ntd);
557 seen += next->
getLength() + link->getInternalLengthsAfter();
573std::vector<TraCINextStopData>
574Vehicle::getNextStops(
const std::string& vehID) {
575 return getStops(vehID, 0);
578std::vector<libsumo::TraCIConnection>
579Vehicle::getNextLinks(
const std::string& vehID) {
580 std::vector<libsumo::TraCIConnection> result;
586 if (veh !=
nullptr) {
591 std::vector<MSLink*>::const_iterator linkIt =
MSLane::succLinkSec(*veh, view, *lane, bestLaneConts);
594 const MSLink* link = (*linkIt);
595 const std::string approachedLane = link->
getLane() !=
nullptr ? link->
getLane()->
getID() :
"";
598 const bool isOpen = link->
opened(currTime, speed, speed, veh->
getLength(),
606 result.push_back(TraCIConnection(approachedLane, hasPrio, isOpen, hasFoe, approachedInternal, state, direction, length));
608 lane = (*linkIt)->getViaLaneOrLane();
616 for (
int i = 0; i < remainingEdges; i++) {
620 if (allowed !=
nullptr && allowed->size() != 0) {
621 for (
const MSLink*
const link : allowed->front()->getLinkCont()) {
622 if (&link->getLane()->getEdge() == next) {
623 const std::string approachedLane = link->getLane() !=
nullptr ? link->getLane()->getID() :
"";
624 const bool hasPrio = link->havePriority();
625 const double speed =
MIN2(lane->
getSpeedLimit(), link->getLane()->getSpeedLimit());
626 const bool isOpen = link->opened(currTime, speed, speed, veh->
getLength(),
630 const std::string approachedInternal = link->getViaLane() !=
nullptr ? link->getViaLane()->getID() :
"";
633 const double length = link->getLength();
634 result.push_back(TraCIConnection(approachedLane, hasPrio, isOpen, hasFoe, approachedInternal, state, direction, length));
648std::vector<TraCINextStopData>
649Vehicle::getStops(
const std::string& vehID,
int limit) {
650 std::vector<TraCINextStopData> result;
655 const int n = (int)pastStops.size();
656 for (
int i =
MAX2(0, n + limit); i < n; i++) {
661 if (!stop.pars.collision) {
664 result.push_back(nsd);
665 if (limit > 0 && (
int)result.size() >= limit) {
676Vehicle::getStopState(
const std::string& vehID) {
679 if (veh ==
nullptr) {
693Vehicle::getDistance(
const std::string& vehID) {
704Vehicle::getDrivingDistance(
const std::string& vehID,
const std::string& edgeID,
double pos,
int laneIndex) {
711 if (distance == std::numeric_limits<double>::max()) {
722Vehicle::getDrivingDistance2D(
const std::string& vehID,
double x,
double y) {
724 if (veh ==
nullptr) {
733 if (distance == std::numeric_limits<double>::max()) {
744Vehicle::getReferenceDistance(
const std::string& vehID) {
761Vehicle::getAllowedSpeed(
const std::string& vehID) {
768Vehicle::getSpeedFactor(
const std::string& vehID) {
774Vehicle::getSpeedMode(
const std::string& vehID) {
781Vehicle::getLaneChangeMode(
const std::string& vehID) {
788Vehicle::getRoutingMode(
const std::string& vehID) {
794Vehicle::getLine(
const std::string& vehID) {
799std::vector<std::string>
800Vehicle::getVia(
const std::string& vehID) {
806Vehicle::getLaneChangeState(
const std::string& vehID,
int direction) {
809 return veh->
isOnRoad() ?
CALL_MICRO_FUN(veh, getLaneChangeModel().getSavedState(direction), undefined) : undefined;
814Vehicle::getParameter(
const std::string& vehID,
const std::string& key) {
819 throw TraCIException(error);
828std::vector<std::pair<std::string, double> >
829Vehicle::getNeighbors(
const std::string& vehID,
const int mode) {
830 int dir = (1 & mode) != 0 ? -1 : 1;
831 bool queryLeaders = (2 & mode) != 0;
832 bool blockersOnly = (4 & mode) != 0;
835 std::vector<std::pair<std::string, double> > result;
836 if (veh ==
nullptr) {
839#ifdef DEBUG_NEIGHBORS
841 std::cout <<
"getNeighbors() for veh '" << vehID <<
"': dir=" << dir
842 <<
", queryLeaders=" << queryLeaders
843 <<
", blockersOnly=" << blockersOnly << std::endl;
852 if (targetLane ==
nullptr) {
877 for (
int i = 0; i < neighbors.
numSublanes(); i++) {
879 if (n.first !=
nullptr) {
888 if (n.second < secureGap) {
889 blockers.
addLeader(n.first, n.second, 0, i);
893 neighbors = blockers;
897 for (
int i = 0; i < neighbors.
numSublanes(); i++) {
899 if (n.first !=
nullptr &&
901 (result.size() == 0 || result.back().first != n.first->getID())) {
902 result.push_back(std::make_pair(n.first->getID(), n.second));
911Vehicle::getFollowSpeed(
const std::string& vehID,
double speed,
double gap,
double leaderSpeed,
double leaderMaxDecel,
const std::string& leaderID) {
914 if (veh ==
nullptr) {
915 WRITE_ERROR(
"getFollowSpeed not applicable for meso");
924Vehicle::getSecureGap(
const std::string& vehID,
double speed,
double leaderSpeed,
double leaderMaxDecel,
const std::string& leaderID) {
927 if (veh ==
nullptr) {
928 WRITE_ERROR(
"getSecureGap not applicable for meso");
937Vehicle::getStopSpeed(
const std::string& vehID,
const double speed,
double gap) {
940 if (veh ==
nullptr) {
941 WRITE_ERROR(
"getStopSpeed not applicable for meso");
948Vehicle::getStopDelay(
const std::string& vehID) {
954Vehicle::getImpatience(
const std::string& vehID) {
960Vehicle::getStopArrivalDelay(
const std::string& vehID) {
970Vehicle::getTimeLoss(
const std::string& vehID) {
974std::vector<std::string>
975Vehicle::getTaxiFleet(
int taxiState) {
976 std::vector<std::string> result;
978 if (taxi->getHolder().hasDeparted()) {
980 || (taxiState == 0 && taxi->getState() == 0)
981 || (taxiState != 0 && (taxi->getState() & taxiState) == taxiState)) {
982 result.push_back(taxi->getHolder().getID());
989std::vector<std::string>
990Vehicle::getLoadedIDList() {
991 std::vector<std::string> ids;
994 ids.push_back(i->first);
999std::vector<std::string>
1000Vehicle::getTeleportingIDList() {
1001 std::vector<std::string> ids;
1006 ids.push_back(veh->
getID());
1013Vehicle::getEmissionClass(
const std::string& vehID) {
1018Vehicle::getShapeClass(
const std::string& vehID) {
1024Vehicle::getLength(
const std::string& vehID) {
1030Vehicle::getAccel(
const std::string& vehID) {
1036Vehicle::getDecel(
const std::string& vehID) {
1041double Vehicle::getEmergencyDecel(
const std::string& vehID) {
1046double Vehicle::getApparentDecel(
const std::string& vehID) {
1051double Vehicle::getActionStepLength(
const std::string& vehID) {
1056double Vehicle::getLastActionTime(
const std::string& vehID) {
1059 if (microVeh !=
nullptr) {
1069Vehicle::getTau(
const std::string& vehID) {
1075Vehicle::getImperfection(
const std::string& vehID) {
1081Vehicle::getSpeedDeviation(
const std::string& vehID) {
1087Vehicle::getVehicleClass(
const std::string& vehID) {
1093Vehicle::getMinGap(
const std::string& vehID) {
1099Vehicle::getMinGapLat(
const std::string& vehID) {
1102 }
catch (
const TraCIException&) {
1110Vehicle::getMaxSpeed(
const std::string& vehID) {
1116Vehicle::getMaxSpeedLat(
const std::string& vehID) {
1122Vehicle::getLateralAlignment(
const std::string& vehID) {
1128Vehicle::getWidth(
const std::string& vehID) {
1134Vehicle::getHeight(
const std::string& vehID) {
1140Vehicle::getMass(
const std::string& vehID) {
1146Vehicle::setStop(
const std::string& vehID,
1147 const std::string& edgeID,
1156 pos, laneIndex, startPos, flags, duration, until);
1159 throw TraCIException(error);
1165Vehicle::replaceStop(
const std::string& vehID,
1167 const std::string& edgeID,
1180 if (teleport != 0) {
1181 if (!vehicle->
rerouteBetweenStops(nextStopIndex,
"traci:replaceStop", (teleport & 1), error)) {
1182 throw TraCIException(
"Stop replacement failed for vehicle '" + vehID +
"' (" + error +
").");
1186 if (msVeh->
getLane() !=
nullptr) {
1191 throw TraCIException(
"Stop replacement failed for vehicle '" + vehID +
"' (invalid nextStopIndex).");
1195 pos, laneIndex, startPos, flags, duration, until);
1197 if (!vehicle->
replaceStop(nextStopIndex, stopPars,
"traci:replaceStop", teleport != 0, error)) {
1198 throw TraCIException(
"Stop replacement failed for vehicle '" + vehID +
"' (" + error +
").");
1205Vehicle::insertStop(
const std::string& vehID,
1207 const std::string& edgeID,
1217 pos, laneIndex, startPos, flags, duration, until);
1220 if (!vehicle->
insertStop(nextStopIndex, stopPars,
"traci:insertStop", teleport != 0, error)) {
1221 throw TraCIException(
"Stop insertion failed for vehicle '" + vehID +
"' (" + error +
").");
1227Vehicle::getStopParameter(
const std::string& vehID,
int nextStopIndex,
const std::string& param,
bool customParam) {
1230 if (nextStopIndex >= (
int)vehicle->
getStops().size() || (nextStopIndex < 0 && -nextStopIndex > (
int)vehicle->
getPastStops().size())) {
1308 throw TraCIException(
"Could not get stop parameter for vehicle '" + vehID +
"' (" + e.what() +
")");
1315Vehicle::setStopParameter(
const std::string& vehID,
int nextStopIndex,
1316 const std::string& param,
const std::string& value,
1337 std::string edgeOrStopID = value;
1340 edgeOrStopID = pars.
edge;
1379 throw TraCIException(
"Changing stop index is not supported");
1384 if (pars.
speed > 0 && value !=
"") {
1385 throw ProcessError(
TLF(
"Waypoint (speed = %) at index % does not support triggers", pars.
speed, nextStopIndex));
1423 throw ProcessError(
TLF(
"Triggered stop at index % cannot be changed into a waypoint by setting speed to %", nextStopIndex, speed));
1446 throw TraCIException(
"Could not set stop parameter for vehicle '" + vehID +
"' (" + e.what() +
")");
1452Vehicle::rerouteParkingArea(
const std::string& vehID,
const std::string& parkingAreaID) {
1455 if (veh ==
nullptr) {
1456 WRITE_WARNING(
"rerouteParkingArea not yet implemented for meso");
1462 throw TraCIException(error);
1467Vehicle::resume(
const std::string& vehID) {
1470 if (veh ==
nullptr) {
1475 throw TraCIException(
"Failed to resume vehicle '" + veh->
getID() +
"', it has no stops.");
1479 std::ostringstream strs;
1480 strs <<
"reached: " << sto.
reached;
1481 strs <<
", duration:" << sto.
duration;
1482 strs <<
", edge:" << (*sto.
edge)->getID();
1484 std::string posStr = strs.str();
1485 throw TraCIException(
"Failed to resume from stopping for vehicle '" + veh->
getID() +
"', " + posStr);
1491Vehicle::changeTarget(
const std::string& vehID,
const std::string& edgeID) {
1494 const bool onInit = isOnInit(vehID);
1495 if (destEdge ==
nullptr) {
1496 throw TraCIException(
"Destination edge '" + edgeID +
"' is not known.");
1501 veh->
getRouterTT(), onInit,
false,
false, destEdge);
1503 throw TraCIException(
"ChangeTarget failed for vehicle '" + veh->
getID() +
"', destination edge '" + edgeID +
"' unreachable.");
1506 throw TraCIException(e.what());
1512Vehicle::changeLane(
const std::string& vehID,
int laneIndex,
double duration) {
1516 throw TraCIException(
"Duration parameter exceeds the time value range.");
1520 if (veh ==
nullptr) {
1521 WRITE_ERROR(
"changeLane not applicable for meso");
1525 std::vector<std::pair<SUMOTime, int> > laneTimeLine;
1526 laneTimeLine.push_back(std::make_pair(
MSNet::getInstance()->getCurrentTimeStep(), laneIndex));
1532Vehicle::changeLaneRelative(
const std::string& vehID,
int indexOffset,
double duration) {
1536 throw TraCIException(
"Duration parameter exceeds the time value range.");
1540 if (veh ==
nullptr) {
1541 WRITE_ERROR(
"changeLaneRelative not applicable for meso");
1545 std::vector<std::pair<SUMOTime, int> > laneTimeLine;
1547 if (laneIndex < 0 && !veh->getLaneChangeModel().isOpposite()) {
1549 WRITE_WARNINGF(
TL(
"Ignoring changeLaneRelative for vehicle '%' that isn't on the road"), vehID);
1554 laneTimeLine.push_back(std::make_pair(
MSNet::getInstance()->getCurrentTimeStep(), laneIndex));
1562Vehicle::changeSublane(
const std::string& vehID,
double latDist) {
1565 if (veh ==
nullptr) {
1566 WRITE_ERROR(
"changeSublane not applicable for meso");
1575Vehicle::add(
const std::string& vehID,
1576 const std::string& routeID,
1577 const std::string& typeID,
1578 const std::string& depart,
1579 const std::string& departLane,
1580 const std::string& departPos,
1581 const std::string& departSpeed,
1582 const std::string& arrivalLane,
1583 const std::string& arrivalPos,
1584 const std::string& arrivalSpeed,
1585 const std::string& fromTaz,
1586 const std::string& toTaz,
1587 const std::string& line,
1591 if (veh !=
nullptr) {
1592 throw TraCIException(
"The vehicle '" + vehID +
"' to add already exists.");
1596 vehicleParams.
id = vehID;
1599 throw TraCIException(
"Invalid type '" + typeID +
"' for vehicle '" + vehID +
"'.");
1601 if (typeID !=
"DEFAULT_VEHTYPE") {
1602 vehicleParams.
vtypeid = typeID;
1606 WRITE_WARNINGF(
TL(
"Internal routes receive an ID starting with '!' and must not be referenced in other vehicle or flow definitions. Please remove all references to route '%' in case it is internal."), routeID);
1610 if (routeID ==
"") {
1616 if (route ==
nullptr) {
1619 std::vector<std::string> edges;
1620 edges.push_back(e->getID());
1621 libsumo::Route::add(dummyRouteID, edges);
1631 throw TraCIException(
"Invalid route '" + routeID +
"' for vehicle '" + vehID +
"'.");
1635 if (route->getEdges().size() == 2) {
1636 const MSEdgeVector& succ = route->getEdges().front()->getSuccessors();
1637 if (std::find(succ.begin(), succ.end(), route->getEdges().back()) == succ.end()) {
1641 if (fromTaz !=
"" || toTaz !=
"") {
1646 throw TraCIException(error);
1650 WRITE_WARNINGF(
TL(
"Departure time for vehicle '%' is in the past; using current time instead."), vehID);
1655 throw TraCIException(error);
1658 throw TraCIException(error);
1661 throw TraCIException(error);
1664 throw TraCIException(error);
1667 throw TraCIException(error);
1670 throw TraCIException(error);
1673 if (departLane !=
"first") {
1676 if (departPos !=
"base") {
1679 if (departSpeed !=
"0") {
1682 if (arrivalLane !=
"current") {
1685 if (arrivalPos !=
"max") {
1688 if (arrivalSpeed !=
"current") {
1691 if (fromTaz !=
"") {
1700 if (personNumber != 0) {
1704 vehicleParams.
fromTaz = fromTaz;
1705 vehicleParams.
toTaz = toTaz;
1706 vehicleParams.
line = line;
1714 if (fromTaz ==
"" && !route->getEdges().front()->validateDepartSpeed(*vehicle)) {
1716 throw TraCIException(
"Departure speed for vehicle '" + vehID +
"' is too high for the departure edge '" + route->getEdges().front()->getID() +
"'.");
1721 throw TraCIException(
"Vehicle '" + vehID +
"' has no valid route (" + msg +
"). ");
1728 if (vehicle !=
nullptr) {
1731 throw TraCIException(e.what());
1737Vehicle::moveToXY(
const std::string& vehID,
const std::string& edgeID,
const int laneIndex,
1738 const double x,
const double y,
double angle,
const int keepRoute,
double matchThreshold) {
1741 if (veh ==
nullptr) {
1745 const bool doKeepRoute = (keepRoute & 1) != 0 && veh->
getID() !=
"VTD_EGO";
1746 const bool mayLeaveNetwork = (keepRoute & 2) != 0;
1747 const bool ignorePermissions = (keepRoute & 4) != 0;
1751 const std::string origID = edgeID +
"_" +
toString(laneIndex);
1755 const double origAngle = angle;
1760 while (angle >= 360.) {
1763 while (angle < 0.) {
1771 std::cout <<
" wantedPos=" << pos <<
" origID=" << origID <<
" laneIndex=" << laneIndex <<
" origAngle=" << origAngle <<
" angle=" << angle <<
" keepRoute=" << keepRoute << std::endl;
1777 double lanePosLat = 0;
1778 double bestDistance = std::numeric_limits<double>::max();
1779 int routeOffset = 0;
1781 double maxRouteDistance = matchThreshold;
1790 vClass, setLateralPos,
1791 bestDistance, &lane, lanePos, routeOffset);
1798 bestDistance, &lane, lanePos, routeOffset, edges);
1800 if ((found && bestDistance <= maxRouteDistance) || mayLeaveNetwork) {
1803 if (found && setLateralPos) {
1806 lanePosLat = perpDist;
1807 if (!mayLeaveNetwork) {
1819 lanePosLat = -lanePosLat;
1828 assert((found && lane != 0) || (!found && lane == 0));
1829 assert(!std::isnan(lanePos));
1831 if (lane !=
nullptr) {
1840 std::cout <<
SIMTIME <<
" veh=" << vehID +
" moveToXYResult lane='" <<
Named::getIDSecure(lane) <<
"' lanePos=" << lanePos <<
" lanePosLat=" << lanePosLat <<
"\n";
1847 if (lane ==
nullptr) {
1848 throw TraCIException(
"Could not map vehicle '" + vehID +
"', no road found within " +
toString(maxRouteDistance) +
"m.");
1850 throw TraCIException(
"Could not map vehicle '" + vehID +
"', distance to road is " +
toString(bestDistance) +
".");
1856Vehicle::slowDown(
const std::string& vehID,
double speed,
double duration) {
1860 throw TraCIException(
"Duration parameter exceeds the time value range.");
1864 if (veh ==
nullptr) {
1869 std::vector<std::pair<SUMOTime, double> > speedTimeLine;
1876Vehicle::openGap(
const std::string& vehID,
double newTimeHeadway,
double newSpaceHeadway,
double duration,
double changeRate,
double maxDecel,
const std::string& referenceVehID) {
1880 throw TraCIException(
"Duration parameter exceeds the time value range.");
1884 if (veh ==
nullptr) {
1890 if (referenceVehID !=
"") {
1894 if (newTimeHeadway == -1) {
1895 newTimeHeadway = originalTau;
1897 if (originalTau > newTimeHeadway) {
1898 WRITE_WARNING(
"Ignoring openGap(). New time headway must not be smaller than the original.");
1905Vehicle::deactivateGapControl(
const std::string& vehID) {
1908 if (veh ==
nullptr) {
1909 WRITE_ERROR(
"deactivateGapControl not applicable for meso");
1919Vehicle::requestToC(
const std::string& vehID,
double leadTime) {
1920 setParameter(vehID,
"device.toc.requestToC",
toString(leadTime));
1924Vehicle::setSpeed(
const std::string& vehID,
double speed) {
1927 if (veh ==
nullptr) {
1932 std::vector<std::pair<SUMOTime, double> > speedTimeLine;
1934 speedTimeLine.push_back(std::make_pair(
MSNet::getInstance()->getCurrentTimeStep(), speed));
1941Vehicle::setAcceleration(
const std::string& vehID,
double acceleration,
double duration) {
1945 throw TraCIException(
"Duration parameter exceeds the time value range.");
1949 if (veh ==
nullptr) {
1950 WRITE_WARNING(
"setAcceleration not yet implemented for meso");
1954 double targetSpeed = std::max(veh->
getSpeed() + acceleration * duration, 0.0);
1955 std::vector<std::pair<SUMOTime, double>> speedTimeLine;
1962Vehicle::setPreviousSpeed(
const std::string& vehID,
double prevSpeed,
double prevAcceleration) {
1965 if (veh ==
nullptr) {
1966 WRITE_WARNING(
"setPreviousSpeed not yet implemented for meso");
1970 prevAcceleration = std::numeric_limits<double>::min();
1976Vehicle::setSpeedMode(
const std::string& vehID,
int speedMode) {
1979 if (veh ==
nullptr) {
1988Vehicle::setLaneChangeMode(
const std::string& vehID,
int laneChangeMode) {
1991 if (veh ==
nullptr) {
1992 WRITE_ERROR(
"setLaneChangeMode not applicable for meso");
2000Vehicle::setRoutingMode(
const std::string& vehID,
int routingMode) {
2005Vehicle::setType(
const std::string& vehID,
const std::string& typeID) {
2007 if (vehicleType ==
nullptr) {
2008 throw TraCIException(
"Vehicle type '" + typeID +
"' is not known");
2013 if (microVeh !=
nullptr && microVeh->
isOnRoad()) {
2020Vehicle::setRouteID(
const std::string& vehID,
const std::string& routeID) {
2024 throw TraCIException(
"The route '" + routeID +
"' is not known.");
2027 WRITE_WARNINGF(
TL(
"Internal routes receive an ID starting with '!' and must not be referenced in other vehicle or flow definitions. Please remove all references to route '%' in case it is internal."), routeID);
2033 throw TraCIException(
"Route replacement failed for " + veh->
getID());
2037 std::string errorMsg;
2038 if (!veh->
replaceRoute(r,
"traci:setRouteID", veh->
getLane() ==
nullptr, 0,
true,
true, &errorMsg)) {
2039 throw TraCIException(
"Route replacement failed for vehicle '" + veh->
getID() +
"' (" + errorMsg +
").");
2044Vehicle::setRoute(
const std::string& vehID,
const std::string& edgeID) {
2045 setRoute(vehID, std::vector<std::string>({edgeID}));
2050Vehicle::setRoute(
const std::string& vehID,
const std::vector<std::string>& edgeIDs) {
2053 const bool onInit = veh->
getLane() ==
nullptr;
2056 if (edges.size() > 0 && edges.front()->isInternal()) {
2057 if (edges.size() == 1) {
2059 edges.push_back(edges.back()->getLanes()[0]->getNextNormal());
2063 edges.erase(edges.begin());
2068 throw TraCIException(
"Invalid edge list for vehicle '" + veh->
getID() +
"' (" + e.what() +
")");
2070 std::string errorMsg;
2071 if (!veh->
replaceRouteEdges(edges, -1, 0,
"traci:setRoute", onInit,
true,
true, &errorMsg)) {
2072 throw TraCIException(
"Route replacement failed for vehicle '" + veh->
getID() +
"' (" + errorMsg +
").");
2078Vehicle::setLateralLanePosition(
const std::string& vehID,
double posLat) {
2081 if (veh !=
nullptr) {
2084 WRITE_ERROR(
"setLateralLanePosition not applicable for meso");
2090Vehicle::updateBestLanes(
const std::string& vehID) {
2093 if (veh ==
nullptr) {
2094 WRITE_ERROR(
"updateBestLanes not applicable for meso");
2104Vehicle::setAdaptedTraveltime(
const std::string& vehID,
const std::string& edgeID,
2105 double time,
double begSeconds,
double endSeconds) {
2108 if (edge ==
nullptr) {
2109 throw TraCIException(
"Edge '" + edgeID +
"' is not known.");
2113 if (begSeconds == 0 && endSeconds == std::numeric_limits<double>::max()) {
2130Vehicle::setEffort(
const std::string& vehID,
const std::string& edgeID,
2131 double effort,
double begSeconds,
double endSeconds) {
2134 if (edge ==
nullptr) {
2135 throw TraCIException(
"Edge '" + edgeID +
"' is not known.");
2139 if (begSeconds == 0 && endSeconds == std::numeric_limits<double>::max()) {
2156Vehicle::rerouteTraveltime(
const std::string& vehID,
const bool currentTravelTimes) {
2171Vehicle::rerouteEffort(
const std::string& vehID) {
2179Vehicle::setSignals(
const std::string& vehID,
int signals) {
2182 if (veh ==
nullptr) {
2183 WRITE_ERROR(
"setSignals not applicable for meso");
2198Vehicle::moveTo(
const std::string& vehID,
const std::string& laneID,
double pos,
int reason) {
2201 if (veh ==
nullptr) {
2208 throw TraCIException(
"Unknown lane '" + laneID +
"'.");
2232 throw TraCIException(
"Lane '" + laneID +
"' is not on the route of vehicle '" + vehID +
"'.");
2236 if (veh->
getLane() !=
nullptr) {
2244 const int newRouteIndex = (int)(it - veh->
getRoute().
begin());
2245 if (oldRouteIndex > newRouteIndex) {
2269 throw TraCIException(
"Invalid moveTo reason '" +
toString(reason) +
"' for vehicle '" + vehID +
"'.");
2279Vehicle::setActionStepLength(
const std::string& vehID,
double actionStepLength,
bool resetActionOffset) {
2280 if (actionStepLength < 0.0) {
2281 WRITE_ERROR(
"Invalid action step length (<0). Ignoring command setActionStepLength().");
2286 if (veh ==
nullptr) {
2287 WRITE_ERROR(
"setActionStepLength not applicable for meso");
2291 if (actionStepLength == 0.) {
2300Vehicle::setBoardingDuration(
const std::string& vehID,
double boardingDuration) {
2304 throw TraCIException(
"BoardingDuration parameter exceeds the time value range.");
2311Vehicle::setImpatience(
const std::string& vehID,
double impatience) {
2319Vehicle::remove(
const std::string& vehID,
char reason) {
2343 throw TraCIException(
"Unknown removal status.");
2348 if (microVeh !=
nullptr) {
2349 if (veh->
getLane() !=
nullptr) {
2363Vehicle::setColor(
const std::string& vehID,
const TraCIColor& col) {
2365 p.
color.
set((
unsigned char)col.r, (
unsigned char)col.g, (
unsigned char)col.b, (
unsigned char)col.a);
2371Vehicle::setSpeedFactor(
const std::string& vehID,
double factor) {
2377Vehicle::setLine(
const std::string& vehID,
const std::string& line) {
2383Vehicle::setVia(
const std::string& vehID,
const std::vector<std::string>& edgeList) {
2390 throw TraCIException(e.what());
2397Vehicle::setLength(
const std::string& vehID,
double length) {
2403Vehicle::setMaxSpeed(
const std::string& vehID,
double speed) {
2409Vehicle::setVehicleClass(
const std::string& vehID,
const std::string& clazz) {
2413 if (microVeh !=
nullptr && microVeh->
isOnRoad()) {
2420Vehicle::setShapeClass(
const std::string& vehID,
const std::string& clazz) {
2426Vehicle::setEmissionClass(
const std::string& vehID,
const std::string& clazz) {
2432Vehicle::setWidth(
const std::string& vehID,
double width) {
2438Vehicle::setHeight(
const std::string& vehID,
double height) {
2444Vehicle::setMass(
const std::string& vehID,
double mass) {
2450Vehicle::setMinGap(
const std::string& vehID,
double minGap) {
2454 if (microVeh !=
nullptr && microVeh->
isOnRoad()) {
2461Vehicle::setAccel(
const std::string& vehID,
double accel) {
2467Vehicle::setDecel(
const std::string& vehID,
double decel) {
2473Vehicle::setEmergencyDecel(
const std::string& vehID,
double decel) {
2474 VehicleType::setEmergencyDecel(
Helper::getVehicle(vehID)->getSingularType().getID(), decel);
2479Vehicle::setApparentDecel(
const std::string& vehID,
double decel) {
2485Vehicle::setImperfection(
const std::string& vehID,
double imperfection) {
2491Vehicle::setTau(
const std::string& vehID,
double tau) {
2497Vehicle::setMinGapLat(
const std::string& vehID,
double minGapLat) {
2499 setParameter(vehID,
"laneChangeModel.minGapLat",
toString(minGapLat));
2500 }
catch (TraCIException&) {
2508Vehicle::setMaxSpeedLat(
const std::string& vehID,
double speed) {
2514Vehicle::setLateralAlignment(
const std::string& vehID,
const std::string& latAlignment) {
2520 throw TraCIException(
"Unknown value '" + latAlignment +
"' when setting latAlignment for vehID '" + vehID +
"';\n must be one of (\"right\", \"center\", \"arbitrary\", \"nice\", \"compact\", \"left\" or a float)");
2526Vehicle::setParameter(
const std::string& vehID,
const std::string& key,
const std::string& value) {
2531 if (tok.size() < 3) {
2532 throw TraCIException(
"Invalid device parameter '" + key +
"' for vehicle '" + vehID +
"'");
2537 throw TraCIException(
"Vehicle '" + vehID +
"' does not support device parameter '" + key +
"' (" + e.what() +
").");
2540 if (microVeh ==
nullptr) {
2541 throw TraCIException(
"Meso Vehicle '" + vehID +
"' does not support laneChangeModel parameters.");
2543 const std::string attrName =
key.substr(16);
2551 throw TraCIException(
"Vehicle '" + vehID +
"' does not support laneChangeModel parameter '" + key +
"' (" + e.what() +
").");
2555 if (microVeh ==
nullptr) {
2556 throw TraCIException(
"Meso Vehicle '" + vehID +
"' does not support carFollowModel parameters.");
2561 throw TraCIException(
"Vehicle '" + vehID +
"' does not support carFollowModel parameter '" + key +
"' (" + e.what() +
").");
2569 throw TraCIException(e.what());
2573 if (tok.size() != 3) {
2574 throw TraCIException(
"Invalid request for device status change. Expected format is 'has.DEVICENAME.device'");
2576 const std::string deviceName = tok.get(1);
2581 throw TraCIException(
"Changing device status requires a 'true' or 'false'");
2584 throw TraCIException(
"Device removal is not supported for device of type '" + deviceName +
"'");
2589 throw TraCIException(
"Cannot create vehicle device (" + std::string(e.what()) +
").");
2598Vehicle::highlight(
const std::string& vehID,
const TraCIColor& col,
double size,
const int alphaMax,
const double duration,
const int type) {
2605 const double l2 = veh->
getLength() * 0.5;
2612 const unsigned int nPoints = 34;
2616#ifdef DEBUG_DYNAMIC_SHAPES
2617 std::cout <<
SIMTIME <<
" Vehicle::highlight() for vehicle '" << vehID <<
"'\n"
2618 <<
" circle: " << circlePV << std::endl;
2624 while (Polygon::exists(polyID)) {
2633 lyr += (type + 1) / 257.;
2636 Polygon::addHighlightPolygon(vehID, type, polyID, circle, col,
true,
"highlight", (
int)lyr, lw);
2639 double maxAttack = 1.0;
2640 std::vector<double> timeSpan;
2641 if (duration > 0.) {
2642 timeSpan = {0,
MIN2(maxAttack, duration / 3.), 2.*duration / 3., duration};
2645 std::vector<double> alphaSpan;
2646 if (alphaMax > 0.) {
2647 alphaSpan = {0., (double) alphaMax, (
double)(alphaMax) / 3., 0.};
2650 Polygon::addDynamics(polyID, vehID, timeSpan, alphaSpan,
false,
true);
2654Vehicle::dispatchTaxi(
const std::string& vehID,
const std::vector<std::string>& reservations) {
2658 throw TraCIException(
"Vehicle '" + vehID +
"' has not yet departed");
2660 if (taxi ==
nullptr) {
2661 throw TraCIException(
"Vehicle '" + vehID +
"' is not a taxi");
2664 if (dispatcher ==
nullptr) {
2665 throw TraCIException(
"Cannot dispatch taxi because no reservations have been made");
2668 if (traciDispatcher ==
nullptr) {
2669 throw TraCIException(
"device.taxi.dispatch-algorithm 'traci' has not been loaded");
2671 if (reservations.size() == 0) {
2672 throw TraCIException(
"No reservations have been specified for vehicle '" + vehID +
"'");
2677 throw TraCIException(
"Could not interpret reservations for vehicle '" + vehID +
"' (" + e.what() +
").");
2685Vehicle::subscribeLeader(
const std::string& vehID,
double dist,
double begin,
double end) {
2692Vehicle::addSubscriptionFilterLanes(
const std::vector<int>& lanes,
bool noOpposite,
double downstreamDist,
double upstreamDist) {
2695 s->filterLanes = lanes;
2698 addSubscriptionFilterNoOpposite();
2701 addSubscriptionFilterDownstreamDistance(downstreamDist);
2704 addSubscriptionFilterUpstreamDistance(upstreamDist);
2710Vehicle::addSubscriptionFilterNoOpposite() {
2716Vehicle::addSubscriptionFilterDownstreamDistance(
double dist) {
2719 s->filterDownstreamDist = dist;
2725Vehicle::addSubscriptionFilterUpstreamDistance(
double dist) {
2728 s->filterUpstreamDist = dist;
2734Vehicle::addSubscriptionFilterCFManeuver(
double downstreamDist,
double upstreamDist) {
2735 addSubscriptionFilterLeadFollow(std::vector<int>({0}));
2737 addSubscriptionFilterDownstreamDistance(downstreamDist);
2740 addSubscriptionFilterUpstreamDistance(upstreamDist);
2747Vehicle::addSubscriptionFilterLCManeuver(
int direction,
bool noOpposite,
double downstreamDist,
double upstreamDist) {
2748 std::vector<int> lanes;
2751 lanes = std::vector<int>({-1, 0, 1});
2752 }
else if (direction != -1 && direction != 1) {
2753 WRITE_WARNINGF(
TL(
"Ignoring lane change subscription filter with non-neighboring lane offset direction=%."), direction);
2755 lanes = std::vector<int>({0, direction});
2757 addSubscriptionFilterLeadFollow(lanes);
2759 addSubscriptionFilterNoOpposite();
2762 addSubscriptionFilterDownstreamDistance(downstreamDist);
2765 addSubscriptionFilterUpstreamDistance(upstreamDist);
2771Vehicle::addSubscriptionFilterLeadFollow(
const std::vector<int>& lanes) {
2773 addSubscriptionFilterLanes(lanes);
2778Vehicle::addSubscriptionFilterTurn(
double downstreamDist,
double foeDistToJunction) {
2781 addSubscriptionFilterDownstreamDistance(downstreamDist);
2784 s->filterFoeDistToJunction = foeDistToJunction;
2790Vehicle::addSubscriptionFilterVClass(
const std::vector<std::string>& vClasses) {
2799Vehicle::addSubscriptionFilterVType(
const std::vector<std::string>& vTypes) {
2802 s->filterVTypes.insert(vTypes.begin(), vTypes.end());
2808Vehicle::addSubscriptionFilterFieldOfVision(
double openingAngle) {
2811 s->filterFieldOfVisionOpeningAngle = openingAngle;
2817Vehicle::addSubscriptionFilterLateralDistance(
double lateralDist,
double downstreamDist,
double upstreamDist) {
2820 s->filterLateralDist = lateralDist;
2823 addSubscriptionFilterDownstreamDistance(downstreamDist);
2826 addSubscriptionFilterUpstreamDistance(upstreamDist);
2837std::shared_ptr<VariableWrapper>
2838Vehicle::makeWrapper() {
2839 return std::make_shared<Helper::SubscriptionWrapper>(handleVariable, mySubscriptionResults, myContextSubscriptionResults);
2844Vehicle::handleVariable(
const std::string& objID,
const int variable, VariableWrapper* wrapper,
tcpip::Storage* paramData) {
2847 return wrapper->wrapStringList(objID, variable, getIDList());
2849 return wrapper->wrapInt(objID, variable, getIDCount());
2851 return wrapper->wrapPosition(objID, variable, getPosition(objID));
2853 return wrapper->wrapPosition(objID, variable, getPosition(objID,
true));
2855 return wrapper->wrapDouble(objID, variable, getAngle(objID));
2857 return wrapper->wrapDouble(objID, variable, getSpeed(objID));
2859 return wrapper->wrapDouble(objID, variable, getLateralSpeed(objID));
2861 return wrapper->wrapString(objID, variable, getRoadID(objID));
2863 return wrapper->wrapDouble(objID, variable, getSpeedWithoutTraCI(objID));
2865 return wrapper->wrapDouble(objID, variable, getSlope(objID));
2867 return wrapper->wrapString(objID, variable, getLaneID(objID));
2869 return wrapper->wrapInt(objID, variable, getLaneIndex(objID));
2871 return wrapper->wrapString(objID, variable, getSegmentID(objID));
2873 return wrapper->wrapInt(objID, variable, getSegmentIndex(objID));
2875 return wrapper->wrapString(objID, variable, getTypeID(objID));
2877 return wrapper->wrapString(objID, variable, getRouteID(objID));
2879 return wrapper->wrapDouble(objID, variable, getDeparture(objID));
2881 return wrapper->wrapDouble(objID, variable, getDepartDelay(objID));
2883 return wrapper->wrapInt(objID, variable, getRouteIndex(objID));
2885 return wrapper->wrapColor(objID, variable, getColor(objID));
2887 return wrapper->wrapDouble(objID, variable, getLanePosition(objID));
2889 return wrapper->wrapDouble(objID, variable, getLateralLanePosition(objID));
2891 return wrapper->wrapDouble(objID, variable, getCO2Emission(objID));
2893 return wrapper->wrapDouble(objID, variable, getCOEmission(objID));
2895 return wrapper->wrapDouble(objID, variable, getHCEmission(objID));
2897 return wrapper->wrapDouble(objID, variable, getPMxEmission(objID));
2899 return wrapper->wrapDouble(objID, variable, getNOxEmission(objID));
2901 return wrapper->wrapDouble(objID, variable, getFuelConsumption(objID));
2903 return wrapper->wrapDouble(objID, variable, getNoiseEmission(objID));
2905 return wrapper->wrapDouble(objID, variable, getElectricityConsumption(objID));
2907 return wrapper->wrapInt(objID, variable, getPersonNumber(objID));
2909 return wrapper->wrapInt(objID, variable, getPersonCapacity(objID));
2911 return wrapper->wrapDouble(objID, variable, getBoardingDuration(objID));
2913 return wrapper->wrapStringList(objID, variable, getPersonIDList(objID));
2915 return wrapper->wrapDouble(objID, variable, getWaitingTime(objID));
2917 return wrapper->wrapDouble(objID, variable, getAccumulatedWaitingTime(objID));
2921 return wrapper->wrapDouble(objID, variable, getAdaptedTraveltime(objID, time,
StoHelp::readTypedString(*paramData)));
2929 return wrapper->wrapInt(objID, variable, isRouteValid(objID));
2931 return wrapper->wrapStringList(objID, variable, getRoute(objID));
2933 return wrapper->wrapInt(objID, variable, getSignals(objID));
2935 return wrapper->wrapBestLanesDataVector(objID, variable, getBestLanes(objID));
2937 return wrapper->wrapConnectionVector(objID, variable, getNextLinks(objID));
2939 return wrapper->wrapInt(objID, variable, getStopState(objID));
2941 return wrapper->wrapDouble(objID, variable, getDistance(objID));
2943 return wrapper->wrapDouble(objID, variable, getReferenceDistance(objID));
2945 return wrapper->wrapDouble(objID, variable, getAllowedSpeed(objID));
2947 return wrapper->wrapDouble(objID, variable, getSpeedFactor(objID));
2949 return wrapper->wrapInt(objID, variable, getSpeedMode(objID));
2951 return wrapper->wrapInt(objID, variable, getLaneChangeMode(objID));
2953 return wrapper->wrapInt(objID, variable, getRoutingMode(objID));
2955 return wrapper->wrapString(objID, variable, getLine(objID));
2957 return wrapper->wrapStringList(objID, variable, getVia(objID));
2959 return wrapper->wrapDouble(objID, variable, getAcceleration(objID));
2961 return wrapper->wrapDouble(objID, variable, getLastActionTime(objID));
2963 return wrapper->wrapDouble(objID, variable, getStopDelay(objID));
2965 return wrapper->wrapDouble(objID, variable, getImpatience(objID));
2967 return wrapper->wrapDouble(objID, variable, getStopArrivalDelay(objID));
2969 return wrapper->wrapDouble(objID, variable, getTimeLoss(objID));
2971 return wrapper->wrapDouble(objID, variable, getMinGapLat(objID));
2977 return wrapper->wrapStringList(objID, variable, getLoadedIDList());
2979 return wrapper->wrapStringList(objID, variable, getTeleportingIDList());
2986 return wrapper->wrapDouble(objID, variable, getFollowSpeed(objID, speed, gap, leaderSpeed, leaderMaxDecel,
StoHelp::readTypedString(*paramData)));
2993 return wrapper->wrapDouble(objID, variable, getSecureGap(objID, speed, leaderSpeed, leaderMaxDecel,
StoHelp::readTypedString(*paramData)));
3001 return wrapper->wrapJunctionFoeVector(objID, variable, getJunctionFoes(objID,
StoHelp::readTypedDouble(*paramData)));
3003 return wrapper->wrapStringDoublePairList(objID, variable, getNeighbors(objID,
StoHelp::readTypedByte(*paramData)));
3005 return wrapper->wrapIntPair(objID, variable, getLaneChangeState(objID,
StoHelp::readTypedInt(*paramData)));
3011 return wrapper->wrapString(objID, variable, getStopParameter(objID, nextStopIndex, param, customParam));
3014 return wrapper->wrapNextTLSDataVector(objID, variable, getNextTLS(objID));
3016 return wrapper->wrapNextStopDataVector(objID, variable, getNextStops(objID));
3018 return wrapper->wrapNextStopDataVector(objID, variable, getStops(objID,
StoHelp::readTypedInt(*paramData)));
3020 TraCIRoadPosition roadPos;
3023 return wrapper->wrapDouble(objID, variable, getDrivingDistance(objID, roadPos.edgeID, roadPos.pos, roadPos.laneIndex));
3025 return wrapper->wrapDouble(objID, variable, getDrivingDistance2D(objID, pos.
x(), pos.
y()));
3034 return VehicleType::handleVariableWithID(objID, getTypeID(objID), variable, wrapper, paramData);
std::vector< const MSEdge * > ConstMSEdgeVector
std::vector< MSEdge * > MSEdgeVector
std::pair< const MSVehicle *, double > CLeaderDist
ConstMSEdgeVector::const_iterator MSRouteIterator
#define WRITE_WARNINGF(...)
#define WRITE_WARNING(msg)
std::shared_ptr< const MSRoute > ConstMSRoutePtr
void checkTimeBounds(const double time)
check the valid SUMOTime range of double input and throw an error if out of bounds
SUMOTime string2time(const std::string &r)
convert string to SUMOTime
std::string time2string(SUMOTime t, bool humanReadable)
convert SUMOTime to string (independently of global format setting)
LatAlignmentDefinition
Possible ways to choose the lateral alignment, i.e., how vehicles align themselves within their lane.
SUMOVehicleClass getVehicleClassID(const std::string &name)
Returns the class id of the abstract class given by its name.
SUMOVehicleShape getVehicleShapeID(const std::string &name)
Returns the class id of the shape class given by its name.
SVCPermissions parseVehicleClasses(const std::string &allowedS)
Parses the given definition of allowed vehicle classes into the given containers Deprecated classes g...
std::string getVehicleShapeName(SUMOVehicleShape id)
Returns the class name of the shape class given by its id.
StringBijection< SUMOVehicleClass > SumoVehicleClassStrings(sumoVehicleClassStringInitializer, SVC_CUSTOM2, false)
SUMOVehicleClass
Definition of vehicle classes to differ between different lane usage and authority types.
@ SVC_IGNORING
vehicles ignoring classes
const long long int VEHPARS_ARRIVALSPEED_SET
const long long int VEHPARS_PERSON_NUMBER_SET
const long long int VEHPARS_DEPARTSPEED_SET
const int STOP_ARRIVAL_SET
const int STOP_DURATION_SET
const int STOP_POSLAT_SET
const int STOP_EXPECTED_SET
const long long int VEHPARS_FORCE_REROUTE
const int STOP_JUMP_UNTIL_SET
const int STOP_PARKING_SET
const int STOP_TRIP_ID_SET
const long long int VEHPARS_COLOR_SET
std::vector< SUMOVehicleParameter::Stop > StopParVector
const int STOP_PERMITTED_SET
const long long int VEHPARS_TO_TAZ_SET
const long long int VEHPARS_ARRIVALLANE_SET
const long long int VEHPARS_DEPARTLANE_SET
const long long int VEHPARS_DEPARTPOS_SET
const long long int VEHPARS_ARRIVALPOS_SET
const int STOP_EXTENSION_SET
const long long int VEHPARS_FROM_TAZ_SET
const int STOP_TRIGGER_SET
const long long int VEHPARS_VTYPE_SET
const int STOP_ONDEMAND_SET
const int STOP_STARTED_SET
const int STOP_EXPECTED_CONTAINERS_SET
const long long int VEHPARS_LINE_SET
@ GIVEN
The time is given.
@ NOW
The vehicle is discarded if emission fails (not fully implemented yet)
@ CONTAINER_TRIGGERED
The departure is container triggered.
@ TRIGGERED
The departure is person triggered.
@ LCA_UNKNOWN
The action has not been determined.
@ SUMO_ATTR_CONTAINER_STOP
@ SUMO_ATTR_CHARGING_STATION
@ SUMO_ATTR_LCA_CONTRIGHT
@ SUMO_ATTR_EXPECTED_CONTAINERS
const double INVALID_DOUBLE
invalid double
std::string joinToString(const std::vector< T > &v, const T_BETWEEN &between, std::streamsize accuracy=gPrecision)
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
#define LIBSUMO_SUBSCRIPTION_IMPLEMENTATION(CLASS, DOM)
#define LIBSUMO_GET_PARAMETER_WITH_KEY_IMPLEMENTATION(CLASS)
double getParameter(const int index) const
Returns the nth parameter of this distribution.
static PositionVector makeRing(const double radius1, const double radius2, const Position ¢er, unsigned int nPoints)
static const double INVALID_OFFSET
a value to signify offsets outside the range of [0, Line.length()]
static double naviDegree(const double angle)
A vehicle from the mesoscopic point of view.
int getQueIndex() const
Returns the index of the que the vehicle is in.
SUMOTime getEventTime() const
Returns the (planned) time at which the vehicle leaves its current segment.
virtual double getSafetyFactor() const
return factor for modifying the safety constraints of the car-following model
virtual void setParameter(const std::string &key, const std::string &value)
try to set the given parameter for this laneChangeModel. Throw exception for unsupported key
void setExtraImpatience(double value)
Sets routing behavior.
The base class for microscopic and mesoscopic vehicles.
double getMaxSpeed() const
Returns the maximum speed (the minimum of desired and technical maximum speed)
double getImpatience() const
Returns this vehicles impatience.
void resetRoutePosition(int index, DepartLaneDefinition departLaneProcedure)
reset index of edge within route
bool replaceStop(int nextStopIndex, SUMOVehicleParameter::Stop stop, const std::string &info, bool teleport, std::string &errorMsg)
void setChosenSpeedFactor(const double factor)
Returns the precomputed factor by which the driver wants to be faster than the speed limit.
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.
virtual double getStopDelay() const
Returns the estimated public transport stop (departure) delay in seconds.
bool rerouteBetweenStops(int nextStopIndex, const std::string &info, bool teleport, std::string &errorMsg)
const SUMOVehicleParameter & getParameter() const
Returns the vehicle's parameter (including departure definition)
double getChosenSpeedFactor() const
Returns the precomputed factor by which the driver wants to be faster than the speed limit.
virtual BaseInfluencer & getBaseInfluencer()=0
Returns the velocity/lane influencer.
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.
virtual double getTimeLossSeconds() const
Returns the time loss in seconds.
double getOdometer() const
Returns the distance that was already driven by this vehicle.
MSVehicleType & getSingularType()
Replaces the current vehicle type with a new one used by this vehicle only.
const MSRouteIterator & getCurrentRouteEdge() const
Returns an iterator pointing to the current edge in this vehicles route.
bool hasValidRoute(std::string &msg, ConstMSRoutePtr route=0) const
Validates the current or given route.
virtual void onRemovalFromNet(const MSMoveReminder::Notification)
Called when the vehicle is removed from the network.
double getLength() const
Returns the vehicle's length.
bool isParking() const
Returns whether the vehicle is parking.
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.
void setJunctionModelParameter(const std::string &key, const std::string &value)
set individual junction model paramete (not type related)
bool hasDeparted() const
Returns whether this vehicle has already departed.
const std::list< MSStop > & getStops() const
SUMOTime getDeparture() const
Returns this vehicle's real departure time.
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...
virtual std::pair< const MSVehicle *const, double > getLeader(double dist=0, bool considerCrossingFoes=true) const
Returns the leader of the vehicle looking for a fixed distance.
bool hasStops() const
Returns whether the vehicle has to stop somewhere.
void addToOdometer(double value)
Manipulate the odometer.
const MSStop & getNextStop() const
std::string getPrefixedParameter(const std::string &key, std::string &error) const
retrieve parameters of devices, models and the vehicle itself
SUMOVehicleClass getVClass() const
Returns the vehicle's access class.
virtual double getStopArrivalDelay() const
Returns the estimated public transport stop arrival delay in seconds.
MSStop & getStop(int nextStopIndex)
virtual std::pair< const MSVehicle *const, double > getFollower(double dist=0) const
Returns the follower of the vehicle looking for a fixed distance.
bool insertStop(int nextStopIndex, SUMOVehicleParameter::Stop stop, const std::string &info, bool teleport, std::string &errorMsg)
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.
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
const StopParVector & getPastStops() const
double getEmissions() const
Returns emissions of the current state The value is always per 1s, so multiply by step length if nece...
SUMOAbstractRouter< MSEdge, SUMOVehicle > & getRouterTT() const
virtual bool isOnRoad() const
Returns the information whether the vehicle is on a road (is simulated)
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.
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
virtual void replaceVehicleType(const MSVehicleType *type)
Replaces the current vehicle type by the one given.
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.
double getEmergencyDecel() const
Get the vehicle type's maximal physically possible deceleration [m/s^2].
@ FUTURE
the return value is used for calculating future speeds
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 getApparentDecel() const
Get the vehicle type's apparent deceleration [m/s^2] (the one regarded by its followers.
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....
virtual double getImperfection() const
Get the driver's imperfection.
double getMaxDecel() const
Get the vehicle type's maximal comfortable deceleration [m/s^2].
virtual double followSpeed(const MSVehicle *const veh, double speed, double gap2pred, double predSpeed, double predMaxDecel, const MSVehicle *const pred=0, const CalcReason usage=CalcReason::CURRENT) const =0
Computes the vehicle's follow speed (no dawdling)
double stopSpeed(const MSVehicle *const veh, const double speed, double gap, const CalcReason usage=CalcReason::CURRENT) const
Computes the vehicle's safe speed for approaching a non-moving obstacle (no dawdling)
virtual double getHeadwayTime() const
Get the driver's desired headway [s].
A device which collects info on the vehicle trip (mainly on departure and arrival)
static const std::vector< MSDevice_Taxi * > & getFleet()
static MSDispatch * getDispatchAlgorithm()
A dispatch algorithm that services customers in reservation order and always sends the closest availa...
void interpretDispatch(MSDevice_Taxi *taxi, const std::vector< std::string > &reservationsIDs)
trigger taxi dispatch.
An algorithm that performs distpach for a taxi fleet.
A road/street connecting two junctions.
static const MSEdgeVector & getAllEdges()
Returns all edges with a numerical id.
const std::vector< MSLane * > & getLanes() const
Returns this edge's lanes.
static void parseEdgesList(const std::string &desc, ConstMSEdgeVector &into, const std::string &rid)
Parses the given string assuming it contains a list of edge ids divided by spaces.
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.
double getLength() const
return the length of the edge
double getDistanceAt(double pos) const
Returns the kilometrage/mileage at the given offset along the edge.
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....
double getVehicleMaxSpeed(const SUMOTrafficObject *const veh) const
Returns the maximum speed the vehicle may use on this edge.
const MSEdge * getNormalBefore() const
if this edge is an internal edge, return its first normal predecessor, otherwise the edge itself
bool retrieveExistingTravelTime(const MSEdge *const e, const double t, double &value) const
Returns a travel time for an edge and time if stored.
bool knowsTravelTime(const MSEdge *const e) const
Returns the information whether any travel time is known for the given edge.
void addTravelTime(const MSEdge *const e, double begin, double end, double value)
Adds a travel time information for an edge and a time span.
void removeEffort(const MSEdge *const e)
Removes the effort information for an edge.
bool knowsEffort(const MSEdge *const e) const
Returns the information whether any effort is known for the given edge.
void addEffort(const MSEdge *const e, double begin, double end, double value)
Adds an effort information for an edge and a time span.
bool retrieveExistingEffort(const MSEdge *const e, const double t, double &value) const
Returns an effort for an edge and time if stored.
void removeTravelTime(const MSEdge *const e)
Removes the travel time information for an edge.
static double gLateralResolution
static bool gSemiImplicitEulerUpdate
void alreadyDeparted(SUMOVehicle *veh)
stops trying to emit the given vehicle (because it already departed)
void add(SUMOVehicle *veh)
Adds a single vehicle for departure.
virtual const MSJunctionLogic * getLogic() const
virtual const MSLogicJunction::LinkBits & getResponseFor(int linkIndex) const
Returns the response for the given link.
Representation of a lane in the micro simulation.
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.
virtual MSVehicle * removeVehicle(MSVehicle *remVehicle, MSMoveReminder::Notification notification, bool notify=true)
static std::vector< MSLink * >::const_iterator succLinkSec(const SUMOVehicle &veh, int nRouteSuccs, const MSLane &succLinkSource, const std::vector< MSLane * > &conts)
void forceVehicleInsertion(MSVehicle *veh, double pos, MSMoveReminder::Notification notification, double posLat=0)
Inserts the given vehicle at the given position.
double getSpeedLimit() const
Returns the lane's maximum allowed speed.
const MSEdge * getNextNormal() const
Returns the lane's follower if it is an internal lane, the edge of the lane otherwise.
void addLeaders(const MSVehicle *vehicle, double vehPos, MSLeaderDistanceInfo &result, bool oppositeDirection=false)
get leaders for ego on the given lane
double getLength() const
Returns the lane's length.
bool isLinkEnd(std::vector< MSLink * >::const_iterator &i) const
int getIndex() const
Returns the lane's index.
double getOppositePos(double pos) const
return the corresponding position on the opposite lane
static bool dictionary(const std::string &id, MSLane *lane)
Static (sic!) container methods {.
virtual const PositionVector & getShape(bool) const
MSEdge & getEdge() const
Returns the lane's edge.
MSLeaderDistanceInfo getFollowersOnConsecutive(const MSVehicle *ego, double backOffset, bool allSublanes, double searchDist=-1, MinorLinkMode mLinkMode=FOLLOW_ALWAYS) const
return the sublane followers with the largest missing rear gap among all predecessor lanes (within di...
double getWidth() const
Returns the lane's width.
const std::vector< MSLink * > & getLinkCont() const
returns the container with all links !!!
const Position geometryPositionAtOffset(double offset, double lateralOffset=0) const
saves leader/follower vehicles and their distances relative to an ego vehicle
void fixOppositeGaps(bool isFollower)
subtract vehicle length from all gaps if the leader vehicle is driving in the opposite direction
virtual int addLeader(const MSVehicle *veh, double gap, double latOffset=0, int sublane=-1)
const std::vector< const MSLane * > & getFoeLanes() const
LinkState getState() const
Returns the current state of the link.
bool hasApproachingFoe(SUMOTime arrivalTime, SUMOTime leaveTime, double speed, double decel) const
Returns the information whether a vehicle is approaching on one of the link's foe streams.
MSJunction * getJunction() const
MSLane * getLane() const
Returns the connected lane.
bool opened(SUMOTime arrivalTime, double arrivalSpeed, double leaveSpeed, double vehicleLength, double impatience, double decel, SUMOTime waitingTime, double posLat=0, BlockingFoes *collectFoes=nullptr, bool ignoreRed=false, const SUMOTrafficObject *ego=nullptr, double dist=-1) const
Returns the information whether the link may be passed.
int getIndex() const
Returns the respond index (for visualization)
bool havePriority() const
Returns whether this link is a major link.
ApproachingVehicleInformation getApproaching(const SUMOVehicle *veh) const
@ CONFLICT_NO_INTERSECTION
MSLane * getViaLane() const
Returns the following inner lane.
const std::vector< ConflictInfo > & getConflicts() const
LinkDirection getDirection() const
Returns the direction the vehicle passing this link take.
double getLength() const
Returns the length of this link.
Notification
Definition of a vehicle state.
@ NOTIFICATION_VAPORIZED_TRACI
The vehicle got removed via TraCI.
@ NOTIFICATION_ARRIVED
The vehicle arrived at its destination (is deleted)
@ NOTIFICATION_TELEPORT_ARRIVED
The vehicle was teleported out of the net.
@ NOTIFICATION_DEPARTED
The vehicle has departed (was inserted into the network)
@ NOTIFICATION_JUNCTION
The vehicle arrived at a junction.
@ NOTIFICATION_TELEPORT
The vehicle is being teleported.
static MSNet * getInstance()
Returns the pointer to the unique instance of MSNet (singleton).
SUMOTime getCurrentTimeStep() const
Returns the current simulation step.
MSInsertionControl & getInsertionControl()
Returns the insertion control.
MSVehicleControl & getVehicleControl()
Returns the vehicle control.
const ConstMSEdgeVector & getEdges() const
MSRouteIterator end() const
Returns the end of the list of edges to pass.
static bool dictionary(const std::string &id, ConstMSRoutePtr route)
Adds a route to the dictionary.
MSRouteIterator begin() const
Returns the begin of the list of edges to pass.
double getDistanceBetween(double fromPos, double toPos, const MSLane *fromLane, const MSLane *toLane, int routePosition=0) const
Compute the distance between 2 given edges on this route, optionally including the length of internal...
const MSLane * lane
The lane to stop at (microsim only)
void initPars(const SUMOVehicleParameter::Stop &stopPar)
initialize attributes from the given stop parameters
int getStateFlagsOld() const
return flags as used by Vehicle::getStopState
bool reached
Information whether the stop has been reached.
MSRouteIterator edge
The edge in the route to stop at.
SUMOTime duration
The stopping duration.
const SUMOVehicleParameter::Stop pars
The stop parameter.
void setLaneChangeMode(int value)
Sets lane changing behavior.
void deactivateGapController()
Deactivates the gap control.
void setSpeedMode(int speedMode)
Sets speed-constraining behaviors.
void setLaneTimeLine(const std::vector< std::pair< SUMOTime, int > > &laneTimeLine)
Sets a new lane timeline.
void setSublaneChange(double latDist)
Sets a new sublane-change request.
void setSignals(int signals)
void setSpeedTimeLine(const std::vector< std::pair< SUMOTime, double > > &speedTimeLine)
Sets a new velocity timeline.
void activateGapController(double originalTau, double newTimeHeadway, double newSpaceHeadway, double duration, double changeRate, double maxDecel, MSVehicle *refVeh=nullptr)
Activates the gap control with the given parameters,.
The class responsible for building and deletion of vehicles.
void removePending()
Removes a vehicle after it has ended.
virtual bool addVehicle(const std::string &id, SUMOVehicle *v)
Tries to insert the vehicle into the internal vehicle container.
SUMOVehicle * getVehicle(const std::string &id) const
Returns the vehicle with the given id.
MSVehicleType * getVType(const std::string &id=DEFAULT_VTYPE_ID, SumoRNG *rng=nullptr, bool readOnly=false)
Returns the named vehicle type or a sample from the named distribution.
std::map< std::string, SUMOVehicle * >::const_iterator constVehIt
Definition of the internal vehicles map iterator.
virtual SUMOVehicle * buildVehicle(SUMOVehicleParameter *defs, ConstMSRoutePtr route, MSVehicleType *type, const bool ignoreStopErrors, const VehicleDefinitionSource source=ROUTEFILE, bool addRouteStops=true)
Builds a vehicle, increases the number of built vehicles.
void scheduleVehicleRemoval(SUMOVehicle *veh, bool checkDuplicate=false)
Removes a vehicle after it has ended.
virtual void deleteVehicle(SUMOVehicle *v, bool discard=false, bool wasKept=false)
Deletes the vehicle.
constVehIt loadedVehBegin() const
Returns the begin of the internal vehicle map.
constVehIt loadedVehEnd() const
Returns the end of the internal vehicle map.
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
const std::vector< const MSLane * > getUpcomingLanesUntil(double distance) const
Returns the upcoming (best followed by default 0) sequence of lanes to continue the route starting at...
bool isOnRoad() const
Returns the information whether the vehicle is on a road (is simulated)
SUMOTime getLastActionTime() const
Returns the time of the vehicle's last action point.
void setTentativeLaneAndPosition(MSLane *lane, double pos, double posLat=0)
set tentative lane and position during insertion to ensure that all cfmodels work (some of them requi...
void setPreviousSpeed(double prevSpeed, double prevAcceleration)
Sets the influenced previous speed.
SUMOTime getWaitingTime(const bool accumulated=false) const
Returns the SUMOTime waited (speed was lesser than 0.1m/s)
MSAbstractLaneChangeModel & getLaneChangeModel()
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.
void onRemovalFromNet(const MSMoveReminder::Notification reason)
Called when the vehicle is removed from the network.
bool resumeFromStopping()
double getBackPositionOnLane(const MSLane *lane) const
Get the vehicle's position relative to the given lane.
void resetActionOffset(const SUMOTime timeUntilNextAction=0)
Resets the action offset for the vehicle.
bool rerouteParkingArea(const std::string &parkingAreaID, std::string &errorMsg)
void switchOffSignal(int signal)
Switches the given signal off.
@ VEH_SIGNAL_NONE
Everything is switched off.
const MSLane * getLane() const
Returns the lane the vehicle is on.
MSLane * getMutableLane() const
Returns the lane the vehicle is on Non const version indicates that something volatile is going on.
Influencer & getInfluencer()
void setActionStepLength(double actionStepLength, bool resetActionOffset=true)
Sets the action steplength of the vehicle.
double getLateralPositionOnLane() const
Get the vehicle's lateral position on the lane.
double getSpeed() const
Returns the vehicle's current speed.
void updateLaneBruttoSum()
Update the lane brutto occupancy after a change in minGap.
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 getPositionOnLane() const
Get the vehicle's position along the lane.
double getAngle() const
Returns the vehicle's direction in radians.
bool hasInfluencer() const
whether the vehicle is individually influenced (via TraCI or special parameters)
void setLateralPositionOnLane(double posLat)
void switchOnSignal(int signal)
Switches the given signal on.
static MSVehicleTransfer * getInstance()
Returns the instance of this object.
void remove(MSVehicle *veh)
Remove a vehicle from this transfer object.
The car-following model and parameter.
void setHeight(const double &height)
Set a new value for this type's height.
void setMaxSpeedLat(const double &maxSpeedLat)
Set a new value for this type's maximum lateral speed.
double getMinGapLat() const
Get the minimum lateral gap that vehicles of this type maintain.
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.
void setEmissionClass(SUMOEmissionClass eclass)
Set a new value for this type's emission class.
double getMaxSpeed() const
Get vehicle's (technical) maximum speed [m/s].
int getPersonCapacity() const
Get this vehicle type's person capacity.
const std::string & getID() const
Returns the name of the vehicle type.
void setMinGapLat(const double &minGapLat)
Set a new value for this type's minimum lataral gap.
double getMinGap() const
Get the free space in front of vehicles of this class.
void setApparentDecel(double apparentDecel)
Set a new value for this type's apparent deceleration.
double getHeight() const
Get the height which vehicles of this class shall have when being drawn.
void setMaxSpeed(const double &maxSpeed)
Set a new value for this type's maximum speed.
const Distribution_Parameterized & getSpeedFactor() const
Returns this type's speed factor.
void setBoardingDuration(SUMOTime duration, bool isPerson=true)
Set a new value for this type's boardingDuration.
double getActionStepLengthSecs() const
Returns this type's default action step length in seconds.
void setLength(const double &length)
Set a new value for this type's length.
double getMaxSpeedLat() const
Get vehicle's maximum lateral speed [m/s].
void setVClass(SUMOVehicleClass vclass)
Set a new value for this type's vehicle class.
void setAccel(double accel)
Set a new value for this type's acceleration.
const MSCFModel & getCarFollowModel() const
Returns the vehicle type's car following model definition (const version)
void setWidth(const double &width)
Set a new value for this type's width.
void setLcContRight(const std::string &value)
Set lcContRight (which is the only lc-attribute not used within the laneChange model)
void setImperfection(double imperfection)
Set a new value for this type's imperfection.
void setPreferredLateralAlignment(const LatAlignmentDefinition &latAlignment, double latAlignmentOffset=0.0)
Set vehicle's preferred lateral alignment.
void setTau(double tau)
Set a new value for this type's headway.
double getLength() const
Get vehicle's length [m].
void setMass(double mass)
Set a new value for this type's mass.
double getMass() const
Get this vehicle type's mass.
void setMinGap(const double &minGap)
Set a new value for this type's minimum gap.
void setShape(SUMOVehicleShape shape)
Set a new value for this type's shape.
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.
virtual const std::string getParameter(const std::string &key, const std::string defaultValue="") const
Returns the value for a given key.
virtual void setParameter(const std::string &key, const std::string &value)
Sets a parameter.
static std::string getName(const SUMOEmissionClass c)
Checks whether the string describes a known vehicle class.
static SUMOEmissionClass getClassByName(const std::string &eClass, const SUMOVehicleClass vc=SVC_IGNORING)
Checks whether the string describes a known vehicle class.
A point in 2D or 3D with translation and scaling methods.
double distanceTo2D(const Position &p2) const
returns the euclidean distance in the x-y-plane
void sub(double dx, double dy)
Subtracts the given position from this one.
double x() const
Returns the x-position.
void setz(double z)
set position z
double z() const
Returns the z-position.
double angleTo2D(const Position &other) const
returns the angle in the plane of the vector pointing from here to the other position (in radians bet...
double y() const
Returns the y-position.
double rotationAtOffset(double pos) const
Returns the rotation at the given length.
double distance2D(const Position &p, bool perpendicular=false) const
closest 2D-distance to point p (or -1 if perpendicular is true and the point is beyond this vector)
void move2side(double amount, double maxExtension=100)
move position vector to side using certain amount
void set(unsigned char r, unsigned char g, unsigned char b, unsigned char a)
assigns new values
virtual double getSlope() const =0
Returns the slope of the road at object's position in degrees.
virtual const MSLane * getLane() const =0
Returns the lane the object is currently at.
virtual double getPreviousSpeed() const =0
Returns the object's previous speed.
virtual double getSpeed() const =0
Returns the object's current speed.
virtual Position getPosition(const double offset=0) const =0
Return current position (x/y, cartesian)
virtual double getPositionOnLane() const =0
Get the object's position along the lane.
static double getDefaultDecel(const SUMOVehicleClass vc=SVC_IGNORING)
Returns the default deceleration for the given vehicle class This needs to be a function because the ...
static bool parseLatAlignment(const std::string &val, double &lao, LatAlignmentDefinition &lad)
Parses and validates a given latAlignment value.
Representation of a vehicle.
virtual int getRouteValidity(bool update=true, bool silent=false, std::string *msgReturn=nullptr)=0
computes validity attributes for the current route
virtual bool wasRemoteControlled(SUMOTime lookBack=DELTA_T) const =0
Returns the information whether the vehicle is fully controlled via TraCI.
virtual bool hasDeparted() const =0
Returns whether this vehicle has departed.
virtual bool isOnRoad() const =0
Returns the information whether the vehicle is on a road (is simulated)
virtual bool isParking() const =0
Returns the information whether the vehicle is parked.
virtual double getAngle() const =0
Get the vehicle's angle.
Definition of vehicle stop (position and duration)
int getFlags() const
return flags as per Vehicle::getStops
SUMOTime started
the time at which this stop was reached
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.
SUMOTime extension
The maximum time extension for boarding / loading.
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
std::string split
the id of the vehicle (train portion) that splits of upon reaching this stop
double startPos
The stopping position start.
std::string line
the new line id of the trip within a cyclical public transport route
double posLat
the lateral offset when stopping
bool onDemand
whether the stop may be skipped
std::string chargingStation
(Optional) charging station if one is assigned to the stop
std::vector< std::string > getTriggers() const
write trigger attribute
std::set< std::string > permitted
IDs of persons or containers that may board/load at this stop.
SUMOTime jumpUntil
earlierst jump end if there shall be a jump from this stop to the next route edge
int parametersSet
Information for the output which parameter were set.
SUMOTime jump
transfer time if there shall be a jump from this stop to the next route edge
std::string join
the id of the vehicle (train portion) to which this vehicle shall be joined
SUMOTime until
The time at which the vehicle may continue its journey.
std::string actType
act Type (only used by Persons) (used by netedit)
SUMOTime ended
the time at which this stop was ended
double endPos
The stopping position end.
std::set< std::string > awaitedPersons
IDs of persons the vehicle has to wait for until departing.
std::set< std::string > awaitedContainers
IDs of containers the vehicle has to wait for until departing.
std::string busstop
(Optional) bus stop if one is assigned to the stop
std::string tripId
id of the trip within a cyclical public transport route
std::string containerstop
(Optional) container stop if one is assigned to the stop
SUMOTime arrival
The (expected) time at which the vehicle reaches the stop.
SUMOTime duration
The stopping duration.
Structure representing possible vehicle parameter.
int departLane
(optional) The lane the vehicle shall depart from (index in edge)
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.
std::vector< std::string > via
List of the via-edges the vehicle must visit.
static bool parseArrivalLane(const std::string &val, const std::string &element, const std::string &id, int &lane, ArrivalLaneDefinition &ald, std::string &error)
Validates a given arrivalLane value.
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)
DepartLaneDefinition departLaneProcedure
Information how the vehicle shall choose the lane to depart from.
static bool parseDepartSpeed(const std::string &val, const std::string &element, const std::string &id, double &speed, DepartSpeedDefinition &dsd, std::string &error)
Validates a given departSpeed value.
static bool parseArrivalPos(const std::string &val, const std::string &element, const std::string &id, double &pos, ArrivalPosDefinition &apd, std::string &error)
Validates a given arrivalPos value.
int personNumber
The static number of persons in the vehicle when it departs (not including boarding persons)
static bool parseArrivalSpeed(const std::string &val, const std::string &element, const std::string &id, double &speed, ArrivalSpeedDefinition &asd, std::string &error)
Validates a given arrivalSpeed value.
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.
RGBColor color
The vehicle's color, TraCI may change this.
double arrivalPos
(optional) The position the vehicle shall arrive on
static bool parseDepartLane(const std::string &val, const std::string &element, const std::string &id, int &lane, DepartLaneDefinition &dld, std::string &error)
Validates a given departLane value.
std::string id
The vehicle's id.
static bool parseDepart(const std::string &val, const std::string &element, const std::string &id, SUMOTime &depart, DepartDefinition &dd, std::string &error, const std::string &attr="departure")
Validates a given depart value.
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.
static bool parseDepartPos(const std::string &val, const std::string &element, const std::string &id, double &pos, DepartPosDefinition &dpd, std::string &error)
Validates a given departPos value.
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)
static ParkingType parseParkingType(const std::string &value)
parses parking type value
static void parseStopTriggers(const std::vector< std::string > &triggers, bool expectTrigger, Stop &stop)
parses stop trigger values
static bool isInternalRouteID(const std::string &id)
Checks whether the route ID uses the syntax of internal routes.
static StringBijection< LinkState > LinkStates
link states
static int getIndexFromLane(const std::string laneID)
return lane index when given the lane ID
static StringBijection< LinkDirection > LinkDirections
link directions
const std::string & getString(const T key) const
get string
std::set< std::string > getSet()
return set of strings
static double toDouble(const std::string &sData)
converts a string into the double value described by it by calling the char-type converter
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,...
static bool toBool(const std::string &sData)
converts a string into the bool value described by it by calling the char-type converter
C++ TraCI client API implementation.
static MSEdge * getEdge(const std::string &edgeID)
static TraCIPosition makeTraCIPosition(const Position &position, const bool includeZ=false)
static bool moveToXYMap_matchingRoutePosition(const Position &pos, const std::string &origID, const ConstMSEdgeVector ¤tRoute, int routeIndex, SUMOVehicleClass vClass, bool setLateralPos, double &bestDistance, MSLane **lane, double &lanePos, int &routeOffset)
static TraCIPositionVector makeTraCIPositionVector(const PositionVector &positionVector)
helper functions
static int readDistanceRequest(tcpip::Storage &data, TraCIRoadPosition &roadPos, Position &pos)
static MSBaseVehicle * getVehicle(const std::string &id)
static TraCIColor makeTraCIColor(const RGBColor &color)
static TraCINextStopData buildStopData(const SUMOVehicleParameter::Stop &stopPar)
static void setRemoteControlled(MSVehicle *v, Position xyPos, MSLane *l, double pos, double posLat, double angle, int edgeOffset, ConstMSEdgeVector route, SUMOTime t)
static const MSVehicleType & getVehicleType(const std::string &vehicleID)
static bool moveToXYMap(const Position &pos, double maxRouteDistance, bool mayLeaveNetwork, const std::string &origID, const double angle, double speed, const ConstMSEdgeVector ¤tRoute, const int routePosition, const MSLane *currentLane, double currentLanePos, bool onRoad, SUMOVehicleClass vClass, double currentAngle, bool setLateralPos, double &bestDistance, MSLane **lane, double &lanePos, int &routeOffset, ConstMSEdgeVector &edges)
static std::pair< MSLane *, double > convertCartesianToRoadMap(const Position &pos, const SUMOVehicleClass vClass)
static SUMOVehicleParameter::Stop buildStopParameters(const std::string &edgeOrStoppingPlaceID, double pos, int laneIndex, double startPos, int flags, double duration, double until)
static Subscription * addSubscriptionFilter(SubscriptionFilterType filter)
static const MSLane * getLaneChecking(const std::string &edgeID, int laneIndex, double pos)
static int readTypedByte(tcpip::Storage &ret, const std::string &error="")
static int readCompound(tcpip::Storage &ret, int expectedSize=-1, const std::string &error="")
static int readTypedInt(tcpip::Storage &ret, const std::string &error="")
static std::string readTypedString(tcpip::Storage &ret, const std::string &error="")
static double readTypedDouble(tcpip::Storage &ret, const std::string &error="")
#define CALL_MESO_FUN(veh, fun, microResult)
#define CALL_MICRO_FUN(veh, fun, mesoResult)
TRACI_CONST double INVALID_DOUBLE_VALUE
TRACI_CONST int VAR_LASTACTIONTIME
TRACI_CONST int VAR_EDGES
TRACI_CONST int POSITION_ROADMAP
TRACI_CONST int VAR_NOXEMISSION
TRACI_CONST int VAR_LANECHANGE_MODE
TRACI_CONST int VAR_REFERENCE_DISTANCE
TRACI_CONST int MOVE_AUTOMATIC
TRACI_CONST int LAST_STEP_PERSON_ID_LIST
TRACI_CONST int TRACI_ID_LIST
TRACI_CONST int VAR_IMPATIENCE
TRACI_CONST int VAR_SEGMENT_ID
TRACI_CONST int VAR_DEPARTURE
TRACI_CONST int VAR_ROUTING_MODE
TRACI_CONST int VAR_SECURE_GAP
TRACI_CONST int VAR_WAITING_TIME
std::map< std::string, libsumo::SubscriptionResults > ContextSubscriptionResults
TRACI_CONST int VAR_EDGE_TRAVELTIME
TRACI_CONST int VAR_ROAD_ID
TRACI_CONST int MOVE_NORMAL
TRACI_CONST int VAR_TIMELOSS
TRACI_CONST int VAR_SPEED_FACTOR
TRACI_CONST int VAR_FOLLOW_SPEED
TRACI_CONST int VAR_STOP_ARRIVALDELAY
TRACI_CONST int VAR_SPEED_LAT
TRACI_CONST int VAR_ANGLE
TRACI_CONST int VAR_NEXT_TLS
TRACI_CONST int VAR_EDGE_EFFORT
TRACI_CONST int VAR_BEST_LANES
TRACI_CONST int VAR_ALLOWED_SPEED
TRACI_CONST int VAR_LANE_INDEX
TRACI_CONST int VAR_PMXEMISSION
TRACI_CONST int VAR_SPEED_WITHOUT_TRACI
TRACI_CONST int VAR_BOARDING_DURATION
TRACI_CONST int MOVE_TELEPORT
TRACI_CONST int VAR_PERSON_NUMBER
TRACI_CONST int VAR_COEMISSION
TRACI_CONST int VAR_COLOR
TRACI_CONST int VAR_POSITION
TRACI_CONST int VAR_PERSON_CAPACITY
TRACI_CONST int VAR_STOP_PARAMETER
TRACI_CONST int VAR_LEADER
TRACI_CONST int VAR_CO2EMISSION
TRACI_CONST int VAR_TELEPORTING_LIST
TRACI_CONST int REMOVE_TELEPORT
TRACI_CONST int VAR_TAXI_FLEET
TRACI_CONST int VAR_ROUTE_VALID
TRACI_CONST int VAR_SPEEDSETMODE
TRACI_CONST int VAR_FUELCONSUMPTION
std::map< std::string, libsumo::TraCIResults > SubscriptionResults
{object->{variable->value}}
TRACI_CONST int VAR_SLOPE
TRACI_CONST int VAR_HCEMISSION
TRACI_CONST int VAR_PARAMETER
TRACI_CONST int VAR_LANEPOSITION
TRACI_CONST int REMOVE_PARKING
TRACI_CONST int VAR_LANE_ID
TRACI_CONST int VAR_STOP_SPEED
TRACI_CONST int VAR_NOISEEMISSION
TRACI_CONST int VAR_POSITION3D
TRACI_CONST int VAR_SPEED
TRACI_CONST int VAR_SIGNALS
TRACI_CONST int VAR_PARAMETER_WITH_KEY
TRACI_CONST int VAR_ACCUMULATED_WAITING_TIME
TRACI_CONST int VAR_MINGAP_LAT
TRACI_CONST int INVALID_INT_VALUE
TRACI_CONST int VAR_NEXT_LINKS
TRACI_CONST int VAR_ROUTE_INDEX
TRACI_CONST int VAR_NEXT_STOPS2
TRACI_CONST int VAR_ACCELERATION
TRACI_CONST int VAR_ROUTE_ID
TRACI_CONST int REMOVE_ARRIVED
TRACI_CONST int DISTANCE_REQUEST
@ SUBS_FILTER_LEAD_FOLLOW
@ SUBS_FILTER_UPSTREAM_DIST
@ SUBS_FILTER_DOWNSTREAM_DIST
@ SUBS_FILTER_LATERAL_DIST
@ SUBS_FILTER_FIELD_OF_VISION
TRACI_CONST int VAR_SEGMENT_INDEX
TRACI_CONST int ROUTING_MODE_DEFAULT
TRACI_CONST int VAR_LANEPOSITION_LAT
TRACI_CONST int CMD_CHANGELANE
TRACI_CONST int VAR_STOP_DELAY
TRACI_CONST int REMOVE_TELEPORT_ARRIVED
TRACI_CONST int VAR_NEIGHBORS
TRACI_CONST int REMOVE_VAPORIZED
TRACI_CONST int VAR_STOPSTATE
TRACI_CONST int VAR_FOLLOWER
TRACI_CONST int VAR_LOADED_LIST
TRACI_CONST int VAR_DEPART_DELAY
std::map< int, std::shared_ptr< libsumo::TraCIResult > > TraCIResults
{variable->value}
TRACI_CONST int VAR_DISTANCE
TRACI_CONST int ROUTING_MODE_AGGREGATED_CUSTOM
TRACI_CONST int VAR_ELECTRICITYCONSUMPTION
TRACI_CONST int VAR_NEXT_STOPS
@ key
the parser read a key of a value in an object
NLOHMANN_BASIC_JSON_TPL_DECLARATION void swap(nlohmann::NLOHMANN_BASIC_JSON_TPL &j1, nlohmann::NLOHMANN_BASIC_JSON_TPL &j2) noexcept(//NOLINT(readability-inconsistent-declaration-parameter-name) is_nothrow_move_constructible< nlohmann::NLOHMANN_BASIC_JSON_TPL >::value &&//NOLINT(misc-redundant-expression) is_nothrow_move_assignable< nlohmann::NLOHMANN_BASIC_JSON_TPL >::value)
exchanges the values of two JSON objects
pre-computed information for conflict points
double getFoeConflictSize(const MSLink *foeExitLink) const
double conflictSize
the length of the conflict space
double getFoeLengthBehindCrossing(const MSLink *foeExitLink) const
double lengthBehindCrossing
length of internal lane after the crossing point
A structure representing the best lanes for continuing the current route starting at 'lane'.