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;
376 }
377 return false;
378}
379
380
381bool
383 // get modes and viewParent (for code legibility)
384 const auto& modes = myNet->getViewNet()->getEditModes();
385 const auto& viewParent = myNet->getViewParent();
386 // check if we're selecting edges in additional mode
387 if (modes.isCurrentSupermodeNetwork() && (modes.networkEditMode == NetworkEditMode::NETWORK_ADDITIONAL)) {
388 if (viewParent->getAdditionalFrame()->getViewObjetsSelector()->isNetworkElementSelected(this)) {
389 return true;
390 } else if (viewParent->getAdditionalFrame()->getViewObjetsSelector()->getTag() == myTagProperty->getTag()) {
392 } else {
393 return false;
394 }
395 } else {
396 return false;
397 }
398}
399
400
401bool
403 // first check if we're selecting edges or lanes
405 return false;
406 } else {
407 // get edit modes
408 const auto& editModes = myNet->getViewNet()->getEditModes();
409 // check if we're in delete mode
410 if (editModes.isCurrentSupermodeNetwork() && (editModes.networkEditMode == NetworkEditMode::NETWORK_DELETE)) {
412 } else {
413 return false;
414 }
415 }
416}
417
418
419bool
421 return false;
422}
423
424
425bool
427 // first check if we're selecting edges or lanes
429 return false;
430 } else {
431 // get edit modes
432 const auto& editModes = myNet->getViewNet()->getEditModes();
433 // check if we're in select mode
434 if (editModes.isCurrentSupermodeNetwork() && (editModes.networkEditMode == NetworkEditMode::NETWORK_SELECT)) {
436 } else {
437 return false;
438 }
439 }
440}
441
442
443bool
445 // check if we're editing this network element
447 if (editedNetworkElement) {
448 return editedNetworkElement == this;
449 } else {
450 return false;
451 }
452}
453
454
455void
457 // update lane drawing constan
459 // calculate layer
460 double layer = GLO_LANE;
461 if (getParentEdges().front()->isMarkedForDrawingFront()) {
462 layer = GLO_FRONTELEMENT;
464 layer = GLO_JUNCTION + 2;
465 }
466 // check drawing conditions
468 // draw lane
469 drawLane(s, layer);
470 // draw lock icon
472 // draw dotted contour
474 }
475 // calculate contour (always before children)
476 calculateLaneContour(s, layer);
477 // draw children
478 drawChildren(s);
479}
480
481
482void
484 // Check if edge can be deleted
486 myNet->deleteLane(this, myNet->getUndoList(), false);
487 }
488}
489
490
491void
495
496
497
500 // first obtain edit mode (needed because certain Commands depend of current edit mode)
502 // get mouse position
503 const auto mousePosition = myNet->getViewNet()->getPositionInformation();
504 GUIGLObjectPopupMenu* ret = new GUIGLObjectPopupMenu(app, parent, this);
505 buildPopupHeader(ret, app);
507 // build copy names entry
508 if (editMode != NetworkEditMode::NETWORK_TLS) {
509 GUIDesigns::buildFXMenuCommand(ret, TL("Copy parent edge name to clipboard"), nullptr, ret, MID_COPY_EDGE_NAME);
511 }
512 // stop if we're in data mode
514 return ret;
515 }
516 // build lane selection
519 } else {
521 }
522 // build edge selection
525 } else {
527 }
528 // add separator
529 new FXMenuSeparator(ret);
530 // delete lane
533 }
534 // stop if we're in data mode
536 return ret;
537 }
538 // add separator
539 new FXMenuSeparator(ret);
540 if (editMode != NetworkEditMode::NETWORK_TLS) {
541 // build show parameters menu
544 // add separator
545 new FXMenuSeparator(ret);
546 // build position copy entry
547 buildPositionCopyEntry(ret, app);
548 }
549 // check if we're in supermode network
551 // create end point
552 FXMenuCommand* resetEndPoints = GUIDesigns::buildFXMenuCommand(ret, TL("Reset edge end points"), nullptr, &parent, MID_GNE_RESET_GEOMETRYPOINT);
553 // enable or disable reset end points
554 if (getParentEdges().front()->hasCustomEndPoints()) {
555 resetEndPoints->enable();
556 } else {
557 resetEndPoints->disable();
558 }
559 // check if we clicked over a geometry point
560 if ((editMode == NetworkEditMode::NETWORK_MOVE) && getParentEdges().front()->clickedOverGeometryPoint(mousePosition)) {
561 GUIDesigns::buildFXMenuCommand(ret, TL("Set custom Geometry Point"), nullptr, &parent, MID_GNE_CUSTOM_GEOMETRYPOINT);
562 }
563 // add separator
564 new FXMenuSeparator(ret);
565 //build operations
566 if ((editMode != NetworkEditMode::NETWORK_CONNECT) && (editMode != NetworkEditMode::NETWORK_TLS)) {
567 // build edge operations
568 buildEdgeOperations(parent, ret);
569 // build lane operations
570 buildLaneOperations(parent, ret);
571 // build template operations
572 buildTemplateOperations(parent, ret);
573 // add separator
574 new FXMenuSeparator(ret);
575 // build rechable operations
576 buildRechableOperations(parent, ret);
577 } else if (editMode == NetworkEditMode::NETWORK_TLS) {
579 GUIDesigns::buildFXMenuCommand(ret, TL("Select state for all links from this edge:"), nullptr, nullptr, 0);
580 const std::vector<std::string> names = GNEInternalLane::LinkStateNames.getStrings();
581 for (auto it : names) {
582 FXuint state = GNEInternalLane::LinkStateNames.get(it);
583 FXMenuRadio* mc = new FXMenuRadio(ret, it.c_str(), this, FXDataTarget::ID_OPTION + state);
586 }
587 }
588 } else {
589 FXMenuCommand* mc = GUIDesigns::buildFXMenuCommand(ret, TL("Additional options available in 'Inspect Mode'"), nullptr, nullptr, 0);
590 mc->handle(&parent, FXSEL(SEL_COMMAND, FXWindow::ID_DISABLE), nullptr);
591 }
592 // build shape positions menu
593 if (editMode != NetworkEditMode::NETWORK_TLS) {
594 new FXMenuSeparator(ret);
595 // get lane shape
596 const auto& laneShape = myLaneGeometry.getShape();
597 // get variables
598 const double pos = laneShape.nearest_offset_to_point2D(mousePosition);
599 const Position firstAnglePos = laneShape.positionAtOffset2D(pos - 0.001);
600 const Position secondAnglePos = laneShape.positionAtOffset2D(pos);
601 const double angle = firstAnglePos.angleTo2D(secondAnglePos);
602
603 // build menu commands
604 GUIDesigns::buildFXMenuCommand(ret, TL("Shape pos: ") + toString(pos), nullptr, nullptr, 0);
605 GUIDesigns::buildFXMenuCommand(ret, TL("Length pos: ") + toString(pos * getLaneParametricLength() / getLaneShapeLength()), nullptr, nullptr, 0);
606 if (getParentEdges().front()->getNBEdge()->getDistance() != 0) {
607 GUIDesigns::buildFXMenuCommand(ret, TL("Distance: ") + toString(getParentEdges().front()->getNBEdge()->getDistancAt(pos)), nullptr, nullptr, 0);
608 }
609 GUIDesigns::buildFXMenuCommand(ret, TL("Height: ") + toString(firstAnglePos.z()), nullptr, nullptr, 0);
610 GUIDesigns::buildFXMenuCommand(ret, TL("Angle: ") + toString((GeomHelper::naviDegree(angle))), nullptr, nullptr, 0);
611 }
612 }
613 return ret;
614}
615
616
617double
619 return s.addSize.getExaggeration(s, this);
620}
621
622
627
628
629void
630GNELane::updateCenteringBoundary(const bool /*updateGrid*/) {
631 // nothing to update
632}
633
634
635int
637 return myIndex;
638}
639
640
641void
643 myIndex = index;
644 setNetworkElementID(getParentEdges().front()->getNBEdge()->getLaneID(index));
645}
646
647
648double
650 return getParentEdges().front()->getNBEdge()->getLaneSpeed(myIndex);
651}
652
653
654double
656 double laneParametricLength = getParentEdges().front()->getNBEdge()->getLoadedLength();
657 if (laneParametricLength > 0) {
658 return laneParametricLength;
659 } else {
660 throw ProcessError(TL("Lane Parametric Length cannot be never 0"));
661 }
662}
663
664
665double
669
670
671bool
673 return getParentEdges().front()->getNBEdge()->getPermissions(myIndex) == vclass;
674}
675
676
681
682
683std::string
685 const NBEdge* edge = getParentEdges().front()->getNBEdge();
686 switch (key) {
687 case SUMO_ATTR_ID:
688 return getMicrosimID();
690 return getParentEdges().front()->getFromJunction()->getID();
692 return getParentEdges().front()->getToJunction()->getID();
693 case SUMO_ATTR_SPEED:
694 return toString(edge->getLaneSpeed(myIndex));
695 case SUMO_ATTR_ALLOW:
703 case SUMO_ATTR_WIDTH:
705 return "default";
706 } else {
707 return toString(edge->getLaneStruct(myIndex).width);
708 }
710 return toString(edge->getLaneStruct(myIndex).friction);
715 case SUMO_ATTR_SHAPE:
720 case SUMO_ATTR_TYPE:
721 return edge->getLaneStruct(myIndex).type;
722 case SUMO_ATTR_INDEX:
723 return toString(myIndex);
729 } else {
730 return "";
731 }
732 case GNE_ATTR_PARENT:
733 return getParentEdges().front()->getID();
734 default:
735 return getCommonAttribute(key);
736 }
737}
738
739
740double
744
745
750
751
754 switch (key) {
755 case SUMO_ATTR_SHAPE:
757 return getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).customShape;
758 default:
760 }
761}
762
763
764std::string
766 std::string result = getAttribute(key);
767 if ((key == SUMO_ATTR_ALLOW || key == SUMO_ATTR_DISALLOW) && result.find("all") != std::string::npos) {
768 result += " " + getVehicleClassNames(SVCAll, true);
769 }
770 return result;
771}
772
773
774void
775GNELane::setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList) {
776 switch (key) {
777 case SUMO_ATTR_ID:
778 throw InvalidArgument("Modifying attribute '" + toString(key) + "' of " + getTagStr() + " isn't allowed");
779 case SUMO_ATTR_SPEED:
780 case SUMO_ATTR_ALLOW:
784 case SUMO_ATTR_WIDTH:
788 case SUMO_ATTR_SHAPE:
791 case SUMO_ATTR_TYPE:
792 case SUMO_ATTR_INDEX:
794 // special case for stop offset, because affects to stopOffsetExceptions (#15297)
795 if (canParse<double>(value) && (parse<double>(value) == 0)) {
797 }
798 GNEChange_Attribute::changeAttribute(this, key, value, undoList);
799 break;
801 GNEChange_Attribute::changeAttribute(this, key, value, undoList);
802 break;
803 default:
804 setCommonAttribute(key, value, undoList);
805 break;
806 }
807}
808
809
810bool
811GNELane::isValid(SumoXMLAttr key, const std::string& value) {
812 switch (key) {
813 case SUMO_ATTR_ID:
814 case SUMO_ATTR_INDEX:
815 return false;
816 case SUMO_ATTR_SPEED:
817 return canParse<double>(value);
818 case SUMO_ATTR_ALLOW:
822 return canParseVehicleClasses(value);
823 case SUMO_ATTR_WIDTH:
824 if (value.empty() || (value == "default")) {
825 return true;
826 } else {
827 return canParse<double>(value) && ((parse<double>(value) > 0) || (parse<double>(value) == NBEdge::UNSPECIFIED_WIDTH));
828 }
831 return canParse<double>(value) && (parse<double>(value) >= 0);
833 return canParse<bool>(value);
834 case SUMO_ATTR_SHAPE:
836 // A lane shape can either be empty or have more than 1 element
837 if (value.empty()) {
838 return true;
839 } else if (canParse<PositionVector>(value)) {
840 return parse<PositionVector>(value).size() > 1;
841 }
842 return false;
843 case GNE_ATTR_OPPOSITE: {
844 if (value.empty()) {
845 return true;
846 } else {
847 NBEdge* oppEdge = myNet->getEdgeCont().retrieve(value.substr(0, value.rfind("_")));
848 if (oppEdge == nullptr || oppEdge->getLaneID(oppEdge->getNumLanes() - 1) != value) {
849 return false;
850 }
851 NBEdge* edge = getParentEdges().front()->getNBEdge();
852 if (oppEdge->getFromNode() != edge->getToNode() || oppEdge->getToNode() != edge->getFromNode()) {
853 WRITE_WARNINGF(TL("Opposite lane '%' does not connect the same nodes as edge '%'!"), value, edge->getID());
854 return false;
855 }
856 return true;
857 }
858 }
859 case SUMO_ATTR_TYPE:
860 return true;
862 return canParse<double>(value) && (parse<double>(value) >= 0);
864 return canParseVehicleClasses(value);
865 default:
866 return isCommonAttributeValid(key, value);
867 }
868}
869
870
871bool
873 switch (key) {
874 case SUMO_ATTR_ID:
875 case SUMO_ATTR_INDEX:
876 return false;
878 return getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).laneStopOffset.getOffset() > 0;
879 default:
880 return true;
881 }
882}
883
884
885bool
887 const NBEdge* edge = getParentEdges().front()->getNBEdge();
888 switch (key) {
889 case SUMO_ATTR_WIDTH:
891 default:
892 return false;
893 }
894}
895
896
897void
898GNELane::setSpecialColor(const RGBColor* color, double colorValue) {
899 mySpecialColor = color;
900 mySpecialColorValue = colorValue;
901}
902
903// ===========================================================================
904// private
905// ===========================================================================
906
907void
908GNELane::setAttribute(SumoXMLAttr key, const std::string& value) {
909 // get parent edge
910 NBEdge* edge = getParentEdges().front()->getNBEdge();
911 // get template editor
913 // check if we have to update template
914 const bool updateTemplate = templateEditor->getEdgeTemplate() ? (templateEditor->getEdgeTemplate()->getID() == getParentEdges().front()->getID()) : false;
915 switch (key) {
916 case SUMO_ATTR_ID:
917 case SUMO_ATTR_INDEX:
918 throw InvalidArgument("Modifying attribute '" + toString(key) + "' of " + getTagStr() + " isn't allowed");
919 case SUMO_ATTR_SPEED:
920 edge->setSpeed(myIndex, parse<double>(value));
921 break;
922 case SUMO_ATTR_ALLOW:
924 break;
927 break;
930 break;
933 break;
934 case SUMO_ATTR_WIDTH:
935 if (value.empty() || (value == "default")) {
937 } else {
938 edge->setLaneWidth(myIndex, parse<double>(value));
939 }
940 // update edge parent boundary
941 getParentEdges().front()->updateCenteringBoundary(true);
942 break;
944 edge->setFriction(myIndex, parse<double>(value));
945 break;
947 edge->setEndOffset(myIndex, parse<double>(value));
948 break;
950 edge->setAcceleration(myIndex, parse<bool>(value));
951 break;
952 case SUMO_ATTR_SHAPE:
954 // set new shape
955 edge->setLaneShape(myIndex, parse<PositionVector>(value));
956 // update edge parent boundary
957 getParentEdges().front()->updateCenteringBoundary(true);
958 break;
959 case GNE_ATTR_OPPOSITE: {
960 if (value != "") {
961 NBEdge* oppEdge = myNet->getEdgeCont().retrieve(value.substr(0, value.rfind("_")));
962 oppEdge->getLaneStruct(oppEdge->getNumLanes() - 1).oppositeID = getID();
963 } else {
964 // reset prior oppEdge if existing
965 const std::string oldValue = getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).oppositeID;
966 NBEdge* oppEdge = myNet->getEdgeCont().retrieve(oldValue.substr(0, oldValue.rfind("_")));
967 if (oppEdge != nullptr) {
968 oppEdge->getLaneStruct(oppEdge->getNumLanes() - 1).oppositeID = "";
969 }
970 }
971 getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).oppositeID = value;
972 break;
973 }
974 case SUMO_ATTR_TYPE:
975 edge->getLaneStruct(myIndex).type = value;
976 break;
978 if (value.empty()) {
980 } else {
981 edge->getLaneStruct(myIndex).laneStopOffset.setOffset(parse<double>(value));
982 }
983 break;
986 break;
987 default:
988 setCommonAttribute(key, value);
989 break;
990 }
991 // update template
992 if (updateTemplate) {
993 templateEditor->setEdgeTemplate(getParentEdges().front());
994 }
995 // invalidate demand path calculator
997}
998
999
1000void
1001GNELane::drawLane(const GUIVisualizationSettings& s, const double layer) const {
1002 // Push layer matrix
1004 // translate to layer
1005 drawInLayer(layer);
1006 // set lane colors
1007 RGBColor laneColor = setLaneColor(s);
1008 // never draw when at full transparency
1009 if (laneColor.alpha() != 0) {
1010 // Check if lane has to be draw as railway and if isn't being drawn for selecting
1012 // draw as railway
1014 } else if (myShapeColors.size() > 0) {
1015 // draw geometry with own colors
1018 } else {
1019 // draw geometry with current color
1021 double drawingWidth = myDrawingConstants->getDrawingWidth();
1023 drawingWidth = myNet->getViewNet()->m2p(drawingWidth);
1024 }
1027 }
1028 // if lane is selected, draw a second lane over it
1030 // draw start end shape points
1032 // check if draw details
1034 // draw markings
1036 // Draw direction indicators
1038 // draw lane textures
1039 drawTextures(s);
1040 // draw lane arrows
1041 drawArrows(s);
1042 // draw link numbers
1043 drawLinkNo(s);
1044 // draw TLS link numbers
1045 drawTLSLinkNo(s);
1046 // draw stopOffsets
1048 }
1049 // draw shape edited
1050 drawShapeEdited(s);
1051 }
1052 // Pop layer matrix
1054}
1055
1056
1057void
1059 // only draw if lane is selected
1060 if (drawUsingSelectColor()) {
1061 // Push matrix
1063 // move back
1064 glTranslated(0, 0, 0.1);
1065 // set selected edge color
1067 // draw geometry with current color
1070 // Pop matrix
1072 }
1073}
1074
1075
1076void
1078 // if shape is being edited, draw point and green line
1079 if (myShapeEdited) {
1080 // push shape edited matrix
1082 // translate
1084 // set selected edge color
1086 // draw shape around
1089 // move front
1090 glTranslated(0, 0, 1);
1091 // draw geometry points
1096 // Pop shape edited matrix
1098 }
1099}
1100
1101
1102void
1104 // draw additional children
1105 for (const auto& additional : getChildAdditionals()) {
1106 if (!additional->getTagProperty()->isListedElement()) {
1107 additional->drawGL(s);
1108 }
1109 }
1110 // draw demand element children
1111 for (const auto& demandElement : getChildDemandElements()) {
1112 if (!demandElement->getTagProperty()->isPlacedInRTree()) {
1113 demandElement->drawGL(s);
1114 }
1115 }
1116 // draw path additional elements
1120}
1121
1122
1123void
1125 // check conditions
1127 // check if this is the last lane (note: First lane is the lane more far of the edge's center)
1128 const bool firstlane = (myIndex == 0);
1129 const bool lastLane = (myIndex == (getParentEdges().front()->getNBEdge()->getNumLanes() - 1));
1130 // declare separator width
1131 const auto separatorWidth = SUMO_const_laneMarkWidth * 0.5;
1132 // get passengers change left and right for previous, current and next lane
1133 const bool changeRightTop = lastLane ? true : getParentEdges().front()->getNBEdge()->allowsChangingRight(myIndex + 1, SVC_PASSENGER);
1134 const bool changeLeftCurrent = lastLane ? true : getParentEdges().front()->getNBEdge()->allowsChangingLeft(myIndex, SVC_PASSENGER);
1135 const bool changeRightCurrent = firstlane ? true : getParentEdges().front()->getNBEdge()->allowsChangingRight(myIndex, SVC_PASSENGER);
1136 const bool changeLeftBot = firstlane ? true : getParentEdges().front()->getNBEdge()->allowsChangingLeft(myIndex - 1, SVC_PASSENGER);
1137 // save current color
1138 const auto currentColor = GLHelper::getColor();
1139 // separator offsets
1140 const double topSeparatorOffset = myDrawingConstants->getOffset() + (myDrawingConstants->getDrawingWidth() * -1) + separatorWidth;
1141 const double botSeparatorOffset = myDrawingConstants->getOffset() + myDrawingConstants->getDrawingWidth() - separatorWidth;
1142 // push matrix
1144 // translate
1145 glTranslated(0, 0, 0.1);
1146 // continue depending of lanes
1147 if (myDrawingConstants->drawSuperposed() || (firstlane && lastLane)) {
1148 // draw top and bot separator only
1150 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, topSeparatorOffset);
1151 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, botSeparatorOffset);
1152 } else if (firstlane) {
1153 // draw top separator
1154 GLHelper::setColor((changeLeftCurrent && changeRightTop) ? RGBColor::WHITE : RGBColor::ORANGE);
1155 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, topSeparatorOffset);
1156 // check if draw inverse marking
1157 if (changeLeftCurrent) {
1158 GLHelper::setColor(currentColor);
1160 3, 6, topSeparatorOffset, true, true, s.lefthand, 1);
1161 }
1162 // draw bot separator
1164 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, botSeparatorOffset);
1165 } else if (lastLane) {
1166 // draw top separator
1168 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, topSeparatorOffset);
1169 // draw bot separator
1170 GLHelper::setColor((changeRightCurrent && changeLeftBot) ? RGBColor::WHITE : RGBColor::ORANGE);
1171 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, botSeparatorOffset);
1172 // check if draw inverse marking
1173 if (changeRightCurrent) {
1174 GLHelper::setColor(currentColor);
1176 3, 6, botSeparatorOffset, true, true, s.lefthand, 1);
1177 }
1178 } else {
1179 // draw top separator
1180 GLHelper::setColor((changeLeftCurrent && changeRightTop) ? RGBColor::WHITE : RGBColor::ORANGE);
1181 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, topSeparatorOffset);
1182 // check if draw inverse marking
1183 if (changeLeftCurrent) {
1184 GLHelper::setColor(currentColor);
1186 3, 6, topSeparatorOffset, true, true, s.lefthand, 1);
1187 }
1188 // draw bot separator
1189 GLHelper::setColor((changeRightCurrent && changeLeftBot) ? RGBColor::WHITE : RGBColor::ORANGE);
1190 GUIGeometry::drawGeometry(myDrawingConstants->getDetail(), myLaneGeometry, separatorWidth, botSeparatorOffset);
1191 // check if draw inverse marking
1192 if (changeRightCurrent) {
1193 GLHelper::setColor(currentColor);
1195 3, 6, botSeparatorOffset, true, true, s.lefthand, 1);
1196 }
1197 }
1198 // pop matrix
1200 }
1201}
1202
1203
1204void
1206 // check draw conditions
1207 if (s.drawLinkJunctionIndex.show(getParentEdges().front()->getToJunction())) {
1208 // get connections
1209 const auto& connections = getParentEdges().front()->getNBEdge()->getConnectionsFromLane(myIndex);
1210 // get number of links
1211 const int noLinks = (int)connections.size();
1212 // only continue if there is links
1213 if (noLinks > 0) {
1214 // push link matrix
1216 // move front
1217 glTranslated(0, 0, GLO_TEXTNAME);
1218 // calculate width
1219 const double width = getParentEdges().front()->getNBEdge()->getLaneWidth(myIndex) / (double) noLinks;
1220 // get X1
1221 double x1 = getParentEdges().front()->getNBEdge()->getLaneWidth(myIndex) / 2;
1222 // iterate over links
1223 for (int i = noLinks - 1; i >= 0; i--) {
1224 // calculate x2
1225 const double x2 = x1 - (double)(width / 2.);
1226 // get link index
1227 const int linkIndex = getParentEdges().front()->getNBEdge()->getToNode()->getConnectionIndex(getParentEdges().front()->getNBEdge(),
1228 connections[s.lefthand ? noLinks - 1 - i : i]);
1229 // draw link index
1231 // update x1
1232 x1 -= width;
1233 }
1234 // pop link matrix
1236 }
1237 }
1238}
1239
1240
1241void
1243 // check conditions
1245 (getParentEdges().front()->getToJunction()->getNBNode()->getControllingTLS().size() > 0)) {
1246 // get connections
1247 const auto& connections = getParentEdges().front()->getNBEdge()->getConnectionsFromLane(myIndex);
1248 // get numer of links
1249 const int noLinks = (int)connections.size();
1250 // only continue if there are links
1251 if (noLinks > 0) {
1252 // push link matrix
1254 // move t front
1255 glTranslated(0, 0, GLO_TEXTNAME);
1256 // calculate width
1257 const double w = getParentEdges().front()->getNBEdge()->getLaneWidth(myIndex) / (double) noLinks;
1258 // calculate x1
1259 double x1 = getParentEdges().front()->getNBEdge()->getLaneWidth(myIndex) / 2;
1260 // iterate over links
1261 for (int i = noLinks - 1; i >= 0; --i) {
1262 // calculate x2
1263 const double x2 = x1 - (double)(w / 2.);
1264 // get link number
1265 const int linkNo = connections[s.lefthand ? noLinks - 1 - i : i].tlLinkIndex;
1266 // draw link number
1268 // update x1
1269 x1 -= w;
1270 }
1271 // pop link matrix
1273 }
1274 }
1275}
1276
1277
1278void
1280 if (s.showLinkDecals && getParentEdges().front()->getToJunction()->isLogicValid()) {
1281 // calculate begin, end and rotation
1282 const Position& begin = myLaneGeometry.getShape()[-2];
1283 const Position& end = myLaneGeometry.getShape().back();
1284 const double rot = GUIGeometry::calculateRotation(begin, end);
1285 // push arrow matrix
1287 // move front (note: must draw on top of junction shape?
1288 glTranslated(0, 0, 3);
1289 // change color depending of spreadSuperposed
1292 } else {
1294 }
1295 // move to end
1296 glTranslated(end.x(), end.y(), 0);
1297 // rotate
1298 glRotated(rot, 0, 0, 1);
1299 const double width = getParentEdges().front()->getNBEdge()->getLaneWidth(myIndex);
1300 if (width < SUMO_const_laneWidth) {
1302 }
1303 // apply offset
1304 glTranslated(myDrawingConstants->getOffset() * -1, 0, 0);
1305 // get destination node
1306 const NBNode* dest = getParentEdges().front()->getNBEdge()->myTo;
1307 // draw all links iterating over connections
1308 for (const auto& connection : getParentEdges().front()->getNBEdge()->myConnections) {
1309 if (connection.fromLane == myIndex) {
1310 // get link direction
1311 LinkDirection dir = dest->getDirection(getParentEdges().front()->getNBEdge(), connection.toEdge, s.lefthand);
1312 // draw depending of link direction
1313 switch (dir) {
1315 GLHelper::drawBoxLine(Position(0, 4), 0, 2, .05);
1316 GLHelper::drawTriangleAtEnd(Position(0, 4), Position(0, 1), (double) 1, (double) .25);
1317 break;
1319 GLHelper::drawBoxLine(Position(0, 4), 0, 1.5, .05);
1320 GLHelper::drawBoxLine(Position(0, 2.5), 90, 1, .05);
1321 GLHelper::drawTriangleAtEnd(Position(0, 2.5), Position(1.5, 2.5), (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, .5, .05);
1331 GLHelper::drawBoxLine(Position(0.5, 2.5), 180, 1, .05);
1332 GLHelper::drawTriangleAtEnd(Position(0.5, 2.5), Position(0.5, 4), (double) 1, (double) .25);
1333 break;
1335 GLHelper::drawBoxLine(Position(0, 4), 0, 1.5, .05);
1336 GLHelper::drawBoxLine(Position(0, 2.5), -90, 1, .05);
1337 GLHelper::drawBoxLine(Position(-0.5, 2.5), -180, 1, .05);
1338 GLHelper::drawTriangleAtEnd(Position(-0.5, 2.5), Position(-0.5, 4), (double) 1, (double) .25);
1339 break;
1341 GLHelper::drawBoxLine(Position(0, 4), 0, 1.5, .05);
1342 GLHelper::drawBoxLine(Position(0, 2.5), 45, .7, .05);
1343 GLHelper::drawTriangleAtEnd(Position(0, 2.5), Position(1.2, 1.3), (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(1, 5.8), 245, 2, .05);
1352 GLHelper::drawBoxLine(Position(-1, 5.8), 115, 2, .05);
1353 glTranslated(0, 5, 0);
1354 GLHelper::drawOutlineCircle(0.9, 0.8, 32);
1355 glTranslated(0, -5, 0);
1356 break;
1357 default:
1358 break;
1359 }
1360 }
1361 }
1362 // pop arrow matrix
1364 }
1365}
1366
1367
1368void
1371 glTranslated(0, 0, 0.1); // must draw on top of junction shape
1372 std::vector<NBEdge::Connection> connections = getParentEdges().front()->getNBEdge()->getConnectionsFromLane(myIndex);
1373 NBNode* node = getParentEdges().front()->getNBEdge()->getToNode();
1374 const Position& startPos = myLaneGeometry.getShape()[-1];
1375 for (auto it : connections) {
1376 const LinkState state = node->getLinkState(getParentEdges().front()->getNBEdge(), it.toEdge, it.fromLane, it.toLane, it.mayDefinitelyPass, it.tlID);
1377 switch (state) {
1379 glColor3d(1, 1, 0);
1380 break;
1382 glColor3d(0, 1, 1);
1383 break;
1384 case LINKSTATE_MAJOR:
1385 glColor3d(1, 1, 1);
1386 break;
1387 case LINKSTATE_MINOR:
1388 glColor3d(.4, .4, .4);
1389 break;
1390 case LINKSTATE_STOP:
1391 glColor3d(.7, .4, .4);
1392 break;
1393 case LINKSTATE_EQUAL:
1394 glColor3d(.7, .7, .7);
1395 break;
1397 glColor3d(.7, .7, 1);
1398 break;
1399 case LINKSTATE_ZIPPER:
1400 glColor3d(.75, .5, 0.25);
1401 break;
1402 default:
1403 throw ProcessError(TLF("Unexpected LinkState '%'", toString(state)));
1404 }
1405 const Position& endPos = it.toEdge->getLaneShape(it.toLane)[0];
1406 glBegin(GL_LINES);
1407 glVertex2d(startPos.x(), startPos.y());
1408 glVertex2d(endPos.x(), endPos.y());
1409 glEnd();
1410 GLHelper::drawTriangleAtEnd(startPos, endPos, (double) 1.5, (double) .2);
1411 }
1413}
1414
1415
1416void
1417GNELane::calculateLaneContour(const GUIVisualizationSettings& s, const double layer) const {
1418 // first check if edge parent was inserted with full boundary
1419 if (!gViewObjectsHandler.checkBoundaryParentObject(s, this, layer, getParentEdges().front())) {
1420 // calculate contour
1423 true, true, myDrawingConstants->getOffset(), nullptr, getParentEdges().front());
1424 // calculate geometry points contour if we're editing shape
1425 if (myShapeEdited) {
1429 }
1430 }
1431}
1432
1433
1436 const auto& inspectedElements = myNet->getViewNet()->getInspectedElements();
1437 // declare a RGBColor variable
1438 RGBColor color;
1439 // 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.
1440 if (inspectedElements.getFirstAC() &&
1441 !inspectedElements.getFirstAC()->isAttributeCarrierSelected() &&
1442 inspectedElements.getFirstAC()->getTagProperty()->vehicleEdges()) {
1443 // obtain attribute "via"
1444 std::vector<std::string> viaEdges = parse<std::vector<std::string> >(inspectedElements.getFirstAC()->getAttribute(SUMO_ATTR_VIA));
1445 // iterate over viaEdges
1446 for (const auto& edge : viaEdges) {
1447 // check if parent edge is in the via edges
1448 if (getParentEdges().front()->getID() == edge) {
1449 // set green color in GLHelper and return it
1450 color = RGBColor::GREEN;
1451 }
1452 }
1453 }
1454 if (mySpecialColor != nullptr) {
1455 // If special color is enabled, set it
1456 color = *mySpecialColor;
1457 } else if (getParentEdges().front()->drawUsingSelectColor() && s.laneColorer.getActive() != 1) {
1458 // override with special colors (unless the color scheme is based on selection)
1460 } else {
1461 // Get normal lane color
1462 const GUIColorer& c = s.laneColorer;
1463 if (!setFunctionalColor(c.getActive(), color) && !setMultiColor(s, c, color)) {
1464 color = c.getScheme().getColor(getColorValue(s, c.getActive()));
1465 }
1466 }
1467 // special color for conflicted candidate edges
1468 if (getParentEdges().front()->isConflictedCandidate()) {
1469 // extra check for route frame
1472 }
1473 }
1474 // special color for special candidate edges
1475 if (getParentEdges().front()->isSpecialCandidate()) {
1476 // extra check for route frame
1479 }
1480 }
1481 // special color for candidate edges
1482 if (getParentEdges().front()->isPossibleCandidate()) {
1483 // extra check for route frame
1486 }
1487 }
1488 // special color for source candidate edges
1489 if (getParentEdges().front()->isSourceCandidate()) {
1491 }
1492 // special color for target candidate edges
1493 if (getParentEdges().front()->isTargetCandidate()) {
1495 }
1496 // special color for invalid candidate edges
1497 if (getParentEdges().front()->isInvalidCandidate()) {
1499 }
1500 // special color for source candidate lanes
1501 if (mySourceCandidate) {
1503 }
1504 // special color for target candidate lanes
1505 if (myTargetCandidate) {
1507 }
1508 // special color for special candidate lanes
1509 if (mySpecialCandidate) {
1511 }
1512 // special color for possible candidate lanes
1513 if (myPossibleCandidate) {
1515 }
1516 // special color for conflicted candidate lanes
1519 }
1520 // special color for invalid candidate lanes
1521 if (myInvalidCandidate) {
1523 }
1524 // set color in GLHelper
1525 GLHelper::setColor(color);
1526 return color;
1527}
1528
1529
1530bool
1531GNELane::setFunctionalColor(int activeScheme, RGBColor& col) const {
1532 switch (activeScheme) {
1533 case 6: {
1534 double hue = GeomHelper::naviDegree(myLaneGeometry.getShape().beginEndAngle()); // [0-360]
1535 col = RGBColor::fromHSV(hue, 1., 1.);
1536 return true;
1537 }
1538 default:
1539 return false;
1540 }
1541}
1542
1543
1544bool
1546 const int activeScheme = c.getActive();
1547 myShapeColors.clear();
1548 switch (activeScheme) {
1549 case 9: // color by height at segment start
1550 for (PositionVector::const_iterator ii = myLaneGeometry.getShape().begin(); ii != myLaneGeometry.getShape().end() - 1; ++ii) {
1551 myShapeColors.push_back(c.getScheme().getColor(ii->z()));
1552 }
1553 col = c.getScheme().getColor(getColorValue(s, 8));
1554 return true;
1555 case 11: // color by inclination at segment start
1556 for (int ii = 1; ii < (int)myLaneGeometry.getShape().size(); ++ii) {
1557 const double inc = (myLaneGeometry.getShape()[ii].z() - myLaneGeometry.getShape()[ii - 1].z()) / MAX2(POSITION_EPS, myLaneGeometry.getShape()[ii].distanceTo2D(myLaneGeometry.getShape()[ii - 1]));
1558 myShapeColors.push_back(c.getScheme().getColor(inc));
1559 }
1560 col = c.getScheme().getColor(getColorValue(s, 10));
1561 return true;
1562 default:
1563 return false;
1564 }
1565}
1566
1567
1568double
1569GNELane::getColorValue(const GUIVisualizationSettings& s, int activeScheme) const {
1570 const SVCPermissions myPermissions = getParentEdges().front()->getNBEdge()->getPermissions(myIndex);
1571 if (mySpecialColor != nullptr && mySpecialColorValue != std::numeric_limits<double>::max()) {
1572 return mySpecialColorValue;
1573 }
1574 switch (activeScheme) {
1575 case 0:
1576 switch (myPermissions) {
1577 case SVC_PEDESTRIAN:
1578 return 1;
1579 case SVC_BICYCLE:
1580 return 2;
1581 case 0:
1582 // forbidden road or green verge
1583 return getParentEdges().front()->getNBEdge()->getPermissions() == 0 ? 10 : 3;
1584 case SVC_SHIP:
1585 return 4;
1586 case SVC_AUTHORITY:
1587 return 8;
1588 case SVC_AIRCRAFT:
1589 case SVC_DRONE:
1590 return 12;
1591 default:
1592 break;
1593 }
1594 if (getParentEdges().front()->getNBEdge()->isMacroscopicConnector()) {
1595 return 9;
1596 } else if (isRailway(myPermissions)) {
1597 return 5;
1598 } else if ((myPermissions & SVC_PASSENGER) != 0) {
1599 if ((myPermissions & (SVC_RAIL_CLASSES & ~SVC_RAIL_FAST)) != 0 && (myPermissions & SVC_SHIP) == 0) {
1600 return 6;
1601 } else {
1602 return 0;
1603 }
1604 } else {
1605 if ((myPermissions & SVC_RAIL_CLASSES) != 0 && (myPermissions & SVC_SHIP) == 0) {
1606 return 6;
1607 } else {
1608 return 7;
1609 }
1610 }
1611 case 1:
1612 return isAttributeCarrierSelected() || getParentEdges().front()->isAttributeCarrierSelected();
1613 case 2:
1614 return (double)myPermissions;
1615 case 3:
1616 return getParentEdges().front()->getNBEdge()->getLaneSpeed(myIndex);
1617 case 4:
1618 return getParentEdges().front()->getNBEdge()->getNumLanes();
1619 case 5: {
1620 return getParentEdges().front()->getNBEdge()->getLoadedLength() / getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).shape.length();
1621 }
1622 // case 6: by angle (functional)
1623 case 7: {
1624 return getParentEdges().front()->getNBEdge()->getPriority();
1625 }
1626 case 8: {
1627 // color by z of first shape point
1628 return myLaneGeometry.getShape()[0].z();
1629 }
1630 // case 9: by segment height
1631 case 10: {
1632 // color by incline
1633 return (myLaneGeometry.getShape()[-1].z() - myLaneGeometry.getShape()[0].z()) / getParentEdges().front()->getNBEdge()->getLength();
1634 }
1635 // case 11: by segment incline
1636
1637 case 12: {
1638 // by numerical edge param value
1639 if (getParentEdges().front()->getNBEdge()->hasParameter(s.edgeParam)) {
1640 try {
1641 return StringUtils::toDouble(getParentEdges().front()->getNBEdge()->getParameter(s.edgeParam, "0"));
1642 } catch (NumberFormatException&) {
1643 try {
1644 return StringUtils::toBool(getParentEdges().front()->getNBEdge()->getParameter(s.edgeParam, "0"));
1645 } catch (BoolFormatException&) {
1646 return -1;
1647 }
1648 }
1649 } else {
1651 }
1652 }
1653 case 13: {
1654 // by numerical lane param value
1655 if (getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).hasParameter(s.laneParam)) {
1656 try {
1657 return StringUtils::toDouble(getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).getParameter(s.laneParam, "0"));
1658 } catch (NumberFormatException&) {
1659 try {
1660 return StringUtils::toBool(getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).getParameter(s.laneParam, "0"));
1661 } catch (BoolFormatException&) {
1662 return -1;
1663 }
1664 }
1665 } else {
1667 }
1668 }
1669 case 14: {
1670 return getParentEdges().front()->getNBEdge()->getDistance();
1671 }
1672 case 15: {
1673 return fabs(getParentEdges().front()->getNBEdge()->getDistance());
1674 }
1675 }
1676 return 0;
1677}
1678
1679
1680void
1681GNELane::drawOverlappedRoutes(const int numRoutes) const {
1682 // get middle point and angle
1685 // Push route matrix
1687 // translate to front
1688 glTranslated(0, 0, GLO_ROUTE + 1);
1689 // get middle
1690 GLHelper::drawText(toString(numRoutes) + " routes", center, 0, 1.8, RGBColor::BLACK, angle + 90);
1691 // pop route matrix
1693
1694}
1695
1696
1697void
1699 const auto& laneStopOffset = getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).laneStopOffset;
1700 // check conditions
1701 if (laneStopOffset.isDefined() && (laneStopOffset.getPermissions() & SVC_PASSENGER) != 0) {
1702 const Position& end = getLaneShape().back();
1703 const Position& f = getLaneShape()[-2];
1704 const double rot = RAD2DEG(atan2((end.x() - f.x()), (f.y() - end.y())));
1707 glTranslated(end.x(), end.y(), 1);
1708 glRotated(rot, 0, 0, 1);
1709 glTranslated(0, laneStopOffset.getOffset(), 0);
1710 glBegin(GL_QUADS);
1711 glVertex2d(-myDrawingConstants->getDrawingWidth(), 0.0);
1712 glVertex2d(-myDrawingConstants->getDrawingWidth(), 0.2);
1713 glVertex2d(myDrawingConstants->getDrawingWidth(), 0.2);
1714 glVertex2d(myDrawingConstants->getDrawingWidth(), 0.0);
1715 glEnd();
1717 }
1718}
1719
1720
1721bool
1723 return isWaterway(getParentEdges().front()->getNBEdge()->getPermissions(myIndex)) && s.showRails; // reusing the showRails setting
1724}
1725
1726
1727void
1729 // Draw direction indicators if the correspondient option is enabled
1730 if (s.showLaneDirection) {
1731 // improve visibility of superposed rail edges
1733 glColor3d(0.3, 0.3, 0.3);
1734 }
1735 // get width and sideOffset
1736 const double width = MAX2(NUMERICAL_EPS, (myDrawingConstants->getDrawingWidth() * 2 * myDrawingConstants->getExaggeration()));
1737 // push direction indicator matrix
1739 // move to front
1740 glTranslated(0, 0, 0.1);
1741 // iterate over shape
1742 for (int i = 0; i < (int) myLaneGeometry.getShape().size() - 1; ++i) {
1743 // push triangle matrix
1745 // move front
1746 glTranslated(myLaneGeometry.getShape()[i].x(), myLaneGeometry.getShape()[i].y(), 0.1);
1747 // rotate
1748 glRotated(myLaneGeometry.getShapeRotations()[i], 0, 0, 1);
1749 // calculate subwidth
1750 for (double subWidth = 0; subWidth < myLaneGeometry.getShapeLengths()[i]; subWidth += width) {
1751 // calculate length
1752 const double length = MIN2(width * 0.5, myLaneGeometry.getShapeLengths()[i] - subWidth);
1753 // draw triangle
1754 glBegin(GL_TRIANGLES);
1755 glVertex2d(-myDrawingConstants->getOffset(), -subWidth - length);
1756 glVertex2d(-myDrawingConstants->getOffset() - width * 0.25, -subWidth);
1757 glVertex2d(-myDrawingConstants->getOffset() + width * 0.25, -subWidth);
1758 glEnd();
1759 }
1760 // pop triangle matrix
1762 }
1763 // pop direction indicator matrix
1765 }
1766}
1767
1768
1769void
1771 // draw foot width 150mm, assume that distance between rail feet inner sides is reduced on both sides by 39mm with regard to the gauge
1772 // assume crosstie length of 181% gauge (2600mm for standard gauge)
1773 // first save current color (obtained from view configuration)
1774 const auto currentLaneColor = GLHelper::getColor();
1775 // Set current color
1776 GLHelper::setColor(currentLaneColor);
1777 // continue depending of detail
1779 // move
1780 glTranslated(0, 0, 0.1);
1781 // draw external crossbar
1782 const double crossbarWidth = 0.2 * myDrawingConstants->getExaggeration();
1783 // draw geometry
1787 // move
1788 glTranslated(0, 0, 0.01);
1789 // Set color gray
1790 glColor3d(0.8, 0.8, 0.8);
1791 // draw geometry
1795 // move
1796 glTranslated(0, 0, 0.01);
1797 // Set current color
1798 GLHelper::setColor(currentLaneColor);
1799 // Draw crossties
1802 myDrawingConstants->getOffset(), false);
1803 } else if (myShapeColors.size() > 0) {
1804 // draw colored box lines
1807 } else {
1808 // draw geometry with current color
1811 }
1812}
1813
1814
1815void
1817 // check all conditions for drawing textures
1818 if (!s.disableLaneIcons && (myLaneRestrictedTexturePositions.size() > 0)) {
1819 // Declare default width of icon (3)
1820 const double iconWidth = myDrawingConstants->getDrawingWidth() * 0.6;
1821 // Draw list of icons
1822 for (int i = 0; i < (int)myLaneRestrictedTexturePositions.size(); i++) {
1823 // Push draw matrix 2
1825 // Set white color
1826 glColor3d(1, 1, 1);
1827 // Translate matrix 2
1828 glTranslated(myLaneRestrictedTexturePositions.at(i).x(), myLaneRestrictedTexturePositions.at(i).y(), 0.1);
1829 // Rotate matrix 2
1830 glRotated(myLaneRestrictedTextureRotations.at(i), 0, 0, -1);
1831 glRotated(90, 0, 0, 1);
1832 // draw texture box depending of type of restriction
1835 } else if (isRestricted(SVC_BICYCLE)) {
1837 } else if (isRestricted(SVC_BUS)) {
1839 }
1840 // Pop draw matrix 2
1842 }
1843 }
1844}
1845
1846
1847void
1849 // draw a Start/endPoints if lane has a custom shape
1850 if ((myDrawingConstants->getDetail() <= GUIVisualizationSettings::Detail::GeometryPoint) && (getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).customShape.size() > 1)) {
1851 // obtain circle width and resolution
1852 const double circleWidth = GNEEdge::SNAP_RADIUS * MIN2((double)1, s.laneWidthExaggeration) / 2;
1853 // obtain custom shape
1854 const PositionVector& customShape = getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).customShape;
1855 // set color (override with special colors unless the color scheme is based on selection)
1856 if (drawUsingSelectColor() && s.laneColorer.getActive() != 1) {
1858 } else {
1859 GLHelper::setColor(s.junctionColorer.getSchemes()[0].getColor(2));
1860 }
1861 // push start matrix
1863 // move to shape start position
1864 glTranslated(customShape.front().x(), customShape.front().y(), 0.1);
1865 // draw circle
1867 // draw s depending of detail
1869 // move top
1870 glTranslated(0, 0, 0.1);
1871 // draw "S"
1872 GLHelper::drawText("S", Position(), 0.1, circleWidth, RGBColor::WHITE);
1873 }
1874 // pop start matrix
1876 // draw line between junction and start position
1878 // move top
1879 glTranslated(0, 0, 0.1);
1880 // set line width
1881 glLineWidth(4);
1882 // draw line
1883 GLHelper::drawLine(customShape.front(), getParentEdges().front()->getFromJunction()->getPositionInView());
1884 // pop line matrix
1886 // push start matrix
1888 // move to end position
1889 glTranslated(customShape.back().x(), customShape.back().y(), 0.1);
1890 // draw filled circle
1892 // draw "e" depending of detail
1894 // move top
1895 glTranslated(0, 0, 0.1);
1896 // draw "E"
1897 GLHelper::drawText("E", Position(), 0, circleWidth, RGBColor::WHITE);
1898 }
1899 // pop start matrix
1901 // draw line between Junction and end position
1903 // move top
1904 glTranslated(0, 0, 0.1);
1905 // set line width
1906 glLineWidth(4);
1907 // draw line
1908 GLHelper::drawLine(customShape.back(), getParentEdges().front()->getToJunction()->getPositionInView());
1909 // pop line matrix
1911 }
1912}
1913
1914
1915bool
1917 return setLaneColor(s).alpha() != 0;
1918}
1919
1920
1921std::string
1923 return getParentEdges().front()->getID();
1924}
1925
1926
1927long
1928GNELane::onDefault(FXObject* obj, FXSelector sel, void* data) {
1929 myNet->getViewParent()->getTLSEditorFrame()->handleMultiChange(this, obj, sel, data);
1930 return 1;
1931}
1932
1933
1934std::vector<GNEConnection*>
1936 // Declare a vector to save incoming connections
1937 std::vector<GNEConnection*> incomingConnections;
1938 // Obtain incoming edges if junction source was already created
1939 GNEJunction* junctionSource = getParentEdges().front()->getFromJunction();
1940 if (junctionSource) {
1941 // Iterate over incoming GNEEdges of junction
1942 for (const auto& incomingEdge : junctionSource->getGNEIncomingEdges()) {
1943 // Iterate over connection of incoming edges
1944 for (const auto& connection : incomingEdge->getGNEConnections()) {
1945 if (connection->getLaneTo()->getIndex() == getIndex()) {
1946 incomingConnections.push_back(connection);
1947 }
1948 }
1949 }
1950 }
1951 return incomingConnections;
1952}
1953
1954
1955std::vector<GNEConnection*>
1957 // Obtain GNEConnection of parent edge
1958 const std::vector<GNEConnection*>& edgeConnections = getParentEdges().front()->getGNEConnections();
1959 std::vector<GNEConnection*> outcomingConnections;
1960 // Obtain outgoing connections
1961 for (const auto& connection : edgeConnections) {
1962 if (connection->getLaneFrom()->getIndex() == getIndex()) {
1963 outcomingConnections.push_back(connection);
1964 }
1965 }
1966 return outcomingConnections;
1967}
1968
1969
1970void
1972 // update incoming connections of lane
1973 std::vector<GNEConnection*> incomingConnections = getGNEIncomingConnections();
1974 for (const auto& incomingConnection : incomingConnections) {
1975 incomingConnection->updateConnectionID();
1976 }
1977 // update outcoming connections of lane
1978 std::vector<GNEConnection*> outcomingConnections = getGNEOutcomingConnections();
1979 for (const auto& outcomingConnection : outcomingConnections) {
1980 outcomingConnection->updateConnectionID();
1981 }
1982}
1983
1984
1985double
1987 // factor should not be 0
1988 if (getParentEdges().front()->getNBEdge()->getFinalLength() > 0) {
1989 return MAX2(POSITION_EPS, (getLaneShape().length() / getParentEdges().front()->getNBEdge()->getFinalLength()));
1990 } else {
1991 return POSITION_EPS;
1992 };
1993}
1994
1995
1996void
1998 // Create basic commands
1999 std::string edgeDescPossibleMulti = toString(SUMO_TAG_EDGE);
2000 const int edgeSelSize = getParentEdges().front()->isAttributeCarrierSelected() ? myNet->getAttributeCarriers()->getNumberOfSelectedEdges() : 0;
2001 if (edgeSelSize && getParentEdges().front()->isAttributeCarrierSelected() && (edgeSelSize > 1)) {
2002 edgeDescPossibleMulti = toString(edgeSelSize) + " " + toString(SUMO_TAG_EDGE) + "s";
2003 }
2004 // create menu pane for edge operations
2005 FXMenuPane* edgeOperations = new FXMenuPane(ret);
2006 ret->insertMenuPaneChild(edgeOperations);
2007 if (edgeSelSize > 0) {
2008 new FXMenuCascade(ret, TLF("Edge operations (% selected)", toString(edgeSelSize)).c_str(), nullptr, edgeOperations);
2009 } else {
2010 new FXMenuCascade(ret, TL("Edge operations"), nullptr, edgeOperations);
2011 }
2012 // create menu commands for all edge operations
2013 GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Split edge here"), nullptr, &parent, MID_GNE_EDGE_SPLIT);
2014 auto splitBothDirections = GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Split edge in both directions here (no symmetric opposite edge)"), nullptr, &parent, MID_GNE_EDGE_SPLIT_BIDI);
2015 // check if allow split edge in both directions
2016 splitBothDirections->disable();
2017 const auto oppositeEdges = getParentEdges().front()->getOppositeEdges();
2018 if (oppositeEdges.size() == 0) {
2019 splitBothDirections->setText(TL("Split edge in both directions here (no opposite edge)"));
2020 } else {
2021 for (const auto& oppositeEdge : oppositeEdges) {
2022 // get reverse inner geometry
2023 const auto reverseGeometry = oppositeEdge->getNBEdge()->getInnerGeometry().reverse();
2024 if (reverseGeometry == getParentEdges().front()->getNBEdge()->getInnerGeometry()) {
2025 splitBothDirections->enable();
2026 splitBothDirections->setText(TL("Split edge in both directions here"));
2027 }
2028 }
2029 }
2030 GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Set geometry endpoint here (shift-click)"), nullptr, &parent, MID_GNE_EDGE_EDIT_ENDPOINT);
2031 // restore geometry points depending of selection status
2032 if (getParentEdges().front()->isAttributeCarrierSelected()) {
2033 if (edgeSelSize == 1) {
2034 GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Restore both geometry endpoints"), nullptr, &parent, MID_GNE_EDGE_RESET_ENDPOINT);
2035 } else {
2036 GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Restore geometry endpoints of all selected edges"), nullptr, &parent, MID_GNE_EDGE_RESET_ENDPOINT);
2037 }
2038 } else {
2039 GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Restore geometry endpoint (shift-click)"), nullptr, &parent, MID_GNE_EDGE_RESET_ENDPOINT);
2040 }
2041 GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Reverse %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_REVERSE);
2042 auto reverse = GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Add reverse direction for %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_ADD_REVERSE);
2043 if (getParentEdges().front()->getReverseEdge() != nullptr) {
2044 reverse->disable();
2045 }
2046 GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Add reverse disconnected direction for %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_ADD_REVERSE_DISCONNECTED);
2047 GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Reset lengths for %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_RESET_LENGTH);
2048 GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Straighten %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_STRAIGHTEN);
2049 GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Smooth %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_SMOOTH);
2050 GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Straighten elevation of %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_STRAIGHTEN_ELEVATION);
2051 GUIDesigns::buildFXMenuCommand(edgeOperations, TLF("Smooth elevation of %", edgeDescPossibleMulti), nullptr, &parent, MID_GNE_EDGE_SMOOTH_ELEVATION);
2052}
2053
2054
2055void
2057 // Get icons
2058 FXIcon* pedestrianIcon = GUIIconSubSys::getIcon(GUIIcon::LANE_PEDESTRIAN);
2059 FXIcon* bikeIcon = GUIIconSubSys::getIcon(GUIIcon::LANE_BIKE);
2060 FXIcon* busIcon = GUIIconSubSys::getIcon(GUIIcon::LANE_BUS);
2061 FXIcon* greenVergeIcon = GUIIconSubSys::getIcon(GUIIcon::LANEGREENVERGE);
2062 // declare number of selected lanes
2063 int numSelectedLanes = 0;
2064 // if lane is selected, calculate number of restricted lanes
2065 bool edgeHasSidewalk = false;
2066 bool edgeHasBikelane = false;
2067 bool edgeHasBuslane = false;
2068 bool differentLaneShapes = false;
2070 const auto selectedLanes = myNet->getAttributeCarriers()->getSelectedLanes();
2071 // update numSelectedLanes
2072 numSelectedLanes = (int)selectedLanes.size();
2073 // iterate over selected lanes
2074 for (const auto& selectedLane : selectedLanes) {
2075 if (selectedLane->getParentEdges().front()->hasRestrictedLane(SVC_PEDESTRIAN)) {
2076 edgeHasSidewalk = true;
2077 }
2078 if (selectedLane->getParentEdges().front()->hasRestrictedLane(SVC_BICYCLE)) {
2079 edgeHasBikelane = true;
2080 }
2081 if (selectedLane->getParentEdges().front()->hasRestrictedLane(SVC_BUS)) {
2082 edgeHasBuslane = true;
2083 }
2084 if (selectedLane->getParentEdges().front()->getNBEdge()->getLaneStruct(selectedLane->getIndex()).customShape.size() != 0) {
2085 differentLaneShapes = true;
2086 }
2087 }
2088 } else {
2089 edgeHasSidewalk = getParentEdges().front()->hasRestrictedLane(SVC_PEDESTRIAN);
2090 edgeHasBikelane = getParentEdges().front()->hasRestrictedLane(SVC_BICYCLE);
2091 edgeHasBuslane = getParentEdges().front()->hasRestrictedLane(SVC_BUS);
2092 differentLaneShapes = getParentEdges().front()->getNBEdge()->getLaneStruct(myIndex).customShape.size() != 0;
2093 }
2094 // create menu pane for lane operations
2095 FXMenuPane* laneOperations = new FXMenuPane(ret);
2096 ret->insertMenuPaneChild(laneOperations);
2097 if (numSelectedLanes > 0) {
2098 new FXMenuCascade(ret, TLF("Lane operations (% selected)", toString(numSelectedLanes)).c_str(), nullptr, laneOperations);
2099 } else {
2100 new FXMenuCascade(ret, TL("Lane operations"), nullptr, laneOperations);
2101 }
2102 GUIDesigns::buildFXMenuCommand(laneOperations, TL("Duplicate lane"), nullptr, &parent, MID_GNE_LANE_DUPLICATE);
2103 GUIDesigns::buildFXMenuCommand(laneOperations, TL("Set custom lane shape"), nullptr, &parent, MID_GNE_LANE_EDIT_SHAPE);
2104 FXMenuCommand* resetCustomShape = GUIDesigns::buildFXMenuCommand(laneOperations, TL("Reset custom shape"), nullptr, &parent, MID_GNE_LANE_RESET_CUSTOMSHAPE);
2105 if (!differentLaneShapes) {
2106 resetCustomShape->disable();
2107 }
2108 FXMenuCommand* resetOppositeLane = GUIDesigns::buildFXMenuCommand(laneOperations, TL("Reset opposite lane"), nullptr, &parent, MID_GNE_LANE_RESET_OPPOSITELANE);
2109 if (getAttribute(GNE_ATTR_OPPOSITE).empty()) {
2110 resetOppositeLane->disable();
2111 }
2112 // Create panel for lane operations and insert it in ret
2113 FXMenuPane* addSpecialLanes = new FXMenuPane(laneOperations);
2114 ret->insertMenuPaneChild(addSpecialLanes);
2115 FXMenuPane* removeSpecialLanes = new FXMenuPane(laneOperations);
2116 ret->insertMenuPaneChild(removeSpecialLanes);
2117 FXMenuPane* transformSlanes = new FXMenuPane(laneOperations);
2118 ret->insertMenuPaneChild(transformSlanes);
2119 // Create menu comands for all add special lanes
2120 FXMenuCommand* addSidewalk = GUIDesigns::buildFXMenuCommand(addSpecialLanes, TL("Sidewalk"), pedestrianIcon, &parent, MID_GNE_LANE_ADD_SIDEWALK);
2121 FXMenuCommand* addBikelane = GUIDesigns::buildFXMenuCommand(addSpecialLanes, TL("Bike lane"), bikeIcon, &parent, MID_GNE_LANE_ADD_BIKE);
2122 FXMenuCommand* addBuslane = GUIDesigns::buildFXMenuCommand(addSpecialLanes, TL("Bus lane"), busIcon, &parent, MID_GNE_LANE_ADD_BUS);
2123 // if parent edge is selected, always add greenverge in front
2124 if (getParentEdges().front()->isAttributeCarrierSelected()) {
2125 GUIDesigns::buildFXMenuCommand(addSpecialLanes, TL("Green verge"), greenVergeIcon, &parent, MID_GNE_LANE_ADD_GREENVERGE_FRONT);
2126 } else {
2127 GUIDesigns::buildFXMenuCommand(addSpecialLanes, TL("Green verge (front)"), greenVergeIcon, &parent, MID_GNE_LANE_ADD_GREENVERGE_FRONT);
2128 GUIDesigns::buildFXMenuCommand(addSpecialLanes, TL("Green verge (back)"), greenVergeIcon, &parent, MID_GNE_LANE_ADD_GREENVERGE_BACK);
2129 }
2130 // Create menu comands for all remove special lanes and disable it
2131 FXMenuCommand* removeSidewalk = GUIDesigns::buildFXMenuCommand(removeSpecialLanes, TL("Sidewalk"), pedestrianIcon, &parent, MID_GNE_LANE_REMOVE_SIDEWALK);
2132 removeSidewalk->disable();
2133 FXMenuCommand* removeBikelane = GUIDesigns::buildFXMenuCommand(removeSpecialLanes, TL("Bike lane"), bikeIcon, &parent, MID_GNE_LANE_REMOVE_BIKE);
2134 removeBikelane->disable();
2135 FXMenuCommand* removeBuslane = GUIDesigns::buildFXMenuCommand(removeSpecialLanes, TL("Bus lane"), busIcon, &parent, MID_GNE_LANE_REMOVE_BUS);
2136 removeBuslane->disable();
2137 FXMenuCommand* removeGreenVerge = GUIDesigns::buildFXMenuCommand(removeSpecialLanes, TL("Green verge"), greenVergeIcon, &parent, MID_GNE_LANE_REMOVE_GREENVERGE);
2138 removeGreenVerge->disable();
2139 // Create menu comands for all transform special lanes and disable it
2140 FXMenuCommand* transformLaneToSidewalk = GUIDesigns::buildFXMenuCommand(transformSlanes, TL("Sidewalk"), pedestrianIcon, &parent, MID_GNE_LANE_TRANSFORM_SIDEWALK);
2141 FXMenuCommand* transformLaneToBikelane = GUIDesigns::buildFXMenuCommand(transformSlanes, TL("Bike lane"), bikeIcon, &parent, MID_GNE_LANE_TRANSFORM_BIKE);
2142 FXMenuCommand* transformLaneToBuslane = GUIDesigns::buildFXMenuCommand(transformSlanes, TL("Bus lane"), busIcon, &parent, MID_GNE_LANE_TRANSFORM_BUS);
2143 FXMenuCommand* transformLaneToGreenVerge = GUIDesigns::buildFXMenuCommand(transformSlanes, TL("Green verge"), greenVergeIcon, &parent, MID_GNE_LANE_TRANSFORM_GREENVERGE);
2144 // add menuCascade for lane operations
2145 new FXMenuCascade(laneOperations, TLF("Add restricted %", toString(SUMO_TAG_LANE)).c_str(), nullptr, addSpecialLanes);
2146 FXMenuCascade* cascadeRemoveSpecialLane = new FXMenuCascade(laneOperations, TLF("Remove restricted %", toString(SUMO_TAG_LANE)).c_str(), nullptr, removeSpecialLanes);
2147 new FXMenuCascade(laneOperations, TLF("Transform to restricted %", toString(SUMO_TAG_LANE)).c_str(), nullptr, transformSlanes);
2148 // Enable and disable options depending of current transform of the lane
2149 if (edgeHasSidewalk) {
2150 transformLaneToSidewalk->disable();
2151 addSidewalk->disable();
2152 removeSidewalk->enable();
2153 }
2154 if (edgeHasBikelane) {
2155 transformLaneToBikelane->disable();
2156 addBikelane->disable();
2157 removeBikelane->enable();
2158 }
2159 if (edgeHasBuslane) {
2160 transformLaneToBuslane->disable();
2161 addBuslane->disable();
2162 removeBuslane->enable();
2163 }
2165 transformLaneToGreenVerge->disable();
2166 removeGreenVerge->enable();
2167 }
2168 // Check if cascade menu must be disabled
2169 if (!edgeHasSidewalk && !edgeHasBikelane && !edgeHasBuslane && !isRestricted(SVC_IGNORING)) {
2170 cascadeRemoveSpecialLane->disable();
2171 }
2172 // for whatever reason, sonar complains in the next line that cascadeRemoveSpecialLane may leak, but fox does the cleanup
2173} // NOSONAR
2174
2175
2176void
2178 // Create basic commands
2179 std::string edgeDescPossibleMulti = toString(SUMO_TAG_EDGE);
2180 const int numSelectedEdges = getParentEdges().front()->isAttributeCarrierSelected() ? myNet->getAttributeCarriers()->getNumberOfSelectedEdges() : 0;
2181 if ((numSelectedEdges > 0) && getParentEdges().front()->isAttributeCarrierSelected() && (numSelectedEdges > 1)) {
2182 edgeDescPossibleMulti = toString(numSelectedEdges) + " " + toString(SUMO_TAG_EDGE) + "s";
2183 }
2184 // create menu pane for edge operations
2185 FXMenuPane* edgeOperations = new FXMenuPane(ret);
2186 ret->insertMenuPaneChild(edgeOperations);
2187 if (numSelectedEdges > 0) {
2188 new FXMenuCascade(ret, TLF("Template operations (% selected)", toString(numSelectedEdges)).c_str(), nullptr, edgeOperations);
2189 } else {
2190 new FXMenuCascade(ret, TL("Template operations"), nullptr, edgeOperations);
2191 }
2192 // create menu commands for all edge operations
2193 GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Use edge as template"), nullptr, &parent, MID_GNE_EDGE_USEASTEMPLATE);
2194 auto applyTemplate = GUIDesigns::buildFXMenuCommand(edgeOperations, TL("Apply template"), nullptr, &parent, MID_GNE_EDGE_APPLYTEMPLATE);
2195 // check if disable apply template
2197 applyTemplate->disable();
2198 }
2199}
2200
2201
2202void
2204 // addreachability menu
2205 FXMenuPane* reachableByClass = new FXMenuPane(ret);
2206 ret->insertMenuPaneChild(reachableByClass);
2207 if (myNet->isNetRecomputed()) {
2208 new FXMenuCascade(ret, TL("Select reachable"), GUIIconSubSys::getIcon(GUIIcon::MODEVEHICLE), reachableByClass);
2209 for (const auto& vClass : SumoVehicleClassStrings.getStrings()) {
2210 GUIDesigns::buildFXMenuCommand(reachableByClass, vClass.c_str(), VClassIcons::getVClassIcon(SumoVehicleClassStrings.get(vClass)), &parent, MID_REACHABILITY);
2211 }
2212 } else {
2213 FXMenuCommand* menuCommand = GUIDesigns::buildFXMenuCommand(ret, TL("Select reachable (compute junctions)"), nullptr, nullptr, 0);
2214 menuCommand->handle(&parent, FXSEL(SEL_COMMAND, FXWindow::ID_DISABLE), nullptr);
2215 }
2216}
2217
2218/****************************************************************************/
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_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
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:886
const GNELane2laneConnection & getLane2laneConnections() const
get Lane2laneConnection struct
Definition GNELane.cpp:678
~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:1569
void drawLaneStopOffset(const GUIVisualizationSettings &s) const
draw laneStopOffset
Definition GNELane.cpp:1698
void drawSelectedLane(const GUIVisualizationSettings &s) const
draw selected lane
Definition GNELane.cpp:1058
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:1124
bool checkDrawSelectContour() const override
check if draw select contour (blue)
Definition GNELane.cpp:426
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:1722
Boundary getCenteringBoundary() const override
Returns the boundary to which the view shall be centered in order to show the object.
Definition GNELane.cpp:624
double getLengthGeometryFactor() const
get length geometry factor
Definition GNELane.cpp:1986
PositionVector getAttributePositionVector(SumoXMLAttr key) const override
Definition GNELane.cpp:753
void drawDirectionIndicators(const GUIVisualizationSettings &s) const
direction indicators for lanes
Definition GNELane.cpp:1728
bool checkDrawOverContour() const override
check if draw over contour (orange)
Definition GNELane.cpp:382
int getIndex() const
returns the index of the lane
Definition GNELane.cpp:636
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:1077
void drawOverlappedRoutes(const int numRoutes) const
draw overlapped routes
Definition GNELane.cpp:1681
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:499
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:1922
void buildLaneOperations(GUISUMOAbstractView &parent, GUIGLObjectPopupMenu *ret)
build lane operations contextual menu
Definition GNELane.cpp:2056
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:1956
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:765
void buildTemplateOperations(GUISUMOAbstractView &parent, GUIGLObjectPopupMenu *ret)
build template oerations contextual menu
Definition GNELane.cpp:2177
double getExaggeration(const GUIVisualizationSettings &s) const override
return exaggeration associated with this GLObject
Definition GNELane.cpp:618
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:1545
void calculateLaneContour(const GUIVisualizationSettings &s, const double layer) const
calculate contour
Definition GNELane.cpp:1417
void drawTLSLinkNo(const GUIVisualizationSettings &s) const
draw TLS link Number
Definition GNELane.cpp:1242
double getLaneParametricLength() const
returns the parameteric length of the lane
Definition GNELane.cpp:655
RGBColor setLaneColor(const GUIVisualizationSettings &s) const
set color according to edit mode and visualisation settings
Definition GNELane.cpp:1435
std::vector< GNEConnection * > getGNEIncomingConnections()
returns a vector with the incoming GNEConnections of this lane
Definition GNELane.cpp:1935
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:672
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:1770
std::string getAttribute(SumoXMLAttr key) const override
Definition GNELane.cpp:684
void setIndex(int index)
Definition GNELane.cpp:642
void setSpecialColor(const RGBColor *Color2, double colorValue=std::numeric_limits< double >::max())
Definition GNELane.cpp:898
void drawGL(const GUIVisualizationSettings &s) const override
Draws the object.
Definition GNELane.cpp:456
const GUIGeometry & getLaneGeometry() const
get lane geometry
Definition GNELane.cpp:228
bool checkDrawMoveContour() const override
check if draw move contour (red)
Definition GNELane.cpp:444
Position getAttributePosition(SumoXMLAttr key) const override
Definition GNELane.cpp:747
double getAttributeDouble(SumoXMLAttr key) const override
Definition GNELane.cpp:741
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList) override
Definition GNELane.cpp:775
void drawArrows(const GUIVisualizationSettings &s) const
draw lane arrows
Definition GNELane.cpp:1279
void updateCenteringBoundary(const bool updateGrid)
update centering boundary (implies change in RTREE)
Definition GNELane.cpp:630
void drawLane(const GUIVisualizationSettings &s, const double layer) const
draw lane
Definition GNELane.cpp:1001
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:1103
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:1928
bool checkDrawDeleteContour() const override
check if draw delete contour (pink/white)
Definition GNELane.cpp:402
double getLaneShapeLength() const
returns the length of the lane's shape
Definition GNELane.cpp:666
void updateGLObject() override
update GLObject (geometry, ID, etc.)
Definition GNELane.cpp:492
void drawStartEndGeometryPoints(const GUIVisualizationSettings &s) const
draw start and end geometry points
Definition GNELane.cpp:1848
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:420
bool setFunctionalColor(int activeScheme, RGBColor &col) const
sets the color according to the current scheme index and some lane function
Definition GNELane.cpp:1531
bool isVisible(const GUIVisualizationSettings &s) const override
check if object is visible (Currently used only in netedit)
Definition GNELane.cpp:1916
void updateConnectionIDs()
update IDs of incoming connections of this lane
Definition GNELane.cpp:1971
void buildRechableOperations(GUISUMOAbstractView &parent, GUIGLObjectPopupMenu *ret)
build rechable operations contextual menu
Definition GNELane.cpp:2203
bool isValid(SumoXMLAttr key, const std::string &value) override
Definition GNELane.cpp:811
bool isAttributeEnabled(SumoXMLAttr key) const override
Definition GNELane.cpp:872
void drawLane2LaneConnections() const
draw lane to lane connections
Definition GNELane.cpp:1369
void buildEdgeOperations(GUISUMOAbstractView &parent, GUIGLObjectPopupMenu *ret)
build edge operations contextual menu
Definition GNELane.cpp:1997
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:1205
double getSpeed() const
returns the current speed of lane
Definition GNELane.cpp:649
void drawTextures(const GUIVisualizationSettings &s) const
draw lane textures
Definition GNELane.cpp:1816
void deleteGLObject() override
delete element
Definition GNELane.cpp:483
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
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
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
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