![]() |
Eclipse SUMO - Simulation of Urban MObility
|
#include <GNEPathManager.h>
Data Structures | |
class | PathCalculator |
class used to calculate paths in nets More... | |
class | PathDraw |
class used to mark path draw More... | |
class | PathElement |
class used for path elements More... | |
class | Segment |
segment More... | |
Public Member Functions | |
void | calculateConsecutivePathEdges (PathElement *pathElement, SUMOVehicleClass vClass, const std::vector< GNEEdge * > edges) |
calculate consecutive path edges More... | |
void | calculateConsecutivePathLanes (PathElement *pathElement, const std::vector< GNELane * > lanes) |
calculate consecutive path lanes More... | |
void | calculatePathEdges (PathElement *pathElement, SUMOVehicleClass vClass, const std::vector< GNEEdge * > edges) |
calculate path edges (using dijkstra, require path calculator updated) More... | |
void | calculatePathJunctions (PathElement *pathElement, SUMOVehicleClass vClass, const std::vector< GNEJunction * > junctions) |
calculate path junctions (using dijkstra, require path calculator updated) More... | |
void | calculatePathLanes (PathElement *pathElement, SUMOVehicleClass vClass, const std::vector< GNELane * > lanes) |
calculate path lanes (using dijkstra, require path calculator updated) More... | |
void | clearDemandPaths () |
clear demand paths More... | |
void | drawJunctionPathElements (const GUIVisualizationSettings &s, const GNEJunction *junction) |
draw junction path elements More... | |
void | drawLanePathElements (const GUIVisualizationSettings &s, const GNELane *lane) |
draw lane path elements More... | |
void | forceDrawPath (const GUIVisualizationSettings &s, const PathElement *pathElement) const |
force draw path (used carefully, ONLY when we're inspecting a path element, due slowdowns) More... | |
const GNELane * | getFirstLane (const PathElement *pathElement) const |
get first lane associated with path element More... | |
PathCalculator * | getPathCalculator () |
obtain instance of PathCalculator More... | |
PathDraw * | getPathDraw () |
obtain instance of PathDraw More... | |
const PathElement * | getPathElement (const GUIGlObject *GLObject) const |
get path element More... | |
GNEPathManager (const GNENet *net) | |
constructor More... | |
void | invalidateJunctionPath (const GNEJunction *junction) |
invalidate junction path More... | |
void | invalidateLanePath (const GNELane *lane) |
invalidate lane path More... | |
bool | isPathValid (const PathElement *pathElement) const |
check if path element is valid More... | |
void | removePath (PathElement *pathElement) |
remove path More... | |
~GNEPathManager () | |
destructor More... | |
Protected Member Functions | |
void | addSegmentInJunctionSegments (Segment *segment, const GNEJunction *junction) |
add segments int junctionSegments (called by Segment constructor) More... | |
void | addSegmentInLaneSegments (Segment *segment, const GNELane *lane) |
add segments int laneSegments (called by Segment constructor) More... | |
void | clearSegmentFromJunctionAndLaneSegments (Segment *segment) |
clear segments from junction and lane Segments (called by Segment destructor) More... | |
void | clearSegments () |
clear segments More... | |
bool | connectedLanes (const GNELane *fromLane, const GNELane *toLane) const |
check if given lanes are connected More... | |
Protected Attributes | |
std::map< const GNEJunction *, std::set< Segment * > > | myJunctionSegments |
map with junction segments More... | |
std::map< const GNELane *, std::set< Segment * > > | myLaneSegments |
map with lane segments More... | |
PathCalculator * | myPathCalculator |
PathCalculator instance. More... | |
PathDraw * | myPathDraw |
PathDraw instance. More... | |
std::map< const PathElement *, std::vector< Segment * > > | myPaths |
map with path element and their associated segments More... | |
Private Member Functions | |
GNEPathManager (const GNEPathManager &)=delete | |
Invalidated copy constructor. More... | |
GNEPathManager & | operator= (const GNEPathManager &)=delete |
Invalidated assignment operator. More... | |
Definition at line 41 of file GNEPathManager.h.
GNEPathManager::GNEPathManager | ( | const GNENet * | net | ) |
constructor
Definition at line 578 of file GNEPathManager.cpp.
GNEPathManager::~GNEPathManager | ( | ) |
destructor
Definition at line 584 of file GNEPathManager.cpp.
References clearSegments(), myPathCalculator, and myPathDraw.
|
privatedelete |
Invalidated copy constructor.
|
protected |
add segments int junctionSegments (called by Segment constructor)
Definition at line 942 of file GNEPathManager.cpp.
References myJunctionSegments.
Referenced by GNEPathManager::Segment::Segment().
add segments int laneSegments (called by Segment constructor)
Definition at line 936 of file GNEPathManager.cpp.
References myLaneSegments.
Referenced by GNEPathManager::Segment::Segment().
void GNEPathManager::calculateConsecutivePathEdges | ( | PathElement * | pathElement, |
SUMOVehicleClass | vClass, | ||
const std::vector< GNEEdge * > | edges | ||
) |
calculate consecutive path edges
Definition at line 750 of file GNEPathManager.cpp.
References calculateConsecutivePathLanes().
Referenced by GNEEdgeRelData::computePathElement(), GNERoute::computePathElement(), GNETranship::computePathElement(), GNEWalk::computePathElement(), and GNEEdgeData::updateGeometry().
void GNEPathManager::calculateConsecutivePathLanes | ( | PathElement * | pathElement, |
const std::vector< GNELane * > | lanes | ||
) |
calculate consecutive path lanes
Definition at line 765 of file GNEPathManager.cpp.
References myPaths.
Referenced by calculateConsecutivePathEdges(), GNELaneAreaDetector::computePathElement(), GNEOverheadWire::computePathElement(), and GNERoute::computePathElement().
void GNEPathManager::calculatePathEdges | ( | PathElement * | pathElement, |
SUMOVehicleClass | vClass, | ||
const std::vector< GNEEdge * > | edges | ||
) |
calculate path edges (using dijkstra, require path calculator updated)
Definition at line 652 of file GNEPathManager.cpp.
References GNEPathManager::PathCalculator::calculateDijkstraPath(), GNEPathManager::Segment::markSegmentLabel(), myPathCalculator, myPaths, GNEPathManager::Segment::setNextSegment(), and GNEPathManager::Segment::setPreviousSegment().
Referenced by calculatePathJunctions(), and calculatePathLanes().
void GNEPathManager::calculatePathJunctions | ( | PathElement * | pathElement, |
SUMOVehicleClass | vClass, | ||
const std::vector< GNEJunction * > | junctions | ||
) |
calculate path junctions (using dijkstra, require path calculator updated)
Definition at line 738 of file GNEPathManager.cpp.
References GNEPathManager::PathCalculator::calculateDijkstraPath(), calculatePathEdges(), and myPathCalculator.
Referenced by GNEPersonTrip::computePathElement(), GNEVehicle::computePathElement(), and GNEWalk::computePathElement().
void GNEPathManager::calculatePathLanes | ( | PathElement * | pathElement, |
SUMOVehicleClass | vClass, | ||
const std::vector< GNELane * > | lanes | ||
) |
calculate path lanes (using dijkstra, require path calculator updated)
Definition at line 723 of file GNEPathManager.cpp.
References calculatePathEdges().
Referenced by GNEPersonTrip::computePathElement(), GNERide::computePathElement(), GNETranship::computePathElement(), GNETransport::computePathElement(), GNEVehicle::computePathElement(), and GNEWalk::computePathElement().
void GNEPathManager::clearDemandPaths | ( | ) |
clear demand paths
Definition at line 916 of file GNEPathManager.cpp.
References myPaths.
Referenced by GNENet::computeDemandElements().
|
protected |
clear segments from junction and lane Segments (called by Segment destructor)
Definition at line 948 of file GNEPathManager.cpp.
References GNEPathManager::Segment::getJunction(), GNEPathManager::Segment::getLane(), myJunctionSegments, and myLaneSegments.
|
protected |
clear segments
Definition at line 974 of file GNEPathManager.cpp.
References myPaths.
Referenced by ~GNEPathManager().
|
protected |
check if given lanes are connected
Definition at line 988 of file GNEPathManager.cpp.
References NBEdge::getConnectionsFromLane(), GNELane::getIndex(), GNEEdge::getNBEdge(), and GNELane::getParentEdge().
void GNEPathManager::drawJunctionPathElements | ( | const GUIVisualizationSettings & | s, |
const GNEJunction * | junction | ||
) |
draw junction path elements
Definition at line 849 of file GNEPathManager.cpp.
References myJunctionSegments.
Referenced by GNEJunction::drawGL().
void GNEPathManager::drawLanePathElements | ( | const GUIVisualizationSettings & | s, |
const GNELane * | lane | ||
) |
draw lane path elements
Definition at line 829 of file GNEPathManager.cpp.
References GNELane::drawOverlappedRoutes(), GNEViewNet::getDemandViewOptions(), GNEAttributeCarrier::getNet(), GNENet::getViewNet(), myLaneSegments, and GNEViewNetHelper::DemandViewOptions::showOverlappedRoutes().
Referenced by GNELane::drawGL().
void GNEPathManager::forceDrawPath | ( | const GUIVisualizationSettings & | s, |
const PathElement * | pathElement | ||
) | const |
force draw path (used carefully, ONLY when we're inspecting a path element, due slowdowns)
Definition at line 859 of file GNEPathManager.cpp.
References GNEPathManager::PathElement::drawPartialGL(), myJunctionSegments, and myLaneSegments.
Referenced by GNEViewNet::doPaintGL(), GNEViewNet::drawDeleteDottedContour(), GNEPersonTrip::drawGL(), GNERide::drawGL(), GNEWalk::drawGL(), and GNEViewNet::drawSelectDottedContour().
const GNELane * GNEPathManager::getFirstLane | ( | const PathElement * | pathElement | ) | const |
get first lane associated with path element
Definition at line 642 of file GNEPathManager.cpp.
References myPaths.
Referenced by GNEDemandElement::getBeginPosition().
GNEPathManager::PathCalculator * GNEPathManager::getPathCalculator | ( | ) |
obtain instance of PathCalculator
Definition at line 595 of file GNEPathManager.cpp.
References myPathCalculator.
Referenced by GNEDemandElement::buildMenuCommandRouteLength(), GNENet::computeDemandElements(), GNEVehicle::getDemandElementProblem(), GNEVehicle::isDemandElementValid(), GNEApplicationWindow::onCmdComputePathManager(), GNEViewNet::onCmdLaneReachability(), GNEApplicationWindow::onUpdComputePathManager(), GNEPathCreator::Path::Path(), GNEConnection::setAttribute(), GNECrossing::setAttribute(), GNEEdge::setAttribute(), GNEJunction::setAttribute(), GNELane::setAttribute(), GNEPathCreator::setPossibleCandidates(), GNEPathCreator::setSpecialCandidates(), GNERouteHandler::transformToRouteFlow(), and GNERouteHandler::transformToVehicle().
GNEPathManager::PathDraw * GNEPathManager::getPathDraw | ( | ) |
obtain instance of PathDraw
Definition at line 619 of file GNEPathManager.cpp.
References myPathDraw.
Referenced by GNEViewNet::doPaintGL(), GNERoute::drawPartialGL(), GNEVehicle::drawPartialGL(), and GNEDemandElement::drawPersonPlanPartial().
const GNEPathManager::PathElement * GNEPathManager::getPathElement | ( | const GUIGlObject * | GLObject | ) | const |
get path element
Definition at line 601 of file GNEPathManager.cpp.
References myPaths.
Referenced by GNEViewNet::drawDeleteDottedContour(), and GNEViewNet::drawSelectDottedContour().
void GNEPathManager::invalidateJunctionPath | ( | const GNEJunction * | junction | ) |
invalidate junction path
Definition at line 898 of file GNEPathManager.cpp.
References myJunctionSegments.
Referenced by GNENet::deleteJunction().
void GNEPathManager::invalidateLanePath | ( | const GNELane * | lane | ) |
invalidate lane path
Definition at line 880 of file GNEPathManager.cpp.
References myLaneSegments.
Referenced by GNENet::deleteEdge(), and GNENet::deleteLane().
bool GNEPathManager::isPathValid | ( | const PathElement * | pathElement | ) | const |
check if path element is valid
Definition at line 625 of file GNEPathManager.cpp.
References myPaths.
Referenced by GNERide::computePathElement(), GNERoute::computePathElement(), GNEContainer::drawGL(), GNEPerson::drawGL(), GNEVehicle::drawGL(), and GNEVehicle::isDemandElementValid().
|
privatedelete |
Invalidated assignment operator.
void GNEPathManager::removePath | ( | PathElement * | pathElement | ) |
remove path
Definition at line 815 of file GNEPathManager.cpp.
References myPaths.
Referenced by GNEDataInterval::removeGenericDataChild().
|
protected |
map with junction segments
Definition at line 392 of file GNEPathManager.h.
Referenced by addSegmentInJunctionSegments(), clearSegmentFromJunctionAndLaneSegments(), drawJunctionPathElements(), forceDrawPath(), and invalidateJunctionPath().
map with lane segments
Definition at line 389 of file GNEPathManager.h.
Referenced by addSegmentInLaneSegments(), clearSegmentFromJunctionAndLaneSegments(), drawLanePathElements(), forceDrawPath(), and invalidateLanePath().
|
protected |
PathCalculator instance.
Definition at line 380 of file GNEPathManager.h.
Referenced by calculatePathEdges(), calculatePathJunctions(), getPathCalculator(), and ~GNEPathManager().
|
protected |
PathDraw instance.
Definition at line 383 of file GNEPathManager.h.
Referenced by getPathDraw(), and ~GNEPathManager().
|
protected |
map with path element and their associated segments
Definition at line 386 of file GNEPathManager.h.
Referenced by calculateConsecutivePathLanes(), calculatePathEdges(), clearDemandPaths(), clearSegments(), getFirstLane(), getPathElement(), isPathValid(), and removePath().