Eclipse SUMO - Simulation of Urban MObility
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GUIParkingArea.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/****************************************************************************/
20// A area where vehicles can park next to the road (gui version)
21/****************************************************************************/
22#include <config.h>
23
24#include <string>
27#include <gui/GUIGlobals.h>
29#include <guisim/GUIVehicle.h>
31#include <microsim/MSEdge.h>
32#include <microsim/MSLane.h>
33#include <microsim/MSNet.h>
37#include <utils/geom/Boundary.h>
46
47#include "GUINet.h"
48#include "GUIEdge.h"
49#include "GUIContainer.h"
50#include "GUIParkingArea.h"
51
52
53// ===========================================================================
54// method definitions
55// ===========================================================================
56GUIParkingArea::GUIParkingArea(const std::string& id, const std::vector<std::string>& lines,
57 const std::vector<std::string>& badges, MSLane& lane, double frompos, double topos,
58 unsigned int capacity, double width, double length, double angle, const std::string& name,
59 bool onRoad,
60 const std::string& departPos,
61 bool lefthand) :
62 MSParkingArea(id, lines, badges, lane, frompos, topos, capacity, width, length, angle, name, onRoad, departPos, lefthand),
64 const double offsetSign = (MSGlobals::gLefthand || lefthand) ? -1 : 1;
65 myShapeRotations.reserve(myShape.size() - 1);
66 myShapeLengths.reserve(myShape.size() - 1);
67 int e = (int) myShape.size() - 1;
68 for (int i = 0; i < e; ++i) {
69 const Position& f = myShape[i];
70 const Position& s = myShape[i + 1];
71 myShapeLengths.push_back(f.distanceTo(s));
72 myShapeRotations.push_back((double) atan2((s.x() - f.x()), (f.y() - s.y())) * (double) 180.0 / (double) M_PI);
73 }
75 tmp.move2side((lane.getWidth() + myWidth) * offsetSign);
77 mySignRot = 0;
78 if (tmp.length() != 0) {
80 const double rotSign = MSGlobals::gLefthand ? -1 : 1;
81 mySignRot -= 90 * rotSign;
82 }
84 myBoundary.grow(20);
85}
86
88
89
102
103
108 new GUIParameterTableWindow(app, *this);
109 // add items
110 ret->mkItem(TL("name"), false, getMyName());
111 ret->mkItem(TL("begin position [m]"), false, myBegPos);
112 ret->mkItem(TL("end position [m]"), false, myEndPos);
113 ret->mkItem(TL("occupancy [#]"), true, getOccupancy());
114 ret->mkItem(TL("capacity [#]"), false, getCapacity());
115 ret->mkItem(TL("alternatives [#]"), false, getNumAlternatives());
116 ret->mkItem(TL("access badges"), false, joinToString(myAcceptedBadges, " "));
117 // close building
118 ret->closeBuilding();
119 return ret;
120}
121
122
123void
127 RGBColor grey(177, 184, 186, 171);
128 RGBColor blue(83, 89, 172, 255);
129 RGBColor red(255, 0, 0, 255);
130 RGBColor green(0, 255, 0, 255);
131 // draw the area
132 glTranslated(0, 0, getType());
133 GLHelper::setColor(blue);
134 const double exaggeration = getExaggeration(s);
136 // draw details unless zoomed out to far
137 if (s.scale * exaggeration >= 1) {
138 // draw the lots
139 glTranslated(0, 0, .1);
140 // calculate shape lengt
141 double ShapeLength = 0;
142 for (const auto& length : myShapeLengths) {
143 ShapeLength += length;
144 }
145 // calculate index Updater
146 int indexUpdater = (int)((double)mySpaceOccupancies.size() / ShapeLength);
147 // check if indexUpdater is 0
148 if (indexUpdater == 0 || (myCapacity != myRoadSideCapacity)) {
149 indexUpdater = 1;
150 }
151 // draw spaceOccupancies
152 for (int i = 0; i < (int)mySpaceOccupancies.size(); i += indexUpdater) {
153 GLHelper::drawSpaceOccupancies(exaggeration, mySpaceOccupancies.at(i).position, mySpaceOccupancies.at(i).rotation,
154 mySpaceOccupancies.at(i).width, mySpaceOccupancies.at(i).length, mySpaceOccupancies.at(i).vehicle ? true : false);
155 }
156 GLHelper::setColor(blue);
157 // draw the lines
158 for (size_t i = 0; i != myLines.size(); ++i) {
159 // push a new matrix for every line
161 // traslate and rotate
162 glTranslated(mySignPos.x(), mySignPos.y(), 0);
163 glRotated(180, 1, 0, 0);
164 glRotated(mySignRot, 0, 0, 1);
165 // draw line
166 GLHelper::drawText(myLines[i].c_str(), Position(1.2, (double)i), .1, 1.f, RGBColor(76, 170, 50), 0, FONS_ALIGN_LEFT);
167 // pop matrix for every line
169
170 }
171 // draw the sign
172 glTranslated(mySignPos.x(), mySignPos.y(), 0);
173 int noPoints = 9;
174 if (s.scale * exaggeration > 25) {
175 noPoints = MIN2((int)(9.0 + (s.scale * exaggeration) / 10.0), 36);
176 }
177 glScaled(exaggeration, exaggeration, 1);
178 GLHelper::drawFilledCircle((double) 1.1, noPoints);
179 glTranslated(0, 0, .1);
180 GLHelper::setColor(grey);
181 GLHelper::drawFilledCircle((double) 0.9, noPoints);
182 if (s.drawDetail(10, exaggeration)) {
183 GLHelper::drawText("P", Position(), .1, 1.6, blue, mySignRot);
184 }
185 }
187 if (s.addFullName.show(this) && getMyName() != "") {
189 }
191 drawName(getCenteringBoundary().getCenter(), s.scale, s.addName, s.angle);
193 // draw parking vehicles (their lane might not be within drawing range. if it is, they are drawn twice)
195 for (const MSBaseVehicle* const v : myLane.getParkingVehicles()) {
197 static_cast<const GUIMEVehicle*>(v)->drawGL(s);
198 } else {
199 static_cast<const GUIVehicle*>(v)->drawGL(s);
200 }
201 }
203 }
204}
205
206void
207GUIParkingArea::addLotEntry(double x, double y, double z,
208 double width, double length,
209 double angle, double slope) {
210 MSParkingArea::addLotEntry(x, y, z, width, length, angle, slope);
211 Boundary b;
212 b.add(Position(x, y));
213 b.grow(MAX2(width, length) + 5);
214 myBoundary.add(b);
215}
216
217
218double
222
223
228
229
230const std::string
232 return myName;
233}
234
235
236/****************************************************************************/
@ GLO_MAX
empty max
@ GLO_PARKING_AREA
a ParkingArea
GUIIcon
An enumeration of icons used by the gui applications.
Definition GUIIcons.h:33
#define TL(string)
Definition MsgHandler.h:301
T MIN2(T a, T b)
Definition StdDefs.h:76
T MAX2(T a, T b)
Definition StdDefs.h:82
std::string joinToString(const std::vector< T > &v, const T_BETWEEN &between, std::streamsize accuracy=gPrecision)
Definition ToString.h:283
A class that stores a 2D geometrical boundary.
Definition Boundary.h:39
void add(double x, double y, double z=0)
Makes the boundary include the given coordinate.
Definition Boundary.cpp:75
Boundary & grow(double by)
extends the boundary by the given amount
Definition Boundary.cpp:340
static void setColor(const RGBColor &c)
Sets the gl-color to this value.
Definition GLHelper.cpp:649
static void pushName(unsigned int name)
push Name
Definition GLHelper.cpp:140
static void drawFilledCircle(const double widradiusth, const int steps=8)
Draws a filled circle around (0,0)
Definition GLHelper.cpp:564
static void popMatrix()
pop matrix
Definition GLHelper.cpp:131
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:348
static void popName()
pop Name
Definition GLHelper.cpp:149
static void pushMatrix()
push matrix
Definition GLHelper.cpp:118
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:751
static void drawSpaceOccupancies(const double exaggeration, const Position &pos, const double rotation, const double width, const double length, const bool vehicle)
draw
Definition GLHelper.cpp:679
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:782
The popup menu of a globject.
void buildPositionCopyEntry(GUIGLObjectPopupMenu *ret, const GUIMainWindow &app, bool addSeparator=true) const
Builds an entry which allows to copy the cursor position if geo projection is used,...
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.
void buildSelectionPopupEntry(GUIGLObjectPopupMenu *ret, bool addSeparator=true)
Builds an entry which allows to (de)select the object.
GUIGlID getGlID() const
Returns the numerical id of the object.
void drawName(const Position &pos, const double scale, const GUIVisualizationTextSettings &settings, const double angle=0, bool forceShow=false) const
draw name of item
A MSVehicle extended by some values for usage within the gui.
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.
std::vector< double > myShapeLengths
The lengths of the shape parts.
Boundary myBoundary
the centering boundary
std::vector< double > myShapeRotations
The rotations of the shape parts.
~GUIParkingArea()
Destructor.
GUIParkingArea(const std::string &id, const std::vector< std::string > &lines, const std::vector< std::string > &badges, MSLane &lane, double frompos, double topos, unsigned int capacity, double width, double length, double angle, const std::string &name, bool onRoad, const std::string &departPos, bool lefthand)
Constructor.
void addLotEntry(double x, double y, double z, double width, double length, double angle, double slope)
extend boundary
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
double mySignRot
The rotation of the sign.
double getExaggeration(const GUIVisualizationSettings &s) const
return exaggeration associated with this GLObject
Boundary getCenteringBoundary() const
Returns the boundary to which the view shall be centered in order to show the object.
GUIParameterTableWindow * getParameterWindow(GUIMainWindow &app, GUISUMOAbstractView &parent)
Returns an own parameter window.
GUIGLObjectPopupMenu * getPopUpMenu(GUIMainWindow &app, GUISUMOAbstractView &parent)
Returns an own popup-menu.
const std::string getOptionalName() const
Returns the stopping place name.
Position mySignPos
The position of the sign.
A MSVehicle extended by some values for usage within the gui.
Definition GUIVehicle.h:51
Stores the information about how to visualize structures.
GUIVisualizationTextSettings addName
GUIVisualizationSizeSettings addSize
GUIVisualizationTextSettings addFullName
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.
The base class for microscopic and mesoscopic vehicles.
static bool gUseMesoSim
Definition MSGlobals.h:106
static bool gLefthand
Whether lefthand-drive is being simulated.
Definition MSGlobals.h:174
Representation of a lane in the micro simulation.
Definition MSLane.h:84
const std::set< const MSBaseVehicle * > & getParkingVehicles() const
retrieve the parking vehicles (see GUIParkingArea)
Definition MSLane.h:1253
virtual const VehCont & getVehiclesSecure() const
Returns the vehicles container; locks it for microsimulation.
Definition MSLane.h:483
virtual void releaseVehicles() const
Allows to use the container for microsimulation again.
Definition MSLane.h:513
double getWidth() const
Returns the lane's width.
Definition MSLane.h:635
A lane area vehicles can halt at.
int getNumAlternatives() const
get number alternatives
int myCapacity
Stop area total capacity.
int getCapacity() const
Returns the area capacity.
PositionVector myShape
The roadside shape of this parkingArea.
virtual void addLotEntry(double x, double y, double z, double width, double length, double angle, double slope)
Add a lot entry to parking area.
int myRoadSideCapacity
Stop area capacity configured via roadsideCapacity.
double myWidth
The default width of each parking space.
int getOccupancy() const
Returns the area occupancy.
std::vector< LotSpaceDefinition > mySpaceOccupancies
All the spaces in this parking area.
std::set< std::string > myAcceptedBadges
The parking badges to grant access.
const double myBegPos
The begin position this bus stop is located at.
const MSLane & myLane
The lane this bus stop is located at.
const std::string myName
The name of the stopping place.
const double myEndPos
The end position this bus stop is located at.
std::vector< std::string > myLines
The list of lines that are assigned to this stop.
const std::string & getMyName() 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:263
double x() const
Returns the x-position.
Definition Position.h:52
double y() const
Returns the y-position.
Definition Position.h:57
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
@ FONS_ALIGN_LEFT
Definition fontstash.h:42
#define M_PI
Definition odrSpiral.cpp:45
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