SUMO - Simulation of Urban MObility
|
Derivation of NLEdgeControlBuilder which builds gui-edges. More...
#include <GUIEdgeControlBuilder.h>
Public Types | |
typedef std::vector< MSEdge * > | EdgeCont |
definition of the used storage for edges More... | |
Public Member Functions | |
virtual MSLane * | addLane (const std::string &id, SUMOReal maxSpeed, SUMOReal length, const PositionVector &shape, SUMOReal width, SVCPermissions permissions) |
Builds and adds a lane. More... | |
void | beginEdgeParsing (const std::string &id, const MSEdge::EdgeBasicFunction function, const std::string &streetName) |
Begins building of an MSEdge. More... | |
MSEdgeControl * | build () |
builds the MSEdgeControl-class which holds all edges More... | |
MSEdge * | buildEdge (const std::string &id, const MSEdge::EdgeBasicFunction function, const std::string &streetName) |
Builds an edge instance (GUIEdge in this case) More... | |
MSEdge * | closeEdge () |
Closes the building of an edge; The edge is completely described by now and may not be opened again. More... | |
GUIEdgeControlBuilder () | |
Constructor. More... | |
~GUIEdgeControlBuilder () | |
Destructor. More... | |
Protected Attributes | |
MSEdge * | myActiveEdge |
pointer to the currently chosen edge More... | |
unsigned int | myCurrentNumericalEdgeID |
A running number for edge numbering. More... | |
unsigned int | myCurrentNumericalLaneID |
A running number for lane numbering. More... | |
EdgeCont | myEdges |
Temporary, internal storage for built edges. More... | |
std::vector< MSLane * > * | myLaneStorage |
pointer to a temporary lane storage More... | |
Private Member Functions | |
GUIEdgeControlBuilder (const GUIEdgeControlBuilder &s) | |
invalidated copy constructor More... | |
GUIEdgeControlBuilder & | operator= (const GUIEdgeControlBuilder &s) |
invalidated assignment operator More... | |
Derivation of NLEdgeControlBuilder which builds gui-edges.
Instead of building pure microsim-objects (MSEdge and MSLane), this class builds GUIEdges and GUILanes.
Definition at line 60 of file GUIEdgeControlBuilder.h.
|
inherited |
definition of the used storage for edges
Definition at line 67 of file NLEdgeControlBuilder.h.
GUIEdgeControlBuilder::GUIEdgeControlBuilder | ( | ) |
Constructor.
[in] | glObjectIDStorage | Storage of gl-ids used to assign new ids to built edges |
Definition at line 54 of file GUIEdgeControlBuilder.cpp.
GUIEdgeControlBuilder::~GUIEdgeControlBuilder | ( | ) |
Destructor.
Definition at line 58 of file GUIEdgeControlBuilder.cpp.
|
private |
invalidated copy constructor
|
virtual |
Builds and adds a lane.
[in] | id | The lane's id |
[in] | maxSpeed | The speed allowed on this lane |
[in] | length | The lane's length |
[in] | shape | The shape of the lane |
[in] | width | The width of the lane |
[in] | permissions | Encoding of vehicle classes that may drive on this lane |
Reimplemented from NLEdgeControlBuilder.
Definition at line 70 of file GUIEdgeControlBuilder.cpp.
References MSEdge::EDGEFUNCTION_CONNECTOR, MSEdge::EDGEFUNCTION_INTERNAL, MSEdge::EDGEFUNCTION_NORMAL, MSEdge::getPurpose(), NLEdgeControlBuilder::myActiveEdge, NLEdgeControlBuilder::myCurrentNumericalLaneID, NLEdgeControlBuilder::myLaneStorage, and toString().
|
inherited |
Begins building of an MSEdge.
Builds an instance of MSEdge using "buildEdge". Stores it as the current edge in "myActiveEdge" and appends it to the list of built edges ("myEdges").
The given information is used to build the edge.
[in] | id | The id of the edge |
[in] | function | The function of the edge |
[in] | streetName | The street name of the edge |
InvalidArgument | If an edge with the same name was already built |
Definition at line 74 of file NLEdgeControlBuilder.cpp.
References NLEdgeControlBuilder::buildEdge(), MSEdge::dictionary(), NLEdgeControlBuilder::myActiveEdge, and NLEdgeControlBuilder::myEdges.
Referenced by NLHandler::beginEdgeParsing().
|
inherited |
builds the MSEdgeControl-class which holds all edges
Definition at line 121 of file NLEdgeControlBuilder.cpp.
References OptionsCont::getOptions(), MSGlobals::gUseMesoSim, and NLEdgeControlBuilder::myEdges.
Referenced by NLBuilder::buildNet().
|
virtual |
Builds an edge instance (GUIEdge in this case)
Builds an GUIEdge-instance using the given name and the current index "myCurrentNumericalEdgeID" Post-increments the index, returns the built edge.
[in] | id | The id of the edge to build |
Reimplemented from NLEdgeControlBuilder.
Definition at line 96 of file GUIEdgeControlBuilder.cpp.
References MSEdge::EDGEFUNCTION_INTERNAL, and NLEdgeControlBuilder::myCurrentNumericalEdgeID.
|
virtual |
Closes the building of an edge; The edge is completely described by now and may not be opened again.
Reimplemented from NLEdgeControlBuilder.
Definition at line 62 of file GUIEdgeControlBuilder.cpp.
References NLEdgeControlBuilder::closeEdge().
|
private |
invalidated assignment operator
|
protectedinherited |
pointer to the currently chosen edge
Definition at line 146 of file NLEdgeControlBuilder.h.
Referenced by addLane(), NLEdgeControlBuilder::addLane(), NLEdgeControlBuilder::beginEdgeParsing(), NLEdgeControlBuilder::closeEdge(), and NLEdgeControlBuilder::NLEdgeControlBuilder().
|
protectedinherited |
A running number for edge numbering.
Definition at line 140 of file NLEdgeControlBuilder.h.
Referenced by buildEdge(), and NLEdgeControlBuilder::buildEdge().
|
protectedinherited |
A running number for lane numbering.
Definition at line 137 of file NLEdgeControlBuilder.h.
Referenced by addLane(), and NLEdgeControlBuilder::addLane().
|
protectedinherited |
Temporary, internal storage for built edges.
Definition at line 143 of file NLEdgeControlBuilder.h.
Referenced by NLEdgeControlBuilder::beginEdgeParsing(), and NLEdgeControlBuilder::build().
|
protectedinherited |
pointer to a temporary lane storage
Definition at line 149 of file NLEdgeControlBuilder.h.
Referenced by addLane(), NLEdgeControlBuilder::addLane(), NLEdgeControlBuilder::closeEdge(), NLEdgeControlBuilder::NLEdgeControlBuilder(), and NLEdgeControlBuilder::~NLEdgeControlBuilder().