SUMO - Simulation of Urban MObility
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
NBTrafficLightDefinition Class Referenceabstract

The base class for traffic light logic definitions. More...

#include <NBTrafficLightDefinition.h>

Inheritance diagram for NBTrafficLightDefinition:
Named Parameterised NBLoadedSUMOTLDef NBLoadedTLDef NBOwnTLDef

Public Types

enum  TLColor {
  TLCOLOR_RED, TLCOLOR_YELLOW, TLCOLOR_REDYELLOW, TLCOLOR_GREEN,
  TLCOLOR_BLINK
}
 An enumeration of possible tl-signal states. More...
 

Public Member Functions

void addControlledInnerEdges (const std::vector< std::string > &edges)
 Adds the given ids into the list of edges not controlled by the tls. More...
 
void addParameter (const std::string &key, const std::string &value)
 Adds a parameter. More...
 
void addParameter (const std::map< std::string, std::string > &mapArg)
 Adds all given parameter. More...
 
void addParameter (const Parameterised &p)
 Adds all given parameter. More...
 
void addTo (const StoringVisitor &cont) const
 Adds this object to the given container. More...
 
void clearParameter ()
 Clears the parameter map. More...
 
NBTrafficLightLogiccompute (const NBEdgeCont &ec, OptionsCont &oc)
 Computes the traffic light logic. More...
 
bool foes (const NBEdge *const from1, const NBEdge *const to1, const NBEdge *const from2, const NBEdge *const to2) const
 Returns the information whether the given flows cross. More...
 
bool forbids (const NBEdge *const possProhibitorFrom, const NBEdge *const possProhibitorTo, const NBEdge *const possProhibitedFrom, const NBEdge *const possProhibitedTo, bool regardNonSignalisedLowerPriority) const
 Returns the information whether "prohibited" flow must let "prohibitor" flow pass. More...
 
const NBConnectionVectorgetControlledLinks () const
 returns the controlled links (depends on previous call to collectLinks) More...
 
const std::vector< NBNode * > & getControlledNodes () const
 
const std::string & getID () const
 Returns the id. More...
 
const EdgeVectorgetIncomingEdges () const
 Returns the list of incoming edges (must be build first) More...
 
const std::map< std::string,
std::string > & 
getMap () const
 Returns the inner key/value map. More...
 
SUMOTime getOffset ()
 Returns the offset. More...
 
const std::string & getParameter (const std::string &key, const std::string &defaultValue) const
 Returns the value for a given key. More...
 
const std::string & getProgramID () const
 Returns the ProgramID. More...
 
TrafficLightType getType () const
 get the algorithm type (static etc..) More...
 
bool isLeftMover (const NBEdge *const from, const NBEdge *const to) const
 returns the information whether the given link is a left-mover More...
 
bool knowsParameter (const std::string &key) const
 Returns whether the parameter is known. More...
 
bool mustBrake (const NBEdge *const from, const NBEdge *const to) const
 Returns the information whether the described flow must let any other flow pass. More...
 
bool mustBrake (const NBConnection &possProhibited, const NBConnection &possProhibitor, bool regardNonSignalisedLowerPriority) const
 Returns the information whether the described flow must let the other flow pass. More...
 
bool mustBrake (const NBEdge *const possProhibitedFrom, const NBEdge *const possProhibitedTo, const NBEdge *const possProhibitorFrom, const NBEdge *const possProhibitorTo, bool regardNonSignalisedLowerPriority) const
 Returns the information whether the described flow must let any other flow pass. More...
 
 NBTrafficLightDefinition (const std::string &id, const std::vector< NBNode * > &junctions, const std::string &programID, SUMOTime offset, TrafficLightType type)
 Constructor. More...
 
 NBTrafficLightDefinition (const std::string &id, NBNode *junction, const std::string &programID, SUMOTime offset, TrafficLightType type)
 Constructor. More...
 
 NBTrafficLightDefinition (const std::string &id, const std::string &programID, SUMOTime offset, TrafficLightType type)
 Constructor. More...
 
virtual void remapRemoved (NBEdge *removed, const EdgeVector &incoming, const EdgeVector &outgoing)=0
 Replaces occurences of the removed edge in incoming/outgoing edges of all definitions. More...
 
virtual void replaceRemoved (NBEdge *removed, int removedLane, NBEdge *by, int byLane)=0
 Replaces a removed edge/lane. More...
 
void setID (const std::string &newID)
 resets the id More...
 
virtual void setParticipantsInformation ()
 Builds the list of participating nodes/edges/links. More...
 
void setProgramID (const std::string &programID)
 Sets the programID. More...
 
virtual void setTLControllingInformation (const NBEdgeCont &ec) const =0
 Informs edges about being controlled by a tls. More...
 
virtual ~NBTrafficLightDefinition ()
 Destructor. More...
 
Access to controlled nodes
virtual void addNode (NBNode *node)
 Adds a node to the traffic light logic. More...
 
virtual void removeNode (NBNode *node)
 Removes the given node from the list of controlled nodes. More...
 
const std::vector< NBNode * > & getNodes () const
 Returns the list of controlled nodes. More...
 

Static Public Attributes

static const std::string DefaultProgramID = "0"
 

Protected Member Functions

virtual bool amInvalid () const
 
void collectAllLinks ()
 helper method for use in NBOwnTLDef and NBLoadedSUMOTLDef More...
 
void collectEdges ()
 Build the list of participating edges. More...
 
virtual void collectLinks ()=0
 Collects the links participating in this traffic light

Exceptions
ProcessErrorIf a link could not be found.
More...
 
unsigned int computeBrakingTime (SUMOReal minDecel) const
 Computes the time vehicles may need to brake. More...
 
virtual NBTrafficLightLogicmyCompute (const NBEdgeCont &ec, unsigned int brakingTime)=0
 Computes the traffic light logic finally in dependence to the type. More...
 

Protected Attributes

std::set< std::string > myControlledInnerEdges
 Set of inner edges that shall be controlled, though. More...
 
NBConnectionVector myControlledLinks
 The list of controlled links. More...
 
std::vector< NBNode * > myControlledNodes
 The container with participating nodes. More...
 
EdgeVector myEdgesWithin
 The list of edges within the area controlled by the tls. More...
 
std::string myID
 The name of the object. More...
 
EdgeVector myIncomingEdges
 The list of incoming edges. More...
 
SUMOTime myOffset
 The offset in the program. More...
 
std::string mySubID
 The tls program's subid. More...
 
TrafficLightType myType
 The algorithm type for the traffic light. More...
 

Detailed Description

The base class for traffic light logic definitions.

A base class is necessary, as we have two cases: a) the logic is given by the imported network, or b) the logic is not given and we have to compute it by ourselves. In the first case, NBLoadedTLDef should be used, in the second NBOwnTLDef.

See Also
NBLoadedTLDef
NBOwnTLDef

Definition at line 73 of file NBTrafficLightDefinition.h.

Member Enumeration Documentation

An enumeration of possible tl-signal states.

Enumerator
TLCOLOR_RED 

Signal shows red.

TLCOLOR_YELLOW 

Signal shows yellow.

TLCOLOR_REDYELLOW 

Signal shows red/yellow (unused)

TLCOLOR_GREEN 

Signal shows green.

TLCOLOR_BLINK 

Signal is blinking yellow.

Definition at line 82 of file NBTrafficLightDefinition.h.

Constructor & Destructor Documentation

NBTrafficLightDefinition::NBTrafficLightDefinition ( const std::string &  id,
const std::vector< NBNode * > &  junctions,
const std::string &  programID,
SUMOTime  offset,
TrafficLightType  type 
)

Constructor.

Parameters
[in]idThe id of the tls
[in]junctionsList of junctions controlled by this tls
[in]programIDThe id of the added program ("subID")
[in]offsetThe offset of the plan
[in]typeThe algorithm type for the computed traffic light

Definition at line 58 of file NBTrafficLightDefinition.cpp.

References myControlledNodes.

NBTrafficLightDefinition::NBTrafficLightDefinition ( const std::string &  id,
NBNode junction,
const std::string &  programID,
SUMOTime  offset,
TrafficLightType  type 
)

Constructor.

Parameters
[in]idThe id of the tls
[in]junctionThe (single) junction controlled by this tls
[in]programIDThe id of the added program ("subID")
[in]offsetThe offset of the plan
[in]typeThe algorithm type for the computed traffic light

Definition at line 83 of file NBTrafficLightDefinition.cpp.

References addNode(), and NBNode::addTrafficLight().

NBTrafficLightDefinition::NBTrafficLightDefinition ( const std::string &  id,
const std::string &  programID,
SUMOTime  offset,
TrafficLightType  type 
)

Constructor.

Parameters
[in]idThe id of the tls
[in]programIDThe id of the added program ("subID")
[in]offsetThe offset of the plan
[in]typeThe algorithm type for the computed traffic light

Definition at line 94 of file NBTrafficLightDefinition.cpp.

NBTrafficLightDefinition::~NBTrafficLightDefinition ( )
virtual

Destructor.

Definition at line 102 of file NBTrafficLightDefinition.cpp.

Member Function Documentation

void NBTrafficLightDefinition::addControlledInnerEdges ( const std::vector< std::string > &  edges)

Adds the given ids into the list of edges not controlled by the tls.

Parameters
[in]edgesThe list of edge ids to add the inner edges to

Definition at line 355 of file NBTrafficLightDefinition.cpp.

References myControlledInnerEdges.

void NBTrafficLightDefinition::addNode ( NBNode node)
virtual

Adds a node to the traffic light logic.

Parameters
[in]nodeA further node that shall be controlled by the tls

Definition at line 335 of file NBTrafficLightDefinition.cpp.

References NBNode::addTrafficLight(), and myControlledNodes.

Referenced by NBLoadedSUMOTLDef::addConnection(), NBLoadedTLDef::addToSignalGroup(), NIXMLTrafficLightsHandler::initTrafficLightLogic(), and NBTrafficLightDefinition().

void Parameterised::addParameter ( const std::string &  key,
const std::string &  value 
)
inherited

Adds a parameter.

Parameters
[in]keyThe parameter's name
[in]valueThe parameter's value

Definition at line 53 of file Parameterised.cpp.

References Parameterised::myMap.

Referenced by NLHandler::addParam(), SUMORouteHandler::addParam(), PCLoaderOSM::addPOI(), PCLoaderOSM::addPolygon(), compute(), NIImporter_OpenDrive::loadNetwork(), and NIImporter_MATSim::EdgesHandler::myStartElement().

void Parameterised::addParameter ( const std::map< std::string, std::string > &  mapArg)
inherited

Adds all given parameter.

Parameters
[in]mapArgThe keys/values to insert

Definition at line 59 of file Parameterised.cpp.

References Parameterised::myMap.

void Parameterised::addParameter ( const Parameterised p)
inherited

Adds all given parameter.

Parameters
[in]pThe keys/values to insert

Definition at line 67 of file Parameterised.cpp.

References Parameterised::myMap.

void Named::addTo ( const StoringVisitor cont) const
inlineinherited

Adds this object to the given container.

Parameters
in,filled]cont The container to add this item to

Definition at line 114 of file Named.h.

References Named::StoringVisitor::add().

bool NBTrafficLightDefinition::amInvalid ( ) const
protectedvirtual

Reimplemented in NBLoadedSUMOTLDef.

Definition at line 131 of file NBTrafficLightDefinition.cpp.

References myControlledLinks.

Referenced by compute().

void Parameterised::clearParameter ( )
inherited

Clears the parameter map.

Definition at line 91 of file Parameterised.cpp.

References Parameterised::myMap.

void NBTrafficLightDefinition::collectEdges ( )
protected
virtual void NBTrafficLightDefinition::collectLinks ( )
protectedpure virtual

Collects the links participating in this traffic light

Exceptions
ProcessErrorIf a link could not be found.

Implemented in NBLoadedTLDef, NBOwnTLDef, and NBLoadedSUMOTLDef.

Referenced by setParticipantsInformation().

NBTrafficLightLogic * NBTrafficLightDefinition::compute ( const NBEdgeCont ec,
OptionsCont oc 
)

Computes the traffic light logic.

Does some initialisation at first, then calls myCompute to finally build the tl-logic

Parameters
[in]ecThe edge container in order to retrieve edge information
[in]ocThe options container holding options needed during the building
Returns
The built logic (may be 0)

Definition at line 106 of file NBTrafficLightDefinition.cpp.

References Parameterised::addParameter(), amInvalid(), computeBrakingTime(), OptionsCont::getFloat(), Named::getID(), OptionsCont::getInt(), Parameterised::getMap(), OptionsCont::isSet(), myCompute(), myControlledNodes, and WRITE_WARNING.

Referenced by NBTrafficLightLogicCont::computeSingleLogic().

unsigned int NBTrafficLightDefinition::computeBrakingTime ( SUMOReal  minDecel) const
protected

Computes the time vehicles may need to brake.

This time depends on the maximum speed allowed on incoming junctions. It is computed as max_speed_allowed / minimum_vehicle_decleration

Definition at line 137 of file NBTrafficLightDefinition.cpp.

References NBContHelper::maxSpeed(), myIncomingEdges, and SUMOReal.

Referenced by compute().

bool NBTrafficLightDefinition::foes ( const NBEdge *const  from1,
const NBEdge *const  to1,
const NBEdge *const  from2,
const NBEdge *const  to2 
) const

Returns the information whether the given flows cross.

Parameters
[in]from1The starting edge of the first stream
[in]to1The ending edge of the first stream
[in]from2The starting edge of the second stream
[in]to2The ending edge of the second stream
Returns
Whether both stream are foes (cross)

Definition at line 312 of file NBTrafficLightDefinition.cpp.

References NBNode::foes(), and myControlledNodes.

Referenced by NBOwnTLDef::computeUnblockedWeightedStreamNumber().

bool NBTrafficLightDefinition::forbids ( const NBEdge *const  possProhibitorFrom,
const NBEdge *const  possProhibitorTo,
const NBEdge *const  possProhibitedFrom,
const NBEdge *const  possProhibitedTo,
bool  regardNonSignalisedLowerPriority 
) const

Returns the information whether "prohibited" flow must let "prohibitor" flow pass.

Parameters
[in]possProhibitedFromThe maybe prohibited connection's begin
[in]possProhibitedToThe maybe prohibited connection's end
[in]possProhibitorFromThe maybe prohibiting connection's begin
[in]possProhibitorToThe maybe prohibiting connection's end
[in]regardNonSignalisedLowerPriorityWhether the right of way rules without traffic lights shall be regarded
Returns
Whether the second flow prohibits the first one
See Also
forbids

Definition at line 235 of file NBTrafficLightDefinition.cpp.

References NBNode::foes(), NBNode::forbids(), NBEdge::getConnectedEdges(), and myControlledNodes.

Referenced by mustBrake(), and NBOwnTLDef::myCompute().

const NBConnectionVector& NBTrafficLightDefinition::getControlledLinks ( ) const
inline

returns the controlled links (depends on previous call to collectLinks)

Definition at line 290 of file NBTrafficLightDefinition.h.

References myControlledLinks.

Referenced by NBLoadedSUMOTLDef::NBLoadedSUMOTLDef().

const std::vector<NBNode*>& NBTrafficLightDefinition::getControlledNodes ( ) const
inline
const std::string& Named::getID ( ) const
inlineinherited

Returns the id.

Returns
The stored id

Definition at line 60 of file Named.h.

References Named::myID.

Referenced by NIImporter_SUMO::_loadNetwork(), Named::StoringVisitor::add(), TraCIServerAPI_Lane::StoringVisitor::add(), MSDetectorControl::add(), RORouteDef::addAlternative(), MSNet::addBusStop(), NBLoadedSUMOTLDef::addConnection(), NLHandler::addConnection(), RODFDetectorCon::addDetector(), RONet::addEdge(), ROJTREdge::addFollowerProbability(), MSTLLogicControl::TLSLogicVariants::addLogic(), RONet::addNode(), NIImporter_SUMO::addPhase(), RONet::addRouteDef(), NBDistrict::addSink(), NBDistrict::addSource(), NBTrafficLightLogic::addStep(), MSRouteHandler::addStop(), NIXMLTrafficLightsHandler::addTlConnection(), NIVissimDisturbance::addToNode(), MSVehicle::addTraciStop(), MSVehicleTransfer::addVeh(), GUITrafficLightLogicWrapper::begin2TrackPhases(), MSPerson::MSPersonStage_Driving::beginEventOutput(), MSPerson::MSPersonStage_Waiting::beginEventOutput(), NIVisumTL::build(), RODFNet::buildApproachList(), MS_E2_ZS_CollectorOverLanes::buildCollector(), NIImporter_VISUM::buildDistrictNode(), NIVissimConnection::buildEdgeConnections(), RODFNet::buildEdgeFlowMap(), NBEdge::buildInnerEdges(), NGEdge::buildNBEdge(), NIVissimEdge::buildNBEdge(), NBRampsComputer::buildOffRamp(), NBRampsComputer::buildOnRamp(), MSSimpleTrafficLightLogic::changeStepAndDuration(), NBEdge::checkGeometry(), MSVehicleTransfer::checkInsertions(), ODDistrictHandler::closeDistrict(), NLHandler::closeEdge(), RORouteHandler::closeRouteDistribution(), RORouteHandler::closeVehicle(), collectAllLinks(), collectEdges(), ROJTRRouter::compute(), compute(), NBNode::computeInternalLaneShape(), NBEdge::computeLaneShapes(), NBNode::computeLogic(), NBNode::computeNodeShape(), RODFNet::computeRoutesFor(), NBTrafficLightLogicCont::computeSingleLogic(), NBTurningDirectionsComputer::computeTurnDirectionsForNode(), NGNet::connect(), NBEdge::connections_sorter(), MSAbstractLaneChangeModel::continueLaneChangeManeuver(), NLDetectorBuilder::convUncontE2PosLength(), GUINet::createTLWrapper(), MSLane::detectCollisions(), NIVissimDistrictConnection::dict_BuildDistricts(), MSPerson::MSPersonStage_Driving::endEventOutput(), MSPerson::MSPersonStage_Waiting::endEventOutput(), MSE3Collector::enter(), MSCalibrator::execute(), Command_SaveTLSState::execute(), Command_SaveTLSSwitchStates::execute(), Command_SaveTLSSwitches::execute(), MSVTypeProbe::execute(), MSVehicle::executeMove(), MSLane::executeMovements(), NBNodeCont::extract(), NBTrafficLightLogicCont::extract(), NBEdgeCont::extract(), RODFDetectorCon::getAggFlowFor(), RODFDetectorCon::getAnyDetectorForEdge(), MSNet::getBusStopID(), RODFNet::getDetectorEdge(), MS_E2_ZS_CollectorOverLanes::getLanePredeccessorLanes(), AGStreet::getName(), NIImporter_VISUM::getNamedEdgeContinuating(), GUIVehicle::getParameterWindow(), GUITrafficLightLogicWrapper::getPopUpMenu(), NLTriggerBuilder::getPosition(), NLDetectorBuilder::getPositionChecking(), NBNode::getPossiblySplittedIncoming(), NBNode::getPossiblySplittedOutgoing(), NIImporter_VISUM::getReversedContinuating(), RODFDetectorCon::guessEmptyFlows(), GUITLLogicPhasesTrackerWindow::GUITLLogicPhasesTrackerWindow(), NBEdgeCont::ignoreFilterMatch(), MSActuatedTrafficLightLogic::init(), MSAgentbasedTrafficLightLogic::init(), NIImporter_SUMO::initTrafficLightLogic(), NIXMLTrafficLightsHandler::initTrafficLightLogic(), NBDistrictCont::insert(), NBTrafficLightLogicCont::insert(), NBNodeCont::insert(), NBEdgeCont::insert(), NBNode::invalidateTLS(), MSTLLogicControl::isActive(), RODFNet::isDestination(), RODFNet::isFalseSource(), RODFNet::isSource(), NBEdgeCont::joinSameNodeConnectingEdges(), MSE3Collector::leave(), NIImporter_OpenDrive::loadNetwork(), NBRampsComputer::moveRampRight(), MSCalibrator::MSCalibrator(), MSPerson::MSPersonStage_Waiting::MSPersonStage_Waiting(), MSVehicle::MSVehicle(), NBOwnTLDef::myCompute(), NBLoadedTLDef::myCompute(), NIXMLTrafficLightsHandler::myEndElement(), NIXMLEdgesHandler::myEndElement(), NIImporter_SUMO::myEndElement(), NIXMLConnectionsHandler::myStartElement(), MSLaneSpeedTrigger::myStartElement(), MSTriggeredRerouter::myStartElement(), NBConnection::NBConnection(), NBRequest::NBRequest(), MSDevice_BTreceiver::notifyEnter(), MSDevice_Tripinfo::notifyEnter(), MSDevice_BTsender::notifyEnter(), MSDevice_Example::notifyEnter(), MSCalibrator::VehicleRemover::notifyEnter(), MSDevice_Tripinfo::notifyLeave(), MSDevice_Person::notifyLeave(), MSDevice_Example::notifyLeave(), MSDevice_BTreceiver::notifyLeave(), MSDevice_BTsender::notifyLeave(), MSDevice_Example::notifyMove(), MSDevice_BTreceiver::notifyMove(), MSDevice_BTsender::notifyMove(), GUIViewTraffic::onGamingClick(), RORouteHandler::openRoute(), Named::ComparatorIdLess::operator()(), NBTurningDirectionsComputer::combination_by_angle_sorter::operator()(), RODFNet::idComp::operator()(), NBOwnTLDef::edge_by_incoming_priority_sorter::operator()(), NBNetBuilder::by_id_sorter::operator()(), NBContHelper::same_connection_edge_sorter::operator()(), NBNode::nodes_by_id_sorter::operator()(), MSEdge::by_id_sorter::operator()(), NIImporter_VISUM::parse_EdgePolys(), NIImporter_VISUM::parse_Lanes(), NIImporter_VISUM::parse_LanesConnections(), NIImporter_VISUM::parse_Turns(), NIImporter_VISUM::parse_TurnsToSignalGroups(), NIXMLConnectionsHandler::parseDeprecatedLaneDefinition(), NIXMLConnectionsHandler::parseLaneBound(), MSLCM_JE2013::patchSpeed(), NBLoadedTLDef::SignalGroup::patchTYellow(), AGStreet::print(), TraCIServerAPI_InductionLoop::processGet(), TraCIServerAPI_TLS::processGet(), TraCIServerAPI_Vehicle::processGet(), TraCIServerAPI_Lane::processGet(), TraCIServerAPI_Vehicle::processSet(), NWWriter_SUMO::prohibitionConnection(), NBEdgeCont::recheckPostProcessConnections(), NBLoadedTLDef::SignalGroup::remapIncoming(), NBLoadedTLDef::SignalGroup::remapOutgoing(), NBLoadedSUMOTLDef::removeConnection(), MSCalibrator::removePending(), NBNode::removeSelfLoops(), NBEdgeCont::removeUnwishedEdges(), NBNodeCont::removeUnwishedNodes(), NBNodeCont::rename(), NBEdgeCont::rename(), NBConnection::replaceFrom(), MSBaseVehicle::replaceRouteEdges(), NBConnection::replaceTo(), NIImporter_DlrNavteq::TrafficlightsHandler::report(), NIXMLTrafficLightsHandler::retrieveLaneIndex(), RODFNet::revalidateFlows(), PCPolyContainer::save(), RONet::saveAndRemoveRoutesUntil(), MSBaseVehicle::saveState(), NBNodeCont::setAsTLControlled(), NBEdge::setControllingTLInformation(), NIXMLEdgesHandler::setNodes(), NBOwnTLDef::setTLControllingInformation(), NBLoadedSUMOTLDef::setTLControllingInformation(), NBLoadedTLDef::setTLControllingInformation(), NBEdgeCont::splitAt(), MSLane::succLinkSec(), GUITrafficLightLogicWrapper::switchTLSLogic(), MSDevice_BTreceiver::BTreceiverUpdate::updateVisibility(), TraCIServerAPI_Vehicle::vtdMap_matchingEdgeLane(), TraCIServerAPI_Vehicle::vtdMap_matchingRoutePosition(), MSLCM_JE2013::wantsChange(), MSEmissionExport::write(), MSFCDExport::write(), MSInstantInductLoop::write(), NBSign::writeAsPOI(), NWWriter_SUMO::writeConnection(), NWWriter_SUMO::writeDistrict(), MSFullExport::writeEdge(), MSXMLRawOut::writeEdge(), NWWriter_SUMO::writeEdge(), MSMeanData::writeEdge(), NWWriter_XML::writeEdgesAndConnections(), RODFDetector::writeEmitterDefinition(), RODFDetectorCon::writeEmitterPOIs(), RODFDetectorCon::writeEmitters(), RODFDetectorCon::writeEndRerouterDetectors(), NWWriter_SUMO::writeInternalConnections(), NWWriter_SUMO::writeJunction(), MSQueueExport::writeLane(), MSFullExport::writeLane(), NWWriter_DlrNavteq::writeLinksUnsplitted(), NWWriter_OpenDrive::writeNetwork(), NWWriter_XML::writeNodes(), NWWriter_DlrNavteq::writeNodesUnsplitted(), NWWriter_SUMO::writeRoundabout(), RODFDetectorCon::writeSpeedTrigger(), NWWriter_DlrNavteq::writeTrafficSignals(), MSInductLoop::writeTypedXMLOutput(), RODFDetectorCon::writeValidationDetectors(), MSFullExport::writeVehicles(), MSRouteProbe::writeXMLOutput(), and MSE2Collector::writeXMLOutput().

const EdgeVector & NBTrafficLightDefinition::getIncomingEdges ( ) const

Returns the list of incoming edges (must be build first)

Returns
The edges which are incoming into the tls

Definition at line 361 of file NBTrafficLightDefinition.cpp.

References myIncomingEdges.

Referenced by NBOwnTLDef::myCompute().

const std::map<std::string, std::string>& Parameterised::getMap ( ) const
inlineinherited

Returns the inner key/value map.

Returns
the inner map

Definition at line 106 of file Parameterised.h.

References Parameterised::myMap.

Referenced by compute(), GUIVehicle::getParameterWindow(), and PCPolyContainer::save().

const std::vector<NBNode*>& NBTrafficLightDefinition::getNodes ( ) const
inline

Returns the list of controlled nodes.

Returns
Controlled nodes

Definition at line 170 of file NBTrafficLightDefinition.h.

References myControlledNodes.

SUMOTime NBTrafficLightDefinition::getOffset ( )
inline

Returns the offset.

Returns
Offset

Definition at line 320 of file NBTrafficLightDefinition.h.

References myOffset.

Referenced by NBNode::invalidateTLS(), and NBLoadedSUMOTLDef::NBLoadedSUMOTLDef().

const std::string & Parameterised::getParameter ( const std::string &  key,
const std::string &  defaultValue 
) const
inherited
TrafficLightType NBTrafficLightDefinition::getType ( ) const
inline

get the algorithm type (static etc..)

Definition at line 326 of file NBTrafficLightDefinition.h.

References myType.

Referenced by NBNode::invalidateTLS(), and NBLoadedSUMOTLDef::NBLoadedSUMOTLDef().

bool NBTrafficLightDefinition::isLeftMover ( const NBEdge *const  from,
const NBEdge *const  to 
) const

returns the information whether the given link is a left-mover

Parameters
[in]fromThe connection's start edge
[in]toThe connection's end edge
Returns
Whether the connection is a left-mover

Definition at line 183 of file NBTrafficLightDefinition.cpp.

References NBNode::isLeftMover(), and myControlledNodes.

Referenced by NBOwnTLDef::myCompute().

bool Parameterised::knowsParameter ( const std::string &  key) const
inherited

Returns whether the parameter is known.

Parameters
[in]keyThe key to ask for
Returns
Whether the key is known

Definition at line 75 of file Parameterised.cpp.

References Parameterised::myMap.

Referenced by MSDevice_Example::buildVehicleDevices(), MSDevice::equippedByDefaultAssignmentOptions(), and TraCIServerAPI_Vehicle::vtdMap_matchingNearest().

bool NBTrafficLightDefinition::mustBrake ( const NBEdge *const  from,
const NBEdge *const  to 
) const

Returns the information whether the described flow must let any other flow pass.

If the from/to connection passes only one junction (from is incoming into same node as to outgoes from) the node is asked whether the flow must brake- Otherwise true is returned (recheck!) "from" must be an incoming edge into one of the participating nodes!

Parameters
[in]fromThe connection's start edge
[in]toThe connection's end edge
Returns
Whether the described connection must brake (has higher priorised foes)

Definition at line 199 of file NBTrafficLightDefinition.cpp.

References NBNode::mustBrake(), and myControlledNodes.

Referenced by NBLoadedTLDef::mustBrake().

bool NBTrafficLightDefinition::mustBrake ( const NBConnection possProhibited,
const NBConnection possProhibitor,
bool  regardNonSignalisedLowerPriority 
) const

Returns the information whether the described flow must let the other flow pass.

Parameters
[in]possProhibitedThe maybe prohibited connection
[in]possProhibitorThe maybe prohibiting connection
[in]regardNonSignalisedLowerPriorityWhether the right of way rules without traffic lights shall be regarded
Returns
Whether the second flow prohibits the first one
See Also
forbids

Definition at line 225 of file NBTrafficLightDefinition.cpp.

References forbids(), NBConnection::getFrom(), and NBConnection::getTo().

bool NBTrafficLightDefinition::mustBrake ( const NBEdge *const  possProhibitedFrom,
const NBEdge *const  possProhibitedTo,
const NBEdge *const  possProhibitorFrom,
const NBEdge *const  possProhibitorTo,
bool  regardNonSignalisedLowerPriority 
) const

Returns the information whether the described flow must let any other flow pass.

Parameters
[in]possProhibitedFromThe maybe prohibited connection's begin
[in]possProhibitedToThe maybe prohibited connection's end
[in]possProhibitorFromThe maybe prohibiting connection's begin
[in]possProhibitorToThe maybe prohibiting connection's end
[in]regardNonSignalisedLowerPriorityWhether the right of way rules without traffic lights shall be regarded
Returns
Whether the second flow prohibits the first one
See Also
forbids

Definition at line 213 of file NBTrafficLightDefinition.cpp.

References forbids().

virtual NBTrafficLightLogic* NBTrafficLightDefinition::myCompute ( const NBEdgeCont ec,
unsigned int  brakingTime 
)
protectedpure virtual

Computes the traffic light logic finally in dependence to the type.

Parameters
[in]ecThe edge container
[in]brakingTimeDuration a vehicle needs for braking in front of the tls
Returns
The computed logic

Implemented in NBLoadedTLDef, NBLoadedSUMOTLDef, and NBOwnTLDef.

Referenced by compute().

virtual void NBTrafficLightDefinition::remapRemoved ( NBEdge removed,
const EdgeVector incoming,
const EdgeVector outgoing 
)
pure virtual

Replaces occurences of the removed edge in incoming/outgoing edges of all definitions.

Parameters
[in]removedThe removed edge
[in]incomingThe edges to use instead if an incoming edge was removed
[in]outgoingThe edges to use instead if an outgoing edge was removed

Implemented in NBLoadedTLDef, NBOwnTLDef, and NBLoadedSUMOTLDef.

void NBTrafficLightDefinition::removeNode ( NBNode node)
virtual

Removes the given node from the list of controlled nodes.

Parameters
[in]nodeThe node that shall not be controlled by the tls any more

Definition at line 345 of file NBTrafficLightDefinition.cpp.

References myControlledNodes.

Referenced by NBNode::removeTrafficLight().

virtual void NBTrafficLightDefinition::replaceRemoved ( NBEdge removed,
int  removedLane,
NBEdge by,
int  byLane 
)
pure virtual

Replaces a removed edge/lane.

Parameters
[in]removedThe edge to replace
[in]removedLaneThe lane of this edge to replace
[in]byThe edge to insert instead
[in]byLaneThis edge's lane to insert instead

Implemented in NBLoadedTLDef, NBOwnTLDef, and NBLoadedSUMOTLDef.

void Named::setID ( const std::string &  newID)
inlineinherited

resets the id

Parameters
[in]newIDThe new id of this object

Definition at line 68 of file Named.h.

References Named::myID.

Referenced by NBNodeCont::rename(), and NBEdgeCont::rename().

void NBTrafficLightDefinition::setParticipantsInformation ( )
virtual

Builds the list of participating nodes/edges/links.

Reimplemented in NBOwnTLDef.

Definition at line 144 of file NBTrafficLightDefinition.cpp.

References collectEdges(), and collectLinks().

void NBTrafficLightDefinition::setProgramID ( const std::string &  programID)
inline

Sets the programID.

Parameters
[in]programIDThe new ID of the program (subID)

Definition at line 312 of file NBTrafficLightDefinition.h.

References mySubID.

Referenced by NBTrafficLightLogicCont::insert().

virtual void NBTrafficLightDefinition::setTLControllingInformation ( const NBEdgeCont ec) const
pure virtual

Informs edges about being controlled by a tls.

Parameters
[in]ecThe container of edges

Implemented in NBLoadedTLDef, NBOwnTLDef, and NBLoadedSUMOTLDef.

Field Documentation

const std::string NBTrafficLightDefinition::DefaultProgramID = "0"
static
std::set<std::string> NBTrafficLightDefinition::myControlledInnerEdges
protected

Set of inner edges that shall be controlled, though.

Definition at line 380 of file NBTrafficLightDefinition.h.

Referenced by NBLoadedSUMOTLDef::addConnection(), addControlledInnerEdges(), and collectEdges().

std::vector<NBNode*> NBTrafficLightDefinition::myControlledNodes
protected
EdgeVector NBTrafficLightDefinition::myEdgesWithin
protected

The list of edges within the area controlled by the tls.

Definition at line 374 of file NBTrafficLightDefinition.h.

Referenced by collectEdges().

EdgeVector NBTrafficLightDefinition::myIncomingEdges
protected

The list of incoming edges.

Definition at line 371 of file NBTrafficLightDefinition.h.

Referenced by collectAllLinks(), collectEdges(), NBLoadedTLDef::collectLinks(), computeBrakingTime(), and getIncomingEdges().

SUMOTime NBTrafficLightDefinition::myOffset
protected
std::string NBTrafficLightDefinition::mySubID
protected

The tls program's subid.

Definition at line 383 of file NBTrafficLightDefinition.h.

Referenced by getProgramID(), and setProgramID().

TrafficLightType NBTrafficLightDefinition::myType
protected

The algorithm type for the traffic light.

Definition at line 389 of file NBTrafficLightDefinition.h.

Referenced by getType(), NBOwnTLDef::myCompute(), NBLoadedTLDef::myCompute(), and NBLoadedSUMOTLDef::removeConnection().


The documentation for this class was generated from the following files: