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

A loaded (complete) traffic light logic. More...

#include <NBLoadedTLDef.h>

Inheritance diagram for NBLoadedTLDef:
NBTrafficLightDefinition Named

Data Structures

class  SignalGroup
 A single signal group, may control several connections. More...
 

Public Types

typedef std::map< std::string,
SignalGroup * > 
SignalGroupCont
 Definition of the container for signal groups. More...
 
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 addSignalGroup (const std::string &id)
 Adds a signal group. More...
 
void addSignalGroupPhaseBegin (const std::string &groupid, SUMOTime time, TLColor color)
 Sets the information about the begin of a phase. More...
 
void addTo (const StoringVisitor &cont) const
 Adds this object to the given container. More...
 
bool addToSignalGroup (const std::string &groupid, const NBConnection &connection)
 Adds a connection to a signal group. More...
 
bool addToSignalGroup (const std::string &groupid, const NBConnectionVector &connections)
 Adds a list of connections to a signal group. More...
 
NBTrafficLightLogiccompute (const NBEdgeCont &ec, OptionsCont &oc)
 Computes the traffic light logic. More...
 
SignalGroupfindGroup (NBEdge *from, NBEdge *to) const
 Returns the signal group which is responsible for the given connection. 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...
 
SUMOTime getOffset ()
 Returns the offset. 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 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...
 
 NBLoadedTLDef (const std::string &id, const std::vector< NBNode * > &junctions, SUMOTime offset, TrafficLightType type)
 Constructor. More...
 
 NBLoadedTLDef (const std::string &id, NBNode *junction, SUMOTime offset, TrafficLightType type)
 Constructor. More...
 
 NBLoadedTLDef (const std::string &id, SUMOTime offset, TrafficLightType type)
 Constructor. More...
 
void setCycleDuration (unsigned int cycleDur)
 Sets the duration of a cycle. 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...
 
void setSignalYellowTimes (const std::string &groupid, SUMOTime tRedYellow, SUMOTime tYellow)
 Sets the times the light is yellow or red/yellow. More...
 
 ~NBLoadedTLDef ()
 Destructor. More...
 
Public methods from NBTrafficLightDefinition-interface
void setTLControllingInformation (const NBEdgeCont &ec) const
 Informs edges about being controlled by a tls. More...
 
void remapRemoved (NBEdge *removed, const EdgeVector &incoming, const EdgeVector &outgoing)
 Replaces occurences of the removed edge in incoming/outgoing edges of all definitions. 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...
 
unsigned int computeBrakingTime (SUMOReal minDecel) const
 Computes the time vehicles may need to brake. More...
 
Protected methods from NBTrafficLightDefinition-interface
NBTrafficLightLogicmyCompute (const NBEdgeCont &ec, unsigned int brakingTime)
 Computes the traffic light logic finally in dependence to the type. More...
 
void collectNodes ()
 Collects the nodes participating in this traffic light. More...
 
void collectLinks ()
 Collects the links participating in this traffic light

Exceptions
ProcessErrorIf a link could not be found.
More...
 
bool mustBrake (const NBEdgeCont &ec, const NBConnection &possProhibited, const std::string &state, unsigned int strmpos) const
 Returns the information whether a connection must brake, given a phase. More...
 
void replaceRemoved (NBEdge *removed, int removedLane, NBEdge *by, int byLane)
 Replaces a removed edge/lane. 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...
 

Private Member Functions

std::string buildPhaseState (const NBEdgeCont &ec, unsigned int time) const
 Builds the phase for a given time. More...
 

Private Attributes

unsigned int myCycleDuration
 The duration of a single cycle. More...
 
SignalGroupCont mySignalGroups
 Controlled signal groups. More...
 

Detailed Description

A loaded (complete) traffic light logic.

Definition at line 49 of file NBLoadedTLDef.h.

Member Typedef Documentation

typedef std::map<std::string, SignalGroup*> NBLoadedTLDef::SignalGroupCont

Definition of the container for signal groups.

Definition at line 205 of file NBLoadedTLDef.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 81 of file NBTrafficLightDefinition.h.

Constructor & Destructor Documentation

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

Constructor.

Parameters
[in]idThe id of the tls
[in]junctionsJunctions controlled by this tls
[in]offsetThe offset of the plan
[in]typeThe algorithm type for the computed traffic light

Definition at line 268 of file NBLoadedTLDef.cpp.

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

Constructor.

Parameters
[in]idThe id of the tls
[in]junctionThe junction controlled by this tls
[in]offsetThe offset of the plan
[in]typeThe algorithm type for the computed traffic light

Definition at line 274 of file NBLoadedTLDef.cpp.

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

Constructor.

Parameters
[in]idThe id of the tls
[in]offsetThe offset of the plan
[in]typeThe algorithm type for the computed traffic light

Definition at line 279 of file NBLoadedTLDef.cpp.

NBLoadedTLDef::~NBLoadedTLDef ( )

Destructor.

Definition at line 284 of file NBLoadedTLDef.cpp.

References mySignalGroups.

Member Function Documentation

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

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 353 of file NBTrafficLightDefinition.cpp.

References NBTrafficLightDefinition::myControlledInnerEdges.

void NBTrafficLightDefinition::addNode ( NBNode node)
virtualinherited

Adds a node to the traffic light logic.

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

Definition at line 333 of file NBTrafficLightDefinition.cpp.

References NBNode::addTrafficLight(), and NBTrafficLightDefinition::myControlledNodes.

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

void NBLoadedTLDef::addSignalGroup ( const std::string &  id)

Adds a signal group.

Parameters
[in]idThe id of the signal group

Definition at line 547 of file NBLoadedTLDef.cpp.

References mySignalGroups.

Referenced by NIVissimTL::NIVissimTLSignalGroup::addTo(), and NIVisumTL::build().

void NBLoadedTLDef::addSignalGroupPhaseBegin ( const std::string &  groupid,
SUMOTime  time,
TLColor  color 
)

Sets the information about the begin of a phase.

Parameters
[in]groupidThe id of the signal group to add the phase to
[in]timeThe time the phase starts at
[in]colorThe color of the signal during this phase

Definition at line 554 of file NBLoadedTLDef.cpp.

References mySignalGroups.

Referenced by NIVissimTL::NIVissimTLSignalGroup::addTo(), and NIVisumTL::build().

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 NBLoadedTLDef::addToSignalGroup ( const std::string &  groupid,
const NBConnection connection 
)

Adds a connection to a signal group.

Parameters
[in]groupidThe id of the signal group to add the connection to
[in]connectionThe connection to add

Definition at line 515 of file NBLoadedTLDef.cpp.

References NBTrafficLightDefinition::addNode(), NBNode::addTrafficLight(), NBConnection::getFrom(), NBEdge::getFromNode(), NBConnection::getTo(), NBEdge::getToNode(), and mySignalGroups.

Referenced by NIVissimTL::NIVissimTLSignal::addTo(), addToSignalGroup(), and NIVisumTL::build().

bool NBLoadedTLDef::addToSignalGroup ( const std::string &  groupid,
const NBConnectionVector connections 
)

Adds a list of connections to a signal group.

Parameters
[in]groupidThe id of the signal group to add the connections to
[in]connectionsThe connections to add

Definition at line 536 of file NBLoadedTLDef.cpp.

References addToSignalGroup().

bool NBTrafficLightDefinition::amInvalid ( ) const
protectedvirtualinherited
std::string NBLoadedTLDef::buildPhaseState ( const NBEdgeCont ec,
unsigned int  time 
) const
private

Builds the phase for a given time.

Parameters
[in]ecThe edge control to use
[in]timeThe time to build the phase for
Returns
The phase of this tls for the given time

Definition at line 371 of file NBLoadedTLDef.cpp.

References NBConnection::check(), NBLoadedTLDef::SignalGroup::getConnection(), NBLoadedTLDef::SignalGroup::getLinkNo(), NBLoadedTLDef::SignalGroup::hasYellow(), NBLoadedTLDef::SignalGroup::mayDrive(), mustBrake(), and mySignalGroups.

Referenced by myCompute().

void NBLoadedTLDef::collectLinks ( )
protectedvirtual
void NBLoadedTLDef::collectNodes ( )
protected

Collects the nodes participating in this traffic light.

See Also
NBTrafficLightDefinition::collectNodes

Definition at line 466 of file NBLoadedTLDef.cpp.

References NBLoadedTLDef::SignalGroup::getConnection(), NBConnection::getFrom(), NBLoadedTLDef::SignalGroup::getLinkNo(), NBEdge::getToNode(), NBTrafficLightDefinition::myControlledNodes, and mySignalGroups.

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

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 NBTrafficLightDefinition::amInvalid(), NBTrafficLightDefinition::computeBrakingTime(), OptionsCont::getFloat(), Named::getID(), OptionsCont::getInt(), OptionsCont::isSet(), NBTrafficLightDefinition::myCompute(), NBTrafficLightDefinition::myControlledNodes, and WRITE_WARNING.

Referenced by NBTrafficLightLogicCont::computeSingleLogic().

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

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 135 of file NBTrafficLightDefinition.cpp.

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

Referenced by NBTrafficLightDefinition::compute().

NBLoadedTLDef::SignalGroup * NBLoadedTLDef::findGroup ( NBEdge from,
NBEdge to 
) const

Returns the signal group which is responsible for the given connection.

Parameters
[in]fromThe connection's start edge
[in]toThe connection's end edge
Returns
The signal group which controls the given connection

Definition at line 504 of file NBLoadedTLDef.cpp.

References mySignalGroups.

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

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 310 of file NBTrafficLightDefinition.cpp.

References NBNode::foes(), and NBTrafficLightDefinition::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
inherited

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 233 of file NBTrafficLightDefinition.cpp.

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

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

const NBConnectionVector& NBTrafficLightDefinition::getControlledLinks ( ) const
inlineinherited

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

Definition at line 289 of file NBTrafficLightDefinition.h.

References NBTrafficLightDefinition::myControlledLinks.

Referenced by NBLoadedSUMOTLDef::NBLoadedSUMOTLDef().

const std::vector<NBNode*>& NBTrafficLightDefinition::getControlledNodes ( ) const
inlineinherited
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 Named::StoringVisitor::add(), MSDetectorControl::add(), RORouteDef::addAlternative(), MSNet::addBusStop(), NBLoadedSUMOTLDef::addConnection(), NLHandler::addConnection(), RONet::addEdge(), ROJTREdge::addFollowerProbability(), RONet::addNode(), NIImporter_SUMO::addPhase(), RONet::addRouteDef(), NBDistrict::addSink(), NBDistrict::addSource(), NBTrafficLightLogic::addStep(), MSRouteHandler::addStop(), NIXMLTrafficLightsHandler::addTlConnection(), NIVissimDisturbance::addToNode(), MSVehicle::addTraciStop(), 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(), MSVehicleTransfer::checkInsertions(), ODDistrictHandler::closeDistrict(), NLHandler::closeEdge(), RORouteHandler::closeRouteDistribution(), RORouteHandler::closeVehicle(), NBTrafficLightDefinition::collectAllLinks(), NBTrafficLightDefinition::collectEdges(), ROJTRRouter::compute(), NBTrafficLightDefinition::compute(), NBNode::computeInternalLaneShape(), NBEdge::computeLaneShapes(), NBNode::computeLogic(), NBNode::computeNodeShape(), NBTrafficLightLogicCont::computeSingleLogic(), NBTurningDirectionsComputer::computeTurnDirectionsForNode(), NGNet::connect(), NBEdge::connections_sorter(), NLDetectorBuilder::convUncontE2PosLength(), MSLane::detectCollisions(), NIVissimDistrictConnection::dict_BuildDistricts(), MSPerson::MSPersonStage_Driving::endEventOutput(), MSPerson::MSPersonStage_Waiting::endEventOutput(), MSE3Collector::enter(), MSCalibrator::execute(), Command_SaveTLSSwitches::execute(), MSVTypeProbe::execute(), MSVehicle::executeMove(), MSLane::executeMovements(), NBNodeCont::extract(), NBTrafficLightLogicCont::extract(), NBEdgeCont::extract(), RODFDetectorCon::getAggFlowFor(), RODFDetectorCon::getAnyDetectorForEdge(), MSNet::getBusStopID(), MS_E2_ZS_CollectorOverLanes::getLanePredeccessorLanes(), AGStreet::getName(), NIImporter_VISUM::getNamedEdgeContinuating(), NLTriggerBuilder::getPosition(), NLDetectorBuilder::getPositionChecking(), NBNode::getPossiblySplittedIncoming(), NBNode::getPossiblySplittedOutgoing(), NIImporter_VISUM::getReversedContinuating(), NBEdgeCont::ignoreFilterMatch(), MSActuatedTrafficLightLogic::init(), MSAgentbasedTrafficLightLogic::init(), NIImporter_SUMO::initTrafficLightLogic(), NIXMLTrafficLightsHandler::initTrafficLightLogic(), NBDistrictCont::insert(), NBTrafficLightLogicCont::insert(), NBNodeCont::insert(), NBEdgeCont::insert(), NBEdgeCont::joinSameNodeConnectingEdges(), MSE3Collector::leave(), NIImporter_OpenDrive::loadNetwork(), NBRampsComputer::moveRampRight(), MSPerson::MSPersonStage_Waiting::MSPersonStage_Waiting(), MSVehicle::MSVehicle(), NBOwnTLDef::myCompute(), myCompute(), NIXMLTrafficLightsHandler::myEndElement(), NIXMLEdgesHandler::myEndElement(), NIImporter_SUMO::myEndElement(), NIXMLConnectionsHandler::myStartElement(), MSLaneSpeedTrigger::myStartElement(), MSTriggeredRerouter::myStartElement(), NBConnection::NBConnection(), NBRequest::NBRequest(), MSDevice_Tripinfo::notifyEnter(), MSDevice_Tripinfo::notifyLeave(), MSDevice_Person::notifyLeave(), 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(), NBLoadedTLDef::SignalGroup::patchTYellow(), AGStreet::print(), TraCIServerAPI_InductionLoop::processGet(), TraCIServerAPI_TLS::processGet(), TraCIServerAPI_Lane::processGet(), TraCIServerAPI_Vehicle::processGet(), TraCIServerAPI_Vehicle::processSet(), NWWriter_SUMO::prohibitionConnection(), NBEdgeCont::recheckPostProcessConnections(), NBLoadedTLDef::SignalGroup::remapIncoming(), NBLoadedTLDef::SignalGroup::remapOutgoing(), NBLoadedSUMOTLDef::removeConnection(), NBNode::removeSelfLoops(), NBEdgeCont::removeUnwishedEdges(), NBNodeCont::removeUnwishedNodes(), NBNodeCont::rename(), NBEdgeCont::rename(), NBConnection::replaceFrom(), MSBaseVehicle::replaceRouteEdges(), NBConnection::replaceTo(), NIImporter_DlrNavteq::TrafficlightsHandler::report(), NIXMLTrafficLightsHandler::retrieveLaneIndex(), PCPolyContainer::save(), RONet::saveAndRemoveRoutesUntil(), NBNodeCont::setAsTLControlled(), NBEdge::setControllingTLInformation(), NIXMLEdgesHandler::setNodes(), NBOwnTLDef::setTLControllingInformation(), NBLoadedSUMOTLDef::setTLControllingInformation(), setTLControllingInformation(), NBEdgeCont::splitAt(), NIXMLConnectionsHandler::validateLaneInfo(), TraCIServerAPI_Vehicle::vtdMap_matchingEdgeLane(), TraCIServerAPI_Vehicle::vtdMap_matchingRoutePosition(), 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(), NWWriter_SUMO::writeInternalConnections(), NWWriter_SUMO::writeJunction(), MSQueueExport::writeLane(), MSFullExport::writeLane(), NWWriter_DlrNavteq::writeLinksUnsplitted(), NWWriter_OpenDrive::writeNetwork(), NWWriter_XML::writeNodes(), NWWriter_DlrNavteq::writeNodesUnsplitted(), MSInductLoop::writeTypedXMLOutput(), MSFullExport::writeVehicles(), MSRouteProbe::writeXMLOutput(), and MSE2Collector::writeXMLOutput().

const EdgeVector & NBTrafficLightDefinition::getIncomingEdges ( ) const
inherited

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

Returns
The edges which are incoming into the tls

Definition at line 359 of file NBTrafficLightDefinition.cpp.

References NBTrafficLightDefinition::myIncomingEdges.

Referenced by NBOwnTLDef::myCompute().

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

Returns the list of controlled nodes.

Returns
Controlled nodes

Definition at line 169 of file NBTrafficLightDefinition.h.

References NBTrafficLightDefinition::myControlledNodes.

SUMOTime NBTrafficLightDefinition::getOffset ( )
inlineinherited

Returns the offset.

Returns
Offset

Definition at line 319 of file NBTrafficLightDefinition.h.

References NBTrafficLightDefinition::myOffset.

Referenced by NBLoadedSUMOTLDef::NBLoadedSUMOTLDef().

TrafficLightType NBTrafficLightDefinition::getType ( ) const
inlineinherited

get the algorithm type (static etc..)

Definition at line 325 of file NBTrafficLightDefinition.h.

References NBTrafficLightDefinition::myType.

Referenced by NBLoadedSUMOTLDef::NBLoadedSUMOTLDef().

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

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 181 of file NBTrafficLightDefinition.cpp.

References NBNode::isLeftMover(), and NBTrafficLightDefinition::myControlledNodes.

Referenced by NBOwnTLDef::myCompute().

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

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 197 of file NBTrafficLightDefinition.cpp.

References NBNode::mustBrake(), and NBTrafficLightDefinition::myControlledNodes.

Referenced by mustBrake().

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

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 223 of file NBTrafficLightDefinition.cpp.

References NBTrafficLightDefinition::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
inherited

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 211 of file NBTrafficLightDefinition.cpp.

References NBTrafficLightDefinition::forbids().

bool NBLoadedTLDef::mustBrake ( const NBEdgeCont ec,
const NBConnection possProhibited,
const std::string &  state,
unsigned int  strmpos 
) const
protected

Returns the information whether a connection must brake, given a phase.

Parameters
[in]ecThe edge control to retrieve edges from
[in]possProhibitedThe connection to investigate
[in]stateThe state
[in]strmposThe index of this connection within the masks
Returns
Whether the given connection must brake

Definition at line 425 of file NBLoadedTLDef.cpp.

References NBConnection::check(), NBLoadedTLDef::SignalGroup::getConnection(), NBConnection::getFrom(), NBLoadedTLDef::SignalGroup::getLinkNo(), NBTrafficLightDefinition::mustBrake(), and mySignalGroups.

Referenced by buildPhaseState().

NBTrafficLightLogic * NBLoadedTLDef::myCompute ( const NBEdgeCont ec,
unsigned int  brakingTime 
)
protectedvirtual
void NBLoadedTLDef::remapRemoved ( NBEdge removed,
const EdgeVector incoming,
const EdgeVector outgoing 
)
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
See Also
NBTrafficLightDefinition::remapRemoved

Implements NBTrafficLightDefinition.

Definition at line 575 of file NBLoadedTLDef.cpp.

References NBLoadedTLDef::SignalGroup::containsIncoming(), NBLoadedTLDef::SignalGroup::containsOutgoing(), mySignalGroups, NBLoadedTLDef::SignalGroup::remapIncoming(), and NBLoadedTLDef::SignalGroup::remapOutgoing().

void NBTrafficLightDefinition::removeNode ( NBNode node)
virtualinherited

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 343 of file NBTrafficLightDefinition.cpp.

References NBTrafficLightDefinition::myControlledNodes.

Referenced by NBNode::removeTrafficLight().

void NBLoadedTLDef::replaceRemoved ( NBEdge removed,
int  removedLane,
NBEdge by,
int  byLane 
)
protectedvirtual

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
See Also
NBTrafficLightDefinition::replaceRemoved

Implements NBTrafficLightDefinition.

Definition at line 591 of file NBLoadedTLDef.cpp.

References NBLoadedTLDef::SignalGroup::containsIncoming(), NBLoadedTLDef::SignalGroup::containsOutgoing(), mySignalGroups, and NBLoadedTLDef::SignalGroup::remap().

void NBLoadedTLDef::setCycleDuration ( unsigned int  cycleDur)

Sets the duration of a cycle.

Parameters
[in]cycleDurThe duration of the cycle

Definition at line 569 of file NBLoadedTLDef.cpp.

References myCycleDuration.

Referenced by NIVisumTL::build(), and NIVissimTL::dict_SetSignals().

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 ( )
virtualinherited

Builds the list of participating nodes/edges/links.

Reimplemented in NBOwnTLDef.

Definition at line 142 of file NBTrafficLightDefinition.cpp.

References NBTrafficLightDefinition::collectEdges(), and NBTrafficLightDefinition::collectLinks().

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

Sets the programID.

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

Definition at line 311 of file NBTrafficLightDefinition.h.

References NBTrafficLightDefinition::mySubID.

Referenced by NBTrafficLightLogicCont::insert().

void NBLoadedTLDef::setSignalYellowTimes ( const std::string &  groupid,
SUMOTime  tRedYellow,
SUMOTime  tYellow 
)

Sets the times the light is yellow or red/yellow.

Parameters
[in]groupidThe id of the signal group to add the phase to
[in]tRedYellowThe duration of redyellow
[in]tYellowThe duration of yellow

Definition at line 561 of file NBLoadedTLDef.cpp.

References mySignalGroups.

Referenced by NIVissimTL::NIVissimTLSignalGroup::addTo(), and NIVisumTL::build().

void NBLoadedTLDef::setTLControllingInformation ( const NBEdgeCont ec) const
virtual

Field Documentation

const std::string NBTrafficLightDefinition::DefaultProgramID = "0"
staticinherited
std::set<std::string> NBTrafficLightDefinition::myControlledInnerEdges
protectedinherited

Set of inner edges that shall be controlled, though.

Definition at line 379 of file NBTrafficLightDefinition.h.

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

unsigned int NBLoadedTLDef::myCycleDuration
private

The duration of a single cycle.

Definition at line 382 of file NBLoadedTLDef.h.

Referenced by myCompute(), and setCycleDuration().

EdgeVector NBTrafficLightDefinition::myEdgesWithin
protectedinherited

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

Definition at line 373 of file NBTrafficLightDefinition.h.

Referenced by NBTrafficLightDefinition::collectEdges().

SUMOTime NBTrafficLightDefinition::myOffset
protectedinherited
std::string NBTrafficLightDefinition::mySubID
protectedinherited

The tls program's subid.

Definition at line 382 of file NBTrafficLightDefinition.h.

Referenced by NBTrafficLightDefinition::getProgramID(), and NBTrafficLightDefinition::setProgramID().

TrafficLightType NBTrafficLightDefinition::myType
protectedinherited

The algorithm type for the traffic light.

Definition at line 388 of file NBTrafficLightDefinition.h.

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


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