58std::vector<std::string>
59TrafficLight::getIDList() {
65TrafficLight::getIDCount() {
66 return (
int)getIDList().size();
71TrafficLight::getRedYellowGreenState(
const std::string& tlsID) {
76std::vector<TraCILogic>
77TrafficLight::getAllProgramLogics(
const std::string& tlsID) {
78 std::vector<TraCILogic> result;
81 TraCILogic l(logic->getProgramID(), (
int)logic->getLogicType(), logic->getCurrentPhaseIndex());
82 l.subParameter = logic->getParametersMap();
84 l.phases.emplace_back(
new TraCIPhase(
STEPS2TIME(phase->duration), phase->getState(),
86 phase->getNextPhases(), phase->getName()));
88 result.emplace_back(l);
94std::vector<std::string>
95TrafficLight::getControlledJunctions(
const std::string& tlsID) {
96 std::set<std::string> junctionIDs;
99 for (
const MSLink* l : llinks) {
100 junctionIDs.insert(l->getJunction()->getID());
103 return std::vector<std::string>(junctionIDs.begin(), junctionIDs.end());
107std::vector<std::string>
108TrafficLight::getControlledLanes(
const std::string& tlsID) {
109 std::vector<std::string> laneIDs;
112 for (
const MSLane* l : llanes) {
113 laneIDs.push_back(l->getID());
120std::vector<std::vector<TraCILink> >
121TrafficLight::getControlledLinks(
const std::string& tlsID) {
122 std::vector<std::vector<TraCILink> > result;
125 for (
int i = 0; i < (int)lanes.size(); ++i) {
126 std::vector<TraCILink> subList;
130 for (
int j = 0; j < (int)llanes.size(); ++j) {
136 subList.emplace_back(TraCILink(llanes[j]->getID(), via, to));
138 result.emplace_back(subList);
145TrafficLight::getProgram(
const std::string& tlsID) {
151TrafficLight::getPhase(
const std::string& tlsID) {
157TrafficLight::getPhaseName(
const std::string& tlsID) {
163TrafficLight::getPhaseDuration(
const std::string& tlsID) {
169TrafficLight::getNextSwitch(
const std::string& tlsID) {
175TrafficLight::getSpentDuration(
const std::string& tlsID) {
180TrafficLight::getServedPersonCount(
const std::string& tlsID,
int index) {
182 if (index < 0 || active->getPhaseNumber() <= index) {
183 throw TraCIException(
"The phase index " +
toString(index) +
" is not in the allowed range [0,"
189 const std::string& state = active->
getPhases()[index]->getState();
190 for (
int i = 0; i < (int)state.size(); i++) {
193 if (link->getLane()->getEdge().isCrossing()) {
195 for (
MSTransportable* person : link->getLaneBefore()->getEdge().getPersons()) {
207 }
else if (link->getLaneBefore()->getEdge().isCrossing()) {
209 for (
MSTransportable* person : link->getLane()->getEdge().getPersons()) {
210 if (
static_cast<MSPerson*
>(person)->
getNextEdge() == link->getLaneBefore()->getEdge().getID()) {
221std::vector<std::string>
222TrafficLight::getBlockingVehicles(
const std::string& tlsID,
int linkIndex) {
223 std::vector<std::string> result;
226 if (linkIndex < 0 || linkIndex >= active->
getNumLinks()) {
227 throw TraCIException(
"The link index " +
toString(linkIndex) +
" is not in the allowed range [0,"
231 result.push_back(veh->getID());
236std::vector<std::string>
237TrafficLight::getRivalVehicles(
const std::string& tlsID,
int linkIndex) {
238 std::vector<std::string> result;
240 if (linkIndex < 0 || linkIndex >= active->
getNumLinks()) {
241 throw TraCIException(
"The link index " +
toString(linkIndex) +
" is not in the allowed range [0,"
245 result.push_back(veh->getID());
250std::vector<std::string>
251TrafficLight::getPriorityVehicles(
const std::string& tlsID,
int linkIndex) {
252 std::vector<std::string> result;
254 if (linkIndex < 0 || linkIndex >= active->
getNumLinks()) {
255 throw TraCIException(
"The link index " +
toString(linkIndex) +
" is not in the allowed range [0,"
259 result.push_back(veh->getID());
264std::vector<TraCISignalConstraint>
265TrafficLight::getConstraints(
const std::string& tlsID,
const std::string& tripId) {
266 std::vector<TraCISignalConstraint> result;
270 throw TraCIException(
"'" + tlsID +
"' is not a rail signal");
273 if (tripId !=
"" && tripId != item.first) {
277 result.push_back(buildConstraint(tlsID, item.first, c));
283std::vector<TraCISignalConstraint>
284TrafficLight::getConstraintsByFoe(
const std::string& foeSignal,
const std::string& foeId) {
287 std::vector<TraCISignalConstraint> result;
288 for (
const std::string& tlsID : getIDList()) {
296 && (foeId ==
"" || pc->
myTripId == foeId)) {
297 result.push_back(buildConstraint(s->
getID(), item.first, pc));
308TrafficLight::addConstraint(
const std::string& tlsID,
const std::string& tripId,
const std::string& foeSignal,
const std::string& foeId,
const int type,
const int limit) {
314 throw TraCIException(
"'" + tlsID +
"' is not a rail signal");
317 throw TraCIException(
"'" + foeSignal +
"' is not a rail signal");
324std::vector<TraCISignalConstraint>
325TrafficLight::swapConstraints(
const std::string& tlsID,
const std::string& tripId,
const std::string& foeSignal,
const std::string& foeId) {
326#ifdef DEBUG_CONSTRAINT_DEADLOCK
327 std::cout <<
"swapConstraints tlsId=" << tlsID <<
" tripId=" << tripId <<
" foeSignal=" << foeSignal <<
" foeId=" << foeId <<
"\n";
334 throw TraCIException(
"'" + tlsID +
"' is not a rail signal");
337 throw TraCIException(
"'" + foeSignal +
"' is not a rail signal");
341 if (tripId == item.first) {
358 swapParameters(swapped);
361 return findConstraintsDeadLocks(foeId, tripId, foeSignal, tlsID);
363 throw TraCIException(
"Rail signal '" + tlsID +
"' does not have a constraint for tripId '" + tripId +
"' with foeSignal '" + foeSignal +
"' and foeId '" + foeId +
"'");
368std::vector<std::pair<std::string, std::string> >
369TrafficLight::getSwapParams(
int constraintType) {
370 std::vector<std::pair<std::string, std::string> > result({
373 {
"arrival",
"foeArrival"}});
376 std::vector<std::pair<std::string, std::string> > special({
377 {
"busStop",
"busStop2"},
378 {
"priorStop",
"priorStop2"},
379 {
"stopArrival",
"foeStopArrival"}});
380 result.insert(result.end(), special.begin(), special.end());
389 for (
auto keys : getSwapParams(c->
getType())) {
390 swapParameters(c, keys.first, keys.second);
411TrafficLight::swapParameters(TraCISignalConstraint& c) {
413 for (
auto keys : getSwapParams(c.type)) {
414 swapParameters(c, keys.first, keys.second);
419TrafficLight::swapParameters(TraCISignalConstraint& c,
const std::string& key1,
const std::string& key2) {
420 auto it1 = c.param.find(key1);
421 auto it2 = c.param.find(key2);
422 const std::string value1 = it1 != c.param.end() ? it1->second :
"";
423 const std::string value2 = it2 != c.param.end() ? it2->second :
"";
425 c.param[key2] = value1;
430 c.param[key1] = value2;
438TrafficLight::removeConstraints(
const std::string& tlsID,
const std::string& tripId,
const std::string& foeSignal,
const std::string& foeId) {
441 for (
const std::string& tlsCand : getIDList()) {
442 if (tlsID ==
"" || tlsCand == tlsID) {
447 if (tripId ==
"" || item.first == tripId) {
451 && (foeId ==
"" || pc->
myTripId == foeId)
465TrafficLight::updateConstraints(
const std::string& vehID, std::string tripId) {
472 tripId = tripId ==
"" ? curTripId : tripId;
475 std::map<const MSRailSignal*, std::set<std::string> > onRoute;
479 for (
auto it = routeIt; it < stop.edge; it++) {
482 if (it + 1 != route.end()) {
483 const MSEdge* next = *(it + 1);
485 if (link !=
nullptr && link->
getTLLogic() !=
nullptr) {
487 onRoute[s].insert(curTripId);
492 if (stop.pars.tripId !=
"") {
493 curTripId = stop.pars.tripId;
497 for (
auto it = routeIt; it < route.end(); it++) {
500 if (it + 1 != route.end()) {
501 const MSEdge* next = *(it + 1);
503 if (link !=
nullptr && link->
getTLLogic() !=
nullptr) {
505 onRoute[s].insert(curTripId);
518 std::vector<MSRailSignalConstraint*> onVeh;
519 std::vector<std::pair<std::string, MSRailSignalConstraint*> > byVeh;
521 for (
auto item : s->getConstraints()) {
525 if (item.first == tripId) {
526 if (onRoute[s].count(tripId) == 0) {
528 onVeh.push_back(cand);
530 }
else if (pc->
myTripId == tripId) {
533 byVeh.push_back(std::make_pair(item.first, cand));
540 s->removeConstraint(tripId, c);
542 for (
auto item : byVeh) {
543 s->removeConstraint(item.first, item.second);
549std::vector<TraCISignalConstraint>
550TrafficLight::findConstraintsDeadLocks(
const std::string& foeId,
const std::string& tripId,
const std::string& foeSignal,
const std::string& tlsID) {
551 std::vector<TraCISignalConstraint> result;
557 std::map<std::string, TraCISignalConstraint> constraintsOnTripId;
558 std::map<std::string, TraCISignalConstraint> constrainedByFoeId;
559 std::set<std::string> foeId2Cands1;
560 std::set<std::string> foeId2Cands2;
562 for (
auto item : s->getConstraints()) {
566 if (item.first == tripId) {
570 constraintsOnTripId[pc->
myTripId] = tsc;
572 for (std::string& futureFoe2Id : getFutureTripIds(pc->
myTripId)) {
573 foeId2Cands1.insert(futureFoe2Id);
575 constraintsOnTripId[futureFoe2Id] = tsc;
580 constrainedByFoeId[item.first] = tsc;
581 foeId2Cands2.insert(item.first);
582 for (std::string& futureTripId : getFutureTripIds(item.first)) {
583 foeId2Cands2.insert(futureTripId);
585 constrainedByFoeId[futureTripId] = tsc;
592#ifdef DEBUG_CONSTRAINT_DEADLOCK
593 std::cout <<
"findConstraintsDeadLocks foeId=" << foeId <<
" tripId=" << tripId <<
" foeSignal=" << foeSignal <<
" tlsID=" << tlsID <<
"\n";
594 std::cout <<
" foeId2Cands1=" <<
toString(foeId2Cands1) <<
"\n";
595 std::cout <<
" foeId2Cands2=" <<
toString(foeId2Cands2) <<
"\n";
597 if (foeId2Cands1.size() > 0) {
605 if (foe !=
nullptr) {
608 for (
const std::string& foeId2 : foeId2Cands1) {
611 if (foe2 !=
nullptr) {
613 const TraCISignalConstraint& c = constraintsOnTripId[foeId2];
614 bool foeAhead =
false;
616 const MSEdge* e = foe2Route[i];
625#ifdef DEBUG_CONSTRAINT_DEADLOCK
626 std::cout <<
"findConstraintsDeadLocks foeId=" << foeId <<
" tripId=" << tripId <<
" foeSignal=" << foeSignal <<
"\n";
630 <<
" " << constraintsOnTripId[foeId2].getString() <<
"\n";
641 TraCISignalConstraint nc;
644 nc.signalId = c.foeSignal;
645 nc.foeSignal = c.signalId;
652 result.push_back(nc);
654 std::vector<TraCISignalConstraint> result2 = swapConstraints(c.signalId, c.tripId, c.foeSignal, c.foeId);
655 result.insert(result.end(), result2.begin(), result2.end());
658 const std::vector<TraCISignalConstraint>& result4 = findConstraintsDeadLocks(foeId, tripId, foeSignal, tlsID);
659 result.insert(result.end(), result4.begin(), result4.end());
667 if (foeId2Cands2.size() > 0) {
674 std::set<const MSEdge*> egoToSignal;
678 const MSEdge* e = egoRoute[i];
679 egoToSignal.insert(e);
685 for (
const std::string& foeId2 : foeId2Cands2) {
689 if (foe2 !=
nullptr) {
690 if (egoToSignal.count(foe2->
getEdge()) != 0
692 const TraCISignalConstraint& c = constrainedByFoeId[foeId2];
693#ifdef DEBUG_CONSTRAINT_DEADLOCK
694 std::cout <<
"findConstraintsDeadLocks foeId=" << foeId <<
" tripId=" << tripId <<
" foeSignal=" << foeSignal <<
"\n";
696 <<
" " << c.getString() <<
"\n";
699 TraCISignalConstraint nc;
702 nc.signalId = c.foeSignal;
703 nc.foeSignal = c.signalId;
710 result.push_back(nc);
712 std::vector<TraCISignalConstraint> result2 = swapConstraints(c.signalId, c.tripId, c.foeSignal, c.foeId);
713 result.insert(result.end(), result2.begin(), result2.end());
716 const std::vector<TraCISignalConstraint>& result4 = findConstraintsDeadLocks(foeId, tripId, foeSignal, tlsID);
717 result.insert(result.end(), result4.begin(), result4.end());
722 }
else if (ego !=
nullptr) {
723 WRITE_WARNINGF(
TL(
"Cannot check for all deadlocks on swapConstraints because the route for vehicle '%' is not computed yet"), ego->
getID());
728 std::vector<std::string> foeIds2;
729 std::set_intersection(
730 foeId2Cands1.begin(), foeId2Cands1.end(),
731 foeId2Cands2.begin(), foeId2Cands2.end(),
732 std::back_inserter(foeIds2));
733#ifdef DEBUG_CONSTRAINT_DEADLOCK
734 std::cout <<
"findConstraintsDeadLocks foeId=" << foeId <<
" tripId=" << tripId <<
" foeSignal=" << foeSignal <<
"\n";
735 for (
const std::string& foeId2 : foeIds2) {
736 std::cout <<
" deadlockId=" << foeId2 <<
" " << constraintsOnTripId[foeId2].getString() <<
" " << constrainedByFoeId[foeId2].getString() <<
"\n";
739 if (foeIds2.size() > 0) {
740 TraCISignalConstraint c = constrainedByFoeId[foeIds2.front()];
743 c = constraintsOnTripId[foeIds2.front()];
745 TraCISignalConstraint nc;
748 nc.signalId = c.foeSignal;
749 nc.foeSignal = c.signalId;
756 result.push_back(nc);
758 const std::vector<TraCISignalConstraint>& result2 = swapConstraints(c.signalId, c.tripId, c.foeSignal, c.foeId);
759 result.insert(result.end(), result2.begin(), result2.end());
760 if (foeIds2.size() > 1) {
762 const std::vector<TraCISignalConstraint>& result3 = findConstraintsDeadLocks(foeId, tripId, foeSignal, tlsID);
763 result.insert(result.end(), result3.begin(), result3.end());
771TrafficLight::getVehicleByTripId(
const std::string tripOrVehID) {
783std::vector<std::string>
784TrafficLight::getFutureTripIds(
const std::string vehID) {
785 std::vector<std::string> result;
790 result.push_back(tripId);
793 if (stop.pars.tripId !=
"") {
794 result.push_back(stop.pars.tripId);
803TrafficLight::getParameter(
const std::string& tlsID,
const std::string& paramName) {
806 throw TraCIException(
"'" + tlsID +
"' is not a NEMA controller");
816TrafficLight::setRedYellowGreenState(
const std::string& tlsID,
const std::string& state) {
822TrafficLight::setPhase(
const std::string& tlsID,
const int index) {
824 if (index < 0 || active->getPhaseNumber() <= index) {
825 throw TraCIException(
"The phase index " +
toString(index) +
" is not in the allowed range [0,"
834TrafficLight::setPhaseName(
const std::string& tlsID,
const std::string& name) {
841TrafficLight::setProgram(
const std::string& tlsID,
const std::string& programID) {
845 throw TraCIException(e.what());
851TrafficLight::setPhaseDuration(
const std::string& tlsID,
const double phaseDuration) {
859TrafficLight::setProgramLogic(
const std::string& tlsID,
const TraCILogic& logic) {
862 if (logic.currentPhaseIndex >= (
int)logic.phases.size()) {
863 throw TraCIException(
"set program: parameter index must be less than parameter phase number.");
865 std::vector<MSPhaseDefinition*> phases;
866 for (
const std::shared_ptr<libsumo::TraCIPhase>& phase : logic.phases) {
871 phases.push_back(sumoPhase);
873 if (vars.
getLogic(logic.programID) ==
nullptr) {
875 int step = logic.currentPhaseIndex;
876 const std::string basePath =
"";
882 tlsID, logic.programID, 0,
883 phases, step, nextSwitch,
884 logic.subParameter, basePath);
888 tlsID, logic.programID, 0,
889 phases, step, nextSwitch,
890 logic.subParameter, basePath);
894 tlsID, logic.programID, 0,
895 phases, step, nextSwitch,
896 logic.subParameter, basePath);
901 phases, step, nextSwitch,
905 throw TraCIException(
"Unsupported traffic light type '" +
toString(logic.type) +
"'");
908 if (!vars.
addLogic(logic.programID, tlLogic,
true,
true)) {
909 throw TraCIException(
"Could not add traffic light logic '" + logic.programID +
"'");
912 throw TraCIException(e.what());
920 tlLogic->
setPhases(phases, logic.currentPhaseIndex);
928TrafficLight::setParameter(
const std::string& tlsID,
const std::string& paramName,
const std::string& value) {
931 throw TraCIException(
"'" + tlsID +
"' is not a NEMA controller");
939TrafficLight::setNemaSplits(
const std::string& tlsID,
const std::vector<double>& splits) {
940 setParameter(tlsID,
"NEMA.splits",
toString(splits));
944TrafficLight::setNemaMaxGreens(
const std::string& tlsID,
const std::vector<double>& maxGreens) {
945 setParameter(tlsID,
"NEMA.maxGreens",
toString(maxGreens));
949TrafficLight::setNemaCycleLength(
const std::string& tlsID,
double cycleLength) {
950 setParameter(tlsID,
"NEMA.cycleLength",
toString(cycleLength));
954TrafficLight::setNemaOffset(
const std::string& tlsID,
double offset) {
955 setParameter(tlsID,
"NEMA.offset",
toString(offset));
961 TraCISignalConstraint c;
981std::shared_ptr<VariableWrapper>
982TrafficLight::makeWrapper() {
983 return std::make_shared<Helper::SubscriptionWrapper>(handleVariable, mySubscriptionResults, myContextSubscriptionResults);
988TrafficLight::handleVariable(
const std::string& objID,
const int variable, VariableWrapper* wrapper,
tcpip::Storage* paramData) {
991 return wrapper->wrapStringList(objID, variable, getIDList());
993 return wrapper->wrapInt(objID, variable, getIDCount());
995 return wrapper->wrapString(objID, variable, getRedYellowGreenState(objID));
997 return wrapper->wrapStringList(objID, variable, getControlledLanes(objID));
999 return wrapper->wrapInt(objID, variable, getPhase(objID));
1001 return wrapper->wrapString(objID, variable, getPhaseName(objID));
1003 return wrapper->wrapString(objID, variable, getProgram(objID));
1005 return wrapper->wrapDouble(objID, variable, getPhaseDuration(objID));
1007 return wrapper->wrapDouble(objID, variable, getNextSwitch(objID));
1009 return wrapper->wrapDouble(objID, variable, getSpentDuration(objID));
1011 return wrapper->wrapStringList(objID, variable, getControlledJunctions(objID));
1014 return wrapper->wrapString(objID, variable, getParameter(objID, paramData->
readString()));
1017 return wrapper->wrapStringPair(objID, variable, getParameterWithKey(objID, paramData->
readString()));
std::vector< const MSEdge * > ConstMSEdgeVector
#define WRITE_WARNINGF(...)
const long long int VEHPARS_FORCE_REROUTE
@ LINKSTATE_TL_GREEN_MAJOR
The link has green light, may pass.
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
#define LIBSUMO_SUBSCRIPTION_IMPLEMENTATION(CLASS, DOM)
#define LIBSUMO_GET_PARAMETER_WITH_KEY_IMPLEMENTATION(CLASS)
An actuated (adaptive) traffic light logic.
The base class for microscopic and mesoscopic vehicles.
const SUMOVehicleParameter & getParameter() const
Returns the vehicle's parameter (including departure definition)
const MSRouteIterator & getCurrentRouteEdge() const
Returns an iterator pointing to the current edge in this vehicles route.
const std::list< MSStop > & getStops() const
const MSRoute & getRoute() const
Returns the current route.
An actuated traffic light logic based on time delay of approaching vehicles.
A road/street connecting two junctions.
const std::set< MSTransportable *, ComparatorNumericalIdLess > & getPersons() const
Returns this edge's persons set.
const std::vector< MSLane * > & getLanes() const
Returns this edge's lanes.
const MSJunction * getToJunction() const
SumoXMLNodeType getType() const
return the type of this Junction
Representation of a lane in the micro simulation.
MSEdge & getEdge() const
Returns the lane's edge.
const std::vector< MSLink * > & getLinkCont() const
returns the container with all links !!!
MSLane * getLane() const
Returns the connected lane.
MSLane * getViaLane() const
Returns the following inner lane.
const MSTrafficLightLogic * getTLLogic() const
Returns the TLS index.
static MSNet * getInstance()
Returns the pointer to the unique instance of MSNet (singleton).
MSTLLogicControl & getTLSControl()
Returns the tls logics control.
SUMOTime getCurrentTimeStep() const
Returns the current simulation step.
virtual void createTLWrapper(MSTrafficLightLogic *)
creates a wrapper for the given logic (see GUINet)
MSVehicleControl & getVehicleControl()
Returns the vehicle control.
const std::string & getNextEdge() const
return the list of internal edges if this person is walking and the pedestrian model allows it
The definition of a single phase of a tls logic.
SUMOTime maxDuration
The maximum duration of the phase.
SUMOTime minDuration
The minimum duration of the phase.
const std::string & getName() const
const std::string & getState() const
Returns the state within this phase.
SUMOTime duration
The duration of the phase.
std::vector< int > nextPhases
The index of the phase that suceeds this one (or -1)
const MSRailSignal * myFoeSignal
store the foe signal (for TraCI access)
bool cleared() const
whether the constraint has been met
const std::string myTripId
id of the predecessor that must already have passed
void setActive(bool active)
const int myLimit
the number of passed vehicles within which tripId must have occured
A base class for constraints.
ConstraintType getType() const
ConstraintType getSwappedType() const
static MSRailSignalControl & getInstance()
const std::vector< MSRailSignal * > & getSignals() const
void addConstraint(const std::string &tripId, MSRailSignalConstraint *constraint)
register constraint for signal switching
const std::map< std::string, std::vector< MSRailSignalConstraint * > > & getConstraints() const
bool removeConstraint(const std::string &tripId, MSRailSignalConstraint *constraint)
remove constraint for signal switching
const ConstMSEdgeVector & getEdges() const
A fixed traffic light logic.
void setPhases(const Phases &phases, int index)
Replaces the phases and set the phase index.
Storage for all programs of a single tls.
void switchTo(MSTLLogicControl &tlc, const std::string &programID)
void setStateInstantiatingOnline(MSTLLogicControl &tlc, const std::string &state)
std::vector< MSTrafficLightLogic * > getAllLogics() const
MSTrafficLightLogic * getLogic(const std::string &programID) const
void executeOnSwitchActions() const
bool addLogic(const std::string &programID, MSTrafficLightLogic *logic, bool netWasLoaded, bool isNewDefault=true)
Adds a logic (program). In case of an error the logic gets deleted.
MSTrafficLightLogic * getActive() const
MSTrafficLightLogic * getDefault() const
return the default program (that last used program except TRACI_PROGRAM)
A class that stores and controls tls and switching of their programs.
std::vector< std::string > getAllTLIds() const
The parent class for traffic light logics.
const LinkVectorVector & getLinks() const
Returns the list of lists of all affected links.
std::vector< LaneVector > LaneVectorVector
Definition of a list that holds lists of lanes that do have the same attribute.
virtual const MSPhaseDefinition & getCurrentPhaseDef() const =0
Returns the definition of the current phase.
virtual int getPhaseNumber() const =0
Returns the number of phases.
virtual int getCurrentPhaseIndex() const =0
Returns the current index within the program.
std::vector< MSLane * > LaneVector
Definition of the list of arrival lanes subjected to this tls.
virtual VehicleVector getPriorityVehicles(int linkIndex)
return vehicles that approach the intersection/rail signal and have priority over vehicles that wish ...
virtual void changeStepAndDuration(MSTLLogicControl &tlcontrol, SUMOTime simStep, int step, SUMOTime stepDuration)=0
Changes the current phase and her duration.
virtual VehicleVector getBlockingVehicles(int linkIndex)
return vehicles that block the intersection/rail signal for vehicles that wish to pass the given link...
virtual const MSPhaseDefinition & getPhase(int givenstep) const =0
Returns the definition of the phase from the given position within the plan.
virtual VehicleVector getRivalVehicles(int linkIndex)
return vehicles that approach the intersection/rail signal and are in conflict with vehicles that wis...
const std::string & getProgramID() const
Returns this tl-logic's id.
TrafficLightType getLogicType() const
Returns the type of the logic.
int getNumLinks() const
return the number of controlled link indices
virtual const Phases & getPhases() const =0
Returns the phases of this tls program.
const LaneVectorVector & getLaneVectors() const
Returns the list of lists of all lanes controlled by this tls.
bool setTrafficLightSignals(SUMOTime t) const
Applies the current signal states to controlled links.
const LinkVector & getLinksAt(int i) const
Returns the list of links that are controlled by the signals at the given position.
std::vector< LinkVector > LinkVectorVector
Definition of a list that holds lists of links that do have the same attribute.
std::vector< MSLink * > LinkVector
Definition of the list of links that are subjected to this tls.
virtual void init(NLDetectorBuilder &nb)
Initialises the tls with information about incoming lanes.
The class responsible for building and deletion of vehicles.
SUMOVehicle * getVehicle(const std::string &id) const
Returns the vehicle with the given id.
std::map< std::string, SUMOVehicle * >::const_iterator constVehIt
Definition of the internal vehicles map iterator.
constVehIt loadedVehBegin() const
Returns the begin of the internal vehicle map.
constVehIt loadedVehEnd() const
Returns the end of the internal vehicle map.
A NEMA (adaptive) traffic light logic based on E2Detector.
Builds detectors for microsim.
const std::string & getID() const
Returns the id.
void unsetParameter(const std::string &key)
Removes a parameter.
virtual const std::string getParameter(const std::string &key, const std::string defaultValue="") const
Returns the value for a given key.
const Parameterised::Map & getParametersMap() const
Returns the inner key/value map.
virtual void setParameter(const std::string &key, const std::string &value)
Sets a parameter.
void updateParameters(const Parameterised::Map &mapArg)
Adds or updates all given parameters from the map.
virtual NumericalID getNumericalID() const =0
return the numerical ID which is only for internal usage
virtual const SUMOVehicleParameter & getParameter() const =0
Returns the vehicle's parameter (including departure definition)
virtual int getRoutePosition() const =0
return index of edge within route
virtual const MSEdge * getEdge() const =0
Returns the edge the object is currently at.
virtual double getPositionOnLane() const =0
Get the object's position along the lane.
Representation of a vehicle.
virtual bool hasDeparted() const =0
Returns whether this vehicle has departed.
virtual const MSRoute & getRoute() const =0
Returns the current route.
bool wasSet(long long int what) const
Returns whether the given parameter was set.
static bool startsWith(const std::string &str, const std::string prefix)
Checks whether a given string starts with the prefix.
C++ TraCI client API implementation.
static MSBaseVehicle * getVehicle(const std::string &id)
static MSTLLogicControl::TLSLogicVariants & getTLS(const std::string &id)
virtual std::string readString()
virtual int readUnsignedByte()
TRACI_CONST int TRACI_ID_LIST
std::map< std::string, libsumo::SubscriptionResults > ContextSubscriptionResults
TRACI_CONST int TL_CONTROLLED_LANES
TRACI_CONST int TL_SPENT_DURATION
TRACI_CONST int TL_CONTROLLED_JUNCTIONS
std::map< std::string, libsumo::TraCIResults > SubscriptionResults
{object->{variable->value}}
TRACI_CONST int VAR_PARAMETER
TRACI_CONST int TL_NEXT_SWITCH
TRACI_CONST int VAR_PARAMETER_WITH_KEY
TRACI_CONST int TL_PHASE_DURATION
TRACI_CONST int TL_CURRENT_PHASE
TRACI_CONST int TL_RED_YELLOW_GREEN_STATE
TRACI_CONST int TL_CURRENT_PROGRAM
std::string tripId
the tripId or vehicle id of the train that is constrained