Eclipse SUMO - Simulation of Urban MObility
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
libsumo/Simulation.cpp
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2017-2025 German Aerospace Center (DLR) and others.
4// This program and the accompanying materials are made available under the
5// terms of the Eclipse Public License 2.0 which is available at
6// https://www.eclipse.org/legal/epl-2.0/
7// This Source Code may also be made available under the following Secondary
8// Licenses when the conditions for such availability set forth in the Eclipse
9// Public License 2.0 are satisfied: GNU General Public License, version 2
10// or later which is available at
11// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13/****************************************************************************/
20// C++ TraCI client API implementation
21/****************************************************************************/
22#include <config.h>
23#ifdef HAVE_VERSION_H
24#include <version.h>
25#endif
36#include <utils/xml/XMLSubSys.h>
37#include <microsim/MSNet.h>
40#include <microsim/MSEdge.h>
41#include <microsim/MSLane.h>
42#include <microsim/MSVehicle.h>
54#include <mesosim/MELoop.h>
55#include <mesosim/MESegment.h>
56#include <netload/NLBuilder.h>
57#include <libsumo/Helper.h>
59#ifdef HAVE_LIBSUMOGUI
60#include "GUI.h"
61#endif
62#include "Simulation.h"
63#include <libsumo/TraCIDefs.h>
64
65
66namespace libsumo {
67// ===========================================================================
68// static member initializations
69// ===========================================================================
70SubscriptionResults Simulation::mySubscriptionResults;
71ContextSubscriptionResults Simulation::myContextSubscriptionResults;
72#ifdef HAVE_FOX
73FXMutex Simulation::myStepMutex;
74#endif
75
76
77// ===========================================================================
78// static member definitions
79// ===========================================================================
80std::pair<int, std::string>
81Simulation::init(int /* port */, int /* numRetries */, const std::string& /* host */, const std::string& /* label */, FILE* const /* pipe */) {
82 throw TraCIException("Multi client support (including connection switching) is not implemented in libsumo.");
83}
84
85
86std::pair<int, std::string>
87Simulation::start(const std::vector<std::string>& cmd, int /* port */, int /* numRetries */, const std::string& /* label */, const bool /* verbose */,
88 const std::string& /* traceFile */, bool /* traceGetters */, void* /* _stdout */) {
89#ifdef HAVE_LIBSUMOGUI
90 if (GUI::start(cmd)) {
91 return getVersion();
92 }
93#endif
94 load(std::vector<std::string>(cmd.begin() + 1, cmd.end()));
95 return getVersion();
96}
97
98
99bool
100Simulation::isLibsumo() {
101 return true;
102}
103
104
105void
106Simulation::switchConnection(const std::string& /* label */) {
107 throw TraCIException("Multi client support (including connection switching) is not implemented in libsumo.");
108}
109
110
111const std::string&
112Simulation::getLabel() {
113 throw TraCIException("Multi client support (including connection switching) is not implemented in libsumo.");
114}
115
116
117void
118Simulation::setOrder(int /* order */) {
119 throw TraCIException("Multi client support (including connection switching) is not implemented in libsumo.");
120}
121
122
123void
124Simulation::load(const std::vector<std::string>& args) {
125#ifdef HAVE_LIBSUMOGUI
126 if (GUI::load(args)) {
127 return;
128 }
129#endif
130 close("Libsumo issued load command.");
131 try {
132 OptionsCont::getOptions().setApplicationName("libsumo", "Eclipse SUMO libsumo Version " VERSION_STRING);
133 gSimulation = true;
135 OptionsIO::setArgs(args);
136 if (NLBuilder::init(true) != nullptr) {
137 const SUMOTime begin = string2time(OptionsCont::getOptions().getString("begin"));
138 MSNet::getInstance()->setCurrentTimeStep(begin); // needed for state loading
139 WRITE_MESSAGEF(TL("Simulation version % started via libsumo with time: %."), VERSION_STRING, time2string(begin));
140 }
141 } catch (ProcessError& e) {
142 throw TraCIException(e.what());
143 }
144}
145
146
147bool
148Simulation::hasGUI() {
149#ifdef HAVE_LIBSUMOGUI
150 return GUI::hasInstance();
151#else
152 return false;
153#endif
154}
155
156
157bool
158Simulation::isLoaded() {
159 return MSNet::hasInstance();
160}
161
162
163void
164Simulation::step(const double time) {
165#ifdef HAVE_FOX
166 FXMutexLock lock(myStepMutex);
167#endif
169 const SUMOTime t = TIME2STEPS(time);
170#ifdef HAVE_LIBSUMOGUI
171 if (!GUI::step(t)) {
172#endif
173 if (t == 0) {
175 } else {
176 while (MSNet::getInstance()->getCurrentTimeStep() < t) {
178 }
179 }
180#ifdef HAVE_LIBSUMOGUI
181 }
182#endif
184}
185
186
187void
188Simulation::executeMove() {
190}
191
192
193void
194Simulation::close(const std::string& reason) {
196 if (
197#ifdef HAVE_LIBSUMOGUI
198 !GUI::close(reason) &&
199#endif
202 delete MSNet::getInstance();
204 }
205}
206
207
208void
209Simulation::subscribe(const std::vector<int>& varIDs, double begin, double end, const libsumo::TraCIResults& params) {
210 libsumo::Helper::subscribe(CMD_SUBSCRIBE_SIM_VARIABLE, "", varIDs, begin, end, params);
211}
212
213
214const TraCIResults
215Simulation::getSubscriptionResults() {
216 return mySubscriptionResults[""];
217}
218
219
221
222
223std::pair<int, std::string>
224Simulation::getVersion() {
225 return std::make_pair(libsumo::TRACI_VERSION, "SUMO " VERSION_STRING);
226}
227
228
229std::string
230Simulation::getOption(const std::string& option) {
232 if (!oc.exists(option)) {
233 throw TraCIException("The option " + option + " is unknown.");
234 }
235 return oc.getValueString(option);
236}
237
238
239int
240Simulation::getCurrentTime() {
241 return (int)MSNet::getInstance()->getCurrentTimeStep();
242}
243
244
245double
246Simulation::getTime() {
247 return SIMTIME;
248}
249
250double
251Simulation::getEndTime() {
252 return STEPS2TIME(string2time(OptionsCont::getOptions().getString("end")));
253}
254
255
256int
257Simulation::getLoadedNumber() {
259}
260
261
262std::vector<std::string>
263Simulation::getLoadedIDList() {
265}
266
267
268int
269Simulation::getDepartedNumber() {
271}
272
273
274std::vector<std::string>
275Simulation::getDepartedIDList() {
277}
278
279
280int
281Simulation::getArrivedNumber() {
283}
284
285
286std::vector<std::string>
287Simulation::getArrivedIDList() {
289}
290
291
292int
293Simulation::getParkingStartingVehiclesNumber() {
295}
296
297
298std::vector<std::string>
299Simulation::getParkingStartingVehiclesIDList() {
301}
302
303
304int
305Simulation::getParkingEndingVehiclesNumber() {
307}
308
309
310std::vector<std::string>
311Simulation::getParkingEndingVehiclesIDList() {
313}
314
315
316int
317Simulation::getStopStartingVehiclesNumber() {
319}
320
321
322std::vector<std::string>
323Simulation::getStopStartingVehiclesIDList() {
325}
326
327
328int
329Simulation::getStopEndingVehiclesNumber() {
331}
332
333
334std::vector<std::string>
335Simulation::getStopEndingVehiclesIDList() {
337}
338
339
340int
341Simulation::getCollidingVehiclesNumber() {
343}
344
345
346std::vector<std::string>
347Simulation::getCollidingVehiclesIDList() {
349}
350
351
352int
353Simulation::getEmergencyStoppingVehiclesNumber() {
355}
356
357
358std::vector<std::string>
359Simulation::getEmergencyStoppingVehiclesIDList() {
361}
362
363
364int
365Simulation::getStartingTeleportNumber() {
367}
368
369
370std::vector<std::string>
371Simulation::getStartingTeleportIDList() {
373}
374
375
376int
377Simulation::getEndingTeleportNumber() {
379}
380
381
382std::vector<std::string>
383Simulation::getEndingTeleportIDList() {
385}
386
387int
388Simulation::getDepartedPersonNumber() {
390}
391
392
393std::vector<std::string>
394Simulation::getDepartedPersonIDList() {
396}
397
398
399int
400Simulation::getArrivedPersonNumber() {
402}
403
404
405std::vector<std::string>
406Simulation::getArrivedPersonIDList() {
408}
409
410std::vector<std::string>
411Simulation::getBusStopIDList() {
412 std::vector<std::string> result;
413 for (const auto& pair : MSNet::getInstance()->getStoppingPlaces(SUMO_TAG_BUS_STOP)) {
414 result.push_back(pair.first);
415 }
416 return result;
417}
418
419int
420Simulation::getBusStopWaiting(const std::string& stopID) {
422 if (s == nullptr) {
423 throw TraCIException("Unknown bus stop '" + stopID + "'.");
424 }
425 return s->getTransportableNumber();
426}
427
428std::vector<std::string>
429Simulation::getBusStopWaitingIDList(const std::string& stopID) {
431 if (s == nullptr) {
432 throw TraCIException("Unknown bus stop '" + stopID + "'.");
433 }
434 std::vector<std::string> result;
435 for (const MSTransportable* t : s->getTransportables()) {
436 result.push_back(t->getID());
437 }
438 return result;
439}
440
441
442std::vector<std::string>
443Simulation::getPendingVehicles() {
444 std::vector<std::string> result;
446 result.push_back(veh->getID());
447 }
448 return result;
449}
450
451
452std::vector<libsumo::TraCICollision>
453Simulation::getCollisions() {
454 std::vector<libsumo::TraCICollision> result;
455 for (auto item : MSNet::getInstance()->getCollisions()) {
456 for (const MSNet::Collision& c : item.second) {
458 c2.collider = item.first;
459 c2.victim = c.victim;
460 c2.colliderType = c.colliderType;
461 c2.victimType = c.victimType;
462 c2.colliderSpeed = c.colliderSpeed;
463 c2.victimSpeed = c.victimSpeed;
464 c2.type = c.type;
465 c2.lane = c.lane->getID();
466 c2.pos = c.pos;
467 result.push_back(c2);
468 }
469 }
470 return result;
471}
472
473double
474Simulation::getScale() {
476}
477
478double
479Simulation::getDeltaT() {
480 return TS;
481}
482
483
484TraCIPositionVector
485Simulation::getNetBoundary() {
487 TraCIPositionVector tb;
488 TraCIPosition minV;
489 TraCIPosition maxV;
490 minV.x = b.xmin();
491 maxV.x = b.xmax();
492 minV.y = b.ymin();
493 maxV.y = b.ymax();
494 minV.z = b.zmin();
495 maxV.z = b.zmax();
496 tb.value.push_back(minV);
497 tb.value.push_back(maxV);
498 return tb;
499}
500
501
502int
503Simulation::getMinExpectedNumber() {
504 MSNet* net = MSNet::getInstance();
507 + (net->hasPersons() ? net->getPersonControl().getActiveCount() : 0)
508 + (net->hasContainers() ? net->getContainerControl().getActiveCount() : 0)
510}
511
512
513TraCIPosition
514Simulation::convert2D(const std::string& edgeID, double pos, int laneIndex, bool toGeo) {
515 Position result = Helper::getLaneChecking(edgeID, laneIndex, pos)->geometryPositionAtOffset(pos);
516 if (toGeo) {
518 }
519 result.setz(0.);
520 return Helper::makeTraCIPosition(result);
521}
522
523
524TraCIPosition
525Simulation::convert3D(const std::string& edgeID, double pos, int laneIndex, bool toGeo) {
526 Position result = Helper::getLaneChecking(edgeID, laneIndex, pos)->geometryPositionAtOffset(pos);
527 if (toGeo) {
529 }
530 return Helper::makeTraCIPosition(result, true);
531}
532
533
534TraCIRoadPosition
535Simulation::convertRoad(double x, double y, bool isGeo, const std::string& vClass) {
536 Position pos(x, y);
537 if (isGeo) {
539 }
540 if (!SumoVehicleClassStrings.hasString(vClass)) {
541 throw TraCIException("Unknown vehicle class '" + vClass + "'.");
542 }
543 const SUMOVehicleClass vc = SumoVehicleClassStrings.get(vClass);
544 std::pair<MSLane*, double> roadPos = libsumo::Helper::convertCartesianToRoadMap(pos, vc);
545 if (roadPos.first == nullptr) {
546 throw TraCIException("Cannot convert position to road.");
547 }
548 TraCIRoadPosition result;
549 result.edgeID = roadPos.first->getEdge().getID();
550 result.laneIndex = roadPos.first->getIndex();
551 result.pos = roadPos.second;
552 return result;
553}
554
555
556TraCIPosition
557Simulation::convertGeo(double x, double y, bool fromGeo) {
558 Position pos(x, y);
559 if (fromGeo) {
561 } else {
563 }
564 return Helper::makeTraCIPosition(pos);
565}
566
567
568double
569Simulation::getDistance2D(double x1, double y1, double x2, double y2, bool isGeo, bool isDriving) {
570 Position pos1(x1, y1);
571 Position pos2(x2, y2);
572 if (isGeo) {
575 }
576 if (isDriving) {
577 std::pair<const MSLane*, double> roadPos1 = libsumo::Helper::convertCartesianToRoadMap(pos1, SVC_IGNORING);
578 std::pair<const MSLane*, double> roadPos2 = libsumo::Helper::convertCartesianToRoadMap(pos2, SVC_IGNORING);
579 return Helper::getDrivingDistance(roadPos1, roadPos2);
580 } else {
581 return pos1.distanceTo(pos2);
582 }
583}
584
585
586double
587Simulation::getDistanceRoad(const std::string& edgeID1, double pos1, const std::string& edgeID2, double pos2, bool isDriving) {
588 std::pair<const MSLane*, double> roadPos1 = std::make_pair(libsumo::Helper::getLaneChecking(edgeID1, 0, pos1), pos1);
589 std::pair<const MSLane*, double> roadPos2 = std::make_pair(libsumo::Helper::getLaneChecking(edgeID2, 0, pos2), pos2);
590 if (isDriving) {
591 return Helper::getDrivingDistance(roadPos1, roadPos2);
592 } else {
593 const Position p1 = roadPos1.first->geometryPositionAtOffset(roadPos1.second);
594 const Position p2 = roadPos2.first->geometryPositionAtOffset(roadPos2.second);
595 return p1.distanceTo(p2);
596 }
597}
598
599
600TraCIStage
601Simulation::findRoute(const std::string& from, const std::string& to, const std::string& typeID, const double depart, const int routingMode) {
602 TraCIStage result(STAGE_DRIVING);
603 const MSEdge* const fromEdge = MSEdge::dictionary(from);
604 if (fromEdge == nullptr) {
605 throw TraCIException("Unknown from edge '" + from + "'.");
606 }
607 const MSEdge* const toEdge = MSEdge::dictionary(to);
608 if (toEdge == nullptr) {
609 throw TraCIException("Unknown to edge '" + to + "'.");
610 }
611 MSBaseVehicle* vehicle = nullptr;
612 MSVehicleType* type = MSNet::getInstance()->getVehicleControl().getVType(typeID == "" ? DEFAULT_VTYPE_ID : typeID);
613 if (type == nullptr) {
614 throw TraCIException("The vehicle type '" + typeID + "' is not known.");
615 }
617 pars->id = "simulation.findRoute";
618 try {
619 ConstMSRoutePtr const routeDummy = std::make_shared<MSRoute>("", ConstMSEdgeVector({ fromEdge }), false, nullptr, std::vector<SUMOVehicleParameter::Stop>());
620 vehicle = dynamic_cast<MSBaseVehicle*>(MSNet::getInstance()->getVehicleControl().buildVehicle(pars, routeDummy, type, false));
621 std::string msg;
622 if (!vehicle->hasValidRouteStart(msg)) {
625 throw TraCIException("Invalid departure edge for vehicle type '" + type->getID() + "' (" + msg + ")");
626 }
627 // we need to fix the speed factor here for deterministic results
628 vehicle->setChosenSpeedFactor(type->getSpeedFactor().getParameter()[0]);
629 vehicle->setRoutingMode(routingMode);
630 } catch (ProcessError& e) {
631 throw TraCIException("Invalid departure edge for vehicle type '" + type->getID() + "' (" + e.what() + ")");
632 }
633 ConstMSEdgeVector edges;
634 const SUMOTime dep = depart < 0 ? MSNet::getInstance()->getCurrentTimeStep() : TIME2STEPS(depart);
636 router.compute(fromEdge, toEdge, vehicle, dep, edges);
637 for (const MSEdge* e : edges) {
638 result.edges.push_back(e->getID());
639 }
640 result.travelTime = result.cost = router.recomputeCosts(edges, vehicle, dep, &result.length);
641 if (vehicle != nullptr) {
644 }
645 return result;
646}
647
648
649std::vector<TraCIStage>
650Simulation::findIntermodalRoute(const std::string& from, const std::string& to,
651 const std::string& modes, double depart, const int routingMode, double speed, double walkFactor,
652 double departPos, double arrivalPos, const double departPosLat,
653 const std::string& pType, const std::string& vType, const std::string& destStop) {
654 UNUSED_PARAMETER(departPosLat);
655 std::vector<TraCIStage> result;
656 const MSEdge* const fromEdge = MSEdge::dictionary(from);
657 if (fromEdge == nullptr) {
658 throw TraCIException("Unknown from edge '" + from + "'.");
659 }
660 const MSEdge* const toEdge = MSEdge::dictionary(to);
661 if (toEdge == nullptr) {
662 throw TraCIException("Unknown to edge '" + to + "'.");
663 }
665 SVCPermissions modeSet = 0;
666 std::vector<SUMOVehicleParameter*> pars;
667 if (vType != "") {
668 pars.push_back(new SUMOVehicleParameter());
669 pars.back()->vtypeid = vType;
670 pars.back()->id = vType;
671 modeSet |= SVC_PASSENGER;
672 }
673 for (StringTokenizer st(modes); st.hasNext();) {
674 const std::string mode = st.next();
675 if (mode == toString(PersonMode::CAR)) {
676 pars.push_back(new SUMOVehicleParameter());
677 pars.back()->vtypeid = DEFAULT_VTYPE_ID;
678 pars.back()->id = mode;
679 modeSet |= SVC_PASSENGER;
680 } else if (mode == toString(PersonMode::BICYCLE)) {
681 pars.push_back(new SUMOVehicleParameter());
682 pars.back()->vtypeid = DEFAULT_BIKETYPE_ID;
683 pars.back()->id = mode;
684 modeSet |= SVC_BICYCLE;
685 } else if (mode == toString(PersonMode::TAXI)) {
686 pars.push_back(new SUMOVehicleParameter());
687 pars.back()->vtypeid = DEFAULT_TAXITYPE_ID;
688 pars.back()->id = mode;
689 pars.back()->line = mode;
690 modeSet |= SVC_TAXI;
691 } else if (mode == toString(PersonMode::PUBLIC)) {
692 pars.push_back(nullptr);
693 modeSet |= SVC_BUS;
694 } else if (mode == toString(PersonMode::WALK)) {
695 // do nothing
696 } else {
697 throw TraCIException("Unknown person mode '" + mode + "'.");
698 }
699 }
700 if (pars.empty()) {
701 pars.push_back(nullptr);
702 }
703 // interpret default arguments
704 const MSVehicleType* pedType = vehControl.hasVType(pType) ? vehControl.getVType(pType) : vehControl.getVType(DEFAULT_PEDTYPE_ID);
705 SUMOTime departStep = TIME2STEPS(depart);
706 if (depart < 0) {
707 departStep = MSNet::getInstance()->getCurrentTimeStep();
708 }
709 if (speed < 0) {
710 speed = MIN2(pedType->getMaxSpeed(), pedType->getDesiredMaxSpeed());
711 }
712 if (walkFactor < 0) {
713 walkFactor = OptionsCont::getOptions().getFloat("persontrip.walkfactor");
714 }
715 const double externalFactor = StringUtils::toDouble(pedType->getParameter().getParameter("externalEffortFactor", "100"));
716 if (departPos < 0) {
717 departPos += fromEdge->getLength();
718 }
719 if (arrivalPos == INVALID_DOUBLE_VALUE) {
720 arrivalPos = toEdge->getLength() / 2;
721 } else if (arrivalPos < 0) {
722 arrivalPos += toEdge->getLength();
723 }
724 if (departPos < 0 || departPos >= fromEdge->getLength()) {
725 throw TraCIException("Invalid depart position " + toString(departPos) + " for edge '" + from + "'.");
726 }
727 if (arrivalPos < 0 || arrivalPos >= toEdge->getLength()) {
728 throw TraCIException("Invalid arrival position " + toString(arrivalPos) + " for edge '" + to + "'.");
729 }
730 double minCost = std::numeric_limits<double>::max();
732 for (SUMOVehicleParameter* vehPar : pars) {
733 std::vector<TraCIStage> resultCand;
734 SUMOVehicle* vehicle = nullptr;
735 if (vehPar != nullptr) {
736 MSVehicleType* type = MSNet::getInstance()->getVehicleControl().getVType(vehPar->vtypeid);
737 const bool isTaxi = type != nullptr && type->getID() == DEFAULT_TAXITYPE_ID && vehPar->line == "taxi";
738 if (type == nullptr) {
739 throw TraCIException("Unknown vehicle type '" + vehPar->vtypeid + "'.");
740 }
741 if (type->getVehicleClass() != SVC_IGNORING && (fromEdge->getPermissions() & type->getVehicleClass()) == 0 && !isTaxi) {
742 WRITE_WARNINGF(TL("Ignoring vehicle type '%' when performing intermodal routing because it is not allowed on the start edge '%'."), type->getID(), from);
743 } else {
744 ConstMSRoutePtr const routeDummy = std::make_shared<MSRoute>(vehPar->id, ConstMSEdgeVector({ fromEdge }), false, nullptr, std::vector<SUMOVehicleParameter::Stop>());
745 vehicle = vehControl.buildVehicle(vehPar, routeDummy, type, !MSGlobals::gCheckRoutes);
746 // we need to fix the speed factor here for deterministic results
747 vehicle->setChosenSpeedFactor(type->getSpeedFactor().getParameter()[0]);
748 }
749 }
750 std::vector<MSTransportableRouter::TripItem> items;
751 if (router.compute(fromEdge, toEdge, departPos, "", arrivalPos, destStop,
752 speed * walkFactor, vehicle, modeSet, departStep, items, externalFactor)) {
753 double cost = 0;
754 for (std::vector<MSTransportableRouter::TripItem>::iterator it = items.begin(); it != items.end(); ++it) {
755 if (!it->edges.empty()) {
756 resultCand.push_back(TraCIStage((it->line == "" ? STAGE_WALKING : STAGE_DRIVING), it->vType, it->line, it->destStop));
757 for (const MSEdge* e : it->edges) {
758 resultCand.back().edges.push_back(e->getID());
759 }
760 resultCand.back().travelTime = it->traveltime;
761 resultCand.back().cost = it->cost;
762 resultCand.back().length = it->length;
763 resultCand.back().intended = it->intended;
764 resultCand.back().depart = it->depart;
765 resultCand.back().departPos = it->departPos;
766 resultCand.back().arrivalPos = it->arrivalPos;
767 resultCand.back().description = it->description;
768 }
769 cost += it->cost;
770 }
771 if (cost < minCost) {
772 minCost = cost;
773 result = resultCand;
774 }
775 }
776 if (vehicle != nullptr) {
777 vehControl.deleteVehicle(vehicle, true);
778 vehControl.discountRoutingVehicle();
779 }
780 }
781 return result;
782}
783
784
785std::string
786Simulation::getParameter(const std::string& objectID, const std::string& key) {
787 if (StringUtils::startsWith(key, "chargingStation.")) {
788 const std::string attrName = key.substr(16);
790 if (cs == nullptr) {
791 throw TraCIException("Invalid chargingStation '" + objectID + "'");
792 }
793 if (attrName == toString(SUMO_ATTR_TOTALENERGYCHARGED)) {
794 return toString(cs->getTotalCharged());
795 } else if (attrName == toString(SUMO_ATTR_NAME)) {
796 return toString(cs->getMyName());
797 } else if (attrName == "lane") {
798 return cs->getLane().getID();
799 } else if (cs->hasParameter(attrName)) {
800 return cs->getParameter(attrName);
801 } else {
802 throw TraCIException("Invalid chargingStation parameter '" + attrName + "'");
803 }
804 } else if (StringUtils::startsWith(key, "overheadWire.")) {
805 const std::string attrName = key.substr(16);
807 if (cs == 0) {
808 throw TraCIException("Invalid overhead wire '" + objectID + "'");
809 }
810 if (attrName == toString(SUMO_ATTR_TOTALENERGYCHARGED)) {
811 return toString(cs->getTotalCharged());
812 } else if (attrName == toString(SUMO_ATTR_NAME)) {
813 return toString(cs->getMyName());
814 } else {
815 throw TraCIException("Invalid overhead wire parameter '" + attrName + "'");
816 }
817 } else if (StringUtils::startsWith(key, "net.")) {
818 const std::string attrName = key.substr(4);
819 if (attrName == toString(SUMO_ATTR_NET_OFFSET)) {
820 return toString(GeoConvHelper::getFinal().getOffsetBase());
821 } else {
822 throw TraCIException("Invalid net parameter '" + attrName + "'");
823 }
824 } else if (StringUtils::startsWith(key, "stats.")) {
825 if (objectID != "") {
826 throw TraCIException("Simulation parameter '" + key + "' is not supported for object id '" + objectID + "'. Use empty id for stats");
827 }
828 const std::string attrName = key.substr(6);
831 if (attrName == "vehicles.loaded") {
832 return toString(vc.getLoadedVehicleNo());
833 } else if (attrName == "vehicles.inserted") {
834 return toString(vc.getDepartedVehicleNo());
835 } else if (attrName == "vehicles.running") {
836 return toString(vc.getRunningVehicleNo());
837 } else if (attrName == "vehicles.waiting") {
838 return toString(MSNet::getInstance()->getInsertionControl().getWaitingVehicleNo());
839 } else if (attrName == "teleports.total") {
840 return toString(vc.getTeleportCount());
841 } else if (attrName == "teleports.jam") {
842 return toString(vc.getTeleportsJam());
843 } else if (attrName == "teleports.yield") {
844 return toString(vc.getTeleportsYield());
845 } else if (attrName == "teleports.wrongLane") {
846 return toString(vc.getTeleportsWrongLane());
847 } else if (attrName == "safety.collisions") {
848 return toString(vc.getCollisionCount());
849 } else if (attrName == "safety.emergencyStops") {
850 return toString(vc.getEmergencyStops());
851 } else if (attrName == "safety.emergencyBraking") {
853 } else if (attrName == "persons.loaded") {
854 return toString(pc != nullptr ? pc->getLoadedNumber() : 0);
855 } else if (attrName == "persons.running") {
856 return toString(pc != nullptr ? pc->getRunningNumber() : 0);
857 } else if (attrName == "persons.jammed") {
858 return toString(pc != nullptr ? pc->getJammedNumber() : 0);
859 } else if (attrName == "personTeleports.total") {
860 return toString(pc != nullptr ? pc->getTeleportCount() : 0);
861 } else if (attrName == "personTeleports.abortWait") {
862 return toString(pc != nullptr ? pc->getTeleportsAbortWait() : 0);
863 } else if (attrName == "personTeleports.wrongDest") {
864 return toString(pc != nullptr ? pc->getTeleportsWrongDest() : 0);
865 } else {
866 throw TraCIException("Invalid stats parameter '" + attrName + "'");
867 }
868 } else if (StringUtils::startsWith(key, "parkingArea.")) {
869 const std::string attrName = key.substr(12);
871 if (pa == nullptr) {
872 throw TraCIException("Invalid parkingArea '" + objectID + "'");
873 }
874 if (attrName == "capacity") {
875 return toString(pa->getCapacity());
876 } else if (attrName == "occupancy") {
878 } else if (attrName == toString(SUMO_ATTR_NAME)) {
879 return toString(pa->getMyName());
880 } else if (attrName == "lane") {
881 return pa->getLane().getID();
882 } else if (pa->hasParameter(attrName)) {
883 return pa->getParameter(attrName);
884 } else {
885 throw TraCIException("Invalid parkingArea parameter '" + attrName + "'");
886 }
887 } else if (StringUtils::startsWith(key, "busStop.")) {
888 const std::string attrName = key.substr(8);
890 if (bs == nullptr) {
891 throw TraCIException("Invalid busStop '" + objectID + "'");
892 }
893 if (attrName == toString(SUMO_ATTR_NAME)) {
894 return toString(bs->getMyName());
895 } else if (attrName == "lane") {
896 return bs->getLane().getID();
897 } else if (bs->hasParameter(attrName)) {
898 return bs->getParameter(attrName);
899 } else {
900 throw TraCIException("Invalid busStop parameter '" + attrName + "'");
901 }
902 } else if (StringUtils::startsWith(key, "device.tripinfo.")) {
903 if (objectID != "") {
904 throw TraCIException("Simulation parameter '" + key + "' is not supported for object id '" + objectID
905 + "'. Use empty id for global device parameers or vehicle domain for vehicle specific parameters");
906 }
907 const std::string attrName = key.substr(16);
909 } else if (objectID == "") {
910 return MSNet::getInstance()->getParameter(key, "");
911 } else {
912 throw TraCIException("Simulation parameter '" + key + "' is not supported for object id '" + objectID + "'. Use empty id for generic network parameters");
913 }
914}
915
917
918void
919Simulation::setParameter(const std::string& objectID, const std::string& key, const std::string& value) {
920 if (objectID == "") {
921 MSNet::getInstance()->setParameter(key, value);
922 } else {
923 throw TraCIException("Setting simulation parameter '" + key + "' is not supported for object id '" + objectID + "'. Use empty id for generic network parameters");
924 }
925}
926
927void
928Simulation::setScale(double value) {
930}
931
932void
933Simulation::clearPending(const std::string& routeID) {
935}
936
937
938void
939Simulation::saveState(const std::string& fileName) {
940 MSStateHandler::saveState(fileName, MSNet::getInstance()->getCurrentTimeStep());
941}
942
943double
944Simulation::loadState(const std::string& fileName) {
945 long before = PROGRESS_BEGIN_TIME_MESSAGE("Loading state from '" + fileName + "'");
946 try {
947 const SUMOTime newTime = MSNet::getInstance()->loadState(fileName, false);
950 PROGRESS_TIME_MESSAGE(before);
951 return STEPS2TIME(newTime);
952 } catch (const IOError& e) {
953 throw TraCIException("Loading state from '" + fileName + "' failed. " + e.what());
954 } catch (const ProcessError& e) {
955 throw TraCIException("Loading state from '" + fileName + "' failed, check whether SUMO versions match. " + e.what());
956 }
957}
958
959void
960Simulation::writeMessage(const std::string& msg) {
961 WRITE_MESSAGE(msg);
962}
963
964
965void
966Simulation::storeShape(PositionVector& shape) {
968}
969
970
971std::shared_ptr<VariableWrapper>
972Simulation::makeWrapper() {
973 return std::make_shared<Helper::SubscriptionWrapper>(handleVariable, mySubscriptionResults, myContextSubscriptionResults);
974}
975
976
977bool
978Simulation::handleVariable(const std::string& objID, const int variable, VariableWrapper* wrapper, tcpip::Storage* paramData) {
979 switch (variable) {
980 case VAR_TIME:
981 return wrapper->wrapDouble(objID, variable, getTime());
982 case VAR_TIME_STEP:
983 return wrapper->wrapInt(objID, variable, (int)getCurrentTime());
984 case VAR_END:
985 return wrapper->wrapDouble(objID, variable, getEndTime());
987 return wrapper->wrapInt(objID, variable, getLoadedNumber());
989 return wrapper->wrapStringList(objID, variable, getLoadedIDList());
991 return wrapper->wrapInt(objID, variable, getDepartedNumber());
993 return wrapper->wrapStringList(objID, variable, getDepartedIDList());
995 return wrapper->wrapInt(objID, variable, getStartingTeleportNumber());
997 return wrapper->wrapStringList(objID, variable, getStartingTeleportIDList());
999 return wrapper->wrapInt(objID, variable, getEndingTeleportNumber());
1001 return wrapper->wrapStringList(objID, variable, getEndingTeleportIDList());
1003 return wrapper->wrapInt(objID, variable, getArrivedNumber());
1005 return wrapper->wrapStringList(objID, variable, getArrivedIDList());
1007 return wrapper->wrapInt(objID, variable, getParkingStartingVehiclesNumber());
1009 return wrapper->wrapStringList(objID, variable, getParkingStartingVehiclesIDList());
1011 return wrapper->wrapInt(objID, variable, getParkingEndingVehiclesNumber());
1013 return wrapper->wrapStringList(objID, variable, getParkingEndingVehiclesIDList());
1015 return wrapper->wrapInt(objID, variable, getStopStartingVehiclesNumber());
1017 return wrapper->wrapStringList(objID, variable, getStopStartingVehiclesIDList());
1019 return wrapper->wrapInt(objID, variable, getStopEndingVehiclesNumber());
1021 return wrapper->wrapStringList(objID, variable, getStopEndingVehiclesIDList());
1023 return wrapper->wrapInt(objID, variable, getCollidingVehiclesNumber());
1025 return wrapper->wrapStringList(objID, variable, getCollidingVehiclesIDList());
1027 return wrapper->wrapInt(objID, variable, getEmergencyStoppingVehiclesNumber());
1029 return wrapper->wrapStringList(objID, variable, getEmergencyStoppingVehiclesIDList());
1031 return wrapper->wrapInt(objID, variable, getDepartedPersonNumber());
1033 return wrapper->wrapStringList(objID, variable, getDepartedPersonIDList());
1035 return wrapper->wrapInt(objID, variable, getArrivedPersonNumber());
1037 return wrapper->wrapStringList(objID, variable, getArrivedPersonIDList());
1038 case VAR_SCALE:
1039 return wrapper->wrapDouble(objID, variable, getScale());
1040 case VAR_DELTA_T:
1041 return wrapper->wrapDouble(objID, variable, getDeltaT());
1042 case VAR_OPTION:
1043 return wrapper->wrapString(objID, variable, getOption(objID));
1045 return wrapper->wrapInt(objID, variable, getMinExpectedNumber());
1047 return wrapper->wrapStringList(objID, variable, getBusStopIDList());
1049 return wrapper->wrapInt(objID, variable, getBusStopWaiting(objID));
1051 return wrapper->wrapStringList(objID, variable, getBusStopWaitingIDList(objID));
1053 return wrapper->wrapStringList(objID, variable, getPendingVehicles());
1055 paramData->readUnsignedByte();
1056 return wrapper->wrapString(objID, variable, getParameter(objID, paramData->readString()));
1058 paramData->readUnsignedByte();
1059 return wrapper->wrapStringPair(objID, variable, getParameterWithKey(objID, paramData->readString()));
1060 default:
1061 return false;
1062 }
1063}
1064}
1065
1066
1067/****************************************************************************/
long long int SUMOTime
Definition GUI.h:36
std::vector< const MSEdge * > ConstMSEdgeVector
Definition MSEdge.h:74
#define WRITE_WARNINGF(...)
Definition MsgHandler.h:284
#define WRITE_MESSAGEF(...)
Definition MsgHandler.h:286
#define WRITE_MESSAGE(msg)
Definition MsgHandler.h:285
#define PROGRESS_BEGIN_TIME_MESSAGE(msg)
Definition MsgHandler.h:289
#define TL(string)
Definition MsgHandler.h:301
#define PROGRESS_TIME_MESSAGE(before)
Definition MsgHandler.h:290
std::shared_ptr< const MSRoute > ConstMSRoutePtr
Definition Route.h:32
SUMOTime string2time(const std::string &r)
convert string to SUMOTime
Definition SUMOTime.cpp:46
std::string time2string(SUMOTime t, bool humanReadable)
convert SUMOTime to string (independently of global format setting)
Definition SUMOTime.cpp:91
#define STEPS2TIME(x)
Definition SUMOTime.h:55
#define TS
Definition SUMOTime.h:42
#define SIMTIME
Definition SUMOTime.h:62
#define TIME2STEPS(x)
Definition SUMOTime.h:57
StringBijection< SUMOVehicleClass > SumoVehicleClassStrings(sumoVehicleClassStringInitializer, SVC_CUSTOM2, false)
long long int SVCPermissions
bitset where each bit declares whether a certain SVC may use this edge/lane
const std::string DEFAULT_TAXITYPE_ID
const std::string DEFAULT_PEDTYPE_ID
const std::string DEFAULT_VTYPE_ID
SUMOVehicleClass
Definition of vehicle classes to differ between different lane usage and authority types.
@ SVC_IGNORING
vehicles ignoring classes
@ SVC_PASSENGER
vehicle is a passenger car (a "normal" car)
@ SVC_BICYCLE
vehicle is a bicycle
@ SVC_TAXI
vehicle is a taxi
@ SVC_BUS
vehicle is a bus
const std::string DEFAULT_BIKETYPE_ID
@ SUMO_TAG_CHARGING_STATION
A Charging Station.
@ SUMO_TAG_BUS_STOP
A bus stop.
@ SUMO_TAG_PARKING_AREA
A parking area.
@ SUMO_TAG_OVERHEAD_WIRE_SEGMENT
An overhead wire segment.
@ SUMO_ATTR_NET_OFFSET
@ SUMO_ATTR_TOTALENERGYCHARGED
@ SUMO_ATTR_NAME
bool gSimulation
Definition StdDefs.cpp:30
#define UNUSED_PARAMETER(x)
Definition StdDefs.h:30
T MIN2(T a, T b)
Definition StdDefs.h:76
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition ToString.h:46
#define LIBSUMO_SUBSCRIPTION_IMPLEMENTATION(CLASS, DOM)
Definition TraCIDefs.h:77
#define LIBSUMO_GET_PARAMETER_WITH_KEY_IMPLEMENTATION(CLASS)
Definition TraCIDefs.h:124
A class that stores a 2D geometrical boundary.
Definition Boundary.h:39
double ymin() const
Returns minimum y-coordinate.
Definition Boundary.cpp:127
double xmin() const
Returns minimum x-coordinate.
Definition Boundary.cpp:115
PositionVector getShape(const bool closeShape) const
get position vector (shape) based on this boundary
Definition Boundary.cpp:444
double zmin() const
Returns minimum z-coordinate.
Definition Boundary.cpp:139
double ymax() const
Returns maximum y-coordinate.
Definition Boundary.cpp:133
double xmax() const
Returns maximum x-coordinate.
Definition Boundary.cpp:121
double zmax() const
Returns maximum z-coordinate.
Definition Boundary.cpp:145
std::vector< double > & getParameter()
Returns the parameters of this distribution.
static const GeoConvHelper & getFinal()
the coordinate transformation for writing the location element and for tracking the original coordina...
void cartesian2geo(Position &cartesian) const
Converts the given cartesian (shifted) position to its geo (lat/long) representation.
const Boundary & getConvBoundary() const
Returns the converted boundary.
bool x2cartesian_const(Position &from) const
Converts the given coordinate into a cartesian using the previous initialisation.
bool compute(const E *from, const E *to, const double departPos, const std::string &originStopID, const double arrivalPos, const std::string &stopID, const double speed, const V *const vehicle, const SVCPermissions modeSet, const SUMOTime msTime, std::vector< TripItem > &into, const double externalFactor=0.)
Builds the route between the given edges using the minimum effort at the given time The definition of...
C++ TraCI client API implementation.
Definition Simulation.h:41
The base class for microscopic and mesoscopic vehicles.
void setChosenSpeedFactor(const double factor)
Returns the precomputed factor by which the driver wants to be faster than the speed limit.
void setRoutingMode(int value)
Sets routing behavior.
SUMOVehicleClass getVClass() const
Returns the vehicle's access class.
virtual bool hasValidRouteStart(std::string &msg)
checks wether the vehicle can depart on the first edge
double getTotalCharged() const
static bool hasServableReservations()
check whether there are still (servable) reservations in the system
static std::string getGlobalParameter(const std::string &prefixedKey)
try to retrieve the given parameter from the global statistics. Throw exception for unsupported key
A road/street connecting two junctions.
Definition MSEdge.h:77
SVCPermissions getPermissions() const
Returns the combined permissions of all lanes of this edge.
Definition MSEdge.h:649
double getLength() const
return the length of the edge
Definition MSEdge.h:685
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....
Definition MSEdge.cpp:1047
static bool gCheckRoutes
Definition MSGlobals.h:91
const MSVehicleContainer::VehicleVector & getPendingVehicles() const
retrieve vehicles waiting for insertion
void clearPendingVehicles(const std::string &route)
clears out all pending vehicles from a route, "" for all routes
int getPendingFlowCount() const
Returns the number of flows that are still active.
const Position geometryPositionAtOffset(double offset, double lateralOffset=0) const
Definition MSLane.h:560
The simulated network and simulation perfomer.
Definition MSNet.h:89
SUMOTime loadState(const std::string &fileName, const bool catchExceptions)
load state from file and return new time
Definition MSNet.cpp:1692
@ ENDING_PARKING
The vehicle ends to park.
@ STARTING_STOP
The vehicles starts to stop.
@ BUILT
The vehicle was built, but has not yet departed.
@ STARTING_PARKING
The vehicles starts to park.
@ STARTING_TELEPORT
The vehicle started to teleport.
@ ENDING_STOP
The vehicle ends to stop.
@ ENDING_TELEPORT
The vehicle ended being teleported.
@ ARRIVED
The vehicle arrived at his destination (is deleted)
@ DEPARTED
The vehicle has departed (was inserted into the network)
@ COLLISION
The vehicle is involved in a collision.
@ EMERGENCYSTOP
The vehicle had to brake harder than permitted.
static MSNet * getInstance()
Returns the pointer to the unique instance of MSNet (singleton).
Definition MSNet.cpp:186
const CollisionMap & getCollisions() const
Definition MSNet.h:744
virtual MSTransportableControl & getContainerControl()
Returns the container control.
Definition MSNet.cpp:1206
MSTransportableRouter & getIntermodalRouter(const int rngIndex, const int routingMode=0, const MSEdgeVector &prohibited=MSEdgeVector()) const
Definition MSNet.cpp:1561
SUMOTime getCurrentTimeStep() const
Returns the current simulation step.
Definition MSNet.h:321
static bool hasInstance()
Returns whether the network was already constructed.
Definition MSNet.h:153
void closeSimulation(SUMOTime start, const std::string &reason="")
Closes the simulation (all files, connections, etc.)
Definition MSNet.cpp:683
MSStoppingPlace * getStoppingPlace(const std::string &id, const SumoXMLTag category) const
Returns the named stopping place of the given category.
Definition MSNet.cpp:1396
void setCurrentTimeStep(const SUMOTime step)
Sets the current simulation step (used by state loading)
Definition MSNet.h:329
void simulationStep(const bool onlyMove=false)
Performs a single simulation step.
Definition MSNet.cpp:722
bool hasContainers() const
Returns whether containers are simulated.
Definition MSNet.h:412
bool hasPersons() const
Returns whether persons are simulated.
Definition MSNet.h:396
@ PERSON_DEPARTED
The transportable person has departed (was inserted into the network)
@ PERSON_ARRIVED
The transportable person arrived at his destination (is deleted)
MSInsertionControl & getInsertionControl()
Returns the insertion control.
Definition MSNet.h:432
MSVehicleRouter & getRouterTT(const int rngIndex, const MSEdgeVector &prohibited=MSEdgeVector()) const
Definition MSNet.cpp:1523
MSVehicleControl & getVehicleControl()
Returns the vehicle control.
Definition MSNet.h:379
virtual MSTransportableControl & getPersonControl()
Returns the person control.
Definition MSNet.cpp:1197
const NamedObjectCont< MSStoppingPlace * > & getStoppingPlaces(SumoXMLTag category) const
Definition MSNet.cpp:1431
Definition of overhead wire segment.
double getTotalCharged() const
A lane area vehicles can halt at.
int getCapacity() const
Returns the area capacity.
int getOccupancyIncludingBlocked() const
Returns the area occupancy.
static MSVehicleRouter & getRouterTT(const int rngIndex, SUMOVehicleClass svc, const MSEdgeVector &prohibited=MSEdgeVector())
return the vehicle router instance
static void saveState(const std::string &file, SUMOTime step, bool usePrefix=true)
Saves the current state.
A lane area vehicles can halt at.
std::vector< const MSTransportable * > getTransportables() const
Returns the transportables waiting on this stop.
int getTransportableNumber() const
Returns the number of transportables waiting on this stop.
const MSLane & getLane() const
Returns the lane this stop is located at.
const std::string & getMyName() const
int getRunningNumber() const
Returns the number of build and inserted, but not yet deleted transportables.
int getTeleportCount() const
Returns the number of teleports transportables did.
int getLoadedNumber() const
Returns the number of build transportables.
int getTeleportsWrongDest() const
return the number of teleports of transportables riding to the wrong destination
int getJammedNumber() const
Returns the number of times a transportables was jammed.
int getTeleportsAbortWait() const
return the number of teleports due to excessive waiting for a ride
int getActiveCount()
return the number of active transportable objects
The class responsible for building and deletion of vehicles.
bool hasVType(const std::string &id) const
Asks for existence of a vehicle type.
int getRunningVehicleNo() const
Returns the number of build and inserted, but not yet deleted vehicles.
double getScale() const
sets the demand scaling factor
void setScale(double scale)
sets the demand scaling factor
int getLoadedVehicleNo() const
Returns the number of build vehicles.
int getCollisionCount() const
return the number of collisions
int getTeleportsWrongLane() const
return the number of teleports due to vehicles stuck on the wrong lane
int getTeleportsYield() const
return the number of teleports due to vehicles stuck on a minor road
int getEmergencyBrakingCount() const
return the number of emergency stops
int getEmergencyStops() const
return the number of emergency stops
int getDepartedVehicleNo() const
Returns the number of inserted vehicles.
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.
int getActiveVehicleCount() const
Returns the number of build vehicles that have not been removed or need to wait for a passenger or a ...
int getTeleportsJam() const
return the number of teleports due to jamming
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.
virtual void deleteVehicle(SUMOVehicle *v, bool discard=false, bool wasKept=false)
Deletes the vehicle.
int getTeleportCount() const
return the number of teleports (including collisions)
The car-following model and parameter.
SUMOVehicleClass getVehicleClass() const
Get this vehicle type's vehicle class.
double getMaxSpeed() const
Get vehicle's (technical) maximum speed [m/s].
double getDesiredMaxSpeed() const
Returns the vehicles's desired maximum speed.
const std::string & getID() const
Returns the name of the vehicle type.
const Distribution_Parameterized & getSpeedFactor() const
Returns this type's speed factor.
const SUMOVTypeParameter & getParameter() const
static MSNet * init(const bool isLibsumo=false)
const std::string & getID() const
Returns the id.
Definition Named.h:74
A storage for options typed value containers)
Definition OptionsCont.h:89
double getFloat(const std::string &name) const
Returns the double-value of the named option (only for Option_Float)
void setApplicationName(const std::string &appName, const std::string &fullName)
Sets the application name.
bool exists(const std::string &name) const
Returns the information whether the named option is known.
std::string getValueString(const std::string &name) const
Returns the string-value of the named option (all options)
static OptionsCont & getOptions()
Retrieves the options.
static void setArgs(int argc, char **argv)
Stores the command line arguments for later parsing.
Definition OptionsIO.cpp:58
bool hasParameter(const std::string &key) const
Returns whether the parameter is set.
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.
A point in 2D or 3D with translation and scaling methods.
Definition Position.h:37
double distanceTo(const Position &p2) const
returns the euclidean distance in 3 dimensions
Definition Position.h:263
void setz(double z)
set position z
Definition Position.h:77
A list of positions.
virtual bool compute(const E *from, const E *to, const V *const vehicle, SUMOTime msTime, std::vector< const E * > &into, bool silent=false)=0
Builds the route between the given edges using the minimum effort at the given time The definition of...
virtual double recomputeCosts(const std::vector< const E * > &edges, const V *const v, SUMOTime msTime, double *lengthp=nullptr) const
Representation of a vehicle.
Definition SUMOVehicle.h:62
virtual void setChosenSpeedFactor(const double factor)=0
Structure representing possible vehicle parameter.
std::string id
The vehicle's id.
bool hasNext()
returns the information whether further substrings exist
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 void close()
Closes all of an applications subsystems.
static void init()
Initialises the xml-subsystem.
Definition XMLSubSys.cpp:56
static double getDrivingDistance(std::pair< const MSLane *, double > &roadPos1, std::pair< const MSLane *, double > &roadPos2)
Definition Helper.cpp:466
static TraCIPosition makeTraCIPosition(const Position &position, const bool includeZ=false)
Definition Helper.cpp:387
static void clearStateChanges()
Definition Helper.cpp:730
static void subscribe(const int commandId, const std::string &id, const std::vector< int > &variables, const double beginTime, const double endTime, const libsumo::TraCIResults &params, const int contextDomain=0, const double range=0.)
Definition Helper.cpp:109
static const std::vector< std::string > & getTransportableStateChanges(const MSNet::TransportableState state)
Definition Helper.cpp:724
static void clearSubscriptions()
Definition Helper.cpp:222
static std::pair< MSLane *, double > convertCartesianToRoadMap(const Position &pos, const SUMOVehicleClass vClass)
Definition Helper.cpp:430
static const std::vector< std::string > & getVehicleStateChanges(const MSNet::VehicleState state)
Definition Helper.cpp:718
static void handleSubscriptions(const SUMOTime t)
Definition Helper.cpp:172
static const MSLane * getLaneChecking(const std::string &edgeID, int laneIndex, double pos)
Definition Helper.cpp:413
virtual std::string readString()
Definition storage.cpp:180
virtual int readUnsignedByte()
Definition storage.cpp:155
TRACI_CONST double INVALID_DOUBLE_VALUE
TRACI_CONST int VAR_MIN_EXPECTED_VEHICLES
TRACI_CONST int VAR_STOP_ENDING_VEHICLES_IDS
TRACI_CONST int CMD_SUBSCRIBE_SIM_VARIABLE
TRACI_CONST int VAR_ARRIVED_VEHICLES_NUMBER
TRACI_CONST int VAR_STOP_STARTING_VEHICLES_NUMBER
TRACI_CONST int VAR_SCALE
TRACI_CONST int VAR_DEPARTED_VEHICLES_NUMBER
TRACI_CONST int VAR_COLLIDING_VEHICLES_NUMBER
std::map< std::string, libsumo::SubscriptionResults > ContextSubscriptionResults
Definition TraCIDefs.h:379
TRACI_CONST int VAR_PARKING_ENDING_VEHICLES_IDS
TRACI_CONST int VAR_PARKING_STARTING_VEHICLES_IDS
TRACI_CONST int VAR_DEPARTED_PERSONS_NUMBER
TRACI_CONST int VAR_END
TRACI_CONST int VAR_ARRIVED_PERSONS_IDS
TRACI_CONST int ROUTING_MODE_AGGREGATED
TRACI_CONST int VAR_TIME
TRACI_CONST int VAR_PENDING_VEHICLES
TRACI_CONST int VAR_BUS_STOP_ID_LIST
std::map< std::string, libsumo::TraCIResults > SubscriptionResults
{object->{variable->value}}
Definition TraCIDefs.h:378
TRACI_CONST int TRACI_VERSION
TRACI_CONST int VAR_EMERGENCYSTOPPING_VEHICLES_IDS
TRACI_CONST int VAR_BUS_STOP_WAITING_IDS
TRACI_CONST int VAR_PARAMETER
TRACI_CONST int VAR_DEPARTED_VEHICLES_IDS
TRACI_CONST int VAR_TELEPORT_ENDING_VEHICLES_NUMBER
TRACI_CONST int VAR_PARKING_ENDING_VEHICLES_NUMBER
TRACI_CONST int VAR_LOADED_VEHICLES_IDS
TRACI_CONST int VAR_DELTA_T
TRACI_CONST int STAGE_WALKING
TRACI_CONST int VAR_PARAMETER_WITH_KEY
TRACI_CONST int VAR_DEPARTED_PERSONS_IDS
TRACI_CONST int VAR_ARRIVED_PERSONS_NUMBER
TRACI_CONST int VAR_STOP_STARTING_VEHICLES_IDS
TRACI_CONST int VAR_STOP_ENDING_VEHICLES_NUMBER
TRACI_CONST int VAR_LOADED_VEHICLES_NUMBER
TRACI_CONST int VAR_TELEPORT_ENDING_VEHICLES_IDS
TRACI_CONST int VAR_COLLIDING_VEHICLES_IDS
TRACI_CONST int VAR_TELEPORT_STARTING_VEHICLES_NUMBER
TRACI_CONST int VAR_TELEPORT_STARTING_VEHICLES_IDS
TRACI_CONST int VAR_BUS_STOP_WAITING
TRACI_CONST int VAR_TIME_STEP
TRACI_CONST int VAR_ARRIVED_VEHICLES_IDS
TRACI_CONST int STAGE_DRIVING
TRACI_CONST int VAR_PARKING_STARTING_VEHICLES_NUMBER
TRACI_CONST int VAR_EMERGENCYSTOPPING_VEHICLES_NUMBER
std::map< int, std::shared_ptr< libsumo::TraCIResult > > TraCIResults
{variable->value}
Definition TraCIDefs.h:376
TRACI_CONST int VAR_OPTION
collision tracking
Definition MSNet.h:114
std::string lane
The lane where the collision happended.
Definition TraCIDefs.h:838
std::string type
The type of collision.
Definition TraCIDefs.h:836
std::string collider
The ids of the participating vehicles and persons.
Definition TraCIDefs.h:829
double pos
The position of the collision along the lane.
Definition TraCIDefs.h:840
std::string colliderType
Definition TraCIDefs.h:831