SUMO - Simulation of Urban MObility
|
An agentbased traffic light logic. More...
#include <MSAgentbasedTrafficLightLogic.h>
Public Types | |
typedef std::map< MSLane *, MS_E2_ZS_CollectorOverLanes * > | E2DetectorMap |
Definition of a map from lanes to lane state detectors lying on them. | |
typedef std::map< unsigned int, SUMOReal > | MeanDataMap |
Definition of a map which stores the mean data of several (numberOfValues) cycles. | |
typedef std::map< unsigned int, ValueType > | PhaseValueMap |
Definition of a map which stores the step of the greenphases and their detector values. | |
typedef std::deque< SUMOReal > | ValueType |
Definition of a map which stores the detector values of one single phase. | |
Structure definitions | |
typedef std::vector < MSPhaseDefinition * > | Phases |
Definition of a list of phases, being the junction logic. | |
typedef std::vector< MSLink * > | LinkVector |
Definition of the list of links that participate in this tl-light. | |
typedef std::vector< LinkVector > | LinkVectorVector |
Definition of a list that holds lists of links that do have the same attribute. | |
typedef std::vector< MSLane * > | LaneVector |
Definition of the list of links that participate in this tl-light. | |
typedef std::vector< LaneVector > | LaneVectorVector |
Definition of a list that holds lists of links that do have the same attribute. |
Public Member Functions | |
void | init (NLDetectorBuilder &nb) |
Initialises the tls with information about incoming lanes. | |
MSAgentbasedTrafficLightLogic (MSTLLogicControl &tlcontrol, const std::string &id, const std::string &programID, const MSSimpleTrafficLightLogic::Phases &phases, unsigned int step, SUMOTime delay, const std::map< std::string, std::string > ¶meter) | |
Constructor. | |
~MSAgentbasedTrafficLightLogic () | |
Destructor. | |
Switching and setting current rows | |
SUMOTime | trySwitch (bool isActive) |
Switches to the next phase. | |
Static Information Retrieval | |
unsigned int | getPhaseNumber () const |
Returns the number of phases. | |
const Phases & | getPhases () const |
Returns the phases of this tls program. | |
Phases & | getPhases () |
Returns the phases of this tls program. | |
const MSPhaseDefinition & | getPhase (unsigned int givenstep) const |
Returns the definition of the phase from the given position within the plan. | |
Dynamic Information Retrieval | |
unsigned int | getCurrentPhaseIndex () const |
Returns the current index within the program. | |
const MSPhaseDefinition & | getCurrentPhaseDef () const |
Returns the definition of the current phase. | |
Conversion between time and phase | |
SUMOTime | getPhaseIndexAtTime (SUMOTime simStep) const |
Returns the index of the logic at the given simulation step. | |
SUMOTime | getOffsetFromIndex (unsigned int index) const |
Returns the position (start of a phase during a cycle) from of a given step. | |
unsigned int | getIndexFromOffset (SUMOTime offset) const |
Returns the step (the phasenumber) of a given position of the cycle. | |
Changing phases and phase durations | |
void | changeStepAndDuration (MSTLLogicControl &tlcontrol, SUMOTime simStep, unsigned int step, SUMOTime stepDuration) |
Changes the current phase and her duration. | |
void | setPhases (const Phases &phases, unsigned int index) |
Replaces the phases and set the phase index. | |
Handling of controlled links | |
void | addLink (MSLink *link, MSLane *lane, unsigned int pos) |
Adds a link on building. | |
virtual void | adaptLinkInformationFrom (const MSTrafficLightLogic &logic) |
Applies information about controlled links and lanes from the given logic. | |
std::map< MSLink *, LinkState > | collectLinkStates () const |
Returns the (uncontrolled) states of the controlled links. | |
void | resetLinkStates (const std::map< MSLink *, LinkState > &vals) const |
Resets the states of controlled links. | |
Switching and setting current rows | |
bool | setTrafficLightSignals (SUMOTime t) const |
Applies the current signal states to controlled links. | |
Static Information Retrieval | |
const std::string & | getID () const |
Returns this tl-logic's id. | |
const std::string & | getProgramID () const |
Returns this tl-logic's id. | |
const LaneVectorVector & | getLanes () const |
Returns the list of lists of all lanes controlled by this tls. | |
const LaneVector & | getLanesAt (unsigned int i) const |
Returns the list of lanes that are controlled by the signals at the given position. | |
const LinkVectorVector & | getLinks () const |
Returns the list of lists of all affected links. | |
const LinkVector & | getLinksAt (unsigned int i) const |
Returns the list of links that are controlled by the signals at the given position. | |
int | getLinkIndex (const MSLink *const link) const |
Returns the index of the given link. | |
Dynamic Information Retrieval | |
SUMOTime | getDefaultCycleTime () const |
Returns the cycle time (in ms) | |
SUMOTime | getNextSwitchTime () const |
Returns the assumed next switch time. | |
Changing phases and phase durations | |
void | addOverridingDuration (SUMOTime duration) |
Changes the duration of the next phase. | |
void | setCurrentDurationIncrement (SUMOTime delay) |
Delays current phase by the given delay. | |
Algorithm parameter handling | |
void | setParameter (const std::map< std::string, std::string > ¶ms) |
Inserts read parameter. | |
std::string | getParameterValue (const std::string &key) const |
Returns a named parameter. |
Protected Member Functions | |
"agentbased" algorithm methods | |
unsigned int | nextStep () |
Returns the index of the phase next to the given phase. | |
void | collectData () |
Collects the traffic data. | |
void | aggregateRawData () |
Aggregates the data of one phase, collected during different cycles. | |
void | calculateDuration () |
Calculates the duration for all real phases except intergreen phases. | |
void | lengthenCycleTime (unsigned int toLenghten) |
lenghtens the actual cycle by an given value | |
void | cutCycleTime (unsigned int toCut) |
cuts the actual cycle by an given value | |
unsigned int | findStepOfMaxValue () const |
Returns the step of the phase with the longest Queue_Lengt_Ahead_Of_Traffic_Lights. | |
unsigned int | findStepOfMinValue () const |
Returns the step of the phase with the shortest Queue_Lengt_Ahead_Of_Traffic_Lights. |
Protected Attributes | |
SUMOReal | deltaLimit |
SUMOTime | myCurrentDurationIncrement |
A value for enlarge the current duration. | |
SUMOTime | myDefaultCycleTime |
The cycle time (without changes) | |
E2DetectorMap | myE2Detectors |
A map from lanes to E2 detectors lying on them. | |
std::string | myID |
The id of the logic. | |
LaneVectorVector | myLanes |
The list of links which do participate in this traffic light. | |
LinkVectorVector | myLinks |
The list of links which do participate in this traffic light. | |
MeanDataMap | myMeanDetectorData |
A map of the step of the greenphases and their aggregated detectordata. | |
std::vector< SUMOTime > | myOverridingTimes |
A list of duration overrides. | |
std::map< std::string, std::string > | myParameter |
Given parameter. | |
Phases | myPhases |
The list of phases this logic uses. | |
std::string | myProgramID |
PhaseValueMap | myRawDetectorData |
A map of the step of the greenphases and their detectorvalues for several (mumberofValues) cycles. | |
unsigned int | myStep |
The current step. | |
SwitchCommand * | mySwitchCommand |
The current switch command. | |
unsigned int | numberOfValues |
The number of detector values whivh is considered to make a decision. | |
unsigned int | stepOfLastDecision |
Stores the step of the phase, when the last decision was made. | |
unsigned int | tCycle |
The cycletime of the trafficlight. | |
unsigned int | tDecide |
the interval in which the traffic light can make a decision | |
unsigned int | tSinceLastDecision |
The number of cycles, before the last decision was made. |
An agentbased traffic light logic.
Definition at line 60 of file MSAgentbasedTrafficLightLogic.h.
typedef std::map<MSLane*, MS_E2_ZS_CollectorOverLanes*> MSAgentbasedTrafficLightLogic::E2DetectorMap |
Definition of a map from lanes to lane state detectors lying on them.
Definition at line 64 of file MSAgentbasedTrafficLightLogic.h.
|
inherited |
Definition of the list of links that participate in this tl-light.
Definition at line 77 of file MSTrafficLightLogic.h.
|
inherited |
Definition of a list that holds lists of links that do have the same attribute.
Definition at line 80 of file MSTrafficLightLogic.h.
|
inherited |
Definition of the list of links that participate in this tl-light.
Definition at line 71 of file MSTrafficLightLogic.h.
|
inherited |
Definition of a list that holds lists of links that do have the same attribute.
Definition at line 74 of file MSTrafficLightLogic.h.
typedef std::map<unsigned int, SUMOReal> MSAgentbasedTrafficLightLogic::MeanDataMap |
Definition of a map which stores the mean data of several (numberOfValues) cycles.
Definition at line 73 of file MSAgentbasedTrafficLightLogic.h.
|
inherited |
Definition of a list of phases, being the junction logic.
Definition at line 68 of file MSTrafficLightLogic.h.
typedef std::map<unsigned int, ValueType> MSAgentbasedTrafficLightLogic::PhaseValueMap |
Definition of a map which stores the step of the greenphases and their detector values.
Definition at line 70 of file MSAgentbasedTrafficLightLogic.h.
typedef std::deque<SUMOReal> MSAgentbasedTrafficLightLogic::ValueType |
Definition of a map which stores the detector values of one single phase.
Definition at line 67 of file MSAgentbasedTrafficLightLogic.h.
MSAgentbasedTrafficLightLogic::MSAgentbasedTrafficLightLogic | ( | MSTLLogicControl & | tlcontrol, |
const std::string & | id, | ||
const std::string & | programID, | ||
const MSSimpleTrafficLightLogic::Phases & | phases, | ||
unsigned int | step, | ||
SUMOTime | delay, | ||
const std::map< std::string, std::string > & | parameter | ||
) |
Constructor.
[in] | tlcontrol | The tls control responsible for this tls |
[in] | id | This tls' id |
[in] | programID | This tls' sub-id (program id) |
[in] | phases | Definitions of the phases |
[in] | step | The initial phase index |
[in] | delay | The time to wait before the first switch |
[in] | parameter | The parameter to use for tls set-up |
Definition at line 53 of file MSAgentbasedTrafficLightLogic.cpp.
References deltaLimit, numberOfValues, tCycle, and tDecide.
MSAgentbasedTrafficLightLogic::~MSAgentbasedTrafficLightLogic | ( | ) |
Destructor.
Definition at line 136 of file MSAgentbasedTrafficLightLogic.cpp.
|
virtualinherited |
Applies information about controlled links and lanes from the given logic.
If we load a logic after the network has been loaded, we do not get the information about controlled links afterwards. We have to copy them from a previously loaded logic.
[in] | logic | The logic to use the information about controlled links/lanes from |
Reimplemented in MSOffTrafficLightLogic.
Definition at line 143 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::myLanes, and MSTrafficLightLogic::myLinks.
Referenced by MSTLLogicControl::TLSLogicVariants::addLogic().
Adds a link on building.
[in] | link | The controlled link |
[in] | lane | The lane this link starts at |
[in] | pos | The link's index (signal group) within this program |
Definition at line 125 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::getCurrentPhaseDef(), MSNet::getInstance(), MSTrafficLightLogic::myLanes, MSTrafficLightLogic::myLinks, and MSLink::setTLState().
|
inherited |
Changes the duration of the next phase.
[in] | duration | The new duration |
Definition at line 216 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::myOverridingTimes.
|
protected |
Aggregates the data of one phase, collected during different cycles.
Definition at line 228 of file MSAgentbasedTrafficLightLogic.cpp.
References myMeanDetectorData, myRawDetectorData, and SUMOReal.
Referenced by calculateDuration().
|
protected |
Calculates the duration for all real phases except intergreen phases.
Definition at line 241 of file MSAgentbasedTrafficLightLogic.cpp.
References aggregateRawData(), deltaLimit, findStepOfMaxValue(), findStepOfMinValue(), myMeanDetectorData, MSSimpleTrafficLightLogic::myPhases, MSSimpleTrafficLightLogic::myStep, stepOfLastDecision, SUMOReal, and tSinceLastDecision.
Referenced by trySwitch().
|
virtualinherited |
Changes the current phase and her duration.
[in] | tlcontrol | The responsible traffic lights control |
[in] | simStep | The current simulation step |
[in] | step | Index of the phase to use |
[in] | stepDuration | The left duration of the phase |
Implements MSTrafficLightLogic.
Definition at line 191 of file MSSimpleTrafficLightLogic.cpp.
References MSEventControl::ADAPT_AFTER_EXECUTION, MSEventControl::addEvent(), MSTrafficLightLogic::SwitchCommand::deschedule(), MSNet::getBeginOfTimestepEvents(), MSNet::getInstance(), MSSimpleTrafficLightLogic::myStep, and MSTrafficLightLogic::mySwitchCommand.
Referenced by GUIViewTraffic::onGamingClick().
|
protected |
Collects the traffic data.
!! SUMOReal tmp = currentForLane(E2::QUEUE_LENGTH_AHEAD_OF_TRAFFIC_LIGHTS_IN_VEHICLES, *j); if (maxPerBit < tmp) { maxPerBit = tmp; } E2DetectorMap::const_iterator it=myE2Detectors.find(*j); (*it).second->resetQueueLengthAheadOfTrafficLights();
Definition at line 181 of file MSAgentbasedTrafficLightLogic.cpp.
References MSEdge::EDGEFUNCTION_INTERNAL, MSSimpleTrafficLightLogic::getCurrentPhaseDef(), MSTrafficLightLogic::getLanesAt(), MSPhaseDefinition::getState(), LINKSTATE_TL_GREEN_MAJOR, LINKSTATE_TL_GREEN_MINOR, myRawDetectorData, MSSimpleTrafficLightLogic::myStep, numberOfValues, and SUMOReal.
Referenced by trySwitch().
Returns the (uncontrolled) states of the controlled links.
Definition at line 150 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::myLinks.
|
protected |
cuts the actual cycle by an given value
[in] | toCut | The time decrease |
Definition at line 305 of file MSAgentbasedTrafficLightLogic.cpp.
References MSSimpleTrafficLightLogic::myPhases, and SUMOReal.
Referenced by init().
|
protected |
Returns the step of the phase with the longest Queue_Lengt_Ahead_Of_Traffic_Lights.
Definition at line 344 of file MSAgentbasedTrafficLightLogic.cpp.
References myMeanDetectorData, MSSimpleTrafficLightLogic::myPhases, and SUMOReal.
Referenced by calculateDuration().
|
protected |
Returns the step of the phase with the shortest Queue_Lengt_Ahead_Of_Traffic_Lights.
Definition at line 365 of file MSAgentbasedTrafficLightLogic.cpp.
References myMeanDetectorData, MSSimpleTrafficLightLogic::myPhases, and SUMOReal.
Referenced by calculateDuration().
|
virtualinherited |
Returns the definition of the current phase.
Implements MSTrafficLightLogic.
Definition at line 133 of file MSSimpleTrafficLightLogic.cpp.
References MSSimpleTrafficLightLogic::myPhases, and MSSimpleTrafficLightLogic::myStep.
Referenced by collectData(), MSActuatedTrafficLightLogic::duration(), MSActuatedTrafficLightLogic::gapControl(), and trySwitch().
|
virtualinherited |
Returns the current index within the program.
Implements MSTrafficLightLogic.
Definition at line 127 of file MSSimpleTrafficLightLogic.cpp.
References MSSimpleTrafficLightLogic::myStep.
|
inlineinherited |
Returns the cycle time (in ms)
Definition at line 263 of file MSTrafficLightLogic.h.
References MSTrafficLightLogic::myDefaultCycleTime.
Referenced by MSTLLogicControl::WAUTSwitchProcedure::isPosAtGSP().
|
inlineinherited |
Returns this tl-logic's id.
Definition at line 170 of file MSTrafficLightLogic.h.
References MSTrafficLightLogic::myID.
Referenced by MSTLLogicControl::TLSLogicVariants::addLogic(), GUITrafficLightLogicWrapper::begin2TrackPhases(), GUINet::createTLWrapper(), Command_SaveTLSState::execute(), Command_SaveTLSSwitchStates::execute(), Command_SaveTLSSwitches::execute(), GUITrafficLightLogicWrapper::getPopUpMenu(), GUITLLogicPhasesTrackerWindow::GUITLLogicPhasesTrackerWindow(), MSTLLogicControl::isActive(), GUIViewTraffic::onGamingClick(), and GUITrafficLightLogicWrapper::switchTLSLogic().
|
virtualinherited |
Returns the step (the phasenumber) of a given position of the cycle.
[in] | offset | The offset (time) for which the according phase shall be returned |
Implements MSTrafficLightLogic.
Definition at line 169 of file MSSimpleTrafficLightLogic.cpp.
References MSPhaseDefinition::duration, MSSimpleTrafficLightLogic::getPhase(), MSTrafficLightLogic::myDefaultCycleTime, and MSSimpleTrafficLightLogic::myPhases.
|
inlineinherited |
Returns the list of lists of all lanes controlled by this tls.
Definition at line 186 of file MSTrafficLightLogic.h.
References MSTrafficLightLogic::myLanes.
Referenced by GUITrafficLightLogicWrapper::getCenteringBoundary(), and TraCIServerAPI_TLS::processGet().
|
inlineinherited |
Returns the list of lanes that are controlled by the signals at the given position.
[in] | i | The index of the signal |
Definition at line 195 of file MSTrafficLightLogic.h.
References MSTrafficLightLogic::myLanes.
Referenced by collectData(), GUITrafficLightLogicWrapper::drawGL(), MSActuatedTrafficLightLogic::duration(), Command_SaveTLSSwitches::execute(), MSActuatedTrafficLightLogic::gapControl(), and GUIViewTraffic::onGamingClick().
Returns the index of the given link.
[in] | link | The link to retrieve the index for |
Definition at line 192 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::myLinks.
Referenced by GUITrafficLightLogicWrapper::getLinkIndex().
|
inlineinherited |
Returns the list of lists of all affected links.
Definition at line 203 of file MSTrafficLightLogic.h.
References MSTrafficLightLogic::myLinks.
Referenced by MSTLLogicControl::TLSLogicVariants::addLogic(), GUINet::createTLWrapper(), GUITLLogicPhasesTrackerWindow::drawValues(), Command_SaveTLSSwitches::execute(), GUITLLogicPhasesTrackerWindow::GUITLLogicPhasesTrackerWindow(), TraCIServerAPI_TLS::processGet(), and MSOffTrafficLightLogic::rebuildPhase().
|
inlineinherited |
Returns the list of links that are controlled by the signals at the given position.
[in] | i | The index of the signal |
Definition at line 212 of file MSTrafficLightLogic.h.
References MSTrafficLightLogic::myLinks.
|
inherited |
Returns the assumed next switch time.
The time may change in case of adaptive/actuated traffic lights.
Definition at line 209 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::SwitchCommand::getNextSwitchTime(), and MSTrafficLightLogic::mySwitchCommand.
Referenced by MSTLLogicControl::WAUTSwitchProcedure::isPosAtGSP(), and TraCIServerAPI_TLS::processGet().
Returns the position (start of a phase during a cycle) from of a given step.
[in] | index | The index of the phase to return the begin of |
Implements MSTrafficLightLogic.
Definition at line 155 of file MSSimpleTrafficLightLogic.cpp.
References MSPhaseDefinition::duration, MSSimpleTrafficLightLogic::getPhase(), and MSSimpleTrafficLightLogic::myPhases.
|
inherited |
Returns a named parameter.
[in] | key | The name of the parameter |
Definition at line 237 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::myParameter.
Referenced by MSTLLogicControl::WAUTSwitchProcedure::getGSPValue(), MSTLLogicControl::WAUTSwitchProcedure_Stretch::getStretchAreaNo(), and MSTLLogicControl::WAUTSwitchProcedure_Stretch::getStretchBereichDef().
|
virtualinherited |
Returns the definition of the phase from the given position within the plan.
[in] | givenstep | The index of the phase within the plan |
Implements MSTrafficLightLogic.
Definition at line 119 of file MSSimpleTrafficLightLogic.cpp.
References MSSimpleTrafficLightLogic::myPhases.
Referenced by MSSimpleTrafficLightLogic::getIndexFromOffset(), MSSimpleTrafficLightLogic::getOffsetFromIndex(), MSSimpleTrafficLightLogic::getPhaseIndexAtTime(), and GUIViewTraffic::onGamingClick().
Returns the index of the logic at the given simulation step.
Implements MSTrafficLightLogic.
Definition at line 140 of file MSSimpleTrafficLightLogic.cpp.
References MSPhaseDefinition::duration, MSSimpleTrafficLightLogic::getPhase(), MSTrafficLightLogic::myDefaultCycleTime, MSPhaseDefinition::myLastSwitch, and MSSimpleTrafficLightLogic::myStep.
|
virtualinherited |
Returns the number of phases.
Implements MSTrafficLightLogic.
Definition at line 101 of file MSSimpleTrafficLightLogic.cpp.
References MSSimpleTrafficLightLogic::myPhases.
|
virtualinherited |
Returns the phases of this tls program.
Implements MSTrafficLightLogic.
Definition at line 107 of file MSSimpleTrafficLightLogic.cpp.
References MSSimpleTrafficLightLogic::myPhases.
|
inherited |
Returns the phases of this tls program.
Definition at line 113 of file MSSimpleTrafficLightLogic.cpp.
References MSSimpleTrafficLightLogic::myPhases.
|
inlineinherited |
Returns this tl-logic's id.
Definition at line 178 of file MSTrafficLightLogic.h.
References MSTrafficLightLogic::myProgramID.
Referenced by Command_SaveTLSState::execute(), Command_SaveTLSSwitchStates::execute(), Command_SaveTLSSwitches::execute(), GUITLLogicPhasesTrackerWindow::GUITLLogicPhasesTrackerWindow(), GUIViewTraffic::onGamingClick(), and TraCIServerAPI_TLS::processGet().
|
virtual |
Initialises the tls with information about incoming lanes.
[in] | nb | The detector builder |
[in] | edgeContinuations | Information about edge predecessors/successors |
ProcessError | If something fails on initialisation |
Calculation of starting values
Reimplemented from MSTrafficLightLogic.
Definition at line 81 of file MSAgentbasedTrafficLightLogic.cpp.
References NLDetectorBuilder::buildMultiLaneE2Det(), cutCycleTime(), DU_TL_CONTROL, Named::getID(), lengthenCycleTime(), myE2Detectors, MSTrafficLightLogic::myID, MSTrafficLightLogic::myLanes, MSTrafficLightLogic::myParameter, MSSimpleTrafficLightLogic::myPhases, MSTrafficLightLogic::myProgramID, SUMOReal, and tCycle.
|
protected |
lenghtens the actual cycle by an given value
[in] | toLenghten | The time increase |
Definition at line 266 of file MSAgentbasedTrafficLightLogic.cpp.
References MSSimpleTrafficLightLogic::myPhases, and SUMOReal.
Referenced by init().
|
protected |
Returns the index of the phase next to the given phase.
Stores the duration of the phase, which was just sent or stores the activation-time in myLastphase of the phase next
Definition at line 165 of file MSAgentbasedTrafficLightLogic.cpp.
References MSSimpleTrafficLightLogic::myPhases, MSSimpleTrafficLightLogic::myStep, stepOfLastDecision, and tSinceLastDecision.
Referenced by trySwitch().
|
inherited |
Resets the states of controlled links.
[in] | vals | The state of controlled links to use |
Definition at line 179 of file MSTrafficLightLogic.cpp.
References MSNet::getCurrentTimeStep(), MSNet::getInstance(), and MSTrafficLightLogic::myLinks.
|
inherited |
Delays current phase by the given delay.
[in] | delay | The time by which the current phase shall be delayed |
Definition at line 222 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::myCurrentDurationIncrement.
|
inherited |
Inserts read parameter.
[in] | params | The parameter to use |
Definition at line 231 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::myParameter.
Referenced by NLJunctionControlBuilder::closeTrafficLightLogic().
Replaces the phases and set the phase index.
Definition at line 203 of file MSSimpleTrafficLightLogic.cpp.
References MSSimpleTrafficLightLogic::deletePhases(), MSSimpleTrafficLightLogic::myPhases, and MSSimpleTrafficLightLogic::myStep.
Applies the current signal states to controlled links.
[in] | t | The current time |
Definition at line 163 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::getCurrentPhaseDef(), MSPhaseDefinition::getState(), and MSTrafficLightLogic::myLinks.
Referenced by MSTLLogicControl::TLSLogicVariants::addLogic(), and TraCIServerAPI_TLS::processSet().
Switches to the next phase.
[in] | isActive | Whether this program is the currently used one |
Reimplemented from MSSimpleTrafficLightLogic.
Definition at line 141 of file MSAgentbasedTrafficLightLogic.cpp.
References calculateDuration(), collectData(), MSPhaseDefinition::duration, MSSimpleTrafficLightLogic::getCurrentPhaseDef(), MSSimpleTrafficLightLogic::myPhases, MSSimpleTrafficLightLogic::myStep, nextStep(), tDecide, and tSinceLastDecision.
|
protected |
Definition at line 204 of file MSAgentbasedTrafficLightLogic.h.
Referenced by calculateDuration(), and MSAgentbasedTrafficLightLogic().
|
protectedinherited |
A value for enlarge the current duration.
Definition at line 427 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::setCurrentDurationIncrement(), and MSSimpleTrafficLightLogic::trySwitch().
|
protectedinherited |
The cycle time (without changes)
Definition at line 433 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::getDefaultCycleTime(), MSSimpleTrafficLightLogic::getIndexFromOffset(), MSSimpleTrafficLightLogic::getPhaseIndexAtTime(), MSOffTrafficLightLogic::MSOffTrafficLightLogic(), and MSSimpleTrafficLightLogic::MSSimpleTrafficLightLogic().
|
protected |
A map from lanes to E2 detectors lying on them.
Definition at line 172 of file MSAgentbasedTrafficLightLogic.h.
Referenced by init().
|
protectedinherited |
The id of the logic.
Definition at line 415 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::getID(), MSActuatedTrafficLightLogic::init(), and init().
|
protectedinherited |
The list of links which do participate in this traffic light.
Definition at line 421 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::adaptLinkInformationFrom(), MSTrafficLightLogic::addLink(), MSTrafficLightLogic::getLanes(), MSTrafficLightLogic::getLanesAt(), MSActuatedTrafficLightLogic::init(), and init().
|
protectedinherited |
The list of links which do participate in this traffic light.
Definition at line 418 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::adaptLinkInformationFrom(), MSTrafficLightLogic::addLink(), MSTrafficLightLogic::collectLinkStates(), MSTrafficLightLogic::getLinkIndex(), MSTrafficLightLogic::getLinks(), MSTrafficLightLogic::getLinksAt(), MSTrafficLightLogic::resetLinkStates(), and MSTrafficLightLogic::setTrafficLightSignals().
|
protected |
A map of the step of the greenphases and their aggregated detectordata.
Definition at line 178 of file MSAgentbasedTrafficLightLogic.h.
Referenced by aggregateRawData(), calculateDuration(), findStepOfMaxValue(), and findStepOfMinValue().
|
protectedinherited |
A list of duration overrides.
Definition at line 424 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::addOverridingDuration(), and MSSimpleTrafficLightLogic::trySwitch().
|
protectedinherited |
Given parameter.
Definition at line 412 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::getParameterValue(), MSActuatedTrafficLightLogic::init(), init(), and MSTrafficLightLogic::setParameter().
|
protectedinherited |
The list of phases this logic uses.
Definition at line 194 of file MSSimpleTrafficLightLogic.h.
Referenced by calculateDuration(), cutCycleTime(), MSSimpleTrafficLightLogic::deletePhases(), MSActuatedTrafficLightLogic::duration(), findStepOfMaxValue(), findStepOfMinValue(), MSActuatedTrafficLightLogic::gapControl(), MSSimpleTrafficLightLogic::getCurrentPhaseDef(), MSSimpleTrafficLightLogic::getIndexFromOffset(), MSSimpleTrafficLightLogic::getOffsetFromIndex(), MSSimpleTrafficLightLogic::getPhase(), MSSimpleTrafficLightLogic::getPhaseNumber(), MSSimpleTrafficLightLogic::getPhases(), init(), lengthenCycleTime(), MSSimpleTrafficLightLogic::MSSimpleTrafficLightLogic(), nextStep(), MSSimpleTrafficLightLogic::setPhases(), MSSimpleTrafficLightLogic::trySwitch(), MSActuatedTrafficLightLogic::trySwitch(), and trySwitch().
|
protectedinherited |
Definition at line 415 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::getProgramID(), MSActuatedTrafficLightLogic::init(), and init().
|
protected |
A map of the step of the greenphases and their detectorvalues for several (mumberofValues) cycles.
Definition at line 175 of file MSAgentbasedTrafficLightLogic.h.
Referenced by aggregateRawData(), and collectData().
|
protectedinherited |
The current step.
Definition at line 197 of file MSSimpleTrafficLightLogic.h.
Referenced by calculateDuration(), MSSimpleTrafficLightLogic::changeStepAndDuration(), collectData(), MSActuatedTrafficLightLogic::duration(), MSActuatedTrafficLightLogic::gapControl(), MSSimpleTrafficLightLogic::getCurrentPhaseDef(), MSSimpleTrafficLightLogic::getCurrentPhaseIndex(), MSSimpleTrafficLightLogic::getPhaseIndexAtTime(), nextStep(), MSSimpleTrafficLightLogic::setPhases(), MSSimpleTrafficLightLogic::trySwitch(), MSActuatedTrafficLightLogic::trySwitch(), and trySwitch().
|
protectedinherited |
The current switch command.
Definition at line 430 of file MSTrafficLightLogic.h.
Referenced by MSSimpleTrafficLightLogic::changeStepAndDuration(), MSTrafficLightLogic::getNextSwitchTime(), MSTrafficLightLogic::MSTrafficLightLogic(), and MSTrafficLightLogic::~MSTrafficLightLogic().
|
protected |
The number of detector values whivh is considered to make a decision.
it's only possible to get one value per cycle per greenphase
Definition at line 194 of file MSAgentbasedTrafficLightLogic.h.
Referenced by collectData(), and MSAgentbasedTrafficLightLogic().
|
protected |
Stores the step of the phase, when the last decision was made.
Definition at line 189 of file MSAgentbasedTrafficLightLogic.h.
Referenced by calculateDuration(), and nextStep().
|
protected |
The cycletime of the trafficlight.
Definition at line 197 of file MSAgentbasedTrafficLightLogic.h.
Referenced by init(), and MSAgentbasedTrafficLightLogic().
|
protected |
the interval in which the traffic light can make a decision
The interval is given in integer numbers of cycles
Definition at line 183 of file MSAgentbasedTrafficLightLogic.h.
Referenced by MSAgentbasedTrafficLightLogic(), and trySwitch().
|
protected |
The number of cycles, before the last decision was made.
Definition at line 186 of file MSAgentbasedTrafficLightLogic.h.
Referenced by calculateDuration(), nextStep(), and trySwitch().