Eclipse SUMO - Simulation of Urban MObility
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GNEVariableSpeedSign.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//
19/****************************************************************************/
20#include <config.h>
21
22#include <netedit/GNENet.h>
24#include <netedit/GNEUndoList.h>
25#include <netedit/GNEViewNet.h>
29
32
33// ===========================================================================
34// member method definitions
35// ===========================================================================
36
40
41
42GNEVariableSpeedSign::GNEVariableSpeedSign(const std::string& id, GNENet* net, const std::string& filename,
43 const Position& pos, const std::string& name, const std::vector<std::string>& vTypes,
44 const Parameterised::Map& parameters) :
45 GNEAdditional(id, net, filename, GLO_VSS, SUMO_TAG_VSS, GUIIcon::VARIABLESPEEDSIGN, name),
46 Parameterised(parameters),
47 myPosition(pos),
48 myVehicleTypes(vTypes) {
49 // update centering boundary without updating grid
51}
52
53
56
57
58void
60 // avoid write rerouters without edges
61 if (getAttribute(SUMO_ATTR_LANES).size() > 0) {
62 device.openTag(SUMO_TAG_VSS);
63 device.writeAttr(SUMO_ATTR_ID, getID());
66 if (!myAdditionalName.empty()) {
68 }
69 if (!myVehicleTypes.empty()) {
71 }
72 // write all rerouter interval
73 for (const auto& step : getChildAdditionals()) {
74 if (!step->getTagProperty()->isSymbol()) {
75 step->writeAdditional(device);
76 }
77 }
78 // write parameters (Always after children to avoid problems with additionals.xsd)
79 writeParams(device);
80 device.closeTag();
81 } else {
82 WRITE_WARNING("Variable Speed Sign '" + getID() + TL("' needs at least one lane"));
83 }
84}
85
86
87bool
88GNEVariableSpeedSign::GNEVariableSpeedSign::isAdditionalValid() const {
89 return true;
90}
91
92
93std::string
94GNEVariableSpeedSign::GNEVariableSpeedSign::getAdditionalProblem() const {
95 return "";
96}
97
98
99void
100GNEVariableSpeedSign::GNEVariableSpeedSign::fixAdditionalProblem() {
101 // nothing to fix
102}
103
104
107 // return move operation for additional placed in view
108 return new GNEMoveOperation(this, myPosition);
109}
110
111
112void
114 // update additional geometry
116 // update geometries (boundaries of all children)
117 for (const auto& additionalChildren : getChildAdditionals()) {
118 additionalChildren->updateGeometry();
119 }
120}
121
122
127
128
129void
131 // remove additional from grid
132 if (updateGrid) {
134 }
135 // update geometry
137 // add shape boundary
139 // add positions of all childrens (symbols and steps)
140 for (const auto& additionalChildren : getChildAdditionals()) {
141 myAdditionalBoundary.add(additionalChildren->getPositionInView());
142 }
143 // grow
145 // add additional into RTREE again
146 if (updateGrid) {
148 }
149}
150
151
152void
153GNEVariableSpeedSign::splitEdgeGeometry(const double /*splitPosition*/, const GNENetworkElement* /*originalElement*/, const GNENetworkElement* /*newElement*/, GNEUndoList* /*undoList*/) {
154 // geometry of this element cannot be splitted
155}
156
157
158bool
160 // get edit modes
161 const auto& editModes = myNet->getViewNet()->getEditModes();
162 // check if we're in move mode
163 if (!myNet->getViewNet()->isCurrentlyMovingElements() && editModes.isCurrentSupermodeNetwork() &&
165 (editModes.networkEditMode == NetworkEditMode::NETWORK_MOVE) && myNet->getViewNet()->checkOverLockedElement(this, mySelected)) {
166 // only move the first element
168 } else {
169 return false;
170 }
171}
172
173
174void
179
180
181std::string
185
186
187void
189 const auto& inspectedElements = myNet->getViewNet()->getInspectedElements();
190 // draw parent and child lines
192 // draw VSS
194 // iterate over additionals and check if drawn
195 for (const auto& step : getChildAdditionals()) {
196 // if rerouter or their intevals are selected, then draw
198 isAttributeCarrierSelected() || inspectedElements.isACInspected(this) ||
199 step->isAttributeCarrierSelected() || inspectedElements.isACInspected(step) ||
200 step->isMarkedForDrawingFront()) {
201 step->drawGL(s);
202 }
203 }
204}
205
206
207std::string
209 switch (key) {
210 case SUMO_ATTR_ID:
211 return getMicrosimID();
212 case SUMO_ATTR_LANES: {
213 std::vector<std::string> lanes;
214 for (const auto& VSSSymbol : getChildAdditionals()) {
215 if (VSSSymbol->getTagProperty()->isSymbol()) {
216 lanes.push_back(VSSSymbol->getAttribute(SUMO_ATTR_LANE));
217 }
218 }
219 return toString(lanes);
220 }
222 return toString(myPosition);
223 case SUMO_ATTR_NAME:
224 return myAdditionalName;
225 case SUMO_ATTR_VTYPES:
226 return toString(myVehicleTypes);
227 default:
228 return getCommonAttribute(this, key);
229 }
230}
231
232
233double
235 throw InvalidArgument(getTagStr() + " doesn't have a double attribute of type '" + toString(key) + "'");
236}
237
238
243
244
245void
246GNEVariableSpeedSign::setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList) {
247 if (value == getAttribute(key)) {
248 return; //avoid needless changes, later logic relies on the fact that attributes have changed
249 }
250 switch (key) {
251 // special case for lanes due VSS Symbols
252 case SUMO_ATTR_LANES:
253 // rebuild VSS Symbols
254 rebuildVSSSymbols(value, undoList);
255 break;
256 case SUMO_ATTR_ID:
258 case SUMO_ATTR_NAME:
259 case SUMO_ATTR_VTYPES:
260 GNEChange_Attribute::changeAttribute(this, key, value, undoList);
261 break;
262 default:
263 setCommonAttribute(key, value, undoList);
264 break;
265 }
266}
267
268
269bool
270GNEVariableSpeedSign::isValid(SumoXMLAttr key, const std::string& value) {
271 switch (key) {
272 case SUMO_ATTR_ID:
273 return isValidAdditionalID(value);
275 return canParse<Position>(value);
276 case SUMO_ATTR_LANES:
277 return canParse<std::vector<GNELane*> >(myNet, value, false);
278 case SUMO_ATTR_NAME:
280 case SUMO_ATTR_VTYPES:
281 if (value.empty()) {
282 return true;
283 } else {
285 }
286 default:
287 return isCommonValid(key, value);
288 }
289}
290
291
292std::string
294 return getTagStr() + ": " + getID();
295}
296
297
298std::string
302
303// ===========================================================================
304// private
305// ===========================================================================
306
307void
308GNEVariableSpeedSign::setAttribute(SumoXMLAttr key, const std::string& value) {
309 switch (key) {
310 case SUMO_ATTR_LANES:
311 throw InvalidArgument(getTagStr() + " cannot be edited");
312 case SUMO_ATTR_ID:
313 // update microsimID
314 setAdditionalID(value);
315 break;
317 myPosition = parse<Position>(value);
318 // update boundary (except for template)
319 if (getID().size() > 0) {
321 }
322 break;
323 case SUMO_ATTR_NAME:
324 myAdditionalName = value;
325 break;
326 case SUMO_ATTR_VTYPES:
327 myVehicleTypes = parse<std::vector<std::string> >(value);
328 break;
329 default:
330 setCommonAttribute(this, key, value);
331 break;
332 }
333}
334
335
336void
338 // update position
339 myPosition = moveResult.shapeToUpdate.front();
340 // update geometry
342}
343
344
345void
347 undoList->begin(this, "position of " + getTagStr());
349 undoList->end();
350}
351
352
353void
354GNEVariableSpeedSign::rebuildVSSSymbols(const std::string& value, GNEUndoList* undoList) {
355 undoList->begin(this, ("change " + getTagStr() + " attribute").c_str());
356 // drop all additional children
357 while (getChildAdditionals().size() > 0) {
358 undoList->add(new GNEChange_Additional(getChildAdditionals().front(), false), true);
359 }
360 // get lane vector
361 const std::vector<GNELane*> lanes = parse<std::vector<GNELane*> >(myNet, value);
362 // create new VSS Symbols
363 for (const auto& lane : lanes) {
364 // create VSS Symbol
365 GNEAdditional* VSSSymbol = new GNEVariableSpeedSignSymbol(this, lane);
366 // add it using GNEChange_Additional
367 myNet->getViewNet()->getUndoList()->add(new GNEChange_Additional(VSSSymbol, true), true);
368 }
369 undoList->end();
370}
371
372/****************************************************************************/
@ NETWORK_MOVE
mode for moving network elements
@ GLO_VSS
a Variable Speed Sign
GUIIcon
An enumeration of icons used by the gui applications.
Definition GUIIcons.h:33
@ VARIABLESPEEDSIGN
@ VARIABLESPEEDSIGN_SELECTED
#define WRITE_WARNING(msg)
Definition MsgHandler.h:283
#define TL(string)
Definition MsgHandler.h:301
@ SUMO_TAG_VSS
A variable speed sign.
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
@ SUMO_ATTR_LANE
@ SUMO_ATTR_LANES
@ SUMO_ATTR_VTYPES
@ SUMO_ATTR_NAME
@ SUMO_ATTR_ID
@ SUMO_ATTR_POSITION
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition ToString.h:46
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
bool isValidAdditionalID(const std::string &value) const
check if a new additional ID is valid
void setAdditionalID(const std::string &newID)
set additional ID
GUIGeometry myAdditionalGeometry
geometry to be precomputed in updateGeometry(...)
std::string myAdditionalName
name of additional
void drawSquaredAdditional(const GUIVisualizationSettings &s, const Position &pos, const double size, GUITexture texture, GUITexture selectedTexture) const
draw squared additional
Boundary myAdditionalBoundary
Additional Boundary (used only by additionals placed over grid)
void drawParentChildLines(const GUIVisualizationSettings &s, const RGBColor &color, const bool onlySymbols=false) const
draw parent and child lines
const std::string getID() const
get ID (all Attribute Carriers have one)
bool isAttributeCarrierSelected() const
check if attribute carrier is selected
bool mySelected
boolean to check if this AC is selected (more quickly as checking GUIGlObjectStorage)
std::string getCommonAttribute(const Parameterised *parameterised, SumoXMLAttr key) const
void setCommonAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
const std::string & getTagStr() const
get tag assigned to this object in string format
GNENet * myNet
pointer to net
bool isCommonValid(SumoXMLAttr key, const std::string &value) const
static void changeAttribute(GNEAttributeCarrier *AC, SumoXMLAttr key, const std::string &value, GNEUndoList *undoList, const bool force=false)
change attribute
const GNEHierarchicalContainerChildren< GNEAdditional * > & getChildAdditionals() const
return child additionals
move operation
move result
PositionVector shapeToUpdate
shape to update (edited in moveElement)
A NBNetBuilder extended by visualisation and editing capabilities.
Definition GNENet.h:42
void addGLObjectIntoGrid(GNEAttributeCarrier *AC)
add GL Object into net
Definition GNENet.cpp:1432
void removeGLObjectFromGrid(GNEAttributeCarrier *AC)
add GL Object into net
Definition GNENet.cpp:1442
GNEViewNet * getViewNet() const
get view net
Definition GNENet.cpp:2184
void end()
End undo command sub-group. If the sub-group is still empty, it will be deleted; otherwise,...
void begin(GUIIcon icon, const std::string &description)
Begin undo command sub-group with current supermode. This begins a new group of commands that are tre...
void add(GNEChange *command, bool doit=false, bool merge=true)
Add new command, executing it if desired. The new command will be merged with the previous command if...
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
void splitEdgeGeometry(const double splitPosition, const GNENetworkElement *originalElement, const GNENetworkElement *newElement, GNEUndoList *undoList)
split geometry
Position getPositionInView() const
Returns position of additional in view.
void setMoveShape(const GNEMoveResult &moveResult)
set move shape
std::string getParentName() const
Returns the name of the parent object.
double getAttributeDouble(SumoXMLAttr key) const
GNEVariableSpeedSign(GNENet *net)
default Constructor
GNEMoveOperation * getMoveOperation()
get move operation
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes
void commitMoveShape(const GNEMoveResult &moveResult, GNEUndoList *undoList)
commit move shape
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their correspondent attribute are valids
bool checkDrawMoveContour() const
check if draw move contour (red)
void rebuildVSSSymbols(const std::string &value, GNEUndoList *undoList)
rebuild VSS Symbols
Position myPosition
position of VSS in view
void writeAdditional(OutputDevice &device) const
write additional element into a xml file
const Parameterised::Map & getACParametersMap() const
get parameters map
std::string getAttribute(SumoXMLAttr key) const
void updateGeometry()
update pre-computed geometry information
void updateCenteringBoundary(const bool updateGrid)
update centering boundary (implies change in RTREE)
void openAdditionalDialog()
open GNEVariableSpeedSignDialog
std::vector< std::string > myVehicleTypes
attribute vehicle types
const GUIGlObject * getGUIGlObjectFront() const
get front GUIGLObject or a pointer to nullptr
bool isCurrentlyMovingElements() const
check if an element is being moved
const GNEViewNetHelper::EditModes & getEditModes() const
get edit modes
const GNEViewNetHelper::EditNetworkElementShapes & getEditNetworkElementShapes() const
get Edit Shape module
GNEViewNetHelper::InspectedElements & getInspectedElements()
get inspected elements
const GNEViewNetHelper::NetworkViewOptions & getNetworkViewOptions() const
get network view options
bool checkOverLockedElement(const GUIGlObject *GLObject, const bool isSelected) const
check if given element is locked (used for drawing select and delete contour)
GNEUndoList * getUndoList() const
get the undoList object
const GNEViewNetHelper::ViewObjectsSelector & getViewObjectsSelector() const
get objects under cursor
void updateSinglePosGeometry(const Position &position, const double rotation)
update position and rotation
const PositionVector & getShape() const
The shape of the additional element.
const std::string & getMicrosimID() const
Returns the id of the object as known to microsim.
Stores the information about how to visualize structures.
GUIVisualizationAdditionalSettings additionalSettings
Additional settings.
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.
An upper class for objects with additional parameters.
std::map< std::string, std::string > Map
parameters map
const Parameterised::Map & getParametersMap() const
Returns the inner key/value map.
void writeParams(OutputDevice &device) const
write Params in the given outputdevice
A point in 2D or 3D with translation and scaling methods.
Definition Position.h:37
Boundary getBoxBoundary() const
Returns a boundary enclosing this list of lines.
static bool isValidListOfTypeID(const std::string &value)
whether the given string is a valid list of ids for an edge or vehicle type (empty aren't allowed)
static bool isValidAttribute(const std::string &value)
whether the given string is a valid attribute for a certain key (for example, a name)
static std::string escapeXML(const std::string &orig, const bool maskDoubleHyphen=false)
Replaces the standard escapes by their XML entities.
GNENetworkElement * getEditedNetworkElement() const
pointer to edited network element
bool showSubAdditionals() const
check if show sub-additionals
static const RGBColor connectionColor
connection color