Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
GNELane.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-2026 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/****************************************************************************/
19// A class for visualizing Lane geometry (adapted from GNELaneWrapper)
20/****************************************************************************/
21
22#include <netbuild/NBEdgeCont.h>
33#include <netedit/GNENet.h>
41
42#include "GNELane.h"
43#include "GNEInternalLane.h"
44#include "GNEConnection.h"
45#include "GNEEdgeTemplate.h"
46
47// ===========================================================================
48// FOX callback mapping
49// ===========================================================================
50
51// Object implementation
52FXIMPLEMENT(GNELane, FXDelegator, 0, 0)
53
54// ===========================================================================
55// method definitions
56// ===========================================================================
57
58// ---------------------------------------------------------------------------
59// GNELane::LaneDrawingConstants - methods
60// ---------------------------------------------------------------------------
61
63 myLane(lane) {
64}
65
66
67void
69 // get NBEdge
70 const auto& NBEdge = myLane->getParentEdge()->getNBEdge();
71 // get lane struct
72 const auto& laneStruct = myLane->getParentEdges().front()->getNBEdge()->getLaneStruct(myLane->getIndex());
73 // get selection scale
74 const double selectionScale = myLane->isAttributeCarrierSelected() || myLane->getParentEdges().front()->isAttributeCarrierSelected() ? s.selectorFrameScale : 1;
75 // get lane width
76 const double laneWidth = (laneStruct.width == -1 ? SUMO_const_laneWidth : laneStruct.width);
77 // calculate exaggeration
78 myExaggeration = selectionScale * s.laneWidthExaggeration;
79 // get detail level
81 // check if draw lane as railway
82 myDrawAsRailway = isRailway(laneStruct.permissions) && ((laneStruct.permissions & SVC_BUS) == 0) && s.showRails;
83 // adjust rest of parameters depending if draw as railway
84 if (myDrawAsRailway) {
85 // draw as railway: assume standard gauge of 1435mm when lane width is not set
86 myDrawingWidth = (laneWidth == SUMO_const_laneWidth ? 1.4350 : laneWidth) * myExaggeration;
87 // calculate internal drawing width
89 } else {
90 // calculate exaggerated drawing width
91 myDrawingWidth = laneWidth * myExaggeration * 0.5;
92 // calculate internal drawing width
94 }
95 // check if draw superposed
97 // adjust parameters depending of superposing
98 if (myDrawSuperposed) {
99 // apply offset
100 myOffset = myDrawingWidth * 0.5;
101 // reduce width
102 myDrawingWidth *= 0.4;
104 } else {
105 // restore offset
106 myOffset = 0;
107 }
108}
109
110
111double
113 return myExaggeration;
114}
115
116
117double
119 return myDrawingWidth;
120}
121
122
123double
125 return myInternalDrawingWidth;
126}
127
128
129double
131 return myOffset;
132}
133
134
137 return myDetail;
138}
139
140
141bool
143 return myDrawAsRailway;
144}
145
146
147bool
149 return myDrawSuperposed;
150}
151
152
153// ---------------------------------------------------------------------------
154// GNELane - methods
155// ---------------------------------------------------------------------------
156#ifdef _MSC_VER
157#pragma warning(push)
158#pragma warning(disable: 4355) // mask warning about "this" in initializers
159#endif
160GNELane::GNELane(GNEEdge* edge, const int index) :
161 GNENetworkElement(edge->getNet(), edge->getNBEdge()->getLaneID(index), SUMO_TAG_LANE),
163 myIndex(index),
165 mySpecialColor(nullptr),
168 // set parents
169 setParent<GNEEdge*>(edge);
170 // this is needed for open edge popup menu
171 setGLObjectParent(edge);
172 // update centering boundary without updating grid
174}
175
176
178 GNENetworkElement(nullptr, "dummyConstructorGNELane", SUMO_TAG_LANE),
179 myMoveElementLane(new GNEMoveElementLane(this)),
180 myIndex(-1),
181 myDrawingConstants(nullptr),
182 mySpecialColor(nullptr),
183 mySpecialColorValue(-1),
184 myLane2laneConnections(this) {
185}
186#ifdef _MSC_VER
187#pragma warning(pop)
188#endif
189
191 if (myDrawingConstants) {
192 delete myDrawingConstants;
193 }
194}
195
196
201
202
205 return &(getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex));
206}
207
208
209const Parameterised*
211 return &(getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex));
212}
213
214
215GNEEdge*
217 return getParentEdges().front();
218}
219
220
221bool
223 return (getParentEdges().front()->getNBEdge()->getPermissions(myIndex) & SVC_PEDESTRIAN) > 0;
224}
225
226
227const GUIGeometry&
229 return myLaneGeometry;
230}
231
232
233const PositionVector&
235 if (getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).customShape.size() > 0) {
236 return getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).customShape;
237 } else {
238 return getParentEdges().front()->getNBEdge()->getLaneShape(myIndex);
239 }
240}
241
242
243const std::vector<double>&
247
248
249const std::vector<double>&
253
254
259
260
261void
263 // Clear texture containers
266 // get lane shape and extend if is too short
267 auto laneShape = getLaneShape();
268 if (laneShape.length2D() < 1) {
269 laneShape.extrapolate2D(1 - laneShape.length2D());
270 }
271 // Obtain lane shape of NBEdge
273 // update connections
275 // update additionals children associated with this lane
276 for (const auto& additional : getParentAdditionals()) {
277 additional->updateGeometry();
278 }
279 // update additionals parents associated with this lane
280 for (const auto& additional : getChildAdditionals()) {
281 additional->updateGeometry();
282 }
283 // update partial demand elements parents associated with this lane
284 for (const auto& demandElement : getParentDemandElements()) {
285 demandElement->updateGeometry();
286 }
287 // update partial demand elements children associated with this lane
288 for (const auto& demandElement : getChildDemandElements()) {
289 demandElement->updateGeometry();
290 }
291 // Update geometry of parent generic datas that have this edge as parent
292 for (const auto& additionalParent : getParentGenericDatas()) {
293 additionalParent->updateGeometry();
294 }
295 // Update geometry of additionals generic datas vinculated to this edge
296 for (const auto& childAdditionals : getChildGenericDatas()) {
297 childAdditionals->updateGeometry();
298 }
299 // compute geometry of path elements elements vinculated with this lane (depending of showDemandElements)
301 for (const auto& childAdditional : getChildAdditionals()) {
302 childAdditional->computePathElement();
303 }
304 for (const auto& childDemandElement : getChildDemandElements()) {
305 childDemandElement->computePathElement();
306 }
307 for (const auto& childGenericData : getChildGenericDatas()) {
308 childGenericData->computePathElement();
309 }
310 }
311 // in Move mode, connections aren't updated
313 // Update incoming connections of this lane
314 const auto incomingConnections = getGNEIncomingConnections();
315 for (const auto& connection : incomingConnections) {
316 connection->updateGeometry();
317 }
318 // Update outgoings connections of this lane
319 const auto outGoingConnections = getGNEOutcomingConnections();
320 for (const auto& connection : outGoingConnections) {
321 connection->markConnectionGeometryDeprecated();
322 connection->updateGeometry();
323 }
324 }
325 // if lane has enought length for show textures of restricted lanes
326 if ((getLaneShapeLength() > 4)) {
327 // if lane is restricted
329 // get values for position and rotation of icons
330 for (int i = 2; i < getLaneShapeLength() - 1; i += 15) {
333 }
334 }
335 }
336}
337
338
341 return getLaneShape().positionAtOffset2D(getLaneShape().length2D() * 0.5);
342}
343
344
345bool
347 const auto& inspectedElements = myNet->getViewNet()->getInspectedElements();
348 // check if we're inspecting a connection
349 if (inspectedElements.isInspectingSingleElement() && (inspectedElements.getFirstAC()->getTagProperty()->getTag() == SUMO_TAG_CONNECTION) &&
350 inspectedElements.getFirstAC()->getAttribute(GNE_ATTR_FROM_LANEID) == getID()) {
351 return true;
352 } else {
353 return false;
354 }
355}
356
357
358bool
360 const auto& inspectedElements = myNet->getViewNet()->getInspectedElements();
361 // check if we're inspecting a connection
362 if (inspectedElements.isInspectingSingleElement() && (inspectedElements.getFirstAC()->getTagProperty()->getTag() == SUMO_TAG_CONNECTION) &&
363 inspectedElements.getFirstAC()->getAttribute(GNE_ATTR_TO_LANEID) == getID()) {
364 return true;
365 } else {
366 return false;
367 }
368}
369
370
371bool
373 // check opened popup
374 if (myNet->getViewNet()->getPopup()) {
375 return myNet->getViewNet()->getPopup()->getGLObject() == this;
377 // check if we're creating a access
379 return (templateAC && (templateAC->getTagProperty()->getTag() == SUMO_TAG_ACCESS) && (getAttribute(SUMO_ATTR_ALLOW) == "pedestrian"));
380 } else {
381 return false;
382 }
383}
384
385
386bool
388 // get modes and viewParent (for code legibility)
389 const auto& modes = myNet->getViewNet()->getEditModes();
390 const auto& viewParent = myNet->getViewParent();
391 // check if we're selecting edges in additional mode
392 if (modes.isCurrentSupermodeNetwork() && (modes.networkEditMode == NetworkEditMode::NETWORK_ADDITIONAL)) {
393 if (viewParent->getAdditionalFrame()->getViewObjetsSelector()->isNetworkElementSelected(this)) {
394 return true;
395 } else if (viewParent->getAdditionalFrame()->getViewObjetsSelector()->getTag() == myTagProperty->getTag()) {
397 } else {
398 return false;
399 }
400 } else {
401 return false;
402 }
403}
404
405
406bool
408 // first check if we're selecting edges or lanes
410 return false;
411 } else {
412 // get edit modes
413 const auto& editModes = myNet->getViewNet()->getEditModes();
414 // check if we're in delete mode
415 if (editModes.isCurrentSupermodeNetwork() && (editModes.networkEditMode == NetworkEditMode::NETWORK_DELETE)) {
417 } else {
418 return false;
419 }
420 }
421}
422
423
424bool
426 return false;
427}
428
429
430bool
432 // first check if we're selecting edges or lanes
434 return false;
435 } else {
436 // get edit modes
437 const auto& editModes = myNet->getViewNet()->getEditModes();
438 // check if we're in select mode
439 if (editModes.isCurrentSupermodeNetwork() && (editModes.networkEditMode == NetworkEditMode::NETWORK_SELECT)) {
441 } else {
442 return false;
443 }
444 }
445}
446
447
448bool
450 // check if we're editing this network element
452 if (editedNetworkElement) {
453 return editedNetworkElement == this;
454 } else {
455 return false;
456 }
457}
458
459
460void
462 // update lane drawing constan
464 // calculate layer
465 double layer = GLO_LANE;
466 if (getParentEdges().front()->isMarkedForDrawingFront()) {
467 layer = GLO_FRONTELEMENT;
469 layer = GLO_JUNCTION + 2;
470 }
471 // check drawing conditions
473 // draw lane
474 drawLane(s, layer);
475 // draw lock icon
477 // draw dotted contour
479 }
480 // calculate contour (always before children)
481 calculateLaneContour(s, layer);
482 // draw children
483 drawChildren(s);
484}
485
486
487void
489 // Check if edge can be deleted
491 myNet->deleteLane(this, myNet->getUndoList(), false);
492 }
493}
494
495
496void
500
501
502
505 // first obtain edit mode (needed because certain Commands depend of current edit mode)
507 // get mouse position
508 const auto mousePosition = myNet->getViewNet()->getPositionInformation();
509 GUIGLObjectPopupMenu* ret = new GUIGLObjectPopupMenu(app, parent, this);
510 buildPopupHeader(ret, app);
512 // build copy names entry
513 if (editMode != NetworkEditMode::NETWORK_TLS) {
514 GUIDesigns::buildFXMenuCommand(ret, TL("Copy parent edge name to clipboard"), nullptr, ret, MID_COPY_EDGE_NAME);
516 }
517 // stop if we're in data mode
519 return ret;
520 }
521 // build lane selection
524 } else {
526 }
527 // build edge selection
530 } else {
532 }
533 // add separator
534 new FXMenuSeparator(ret);
535 // delete lane
538 }
539 // stop if we're in data mode
541 return ret;
542 }
543 // add separator
544 new FXMenuSeparator(ret);
545 if (editMode != NetworkEditMode::NETWORK_TLS) {
546 // build show parameters menu
549 // add separator
550 new FXMenuSeparator(ret);
551 // build position copy entry
552 buildPositionCopyEntry(ret, app);
553 }
554 // check if we're in supermode network
556 // create end point
557 FXMenuCommand* resetEndPoints = GUIDesigns::buildFXMenuCommand(ret, TL("Reset edge end points"), nullptr, &parent, MID_GNE_RESET_GEOMETRYPOINT);
558 // enable or disable reset end points
559 if (getParentEdges().front()->hasCustomEndPoints()) {
560 resetEndPoints->enable();
561 } else {
562 resetEndPoints->disable();
563 }
564 // check if we clicked over a geometry point
565 if ((editMode == NetworkEditMode::NETWORK_MOVE) && getParentEdges().front()->clickedOverGeometryPoint(mousePosition)) {
566 GUIDesigns::buildFXMenuCommand(ret, TL("Set custom Geometry Point"), nullptr, &parent, MID_GNE_CUSTOM_GEOMETRYPOINT);
567 }
568 // add separator
569 new FXMenuSeparator(ret);
570 //build operations
571 if ((editMode != NetworkEditMode::NETWORK_CONNECT) && (editMode != NetworkEditMode::NETWORK_TLS)) {
572 // build edge operations
573 buildEdgeOperations(parent, ret);
574 // build lane operations
575 buildLaneOperations(parent, ret);
576 // build template operations
577 buildTemplateOperations(parent, ret);
578 // add separator
579 new FXMenuSeparator(ret);
580 // build rechable operations
581 buildRechableOperations(parent, ret);
582 } else if (editMode == NetworkEditMode::NETWORK_TLS) {
584 GUIDesigns::buildFXMenuCommand(ret, TL("Select state for all links from this edge:"), nullptr, nullptr, 0);
585 const std::vector<std::string> names = GNEInternalLane::LinkStateNames.getStrings();
586 for (auto it : names) {
587 FXuint state = GNEInternalLane::LinkStateNames.get(it);
588 FXMenuRadio* mc = new FXMenuRadio(ret, it.c_str(), this, FXDataTarget::ID_OPTION + state);
591 }
592 }
593 } else {
594 FXMenuCommand* mc = GUIDesigns::buildFXMenuCommand(ret, TL("Additional options available in 'Inspect Mode'"), nullptr, nullptr, 0);
595 mc->handle(&parent, FXSEL(SEL_COMMAND, FXWindow::ID_DISABLE), nullptr);
596 }
597 // build shape positions menu
598 if (editMode != NetworkEditMode::NETWORK_TLS) {
599 new FXMenuSeparator(ret);
600 // get lane shape
601 const auto& laneShape = myLaneGeometry.getShape();
602 // get variables
603 const double pos = laneShape.nearest_offset_to_point2D(mousePosition);
604 const Position firstAnglePos = laneShape.positionAtOffset2D(pos - 0.001);
605 const Position secondAnglePos = laneShape.positionAtOffset2D(pos);
606 const double angle = firstAnglePos.angleTo2D(secondAnglePos);
607
608 // build menu commands
609 GUIDesigns::buildFXMenuCommand(ret, TL("Shape pos: ") + toString(pos), nullptr, nullptr, 0);
610 GUIDesigns::buildFXMenuCommand(ret, TL("Length pos: ") + toString(pos * getLaneParametricLength() / getLaneShapeLength()), nullptr, nullptr, 0);
611 if (getParentEdges().front()->getNBEdge()->getDistance() != 0) {
612 GUIDesigns::buildFXMenuCommand(ret, TL("Distance: ") + toString(getParentEdges().front()->getNBEdge()->getDistancAt(pos)), nullptr, nullptr, 0);
613 }
614 GUIDesigns::buildFXMenuCommand(ret, TL("Height: ") + toString(firstAnglePos.z()), nullptr, nullptr, 0);
615 GUIDesigns::buildFXMenuCommand(ret, TL("Angle: ") + toString((GeomHelper::naviDegree(angle))), nullptr, nullptr, 0);
616 }
617 }
618 return ret;
619}
620
621
622double
624 return s.addSize.getExaggeration(s, this);
625}
626
627
632
633
634void
635GNELane::updateCenteringBoundary(const bool /*updateGrid*/) {
636 // nothing to update
637}
638
639
640int
642 return myIndex;
643}
644
645
646void
648 myIndex = index;
649 setNetworkElementID(getParentEdges().front()->getNBEdge()->getLaneID(index));
650}
651
652
653double
655 return getParentEdges().front()->getNBEdge()->getLaneSpeed(myIndex);
656}
657
658
659double
661 double laneParametricLength = getParentEdges().front()->getNBEdge()->getLoadedLength();
662 if (laneParametricLength > 0) {
663 return laneParametricLength;
664 } else {
665 throw ProcessError(TL("Lane Parametric Length cannot be never 0"));
666 }
667}
668
669
670double
674
675
676bool
678 return getParentEdges().front()->getNBEdge()->getPermissions(myIndex) == vclass;
679}
680
681
686
687
688std::string
690 const NBEdge* edge = getParentEdges().front()->getNBEdge();
691 switch (key) {
692 case SUMO_ATTR_ID:
693 return getMicrosimID();
695 return getParentEdges().front()->getFromJunction()->getID();
697 return getParentEdges().front()->getToJunction()->getID();
698 case SUMO_ATTR_SPEED:
699 return toString(edge->getLaneSpeed(myIndex));
700 case SUMO_ATTR_ALLOW:
708 case SUMO_ATTR_WIDTH:
710 return "default";
711 } else {
712 return toString(edge->getLaneStruct(myIndex).width);
713 }
715 return toString(edge->getLaneStruct(myIndex).friction);
720 case SUMO_ATTR_SHAPE:
725 case SUMO_ATTR_TYPE:
726 return edge->getLaneStruct(myIndex).type;
727 case SUMO_ATTR_INDEX:
728 return toString(myIndex);
734 } else {
735 return "";
736 }
737 case GNE_ATTR_PARENT:
738 return getParentEdges().front()->getID();
739 default:
740 return getCommonAttribute(key);
741 }
742}
743
744
745double
749
750
755
756
759 switch (key) {
760 case SUMO_ATTR_SHAPE:
762 return getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).customShape;
763 default:
765 }
766}
767
768
769std::string
771 std::string result = getAttribute(key);
772 if ((key == SUMO_ATTR_ALLOW || key == SUMO_ATTR_DISALLOW) && result.find("all") != std::string::npos) {
773 result += " " + getVehicleClassNames(SVCAll, true);
774 }
775 return result;
776}
777
778
779void
780GNELane::setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList) {
781 switch (key) {
782 case SUMO_ATTR_ID:
783 throw InvalidArgument("Modifying attribute '" + toString(key) + "' of " + getTagStr() + " isn't allowed");
784 case SUMO_ATTR_SPEED:
785 case SUMO_ATTR_ALLOW:
789 case SUMO_ATTR_WIDTH:
793 case SUMO_ATTR_SHAPE:
796 case SUMO_ATTR_TYPE:
797 case SUMO_ATTR_INDEX:
799 // special case for stop offset, because affects to stopOffsetExceptions (#15297)
800 if (canParse<double>(value) && (parse<double>(value) == 0)) {
802 }
803 GNEChange_Attribute::changeAttribute(this, key, value, undoList);
804 break;
806 GNEChange_Attribute::changeAttribute(this, key, value, undoList);
807 break;
808 default:
809 setCommonAttribute(key, value, undoList);
810 break;
811 }
812}
813
814
815bool
816GNELane::isValid(SumoXMLAttr key, const std::string& value) {
817 switch (key) {
818 case SUMO_ATTR_ID:
819 case SUMO_ATTR_INDEX:
820 return false;
821 case SUMO_ATTR_SPEED:
822 return canParse<double>(value);
823 case SUMO_ATTR_ALLOW:
827 return canParseVehicleClasses(value);
828 case SUMO_ATTR_WIDTH:
829 if (value.empty() || (value == "default")) {
830 return true;
831 } else {
832 return canParse<double>(value) && ((parse<double>(value) > 0) || (parse<double>(value) == NBEdge::UNSPECIFIED_WIDTH));
833 }
836 return canParse<double>(value) && (parse<double>(value) >= 0);
838 return canParse<bool>(value);
839 case SUMO_ATTR_SHAPE:
841 // A lane shape can either be empty or have more than 1 element
842 if (value.empty()) {
843 return true;
844 } else if (canParse<PositionVector>(value)) {
845 return parse<PositionVector>(value).size() > 1;
846 }
847 return false;
848 case GNE_ATTR_OPPOSITE: {
849 if (value.empty()) {
850 return true;
851 } else {
852 NBEdge* oppEdge = myNet->getEdgeCont().retrieve(value.substr(0, value.rfind("_")));
853 if (oppEdge == nullptr || oppEdge->getLaneID(oppEdge->getNumLanes() - 1) != value) {
854 return false;
855 }
856 NBEdge* edge = getParentEdges().front()->getNBEdge();
857 if (oppEdge->getFromNode() != edge->getToNode() || oppEdge->getToNode() != edge->getFromNode()) {
858 WRITE_WARNINGF(TL("Opposite lane '%' does not connect the same nodes as edge '%'!"), value, edge->getID());
859 return false;
860 }
861 return true;
862 }
863 }
864 case SUMO_ATTR_TYPE:
865 return true;
867 return canParse<double>(value) && (parse<double>(value) >= 0);
869 return canParseVehicleClasses(value);
870 default:
871 return isCommonAttributeValid(key, value);
872 }
873}
874
875
876bool
878 switch (key) {
879 case SUMO_ATTR_ID:
880 case SUMO_ATTR_INDEX:
881 return false;
883 return getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).laneStopOffset.getOffset() > 0;
884 default:
885 return true;
886 }
887}
888
889
890bool
892 const NBEdge* edge = getParentEdges().front()->getNBEdge();
893 switch (key) {
894 case SUMO_ATTR_WIDTH:
896 default:
897 return false;
898 }
899}
900
901
902void
903GNELane::setSpecialColor(const RGBColor* color, double colorValue) {
904 mySpecialColor = color;
905 mySpecialColorValue = colorValue;
906}
907
908// ===========================================================================
909// private
910// ===========================================================================
911
912void
913GNELane::setAttribute(SumoXMLAttr key, const std::string& value) {
914 // get parent edge
915 NBEdge* edge = getParentEdges().front()->getNBEdge();
916 // get template editor
918 // check if we have to update template
919 const bool updateTemplate = templateEditor->getEdgeTemplate() ? (templateEditor->getEdgeTemplate()->getID() == getParentEdges().front()->getID()) : false;
920 switch (key) {
921 case SUMO_ATTR_ID:
922 case SUMO_ATTR_INDEX:
923 throw InvalidArgument("Modifying attribute '" + toString(key) + "' of " + getTagStr() + " isn't allowed");
924 case SUMO_ATTR_SPEED:
925 edge->setSpeed(myIndex, parse<double>(value));
926 break;
927 case SUMO_ATTR_ALLOW:
929 break;
932 break;
935 break;
938 break;
939 case SUMO_ATTR_WIDTH:
940 if (value.empty() || (value == "default")) {
942 } else {
943 edge->setLaneWidth(myIndex, parse<double>(value));
944 }
945 // update edge parent boundary
946 getParentEdges().front()->updateCenteringBoundary(true);
947 break;
949 edge->setFriction(myIndex, parse<double>(value));
950 break;
952 edge->setEndOffset(myIndex, parse<double>(value));
953 break;
955 edge->setAcceleration(myIndex, parse<bool>(value));
956 break;
957 case SUMO_ATTR_SHAPE:
959 // set new shape
960 edge->setLaneShape(myIndex, parse<PositionVector>(value));
961 // update edge parent boundary
962 getParentEdges().front()->updateCenteringBoundary(true);
963 break;
964 case GNE_ATTR_OPPOSITE: {
965 if (value != "") {
966 NBEdge* oppEdge = myNet->getEdgeCont().retrieve(value.substr(0, value.rfind("_")));
967 oppEdge->getLaneStruct(oppEdge->getNumLanes() - 1).oppositeID = getID();
968 } else {
969 // reset prior oppEdge if existing
970 const std::string oldValue = getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).oppositeID;
971 NBEdge* oppEdge = myNet->getEdgeCont().retrieve(oldValue.substr(0, oldValue.rfind("_")));
972 if (oppEdge != nullptr) {
973 oppEdge->getLaneStruct(oppEdge->getNumLanes() - 1).oppositeID = "";
974 }
975 }
976 getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).oppositeID = value;
977 break;
978 }
979 case SUMO_ATTR_TYPE:
980 edge->getLaneStruct(myIndex).type = value;
981 break;
983 if (value.empty()) {
985 } else {
986 edge->getLaneStruct(myIndex).laneStopOffset.setOffset(parse<double>(value));
987 }
988 break;
991 break;
992 default:
993 setCommonAttribute(key, value);
994 break;
995 }
996 // update template
997 if (updateTemplate) {
998 templateEditor->setEdgeTemplate(getParentEdges().front());
999 }
1000 // invalidate demand path calculator
1002}
1003
1004
1005void
1006GNELane::drawLane(const GUIVisualizationSettings& s, const double layer) const {
1007 // Push layer matrix
1009 // translate to layer
1010 drawInLayer(layer);
1011 // set lane colors
1012 RGBColor laneColor = setLaneColor(s);
1013 // never draw when at full transparency
1014 if (laneColor.alpha() != 0) {
1015 // Check if lane has to be draw as railway and if isn't being drawn for selecting
1017 // draw as railway
1019 } else if (myShapeColors.size() > 0) {
1020 // draw geometry with own colors
1023 } else {
1024 // draw geometry with current color
1026 double drawingWidth = myDrawingConstants->getDrawingWidth();
1028 drawingWidth = myNet->getViewNet()->m2p(drawingWidth);
1029 }
1032 }
1033 // if lane is selected, draw a second lane over it
1035 // draw start end shape points
1037 // check if draw details
1039 // draw markings
1041 // Draw direction indicators
1043 // draw lane textures
1044 drawTextures(s);
1045 // draw lane arrows
1046 drawArrows(s);
1047 // draw link numbers
1048 drawLinkNo(s);
1049 // draw TLS link numbers
1050 drawTLSLinkNo(s);
1051 // draw stopOffsets
1053 }
1054 // draw shape edited
1055 drawShapeEdited(s);
1056 }
1057 // Pop layer matrix
1059}
1060
1061
1062void
1064 // only draw if lane is selected
1065 if (drawUsingSelectColor()) {
1066 // Push matrix
1068 // move back
1069 glTranslated(0, 0, 0.1);
1070 // set selected edge color
1072 // draw geometry with current color
1075 // Pop matrix
1077 }
1078}
1079
1080
1081void
1083 // if shape is being edited, draw point and green line
1084 if (myShapeEdited) {
1085 // push shape edited matrix
1087 // translate
1089 // set selected edge color
1091 // draw shape around
1094 // move front
1095 glTranslated(0, 0, 1);
1096 // draw geometry points
1101 // Pop shape edited matrix
1103 }
1104}
1105
1106
1107void
1109 // draw additional children
1110 for (const auto& additional : getChildAdditionals()) {
1111 if (!additional->getTagProperty()->isListedElement()) {
1112 additional->drawGL(s);
1113 }
1114 }
1115 // draw demand element children
1116 for (const auto& demandElement : getChildDemandElements()) {
1117 if (!demandElement->getTagProperty()->isPlacedInRTree()) {
1118 demandElement->drawGL(s);
1119 }
1120 }
1121 // draw path additional elements
1125}
1126
1127
1128void
1130 // check conditions
1132 // check if this is the last lane (note: First lane is the lane more far of the edge's center)
1133 const bool firstlane = (myIndex == 0);
1134 const bool lastLane = (myIndex == (getParentEdges().front()->getNBEdge()->getNumLanes() - 1));
1135 // declare separator width
1136 const auto separatorWidth = SUMO_const_laneMarkWidth * 0.5;
1137 // get passengers change left and right for previous, current and next lane
1138 const bool changeRightTop = lastLane ? true : getParentEdges().front()->getNBEdge()->allowsChangingRight(myIndex + 1, SVC_PASSENGER);
1139 const bool changeLeftCurrent = lastLane ? true : getParentEdges().front()->getNBEdge()->allowsChangingLeft(myIndex, SVC_PASSENGER);
1140 const bool changeRightCurrent = firstlane ? true : getParentEdges().front()->getNBEdge()->allowsChangingRight(myIndex, SVC_PASSENGER);
1141 const bool changeLeftBot = firstlane ? true : getParentEdges().front()->getNBEdge()->allowsChangingLeft(myIndex - 1, SVC_PASSENGER);
1142 // save current color
1143 const auto currentColor = GLHelper::getColor();
1144 // separator offsets
1145 const double topSeparatorOffset = myDrawingConstants->getOffset() + (myDrawingConstants->getDrawingWidth() * -1) + separatorWidth;
1146 const double botSeparatorOffset = myDrawingConstants->getOffset() + myDrawingConstants->getDrawingWidth() - separatorWidth;
1147 // push matrix
1149 // translate
1150 glTranslated(0, 0, 0.1);
1151 // continue depending of lanes
1152 if (myDrawingConstants->drawSuperposed() || (firstlane && lastLane)) {
1153 // draw top and bot separator only
1155 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, topSeparatorOffset);
1156 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, botSeparatorOffset);
1157 } else if (firstlane) {
1158 // draw top separator
1159 GLHelper::setColor((changeLeftCurrent && changeRightTop) ? RGBColor::WHITE : RGBColor::ORANGE);
1160 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, topSeparatorOffset);
1161 // check if draw inverse marking
1162 if (changeLeftCurrent) {
1163 GLHelper::setColor(currentColor);
1165 3, 6, topSeparatorOffset, true, true, s.lefthand, 1);
1166 }
1167 // draw bot separator
1169 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, botSeparatorOffset);
1170 } else if (lastLane) {
1171 // draw top separator
1173 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, topSeparatorOffset);
1174 // draw bot separator
1175 GLHelper::setColor((changeRightCurrent && changeLeftBot) ? RGBColor::WHITE : RGBColor::ORANGE);
1176 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, botSeparatorOffset);
1177 // check if draw inverse marking
1178 if (changeRightCurrent) {
1179 GLHelper::setColor(currentColor);
1181 3, 6, botSeparatorOffset, true, true, s.lefthand, 1);
1182 }
1183 } else {
1184 // draw top separator
1185 GLHelper::setColor((changeLeftCurrent && changeRightTop) ? RGBColor::WHITE : RGBColor::ORANGE);
1186 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, topSeparatorOffset);
1187 // check if draw inverse marking
1188 if (changeLeftCurrent) {
1189 GLHelper::setColor(currentColor);
1191 3, 6, topSeparatorOffset, true, true, s.lefthand, 1);
1192 }
1193 // draw bot separator
1194 GLHelper::setColor((changeRightCurrent && changeLeftBot) ? RGBColor::WHITE : RGBColor::ORANGE);
1195 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, botSeparatorOffset);
1196 // check if draw inverse marking
1197 if (changeRightCurrent) {
1198 GLHelper::setColor(currentColor);
1200 3, 6, botSeparatorOffset, true, true, s.lefthand, 1);
1201 }
1202 }
1203 // pop matrix
1205 }
1206}
1207
1208
1209void
1211 // check draw conditions
1212 if (s.drawLinkJunctionIndex.show(getParentEdges().front()->getToJunction())) {
1213 // get connections
1214 const auto& connections = getParentEdges().front()->getNBEdge()->getConnectionsFromLane(myIndex);
1215 // get number of links
1216 const int noLinks = (int)connections.size();
1217 // only continue if there is links
1218 if (noLinks > 0) {
1219 // push link matrix
1221 // move front
1222 glTranslated(0, 0, GLO_TEXTNAME);
1223 // calculate width
1224 const double width = getParentEdges().front()->getNBEdge()->getLaneWidth(myIndex) / (double) noLinks;
1225 // get X1
1226 double x1 = getParentEdges().front()->getNBEdge()->getLaneWidth(myIndex) / 2;
1227 // iterate over links
1228 for (int i = noLinks - 1; i >= 0; i--) {
1229 // calculate x2
1230 const double x2 = x1 - (double)(width / 2.);
1231 // get link index
1232 const int linkIndex = getParentEdges().front()->getNBEdge()->getToNode()->getConnectionIndex(getParentEdges().front()->getNBEdge(),
1233 connections[s.lefthand ? noLinks - 1 - i : i]);
1234 // draw link index
1236 // update x1
1237 x1 -= width;
1238 }
1239 // pop link matrix
1241 }
1242 }
1243}
1244
1245
1246void
1248 // check conditions
1250 (getParentEdges().front()->getToJunction()->getNBNode()->getControllingTLS().size() > 0)) {
1251 // get connections
1252 const auto& connections = getParentEdges().front()->getNBEdge()->getConnectionsFromLane(myIndex);
1253 // get numer of links
1254 const int noLinks = (int)connections.size();
1255 // only continue if there are links
1256 if (noLinks > 0) {
1257 // push link matrix
1259 // move t front
1260 glTranslated(0, 0, GLO_TEXTNAME);
1261 // calculate width
1262 const double w = getParentEdges().front()->getNBEdge()->getLaneWidth(myIndex) / (double) noLinks;
1263 // calculate x1
1264 double x1 = getParentEdges().front()->getNBEdge()->getLaneWidth(myIndex) / 2;
1265 // iterate over links
1266 for (int i = noLinks - 1; i >= 0; --i) {
1267 // calculate x2
1268 const double x2 = x1 - (double)(w / 2.);
1269 // get link number
1270 const int linkNo = connections[s.lefthand ? noLinks - 1 - i : i].tlLinkIndex;
1271 // draw link number
1273 // update x1
1274 x1 -= w;
1275 }
1276 // pop link matrix
1278 }
1279 }
1280}
1281
1282
1283void
1285 if (s.showLinkDecals && getParentEdges().front()->getToJunction()->isLogicValid()) {
1286 // calculate begin, end and rotation
1287 const Position& begin = myLaneGeometry.getShape()[-2];
1288 const Position& end = myLaneGeometry.getShape().back();
1289 const double rot = GUIGeometry::calculateRotation(begin, end);
1290 // push arrow matrix
1292 // move front (note: must draw on top of junction shape?
1293 glTranslated(0, 0, 3);
1294 // change color depending of spreadSuperposed
1297 } else {
1299 }
1300 // move to end
1301 glTranslated(end.x(), end.y(), 0);
1302 // rotate
1303 glRotated(rot, 0, 0, 1);
1304 const double width = getParentEdges().front()->getNBEdge()->getLaneWidth(myIndex);
1305 if (width < SUMO_const_laneWidth) {
1307 }
1308 // apply offset
1309 glTranslated(myDrawingConstants->getOffset() * -1, 0, 0);
1310 // get destination node
1311 const NBNode* dest = getParentEdges().front()->getNBEdge()->myTo;
1312 // draw all links iterating over connections
1313 for (const auto& connection : getParentEdges().front()->getNBEdge()->myConnections) {
1314 if (connection.fromLane == myIndex) {
1315 // get link direction
1316 LinkDirection dir = dest->getDirection(getParentEdges().front()->getNBEdge(), connection.toEdge, s.lefthand);
1317 // draw depending of link direction
1318 switch (dir) {
1320 GLHelper::drawBoxLine(Position(0, 4), 0, 2, .05);
1321 GLHelper::drawTriangleAtEnd(Position(0, 4), Position(0, 1), (double) 1, (double) .25);
1322 break;
1324 GLHelper::drawBoxLine(Position(0, 4), 0, 1.5, .05);
1325 GLHelper::drawBoxLine(Position(0, 2.5), 90, 1, .05);
1326 GLHelper::drawTriangleAtEnd(Position(0, 2.5), Position(1.5, 2.5), (double) 1, (double) .25);
1327 break;
1329 GLHelper::drawBoxLine(Position(0, 4), 0, 1.5, .05);
1330 GLHelper::drawBoxLine(Position(0, 2.5), -90, 1, .05);
1331 GLHelper::drawTriangleAtEnd(Position(0, 2.5), Position(-1.5, 2.5), (double) 1, (double) .25);
1332 break;
1334 GLHelper::drawBoxLine(Position(0, 4), 0, 1.5, .05);
1335 GLHelper::drawBoxLine(Position(0, 2.5), 90, .5, .05);
1336 GLHelper::drawBoxLine(Position(0.5, 2.5), 180, 1, .05);
1337 GLHelper::drawTriangleAtEnd(Position(0.5, 2.5), Position(0.5, 4), (double) 1, (double) .25);
1338 break;
1340 GLHelper::drawBoxLine(Position(0, 4), 0, 1.5, .05);
1341 GLHelper::drawBoxLine(Position(0, 2.5), -90, 1, .05);
1342 GLHelper::drawBoxLine(Position(-0.5, 2.5), -180, 1, .05);
1343 GLHelper::drawTriangleAtEnd(Position(-0.5, 2.5), Position(-0.5, 4), (double) 1, (double) .25);
1344 break;
1346 GLHelper::drawBoxLine(Position(0, 4), 0, 1.5, .05);
1347 GLHelper::drawBoxLine(Position(0, 2.5), 45, .7, .05);
1348 GLHelper::drawTriangleAtEnd(Position(0, 2.5), Position(1.2, 1.3), (double) 1, (double) .25);
1349 break;
1351 GLHelper::drawBoxLine(Position(0, 4), 0, 1.5, .05);
1352 GLHelper::drawBoxLine(Position(0, 2.5), -45, .7, .05);
1353 GLHelper::drawTriangleAtEnd(Position(0, 2.5), Position(-1.2, 1.3), (double) 1, (double) .25);
1354 break;
1356 GLHelper::drawBoxLine(Position(1, 5.8), 245, 2, .05);
1357 GLHelper::drawBoxLine(Position(-1, 5.8), 115, 2, .05);
1358 glTranslated(0, 5, 0);
1359 GLHelper::drawOutlineCircle(0.9, 0.8, 32);
1360 glTranslated(0, -5, 0);
1361 break;
1362 default:
1363 break;
1364 }
1365 }
1366 }
1367 // pop arrow matrix
1369 }
1370}
1371
1372
1373void
1376 glTranslated(0, 0, 0.1); // must draw on top of junction shape
1377 std::vector<NBEdge::Connection> connections = getParentEdges().front()->getNBEdge()->getConnectionsFromLane(myIndex);
1378 NBNode* node = getParentEdges().front()->getNBEdge()->getToNode();
1379 const Position& startPos = myLaneGeometry.getShape()[-1];
1380 for (auto it : connections) {
1381 const LinkState state = node->getLinkState(getParentEdges().front()->getNBEdge(), it.toEdge, it.fromLane, it.toLane, it.mayDefinitelyPass, it.tlID);
1382 switch (state) {
1384 glColor3d(1, 1, 0);
1385 break;
1387 glColor3d(0, 1, 1);
1388 break;
1389 case LINKSTATE_MAJOR:
1390 glColor3d(1, 1, 1);
1391 break;
1392 case LINKSTATE_MINOR:
1393 glColor3d(.4, .4, .4);
1394 break;
1395 case LINKSTATE_STOP:
1396 glColor3d(.7, .4, .4);
1397 break;
1398 case LINKSTATE_EQUAL:
1399 glColor3d(.7, .7, .7);
1400 break;
1402 glColor3d(.7, .7, 1);
1403 break;
1404 case LINKSTATE_ZIPPER:
1405 glColor3d(.75, .5, 0.25);
1406 break;
1407 default:
1408 throw ProcessError(TLF("Unexpected LinkState '%'", toString(state)));
1409 }
1410 const Position& endPos = it.toEdge->getLaneShape(it.toLane)[0];
1411 glBegin(GL_LINES);
1412 glVertex2d(startPos.x(), startPos.y());
1413 glVertex2d(endPos.x(), endPos.y());
1414 glEnd();
1415 GLHelper::drawTriangleAtEnd(startPos, endPos, (double) 1.5, (double) .2);
1416 }
1418}
1419
1420
1421void
1422GNELane::calculateLaneContour(const GUIVisualizationSettings& s, const double layer) const {
1423 // first check if edge parent was inserted with full boundary
1424 if (!gViewObjectsHandler.checkBoundaryParentObject(s, this, layer, getParentEdges().front())) {
1425 // calculate contour
1428 true, true, myDrawingConstants->getOffset(), nullptr, getParentEdges().front());
1429 // calculate geometry points contour if we're editing shape
1430 if (myShapeEdited) {
1434 }
1435 }
1436}
1437
1438
1441 const auto& inspectedElements = myNet->getViewNet()->getInspectedElements();
1442 // declare a RGBColor variable
1443 RGBColor color;
1444 // we need to draw lanes with a special color if we're inspecting a Trip or Flow and this lane belongs to a via's edge.
1445 if (inspectedElements.getFirstAC() &&
1446 !inspectedElements.getFirstAC()->isAttributeCarrierSelected() &&
1447 inspectedElements.getFirstAC()->getTagProperty()->vehicleEdges()) {
1448 // obtain attribute "via"
1449 std::vector<std::string> viaEdges = parse<std::vector<std::string> >(inspectedElements.getFirstAC()->getAttribute(SUMO_ATTR_VIA));
1450 // iterate over viaEdges
1451 for (const auto& edge : viaEdges) {
1452 // check if parent edge is in the via edges
1453 if (getParentEdges().front()->getID() == edge) {
1454 // set green color in GLHelper and return it
1455 color = RGBColor::GREEN;
1456 }
1457 }
1458 }
1459 if (mySpecialColor != nullptr) {
1460 // If special color is enabled, set it
1461 color = *mySpecialColor;
1462 } else if (getParentEdges().front()->drawUsingSelectColor() && s.laneColorer.getActive() != 1) {
1463 // override with special colors (unless the color scheme is based on selection)
1465 } else {
1466 // Get normal lane color
1467 const GUIColorer& c = s.laneColorer;
1468 if (!setFunctionalColor(c.getActive(), color) && !setMultiColor(s, c, color)) {
1469 color = c.getScheme().getColor(getColorValue(s, c.getActive()));
1470 }
1471 }
1472 // special color for conflicted candidate edges
1473 if (getParentEdges().front()->isConflictedCandidate()) {
1474 // extra check for route frame
1477 }
1478 }
1479 // special color for special candidate edges
1480 if (getParentEdges().front()->isSpecialCandidate()) {
1481 // extra check for route frame
1484 }
1485 }
1486 // special color for candidate edges
1487 if (getParentEdges().front()->isPossibleCandidate()) {
1488 // extra check for route frame
1491 }
1492 }
1493 // special color for source candidate edges
1494 if (getParentEdges().front()->isSourceCandidate()) {
1496 }
1497 // special color for target candidate edges
1498 if (getParentEdges().front()->isTargetCandidate()) {
1500 }
1501 // special color for invalid candidate edges
1502 if (getParentEdges().front()->isInvalidCandidate()) {
1504 }
1505 // special color for source candidate lanes
1506 if (mySourceCandidate) {
1508 }
1509 // special color for target candidate lanes
1510 if (myTargetCandidate) {
1512 }
1513 // special color for special candidate lanes
1514 if (mySpecialCandidate) {
1516 }
1517 // special color for possible candidate lanes
1518 if (myPossibleCandidate) {
1520 }
1521 // special color for conflicted candidate lanes
1524 }
1525 // special color for invalid candidate lanes
1526 if (myInvalidCandidate) {
1528 }
1529 // set color in GLHelper
1530 GLHelper::setColor(color);
1531 return color;
1532}
1533
1534
1535bool
1536GNELane::setFunctionalColor(int activeScheme, RGBColor& col) const {
1537 switch (activeScheme) {
1538 case 6: {
1539 double hue = GeomHelper::naviDegree(myLaneGeometry.getShape().beginEndAngle()); // [0-360]
1540 col = RGBColor::fromHSV(hue, 1., 1.);
1541 return true;
1542 }
1543 default:
1544 return false;
1545 }
1546}
1547
1548
1549bool
1551 const int activeScheme = c.getActive();
1552 myShapeColors.clear();
1553 switch (activeScheme) {
1554 case 9: // color by height at segment start
1555 for (PositionVector::const_iterator ii = myLaneGeometry.getShape().begin(); ii != myLaneGeometry.getShape().end() - 1; ++ii) {
1556 myShapeColors.push_back(c.getScheme().getColor(ii->z()));
1557 }
1558 col = c.getScheme().getColor(getColorValue(s, 8));
1559 return true;
1560 case 11: // color by inclination at segment start
1561 for (int ii = 1; ii < (int)myLaneGeometry.getShape().size(); ++ii) {
1562 const double inc = (myLaneGeometry.getShape()[ii].z() - myLaneGeometry.getShape()[ii - 1].z()) / MAX2(POSITION_EPS, myLaneGeometry.getShape()[ii].distanceTo2D(myLaneGeometry.getShape()[ii - 1]));
1563 myShapeColors.push_back(c.getScheme().getColor(inc));
1564 }
1565 col = c.getScheme().getColor(getColorValue(s, 10));
1566 return true;
1567 default:
1568 return false;
1569 }
1570}
1571
1572
1573double
1574GNELane::getColorValue(const GUIVisualizationSettings& s, int activeScheme) const {
1575 const SVCPermissions myPermissions = getParentEdges().front()->getNBEdge()->getPermissions(myIndex);
1576 if (mySpecialColor != nullptr && mySpecialColorValue != std::numeric_limits<double>::max()) {
1577 return mySpecialColorValue;
1578 }
1579 switch (activeScheme) {
1580 case 0:
1581 switch (myPermissions) {
1582 case SVC_PEDESTRIAN:
1583 return 1;
1584 case SVC_BICYCLE:
1585 return 2;
1586 case 0:
1587 // forbidden road or green verge
1588 return getParentEdges().front()->getNBEdge()->getPermissions() == 0 ? 10 : 3;
1589 case SVC_SHIP:
1590 return 4;
1591 case SVC_AUTHORITY:
1592 return 8;
1593 case SVC_AIRCRAFT:
1594 case SVC_DRONE:
1595 return 12;
1596 default:
1597 break;
1598 }
1599 if (getParentEdges().front()->getNBEdge()->isMacroscopicConnector()) {
1600 return 9;
1601 } else if (isRailway(myPermissions)) {
1602 return 5;
1603 } else if ((myPermissions & SVC_PASSENGER) != 0) {
1604 if ((myPermissions & (SVC_RAIL_CLASSES & ~SVC_RAIL_FAST)) != 0 && (myPermissions & SVC_SHIP) == 0) {
1605 return 6;
1606 } else {
1607 return 0;
1608 }
1609 } else {
1610 if ((myPermissions & SVC_RAIL_CLASSES) != 0 && (myPermissions & SVC_SHIP) == 0) {
1611 return 6;
1612 } else {
1613 return 7;
1614 }
1615 }
1616 case 1:
1617 return isAttributeCarrierSelected() || getParentEdges().front()->isAttributeCarrierSelected();
1618 case 2:
1619 return (double)myPermissions;
1620 case 3:
1621 return getParentEdges().front()->getNBEdge()->getLaneSpeed(myIndex);
1622 case 4:
1623 return getParentEdges().front()->getNBEdge()->getNumLanes();
1624 case 5: {
1625 return getParentEdges().front()->getNBEdge()->getLoadedLength() / getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).shape.length();
1626 }
1627 // case 6: by angle (functional)
1628 case 7: {
1629 return getParentEdges().front()->getNBEdge()->getPriority();
1630 }
1631 case 8: {
1632 // color by z of first shape point
1633 return myLaneGeometry.getShape()[0].z();
1634 }
1635 // case 9: by segment height
1636 case 10: {
1637 // color by incline
1638 return (myLaneGeometry.getShape()[-1].z() - myLaneGeometry.getShape()[0].z()) / getParentEdges().front()->getNBEdge()->getLength();
1639 }
1640 // case 11: by segment incline
1641
1642 case 12: {
1643 // by numerical edge param value
1644 if (getParentEdges().front()->getNBEdge()->hasParameter(s.edgeParam)) {
1645 try {
1646 return StringUtils::toDouble(getParentEdges().front()->getNBEdge()->getParameter(s.edgeParam, "0"));
1647 } catch (NumberFormatException&) {
1648 try {
1649 return StringUtils::toBool(getParentEdges().front()->getNBEdge()->getParameter(s.edgeParam, "0"));
1650 } catch (BoolFormatException&) {
1651 return -1;
1652 }
1653 }
1654 } else {
1656 }
1657 }
1658 case 13: {
1659 // by numerical lane param value
1660 if (getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).hasParameter(s.laneParam)) {
1661 try {
1662 return StringUtils::toDouble(getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).getParameter(s.laneParam, "0"));
1663 } catch (NumberFormatException&) {
1664 try {
1665 return StringUtils::toBool(getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).getParameter(s.laneParam, "0"));
1666 } catch (BoolFormatException&) {
1667 return -1;
1668 }
1669 }
1670 } else {
1672 }
1673 }
1674 case 14: {
1675 return getParentEdges().front()->getNBEdge()->getDistance();
1676 }
1677 case 15: {
1678 return fabs(getParentEdges().front()->getNBEdge()->getDistance());
1679 }
1680 }
1681 return 0;
1682}
1683
1684
1685void
1686GNELane::drawOverlappedRoutes(const int numRoutes) const {
1687 // get middle point and angle
1690 // Push route matrix
1692 // translate to front
1693 glTranslated(0, 0, GLO_ROUTE + 1);
1694 // get middle
1695 GLHelper::drawText(toString(numRoutes) + " routes", center, 0, 1.8, RGBColor::BLACK, angle + 90);
1696 // pop route matrix
1698
1699}
1700
1701
1702void
1704 const auto& laneStopOffset = getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).laneStopOffset;
1705 // check conditions
1706 if (laneStopOffset.isDefined() && (laneStopOffset.getPermissions() & SVC_PASSENGER) != 0) {
1707 const Position& end = getLaneShape().back();
1708 const Position& f = getLaneShape()[-2];
1709 const double rot = RAD2DEG(atan2((end.x() - f.x()), (f.y() - end.y())));
1712 glTranslated(end.x(), end.y(), 1);
1713 glRotated(rot, 0, 0, 1);
1714 glTranslated(0, laneStopOffset.getOffset(), 0);
1715 glBegin(GL_QUADS);
1716 glVertex2d(-myDrawingConstants->getDrawingWidth(), 0.0);
1717 glVertex2d(-myDrawingConstants->getDrawingWidth(), 0.2);
1718 glVertex2d(myDrawingConstants->getDrawingWidth(), 0.2);
1719 glVertex2d(myDrawingConstants->getDrawingWidth(), 0.0);
1720 glEnd();
1722 }
1723}
1724
1725
1726bool
1728 return isWaterway(getParentEdges().front()->getNBEdge()->getPermissions(myIndex)) && s.showRails; // reusing the showRails setting
1729}
1730
1731
1732void
1734 // Draw direction indicators if the correspondient option is enabled
1735 if (s.showLaneDirection) {
1736 // improve visibility of superposed rail edges
1738 glColor3d(0.3, 0.3, 0.3);
1739 }
1740 // get width and sideOffset
1741 const double width = MAX2(NUMERICAL_EPS, (myDrawingConstants->getDrawingWidth() * 2 * myDrawingConstants->getExaggeration()));
1742 // push direction indicator matrix
1744 // move to front
1745 glTranslated(0, 0, 0.1);
1746 // iterate over shape
1747 for (int i = 0; i < (int) myLaneGeometry.getShape().size() - 1; ++i) {
1748 // push triangle matrix
1750 // move front
1751 glTranslated(myLaneGeometry.getShape()[i].x(), myLaneGeometry.getShape()[i].y(), 0.1);
1752 // rotate
1753 glRotated(myLaneGeometry.getShapeRotations()[i], 0, 0, 1);
1754 // calculate subwidth
1755 for (double subWidth = 0; subWidth < myLaneGeometry.getShapeLengths()[i]; subWidth += width) {
1756 // calculate length
1757 const double length = MIN2(width * 0.5, myLaneGeometry.getShapeLengths()[i] - subWidth);
1758 // draw triangle
1759 glBegin(GL_TRIANGLES);
1760 glVertex2d(-myDrawingConstants->getOffset(), -subWidth - length);
1761 glVertex2d(-myDrawingConstants->getOffset() - width * 0.25, -subWidth);
1762 glVertex2d(-myDrawingConstants->getOffset() + width * 0.25, -subWidth);
1763 glEnd();
1764 }
1765 // pop triangle matrix
1767 }
1768 // pop direction indicator matrix
1770 }
1771}
1772
1773
1774void
1776 // draw foot width 150mm, assume that distance between rail feet inner sides is reduced on both sides by 39mm with regard to the gauge
1777 // assume crosstie length of 181% gauge (2600mm for standard gauge)
1778 // first save current color (obtained from view configuration)
1779 const auto currentLaneColor = GLHelper::getColor();
1780 // Set current color
1781 GLHelper::setColor(currentLaneColor);
1782 // continue depending of detail
1784 // move
1785 glTranslated(0, 0, 0.1);
1786 // draw external crossbar
1787 const double crossbarWidth = 0.2 * myDrawingConstants->getExaggeration();
1788 // draw geometry
1792 // move
1793 glTranslated(0, 0, 0.01);
1794 // Set color gray
1795 glColor3d(0.8, 0.8, 0.8);
1796 // draw geometry
1800 // move
1801 glTranslated(0, 0, 0.01);
1802 // Set current color
1803 GLHelper::setColor(currentLaneColor);
1804 // Draw crossties
1807 myDrawingConstants->getOffset(), false);
1808 } else if (myShapeColors.size() > 0) {
1809 // draw colored box lines
1812 } else {
1813 // draw geometry with current color
1816 }
1817}
1818
1819
1820void
1822 // check all conditions for drawing textures
1823 if (!s.disableLaneIcons && (myLaneRestrictedTexturePositions.size() > 0)) {
1824 // Declare default width of icon (3)
1825 const double iconWidth = myDrawingConstants->getDrawingWidth() * 0.6;
1826 // Draw list of icons
1827 for (int i = 0; i < (int)myLaneRestrictedTexturePositions.size(); i++) {
1828 // Push draw matrix 2
1830 // Set white color
1831 glColor3d(1, 1, 1);
1832 // Translate matrix 2
1833 glTranslated(myLaneRestrictedTexturePositions.at(i).x(), myLaneRestrictedTexturePositions.at(i).y(), 0.1);
1834 // Rotate matrix 2
1835 glRotated(myLaneRestrictedTextureRotations.at(i), 0, 0, -1);
1836 glRotated(90, 0, 0, 1);
1837 // draw texture box depending of type of restriction
1840 } else if (isRestricted(SVC_BICYCLE)) {
1842 } else if (isRestricted(SVC_BUS)) {
1844 }
1845 // Pop draw matrix 2
1847 }
1848 }
1849}
1850
1851
1852void
1854 // draw a Start/endPoints if lane has a custom shape
1855 if ((myDrawingConstants->getDetail() <= GUIVisualizationSettings::Detail::GeometryPoint) && (getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).customShape.size() > 1)) {
1856 // obtain circle width and resolution
1857 const double circleWidth = GNEEdge::SNAP_RADIUS * MIN2((double)1, s.laneWidthExaggeration) / 2;
1858 // obtain custom shape
1859 const PositionVector& customShape = getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).customShape;
1860 // set color (override with special colors unless the color scheme is based on selection)
1861 if (drawUsingSelectColor() && s.laneColorer.getActive() != 1) {
1863 } else {
1864 GLHelper::setColor(s.junctionColorer.getSchemes()[0].getColor(2));
1865 }
1866 // push start matrix
1868 // move to shape start position
1869 glTranslated(customShape.front().x(), customShape.front().y(), 0.1);
1870 // draw circle
1872 // draw s depending of detail
1874 // move top
1875 glTranslated(0, 0, 0.1);
1876 // draw "S"
1877 GLHelper::drawText("S", Position(), 0.1, circleWidth, RGBColor::WHITE);
1878 }
1879 // pop start matrix
1881 // draw line between junction and start position
1883 // move top
1884 glTranslated(0, 0, 0.1);
1885 // set line width
1886 glLineWidth(4);
1887 // draw line
1888 GLHelper::drawLine(customShape.front(), getParentEdges().front()->getFromJunction()->getPositionInView());
1889 // pop line matrix
1891 // push start matrix
1893 // move to end position
1894 glTranslated(customShape.back().x(), customShape.back().y(), 0.1);
1895 // draw filled circle
1897 // draw "e" depending of detail
1899 // move top
1900 glTranslated(0, 0, 0.1);
1901 // draw "E"
1902 GLHelper::drawText("E", Position(), 0, circleWidth, RGBColor::WHITE);
1903 }
1904 // pop start matrix
1906 // draw line between Junction and end position
1908 // move top
1909 glTranslated(0, 0, 0.1);
1910 // set line width
1911 glLineWidth(4);
1912 // draw line
1913 GLHelper::drawLine(customShape.back(), getParentEdges().front()->getToJunction()->getPositionInView());
1914 // pop line matrix
1916 }
1917}
1918
1919
1920bool
1922 return setLaneColor(s).alpha() != 0;
1923}
1924
1925
1926std::string
1928 return getParentEdges().front()->getID();
1929}
1930
1931
1932long
1933GNELane::onDefault(FXObject* obj, FXSelector sel, void* data) {
1934 myNet->getViewParent()->getTLSEditorFrame()->handleMultiChange(this, obj, sel, data);
1935 return 1;
1936}
1937
1938
1939std::vector<GNEConnection*>
1941 // Declare a vector to save incoming connections
1942 std::vector<GNEConnection*> incomingConnections;
1943 // Obtain incoming edges if junction source was already created
1944 GNEJunction* junctionSource = getParentEdges().front()->getFromJunction();
1945 if (junctionSource) {
1946 // Iterate over incoming GNEEdges of junction
1947 for (const auto& incomingEdge : junctionSource->getGNEIncomingEdges()) {
1948 // Iterate over connection of incoming edges
1949 for (const auto& connection : incomingEdge->getGNEConnections()) {
1950 if (connection->getLaneTo()->getIndex() == getIndex()) {
1951 incomingConnections.push_back(connection);
1952 }
1953 }
1954 }
1955 }
1956 return incomingConnections;
1957}
1958
1959
1960std::vector<GNEConnection*>
1962 // Obtain GNEConnection of parent edge
1963 const std::vector<GNEConnection*>& edgeConnections = getParentEdges().front()->getGNEConnections();
1964 std::vector<GNEConnection*> outcomingConnections;
1965 // Obtain outgoing connections
1966 for (const auto& connection : edgeConnections) {
1967 if (connection->getLaneFrom()->getIndex() == getIndex()) {
1968 outcomingConnections.push_back(connection);
1969 }
1970 }
1971 return outcomingConnections;
1972}
1973
1974
1975void
1977 // update incoming connections of lane
1978 std::vector<GNEConnection*> incomingConnections = getGNEIncomingConnections();
1979 for (const auto& incomingConnection : incomingConnections) {
1980 incomingConnection->updateConnectionID();
1981 }
1982 // update outcoming connections of lane
1983 std::vector<GNEConnection*> outcomingConnections = getGNEOutcomingConnections();
1984 for (const auto& outcomingConnection : outcomingConnections) {
1985 outcomingConnection->updateConnectionID();
1986 }
1987}
1988
1989
1990double
1992 // factor should not be 0
1993 if (getParentEdges().front()->getNBEdge()->getFinalLength() > 0) {
1994 return MAX2(POSITION_EPS, (getLaneShape().length() / getParentEdges().front()->getNBEdge()->getFinalLength()));
1995 } else {
1996 return POSITION_EPS;
1997 };
1998}
1999
2000
2001void
2003 // Create basic commands
2004 std::string edgeDescPossibleMulti = toString(SUMO_TAG_EDGE);
2005 const int edgeSelSize = getParentEdges().front()->isAttributeCarrierSelected() ? myNet->getAttributeCarriers()->getNumberOfSelectedEdges() : 0;
2006 if (edgeSelSize && getParentEdges().front()->isAttributeCarrierSelected() && (edgeSelSize > 1)) {
2007 edgeDescPossibleMulti = toString(edgeSelSize) + " " + toString(SUMO_TAG_EDGE) + "s";
2008 }
2009 // create menu pane for edge operations
2010 FXMenuPane* edgeOperations = new FXMenuPane(ret);
2011 ret->insertMenuPaneChild(edgeOperations);
2012 if (edgeSelSize > 0) {
2013 new FXMenuCascade(ret, TLF("Edge operations (% selected)", toString(edgeSelSize)).c_str(), nullptr, edgeOperations);
2014 } else {
2015 new FXMenuCascade(ret, TL("Edge operations"), nullptr, edgeOperations);
2016 }
2017 // create menu commands for all edge operations
2018 GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Split edge here"), nullptr, &parent, MID_GNE_EDGE_SPLIT);
2019 auto splitBothDirections = GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Split edge in both directions here (no symmetric opposite edge)"), nullptr, &parent, MID_GNE_EDGE_SPLIT_BIDI);
2020 // check if allow split edge in both directions
2021 splitBothDirections->disable();
2022 const auto oppositeEdges = getParentEdges().front()->getOppositeEdges();
2023 if (oppositeEdges.size() == 0) {
2024 splitBothDirections->setText(TL("Split edge in both directions here (no opposite edge)"));
2025 } else {
2026 for (const auto& oppositeEdge : oppositeEdges) {
2027 // get reverse inner geometry
2028 const auto reverseGeometry = oppositeEdge->getNBEdge()->getInnerGeometry().reverse();
2029 if (reverseGeometry == getParentEdges().front()->getNBEdge()->getInnerGeometry()) {
2030 splitBothDirections->enable();
2031 splitBothDirections->setText(TL("Split edge in both directions here"));
2032 }
2033 }
2034 }
2035 GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Set geometry endpoint here (shift-click)"), nullptr, &parent, MID_GNE_EDGE_EDIT_ENDPOINT);
2036 // restore geometry points depending of selection status
2037 if (getParentEdges().front()->isAttributeCarrierSelected()) {
2038 if (edgeSelSize == 1) {
2039 GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Restore both geometry endpoints"), nullptr, &parent, MID_GNE_EDGE_RESET_ENDPOINT);
2040 } else {
2041 GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Restore geometry endpoints of all selected edges"), nullptr, &parent, MID_GNE_EDGE_RESET_ENDPOINT);
2042 }
2043 } else {
2044 GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Restore geometry endpoint (shift-click)"), nullptr, &parent, MID_GNE_EDGE_RESET_ENDPOINT);
2045 }
2046 GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Reverse %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_REVERSE);
2047 auto reverse = GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Add reverse direction for %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_ADD_REVERSE);
2048 if (getParentEdges().front()->getReverseEdge() != nullptr) {
2049 reverse->disable();
2050 }
2051 GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Add reverse disconnected direction for %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_ADD_REVERSE_DISCONNECTED);
2052 GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Reset lengths for %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_RESET_LENGTH);
2053 GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Straighten %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_STRAIGHTEN);
2054 GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Smooth %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_SMOOTH);
2055 GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Straighten elevation of %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_STRAIGHTEN_ELEVATION);
2056 GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Smooth elevation of %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_SMOOTH_ELEVATION);
2057}
2058
2059
2060void
2062 // Get icons
2063 FXIcon* pedestrianIcon = GUIIconSubSys::getIcon(GUIIcon::LANE_PEDESTRIAN);
2064 FXIcon* bikeIcon = GUIIconSubSys::getIcon(GUIIcon::LANE_BIKE);
2065 FXIcon* busIcon = GUIIconSubSys::getIcon(GUIIcon::LANE_BUS);
2066 FXIcon* greenVergeIcon = GUIIconSubSys::getIcon(GUIIcon::LANEGREENVERGE);
2067 // declare number of selected lanes
2068 int numSelectedLanes = 0;
2069 // if lane is selected, calculate number of restricted lanes
2070 bool edgeHasSidewalk = false;
2071 bool edgeHasBikelane = false;
2072 bool edgeHasBuslane = false;
2073 bool differentLaneShapes = false;
2075 const auto selectedLanes = myNet->getAttributeCarriers()->getSelectedLanes();
2076 // update numSelectedLanes
2077 numSelectedLanes = (int)selectedLanes.size();
2078 // iterate over selected lanes
2079 for (const auto& selectedLane : selectedLanes) {
2080 if (selectedLane->getParentEdges().front()->hasRestrictedLane(SVC_PEDESTRIAN)) {
2081 edgeHasSidewalk = true;
2082 }
2083 if (selectedLane->getParentEdges().front()->hasRestrictedLane(SVC_BICYCLE)) {
2084 edgeHasBikelane = true;
2085 }
2086 if (selectedLane->getParentEdges().front()->hasRestrictedLane(SVC_BUS)) {
2087 edgeHasBuslane = true;
2088 }
2089 if (selectedLane->getParentEdges().front()->getNBEdge()->getLaneStruct(selectedLane->getIndex()).customShape.size() != 0) {
2090 differentLaneShapes = true;
2091 }
2092 }
2093 } else {
2094 edgeHasSidewalk = getParentEdges().front()->hasRestrictedLane(SVC_PEDESTRIAN);
2095 edgeHasBikelane = getParentEdges().front()->hasRestrictedLane(SVC_BICYCLE);
2096 edgeHasBuslane = getParentEdges().front()->hasRestrictedLane(SVC_BUS);
2097 differentLaneShapes = getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).customShape.size() != 0;
2098 }
2099 // create menu pane for lane operations
2100 FXMenuPane* laneOperations = new FXMenuPane(ret);
2101 ret->insertMenuPaneChild(laneOperations);
2102 if (numSelectedLanes > 0) {
2103 new FXMenuCascade(ret, TLF("Lane operations (% selected)", toString(numSelectedLanes)).c_str(), nullptr, laneOperations);
2104 } else {
2105 new FXMenuCascade(ret, TL("Lane operations"), nullptr, laneOperations);
2106 }
2107 GUIDesigns::buildFXMenuCommand(laneOperations, TL("Duplicate lane"), nullptr, &parent, MID_GNE_LANE_DUPLICATE);
2108 GUIDesigns::buildFXMenuCommand(laneOperations, TL("Set custom lane shape"), nullptr, &parent, MID_GNE_LANE_EDIT_SHAPE);
2109 FXMenuCommand* resetCustomShape = GUIDesigns::buildFXMenuCommand(laneOperations, TL("Reset custom shape"), nullptr, &parent, MID_GNE_LANE_RESET_CUSTOMSHAPE);
2110 if (!differentLaneShapes) {
2111 resetCustomShape->disable();
2112 }
2113 FXMenuCommand* resetOppositeLane = GUIDesigns::buildFXMenuCommand(laneOperations, TL("Reset opposite lane"), nullptr, &parent, MID_GNE_LANE_RESET_OPPOSITELANE);
2114 if (getAttribute(GNE_ATTR_OPPOSITE).empty()) {
2115 resetOppositeLane->disable();
2116 }
2117 // Create panel for lane operations and insert it in ret
2118 FXMenuPane* addSpecialLanes = new FXMenuPane(laneOperations);
2119 ret->insertMenuPaneChild(addSpecialLanes);
2120 FXMenuPane* removeSpecialLanes = new FXMenuPane(laneOperations);
2121 ret->insertMenuPaneChild(removeSpecialLanes);
2122 FXMenuPane* transformSlanes = new FXMenuPane(laneOperations);
2123 ret->insertMenuPaneChild(transformSlanes);
2124 // Create menu comands for all add special lanes
2125 FXMenuCommand* addSidewalk = GUIDesigns::buildFXMenuCommand(addSpecialLanes, TL("Sidewalk"), pedestrianIcon, &parent, MID_GNE_LANE_ADD_SIDEWALK);
2126 FXMenuCommand* addBikelane = GUIDesigns::buildFXMenuCommand(addSpecialLanes, TL("Bike lane"), bikeIcon, &parent, MID_GNE_LANE_ADD_BIKE);
2127 FXMenuCommand* addBuslane = GUIDesigns::buildFXMenuCommand(addSpecialLanes, TL("Bus lane"), busIcon, &parent, MID_GNE_LANE_ADD_BUS);
2128 // if parent edge is selected, always add greenverge in front
2129 if (getParentEdges().front()->isAttributeCarrierSelected()) {
2130 GUIDesigns::buildFXMenuCommand(addSpecialLanes, TL("Green verge"), greenVergeIcon, &parent, MID_GNE_LANE_ADD_GREENVERGE_FRONT);
2131 } else {
2132 GUIDesigns::buildFXMenuCommand(addSpecialLanes, TL("Green verge (front)"), greenVergeIcon, &parent, MID_GNE_LANE_ADD_GREENVERGE_FRONT);
2133 GUIDesigns::buildFXMenuCommand(addSpecialLanes, TL("Green verge (back)"), greenVergeIcon, &parent, MID_GNE_LANE_ADD_GREENVERGE_BACK);
2134 }
2135 // Create menu comands for all remove special lanes and disable it
2136 FXMenuCommand* removeSidewalk = GUIDesigns::buildFXMenuCommand(removeSpecialLanes, TL("Sidewalk"), pedestrianIcon, &parent, MID_GNE_LANE_REMOVE_SIDEWALK);
2137 removeSidewalk->disable();
2138 FXMenuCommand* removeBikelane = GUIDesigns::buildFXMenuCommand(removeSpecialLanes, TL("Bike lane"), bikeIcon, &parent, MID_GNE_LANE_REMOVE_BIKE);
2139 removeBikelane->disable();
2140 FXMenuCommand* removeBuslane = GUIDesigns::buildFXMenuCommand(removeSpecialLanes, TL("Bus lane"), busIcon, &parent, MID_GNE_LANE_REMOVE_BUS);
2141 removeBuslane->disable();
2142 FXMenuCommand* removeGreenVerge = GUIDesigns::buildFXMenuCommand(removeSpecialLanes, TL("Green verge"), greenVergeIcon, &parent, MID_GNE_LANE_REMOVE_GREENVERGE);
2143 removeGreenVerge->disable();
2144 // Create menu comands for all transform special lanes and disable it
2145 FXMenuCommand* transformLaneToSidewalk = GUIDesigns::buildFXMenuCommand(transformSlanes, TL("Sidewalk"), pedestrianIcon, &parent, MID_GNE_LANE_TRANSFORM_SIDEWALK);
2146 FXMenuCommand* transformLaneToBikelane = GUIDesigns::buildFXMenuCommand(transformSlanes, TL("Bike lane"), bikeIcon, &parent, MID_GNE_LANE_TRANSFORM_BIKE);
2147 FXMenuCommand* transformLaneToBuslane = GUIDesigns::buildFXMenuCommand(transformSlanes, TL("Bus lane"), busIcon, &parent, MID_GNE_LANE_TRANSFORM_BUS);
2148 FXMenuCommand* transformLaneToGreenVerge = GUIDesigns::buildFXMenuCommand(transformSlanes, TL("Green verge"), greenVergeIcon, &parent, MID_GNE_LANE_TRANSFORM_GREENVERGE);
2149 // add menuCascade for lane operations
2150 new FXMenuCascade(laneOperations, TLF("Add restricted %", toString(SUMO_TAG_LANE)).c_str(), nullptr, addSpecialLanes);
2151 FXMenuCascade* cascadeRemoveSpecialLane = new FXMenuCascade(laneOperations, TLF("Remove restricted %", toString(SUMO_TAG_LANE)).c_str(), nullptr, removeSpecialLanes);
2152 new FXMenuCascade(laneOperations, TLF("Transform to restricted %", toString(SUMO_TAG_LANE)).c_str(), nullptr, transformSlanes);
2153 // Enable and disable options depending of current transform of the lane
2154 if (edgeHasSidewalk) {
2155 transformLaneToSidewalk->disable();
2156 addSidewalk->disable();
2157 removeSidewalk->enable();
2158 }
2159 if (edgeHasBikelane) {
2160 transformLaneToBikelane->disable();
2161 addBikelane->disable();
2162 removeBikelane->enable();
2163 }
2164 if (edgeHasBuslane) {
2165 transformLaneToBuslane->disable();
2166 addBuslane->disable();
2167 removeBuslane->enable();
2168 }
2170 transformLaneToGreenVerge->disable();
2171 removeGreenVerge->enable();
2172 }
2173 // Check if cascade menu must be disabled
2174 if (!edgeHasSidewalk && !edgeHasBikelane && !edgeHasBuslane && !isRestricted(SVC_IGNORING)) {
2175 cascadeRemoveSpecialLane->disable();
2176 }
2177 // for whatever reason, sonar complains in the next line that cascadeRemoveSpecialLane may leak, but fox does the cleanup
2178} // NOSONAR
2179
2180
2181void
2183 // Create basic commands
2184 std::string edgeDescPossibleMulti = toString(SUMO_TAG_EDGE);
2185 const int numSelectedEdges = getParentEdges().front()->isAttributeCarrierSelected() ? myNet->getAttributeCarriers()->getNumberOfSelectedEdges() : 0;
2186 if ((numSelectedEdges > 0) && getParentEdges().front()->isAttributeCarrierSelected() && (numSelectedEdges > 1)) {
2187 edgeDescPossibleMulti = toString(numSelectedEdges) + " " + toString(SUMO_TAG_EDGE) + "s";
2188 }
2189 // create menu pane for edge operations
2190 FXMenuPane* edgeOperations = new FXMenuPane(ret);
2191 ret->insertMenuPaneChild(edgeOperations);
2192 if (numSelectedEdges > 0) {
2193 new FXMenuCascade(ret, TLF("Template operations (% selected)", toString(numSelectedEdges)).c_str(), nullptr, edgeOperations);
2194 } else {
2195 new FXMenuCascade(ret, TL("Template operations"), nullptr, edgeOperations);
2196 }
2197 // create menu commands for all edge operations
2198 GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Use edge as template"), nullptr, &parent, MID_GNE_EDGE_USEASTEMPLATE);
2199 auto applyTemplate = GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Apply template"), nullptr, &parent, MID_GNE_EDGE_APPLYTEMPLATE);
2200 // check if disable apply template
2202 applyTemplate->disable();
2203 }
2204}
2205
2206
2207void
2209 // addreachability menu
2210 FXMenuPane* reachableByClass = new FXMenuPane(ret);
2211 ret->insertMenuPaneChild(reachableByClass);
2212 if (myNet->isNetRecomputed()) {
2213 new FXMenuCascade(ret, TL("Select reachable"), GUIIconSubSys::getIcon(GUIIcon::MODEVEHICLE), reachableByClass);
2214 for (const auto& vClass : SumoVehicleClassStrings.getStrings()) {
2215 GUIDesigns::buildFXMenuCommand(reachableByClass, vClass.c_str(), VClassIcons::getVClassIcon(SumoVehicleClassStrings.get(vClass)), &parent, MID_REACHABILITY);
2216 }
2217 } else {
2218 FXMenuCommand* menuCommand = GUIDesigns::buildFXMenuCommand(ret, TL("Select reachable (compute junctions)"), nullptr, nullptr, 0);
2219 menuCommand->handle(&parent, FXSEL(SEL_COMMAND, FXWindow::ID_DISABLE), nullptr);
2220 }
2221}
2222
2223/****************************************************************************/
NetworkEditMode
@brie enum for network edit modes
@ NETWORK_DELETE
mode for deleting network elements
@ NETWORK_MOVE
mode for moving network elements
@ NETWORK_ADDITIONAL
Mode for editing additionals.
@ NETWORK_TLS
mode for editing tls
@ NETWORK_SELECT
mode for selecting network elements
@ NETWORK_CONNECT
mode for connecting lanes
@ MID_GNE_ADDSELECT_EDGE
Add edge to selected items - menu entry.
Definition GUIAppEnum.h:867
@ MID_GNE_LANE_EDIT_SHAPE
edit lane shape
@ MID_GNE_LANE_TRANSFORM_BIKE
transform lane to bikelane
@ MID_GNE_EDGE_REVERSE
reverse an edge
@ MID_ADDSELECT
Add to selected items - menu entry.
Definition GUIAppEnum.h:489
@ MID_GNE_LANE_ADD_BUS
add busLane
@ MID_GNE_REMOVESELECT_EDGE
Remove edge from selected items - Menu Entry.
Definition GUIAppEnum.h:869
@ MID_GNE_EDGE_STRAIGHTEN_ELEVATION
interpolate z values linear between junctions
@ MID_GNE_EDGE_SMOOTH
smooth geometry
@ MID_GNE_LANE_RESET_CUSTOMSHAPE
reset custom shape
@ MID_GNE_EDGE_STRAIGHTEN
remove inner geometry
@ MID_GNE_LANE_TRANSFORM_BUS
transform lane to busLane
@ MID_SHOWPARS_PARENT
Show object parent parameter - popup entry.
Definition GUIAppEnum.h:475
@ MID_COPY_EDGE_NAME
Copy edge name (for lanes only)
Definition GUIAppEnum.h:461
@ MID_GNE_LANE_DUPLICATE
duplicate a lane
@ MID_GNE_LANE_ADD_GREENVERGE_FRONT
add greenVerge front of current lane
@ MID_GNE_LANE_REMOVE_GREENVERGE
remove greenVerge
@ MID_GNE_EDGE_ADD_REVERSE_DISCONNECTED
add reverse edge disconnected (used for for spreadtype center)
@ MID_GNE_EDGE_SPLIT_BIDI
split an edge
@ MID_GNE_LANE_REMOVE_BIKE
remove bikelane
@ MID_GNE_LANE_RESET_OPPOSITELANE
reset opposite lane
@ MID_REACHABILITY
show reachability from a given lane
Definition GUIAppEnum.h:537
@ MID_GNE_EDGE_RESET_LENGTH
reset custom lengths
@ MID_GNE_LANE_REMOVE_BUS
remove busLane
@ MID_GNE_LANE_REMOVE_SIDEWALK
remove sidewalk
@ MID_GNE_EDGE_RESET_ENDPOINT
reset default geometry endpoints
@ MID_SHOWPARS
Show object parameter - popup entry.
Definition GUIAppEnum.h:473
@ MID_GNE_LANE_ADD_GREENVERGE_BACK
add greenVerge back of current lane
@ MID_GNE_EDGE_SMOOTH_ELEVATION
smooth elevation with regard to adjoining edges
@ MID_GNE_EDGE_ADD_REVERSE
add reverse edge
@ MID_GNE_EDGE_APPLYTEMPLATE
apply template
@ MID_GNE_EDGE_USEASTEMPLATE
use edge as tempalte
@ MID_GNE_LANE_ADD_SIDEWALK
add sidewalk
@ MID_GNE_RESET_GEOMETRYPOINT
reset geometry point
@ MID_GNE_LANE_TRANSFORM_SIDEWALK
transform lane to sidewalk
@ MID_GNE_LANE_ADD_BIKE
add bikelane
@ MID_GNE_EDGE_SPLIT
split an edge
@ MID_DELETE
delete item - menu entry
Definition GUIAppEnum.h:493
@ MID_GNE_LANE_TRANSFORM_GREENVERGE
transform lane to greenVerge
@ MID_GNE_CUSTOM_GEOMETRYPOINT
set custom geometry point
@ MID_GNE_EDGE_EDIT_ENDPOINT
change default geometry endpoints
@ MID_REMOVESELECT
Remove from selected items - Menu Entry.
Definition GUIAppEnum.h:491
@ GLO_ROUTE
a route
@ GLO_JUNCTION
a junction
@ GLO_FRONTELEMENT
front element (used in netedit)
@ GLO_LANE
a lane
@ GLO_TEXTNAME
text element (used in netedit)
GUIViewObjectsHandler gViewObjectsHandler
@ LANE_PEDESTRIAN
@ LANEGREENVERGE
#define RAD2DEG(x)
Definition GeomHelper.h:36
#define WRITE_WARNINGF(...)
Definition MsgHandler.h:287
#define TL(string)
Definition MsgHandler.h:304
#define TLF(string,...)
Definition MsgHandler.h:306
const SVCPermissions SVCAll
all VClasses are allowed
SVCPermissions invertPermissions(SVCPermissions permissions)
negate the given permissions and ensure that only relevant bits are set
bool isRailway(SVCPermissions permissions)
Returns whether an edge with the given permissions is a (exclusive) railway edge.
bool isWaterway(SVCPermissions permissions)
Returns whether an edge with the given permissions is a waterway edge.
const std::string & getVehicleClassNames(SVCPermissions permissions, bool expand)
Returns the ids of the given classes, divided using a ' '.
SVCPermissions parseVehicleClasses(const std::string &allowedS)
Parses the given definition of allowed vehicle classes into the given containers Deprecated classes g...
bool canParseVehicleClasses(const std::string &classes)
Checks whether the given string contains only known vehicle classes.
StringBijection< SUMOVehicleClass > SumoVehicleClassStrings(sumoVehicleClassStringInitializer, SVC_CUSTOM2, false)
long long int SVCPermissions
bitset where each bit declares whether a certain SVC may use this edge/lane
SUMOVehicleClass
Definition of vehicle classes to differ between different lane usage and authority types.
@ SVC_SHIP
is an arbitrary ship
@ SVC_IGNORING
vehicles ignoring classes
@ SVC_RAIL_CLASSES
classes which drive on tracks
@ SVC_PASSENGER
vehicle is a passenger car (a "normal" car)
@ SVC_BICYCLE
vehicle is a bicycle
@ SVC_RAIL_FAST
vehicle that is allowed to drive on high-speed rail tracks
@ SVC_DRONE
@ SVC_AUTHORITY
authorities vehicles
@ SVC_BUS
vehicle is a bus
@ SVC_AIRCRAFT
@ SVC_PEDESTRIAN
pedestrian
@ SUMO_TAG_ACCESS
An access point for a train stop.
@ SUMO_TAG_CONNECTION
connectioon between two lanes
@ SUMO_TAG_LANE
begin/end of the description of a single lane
@ SUMO_TAG_EDGE
begin/end of the description of an edge
LinkDirection
The different directions a link between two lanes may take (or a stream between two edges)....
@ PARTLEFT
The link is a partial left direction.
@ RIGHT
The link is a (hard) right direction.
@ TURN
The link is a 180 degree turn.
@ LEFT
The link is a (hard) left direction.
@ STRAIGHT
The link is a straight direction.
@ TURN_LEFTHAND
The link is a 180 degree turn (left-hand network)
@ PARTRIGHT
The link is a partial right direction.
@ NODIR
The link has no direction (is a dead end link)
LinkState
The right-of-way state of a link between two lanes used when constructing a NBTrafficLightLogic,...
@ LINKSTATE_ALLWAY_STOP
This is an uncontrolled, all-way stop link.
@ LINKSTATE_MAJOR
This is an uncontrolled, major link, may pass.
@ LINKSTATE_STOP
This is an uncontrolled, minor link, has to stop.
@ LINKSTATE_EQUAL
This is an uncontrolled, right-before-left link.
@ LINKSTATE_ZIPPER
This is an uncontrolled, zipper-merge link.
@ LINKSTATE_TL_OFF_BLINKING
The link is controlled by a tls which is off and blinks, has to brake.
@ LINKSTATE_MINOR
This is an uncontrolled, minor link, has to brake.
@ LINKSTATE_TL_OFF_NOSIGNAL
The link is controlled by a tls which is off, not blinking, may pass.
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
@ SUMO_ATTR_DISALLOW
@ SUMO_ATTR_ALLOW
@ SUMO_ATTR_FROM_JUNCTION
@ SUMO_ATTR_SPEED
@ GNE_ATTR_STOPOFFSET
stop offset (virtual, used by edge and lanes)
@ SUMO_ATTR_VIA
@ GNE_ATTR_OPPOSITE
to busStop (used by personPlans)
@ SUMO_ATTR_TO_JUNCTION
@ GNE_ATTR_PARENT
parent of an additional element
@ SUMO_ATTR_CUSTOMSHAPE
whether a given shape is user-defined
@ GNE_ATTR_FROM_LANEID
from lane ID (used in GNEConnection)
@ GNE_ATTR_STOPOEXCEPTION
stop exceptions (virtual, used by edge and lanes)
@ SUMO_ATTR_SHAPE
edge: the shape in xml-definition
@ SUMO_ATTR_CHANGE_LEFT
@ SUMO_ATTR_INDEX
@ SUMO_ATTR_ENDOFFSET
@ SUMO_ATTR_ACCELERATION
@ GNE_ATTR_TO_LANEID
to lane ID (used in GNEConnection)
@ SUMO_ATTR_CHANGE_RIGHT
@ SUMO_ATTR_TYPE
@ SUMO_ATTR_ID
@ SUMO_ATTR_WIDTH
@ SUMO_ATTR_FRICTION
const double SUMO_const_laneWidth
Definition StdDefs.h:52
T MIN2(T a, T b)
Definition StdDefs.h:80
const double SUMO_const_laneMarkWidth
Definition StdDefs.h:55
T MAX2(T a, T b)
Definition StdDefs.h:86
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition ToString.h:49
A class that stores a 2D geometrical boundary.
Definition Boundary.h:39
static void drawLine(const Position &beg, double rot, double visLength)
Draws a thin line.
Definition GLHelper.cpp:433
static void setColor(const RGBColor &c)
Sets the gl-color to this value.
Definition GLHelper.cpp:649
static void drawOutlineCircle(double radius, double iRadius, int steps=8)
Draws an unfilled circle around (0,0)
Definition GLHelper.cpp:591
static void drawTriangleAtEnd(const Position &p1, const Position &p2, double tLength, double tWidth, const double extraOffset=0)
Draws a triangle at the end of the given line.
Definition GLHelper.cpp:624
static void drawTextAtEnd(const std::string &text, const PositionVector &shape, double x, const GUIVisualizationTextSettings &settings, const double scale)
draw text and the end of shape
Definition GLHelper.cpp:824
static void popMatrix()
pop matrix
Definition GLHelper.cpp:131
static RGBColor getColor()
gets the gl-color
Definition GLHelper.cpp:655
static void drawFilledCircleDetailed(const GUIVisualizationSettings::Detail d, const double radius)
Draws a filled circle around (0,0) depending of level of detail.
Definition GLHelper.cpp:534
static void drawBoxLine(const Position &beg, double rot, double visLength, double width, double offset=0)
Draws a thick line.
Definition GLHelper.cpp:296
static void pushMatrix()
push matrix
Definition GLHelper.cpp:118
static void drawInverseMarkings(const PositionVector &geom, const std::vector< double > &rots, const std::vector< double > &lengths, double maxLength, double spacing, double halfWidth, bool cl, bool cr, bool lefthand, double scale)
@bried draw the space between markings (in road color)
Definition GLHelper.cpp:886
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:742
static void drawCrossTies(const PositionVector &geom, const std::vector< double > &rots, const std::vector< double > &lengths, double length, double spacing, double halfWidth, double offset, bool lessDetail)
draw crossties for railroads or pedestrian crossings
Definition GLHelper.cpp:843
GNETagSelector * getAdditionalTagSelector() const
get additional tag selector
bool isAttributeCarrierSelected() const
check if attribute carrier is selected
double getCommonAttributeDouble(SumoXMLAttr key) const
bool isMarkedForDrawingFront() const
check if this AC is marked for drawing front
bool mySelected
boolean to check if this AC is selected (more quickly as checking GUIGlObjectStorage)
const std::string getID() const override
get ID (all Attribute Carriers have one)
PositionVector getCommonAttributePositionVector(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
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
Position getCommonAttributePosition(SumoXMLAttr key) const
GNENet * myNet
pointer to net
GNENet * getNet() const
get pointer to net
bool isCommonAttributeValid(SumoXMLAttr key, const std::string &value) const
std::string getCommonAttribute(SumoXMLAttr key) const
const GNETagProperties * myTagProperty
reference to tagProperty associated with this attribute carrier
bool myPossibleCandidate
flag to mark this element as possible candidate
bool mySpecialCandidate
flag to mark this element as special candidate
bool myInvalidCandidate
flag to mark this element as invalid candidate
bool myTargetCandidate
flag to mark this element as target candidate
bool myConflictedCandidate
flag to mark this element as conflicted candidate
bool mySourceCandidate
flag to mark this element as source candidate
static void changeAttribute(GNEAttributeCarrier *AC, SumoXMLAttr key, const std::string &value, GNEUndoList *undoList, const bool force=false)
change attribute
void calculateContourExtrudedShape(const GUIVisualizationSettings &s, const GUIVisualizationSettings::Detail d, const GUIGlObject *glObject, const PositionVector &shape, const double layer, const double extrusionWidth, const double scale, const bool closeFirstExtrem, const bool closeLastExtrem, const double offset, const GNESegment *segment, const GUIGlObject *boundaryParent, const bool addToSelectedObjects=true) const
calculate contour extruded (used in elements formed by a central shape)
Boundary getContourBoundary() const
get contour boundary
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...)
void calculateContourAllGeometryPoints(const GUIVisualizationSettings &s, const GUIVisualizationSettings::Detail d, const GUIGlObject *glObject, const PositionVector &shape, const double layer, const double radius, const double scale, const bool calculatePosOverShape) const
calculate contour for all geometry points
struct for saving subordinated elements (Junction->Edge->Lane->(Additional | DemandElement)
ProtectElements * getProtectElements() const
get protect elements modul
NBEdge * getNBEdge() const
returns the internal NBEdge
Definition GNEEdge.cpp:773
static const double SNAP_RADIUS
Definition GNEEdge.h:321
const GNEHierarchicalContainerParents< GNEAdditional * > & getParentAdditionals() const
get parent additionals
const GNEHierarchicalContainerParents< GNEDemandElement * > & getParentDemandElements() const
get parent demand elements
const GNEHierarchicalContainerParents< GNEEdge * > & getParentEdges() const
get parent edges
const GNEHierarchicalContainerChildren< GNEGenericData * > & getChildGenericDatas() const
return child generic data elements
const GNEHierarchicalContainerParents< GNEGenericData * > & getParentGenericDatas() const
get parent demand elements
const GNEHierarchicalContainerChildren< GNEAdditional * > & getChildAdditionals() const
return child additionals
const GNEHierarchicalContainerChildren< GNEDemandElement * > & getChildDemandElements() const
return child demand elements
void setEdgeTemplate(const GNEEdge *edge)
set edge template
GNEEdgeTemplate * getEdgeTemplate() const
get edge template (to copy attributes from)
TemplateEditor * getTemplateEditor() const
get template editor
static RGBColor colorForLinksState(FXuint state)
return the color for each linkstate
static const StringBijection< FXuint > LinkStateNames
long names for link states
const std::vector< GNEEdge * > & getGNEIncomingEdges() const
Returns incoming GNEEdges.
std::vector< GNEConnection * > getGNEConnections() const
Returns all GNEConnections vinculated with this junction.
class lane2lane connection geometry
FOX-declaration.
Definition GNELane.h:52
const GNELane * myLane
lane
Definition GNELane.h:84
double myInternalDrawingWidth
internal lane drawing width (used for drawing selected lanes)
Definition GNELane.h:93
void update(const GUIVisualizationSettings &s)
update lane drawing constants
Definition GNELane.cpp:68
GUIVisualizationSettings::Detail myDetail
detail level
Definition GNELane.h:99
bool drawAsRailway() const
draw as railway
Definition GNELane.cpp:142
bool drawSuperposed() const
draw superposed
Definition GNELane.cpp:148
double getExaggeration() const
get exaggeration
Definition GNELane.cpp:112
double myExaggeration
exaggeration
Definition GNELane.h:87
double getDrawingWidth() const
get lane drawing width
Definition GNELane.cpp:118
double getInternalDrawingWidth() const
get internal lane drawing width
Definition GNELane.cpp:124
double myDrawingWidth
lane drawing width
Definition GNELane.h:90
bool myDrawAsRailway
draw as railway
Definition GNELane.h:102
double myOffset
lane offset
Definition GNELane.h:96
double getOffset() const
get lane offset
Definition GNELane.cpp:130
bool myDrawSuperposed
draw supersposed (reduced width so that the lane markings below are visible)
Definition GNELane.h:105
GUIVisualizationSettings::Detail getDetail() const
get detail
Definition GNELane.cpp:136
GNELane2laneConnection myLane2laneConnections
lane2lane connections
Definition GNELane.h:387
const PositionVector & getLaneShape() const
get elements shape
Definition GNELane.cpp:234
bool isAttributeComputed(SumoXMLAttr key) const override
Definition GNELane.cpp:891
const GNELane2laneConnection & getLane2laneConnections() const
get Lane2laneConnection struct
Definition GNELane.cpp:683
~GNELane()
Destructor.
Definition GNELane.cpp:190
double getColorValue(const GUIVisualizationSettings &s, int activeScheme) const override
return value for lane coloring according to the given scheme
Definition GNELane.cpp:1574
void drawLaneStopOffset(const GUIVisualizationSettings &s) const
draw laneStopOffset
Definition GNELane.cpp:1703
void drawSelectedLane(const GUIVisualizationSettings &s) const
draw selected lane
Definition GNELane.cpp:1063
std::vector< double > myLaneRestrictedTextureRotations
Rotations of textures of restricted lanes.
Definition GNELane.h:374
bool allowPedestrians() const
check if current lane allow pedestrians
Definition GNELane.cpp:222
void drawMarkingsAndBoundings(const GUIVisualizationSettings &s) const
draw lane markings
Definition GNELane.cpp:1129
bool checkDrawSelectContour() const override
check if draw select contour (blue)
Definition GNELane.cpp:431
const RGBColor * mySpecialColor
optional special color
Definition GNELane.h:378
Position getPositionInView() const
Returns position of hierarchical element in view.
Definition GNELane.cpp:340
bool drawAsWaterway(const GUIVisualizationSettings &s) const
whether to draw this lane as a waterways
Definition GNELane.cpp:1727
Boundary getCenteringBoundary() const override
Returns the boundary to which the view shall be centered in order to show the object.
Definition GNELane.cpp:629
double getLengthGeometryFactor() const
get length geometry factor
Definition GNELane.cpp:1991
PositionVector getAttributePositionVector(SumoXMLAttr key) const override
Definition GNELane.cpp:758
void drawDirectionIndicators(const GUIVisualizationSettings &s) const
direction indicators for lanes
Definition GNELane.cpp:1733
bool checkDrawOverContour() const override
check if draw over contour (orange)
Definition GNELane.cpp:387
int getIndex() const
returns the index of the lane
Definition GNELane.cpp:641
GNEMoveElementLane * myMoveElementLane
move element lane
Definition GNELane.h:356
GUIGeometry myLaneGeometry
lane geometry
Definition GNELane.h:362
void drawShapeEdited(const GUIVisualizationSettings &s) const
draw shape edited
Definition GNELane.cpp:1082
void drawOverlappedRoutes(const int numRoutes) const
draw overlapped routes
Definition GNELane.cpp:1686
bool checkDrawRelatedContour() const override
check if draw related contour (cyan)
Definition GNELane.cpp:372
GUIGLObjectPopupMenu * getPopUpMenu(GUIMainWindow &app, GUISUMOAbstractView &parent) override
Returns an own popup-menu.
Definition GNELane.cpp:504
bool checkDrawToContour() const override
check if draw from contour (magenta)
Definition GNELane.cpp:359
std::string getParentName() const override
Returns the name of the parent object (if any)
Definition GNELane.cpp:1927
void buildLaneOperations(GUISUMOAbstractView &parent, GUIGLObjectPopupMenu *ret)
build lane operations contextual menu
Definition GNELane.cpp:2061
GNEMoveElement * getMoveElement() const override
methods to retrieve the elements linked to this lane
Definition GNELane.cpp:198
GNELane()
FOX needs this.
Definition GNELane.cpp:177
std::vector< GNEConnection * > getGNEOutcomingConnections()
returns a vector with the outgoing GNEConnections of this lane
Definition GNELane.cpp:1961
DrawingConstants * myDrawingConstants
LaneDrawingConstants.
Definition GNELane.h:365
const std::vector< double > & getShapeRotations() const
get rotations of the single shape parts
Definition GNELane.cpp:244
std::string getAttributeForSelection(SumoXMLAttr key) const override
method for getting the attribute in the context of object selection
Definition GNELane.cpp:770
void buildTemplateOperations(GUISUMOAbstractView &parent, GUIGLObjectPopupMenu *ret)
build template oerations contextual menu
Definition GNELane.cpp:2182
double getExaggeration(const GUIVisualizationSettings &s) const override
return exaggeration associated with this GLObject
Definition GNELane.cpp:623
bool setMultiColor(const GUIVisualizationSettings &s, const GUIColorer &c, RGBColor &col) const
sets multiple colors according to the current scheme index and some lane function
Definition GNELane.cpp:1550
void calculateLaneContour(const GUIVisualizationSettings &s, const double layer) const
calculate contour
Definition GNELane.cpp:1422
void drawTLSLinkNo(const GUIVisualizationSettings &s) const
draw TLS link Number
Definition GNELane.cpp:1247
double getLaneParametricLength() const
returns the parameteric length of the lane
Definition GNELane.cpp:660
RGBColor setLaneColor(const GUIVisualizationSettings &s) const
set color according to edit mode and visualisation settings
Definition GNELane.cpp:1440
std::vector< GNEConnection * > getGNEIncomingConnections()
returns a vector with the incoming GNEConnections of this lane
Definition GNELane.cpp:1940
void updateGeometry() override
update pre-computed geometry information
Definition GNELane.cpp:262
bool isRestricted(SUMOVehicleClass vclass) const
check if this lane is restricted
Definition GNELane.cpp:677
bool checkDrawFromContour() const override
check if draw from contour (green)
Definition GNELane.cpp:346
const DrawingConstants * getDrawingConstants() const
get lane drawing constants (previously calculated in drawGL())
Definition GNELane.cpp:256
int myIndex
The index of this lane.
Definition GNELane.h:359
void drawLaneAsRailway() const
draw lane as railway
Definition GNELane.cpp:1775
std::string getAttribute(SumoXMLAttr key) const override
Definition GNELane.cpp:689
void setIndex(int index)
Definition GNELane.cpp:647
void setSpecialColor(const RGBColor *Color2, double colorValue=std::numeric_limits< double >::max())
Definition GNELane.cpp:903
void drawGL(const GUIVisualizationSettings &s) const override
Draws the object.
Definition GNELane.cpp:461
const GUIGeometry & getLaneGeometry() const
get lane geometry
Definition GNELane.cpp:228
bool checkDrawMoveContour() const override
check if draw move contour (red)
Definition GNELane.cpp:449
Position getAttributePosition(SumoXMLAttr key) const override
Definition GNELane.cpp:752
double getAttributeDouble(SumoXMLAttr key) const override
Definition GNELane.cpp:746
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList) override
Definition GNELane.cpp:780
void drawArrows(const GUIVisualizationSettings &s) const
draw lane arrows
Definition GNELane.cpp:1284
void updateCenteringBoundary(const bool updateGrid)
update centering boundary (implies change in RTREE)
Definition GNELane.cpp:635
void drawLane(const GUIVisualizationSettings &s, const double layer) const
draw lane
Definition GNELane.cpp:1006
double mySpecialColorValue
optional value that corresponds to which the special color corresponds
Definition GNELane.h:381
void drawChildren(const GUIVisualizationSettings &s) const
draw children
Definition GNELane.cpp:1108
Parameterised * getParameters() override
get parameters associated with this lane
Definition GNELane.cpp:204
std::vector< Position > myLaneRestrictedTexturePositions
Position of textures of restricted lanes.
Definition GNELane.h:371
long onDefault(FXObject *, FXSelector, void *) override
multiplexes message to two targets
Definition GNELane.cpp:1933
bool checkDrawDeleteContour() const override
check if draw delete contour (pink/white)
Definition GNELane.cpp:407
double getLaneShapeLength() const
returns the length of the lane's shape
Definition GNELane.cpp:671
void updateGLObject() override
update GLObject (geometry, ID, etc.)
Definition GNELane.cpp:497
void drawStartEndGeometryPoints(const GUIVisualizationSettings &s) const
draw start and end geometry points
Definition GNELane.cpp:1853
std::vector< RGBColor > myShapeColors
The color of the shape parts (cached)
Definition GNELane.h:384
bool checkDrawDeleteContourSmall() const override
check if draw delete contour small (pink/white)
Definition GNELane.cpp:425
bool setFunctionalColor(int activeScheme, RGBColor &col) const
sets the color according to the current scheme index and some lane function
Definition GNELane.cpp:1536
bool isVisible(const GUIVisualizationSettings &s) const override
check if object is visible (Currently used only in netedit)
Definition GNELane.cpp:1921
void updateConnectionIDs()
update IDs of incoming connections of this lane
Definition GNELane.cpp:1976
void buildRechableOperations(GUISUMOAbstractView &parent, GUIGLObjectPopupMenu *ret)
build rechable operations contextual menu
Definition GNELane.cpp:2208
bool isValid(SumoXMLAttr key, const std::string &value) override
Definition GNELane.cpp:816
bool isAttributeEnabled(SumoXMLAttr key) const override
Definition GNELane.cpp:877
void drawLane2LaneConnections() const
draw lane to lane connections
Definition GNELane.cpp:1374
void buildEdgeOperations(GUISUMOAbstractView &parent, GUIGLObjectPopupMenu *ret)
build edge operations contextual menu
Definition GNELane.cpp:2002
const std::vector< double > & getShapeLengths() const
get lengths of the single shape parts
Definition GNELane.cpp:250
void drawLinkNo(const GUIVisualizationSettings &s) const
draw link Number
Definition GNELane.cpp:1210
double getSpeed() const
returns the current speed of lane
Definition GNELane.cpp:654
void drawTextures(const GUIVisualizationSettings &s) const
draw lane textures
Definition GNELane.cpp:1821
void deleteGLObject() override
delete element
Definition GNELane.cpp:488
GNEEdge * getParentEdge() const
get parent edge
Definition GNELane.cpp:216
std::vector< GNELane * > getSelectedLanes() const
get selected lanes
int getNumberOfSelectedEdges() const
get number of selected edges
void deleteLane(GNELane *lane, GNEUndoList *undoList, bool recomputeConnections)
removes lane
Definition GNENet.cpp:664
GNEPathManager * getDataPathManager()
get data path manager
Definition GNENet.cpp:204
GNEPathManager * getDemandPathManager()
get demand path manager
Definition GNENet.cpp:198
GNENetHelper::AttributeCarriers * getAttributeCarriers() const
get all attribute carriers used in this net
Definition GNENet.cpp:174
bool isNetRecomputed() const
check if net require recomputing
Definition GNENet.cpp:1626
GNEPathManager * getNetworkPathManager()
get network path manager
Definition GNENet.cpp:192
GNEViewParent * getViewParent() const
get view parent (used for simplify code)
Definition GNENet.cpp:150
NBEdgeCont & getEdgeCont()
returns the NBEdgeCont of the underlying netbuilder
Definition GNENet.cpp:2209
GNEUndoList * getUndoList() const
get undo list(used for simplify code)
Definition GNENet.cpp:156
GNEViewNet * getViewNet() const
get view net (used for simplify code)
Definition GNENet.cpp:144
GNEContour myNetworkElementContour
network element contour
bool myShapeEdited
flag to check if element shape is being edited
void setNetworkElementID(const std::string &newID)
set network element id
bool drawCandidateEdgesWithSpecialColor() const
draw candidate edges with special color (Only for candidates, special and conflicted)
void invalidatePathCalculator()
invalidate pathCalculator
PathCalculator * getPathCalculator()
obtain instance of PathCalculator
void drawLanePathElements(const GUIVisualizationSettings &s, const GNELane *lane) const
draw lane path elements
GNEPathCreator * getPathCreator() const
get path creator module
bool controlsEdge(GNEEdge *edge) const
whether the given edge is controlled by the currently edited tlDef
void handleMultiChange(GNELane *lane, FXObject *obj, FXSelector sel, void *data)
update phase definition for the current traffic light and phase
SumoXMLTag getTag() const
get Tag vinculated with this attribute Property
GNEAttributeCarrier * getCurrentTemplateAC() const
get current templateAC
GNELane * getLaneFront() const
get front lane or a pointer to nullptr
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
GNEViewParent * getViewParent() const
get the net object
bool checkOverLockedElement(const GUIGlObject *GLObject, const bool isSelected) const
check if given element is locked (used for drawing select and delete contour)
bool checkSelectEdges() const
check if select edges (toggle using button or shift)
const GNEViewNetHelper::ViewObjectsSelector & getViewObjectsSelector() const
get objects under cursor
GNEDeleteFrame * getDeleteFrame() const
get frame for delete elements
GNETLSEditorFrame * getTLSEditorFrame() const
get frame for NETWORK_TLS
GNEAdditionalFrame * getAdditionalFrame() const
get frame for NETWORK_ADDITIONAL
GNEInspectorFrame * getInspectorFrame() const
get frame for inspect elements
GNERouteFrame * getRouteFrame() const
get frame for DEMAND_ROUTE
static FXMenuCommand * buildFXMenuCommand(FXComposite *p, const std::string &text, FXIcon *icon, FXObject *tgt, FXSelector sel, const bool disable=false)
build menu command
The popup menu of a globject.
void insertMenuPaneChild(FXMenuPane *child)
Insert a sub-menu pane in this GUIGLObjectPopupMenu.
GUIGlObject * getGLObject() const
The object that belongs to this popup-menu.
const std::vector< double > & getShapeRotations() const
The rotations of the single shape parts.
static void drawGeometryPoints(const GUIVisualizationSettings::Detail d, const PositionVector &shape, const RGBColor &color, const double radius, const double exaggeration, const bool drawSymbols, const bool editingElevation)
draw geometry points
static void drawGeometry(const GUIVisualizationSettings::Detail d, const GUIGeometry &geometry, const double width, double offset=0)
draw geometry
static double calculateRotation(const Position &first, const Position &second)
return angle between two points (used in geometric calculations)
const PositionVector & getShape() const
The shape of the additional element.
void updateGeometry(const PositionVector &shape)
update entire geometry
const std::vector< double > & getShapeLengths() const
The lengths of the single shape parts.
const std::string & getMicrosimID() const
Returns the id of the object as known to microsim.
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 setGLObjectParent(GUIGlObject *parent)
notify object about popup menu removal
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.
static FXIcon * getIcon(const GUIIcon which)
returns a icon previously defined in the enum GUIIcon
T getColor(const double value) const
const std::vector< T > & getSchemes() const
double m2p(double meter) const
meter-to-pixels conversion method
virtual Position getPositionInformation() const
Returns the cursor's x/y position within the network.
GUIGLObjectPopupMenu * getPopup() const
ge the current popup-menu
static GUIGlID getTexture(GUITexture which)
returns a texture previously defined in the enum GUITexture
static void drawTexturedBox(int which, double size)
Draws a named texture as a box with the given size.
bool checkBoundaryParentObject(const GUIVisualizationSettings &s, const GUIGlObject *GLObject, const double layer, const GUIGlObject *parent)
Stores the information about how to visualize structures.
GUIVisualizationSizeSettings addSize
bool disableLaneIcons
whether drawing is performed in left-hand networks
GUIVisualizationTextSettings drawLinkJunctionIndex
Detail getDetailLevel(const double exaggeration) const
return the detail level
bool showRails
Information whether rails shall be drawn.
GUIVisualizationCandidateColorSettings candidateColorSettings
candidate color settings
double laneWidthExaggeration
The lane exaggeration (upscale thickness)
bool lefthand
whether drawing is performed in left-hand networks
GUIVisualizationColorSettings colorSettings
color settings
GUIVisualizationDottedContourSettings dottedContourSettings
dotted contour settings
static const RGBColor & getLinkColor(const LinkState &ls, bool realistic=false)
map from LinkState to color constants
double scale
information about a lane's width (temporary, used for a single view)
bool showLaneDirection
Whether to show direction indicators for lanes.
bool drawForViewObjectsHandler
whether drawing is performed for the purpose of selecting objects in view using ViewObjectsHandler
bool showLinkDecals
Information whether link textures (arrows) shall be drawn.
GUIColorer laneColorer
The lane colorer.
bool laneShowBorders
Information whether lane borders shall be drawn.
GUIVisualizationTextSettings drawLinkTLIndex
double selectorFrameScale
the current selection scaling in netedit (set in SelectorFrame)
bool spreadSuperposed
Whether to improve visualisation of superposed (rail) edges.
GUIColorer junctionColorer
The junction colorer.
std::string edgeParam
key for coloring by edge parameter
GUIVisualizationNeteditSizeSettings neteditSizeSettings
netedit size settings
static double naviDegree(const double angle)
static FXColor getFXColor(const RGBColor &col)
converts FXColor to RGBColor
Definition MFXUtils.cpp:146
NBEdge * retrieve(const std::string &id, bool retrieveExtracted=false) const
Returns the edge that has the given id.
The representation of a single edge during network building.
Definition NBEdge.h:92
double getLaneSpeed(int lane) const
get lane speed
Definition NBEdge.cpp:2236
void setPermittedChanging(int lane, SVCPermissions changeLeft, SVCPermissions changeRight)
set allowed classes for changing to the left and right from the given lane
Definition NBEdge.cpp:4534
SVCPermissions getPermissions(int lane=-1) const
get the union of allowed classes over all lanes or for a specific lane
Definition NBEdge.cpp:4543
void setPermissions(SVCPermissions permissions, int lane=-1)
set allowed/disallowed classes for the given lane or for all lanes if -1 is given
Definition NBEdge.cpp:4506
void setSpeed(int lane, double speed)
set lane specific speed (negative lane implies set for all lanes)
Definition NBEdge.cpp:4458
NBNode * getToNode() const
Returns the destination node of the edge.
Definition NBEdge.h:552
Lane & getLaneStruct(int lane)
Definition NBEdge.h:1451
bool isBidiRail(bool ignoreSpread=false) const
whether this edge is part of a bidirectional railway
Definition NBEdge.cpp:772
const std::string & getID() const
Definition NBEdge.h:1551
void setLaneWidth(int lane, double width)
set lane specific width (negative lane implies set for all lanes)
Definition NBEdge.cpp:4329
void setAcceleration(int lane, bool accelRamp)
marks one lane as acceleration lane
Definition NBEdge.cpp:4490
bool isBidiEdge(bool checkPotential=false) const
whether this edge is part of a bidirectional edge pair
Definition NBEdge.cpp:784
int getNumLanes() const
Returns the number of lanes.
Definition NBEdge.h:526
void setFriction(int lane, double friction)
set lane specific friction (negative lane implies set for all lanes)
Definition NBEdge.cpp:4474
std::string getLaneID(int lane) const
get lane ID
Definition NBEdge.cpp:4181
void setLaneShape(int lane, const PositionVector &shape)
sets a custom lane shape
Definition NBEdge.cpp:4498
NBNode * getFromNode() const
Returns the origin node of the edge.
Definition NBEdge.h:545
static const double UNSPECIFIED_WIDTH
unspecified lane width
Definition NBEdge.h:346
void setEndOffset(int lane, double offset)
set lane specific end-offset (negative lane implies set for all lanes)
Definition NBEdge.cpp:4412
Represents a single node (junction) during network building.
Definition NBNode.h:66
LinkDirection getDirection(const NBEdge *const incoming, const NBEdge *const outgoing, bool leftHand=false) const
Returns the representation of the described stream's direction.
Definition NBNode.cpp:2507
LinkState getLinkState(const NBEdge *incoming, const NBEdge *outgoing, int fromLane, int toLane, bool mayDefinitelyPass, const std::string &tlID) const
get link state
Definition NBNode.cpp:2592
An upper class for objects with additional parameters.
A point in 2D or 3D with translation and scaling methods.
Definition Position.h:37
double x() const
Returns the x-position.
Definition Position.h:52
double z() const
Returns the z-position.
Definition Position.h:62
double angleTo2D(const Position &other) const
returns the angle in the plane of the vector pointing from here to the other position (in radians bet...
Definition Position.h:283
double y() const
Returns the y-position.
Definition Position.h:57
A list of positions.
double length2D() const
Returns the length.
double beginEndAngle() const
returns the angle in radians of the line connecting the first and the last position
double length() const
Returns the length.
double rotationDegreeAtOffset(double pos) const
Returns the rotation at the given length.
Position positionAtOffset(double pos, double lateralOffset=0) const
Returns the position at the given length.
double nearest_offset_to_point2D(const Position &p, bool perpendicular=true) const
return the nearest offest to point 2D
Position positionAtOffset2D(double pos, double lateralOffset=0, bool extrapolateBeyond=false) const
Returns the position at the given length.
static const RGBColor WHITE
Definition RGBColor.h:205
unsigned char alpha() const
Returns the alpha-amount of the color.
Definition RGBColor.cpp:96
static RGBColor fromHSV(double h, double s, double v, bool random=false)
Converts the given hsv-triplet to rgb, inspired by http://alvyray.com/Papers/CG/hsv2rgb....
Definition RGBColor.cpp:413
static const RGBColor ORANGE
Definition RGBColor.h:204
static const RGBColor CYAN
Definition RGBColor.h:202
static const RGBColor GREEN
Definition RGBColor.h:199
static const RGBColor BLACK
Definition RGBColor.h:206
RGBColor changedBrightness(int change, int toChange=3) const
Returns a new color with altered brightness.
Definition RGBColor.cpp:210
void setOffset(const double offset)
set offset
bool isDefined() const
check if stopOffset was defined
void setExceptions(const std::string permissions)
set exceptions (used in netedit)
std::string getExceptions() const
get exceptions (used in netedit)
double getOffset() const
get offset
std::vector< std::string > getStrings() const
get all strings
T get(const std::string &str) const
get key
static double toDouble(const std::string &sData)
converts a string into the double value described by it by calling the char-type converter
static bool toBool(const std::string &sData)
converts a string into the bool value described by it by calling the char-type converter
static FXIcon * getVClassIcon(const SUMOVehicleClass vc)
returns icon associated to the given vClass
NetworkEditMode networkEditMode
the current Network edit mode
bool isCurrentSupermodeDemand() const
@check if current supermode is Demand
bool isCurrentSupermodeData() const
@check if current supermode is Data
bool isCurrentSupermodeNetwork() const
@check if current supermode is Network
GNENetworkElement * getEditedNetworkElement() const
pointer to edited network element
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
bool editingElevation() const
check if we're editing elevation
bool showDemandElements() const
check if show demand elements checkbox is enabled
static const RGBColor special
color for selected special candidate element (Usually selected using shift+click)
static const RGBColor conflict
color for selected conflict candidate element (Usually selected using ctrl+click)
static const RGBColor invalid
color for invalid elements
static const RGBColor target
color for selected candidate target
static const RGBColor possible
color for possible candidate element
static const RGBColor source
color for selected candidate source
RGBColor selectedEdgeColor
edge selection color
RGBColor selectedLaneColor
lane selection color
static const RGBColor editShapeColor
color for edited shapes (Junctions, crossings and connections)
static const double segmentWidth
width of dotted contour segments
static const double laneGeometryPointRadius
moving lane geometry point radius
static const double junctionBubbleRadius
junction bubble radius
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
double width
This lane's width.
Definition NBEdge.h:176
StopOffset laneStopOffset
stopOffsets.second - The stop offset for vehicles stopping at the lane's end. Applies if vClass is in...
Definition NBEdge.h:173
PositionVector customShape
A custom shape for this lane set by the user.
Definition NBEdge.h:189
double endOffset
This lane's offset to the intersection begin.
Definition NBEdge.h:169
std::string type
the type of this lane
Definition NBEdge.h:192
std::string oppositeID
An opposite lane ID, if given.
Definition NBEdge.h:179
SVCPermissions changeRight
List of vehicle types that are allowed to change right from this lane.
Definition NBEdge.h:166
double friction
The friction on this lane.
Definition NBEdge.h:154
SVCPermissions changeLeft
List of vehicle types that are allowed to change Left from this lane.
Definition NBEdge.h:163
bool accelRamp
Whether this lane is an acceleration lane.
Definition NBEdge.h:182