Eclipse SUMO - Simulation of Urban MObility
|
#include <config.h>
#include <string>
#include <set>
#include <limits>
#include <utils/common/StdDefs.h>
#include <utils/common/UtilExceptions.h>
#include <utils/common/StringBijection.h>
#include <utils/xml/SUMOXMLDefinitions.h>
Go to the source code of this file.
Data Structures | |
class | StopOffset |
stop offset More... | |
Typedefs | |
typedef int | SUMOEmissionClass |
typedef long long int | SVCPermissions |
bitset where each bit declares whether a certain SVC may use this edge/lane | |
Enumerations | |
enum | SUMOVehicleClass : int64_t { SVC_IGNORING = 0 , SVC_PRIVATE = 1 , SVC_EMERGENCY = 1 << 1 , SVC_AUTHORITY = 1 << 2 , SVC_ARMY = 1 << 3 , SVC_VIP = 1 << 4 , SVC_PEDESTRIAN = 1 << 5 , SVC_PASSENGER = 1 << 6 , SVC_HOV = 1 << 7 , SVC_TAXI = 1 << 8 , SVC_BUS = 1 << 9 , SVC_COACH = 1 << 10 , SVC_DELIVERY = 1 << 11 , SVC_TRUCK = 1 << 12 , SVC_TRAILER = 1 << 13 , SVC_MOTORCYCLE = 1 << 14 , SVC_MOPED = 1 << 15 , SVC_BICYCLE = 1 << 16 , SVC_E_VEHICLE = 1 << 17 , SVC_TRAM = 1 << 18 , SVC_RAIL_URBAN = 1 << 19 , SVC_RAIL = 1 << 20 , SVC_RAIL_ELECTRIC = 1 << 21 , SVC_RAIL_FAST = 1 << 22 , SVC_SHIP = 1 << 23 , SVC_CONTAINER = 1 << 24 , SVC_CABLE_CAR = 1 << 25 , SVC_SUBWAY = 1 << 26 , SVC_AIRCRAFT = 1 << 27 , SVC_WHEELCHAIR = 1 << 28 , SVC_SCOOTER = 1 << 29 , SVC_DRONE = 1 << 30 , SVC_CUSTOM1 = (long long int)1 << 31 , SVC_CUSTOM2 = (long long int)1 << 32 , SVC_RAIL_CLASSES = SVC_RAIL_ELECTRIC | SVC_RAIL_FAST | SVC_RAIL | SVC_RAIL_URBAN | SVC_TRAM | SVC_SUBWAY | SVC_CABLE_CAR , SVC_PUBLIC_CLASSES = SVC_BUS | SVC_RAIL_CLASSES | SVC_CABLE_CAR | SVC_AIRCRAFT , SVC_ROAD_CLASSES , SVC_NON_ROAD = SVC_RAIL_CLASSES | SVC_SHIP | SVC_AIRCRAFT | SVC_DRONE | SVC_CONTAINER , SVC_VULNERABLE = SVC_PEDESTRIAN | SVC_WHEELCHAIR | SVC_BICYCLE | SVC_SCOOTER } |
Definition of vehicle classes to differ between different lane usage and authority types. More... | |
enum class | SUMOVehicleShape { UNKNOWN , PEDESTRIAN , BICYCLE , MOPED , MOTORCYCLE , PASSENGER , PASSENGER_SEDAN , PASSENGER_HATCHBACK , PASSENGER_WAGON , PASSENGER_VAN , TAXI , DELIVERY , TRUCK , TRUCK_SEMITRAILER , TRUCK_1TRAILER , BUS , BUS_COACH , BUS_FLEXIBLE , BUS_TROLLEY , RAIL , RAIL_CAR , RAIL_CARGO , E_VEHICLE , ANT , SHIP , EMERGENCY , FIREBRIGADE , POLICE , RICKSHAW , SCOOTER , AIRCRAFT } |
Definition of vehicle classes to differ between different appearances. More... | |
Functions | |
bool | canParseVehicleClasses (const std::string &classes) |
Checks whether the given string contains only known vehicle classes. | |
bool | canParseVehicleShape (const std::string &shape) |
Checks whether the given string contains only known vehicle shape. | |
SVCPermissions | extraDisallowed (SVCPermissions disallowed, const MMVersion &networkVersion) |
Interprets disallowed vehicles depending on network version. | |
double | getDefaultVehicleLength (const SUMOVehicleClass vc=SVC_IGNORING) |
Returns the default vehicle length This put into a function so it can be used by NBVehicle. | |
SVCPermissions | getVehicleClassCompoundID (const std::string &name) |
Returns the OR'ed id of the compound class given by its name. | |
SUMOVehicleClass | getVehicleClassID (const std::string &name) |
Returns the class id of the abstract class given by its name. | |
const std::string & | getVehicleClassNames (SVCPermissions permissions, bool expand=false) |
Returns the ids of the given classes, divided using a ' '. | |
const std::vector< std::string > & | getVehicleClassNamesList (SVCPermissions permissions) |
Returns the ids of the given classes, divided using a ' '. | |
SUMOVehicleShape | getVehicleShapeID (const std::string &name) |
Returns the class id of the shape class given by its name. | |
std::string | getVehicleShapeName (SUMOVehicleShape id) |
Returns the class name of the shape class given by its id. | |
SVCPermissions | invertPermissions (SVCPermissions permissions) |
negate the given permissions and ensure that only relevant bits are set | |
bool | isAirway (SVCPermissions permissions) |
Returns whether an edge with the given permissions is an airway edge. | |
bool | isBikepath (SVCPermissions permissions) |
Returns whether an edge with the given permissions is a bicycle edge. | |
bool | isForbidden (SVCPermissions permissions) |
Returns whether an edge with the given permissions is a forbidden edge. | |
bool | isForVulnerableModes (SVCPermissions permissions) |
Returns whether an edge with the given permissions allows only vulnerable road users. | |
bool | isRailway (SVCPermissions permissions) |
Returns whether an edge with the given permissions is a railway edge. | |
bool | isSidewalk (SVCPermissions permissions) |
Returns whether an edge with the given permissions is a sidewalk. | |
bool | isTram (SVCPermissions permissions) |
Returns whether an edge with the given permissions is a tram edge. | |
bool | isWaterway (SVCPermissions permissions) |
Returns whether an edge with the given permissions is a waterway edge. | |
bool | noVehicles (SVCPermissions permissions) |
Returns whether an edge with the given permissions forbids vehicles. | |
SVCPermissions | parseVehicleClasses (const std::string &allowedS) |
Parses the given definition of allowed vehicle classes into the given containers Deprecated classes go into a separate container. | |
SVCPermissions | parseVehicleClasses (const std::string &allowedS, const std::string &disallowedS, const MMVersion &networkVersion=NETWORK_VERSION) |
Encodes the given vector of allowed and disallowed classes into a bitset. | |
SVCPermissions | parseVehicleClasses (const std::vector< std::string > &allowedS) |
Encodes the given vector of allowed class into a bitset Unlike the methods which parse a string it gives immediately a warning output on deprecated vehicle classes. | |
void | writePermissions (OutputDevice &into, SVCPermissions permissions) |
writes allowed disallowed attributes if needed; | |
void | writePreferences (OutputDevice &into, SVCPermissions preferred) |
writes allowed disallowed attributes if needed; | |
Variables | |
const double | DEFAULT_BICYCLE_SPEED |
const std::string | DEFAULT_BIKETYPE_ID |
const double | DEFAULT_CONTAINER_TRANSHIP_SPEED |
const std::string | DEFAULT_CONTAINERTYPE_ID |
const double | DEFAULT_PEDESTRIAN_SPEED |
const std::string | DEFAULT_PEDTYPE_ID |
const std::string | DEFAULT_RAILTYPE_ID |
const std::string | DEFAULT_TAXITYPE_ID |
const double | DEFAULT_VEH_PROB |
const std::string | DEFAULT_VTYPE_ID |
const std::set< std::string > | DEFAULT_VTYPES |
std::set< std::string > | deprecatedVehicleClassesSeen |
const SUMOEmissionClass | EMISSION_CLASS_UNSPECIFIED |
emission class not specified | |
const SUMOVehicleClass | SUMOVehicleClass_MAX |
StringBijection< SUMOVehicleClass > | SumoVehicleClassStrings |
StringBijection< SUMOVehicleShape > | SumoVehicleShapeStrings |
const SVCPermissions | SVC_UNSPECIFIED |
permissions not specified | |
const SVCPermissions | SVCAll |
all VClasses are allowed | |
Definition in file SUMOVehicleClass.h.
typedef int SUMOEmissionClass |
Definition at line 250 of file SUMOVehicleClass.h.
typedef long long int SVCPermissions |
bitset where each bit declares whether a certain SVC may use this edge/lane
Definition at line 237 of file SUMOVehicleClass.h.
enum SUMOVehicleClass : int64_t |
Definition of vehicle classes to differ between different lane usage and authority types.
Bits:
From NavTeq:
enum type decleration to work around visual studio non-compliance see https://gist.github.com/NTimmons/a7229b1dacf8280be2292ebd6b2b8b5d#file-enum-h
Definition at line 140 of file SUMOVehicleClass.h.
|
strong |
Definition of vehicle classes to differ between different appearances.
Definition at line 48 of file SUMOVehicleClass.h.
|
extern |
Checks whether the given string contains only known vehicle classes.
Definition at line 375 of file SUMOVehicleClass.cpp.
References StringTokenizer::hasNext(), StringTokenizer::next(), parseVehicleClassesCached, SumoVehicleClassStrings, and VehicleClassNameAll.
Referenced by GNEClosingLaneReroute::isValid(), GNEClosingReroute::isValid(), GNEVType::isValid(), GNEConnection::isValid(), GNEEdge::isValid(), GNEEdgeType::isValid(), GNELane::isValid(), and GNELaneType::isValid().
|
extern |
Checks whether the given string contains only known vehicle shape.
Definition at line 490 of file SUMOVehicleClass.cpp.
References SumoVehicleShapeStrings.
Referenced by GNEVType::isValid().
|
extern |
Interprets disallowed vehicles depending on network version.
[in] | disallowed | The values found in the disallow attribute |
[in] | networkVersion | The version of the network from which the disallow value was loaded |
Definition at line 408 of file SUMOVehicleClass.cpp.
References SVC_CABLE_CAR, SVC_RAIL_FAST, SVC_RAIL_URBAN, and SVC_SUBWAY.
Referenced by NIImporter_OpenStreetMap::applyLaneUse(), and parseVehicleClasses().
|
extern |
Returns the default vehicle length This put into a function so it can be used by NBVehicle.
[in] | vc | the vehicle class |
Definition at line 549 of file SUMOVehicleClass.cpp.
References SVC_AIRCRAFT, SVC_BICYCLE, SVC_BUS, SVC_COACH, SVC_CONTAINER, SVC_DELIVERY, SVC_DRONE, SVC_EMERGENCY, SVC_MOPED, SVC_MOTORCYCLE, SVC_PEDESTRIAN, SVC_RAIL, SVC_RAIL_ELECTRIC, SVC_RAIL_FAST, SVC_RAIL_URBAN, SVC_SCOOTER, SVC_SHIP, SVC_SUBWAY, SVC_TRAILER, SVC_TRAM, SVC_TRUCK, and SVC_WHEELCHAIR.
|
extern |
Returns the OR'ed id of the compound class given by its name.
[in] | name | The name of the abstract vehicle class |
Definition at line 329 of file SUMOVehicleClass.cpp.
References SumoVehicleClassStrings, and SVC_IGNORING.
|
extern |
Returns the class id of the abstract class given by its name.
[in] | name | The name of the abstract vehicle class |
Definition at line 320 of file SUMOVehicleClass.cpp.
References SumoVehicleClassStrings.
Referenced by NIXMLPTHandler::addPTLine(), GNEFrameAttributeModules::AttributesEditorRow::fillComboBox(), NIXMLTypesHandler::myStartElement(), NLHandler::myStartElement(), RONetHandler::myStartElement(), SUMOVehicleParserHelper::parseVehicleClass(), parseVehicleClasses(), parseVehicleClasses(), RODFNet::RODFNet(), and GNEVType::setAttribute().
|
extern |
Returns the ids of the given classes, divided using a ' '.
[in] | the | permissions to encode |
[in] | expand | whether 'all' should be used |
Definition at line 288 of file SUMOVehicleClass.cpp.
References getVehicleClassNamesCached, getVehicleClassNamesList(), joinToString(), SVCAll, and VehicleClassNameAll.
Referenced by MSRouteHandler::closeRoute(), IntermodalRouter< E, L, N, V >::compute(), GNEClosingLaneReroute::getAttribute(), GNEClosingReroute::getAttribute(), GNEConnection::getAttribute(), GNEEdge::getAttribute(), GNEEdgeType::getAttribute(), GNELane::getAttribute(), GNELaneType::getAttribute(), GNEEdge::getAttributeForSelection(), GNELane::getAttributeForSelection(), NBEdge::Connection::getDescription(), StopOffset::getExceptions(), GUILane::getParameterWindow(), NBNodeCont::joinNodeCluster(), GNEAllowVClassesDialog::onCmdAccept(), GNEAllowVClassesDialog::onCmdReset(), NBNode::recheckVClassConnections(), GNENet::restrictLane(), GNEClosingLaneReroute::writeAdditional(), NWWriter_SUMO::writeConnection(), NWWriter_XML::writeEdgesAndConnections(), NBTypeCont::writeEdgeTypes(), NWWriter_SUMO::writeLane(), writePermissions(), writePreferences(), and NWWriter_SUMO::writeStopOffsets().
|
extern |
Returns the ids of the given classes, divided using a ' '.
[in] | the | permissions to encode |
Definition at line 301 of file SUMOVehicleClass.cpp.
References SumoVehicleClassStrings, SVC_IGNORING, and vehicleClassNamesListCached.
Referenced by LIBSUMO_NAMESPACE::Lane::getAllowed(), LIBSUMO_NAMESPACE::Lane::getChangePermissions(), LIBSUMO_NAMESPACE::Lane::getDisallowed(), and getVehicleClassNames().
|
extern |
Returns the class id of the shape class given by its name.
[in] | name | The name of the shape class |
Definition at line 480 of file SUMOVehicleClass.cpp.
References SumoVehicleShapeStrings.
Referenced by GNEVehicle::drawGL(), GNEVType::setAttribute(), and GNEVehicleTypeDialog::VTypeAttributes::VShapeRow::setVShapeLabelImage().
|
extern |
Returns the class name of the shape class given by its id.
[in] | id | The id of the shape class |
Definition at line 496 of file SUMOVehicleClass.cpp.
References SumoVehicleShapeStrings.
Referenced by GNEVType::getAttribute(), GUIVehicle::getTypeParameterWindow(), GUIMEVehicle::getTypeParameterWindow(), GNEVType::overwriteVType(), and SUMOVTypeParameter::write().
|
extern |
negate the given permissions and ensure that only relevant bits are set
Definition at line 423 of file SUMOVehicleClass.cpp.
References SVCAll.
Referenced by GNEClosingLaneReroute::getAttribute(), GNEClosingReroute::getAttribute(), GNEConnection::getAttribute(), GNEEdge::getAttribute(), GNEEdgeType::getAttribute(), GNELane::getAttribute(), GNELaneType::getAttribute(), LIBSUMO_NAMESPACE::Lane::getDisallowed(), parseVehicleClasses(), GNEClosingLaneReroute::setAttribute(), GNEClosingReroute::setAttribute(), GNEConnection::setAttribute(), GNEEdgeType::setAttribute(), GNELane::setAttribute(), GNELaneType::setAttribute(), LIBSUMO_NAMESPACE::Edge::setDisallowed(), LIBSUMO_NAMESPACE::Edge::setDisallowed(), and LIBSUMO_NAMESPACE::Lane::setDisallowed().
|
extern |
Returns whether an edge with the given permissions is an airway edge.
[in] | permissions | The permissions of the edge |
Definition at line 520 of file SUMOVehicleClass.cpp.
References SVC_AIRCRAFT, and SVC_DRONE.
Referenced by GUILane::drawGL(), and GUIJunctionWrapper::GUIJunctionWrapper().
|
extern |
Returns whether an edge with the given permissions is a bicycle edge.
[in] | permissions | The permissions of the edge |
Definition at line 509 of file SUMOVehicleClass.cpp.
References SVC_BICYCLE, and SVC_PASSENGER.
Referenced by NBEdge::getInternalLaneWidth().
|
extern |
Returns whether an edge with the given permissions is a forbidden edge.
[in] | permissions | The permissions of the edge |
Definition at line 525 of file SUMOVehicleClass.cpp.
References SVCAll.
Referenced by NBOwnTLDef::allowUnrelated(), NBNode::ApproachingDivider::ApproachingDivider(), NBEdgeCont::checkGeometries(), NBEdge::divideOnEdges(), noVehicles(), NBOwnTLDef::patchStateForCrossings(), and NBEdge::recheckLanes().
|
extern |
Returns whether an edge with the given permissions allows only vulnerable road users.
[in] | permissions | The permissions of the edge |
Definition at line 537 of file SUMOVehicleClass.cpp.
References SVC_VULNERABLE.
Referenced by NBNodeCont::pruneClusterFringe().
|
extern |
Returns whether an edge with the given permissions is a railway edge.
[in] | permissions | The permissions of the edge |
Definition at line 501 of file SUMOVehicleClass.cpp.
References SVC_PASSENGER, and SVC_RAIL_CLASSES.
Referenced by NIXMLPTHandler::addPTStop(), MSDevice_Tripinfo::addRideTransportData(), NBEdge::appendTurnaround(), NBRequest::bidiConflict(), NBEdge::buildInnerEdges(), NGEdge::buildNBEdge(), MSDriveWay::buildRoute(), MSDriveWay::checkCrossingFlanks(), NBEdgeCont::checkGeometries(), MSVehicle::cleanupFurtherLanes(), NBTrafficLightDefinition::collectAllLinks(), NBEdge::computeEdge2Edges(), MSVehicle::computeFurtherLanes(), NBNodeShapeComputer::computeNodeShapeDefault(), NBOwnTLDef::computeUnblockedWeightedStreamNumber(), NBPTLineCont::constructRoute(), MSLane::detectCollisions(), GUILane::drawAsRailway(), MSVehicle::enterLaneAtLaneChange(), MSVehicle::enterLaneAtMove(), MSVehicle::executeMove(), NIImporter_OpenStreetMap::extendRailwayDistances(), GNELane::getColorValue(), GUILane::getColorValue(), NWWriter_OpenDrive::getLaneType(), NBNode::getLinkState(), MSLane::getMaximumBrakeDist(), GUIVehicle::getParameterWindow(), RouterProvider< E, L, N, V >::getVehicleRouter(), NBRailwaySignalGuesser::guessByStops(), GUIJunctionWrapper::GUIJunctionWrapper(), MSLane::incorporateVehicle(), NIImporter_OpenStreetMap::insertEdge(), NIImporter_OpenStreetMap::interpretTransportType(), NBEdge::isBidiRail(), NBNode::isExplicitRailNoBidi(), MSLane::isInsertionSuccess(), NBEdge::isRailDeadEnd(), MSVehicle::leaveLane(), MSVehicle::planMoveInternal(), MSVehicle::processNextStop(), NBNodeCont::pruneClusterFringe(), NBNodeCont::removeComponents(), NBEdge::removeInvalidConnections(), RORouteDef::repairCurrentRoute(), MSVehicle::setApproachingForAllLinks(), NBEdge::shiftPositionAtNode(), GNELane::DrawingConstants::update(), MSVehicle::updateBestLanes(), MSVehicle::updateFurtherLanes(), and MSRailSignalControl::vehicleStateChanged().
|
extern |
Returns whether an edge with the given permissions is a sidewalk.
[in] | permissions | The permissions of the edge |
Definition at line 531 of file SUMOVehicleClass.cpp.
References SVC_PEDESTRIAN, and SVCAll.
Referenced by NBEdgeCont::checkGeometries(), and noVehicles().
|
extern |
Returns whether an edge with the given permissions is a tram edge.
[in] | permissions | The permissions of the edge |
Definition at line 505 of file SUMOVehicleClass.cpp.
References SVC_PASSENGER, SVC_RAIL_CLASSES, and SVC_TRAM.
Referenced by NBEdgeCont::joinTramEdges().
|
extern |
Returns whether an edge with the given permissions is a waterway edge.
[in] | permissions | The permissions of the edge |
Definition at line 515 of file SUMOVehicleClass.cpp.
References SVC_SHIP.
Referenced by NBNodeTypeComputer::computeNodeTypes(), GUILane::drawAsWaterway(), GNELane::drawAsWaterway(), GUILane::drawGL(), GUIJunctionWrapper::GUIJunctionWrapper(), and NBNodeCont::removeComponents().
|
extern |
Returns whether an edge with the given permissions forbids vehicles.
[in] | permissions | The permissions of the edge |
Definition at line 543 of file SUMOVehicleClass.cpp.
References isForbidden(), and isSidewalk().
Referenced by MSActuatedTrafficLightLogic::init(), MSDelayBasedTrafficLightLogic::init(), and NEMALogic::init().
|
extern |
Parses the given definition of allowed vehicle classes into the given containers Deprecated classes go into a separate container.
[in] | classNames | Space separated class names |
[out] | container | The set of vehicle classes to fill throws ProcessError if parsing fails |
Definition at line 342 of file SUMOVehicleClass.cpp.
References deprecatedVehicleClassesSeen, getVehicleClassID(), gIgnoreUnknownVClass, StringTokenizer::hasNext(), StringTokenizer::next(), parseVehicleClassesCached, SumoVehicleClassStrings, SVCAll, TL, VehicleClassNameAll, WRITE_ERRORF, and WRITE_WARNINGF.
Referenced by NIImporter_SUMO::_loadNetwork(), NIImporter_SUMO::addConnection(), NIXMLEdgesHandler::addEdge(), NIXMLEdgesHandler::addLane(), NLHandler::addLane(), TraCIServer::addSubscriptionFilter(), LIBSUMO_NAMESPACE::Vehicle::addSubscriptionFilterVClass(), NBEdgeCont::applyOptions(), NBNetBuilder::applyOptions(), NLEdgeControlBuilder::build(), MSVehicleType::check(), NBNetBuilder::compute(), MSTriggeredRerouter::myStartElement(), NIXMLTypesHandler::myStartElement(), RONetHandler::parseLane(), NIXMLConnectionsHandler::parseLaneBound(), AdditionalHandler::parseSumoBaseObject(), parseVehicleClasses(), LIBSUMO_NAMESPACE::Edge::setAllowed(), LIBSUMO_NAMESPACE::Edge::setAllowed(), LIBSUMO_NAMESPACE::Lane::setAllowed(), GNEClosingLaneReroute::setAttribute(), GNEClosingReroute::setAttribute(), GNEConnection::setAttribute(), GNEEdgeType::setAttribute(), GNELane::setAttribute(), GNELaneType::setAttribute(), LIBSUMO_NAMESPACE::Lane::setChangePermissions(), LIBSUMO_NAMESPACE::Edge::setDisallowed(), LIBSUMO_NAMESPACE::Edge::setDisallowed(), LIBSUMO_NAMESPACE::Lane::setDisallowed(), and StopOffset::StopOffset().
|
extern |
Encodes the given vector of allowed and disallowed classes into a bitset.
[in] | allowedS | Definition which classes are allowed |
[in] | disallowedS | Definition which classes are not allowed |
Definition at line 394 of file SUMOVehicleClass.cpp.
References extraDisallowed(), invertPermissions(), parseVehicleClasses(), SVCAll, TL, and WRITE_WARNING.
|
extern |
Encodes the given vector of allowed class into a bitset Unlike the methods which parse a string it gives immediately a warning output on deprecated vehicle classes.
[in] | classesS | The names vector to parse |
Definition at line 429 of file SUMOVehicleClass.cpp.
References getVehicleClassID(), SumoVehicleClassStrings, SVCAll, TL, VehicleClassNameAll, and WRITE_WARNINGF.
|
extern |
writes allowed disallowed attributes if needed;
Definition at line 447 of file SUMOVehicleClass.cpp.
References getVehicleClassNames(), NUM_VCLASSES, SUMO_ATTR_ALLOW, SUMO_ATTR_DISALLOW, SUMOVehicleClass_MAX, SVCAll, VehicleClassNameAll, and OutputDevice::writeAttr().
Referenced by NWWriter_SUMO::writeConnection(), NWWriter_XML::writeEdgesAndConnections(), NBTypeCont::writeEdgeTypes(), and NWWriter_SUMO::writeLane().
|
extern |
writes allowed disallowed attributes if needed;
Definition at line 470 of file SUMOVehicleClass.cpp.
References getVehicleClassNames(), SUMO_ATTR_PREFER, SVCAll, and OutputDevice::writeAttr().
Referenced by NWWriter_XML::writeEdgesAndConnections(), and NWWriter_SUMO::writeLane().
|
extern |
|
extern |
Referenced by GNENetHelper::AttributeCarriers::addDefaultVTypes(), ROPerson::addTrip(), RONet::checkVType(), DEFAULT_VTYPES(), LIBSUMO_NAMESPACE::Simulation::findIntermodalRoute(), MSStageTrip::getVehicles(), RONet::getVehicleTypeSecure(), MSVehicleControl::initDefaultTypes(), GNEVType::isAttributeEnabled(), GNEDemandElementSelector::refreshDemandElementSelector(), GNETypeFrame::TypeEditor::resetType(), and RONet::RONet().
|
extern |
Referenced by MSRouteHandler::addTranship().
|
extern |
Referenced by GNENetHelper::AttributeCarriers::addDefaultVTypes(), DEFAULT_VTYPES(), GNEAttributeCarrier::fillCommonContainerAttributes(), MSVehicleControl::initDefaultTypes(), SUMOVehicleParserHelper::parseFlowAttributes(), SUMOVehicleParserHelper::parseVehicleAttributes(), GNEDemandElementSelector::refreshDemandElementSelector(), GNETypeFrame::TypeEditor::resetType(), MSTransportable::routeOutput(), and GNEContainer::writeDemandElement().
|
extern |
|
extern |
Referenced by GNENetHelper::AttributeCarriers::addDefaultVTypes(), MSPModel_JuPedSim::addWaitingSet(), RONet::checkVType(), RORouteHandler::closePerson(), RORouteHandler::closePersonFlow(), DEFAULT_VTYPES(), LIBSUMO_NAMESPACE::Simulation::findIntermodalRoute(), RONet::getVehicleTypeSecure(), MSVehicleControl::initDefaultTypes(), GNEVType::isAttributeEnabled(), MSPModel_Striping::MSPModel_Striping(), SUMOVehicleParserHelper::parseFlowAttributes(), SUMOVehicleParserHelper::parseVehicleAttributes(), GNEDemandElementSelector::refreshDemandElementSelector(), GNETypeFrame::TypeEditor::resetType(), RONet::RONet(), MSTransportable::routeOutput(), MSStageDriving::setArrived(), MSDevice_FCDReplay::FCDHandler::updateTrafficObjects(), and GNEPerson::writeDemandElement().
|
extern |
Referenced by GNENetHelper::AttributeCarriers::addDefaultVTypes(), RONet::checkVType(), DEFAULT_VTYPES(), RONet::getVehicleTypeSecure(), MSVehicleControl::initDefaultTypes(), GNEVType::isAttributeEnabled(), GNEDemandElementSelector::refreshDemandElementSelector(), GNETypeFrame::TypeEditor::resetType(), and RONet::RONet().
|
extern |
Referenced by GNENetHelper::AttributeCarriers::addDefaultVTypes(), ROPerson::addTrip(), RONet::checkVType(), DEFAULT_VTYPES(), LIBSUMO_NAMESPACE::Simulation::findIntermodalRoute(), MSStageTrip::getVehicles(), RONet::getVehicleTypeSecure(), MSVehicleControl::initDefaultTypes(), GNEVType::isAttributeEnabled(), GNEDemandElementSelector::refreshDemandElementSelector(), MSStageTrip::reroute(), GNETypeFrame::TypeEditor::resetType(), and RONet::RONet().
|
extern |
|
extern |
Referenced by GNENetHelper::AttributeCarriers::addDefaultVTypes(), ROPerson::addTrip(), GNEAdditionalHandler::buildCalibratorFlow(), RONet::checkFlows(), RONet::checkVType(), MSRouteHandler::closeVehicle(), RORouteHandler::closeVehicle(), computeRoutes(), computeRoutes(), DEFAULT_VTYPES(), GNEAttributeCarrier::fillAdditionalElements(), GNEAttributeCarrier::fillCommonPersonAttributes(), GNEAttributeCarrier::fillVehicleElements(), LIBSUMO_NAMESPACE::Simulation::findIntermodalRoute(), LIBSUMO_NAMESPACE::Simulation::findRoute(), GNENetHelper::AttributeCarriers::getDefaultType(), RONet::getVehicleTypeSecure(), GNETypeFrame::GNETypeFrame(), MSVehicleControl::initDefaultTypes(), GNEVType::isAttributeEnabled(), MSCalibrator::myStartElement(), MSCalibrator::VehicleRemover::notifyEnter(), GNEVType::overwriteVType(), GNEDemandElementSelector::refreshDemandElementSelector(), GNETypeFrame::TypeSelector::refreshTypeSelector(), GNETypeFrame::TypeEditor::resetType(), ROMAAssignments::ROMAAssignments(), RONet::RONet(), MSInsertionControl::saveState(), GNECalibratorFlow::setAttribute(), GNEDemandElementSelector::showDemandElementSelector(), GNETypeFrame::TypeSelector::TypeSelector(), MSDevice_FCDReplay::FCDHandler::updateTrafficObjects(), GNEVehicle::writeDemandElement(), RODFDetectorCon::writeEmitters(), and MSDevice_Vehroutes::writeOutput().
|
extern |
|
extern |
Definition at line 93 of file SUMOVehicleClass.cpp.
Referenced by NIImporter_SUMO::_loadNetwork(), NLEdgeControlBuilder::build(), loadNet(), ROLoader::loadNet(), NILoader::loadXML(), and parseVehicleClasses().
|
extern |
emission class not specified
Definition at line 162 of file SUMOVehicleClass.cpp.
Referenced by EnergyParams::EnergyParams().
|
extern |
Definition at line 156 of file SUMOVehicleClass.cpp.
Referenced by MSEdge::rebuildAllowedLanes(), MSEdge::rebuildAllowedTargets(), and writePermissions().
|
extern |
|
extern |
|
extern |
permissions not specified
Definition at line 160 of file SUMOVehicleClass.cpp.
Referenced by NIImporter_SUMO::addConnection(), NIXMLEdgesHandler::addEdge(), NBEdge::allowsChangingLeft(), NBEdge::allowsChangingRight(), NBEdge::applyTurnSigns(), NBEdge::divideOnEdges(), GNEConnection::getAttribute(), NBEdge::Connection::getDescription(), NBNodeCont::joinNodeCluster(), NIXMLConnectionsHandler::parseLaneBound(), NBEdge::recheckLanes(), GNEConnection::setAttribute(), NBEdge::setConnection(), NBEdge::updateChangeRestrictions(), NWWriter_SUMO::writeConnection(), NWWriter_XML::writeEdgesAndConnections(), NWWriter_SUMO::writeInternalEdges(), and NWWriter_SUMO::writeLane().
|
extern |
all VClasses are allowed
Definition at line 158 of file SUMOVehicleClass.cpp.
Referenced by IntermodalNetwork< E, L, N, V >::addCarEdges(), NLHandler::addLane(), NIImporter_OpenStreetMap::applyChangeProhibition(), NBEdge::applyTurnSigns(), NBEdge::buildInnerEdges(), NBNode::computeLanes2Lanes(), NIImporter_MATSim::EdgesHandler::computePermission(), NBEdge::dismissVehicleClassInformation(), LIBSUMO_NAMESPACE::Lane::getAllowed(), NWWriter_DlrNavteq::getAllowedTypes(), GNEEdgeType::getAttribute(), GNELaneType::getAttribute(), GNEEdge::getAttributeForSelection(), GNELane::getAttributeForSelection(), NBEdge::getFirstNonPedestrianNonBicycleLaneIndex(), NWWriter_OpenDrive::getLaneType(), MSEdge::getNumDrivingLanes(), getVehicleClassNames(), NBEdgeCont::guessRoundabouts(), NBEdge::hasPermissions(), NBRailwayTopologyAnalyzer::hasRailway(), MSEdge::initialize(), GUIVisualizationSettings::initNeteditDefaults(), GUIVisualizationSettings::initSumoGuiDefaults(), invertPermissions(), isForbidden(), isSidewalk(), MSTriggeredRerouter::myEndElement(), GNERerouterIntervalDialog::onCmdAddClosingLaneReroute(), GNERerouterIntervalDialog::onCmdAddClosingReroute(), RONetHandler::parseLane(), parseVehicleClasses(), parseVehicleClasses(), parseVehicleClasses(), NBEdge::prohibitsChanging(), MSEdge::rebuildAllowedLanes(), NBEdge::recheckLanes(), MSLane::resetPermissions(), ROEdge::ROEdge(), GNEEdgeType::setAttribute(), GNELaneType::setAttribute(), MSTriggeredRerouter::setPermissions(), MSTriggeredRerouter::triggerRouting(), NBEdge::updateChangeRestrictions(), GNEClosingLaneReroute::writeAdditional(), NWWriter_SUMO::writeConnection(), NWWriter_XML::writeEdgesAndConnections(), NWWriter_SUMO::writeInternalEdges(), NWWriter_SUMO::writeLane(), writePermissions(), writePreferences(), and NWWriter_DlrNavteq::writeProhibitedManoeuvres().