Eclipse SUMO - Simulation of Urban MObility
GUIChargingStation.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-2024 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 /****************************************************************************/
23 // A lane area vehicles can halt at (gui-version)
24 /****************************************************************************/
25 #include <config.h>
26 
29 #include <gui/GUIGlobals.h>
30 #include <microsim/MSEdge.h>
31 #include <microsim/MSLane.h>
32 #include <microsim/MSNet.h>
33 #include <microsim/MSParkingArea.h>
36 #include <utils/common/ToString.h>
37 #include <utils/geom/Boundary.h>
38 #include <utils/geom/GeomHelper.h>
40 #include <utils/gui/div/GLHelper.h>
46 
47 #include "GUINet.h"
48 #include "GUIEdge.h"
49 #include "GUIPerson.h"
50 #include "GUIChargingStation.h"
51 
52 
53 // ===========================================================================
54 // method definitions
55 // ===========================================================================
56 GUIChargingStation::GUIChargingStation(const std::string& id, MSLane& lane, double frompos, double topos, const std::string& name,
57  double chargingPower, double efficiency, bool chargeInTransit, SUMOTime chargeDelay,
58  const std::string& chargeType, SUMOTime waitingTime) :
59  MSChargingStation(id, lane, frompos, topos, name, chargingPower, efficiency, chargeInTransit, chargeDelay, chargeType, waitingTime),
61  initAppearance(lane, frompos, topos);
62 }
63 
64 
65 GUIChargingStation::GUIChargingStation(const std::string& id, MSParkingArea* parkingArea, const std::string& name,
66  double chargingPower, double efficiency, bool chargeInTransit, SUMOTime chargeDelay,
67  const std::string& chargeType, SUMOTime waitingTime) :
68  MSChargingStation(id, parkingArea, name, chargingPower, efficiency, chargeInTransit, chargeDelay, chargeType, waitingTime),
70  initAppearance(const_cast<MSLane&>(parkingArea->getLane()), parkingArea->getBeginLanePosition(), parkingArea->getEndLanePosition());
71 }
72 
73 
75 }
76 
77 
80  // Create table items
81  GUIParameterTableWindow* ret = new GUIParameterTableWindow(app, *this);
82  // add items
83  ret->mkItem(TL("name"), false, getMyName());
84  ret->mkItem(TL("begin position [m]"), false, myBegPos);
85  ret->mkItem(TL("end position [m]"), false, myEndPos);
86  ret->mkItem(TL("stopped vehicles [#]"), true, new FunctionBinding<GUIChargingStation, int>(this, &MSStoppingPlace::getStoppedVehicleNumber));
87  ret->mkItem(TL("last free pos [m]"), true, new FunctionBinding<GUIChargingStation, double>(this, &MSStoppingPlace::getLastFreePos));
88  ret->mkItem(TL("charging power [W]"), false, myChargingPower);
89  ret->mkItem(TL("charging efficiency [#]"), false, myEfficiency);
90  ret->mkItem(TL("charge in transit [true/false]"), false, myChargeInTransit);
91  ret->mkItem(TL("charge delay [s]"), false, STEPS2TIME(myChargeDelay));
92  ret->mkItem(TL("charge type"), false, myChargeType);
93  ret->mkItem(TL("waiting time [s]"), false, STEPS2TIME(myWaitingTime));
94  // close building
95  ret->closeBuilding();
96  return ret;
97 }
98 
99 
102  GUIGLObjectPopupMenu* ret = new GUIGLObjectPopupMenu(app, parent, *this);
103  buildPopupHeader(ret, app);
108  buildPositionCopyEntry(ret, app);
109  return ret;
110 }
111 
112 
113 double
115  return s.addSize.getExaggeration(s, this);
116 }
117 
118 
119 Boundary
122  b.grow(20);
123  return b;
124 }
125 
126 
127 void
129  // Draw Charging Station
132 
133  // draw the area depending if the vehicle is charging
134  glTranslated(0, 0, getType());
135 
136  // set color depending if charging station is charging
137  if (myChargingVehicle) {
139  } else {
141  }
142  const double exaggeration = getExaggeration(s);
144 
145  // draw details unless zoomed out to far
146  if (s.drawDetail(10, exaggeration)) {
147  // push charging power matrix
149  // translate and rotate
150  const double rotSign = MSGlobals::gLefthand ? 1 : -1;
151  const double lineAngle = s.getTextAngle(myFGSignRot);
152  glTranslated(myFGSignPos.x(), myFGSignPos.y(), 0);
153  glRotated(-lineAngle, 0, 0, 1);
154  // draw charging power
155  const double textOffset = s.flippedTextAngle(rotSign * myFGSignRot) ? -0.5 : -0.1;
156  GLHelper::drawText((toString(myChargingPower) + " W").c_str(), Position(1.2, textOffset), .1, 1.f, s.colorSettings.chargingStationColor, 0, FONS_ALIGN_LEFT);
157  // pop charging power matrix
159 
161  // draw the sign
162  glTranslated(myFGSignPos.x(), myFGSignPos.y(), 0);
163  int noPoints = 9;
164  if (s.scale * exaggeration > 25) {
165  noPoints = MIN2((int)(9.0 + (s.scale * exaggeration) / 10.0), 36);
166  }
167 
168  glScaled(exaggeration, exaggeration, 1);
169  GLHelper::drawFilledCircle((double) 1.1, noPoints);
170  glTranslated(0, 0, .1);
171 
173  GLHelper::drawFilledCircle((double) 0.9, noPoints);
175 
176  glTranslated(5, 0, 0);
178 
179  }
180  if (s.addFullName.show(this) && getMyName() != "") {
182  }
185  drawName(getCenteringBoundary().getCenter(), s.scale, s.addName, s.angle);
186 }
187 
188 
189 void
190 GUIChargingStation::initAppearance(MSLane& lane, double frompos, double topos) {
191  myFGShape = lane.getShape();
193  lane.interpolateLanePosToGeometryPos(frompos),
194  lane.interpolateLanePosToGeometryPos(topos));
195  myFGShapeRotations.reserve(myFGShape.size() - 1);
196  myFGShapeLengths.reserve(myFGShape.size() - 1);
197  int e = (int)myFGShape.size() - 1;
198  for (int i = 0; i < e; ++i) {
199  const Position& f = myFGShape[i];
200  const Position& s = myFGShape[i + 1];
201  myFGShapeLengths.push_back(f.distanceTo(s));
202  myFGShapeRotations.push_back((double)atan2((s.x() - f.x()), (f.y() - s.y())) * (double) 180.0 / (double)M_PI);
203  }
205  const double rotSign = MSGlobals::gLefthand ? -1 : 1;
206  tmp.move2side(1.5 * rotSign);
207  myFGSignPos = tmp.getLineCenter();
208  myFGSignRot = 0;
209  if (tmp.length() != 0) {
211  myFGSignRot -= 90 * rotSign;
212  }
213 }
214 
215 
216 const std::string
218  return myName;
219 }
220 
221 
222 /****************************************************************************/
long long int SUMOTime
Definition: GUI.h:35
@ GLO_MAX
empty max
@ GLO_CHARGING_STATION
a chargingStation
GUIIcon
An enumeration of icons used by the gui applications.
Definition: GUIIcons.h:33
@ CHARGINGSTATION
#define TL(string)
Definition: MsgHandler.h:315
#define STEPS2TIME(x)
Definition: SUMOTime.h:55
T MIN2(T a, T b)
Definition: StdDefs.h:76
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition: ToString.h:46
A class that stores a 2D geometrical boundary.
Definition: Boundary.h:39
Boundary & grow(double by)
extends the boundary by the given amount
Definition: Boundary.cpp:319
static void setColor(const RGBColor &c)
Sets the gl-color to this value.
Definition: GLHelper.cpp:654
static void pushName(unsigned int name)
push Name
Definition: GLHelper.cpp:139
static void drawFilledCircle(const double widradiusth, const int steps=8)
Draws a filled circle around (0,0)
Definition: GLHelper.cpp:569
static void popMatrix()
pop matrix
Definition: GLHelper.cpp:130
static void drawBoxLines(const PositionVector &geom, const std::vector< double > &rots, const std::vector< double > &lengths, double width, int cornerDetail=0, double offset=0)
Draws thick lines.
Definition: GLHelper.cpp:347
static void popName()
pop Name
Definition: GLHelper.cpp:148
static void pushMatrix()
push matrix
Definition: GLHelper.cpp:117
static void drawText(const std::string &text, const Position &pos, const double layer, const double size, const RGBColor &col=RGBColor::BLACK, const double angle=0, const int align=0, double width=-1)
Definition: GLHelper.cpp:756
static void drawTextSettings(const GUIVisualizationTextSettings &settings, const std::string &text, const Position &pos, const double scale, const double angle=0, const double layer=2048, const int align=0)
Definition: GLHelper.cpp:787
std::vector< double > myFGShapeRotations
The rotations of the shape parts.
PositionVector myFGShape
The shape.
std::vector< double > myFGShapeLengths
The lengths of the shape parts.
double getExaggeration(const GUIVisualizationSettings &s) const
return exaggeration associated with this GLObject
~GUIChargingStation()
Destructor.
const std::string getOptionalName() const
Returns the stopping place name.
double myFGSignRot
The rotation of the sign.
void initAppearance(MSLane &lane, double frompos, double topos)
Returns the stopping place name.
GUIGLObjectPopupMenu * getPopUpMenu(GUIMainWindow &app, GUISUMOAbstractView &parent)
Returns an own popup-menu.
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
GUIParameterTableWindow * getParameterWindow(GUIMainWindow &app, GUISUMOAbstractView &parent)
Returns an own parameter window.
GUIChargingStation(const std::string &id, MSLane &lane, double frompos, double topos, const std::string &name, double chargingPower, double efficiency, bool chargeInTransit, SUMOTime chargeDelay, const std::string &chargeType, SUMOTime waitingTime)
Constructor.
Boundary getCenteringBoundary() const
Returns the boundary to which the view shall be centered in order to show the object.
Position myFGSignPos
The position of the sign.
The popup menu of a globject.
void buildShowParamsPopupEntry(GUIGLObjectPopupMenu *ret, bool addSeparator=true)
Builds an entry which allows to open the parameter window.
void buildCenterPopupEntry(GUIGLObjectPopupMenu *ret, bool addSeparator=true)
Builds an entry which allows to center to the object.
void buildNameCopyPopupEntry(GUIGLObjectPopupMenu *ret, bool addSeparator=true)
Builds entries which allow to copy the name / typed name into the clipboard.
void buildPopupHeader(GUIGLObjectPopupMenu *ret, GUIMainWindow &app, bool addSeparator=true)
Builds the header.
GUIGlObjectType getType() const
Returns the type of the object as coded in GUIGlObjectType.
Definition: GUIGlObject.h:156
void buildSelectionPopupEntry(GUIGLObjectPopupMenu *ret, bool addSeparator=true)
Builds an entry which allows to (de)select the object.
void buildPositionCopyEntry(GUIGLObjectPopupMenu *ret, const GUIMainWindow &app) const
Builds an entry which allows to copy the cursor position if geo projection is used,...
GUIGlID getGlID() const
Returns the numerical id of the object.
Definition: GUIGlObject.h:104
void drawName(const Position &pos, const double scale, const GUIVisualizationTextSettings &settings, const double angle=0, bool forceShow=false) const
draw name of item
A window containing a gl-object's parameter.
void mkItem(const char *name, bool dynamic, ValueSource< T > *src)
Adds a row which obtains its value from a ValueSource.
void closeBuilding(const Parameterised *p=0)
Closes the building of the table.
Stores the information about how to visualize structures.
GUIVisualizationTextSettings addName
GUIVisualizationSizeSettings addSize
bool flippedTextAngle(double objectAngle) const
return wether the text was flipped for reading at the given angle
GUIVisualizationTextSettings addFullName
GUIVisualizationColorSettings colorSettings
color settings
double scale
information about a lane's width (temporary, used for a single view)
bool drawDetail(const double detail, const double exaggeration) const
check if details can be drawn for the given GUIVisualizationDetailSettings and current scale and exxa...
double getTextAngle(double objectAngle) const
return an angle that is suitable for reading text aligned with the given angle (degrees)
double angle
The current view rotation angle.
double myChargingPower
Charging station's charging power.
const std::string myChargeType
charge type
double myEfficiency
Efficiency of the charging station.
SUMOTime myWaitingTime
waiting time
bool myChargeInTransit
Allow charge in transit.
SUMOTime myChargeDelay
Charge Delay.
bool myChargingVehicle
Check if in the current TimeStep chargingStation is charging a vehicle.
static bool gLefthand
Whether lefthand-drive is being simulated.
Definition: MSGlobals.h:169
Representation of a lane in the micro simulation.
Definition: MSLane.h:84
double interpolateLanePosToGeometryPos(double lanePos) const
Definition: MSLane.h:546
virtual const PositionVector & getShape(bool) const
Definition: MSLane.h:294
A lane area vehicles can halt at.
Definition: MSParkingArea.h:60
int getStoppedVehicleNumber() const
Returns the number of stopped vehicles waiting on this stop.
const double myBegPos
The begin position this bus stop is located at.
double getBeginLanePosition() const
Returns the begin position of this stop.
const std::string myName
The name of the stopping place.
const double myEndPos
The end position this bus stop is located at.
double getEndLanePosition() const
Returns the end position of this stop.
const MSLane & getLane() const
Returns the lane this stop is located at.
const std::string & getMyName() const
double getLastFreePos() const
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:37
double distanceTo(const Position &p2) const
returns the euclidean distance in 3 dimensions
Definition: Position.h:261
double x() const
Returns the x-position.
Definition: Position.h:55
double y() const
Returns the y-position.
Definition: Position.h:60
A list of positions.
double length() const
Returns the length.
double rotationDegreeAtOffset(double pos) const
Returns the rotation at the given length.
void move2side(double amount, double maxExtension=100)
move position vector to side using certain amount
Boundary getBoxBoundary() const
Returns a boundary enclosing this list of lines.
Position getLineCenter() const
get line center
PositionVector getSubpart(double beginOffset, double endOffset) const
get subpart of a position vector
@ FONS_ALIGN_LEFT
Definition: fontstash.h:42
#define M_PI
Definition: odrSpiral.cpp:45
RGBColor chargingStationColor
color for chargingStations
RGBColor chargingStationColorCharge
color for chargingStation during charging
RGBColor chargingStationColorSign
color for chargingStation sign
double getExaggeration(const GUIVisualizationSettings &s, const GUIGlObject *o, double factor=20) const
return the drawing size including exaggeration and constantSize values
bool show(const GUIGlObject *o) const
whether to show the text