Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
GNEChargingStation.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 class for visualizing chargingStation geometry (adapted from GUILaneWrapper)
19/****************************************************************************/
20
21#include <netedit/GNENet.h>
26
27#include "GNEChargingStation.h"
28
29// ===========================================================================
30// member method definitions
31// ===========================================================================
32
36
37
38GNEChargingStation::GNEChargingStation(const std::string& id, GNENet* net, const std::string& filename, GNELane* lane, const double startPos, const double endPos,
39 const std::string& name, double chargingPower, double efficiency, bool chargeInTransit, SUMOTime chargeDelay,
40 const std::string& chargeType, const SUMOTime waitingTime, const std::string& parkingAreaID, bool friendlyPosition, const Parameterised::Map& parameters) :
41 GNEStoppingPlace(id, net, filename, SUMO_TAG_CHARGING_STATION, lane, startPos, endPos, name, friendlyPosition, RGBColor::INVISIBLE, parameters),
42 myChargingPower(chargingPower),
43 myEfficiency(efficiency),
44 myChargeInTransit(chargeInTransit),
45 myChargeDelay(chargeDelay),
46 myChargeType(chargeType),
47 myWaitingTime(waitingTime),
48 myParkingAreaID(parkingAreaID) {
49 // update centering boundary without updating grid
51}
52
53
55
56
57void
88
89
90void
92 // Get value of option "lefthand"
93 const double offsetSign = OptionsCont::getOptions().getBool("lefthand") ? -1 : 1;
94
95 // Update common geometry of stopping place
97
98 // Obtain a copy of the shape
100
101 // Move shape to side
103
104 // Get position of the sign
105 mySymbolPosition = tmpShape.getLineCenter();
106}
107
108
109void
111 // first check if additional has to be drawn
113 // Obtain exaggeration of the draw
114 const double chargingStationExaggeration = getExaggeration(s);
115 // check if draw moving geometry points
116 const bool movingGeometryPoints = drawMovingGeometryPoints(false);
117 // get detail level
118 const auto d = s.getDetailLevel(chargingStationExaggeration);
119 // draw geometry only if we'rent in drawForObjectUnderCursor mode
121 // declare colors
122 RGBColor baseColor, signColor;
123 // set colors
124 if (mySpecialColor) {
125 baseColor = *mySpecialColor;
126 signColor = baseColor.changedBrightness(-32);
127 } else if (drawUsingSelectColor()) {
129 signColor = baseColor.changedBrightness(-32);
130 } else {
133 }
134 // draw parent and child lines
136 // Add a layer matrix
138 // translate to front
140 // set base color
141 GLHelper::setColor(baseColor);
142 // Draw the area using shape, shapeRotations, shapeLengths and value of exaggeration
144 // draw charging power and efficiency
145 drawLines(d, {toString(myChargingPower)}, baseColor);
146 // draw sign
147 drawSign(s, d, chargingStationExaggeration, baseColor, signColor, "C");
148 // draw geometry points
149 if (movingGeometryPoints && (myStartPosition != INVALID_DOUBLE)) {
151 }
152 if (movingGeometryPoints && (myEndPosition != INVALID_DOUBLE)) {
154 }
155 // pop layer matrix
157 // draw lock icon
159 // Draw additional ID
161 // draw additional name
163 // draw dotted contours
164 if (movingGeometryPoints) {
167 } else {
170 }
171 }
172 // draw demand element children
174 // calculate contours
175 calculateStoppingPlaceContour(s, d, s.stoppingPlaceSettings.chargingStationWidth, chargingStationExaggeration, movingGeometryPoints);
176 }
177}
178
179
180std::string
182 switch (key) {
186 return toString(myEfficiency);
192 return myChargeType;
196 return myParkingAreaID;
197 default:
198 return getStoppingPlaceAttribute(this, key);
199 }
200}
201
202
203double
205 switch (key) {
207 return myChargingPower;
209 return myEfficiency;
210 default:
212 }
213}
214
215
216void
217GNEChargingStation::setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList) {
218 switch (key) {
226 GNEChange_Attribute::changeAttribute(this, key, value, undoList);
227 break;
228 default:
229 setStoppingPlaceAttribute(key, value, undoList);
230 break;
231 }
232}
233
234
235bool
236GNEChargingStation::isValid(SumoXMLAttr key, const std::string& value) {
237 switch (key) {
239 return (canParse<double>(value) && parse<double>(value) >= 0);
241 if (canParse<double>(value)) {
242 const double efficiency = parse<double>(value);
243 return (efficiency >= 0) && (efficiency <= 1);
244 } else {
245 return false;
246 }
248 return canParse<bool>(value);
250 return canParse<SUMOTime>(value) && parse<SUMOTime>(value) >= 0;
253 }
255 return canParse<SUMOTime>(value) && parse<SUMOTime>(value) >= 0;
257 return isValidAdditionalID(value);
258 default:
259 return isStoppingPlaceValid(key, value);
260 }
261}
262
263// ===========================================================================
264// private
265// ===========================================================================
266
267void
268GNEChargingStation::setAttribute(SumoXMLAttr key, const std::string& value) {
269 switch (key) {
271 myChargingPower = parse<double>(value);
272 break;
274 myEfficiency = parse<double>(value);
275 break;
277 myChargeInTransit = parse<bool>(value);
278 break;
280 myChargeDelay = parse<SUMOTime>(value);
281 break;
283 myChargeType = value;
284 break;
286 myWaitingTime = parse<SUMOTime>(value);
287 break;
289 myParkingAreaID = value;
290 break;
291 default:
292 setStoppingPlaceAttribute(this, key, value);
293 break;
294 }
295}
296
297
298/****************************************************************************/
long long int SUMOTime
Definition GUI.h:36
@ GLO_CHARGING_STATION
a chargingStation
std::string time2string(SUMOTime t, bool humanReadable)
convert SUMOTime to string (independently of global format setting)
Definition SUMOTime.cpp:91
@ SUMO_TAG_CHARGING_STATION
A Charging Station.
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
@ SUMO_ATTR_WAITINGTIME
@ SUMO_ATTR_PARKING_AREA
@ SUMO_ATTR_CHARGETYPE
Charge type (fuel or electric)
@ SUMO_ATTR_CHARGEINTRANSIT
Allow/disallow charge in transit in Charging Stations.
@ SUMO_ATTR_CHARGINGPOWER
@ SUMO_ATTR_EFFICIENCY
Eficiency of the charge in Charging Stations.
@ SUMO_ATTR_CHARGEDELAY
Delay in the charge of charging stations (different of waiting time)
const double INVALID_DOUBLE
invalid double
Definition StdDefs.h:68
T MIN2(T a, T b)
Definition StdDefs.h:80
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
bool isValidAdditionalID(const std::string &value) const
check if a new additional ID is valid
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
double getExaggeration(const GUIVisualizationSettings &s) const
return exaggeration associated with this GLObject
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...
bool drawMovingGeometryPoints(const bool ignoreShift) const
check if draw additional extrem geometry points
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 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
static void changeAttribute(GNEAttributeCarrier *AC, SumoXMLAttr key, const std::string &value, GNEUndoList *undoList, const bool force=false)
change attribute
std::string getAttribute(SumoXMLAttr key) const
std::string myChargeType
charging type
~GNEChargingStation()
Destructor.
std::string myParkingAreaID
parking area ID
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their correspondent attribute are valids
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
GNEChargingStation(GNENet *net)
default Constructor of charging station
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes
SUMOTime myChargeDelay
delay in the starting of charge
bool myChargeInTransit
enable or disable charge in transit
double myChargingPower
Charging power pro timestep.
void writeAdditional(OutputDevice &device) const
write additional element into a xml file
double myEfficiency
efficiency of the charge
void updateGeometry()
update pre-computed geometry information
SUMOTime myWaitingTime
waiting time before start charging
double getAttributeDouble(SumoXMLAttr key) const
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...)
This lane is powered by an underlying GNEEdge and basically knows how to draw itself.
Definition GNELane.h:46
A NBNetBuilder extended by visualisation and editing capabilities.
Definition GNENet.h:42
GNEViewNet * getViewNet() const
get view net
Definition GNENet.cpp:2193
void updateCenteringBoundary(const bool updateGrid)
update centering boundary (implies change in RTREE)
bool isStoppingPlaceValid(SumoXMLAttr key, const std::string &value) const
void setStoppingPlaceAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
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
std::string getStoppingPlaceAttribute(const Parameterised *parameterised, SumoXMLAttr key) const
double getStoppingPlaceAttributeDouble(SumoXMLAttr key) const
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.
void setStoppingPlaceGeometry(double movingToSide)
set geometry common to all stopping places
double myEndPosition
The position this stopping place is located at (-1 means empty)
GNEContour mySymbolContour
circle contour
double myStartPosition
The relative start position this stopping place is located at (-1 means empty)
bool getDefaultBoolValue(SumoXMLAttr attr) const
get default bool value
double getDefaultDoubleValue(SumoXMLAttr attr) const
get default double value
SUMOTime getDefaultTimeValue(SumoXMLAttr attr) const
get default time 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.
GUIVisualizationAdditionalSettings additionalSettings
Additional 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)
RGBColor changedBrightness(int change, int toChange=3) const
Returns a new color with altered brightness.
Definition RGBColor.cpp:200
static StringBijection< ChargeType > ChargeTypes
charge type
bool hasString(const std::string &str) const
check if the given string exist
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
static const RGBColor connectionColor
connection color
RGBColor chargingStationColor
color for chargingStations
RGBColor selectedAdditionalColor
additional selection color (busStops, Detectors...)
RGBColor chargingStationColorSign
color for chargingStation sign
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 chargingStationWidth
chargingStation width