Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
GNEBusStop.cpp
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2001-2025 German Aerospace Center (DLR) and others.
4// This program and the accompanying materials are made available under the
5// terms of the Eclipse Public License 2.0 which is available at
6// https://www.eclipse.org/legal/epl-2.0/
7// This Source Code may also be made available under the following Secondary
8// Licenses when the conditions for such availability set forth in the Eclipse
9// Public License 2.0 are satisfied: GNU General Public License, version 2
10// or later which is available at
11// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13/****************************************************************************/
18// A lane area vehicles can halt at (GNE version)
19/****************************************************************************/
20#include <config.h>
21
23#include <netedit/GNENet.h>
27
28#include "GNEBusStop.h"
29
30// ===========================================================================
31// method definitions
32// ===========================================================================
33
38
39
44
45
47GNEBusStop::buildBusStop(const std::string& id, GNENet* net, const std::string& filename, GNELane* lane,
48 const double startPos, const double endPos, const std::string& name, const std::vector<std::string>& lines,
49 const int personCapacity, const double parkingLength, const RGBColor& color, const bool friendlyPosition,
50 const double angle, const Parameterised::Map& parameters) {
51 return new GNEBusStop(SUMO_TAG_BUS_STOP, id, net, filename, lane, startPos, endPos, name, lines,
52 personCapacity, parkingLength, color, friendlyPosition, angle, parameters);
53}
54
55
57GNEBusStop::buildTrainStop(const std::string& id, GNENet* net, const std::string& filename, GNELane* lane,
58 const double startPos, const double endPos, const std::string& name, const std::vector<std::string>& lines,
59 const int personCapacity, const double parkingLength, const RGBColor& color, const bool friendlyPosition,
60 const double angle, const Parameterised::Map& parameters) {
61 return new GNEBusStop(SUMO_TAG_TRAIN_STOP, id, net, filename, lane, startPos, endPos, name, lines,
62 personCapacity, parkingLength, color, friendlyPosition, angle, parameters);
63}
64
65
67
68
69void
71 device.openTag(getTagProperty()->getTag());
72 // write common attributes
74 // write specific attributes
77 }
80 }
83 }
84 // write all access
85 for (const auto& access : getChildAdditionals()) {
86 access->writeAdditional(device);
87 }
88 // write parameters (Always after children to avoid problems with additionals.xsd)
89 writeParams(device);
90 device.closeTag();
91}
92
93
94void
96 // Get value of option "lefthand"
97 double offsetSign = OptionsCont::getOptions().getBool("lefthand") ? -1 : 1;
98 // Update common geometry of stopping place
99 setStoppingPlaceGeometry(getParentLanes().front()->getParentEdge()->getNBEdge()->getLaneWidth(getParentLanes().front()->getIndex()) * 0.5);
100 // Obtain a copy of the shape
102 // Move shape to side
104 // Get position of the sign
105 mySymbolPosition = tmpShape.getLineCenter();
106 // update demand element children
107 for (const auto& demandElement : getChildDemandElements()) {
108 demandElement->updateGeometry();
109 }
110}
111
112
113void
115 // check if additional has to be drawn
117 // Obtain exaggeration of the draw
118 const double busStopExaggeration = getExaggeration(s);
119 // check if draw moving geometry points
120 const bool movingGeometryPoints = drawMovingGeometryPoints();
121 // get width
123 // get detail level
124 const auto d = s.getDetailLevel(busStopExaggeration);
125 // draw geometry only if we'rent in drawForObjectUnderCursor mode
127 // declare colors
128 RGBColor baseColor, signColor;
129 // set colors
130 if (mySpecialColor) {
131 baseColor = *mySpecialColor;
132 signColor = baseColor.changedBrightness(-32);
133 } else if (drawUsingSelectColor()) {
135 signColor = baseColor.changedBrightness(-32);
136 } else if (myColor != RGBColor::INVISIBLE) {
137 baseColor = myColor;
138 signColor = s.colorSettings.busStopColorSign;
139 } else if (myTagProperty->getTag() == SUMO_TAG_TRAIN_STOP) {
140 baseColor = s.colorSettings.trainStopColor;
141 signColor = s.colorSettings.trainStopColorSign;
142 } else {
143 baseColor = s.colorSettings.busStopColor;
144 signColor = s.colorSettings.busStopColorSign;
145 }
146 // draw parent and child lines
147 drawParentChildLines(s, baseColor);
148 // Add layer matrix
150 // translate to front
152 // set base color
153 GLHelper::setColor(baseColor);
154 // Draw the area using shape, shapeRotations, shapeLengths and value of exaggeration
155 GUIGeometry::drawGeometry(d, myAdditionalGeometry, stopWidth * MIN2(1.0, busStopExaggeration));
156 // draw lines
157 drawLines(d, myLines, baseColor);
158 // draw sign
159 drawSign(s, d, busStopExaggeration, baseColor, signColor, (myTagProperty->getTag() == SUMO_TAG_BUS_STOP) ? "H" : "T");
160 // draw geometry points
161 if (movingGeometryPoints && (myStartPosOverLane != INVALID_DOUBLE)) {
163 }
164 if (movingGeometryPoints && (myEndPosPosOverLane != INVALID_DOUBLE)) {
166 }
167 // pop layer matrix
169 // draw lock icon
172 } else {
174 }
175 // Draw additional ID
177 // draw additional name
179 // draw dotted contours
180 if (movingGeometryPoints) {
183 } else {
186 }
187 }
188 // draw demand element children
190 // calculate contours
191 calculateStoppingPlaceContour(s, d, stopWidth, busStopExaggeration, movingGeometryPoints);
192 }
193}
194
195
196std::string
198 switch (key) {
199 case SUMO_ATTR_LINES:
200 return joinToString(myLines, " ");
205 default:
206 return getStoppingPlaceAttribute(key);
207 }
208}
209
210
211double
215
216
217void
218GNEBusStop::setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList) {
219 switch (key) {
220 case SUMO_ATTR_LINES:
223 GNEChange_Attribute::changeAttribute(this, key, value, undoList);
224 break;
225 default:
226 setStoppingPlaceAttribute(key, value, undoList);
227 break;
228 }
229}
230
231
232bool
233GNEBusStop::isValid(SumoXMLAttr key, const std::string& value) {
234 switch (key) {
235 case SUMO_ATTR_LINES:
236 return true;
238 return canParse<int>(value) && (parse<int>(value) > 0 || parse<int>(value) == -1);
240 return canParse<double>(value) && (parse<double>(value) >= 0);
241 default:
242 return isStoppingPlaceValid(key, value);
243 }
244}
245
246// ===========================================================================
247// private
248// ===========================================================================
249
250void
251GNEBusStop::setAttribute(SumoXMLAttr key, const std::string& value) {
252 switch (key) {
253 case SUMO_ATTR_LINES:
254 myLines = GNEAttributeCarrier::parse<std::vector<std::string> >(value);
255 break;
257 myPersonCapacity = GNEAttributeCarrier::parse<int>(value);
258 break;
260 myParkingLength = GNEAttributeCarrier::parse<double>(value);
261 break;
262 default:
263 setStoppingPlaceAttribute(key, value);
264 break;
265 }
266}
267
268
272
273
274GNEBusStop::GNEBusStop(SumoXMLTag tag, const std::string& id, GNENet* net, const std::string& filename,
275 GNELane* lane, const double startPos, const double endPos, const std::string& name,
276 const std::vector<std::string>& lines, const int personCapacity, const double parkingLength,
277 const RGBColor& color, const bool friendlyPosition, const double angle,
278 const Parameterised::Map& parameters) :
279 GNEStoppingPlace(id, net, filename, tag, lane, startPos, endPos, name, friendlyPosition, color, angle, parameters),
280 myLines(lines),
281 myPersonCapacity(personCapacity),
282 myParkingLength(parkingLength) {
283}
284
285/****************************************************************************/
@ GLO_BUS_STOP
a busStop
SumoXMLTag
Numbers representing SUMO-XML - element names.
@ SUMO_TAG_BUS_STOP
A bus stop.
@ SUMO_TAG_TRAIN_STOP
A train stop (alias for bus stop)
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
@ SUMO_ATTR_LINES
@ SUMO_ATTR_PARKING_LENGTH
@ SUMO_ATTR_PERSON_CAPACITY
const double INVALID_DOUBLE
invalid double
Definition StdDefs.h:68
T MIN2(T a, T b)
Definition StdDefs.h:80
std::string joinToString(const std::vector< T > &v, const T_BETWEEN &between, std::streamsize accuracy=gPrecision)
Definition ToString.h:289
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition ToString.h:46
static void setColor(const RGBColor &c)
Sets the gl-color to this value.
Definition GLHelper.cpp:649
static void popMatrix()
pop matrix
Definition GLHelper.cpp:131
static void pushMatrix()
push matrix
Definition GLHelper.cpp:118
double getExaggeration(const GUIVisualizationSettings &s) const override
return exaggeration associated with this GLObject
void drawRightGeometryPoint(const GUIVisualizationSettings &s, const GUIVisualizationSettings::Detail d, const Position &pos, const double rot, const RGBColor &baseColor, const bool ignoreShift=false) const
draw right geometry point
GNEContour myAdditionalContour
variable used for draw additional contours
GUIGeometry myAdditionalGeometry
geometry to be precomputed in updateGeometry(...)
void drawAdditionalID(const GUIVisualizationSettings &s) const
draw additional ID
void drawAdditionalName(const GUIVisualizationSettings &s) const
draw additional name
void drawDemandElementChildren(const GUIVisualizationSettings &s) const
draw demand element children
const RGBColor * mySpecialColor
pointer to special color (used for drawing Additional with a certain color, mainly used for selection...
void drawLeftGeometryPoint(const GUIVisualizationSettings &s, const GUIVisualizationSettings::Detail d, const Position &pos, const double rot, const RGBColor &baseColor, const bool ignoreShift=false) const
draw left geometry point
void drawParentChildLines(const GUIVisualizationSettings &s, const RGBColor &color, const bool onlySymbols=false) const
draw parent and child lines
bool drawMovingGeometryPoints() const
check if draw moving geometry points
bool isAttributeCarrierSelected() const
check if attribute carrier is selected
bool drawUsingSelectColor() const
check if attribute carrier must be drawn using selecting color.
void drawInLayer(const double typeOrLayer, const double extraOffset=0) const
draw element in the given layer, or in front if corresponding flag is enabled
const GNETagProperties * getTagProperty() const
get tagProperty associated with this Attribute Carrier
GNENet * myNet
pointer to net
const GNETagProperties * myTagProperty
reference to tagProperty associated with this attribute carrier
double getAttributeDouble(SumoXMLAttr key) const override
void drawGL(const GUIVisualizationSettings &s) const override
Draws the object.
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList) override
static GNEBusStop * buildTrainStop(GNENet *net)
default constructor
std::string getAttribute(SumoXMLAttr key) const override
GNEBusStop(SumoXMLTag tag, GNENet *net)
default constructor
double myParkingLength
custom space for vehicles that park at this stop
Definition GNEBusStop.h:145
bool isValid(SumoXMLAttr key, const std::string &value) override
void updateGeometry() override
update pre-computed geometry information
std::vector< std::string > myLines
The list of lines that are assigned to this stop.
Definition GNEBusStop.h:139
void writeAdditional(OutputDevice &device) const override
write additional element into a xml file
~GNEBusStop()
Destructor.
static GNEBusStop * buildBusStop(GNENet *net)
default constructor
int myPersonCapacity
maximum number of persons that can wait at this stop
Definition GNEBusStop.h:142
static void changeAttribute(GNEAttributeCarrier *AC, SumoXMLAttr key, const std::string &value, GNEUndoList *undoList, const bool force=false)
change attribute
void drawDottedContourGeometryPoints(const GUIVisualizationSettings &s, const GUIVisualizationSettings::Detail d, const GNEAttributeCarrier *AC, const PositionVector &shape, const double radius, const double scale, const double lineWidth) const
draw dotted contour for geometry points
bool drawDottedContours(const GUIVisualizationSettings &s, const GUIVisualizationSettings::Detail d, const GNEAttributeCarrier *AC, const double lineWidth, const bool addOffset) const
draw dotted contours (basics, select, delete, inspect...)
const GNEHierarchicalContainerChildren< GNEAdditional * > & getChildAdditionals() const
return child additionals
const GNEHierarchicalContainerParents< GNELane * > & getParentLanes() const
get parent lanes
const GNEHierarchicalContainerChildren< GNEDemandElement * > & getChildDemandElements() const
return child demand elements
A NBNetBuilder extended by visualisation and editing capabilities.
Definition GNENet.h:42
GNEViewNet * getViewNet() const
get view net
Definition GNENet.cpp:2193
bool isStoppingPlaceValid(SumoXMLAttr key, const std::string &value) const
void setStoppingPlaceAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
double myEndPosPosOverLane
The end position over lane.
void writeStoppingPlaceAttributes(OutputDevice &device) const
write common stoppingPlace attributes
void drawSign(const GUIVisualizationSettings &s, const GUIVisualizationSettings::Detail d, const double exaggeration, const RGBColor &baseColor, const RGBColor &signColor, const std::string &word) const
draw sign
double getStoppingPlaceAttributeDouble(SumoXMLAttr key) const
RGBColor myColor
RGB color.
void calculateStoppingPlaceContour(const GUIVisualizationSettings &s, const GUIVisualizationSettings::Detail d, const double width, const double exaggeration, const bool movingGeometryPoints) const
check object in view
void drawLines(const GUIVisualizationSettings::Detail d, const std::vector< std::string > &lines, const RGBColor &color) const
draw lines
Position mySymbolPosition
The position of the sign.
double myStartPosOverLane
The start position over lane.
void setStoppingPlaceGeometry(double movingToSide)
set geometry common to all stopping places
GNEContour mySymbolContour
circle contour
std::string getStoppingPlaceAttribute(SumoXMLAttr key) const
double getDefaultDoubleValue(SumoXMLAttr attr) const
get default double value
SumoXMLTag getTag() const
get Tag vinculated with this attribute Property
int getDefaultIntValue(SumoXMLAttr attr) const
get default int value
const std::string & getDefaultStringValue(SumoXMLAttr attr) const
default values
const GNEViewNetHelper::DataViewOptions & getDataViewOptions() const
get data view options
const std::vector< double > & getShapeRotations() const
The rotations of the single shape parts.
static void drawGeometry(const GUIVisualizationSettings::Detail d, const GUIGeometry &geometry, const double width, double offset=0)
draw geometry
const PositionVector & getShape() const
The shape of the additional element.
GUIGlObjectType getType() const
Returns the type of the object as coded in GUIGlObjectType.
const GUIVisualizationSettings & getVisualisationSettings() const
get visualization settings (read only)
Stores the information about how to visualize structures.
bool checkDrawAdditional(Detail d, const bool selected) const
check if draw additionals
Detail getDetailLevel(const double exaggeration) const
return the detail level
GUIVisualizationColorSettings colorSettings
color settings
GUIVisualizationDottedContourSettings dottedContourSettings
dotted contour settings
GUIVisualizationStoppingPlaceSettings stoppingPlaceSettings
StoppingPlace settings.
GUIVisualizationNeteditSizeSettings neteditSizeSettings
netedit size settings
bool getBool(const std::string &name) const
Returns the boolean-value of the named option (only for Option_Bool)
static OptionsCont & getOptions()
Retrieves the options.
Static storage of an output device and its base (abstract) implementation.
OutputDevice & writeAttr(const SumoXMLAttr attr, const T &val)
writes a named attribute
OutputDevice & openTag(const std::string &xmlElement)
Opens an XML tag.
bool closeTag(const std::string &comment="")
Closes the most recently opened tag and optionally adds a comment.
std::map< std::string, std::string > Map
parameters map
void writeParams(OutputDevice &device) const
write Params in the given outputdevice
A list of positions.
void move2side(double amount, double maxExtension=100)
move position vector to side using certain amount
Position getLineCenter() const
get line center
Position getCentroid() const
Returns the centroid (closes the polygon if unclosed)
static const RGBColor INVISIBLE
Definition RGBColor.h:198
RGBColor changedBrightness(int change, int toChange=3) const
Returns a new color with altered brightness.
Definition RGBColor.cpp:200
bool showAdditionals() const
check if additionals has to be drawn
static void drawLockIcon(const GUIVisualizationSettings::Detail d, const GNEAttributeCarrier *AC, GUIGlObjectType type, const Position position, const double exaggeration, const double size=0.5, const double offsetx=0, const double offsety=0)
draw lock icon
RGBColor trainStopColorSign
color for trainStops signs
RGBColor busStopColorSign
color for busStops signs
RGBColor selectedAdditionalColor
additional selection color (busStops, Detectors...)
RGBColor busStopColor
color for busStops
RGBColor trainStopColor
color for trainStops
static const double segmentWidthSmall
width of small dotted contour segments
static const double segmentWidth
width of dotted contour segments
static const double additionalGeometryPointRadius
moving additional geometry point radius
static const double stoppingPlaceSignOffset
busStop offset
static const double busStopWidth
busStop width
static const double trainStopWidth
trainStop width