72#define FAR_AWAY 1000.0
100 std::cout <<
" '" << veh->
getID() <<
"' on lane '" << ((
SUMOVehicle*)veh)->getLane()->getID() <<
"'\n";
102 std::cout <<
" '" << veh->
getID() <<
"' on edge '" << veh->
getEdge()->
getID() <<
"'\n";
111 const int contextDomain,
const double range) {
113 if (variables.empty()) {
115 if (j->id ==
id && j->commandId == commandId && j->contextDomain == contextDomain) {
123 std::vector<std::shared_ptr<tcpip::Storage> > parameters;
124 for (
const int var : variables) {
125 const auto& p = params.find(var);
126 if (p == params.end()) {
127 parameters.push_back(std::make_shared<tcpip::Storage>());
136 s.
range = std::numeric_limits<double>::max();
139 if (contextDomain == 0) {
143 s.
parameters.push_back(std::make_shared<tcpip::Storage>());
174 wrapper.second->clear();
182 if (s.
endTime < t || isArrivedVehicle || isArrivedPerson) {
189 if (s.beginTime <= t) {
202 std::vector<std::shared_ptr<tcpip::Storage> >::const_iterator k = s.
parameters.begin();
204 const int offset = (int)(std::find(o.variables.begin(), o.variables.end(), v) - o.variables.begin());
205 if (offset == (
int)o.variables.size() || o.parameters[offset]->size() != (*k)->size() || !std::equal((*k)->begin(), (*k)->end(), o.parameters[offset]->begin())) {
206 o.variables.push_back(v);
207 o.parameters.push_back(*k);
211 modifiedSubscription = &o;
215 subscriptions.push_back(s);
216 modifiedSubscription = &subscriptions.back();
236 int index = (int)filter;
240 while (index >>= 1) {
244 throw TraCIException(
"No previous vehicle context subscription exists to apply filter type " +
toHex(filterType, 2));
253 std::set<std::string> objIDs;
269#ifdef HAVE_LIBSUMOGUI
292 auto wrapper =
myWrapper.find(getCommandId);
296 std::shared_ptr<VariableWrapper> handler = wrapper->second;
300 if (containerWrapper ==
myWrapper.end()) {
303 container = containerWrapper->second.get();
308 for (
const std::string& objID : objIDs) {
310 std::vector<std::shared_ptr<tcpip::Storage> >::const_iterator k = s.
parameters.begin();
313 container->
empty(objID);
317 if (!handler->handle(objID, variable, container, k->get())) {
320 }
catch (
const std::invalid_argument&) {
328 container->
empty(objID);
335Helper::fuseLaneCoverage(std::shared_ptr<LaneCoverageInfo> aggregatedLaneCoverage,
const std::shared_ptr<LaneCoverageInfo> newLaneCoverage) {
336 for (
auto& p : *newLaneCoverage) {
337 const MSLane* lane = p.first;
338 if (aggregatedLaneCoverage->find(lane) == aggregatedLaneCoverage->end()) {
340 (*aggregatedLaneCoverage)[lane] = (*newLaneCoverage)[lane];
343 std::pair<double, double>& range1 = (*aggregatedLaneCoverage)[lane];
344 std::pair<double, double>& range2 = (*newLaneCoverage)[lane];
345 std::pair<double, double> hull = std::make_pair(
MIN2(range1.first, range2.first),
MAX2(range1.second, range2.second));
346 (*aggregatedLaneCoverage)[lane] = hull;
355 for (
int i = 0; i < (int)positionVector.size(); ++i) {
366 if (std::isnan(pos.x) || std::isnan(pos.y)) {
369 pv.push_back(
Position(pos.x, pos.y));
388 return RGBColor((
unsigned char)c.
r, (
unsigned char)c.
g, (
unsigned char)c.
b, (
unsigned char)c.
a);
411 if (edge ==
nullptr) {
412 throw TraCIException(
"Referenced edge '" + edgeID +
"' is not known.");
421 if (edge ==
nullptr) {
424 if (laneIndex < 0 || laneIndex >= (
int)edge->
getLanes().size()) {
428 if (pos < 0 || pos > lane->
getLength()) {
435std::pair<MSLane*, double>
438 std::pair<MSLane*, double> result(
nullptr, -1);
439 double range = 1000.;
442 while (range < maxRange) {
443 std::set<const Named*> lanes;
445 double minDistance = std::numeric_limits<double>::max();
446 for (
const Named* named : lanes) {
452 if (newDistance < minDistance ||
453 (newDistance == minDistance
454 && result.first !=
nullptr
455 && lane->
getID() < result.first->getID())) {
456 minDistance = newDistance;
461 if (minDistance < std::numeric_limits<double>::max()) {
473 if (roadPos1.first == roadPos2.first && roadPos1.second <= roadPos2.second) {
475 return roadPos2.second - roadPos1.second;
477 double distance = 0.0;
479 while (roadPos2.first->isInternal() && roadPos2.first != roadPos1.first) {
480 distance += roadPos2.second;
481 roadPos2.first = roadPos2.first->getLogicalPredecessorLane();
482 roadPos2.second = roadPos2.first->getLength();
485 if (newRoute.empty()) {
489 return distance + route.
getDistanceBetween(roadPos1.second, roadPos2.second, roadPos1.first, roadPos2.first);
496 if (sumoVehicle ==
nullptr) {
501 throw TraCIException(
"Vehicle '" +
id +
"' is not a proper vehicle.");
555 double pos,
int laneIndex,
double startPos,
int flags,
double duration,
double until) {
561 throw TraCIException(
"Duration or until parameter exceed the time value range.");
569 if (newStop.
until >= 0) {
572 if ((flags & 1) != 0) {
576 if ((flags & 2) != 0) {
580 if ((flags & 4) != 0) {
586 if ((flags & 8) != 0) {
589 if ((flags & 16) != 0) {
592 if ((flags & 32) != 0) {
595 if ((flags & 64) != 0) {
598 if ((flags & 128) != 0) {
605 throw TraCIException(
"The " +
toString(stoppingPlaceType) +
" '" + edgeOrStoppingPlaceID +
"' is not known");
611 switch (stoppingPlaceType) {
613 newStop.
busstop = edgeOrStoppingPlaceID;
632 startPos =
MAX2(0.0, pos - POSITION_EPS);
637 if (pos < startPos) {
638 throw TraCIException(
"End position on lane must be after start position.");
642 if (road ==
nullptr) {
643 throw TraCIException(
"Edge '" + edgeOrStoppingPlaceID +
"' is not known.");
645 const std::vector<MSLane*>& allLanes = road->
getLanes();
646 if ((laneIndex < 0) || laneIndex >= (
int)(allLanes.size())) {
647 throw TraCIException(
"No lane with index '" +
toString(laneIndex) +
"' on edge '" + edgeOrStoppingPlaceID +
"'.");
649 newStop.
lane = allLanes[laneIndex]->getID();
650 newStop.
edge = allLanes[laneIndex]->getEdge().getID();
661 std::string stoppingPlaceID =
"";
663 stoppingPlaceID = stopPar.
busstop;
702 InductionLoop::cleanup();
723const std::vector<std::string>&
729const std::vector<std::string>&
766 MSCalibrator*
const calib = Calibrator::getCalibrator(
id);
777 Edge::storeShape(
id, shape);
780 InductionLoop::storeShape(
id, shape);
783 Junction::storeShape(
id, shape);
786 Lane::storeShape(
id, shape);
789 LaneArea::storeShape(
id, shape);
794 shape.push_back(cs.myLane->getShape().positionAtOffset(cs.myPosition));
797 shape.push_back(cs.myLane->getShape().positionAtOffset(cs.myPosition));
808 Person::storeShape(
id, shape);
811 POI::storeShape(
id, shape);
814 Polygon::storeShape(
id, shape);
817 Vehicle::storeShape(
id, shape);
820 Simulation::storeShape(shape);
828 std::set<const Named*> objects;
830 for (
const Named* obj : objects) {
831 into.insert(obj->getID());
839 const float cmin[2] = {(float) b.
xmin(), (float) b.
ymin()};
840 const float cmax[2] = {(float) b.
xmax(), (float) b.
ymax()};
844 if (shape.
distance2D(stop.second->getCenterPos()) <= range) {
845 into.insert(stop.second);
851 if (shape.
distance2D(stop.second->getCenterPos()) <= range) {
852 into.insert(stop.second);
858 if (shape.
distance2D(calib.second->getLane()->getShape()[0]) <= range) {
859 into.insert(calib.second);
874 if (shape.
distance2D(stop.second->getCenterPos()) <= range) {
875 into.insert(stop.second);
908#ifdef DEBUG_SURROUNDING
910 std::cout <<
SIMTIME <<
" applySubscriptionFilters for vehicle '" << _veh->
getID() <<
"' on lane '" << _veh->
getLane()->
getID() <<
"'"
912 <<
"objIDs = " <<
toString(objIDs) << std::endl;
927 WRITE_WARNINGF(
TL(
"Ignoring veh '%' no-opposite subscription filter for geographic range object collection. Consider using the 'lanes' filter."), v->
getID())
931 std::set<const SUMOTrafficObject*> vehs;
934 double downstreamDist = s.
range, upstreamDist = s.
range, lateralDist = s.
range;
948 throw TraCIException(
"Subscription filter not yet implemented for meso vehicle");
954 if (vehLane ==
nullptr) {
958 std::vector<int> filterLanes;
969#ifdef DEBUG_SURROUNDING
970 std::cout <<
"Filter lanes: " <<
toString(filterLanes) << std::endl;
971 std::cout <<
"Downstream distance: " << downstreamDist << std::endl;
972 std::cout <<
"Upstream distance: " << upstreamDist << std::endl;
973 std::cout <<
"Lateral distance: " << lateralDist << std::endl;
980 for (
int offset : filterLanes) {
982 if (lane !=
nullptr) {
987 vehs.insert(vehs.end(), leader);
988 vehs.insert(vehs.end(), follower);
990#ifdef DEBUG_SURROUNDING
991 std::cout <<
"Lane at index " << offset <<
": '" << lane->
getID() << std::endl;
992 std::cout <<
"Leader: '" << (leader !=
nullptr ? leader->
getID() :
"NULL") <<
"'" << std::endl;
993 std::cout <<
"Follower: '" << (follower !=
nullptr ? follower->
getID() :
"NULL") <<
"'" << std::endl;
996 }
else if (!disregardOppositeDirection && offset > 0) {
999 if (opposite ==
nullptr) {
1000#ifdef DEBUG_SURROUNDING
1001 std::cout <<
"No lane at index " << offset << std::endl;
1007 const int ix_opposite = (int)opposite->
getLanes().size() - 1 - (vehLane->
getIndex() + offset - (int)vehEdge->
getLanes().size());
1008 if (ix_opposite < 0) {
1009#ifdef DEBUG_SURROUNDING
1010 std::cout <<
"No lane on opposite at index " << ix_opposite << std::endl;
1015 lane = opposite->
getLanes()[ix_opposite];
1022 vehs.insert(vehs.end(), lane->
getLeader(v, posOnOpposite - v->
getLength(), std::vector<MSLane*>()).first);
1036#ifdef DEBUG_SURROUNDING
1037 std::cout <<
SIMTIME <<
" applySubscriptionFilters() for veh '" << v->
getID() <<
"'. Found the following vehicles:\n";
1038 for (
auto veh : vehs) {
1050 if (veh !=
nullptr) {
1051 objIDs.insert(objIDs.end(), veh->getID());
1058 auto i = objIDs.begin();
1059 while (i != objIDs.end()) {
1062 i = objIDs.erase(i);
1070 auto i = objIDs.begin();
1071 while (i != objIDs.end()) {
1074 i = objIDs.erase(i);
1088 double upstreamDist,
bool disregardOppositeDirection) {
1093 assert(filterLanes.size() > 0);
1098 auto checkedLanesInDrivingDir = std::make_shared<LaneCoverageInfo>();
1099 for (
int offset : filterLanes) {
1101 if (lane !=
nullptr) {
1102#ifdef DEBUG_SURROUNDING
1103 std::cout <<
"Checking for surrounding vehicles starting on lane '" << lane->
getID() <<
"' at index " << offset << std::endl;
1108 std::shared_ptr<LaneCoverageInfo> checkedLanes = std::make_shared<LaneCoverageInfo>();
1109 const std::set<MSVehicle*> new_vehs =
1111 vehs.insert(new_vehs.begin(), new_vehs.end());
1113 }
else if (!disregardOppositeDirection && offset > 0) {
1117 if (opposite ==
nullptr) {
1118#ifdef DEBUG_SURROUNDING
1119 std::cout <<
"No opposite edge, thus no lane at index " << offset << std::endl;
1125 const int ix_opposite = (int)opposite->
getLanes().size() - 1 - (vehLane->
getIndex() + offset - (int)vehEdge->
getLanes().size());
1126 if (ix_opposite < 0) {
1127#ifdef DEBUG_SURROUNDING
1128 std::cout <<
"No lane on opposite at index " << ix_opposite << std::endl;
1133 lane = opposite->
getLanes()[ix_opposite];
1136 downstreamDist, std::make_shared<LaneCoverageInfo>());
1137 vehs.insert(new_vehs.begin(), new_vehs.end());
1139#ifdef DEBUG_SURROUNDING
1141 std::cout <<
"No lane at index " << offset << std::endl;
1145 if (!disregardOppositeDirection) {
1152 const int nOpp =
MAX2(0, (*std::max_element(filterLanes.begin(), filterLanes.end())) - ((
int)vehEdge->
getLanes().size() - 1 - vehLane->
getIndex()));
1155 for (
auto& laneCov : *checkedLanesInDrivingDir) {
1156 const MSLane*
const l = laneCov.first;
1161 const std::pair<double, double>& range = laneCov.second;
1162 auto leftMostOppositeLaneIt = opposite->
getLanes().rbegin();
1163 for (
auto oppositeLaneIt = leftMostOppositeLaneIt; oppositeLaneIt != opposite->
getLanes().rend(); ++oppositeLaneIt) {
1164 if ((
int)(oppositeLaneIt - leftMostOppositeLaneIt) == nOpp) {
1168 const MSLane* oppositeLane = *oppositeLaneIt;
1170 vehs.insert(new_vehs.begin(), new_vehs.end());
1175#ifdef DEBUG_SURROUNDING
1176 std::cout <<
SIMTIME <<
" applySubscriptionFilterLanes() for veh '" << v->
getID() <<
"', lane offset '" << offset <<
"'. Found the following vehicles so far:\n";
1177 for (
auto veh : vehs) {
1194#ifdef DEBUG_SURROUNDING
1195 std::cout <<
"Applying turn filter for vehicle '" << v->
getID() <<
"'\n Gathering foes ..." << std::endl;
1198 for (
auto& l : links) {
1199#ifdef DEBUG_SURROUNDING
1200 std::cout <<
" On junction '" << l->getJunction()->getID() <<
"' (no. foe links = " << l->getFoeLinks().size() <<
"):" << std::endl;
1202 for (
auto& foeLane : l->getFoeLanes()) {
1203 if (foeLane->getEdge().isCrossing()) {
1204#ifdef DEBUG_SURROUNDING
1205 std::cout <<
" skipping crossing foeLane '" << foeLane->getID() <<
"'" << std::endl;
1209#ifdef DEBUG_SURROUNDING
1210 std::cout <<
" foeLane '" << foeLane->getID() <<
"'" << std::endl;
1213 const MSLink* foeLink = foeLane->getEntryLink();
1216#ifdef DEBUG_SURROUNDING
1217 std::cout <<
" Approaching foeLane entry link '" << vi.first->getID() <<
"'" << std::endl;
1219 vehs.insert(vehs.end(),
dynamic_cast<const MSVehicle*
>(vi.first));
1223 for (
const MSVehicle* foe : foeLane->getVehiclesSecure()) {
1224#ifdef DEBUG_SURROUNDING
1225 std::cout <<
" On foeLane '" << foe->getID() <<
"'" << std::endl;
1227 vehs.insert(vehs.end(), foe);
1229 foeLane->releaseVehicles();
1230 for (
auto& laneInfo : foeLane->getIncomingLanes()) {
1231 const MSLane* foeLanePred = laneInfo.lane;
1233#ifdef DEBUG_SURROUNDING
1234 std::cout <<
" foeLanePred '" << foeLanePred->
getID() <<
"'" << std::endl;
1237#ifdef DEBUG_SURROUNDING
1238 std::cout <<
" On foeLanePred '" << foe->getID() <<
"'" << std::endl;
1240 vehs.insert(vehs.end(), foe);
1260#ifdef DEBUG_SURROUNDING
1261 std::cout <<
"FOVFILTER: ego direction = " <<
toString(
RAD2DEG(egoVehicle->
getAngle())) <<
" (deg)" << std::endl;
1264 auto i = objIDs.begin();
1265 while (i != objIDs.end()) {
1266 if (s.
id.compare(*i) == 0) {
1274#ifdef DEBUG_SURROUNDING
1277 std::cout <<
"FOVFILTER: " << objType <<
" '" << *i <<
"' alpha = " <<
toString(
RAD2DEG(alpha)) <<
" (deg)" << std::endl;
1280 if (abs(alpha) > openingAngle * 0.5) {
1281 i = objIDs.erase(i);
1290 double lateralDist) {
1294 double range =
MAX3(downstreamDist, upstreamDist, lateralDist);
1295 std::set<std::string> objIDs;
1298#ifdef DEBUG_SURROUNDING
1299 std::cout <<
"FILTER_LATERAL_DIST: collected object IDs (range " << range <<
"):" << std::endl;
1300 for (std::string i : objIDs) {
1301 std::cout << i << std::endl;
1306#ifdef DEBUG_SURROUNDING
1324 std::set<const SUMOTrafficObject*>& vehs,
1325 const std::vector<const MSLane*>& lanes,
double posOnLane,
double posLat,
bool isDownstream) {
1327 double distRemaining = streamDist;
1328 bool isFirstLane =
true;
1330 for (
const MSLane* lane : lanes) {
1331#ifdef DEBUG_SURROUNDING
1332 std::cout <<
"FILTER_LATERAL_DIST: current lane " << (isDownstream ?
"down" :
"up") <<
" is '" << lane->getID() <<
"', length " << lane->getLength()
1333 <<
", pos " << posOnLane <<
", distRemaining " << distRemaining << std::endl;
1337 isFirstLane =
false;
1338 double geometryPos = lane->interpolateLanePosToGeometryPos(posOnLane);
1339 if (geometryPos <= POSITION_EPS) {
1340 if (!isDownstream) {
1344 if (geometryPos >= laneShape.
length() - POSITION_EPS) {
1347 auto pair = laneShape.
splitAt(geometryPos,
false);
1348 laneShape = isDownstream ? pair.second : pair.first;
1352 double laneLength = lane->interpolateGeometryPosToLanePos(laneShape.
length());
1353 if (distRemaining - laneLength < 0.) {
1354 double geometryPos = lane->interpolateLanePosToGeometryPos(isDownstream ? distRemaining : laneLength - distRemaining);
1355 if (geometryPos > POSITION_EPS && geometryPos < laneShape.
length() - POSITION_EPS) {
1356 auto pair = laneShape.
splitAt(geometryPos,
false);
1357 laneShape = isDownstream ? pair.first : pair.second;
1360 distRemaining -= laneLength;
1364 WRITE_WARNINGF(
TL(
"addSubscriptionFilterLateralDistance could not determine shape of lane '%' with a lateral shift of %."),
1367#ifdef DEBUG_SURROUNDING
1368 std::cout <<
" posLat=" << posLat <<
" laneShape=" << laneShape <<
"\n";
1371 combinedShape.
append(laneShape);
1373 combinedShape.
prepend(laneShape);
1375 if (distRemaining <= POSITION_EPS) {
1379#ifdef DEBUG_SURROUNDING
1380 std::cout <<
" combinedShape=" << combinedShape <<
"\n";
1383 auto i = objIDs.begin();
1384 while (i != objIDs.end()) {
1387#ifdef DEBUG_SURROUNDING
1388 std::cout << (isDownstream ?
"DOWN" :
"UP") <<
" obj " << obj->
getID() <<
" perpendicular dist=" << minPerpendicularDist <<
" filterLateralDist=" << s.
filterLateralDist <<
"\n";
1392 i = objIDs.erase(i);
1416 int numControlled = 0;
1419 controlled.second->getInfluencer().postProcessRemoteControl(controlled.second);
1422 WRITE_WARNINGF(
TL(
"Vehicle '%' was removed though being controlled by TraCI"), controlled.first);
1428 controlled.second->getInfluencer().postProcessRemoteControl(controlled.second);
1431 WRITE_WARNINGF(
TL(
"Person '%' was removed though being controlled by TraCI"), controlled.first);
1435 return numControlled;
1441 double speed,
const ConstMSEdgeVector& currentRoute,
const int routePosition,
const MSLane* currentLane,
double currentLanePos,
bool onRoad,
1446 std::cout <<
SIMTIME <<
" moveToXYMap pos=" << pos <<
" angle=" << angle <<
" vClass=" <<
toString(vClass) <<
"\n";
1448 const MSEdge*
const currentRouteEdge = currentRoute[routePosition];
1449 std::set<const Named*> into;
1451 shape.push_back(pos);
1454 std::map<MSLane*, LaneUtility, ComparatorNumericalIdLess> lane2utility;
1456 for (
const Named* namedEdge : into) {
1457 const MSEdge* e =
dynamic_cast<const MSEdge*
>(namedEdge);
1461 const MSEdge* prevEdge =
nullptr;
1462 const MSEdge* nextEdge =
nullptr;
1463 bool onRoute =
false;
1464 bool useCurrentAngle =
false;
1470 for (
int i = routePosition; i < (int)currentRoute.size(); i++) {
1471 const MSEdge* cand = currentRoute[i];
1474 if (i + 1 < (
int)currentRoute.size()) {
1476 nextEdge = currentRoute[i + 1];
1483 for (
int i = routePosition - 1; i >= 0; i--) {
1484 const MSEdge* cand = currentRoute[i];
1488 nextEdge = currentRoute[i + 1];
1493 if (prevEdge ==
nullptr) {
1499 if (e2 != nextEdge) {
1506 if (nextEdge ==
nullptr) {
1511 if (e2 != prevEdge) {
1518#ifdef DEBUG_MOVEXY_ANGLE
1528 ConstMSEdgeVector::const_iterator searchStart = currentRoute.begin() + routePosition;
1532 ConstMSEdgeVector::const_iterator edgePos = std::find(searchStart, currentRoute.end(), e);
1533 onRoute = edgePos != currentRoute.end();
1534 if (edgePos == currentRoute.end() - 1 && currentRouteEdge == e) {
1540 nextEdge = !onRoute || edgePos == currentRoute.end() - 1 ? nullptr : *(edgePos + 1);
1541#ifdef DEBUG_MOVEXY_ANGLE
1548 while (prevEdge !=
nullptr && prevEdge->
isInternal()) {
1551 prevEdge = l ==
nullptr ? nullptr : &l->
getEdge();
1554 ConstMSEdgeVector::const_iterator prevEdgePos = std::find(currentRoute.begin() + routePosition, currentRoute.end(), prevEdge);
1556 while (nextEdge !=
nullptr && nextEdge->
isInternal()) {
1559 if (prevEdgePos != currentRoute.end() && (prevEdgePos + 1) != currentRoute.end()) {
1560 onRoute = *(prevEdgePos + 1) == nextEdge;
1566#ifdef DEBUG_MOVEXY_ANGLE
1573 const bool perpendicular =
false;
1575 if (!l->allowsVehicleClass(vClass)) {
1578 if (l->getShape().length() == 0) {
1582 double langle = 180.;
1584 double perpendicularDist =
FAR_AWAY;
1587 const double slack = POSITION_EPS *
TS;
1592 perpendicularDist = laneShape.
distance2D(pos,
true);
1595 off = l->getShape().nearest_offset_to_point2D(pos, perpendicular);
1597 dist = l->getShape().distance2D(pos, perpendicular);
1602 bool sameEdge = onRoad && e == ¤tLane->
getEdge() && currentRouteEdge->
getLength() > currentLanePos +
SPEED2DIST(speed) && !e->isWalkingArea();
1610 double dist2 = dist;
1611 if (mayLeaveNetwork && fabs(dist - perpendicularDist) > slack) {
1615 const double angle2 = useCurrentAngle ? currentAngle : angle;
1617#ifdef DEBUG_MOVEXY_ANGLE
1619 <<
" candLane=" << l->getID() <<
" lAngle=" << langle <<
" lLength=" << l->getLength()
1620 <<
" angleDiff=" << angleDiff
1622 <<
" pDist=" << perpendicularDist
1624 <<
" dist2=" << dist2
1626 std::cout << l->getID() <<
" param=" << l->getParameter(
SUMO_PARAM_ORIGID,
"") <<
" origID='" << origID <<
"\n";
1630 if (origIDMatch && setLateralPos
1631 && perpendicularDist > l->getWidth() / 2) {
1632 origIDMatch =
false;
1635 dist2, perpendicularDist, off, angleDiff,
1637 onRoute, sameEdge, prevEdge, nextEdge));
1645 double bestValue = 0;
1646 MSLane* bestLane =
nullptr;
1647 for (
const auto& it : lane2utility) {
1648 MSLane*
const l = it.first;
1650 double distN = u.
dist > 999 ? -10 : 1. - (u.
dist / maxDist);
1651 double angleDiffN = 1. - (u.
angleDiff / 180.);
1652 double idN = u.
ID ? 1 : 0;
1653 double onRouteN = u.
onRoute ? 1 : 0;
1657 double value = (distN * .5 /
TS
1663 std::cout <<
" x; l:" << l->
getID() <<
" d:" << u.
dist <<
" dN:" << distN <<
" aD:" << angleDiffN <<
1664 " ID:" << idN <<
" oRN:" << onRouteN <<
" sEN:" << sameEdgeN <<
" value:" << value << std::endl;
1666 if (value > bestValue || bestLane ==
nullptr) {
1676 if (bestLane ==
nullptr) {
1679 const LaneUtility& u = lane2utility.find(bestLane)->second;
1680 bestDistance = u.
dist;
1682 lanePos =
MAX2(0.,
MIN2(
double((*lane)->getLength() - NUMERICAL_EPS),
1687 ConstMSEdgeVector::const_iterator prevEdgePos = std::find(currentRoute.begin(), currentRoute.end(), prevEdge);
1688 routeOffset = (int)std::distance(currentRoute.begin(), prevEdgePos);
1701#ifdef DEBUG_MOVEXY_ANGLE
1713 if (edge ==
nullptr) {
1716 bool newBest =
false;
1718 if (!candidateLane->allowsVehicleClass(vClass)) {
1721 if (candidateLane->getShape().length() == 0) {
1725 double dist = candidateLane->getShape().distance2D(pos);
1728 std::cout <<
" b at lane " << candidateLane->getID() <<
" dist:" << dist <<
" best:" << bestDistance << std::endl;
1730 if (dist < bestDistance || (dist == bestDistance && candidateLane->getNumericalID() < (*lane)->getNumericalID())) {
1732 bestDistance = dist;
1733 *lane = candidateLane;
1740 if (l->getIndex() == 0) {
1743 for (
const MSLink*
const link : l->getLinkCont()) {
1744 if (link->isInternalJunctionLink()) {
1745 if (
findCloserLane(&link->getViaLane()->getEdge(), pos, vClass, bestDistance, lane)) {
1760 double& bestDistance,
MSLane** lane,
double& lanePos,
int& routeOffset) {
1762 std::cout <<
SIMTIME <<
" moveToXYMap_matchingRoutePosition pos=" << pos <<
" vClass=" <<
toString(vClass) <<
"\n";
1770 const MSEdge* prev =
nullptr;
1771 for (
int i = routeIndex; i < (int)currentRoute.size(); ++i) {
1772 const MSEdge* cand = currentRoute[i];
1773 while (prev !=
nullptr) {
1779 if (
findCloserLane(internalCand, pos, vClass, bestDistance, lane)) {
1780 routeOffset = i - 1;
1782 prev = internalCand;
1790 const MSEdge* next = currentRoute[routeIndex];
1791 for (
int i = routeIndex; i >= 0; --i) {
1792 const MSEdge* cand = currentRoute[i];
1795 while (prev !=
nullptr) {
1798 if (
findCloserLane(internalCand, pos, vClass, bestDistance, lane)) {
1801 prev = internalCand;
1810 std::map<const MSJunction*, int> routeJunctions;
1811 for (
int i = 0; i < (int)currentRoute.size() - 1; ++i) {
1812 routeJunctions[currentRoute[i]->getToJunction()] = i;
1814 std::set<const Named*> into;
1816 shape.push_back(pos);
1818 for (
const Named* named : into) {
1819 const MSLane* cand =
dynamic_cast<const MSLane*
>(named);
1829 assert(lane !=
nullptr);
1831 if (lane ==
nullptr) {
1833 std::cout <<
" b failed - no best route lane" << std::endl;
1841 if (!(*lane)->getEdge().isInternal()) {
1842 const std::vector<MSLane*>& lanes = (*lane)->getEdge().getLanes();
1843 for (std::vector<MSLane*>::const_iterator i = lanes.begin(); i != lanes.end(); ++i) {
1845 if (setLateralPos) {
1848 const double dist = (*i)->getShape().distance2D(pos);
1849 if (dist < (*i)->getWidth() / 2) {
1861 lanePos =
MAX2(0.,
MIN2(
double((*lane)->getLength() - NUMERICAL_EPS),
1862 (*lane)->interpolateGeometryPosToLanePos(
1863 (*lane)->getShape().nearest_offset_to_point25D(pos,
false))));
1866 std::cout <<
" b ok lane " << (*lane)->getID() <<
" lanePos:" << lanePos << std::endl;
1903 throw TraCIException(
"Unknown position format used for distance request.");
1914 :
VariableWrapper(handler), myResults(into), myContextResults(context), myActiveResults(&into) {
1921 myActiveResults = refID ==
nullptr ? &myResults : &myContextResults[*refID];
1927 myActiveResults = &myResults;
1929 myContextResults.clear();
1935 auto sl = std::make_shared<TraCIConnectionVectorWrapped>();
1937 (*myActiveResults)[objID][variable] = sl;
1944 (*myActiveResults)[objID][variable] = std::make_shared<TraCIDouble>(value);
1951 (*myActiveResults)[objID][variable] = std::make_shared<TraCIInt>(value);
1958 (*myActiveResults)[objID][variable] = std::make_shared<TraCIString>(value);
1965 auto sl = std::make_shared<TraCIStringList>();
1967 (*myActiveResults)[objID][variable] = sl;
1974 auto sl = std::make_shared<TraCIDoubleList>();
1976 (*myActiveResults)[objID][variable] = sl;
1983 (*myActiveResults)[objID][variable] = std::make_shared<TraCIPosition>(value);
1990 (*myActiveResults)[objID][variable] = std::make_shared<TraCIPositionVector>(value);
1997 (*myActiveResults)[objID][variable] = std::make_shared<TraCIColor>(value);
2004 (*myActiveResults)[objID][variable] = std::make_shared<TraCIRoadPosition>(value.first, value.second);
2011 auto sl = std::make_shared<TraCIStringDoublePairList>();
2013 (*myActiveResults)[objID][variable] = sl;
2020 auto sl = std::make_shared<TraCIStringList>();
2021 sl->value.push_back(value.first);
2022 sl->value.push_back(value.second);
2023 (*myActiveResults)[objID][variable] = sl;
2030 auto sl = std::make_shared<TraCIIntList>();
2031 sl->value.push_back(value.first);
2032 sl->value.push_back(value.second);
2033 (*myActiveResults)[objID][variable] = sl;
2040 (*myActiveResults)[objID][variable] = std::make_shared<TraCIStage>(value);
2047 auto sl = std::make_shared<TraCIReservationVectorWrapped>();
2049 (*myActiveResults)[objID][variable] = sl;
2056 auto sl = std::make_shared<TraCILogicVectorWrapped>();
2058 (*myActiveResults)[objID][variable] = sl;
2065 auto sl = std::make_shared<TraCILinkVectorVectorWrapped>();
2067 (*myActiveResults)[objID][variable] = sl;
2074 auto sl = std::make_shared<TraCISignalConstraintVectorWrapped>();
2076 (*myActiveResults)[objID][variable] = sl;
2083 auto sl = std::make_shared<TraCIJunctionFoeVectorWrapped>();
2085 (*myActiveResults)[objID][variable] = sl;
2092 auto sl = std::make_shared<TraCINextStopDataVectorWrapped>();
2094 (*myActiveResults)[objID][variable] = sl;
2101 auto sl = std::make_shared<TraCIVehicleDataVectorWrapped>();
2103 (*myActiveResults)[objID][variable] = sl;
2110 auto sl = std::make_shared<TraCIBestLanesDataVectorWrapped>();
2112 (*myActiveResults)[objID][variable] = sl;
2119 auto sl = std::make_shared<TraCINextTLSDataVectorWrapped>();
2121 (*myActiveResults)[objID][variable] = sl;
2128 (*myActiveResults)[objID];
2134 myVehicleStateChanges[to].push_back(vehicle->
getID());
2140 myTransportableStateChanges[to].push_back(transportable->
getID());
std::vector< const MSEdge * > ConstMSEdgeVector
#define WRITE_WARNINGF(...)
void checkTimeBounds(const double time)
check the valid SUMOTime range of double input and throw an error if out of bounds
SUMOVehicleClass
Definition of vehicle classes to differ between different lane usage and authority types.
@ SVC_PEDESTRIAN
pedestrian
const int STOP_DURATION_SET
const int STOP_PARKING_SET
std::vector< SUMOVehicleParameter::Stop > StopParVector
const int STOP_CONTAINER_TRIGGER_SET
const int STOP_TRIGGER_SET
const std::string SUMO_PARAM_ORIGID
SumoXMLTag
Numbers representing SUMO-XML - element names.
@ SUMO_TAG_CHARGING_STATION
A Charging Station.
@ SUMO_TAG_NOTHING
invalid tag, must be the last one
@ SUMO_TAG_CONTAINER_STOP
A container stop.
@ SUMO_TAG_BUS_STOP
A bus stop.
@ SUMO_TAG_PARKING_AREA
A parking area.
@ SUMO_TAG_OVERHEAD_WIRE_SEGMENT
An overhead wire segment.
int gPrecision
the precision for floating point outputs
const double SUMO_const_laneWidth
std::string toHex(const T i, std::streamsize numDigits=0)
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
A class that stores a 2D geometrical boundary.
double ymin() const
Returns minimum y-coordinate.
double xmin() const
Returns minimum x-coordinate.
Boundary & grow(double by)
extends the boundary by the given amount
double distanceTo2D(const Position &p) const
returns the euclidean distance in the x-y-plane
double getHeight() const
Returns the height of the boundary (y-axis)
double getWidth() const
Returns the width of the boudary (x-axis)
double ymax() const
Returns maximum y-coordinate.
double xmax() const
Returns maximum x-coordinate.
static const GeoConvHelper & getFinal()
the coordinate transformation for writing the location element and for tracking the original coordina...
const Boundary & getConvBoundary() const
Returns the converted boundary.
static const double INVALID_OFFSET
a value to signify offsets outside the range of [0, Line.length()]
static double naviDegree(const double angle)
static double angleDiff(const double angle1, const double angle2)
Returns the difference of the second angle to the first angle in radiants.
static double getMinAngleDiff(double angle1, double angle2)
Returns the minimum distance (clockwise/counter-clockwise) between both angles.
The base class for microscopic and mesoscopic vehicles.
double getLength() const
Returns the vehicle's length.
const MSVehicleType & getVehicleType() const
Returns the vehicle's type definition.
Calibrates the flow on a segment to a specified one.
const MSLane * getLane() const
AspiredState getCurrentStateInterval() const
static const std::map< std::string, MSCalibrator * > & getInstances()
return all calibrator instances
A simple description of a position on a lane (crossing of a lane)
A detector of vehicles passing an area between entry/exit points.
const CrossSectionVector & getEntries() const
Returns the entry cross sections.
const CrossSectionVector & getExits() const
Returns the exit cross sections.
A road/street connecting two junctions.
bool isCrossing() const
return whether this edge is a pedestrian crossing
SVCPermissions getPermissions() const
Returns the combined permissions of all lanes of this edge.
bool isWalkingArea() const
return whether this edge is walking area
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.
bool isNormal() const
return whether this edge is an internal edge
const MSJunction * getToJunction() const
double getLength() const
return the length of the edge
const MSJunction * getFromJunction() const
bool isInternal() const
return whether this edge is an internal edge
static bool dictionary(const std::string &id, MSEdge *edge)
Inserts edge into the static dictionary Returns true if the key id isn't already in the dictionary....
const MSEdgeVector & getPredecessors() const
const MSEdge * getInternalFollowingEdge(const MSEdge *followerAfterInternal, SUMOVehicleClass vClass) const
const MSEdgeVector & getSuccessors(SUMOVehicleClass vClass=SVC_IGNORING) const
Returns the following edges, restricted by vClass.
The base class for an intersection.
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)
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.
void visit(const MSLane::StoringVisitor &cont) const
Callback for visiting the lane when traversing an RTree.
static void fill(RTREE &into)
Fills the given RTree with lane instances.
bool isWalkingArea() const
std::set< MSVehicle * > getVehiclesInRange(const double a, const double b) const
Returns all vehicles on the lane overlapping with the interval [a,b].
double getLength() const
Returns the lane's length.
std::vector< const MSLink * > getUpcomingLinks(double pos, double range, const std::vector< MSLane * > &contLanes) const
Returns all upcoming links within given range along the given (non-internal) continuation lanes measu...
std::set< MSVehicle * > getSurroundingVehicles(double startPos, double downstreamDist, double upstreamDist, std::shared_ptr< LaneCoverageInfo > checkedLanes) const
Returns all vehicles closer than downstreamDist along the road network starting on the given position...
bool allowsVehicleClass(SUMOVehicleClass vclass) const
int getIndex() const
Returns the lane's index.
double getOppositePos(double pos) const
return the corresponding position on the opposite lane
MSLane * getLogicalPredecessorLane() const
get the most likely precedecessor lane (sorted using by_connections_to_sorter). The result is cached ...
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.
virtual const VehCont & getVehiclesSecure() const
Returns the vehicles container; locks it for microsimulation.
virtual void releaseVehicles() const
Allows to use the container for microsimulation again.
virtual const PositionVector & getShape(bool) const
MSLane * getParallelOpposite() const
return the opposite direction lane of this lanes edge or nullptr
MSEdge & getEdge() const
Returns the lane's edge.
double getWidth() const
Returns the lane's width.
ApproachingVehicleInformation getApproaching(const SUMOVehicle *veh) const
VehicleState
Definition of a vehicle state.
@ ARRIVED
The vehicle arrived at his destination (is deleted)
static MSNet * getInstance()
Returns the pointer to the unique instance of MSNet (singleton).
MSTLLogicControl & getTLSControl()
Returns the tls logics control.
MSVehicleRouter & getRouterTT(int rngIndex, const Prohibitions &prohibited={}) const
static bool hasInstance()
Returns whether the network was already constructed.
MSStoppingPlace * getStoppingPlace(const std::string &id, const SumoXMLTag category) const
Returns the named stopping place of the given category.
void addVehicleStateListener(VehicleStateListener *listener)
Adds a vehicle states listener.
void addTransportableStateListener(TransportableStateListener *listener)
Adds a transportable states listener.
TransportableState
Definition of a transportable state.
MSVehicleControl & getVehicleControl()
Returns the vehicle control.
virtual MSTransportableControl & getPersonControl()
Returns the person control.
const NamedObjectCont< MSStoppingPlace * > & getStoppingPlaces(SumoXMLTag category) const
void setRemoteControlled(Position xyPos, MSLane *l, double pos, double posLat, double angle, int edgeOffset, const ConstMSEdgeVector &route, SUMOTime t)
Influencer & getInfluencer()
Returns the velocity/lane influencer.
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...
A lane area vehicles can halt at.
double getBeginLanePosition() const
Returns the begin position of this stop.
double getEndLanePosition() const
Returns the end position of this stop.
const MSLane & getLane() const
Returns the lane this stop is located at.
Storage for all programs of a single tls.
TLSLogicVariants & get(const std::string &id) const
Returns the variants of a named tls.
MSTransportable * get(const std::string &id) const
Returns the named transportable, if existing.
void setRemoteControlled(Position xyPos, MSLane *l, double pos, double posLat, double angle, int edgeOffset, const ConstMSEdgeVector &route, SUMOTime t)
SUMOVehicle * getVehicle(const std::string &id) const
Returns the vehicle with the given id.
Representation of a vehicle in the micro simulation.
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)
MSAbstractLaneChangeModel & getLaneChangeModel()
const std::vector< MSLane * > & getBestLanesContinuation() const
Returns the best sequence of lanes to continue the route starting at myLane.
const std::vector< const MSLane * > getPastLanesUntil(double distance) const
Returns the sequence of past lanes (right-most on edge) based on the route starting at the current la...
const MSLane * getLane() const
Returns the lane the vehicle is on.
Influencer & getInfluencer()
double getLateralPositionOnLane() const
Get the vehicle's lateral position on the lane.
double getPositionOnLane() const
Get the vehicle's position along the lane.
The car-following model and parameter.
SUMOVehicleClass getVehicleClass() const
Get this vehicle type's vehicle class.
const std::string & getID() const
Returns the name of the vehicle type.
double getLength() const
Get vehicle's length [m].
Allows to store the object; used as context while traveling the rtree in TraCI.
Base class for objects which have an id.
static std::string getIDSecure(const T *obj, const std::string &fallBack="NULL")
get an identifier for Named-like object which may be Null
const std::string & getID() const
Returns the id.
A point in 2D or 3D with translation and scaling methods.
void setx(double x)
set position x
double distanceTo2D(const Position &p2) const
returns the euclidean distance in the x-y-plane
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...
void sety(double y)
set position y
double y() const
Returns the y-position.
void append(const PositionVector &v, double sameThreshold=2.0)
double length() const
Returns the length.
Position positionAtOffset(double pos, double lateralOffset=0) const
Returns the position 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 prepend(const PositionVector &v, double sameThreshold=2.0)
double nearest_offset_to_point2D(const Position &p, bool perpendicular=true) const
return the nearest offest to point 2D
std::pair< PositionVector, PositionVector > splitAt(double where, bool use2D=false) const
Returns the two lists made when this list vector is splitted at the given point.
void move2side(double amount, double maxExtension=100)
move position vector to side using certain amount
Boundary getBoxBoundary() const
Returns a boundary enclosing this list of lines.
void extrapolate2D(const double val, const bool onlyFirst=false)
extrapolate position vector in two dimensions (Z is ignored)
double nearest_offset_to_point25D(const Position &p, bool perpendicular=true) const
return the nearest offest to point 2D projected onto the 3D geometry
unsigned char red() const
Returns the red-amount of the color.
unsigned char alpha() const
Returns the alpha-amount of the color.
unsigned char green() const
Returns the green-amount of the color.
unsigned char blue() const
Returns the blue-amount of the color.
virtual bool compute(const E *from, const E *to, const V *const vehicle, SUMOTime msTime, std::vector< const E * > &into, bool silent=false)=0
Builds the route between the given edges using the minimum effort at the given time The definition of...
Representation of a vehicle, person, or container.
virtual bool isVehicle() const
Whether it is a vehicle.
virtual const MSLane * getLane() const =0
Returns the lane the object is currently at.
virtual Position getPosition(const double offset=0) const =0
Return current position (x/y, cartesian)
virtual const MSEdge * getEdge() const =0
Returns the edge the object is currently at.
Representation of a vehicle.
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.
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
std::string chargingStation
(Optional) charging station if one is assigned to the stop
std::string overheadWireSegment
(Optional) overhead line segment if one is assigned to the stop
int parametersSet
Information for the output which parameter were set.
int index
at which position in the stops list
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)
bool triggered
whether an arriving person lets the vehicle continue
SUMOTime ended
the time at which this stop was ended
double endPos
The stopping position end.
std::string 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
bool containerTriggered
whether an arriving container lets the vehicle continue
SUMOTime arrival
The (expected) time at which the vehicle reaches the stop.
SUMOTime duration
The stopping duration.
bool wrapIntPair(const std::string &objID, const int variable, const std::pair< int, int > &value)
bool wrapJunctionFoeVector(const std::string &objID, const int variable, const std::vector< TraCIJunctionFoe > &value)
bool wrapDouble(const std::string &objID, const int variable, const double value)
void empty(const std::string &objID)
bool wrapConnectionVector(const std::string &objID, const int variable, const std::vector< TraCIConnection > &value)
bool wrapStringDoublePairList(const std::string &objID, const int variable, const std::vector< std::pair< std::string, double > > &value)
bool wrapPositionVector(const std::string &objID, const int variable, const TraCIPositionVector &value)
bool wrapLinkVectorVector(const std::string &objID, const int variable, const std::vector< std::vector< TraCILink > > &value)
bool wrapSignalConstraintVector(const std::string &objID, const int variable, const std::vector< TraCISignalConstraint > &value)
bool wrapColor(const std::string &objID, const int variable, const TraCIColor &value)
bool wrapInt(const std::string &objID, const int variable, const int value)
bool wrapReservationVector(const std::string &objID, const int variable, const std::vector< TraCIReservation > &value)
bool wrapNextTLSDataVector(const std::string &objID, const int variable, const std::vector< TraCINextTLSData > &value)
bool wrapBestLanesDataVector(const std::string &objID, const int variable, const std::vector< TraCIBestLanesData > &value)
bool wrapStringList(const std::string &objID, const int variable, const std::vector< std::string > &value)
bool wrapPosition(const std::string &objID, const int variable, const TraCIPosition &value)
bool wrapString(const std::string &objID, const int variable, const std::string &value)
bool wrapLogicVector(const std::string &objID, const int variable, const std::vector< TraCILogic > &value)
bool wrapNextStopDataVector(const std::string &objID, const int variable, const std::vector< TraCINextStopData > &value)
bool wrapStage(const std::string &objID, const int variable, const TraCIStage &value)
bool wrapStringPair(const std::string &objID, const int variable, const std::pair< std::string, std::string > &value)
bool wrapStringDoublePair(const std::string &objID, const int variable, const std::pair< std::string, double > &value)
SubscriptionWrapper(VariableWrapper::SubscriptionHandler handler, SubscriptionResults &into, ContextSubscriptionResults &context)
bool wrapVehicleDataVector(const std::string &objID, const int variable, const std::vector< TraCIVehicleData > &value)
void setContext(const std::string *const refID)
bool wrapDoubleList(const std::string &objID, const int variable, const std::vector< double > &value)
void transportableStateChanged(const MSTransportable *const transportable, MSNet::TransportableState to, const std::string &info="")
Called if a transportable changes its state.
std::map< MSNet::TransportableState, std::vector< std::string > > myTransportableStateChanges
Changes in the states of simulated transportables.
std::map< MSNet::VehicleState, std::vector< std::string > > myVehicleStateChanges
Changes in the states of simulated vehicles.
void vehicleStateChanged(const SUMOVehicle *const vehicle, MSNet::VehicleState to, const std::string &info="")
Called if a vehicle changes its state.
static Position makePosition(const TraCIPosition &position)
static MSEdge * getEdge(const std::string &edgeID)
static double patchShapeDistance(const MSLane *lane, const Position &pos, double dist, bool wasPerpendicular)
return the distance of pos from the area covered by this lane
static double getDrivingDistance(std::pair< const MSLane *, double > &roadPos1, std::pair< const MSLane *, double > &roadPos2)
static void collectObjectsInRange(int domain, const PositionVector &shape, double range, std::set< const Named * > &into)
static MSCalibrator::AspiredState getCalibratorState(const MSCalibrator *c)
static TraCIPosition makeTraCIPosition(const Position &position, const bool includeZ=false)
static LANE_RTREE_QUAL * myLaneTree
A lookup tree of lanes.
static void applySubscriptionFilterTurn(const Subscription &s, std::set< const SUMOTrafficObject * > &vehs)
Apply the subscription filter "turn": Gather upcoming junctions and vialanes within downstream distan...
static void findObjectShape(int domain, const std::string &id, PositionVector &shape)
static void clearStateChanges()
static PositionVector makePositionVector(const TraCIPositionVector &vector)
static void fuseLaneCoverage(std::shared_ptr< LaneCoverageInfo > aggregatedLaneCoverage, const std::shared_ptr< LaneCoverageInfo > newLaneCoverage)
Adds lane coverage information from newLaneCoverage into aggregatedLaneCoverage.
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 void debugPrint(const SUMOTrafficObject *veh)
static MSPerson * getPerson(const std::string &id)
static void subscribe(const int commandId, const std::string &id, const std::vector< int > &variables, const double beginTime, const double endTime, const libsumo::TraCIResults ¶ms, const int contextDomain=0, const double range=0.)
static TraCIPositionVector makeTraCIPositionVector(const PositionVector &positionVector)
helper functions
static int readDistanceRequest(tcpip::Storage &data, TraCIRoadPosition &roadPos, Position &pos)
static const std::vector< std::string > & getTransportableStateChanges(const MSNet::TransportableState state)
static std::map< int, std::shared_ptr< VariableWrapper > > myWrapper
Map of commandIds -> their executors; applicable if the executor applies to the method footprint.
static void clearSubscriptions()
static MSBaseVehicle * getVehicle(const std::string &id)
static void applySubscriptionFilterLateralDistanceSinglePass(const Subscription &s, std::set< std::string > &objIDs, std::set< const SUMOTrafficObject * > &vehs, const std::vector< const MSLane * > &lanes, double posOnLane, double posLat, bool isDownstream)
static MSStoppingPlace * getStoppingPlace(const std::string &id, const SumoXMLTag type)
static TraCIColor makeTraCIColor(const RGBColor &color)
static void applySubscriptionFilterFieldOfVision(const Subscription &s, std::set< std::string > &objIDs)
static Subscription * myLastContextSubscription
The last context subscription.
static TraCINextStopData buildStopData(const SUMOVehicleParameter::Stop &stopPar)
static void registerStateListener()
static TransportableStateListener myTransportableStateListener
Changes in the states of simulated transportables.
static void setRemoteControlled(MSVehicle *v, Position xyPos, MSLane *l, double pos, double posLat, double angle, int edgeOffset, ConstMSEdgeVector route, SUMOTime t)
static int postProcessRemoteControl()
return number of remote-controlled entities
static void applySubscriptionFilters(const Subscription &s, std::set< std::string > &objIDs)
Filter the given ID-Set (which was obtained from an R-Tree search) according to the filters set by th...
static std::map< std::string, MSVehicle * > myRemoteControlledVehicles
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 MSTLLogicControl::TLSLogicVariants & getTLS(const std::string &id)
static SUMOTrafficObject * getTrafficObject(int domain, const std::string &id)
static VehicleStateListener myVehicleStateListener
Changes in the states of simulated vehicles.
static std::vector< Subscription > mySubscriptions
The list of known, still valid subscriptions.
static SUMOVehicleParameter::Stop buildStopParameters(const std::string &edgeOrStoppingPlaceID, double pos, int laneIndex, double startPos, int flags, double duration, double until)
static void handleSingleSubscription(const Subscription &s)
static void applySubscriptionFilterLateralDistance(const Subscription &s, std::set< const SUMOTrafficObject * > &vehs, double downstreamDist, double upstreamDist, double lateralDist)
Apply the subscription filter "lateral distance": Only return vehicles within the given lateral dista...
static const std::vector< std::string > & getVehicleStateChanges(const MSNet::VehicleState state)
static void collectObjectIDsInRange(int domain, const PositionVector &shape, double range, std::set< std::string > &into)
static void handleSubscriptions(const SUMOTime t)
static Subscription * addSubscriptionFilter(SubscriptionFilterType filter)
static const MSLane * getLaneChecking(const std::string &edgeID, int laneIndex, double pos)
static RGBColor makeRGBColor(const TraCIColor &color)
static void applySubscriptionFilterLanes(const Subscription &s, std::set< const SUMOTrafficObject * > &vehs, std::vector< int > &filterLanes, double downstreamDist, double upstreamDist, bool disregardOppositeDirection)
Apply the subscription filter "lanes": Only return vehicles on list of lanes relative to ego vehicle....
static std::map< std::string, MSPerson * > myRemoteControlledPersons
static bool needNewSubscription(libsumo::Subscription &s, std::vector< Subscription > &subscriptions, libsumo::Subscription *&modifiedSubscription)
static bool findCloserLane(const MSEdge *edge, const Position &pos, SUMOVehicleClass vClass, double &bestDistance, MSLane **lane)
static int readCompound(tcpip::Storage &ret, int expectedSize=-1, const std::string &error="")
static std::shared_ptr< tcpip::Storage > toStorage(const TraCIResult &v)
Representation of a subscription.
double filterUpstreamDist
Upstream distance specified by the upstream distance filter.
int commandId
commandIdArg The command id of the subscription
std::set< std::string > filterVTypes
vTypes specified by the vTypes filter
double filterFieldOfVisionOpeningAngle
Opening angle (in deg) specified by the field of vision filter.
std::vector< int > filterLanes
lanes specified by the lanes filter
std::string id
The id of the object that is subscribed.
SUMOTime endTime
The end time of the subscription.
int contextDomain
The domain ID of the context.
double filterFoeDistToJunction
Foe distance to junction specified by the turn filter.
bool isVehicleToVehicleContextSubscription() const
SUMOTime beginTime
The begin time of the subscription.
std::vector< int > variables
The subscribed variables.
SVCPermissions filterVClasses
vClasses specified by the vClasses filter,
bool isVehicleToPersonContextSubscription() const
double filterDownstreamDist
Downstream distance specified by the downstream distance filter.
double filterLateralDist
Lateral distance specified by the lateral distance filter.
int activeFilters
Active filters for the subscription (bitset,.
double range
The range of the context.
std::vector< std::shared_ptr< tcpip::Storage > > parameters
The parameters for the subscribed variables.
An error which allows to continue.
virtual void empty(const std::string &)
bool(* SubscriptionHandler)(const std::string &objID, const int variable, VariableWrapper *wrapper, tcpip::Storage *paramData)
Definition of a method to be called for serving an associated commandID.
virtual void setContext(const std::string *const)
virtual std::string readString()
virtual int readUnsignedByte()
virtual double readDouble()
TRACI_CONST double INVALID_DOUBLE_VALUE
TRACI_CONST int LAST_STEP_VEHICLE_NUMBER
TRACI_CONST int POSITION_3D
TRACI_CONST int CMD_GET_CHARGINGSTATION_VARIABLE
TRACI_CONST int POSITION_ROADMAP
TRACI_CONST int CMD_SUBSCRIBE_EDGE_CONTEXT
TRACI_CONST int CMD_SUBSCRIBE_LANE_CONTEXT
TRACI_CONST int TRACI_ID_LIST
TRACI_CONST int CMD_GET_PARKINGAREA_VARIABLE
TRACI_CONST int CMD_GET_POI_VARIABLE
TRACI_CONST int CMD_GET_TL_VARIABLE
TRACI_CONST int CMD_SUBSCRIBE_VEHICLE_CONTEXT
std::map< std::string, libsumo::SubscriptionResults > ContextSubscriptionResults
TRACI_CONST int CMD_GET_REROUTER_VARIABLE
TRACI_CONST int VAR_ROAD_ID
TRACI_CONST int CMD_GET_VEHICLE_VARIABLE
TRACI_CONST int CMD_GET_EDGE_VARIABLE
TRACI_CONST int CMD_GET_CALIBRATOR_VARIABLE
TRACI_CONST int CMD_GET_PERSON_VARIABLE
TRACI_CONST int CMD_GET_ROUTEPROBE_VARIABLE
TRACI_CONST int CMD_GET_LANEAREA_VARIABLE
TRACI_CONST int CMD_SUBSCRIBE_BUSSTOP_CONTEXT
TRACI_CONST int POSITION_2D
TRACI_CONST int CMD_GET_BUSSTOP_VARIABLE
TRACI_CONST int CMD_GET_ROUTE_VARIABLE
TRACI_CONST int CMD_GET_MEANDATA_VARIABLE
TRACI_CONST int CMD_GET_JUNCTION_VARIABLE
std::map< std::string, libsumo::TraCIResults > SubscriptionResults
{object->{variable->value}}
TRACI_CONST int CMD_GET_VARIABLESPEEDSIGN_VARIABLE
TRACI_CONST int CMD_SUBSCRIBE_CALIBRATOR_CONTEXT
TRACI_CONST int VAR_LANEPOSITION
TRACI_CONST int CMD_GET_SIM_VARIABLE
TRACI_CONST int CMD_SUBSCRIBE_PERSON_CONTEXT
TRACI_CONST int CMD_GET_VEHICLETYPE_VARIABLE
TRACI_CONST int CMD_SUBSCRIBE_CHARGINGSTATION_CONTEXT
TRACI_CONST int CMD_SUBSCRIBE_POLYGON_CONTEXT
TRACI_CONST int REQUEST_DRIVINGDIST
TRACI_CONST int CMD_GET_LANE_VARIABLE
TRACI_CONST int CMD_GET_GUI_VARIABLE
TRACI_CONST int CMD_SUBSCRIBE_PARKINGAREA_CONTEXT
TRACI_CONST int CMD_GET_POLYGON_VARIABLE
TRACI_CONST int CMD_SUBSCRIBE_MULTIENTRYEXIT_CONTEXT
TRACI_CONST int CMD_SUBSCRIBE_VEHICLE_VARIABLE
TRACI_CONST int CMD_GET_MULTIENTRYEXIT_VARIABLE
TRACI_CONST int CMD_SUBSCRIBE_INDUCTIONLOOP_CONTEXT
SubscriptionFilterType
Filter types for context subscriptions.
@ SUBS_FILTER_LEAD_FOLLOW
@ SUBS_FILTER_UPSTREAM_DIST
@ SUBS_FILTER_DOWNSTREAM_DIST
@ SUBS_FILTER_LATERAL_DIST
@ SUBS_FILTER_FIELD_OF_VISION
TRACI_CONST int CMD_SUBSCRIBE_LANEAREA_VARIABLE
TRACI_CONST int CMD_SUBSCRIBE_POI_CONTEXT
TRACI_CONST int CMD_SUBSCRIBE_INDUCTIONLOOP_VARIABLE
TRACI_CONST int CMD_SUBSCRIBE_SIM_CONTEXT
TRACI_CONST int CMD_SUBSCRIBE_MULTIENTRYEXIT_VARIABLE
TRACI_CONST int CMD_SUBSCRIBE_LANE_VARIABLE
TRACI_CONST int CMD_SUBSCRIBE_PERSON_VARIABLE
TRACI_CONST int CMD_GET_INDUCTIONLOOP_VARIABLE
TRACI_CONST int CMD_GET_OVERHEADWIRE_VARIABLE
TRACI_CONST int CMD_SUBSCRIBE_LANEAREA_CONTEXT
TRACI_CONST int CMD_SUBSCRIBE_JUNCTION_CONTEXT
std::map< int, std::shared_ptr< libsumo::TraCIResult > > TraCIResults
{variable->value}
TRACI_CONST int CMD_SUBSCRIBE_EDGE_VARIABLE
A 2D or 3D-position, for 2D positions z == INVALID_DOUBLE_VALUE.
std::vector< TraCIPosition > value
An edgeId, position and laneIndex.