Eclipse SUMO - Simulation of Urban MObility
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GUIBaseVehicle.cpp
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2001-2025 German Aerospace Center (DLR) and others.
4// This program and the accompanying materials are made available under the
5// terms of the Eclipse Public License 2.0 which is available at
6// https://www.eclipse.org/legal/epl-2.0/
7// This Source Code may also be made available under the following Secondary
8// Licenses when the conditions for such availability set forth in the Eclipse
9// Public License 2.0 are satisfied: GNU General Public License, version 2
10// or later which is available at
11// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13/****************************************************************************/
21// A MSVehicle extended by some values for usage within the gui
22/****************************************************************************/
23#include <config.h>
24
25#include <cmath>
26#include <vector>
27#include <string>
28#include <functional>
43#include <mesosim/MEVehicle.h>
44#include <mesosim/MELoop.h>
45#include <microsim/MSVehicle.h>
46#include <microsim/MSLane.h>
50#include <microsim/MSStop.h>
58#include <gui/GUIGlobals.h>
60
61#include "GUIBaseVehicle.h"
62#include "GUIChargingStation.h"
63#include "GUIPerson.h"
64#include "GUIContainer.h"
65#include "GUINet.h"
66#include "GUIEdge.h"
67#include "GUILane.h"
68#include "GUIParkingArea.h"
69
70//#define DRAW_BOUNDING_BOX
71
72// ===========================================================================
73// FOX callback mapping
74// ===========================================================================
75FXDEFMAP(GUIBaseVehicle::GUIBaseVehiclePopupMenu) GUIBaseVehiclePopupMenuMap[] = {
94};
95
96// Object implementation
97FXIMPLEMENT(GUIBaseVehicle::GUIBaseVehiclePopupMenu, GUIGLObjectPopupMenu, GUIBaseVehiclePopupMenuMap, ARRAYNUMBER(GUIBaseVehiclePopupMenuMap))
98
99// ===========================================================================
100// method definitions
101// ===========================================================================
102/* -------------------------------------------------------------------------
103 * GUIBaseVehicle::GUIBaseVehiclePopupMenu - methods
104 * ----------------------------------------------------------------------- */
109
110
112
113
114long
116 assert(myObject->getType() == GLO_VEHICLE);
117 if (!static_cast<GUIBaseVehicle*>(myObject)->hasActiveAddVisualisation(myParent, VO_SHOW_ALL_ROUTES)) {
118 static_cast<GUIBaseVehicle*>(myObject)->addActiveAddVisualisation(myParent, VO_SHOW_ALL_ROUTES);
119 }
120 return 1;
121}
122
123long
125 assert(myObject->getType() == GLO_VEHICLE);
126 static_cast<GUIBaseVehicle*>(myObject)->removeActiveAddVisualisation(myParent, VO_SHOW_ALL_ROUTES);
127 return 1;
128}
129
130
131long
133 assert(myObject->getType() == GLO_VEHICLE);
134 if (!static_cast<GUIBaseVehicle*>(myObject)->hasActiveAddVisualisation(myParent, VO_SHOW_ROUTE)) {
135 static_cast<GUIBaseVehicle*>(myObject)->addActiveAddVisualisation(myParent, VO_SHOW_ROUTE);
136 }
137 return 1;
138}
139
140long
142 assert(myObject->getType() == GLO_VEHICLE);
143 static_cast<GUIBaseVehicle*>(myObject)->removeActiveAddVisualisation(myParent, VO_SHOW_ROUTE);
144 return 1;
145}
146
147
148long
150 assert(myObject->getType() == GLO_VEHICLE);
151 if (!static_cast<GUIBaseVehicle*>(myObject)->hasActiveAddVisualisation(myParent, VO_SHOW_FUTURE_ROUTE)) {
152 static_cast<GUIBaseVehicle*>(myObject)->addActiveAddVisualisation(myParent, VO_SHOW_FUTURE_ROUTE);
153 }
154 return 1;
155}
156
157long
159 assert(myObject->getType() == GLO_VEHICLE);
160 static_cast<GUIBaseVehicle*>(myObject)->removeActiveAddVisualisation(myParent, VO_SHOW_FUTURE_ROUTE);
161 return 1;
162}
163
164
165long
167 assert(myObject->getType() == GLO_VEHICLE);
168 if (!static_cast<GUIBaseVehicle*>(myObject)->hasActiveAddVisualisation(myParent, VO_SHOW_ROUTE_NOLOOP)) {
169 static_cast<GUIBaseVehicle*>(myObject)->addActiveAddVisualisation(myParent, VO_SHOW_ROUTE_NOLOOP);
170 }
171 return 1;
172}
173
174long
176 assert(myObject->getType() == GLO_VEHICLE);
177 static_cast<GUIBaseVehicle*>(myObject)->removeActiveAddVisualisation(myParent, VO_SHOW_ROUTE_NOLOOP);
178 return 1;
179}
180
181
182long
184 assert(myObject->getType() == GLO_VEHICLE);
185 if (!static_cast<GUIBaseVehicle*>(myObject)->hasActiveAddVisualisation(myParent, VO_SHOW_BEST_LANES)) {
186 static_cast<GUIBaseVehicle*>(myObject)->addActiveAddVisualisation(myParent, VO_SHOW_BEST_LANES);
187 }
188 return 1;
189}
190
191long
193 assert(myObject->getType() == GLO_VEHICLE);
194 static_cast<GUIBaseVehicle*>(myObject)->removeActiveAddVisualisation(myParent, VO_SHOW_BEST_LANES);
195 return 1;
196}
197
198
199long
201 assert(myObject->getType() == GLO_VEHICLE);
202 if (myParent->getTrackedID() != static_cast<GUIBaseVehicle*>(myObject)->getGlID()) {
203 myParent->startTrack(static_cast<GUIBaseVehicle*>(myObject)->getGlID());
204 }
205 return 1;
206}
207
208long
210 assert(myObject->getType() == GLO_VEHICLE);
211 myParent->stopTrack();
212 return 1;
213}
214
215
216long
218 assert(myObject->getType() == GLO_VEHICLE);
219 if (!static_cast<GUIBaseVehicle*>(myObject)->hasActiveAddVisualisation(myParent, VO_SHOW_LFLINKITEMS)) {
220 static_cast<GUIBaseVehicle*>(myObject)->addActiveAddVisualisation(myParent, VO_SHOW_LFLINKITEMS);
221 }
222 return 1;
223}
224
225long
227 assert(myObject->getType() == GLO_VEHICLE);
228 static_cast<GUIBaseVehicle*>(myObject)->removeActiveAddVisualisation(myParent, VO_SHOW_LFLINKITEMS);
229 return 1;
230}
231
232long
234 assert(myObject->getType() == GLO_VEHICLE);
235 static_cast<GUIBaseVehicle*>(myObject)->selectBlockingFoes();
236 myParent->update();
237 return 1;
238}
239
240
241long
243 assert(myObject->getType() == GLO_VEHICLE);
244 const MSBaseVehicle& veh = static_cast<GUIBaseVehicle*>(myObject)->getVehicle();
245 for (const MSTransportable* t : veh.getPersons()) {
246 gSelected.select((static_cast<const GUIPerson*>(t))->getGlID());
247 }
248 for (MSTransportable* t : veh.getContainers()) {
249 gSelected.select((static_cast<const GUIContainer*>(t))->getGlID());
250 }
251 myParent->update();
252 return 1;
253}
254
255long
257 GUIBaseVehicle* baseVeh = static_cast<GUIBaseVehicle*>(myObject);
258 MSVehicle* microVeh = dynamic_cast<MSVehicle*>(&baseVeh->myVehicle);
259 if (microVeh != nullptr) {
260 MSLane* lane = microVeh->getMutableLane();
261 if (lane != nullptr) {
262 lane->getVehiclesSecure();
264 }
266 if (lane != nullptr) {
267 lane->releaseVehicles();
268 }
269 } else {
270 MEVehicle* mesoVeh = dynamic_cast<MEVehicle*>(&baseVeh->myVehicle);
272 }
274 myParent->destroyPopup();
275 myParent->update();
276 return 1;
277}
278
279
280long
282 GUIBaseVehicle* baseVeh = static_cast<GUIBaseVehicle*>(myObject);
283 MSVehicle* microVeh = dynamic_cast<MSVehicle*>(&baseVeh->myVehicle);
284 if (microVeh != nullptr) {
285 if (microVeh->isStopped()) {
286 microVeh->resumeFromStopping();
287 } else {
288 std::string errorOut;
289 const double brakeGap = microVeh->getCarFollowModel().brakeGap(microVeh->getSpeed());
290 std::pair<const MSLane*, double> stopPos = microVeh->getLanePosAfterDist(brakeGap);
291 if (stopPos.first != nullptr) {
293 stop.lane = stopPos.first->getID();
294 stop.startPos = stopPos.second;
295 stop.endPos = stopPos.second + POSITION_EPS;
296 stop.duration = TIME2STEPS(3600);
297 microVeh->addTraciStop(stop, errorOut);
298 if (errorOut != "") {
299 WRITE_WARNING(errorOut);
300 }
301 }
302 }
303 } else {
304 WRITE_WARNING(TL("GUI-triggered stop not implemented for meso"));
305 }
306 myParent->update();
307 return 1;
308}
309
310
311/* -------------------------------------------------------------------------
312 * GUIBaseVehicle - methods
313 * ----------------------------------------------------------------------- */
314
316 GUIGlObject(GLO_VEHICLE, vehicle.getID(), GUIIconSubSys::getIcon(GUIIcon::VEHICLE)),
317 myVehicle(vehicle),
318 myPopup(nullptr) {
319 // as it is possible to show all vehicle routes, we have to store them... (bug [ 2519761 ])
321 myVehicle.myMoveReminders.push_back(std::make_pair(myRoutes, 0.));
322 mySeatPositions.push_back(Seat()); // ensure length 1
323 myContainerPositions.push_back(Seat()); // ensure length 1
324}
325
326
328 myLock.lock();
329 for (std::map<GUISUMOAbstractView*, int>::iterator i = myAdditionalVisualizations.begin(); i != myAdditionalVisualizations.end(); ++i) {
330 if (i->first->getTrackedID() == getGlID()) {
331 i->first->stopTrack();
332 }
333 while (i->first->removeAdditionalGLVisualisation(this));
334 }
335 myLock.unlock();
336 delete myRoutes;
337 if (myPopup != nullptr) {
339 }
340}
341
342
345 GUIGLObjectPopupMenu* ret = new GUIBaseVehiclePopupMenu(app, parent, this);
346 buildPopupHeader(ret, app);
350 //
352 GUIDesigns::buildFXMenuCommand(ret, TL("Hide Current Route"), nullptr, ret, MID_HIDE_CURRENTROUTE);
353 } else {
354 GUIDesigns::buildFXMenuCommand(ret, TL("Show Current Route"), nullptr, ret, MID_SHOW_CURRENTROUTE);
355 }
357 GUIDesigns::buildFXMenuCommand(ret, TL("Hide Future Route"), nullptr, ret, MID_HIDE_FUTUREROUTE);
358 } else {
359 GUIDesigns::buildFXMenuCommand(ret, TL("Show Future Route"), nullptr, ret, MID_SHOW_FUTUREROUTE);
360 }
362 GUIDesigns::buildFXMenuCommand(ret, TL("Hide All Routes"), nullptr, ret, MID_HIDE_ALLROUTES);
363 } else {
364 GUIDesigns::buildFXMenuCommand(ret, TL("Show All Routes"), nullptr, ret, MID_SHOW_ALLROUTES);
365 }
367 FXMenuCheck* showLoops = new FXMenuCheck(ret, TL("Draw looped routes"), ret, MID_HIDE_ROUTE_NOLOOPS);
368 showLoops->setCheck(false);
369 } else {
370 FXMenuCheck* showLoops = new FXMenuCheck(ret, TL("Draw looped routes"), ret, MID_SHOW_ROUTE_NOLOOPS);
371 showLoops->setCheck(true);
372 }
374 GUIDesigns::buildFXMenuCommand(ret, TL("Hide Best Lanes"), nullptr, ret, MID_HIDE_BEST_LANES);
375 } else {
376 GUIDesigns::buildFXMenuCommand(ret, TL("Show Best Lanes"), nullptr, ret, MID_SHOW_BEST_LANES);
377 }
379 GUIDesigns::buildFXMenuCommand(ret, TL("Hide Link Items"), nullptr, ret, MID_HIDE_LFLINKITEMS);
380 } else {
381 GUIDesigns::buildFXMenuCommand(ret, TL("Show Link Items"), nullptr, ret, MID_SHOW_LFLINKITEMS);
382 }
383 new FXMenuSeparator(ret);
384 if (parent.getTrackedID() != getGlID()) {
385 GUIDesigns::buildFXMenuCommand(ret, TL("Start Tracking"), nullptr, ret, MID_START_TRACK);
386 } else {
387 GUIDesigns::buildFXMenuCommand(ret, TL("Stop Tracking"), nullptr, ret, MID_STOP_TRACK);
388 }
389 GUIDesigns::buildFXMenuCommand(ret, TL("Select Foes"), nullptr, ret, MID_SHOW_FOES);
390 if (myVehicle.getPersons().size() + myVehicle.getContainers().size() > 0) {
391 GUIDesigns::buildFXMenuCommand(ret, TL("Select transported"), nullptr, ret, MID_SELECT_TRANSPORTED);
392 }
393 GUIDesigns::buildFXMenuCommand(ret, myVehicle.isStopped() ? TL("Abort stop") : TL("Stop"), nullptr, ret, MID_TOGGLE_STOP);
394 GUIDesigns::buildFXMenuCommand(ret, TL("Remove"), nullptr, ret, MID_REMOVE_OBJECT);
395
396 new FXMenuSeparator(ret);
397 //
398 buildShowParamsPopupEntry(ret, false);
400 buildPositionCopyEntry(ret, app);
401 myPopup = ret;
402 return ret;
403}
404
405
406void
410
411
412double
417
418
426
427
428const std::string
432
433
434void
435GUIBaseVehicle::drawOnPos(const GUIVisualizationSettings& s, const Position& pos, const double angle) const {
438 Position p1 = pos;
439 const double degAngle = RAD2DEG(angle + M_PI / 2.);
440 const double length = getVType().getLength();
441 if (s.trueZ) {
442 glTranslated(p1.x(), p1.y(), p1.z() + 1);
443 } else {
444 glTranslated(p1.x(), p1.y(), getType());
445 }
446 glRotated(degAngle, 0, 0, 1);
447 RGBColor col = setColor(s);
448 // scale
449 const double upscale = getExaggeration(s);
450 const bool s2 = s.secondaryShape;
451
452 if (upscale > 1 && s.laneWidthExaggeration > 1 && myVehicle.isOnRoad()) {
453 // optionally shift according to edge exaggeration
454 double offsetFromLeftBorder = myVehicle.getCurrentEdge()->getWidth() - myVehicle.getRightSideOnEdge() - myVehicle.getVehicleType().getWidth() / 2;
455 glTranslated((s.laneWidthExaggeration - 1) * -offsetFromLeftBorder / 2, 0, 0);
456 }
457
458 double upscaleLength = MSTrainHelper::getUpscaleLength(upscale, length, getVType().getWidth(), s.vehicleQuality);
459 glScaled(upscale, upscaleLength, 1);
460 /*
461 MSLaneChangeModel::DK2004 &m2 = static_cast<MSLaneChangeModel::DK2004&>(veh->getLaneChangeModel());
462 if((m2.getState()&LCA_URGENT)!=0) {
463 glColor3d(1, .4, .4);
464 } else if((m2.getState()&LCA_SPEEDGAIN)!=0) {
465 glColor3d(.4, .4, 1);
466 } else {
467 glColor3d(.4, 1, .4);
468 }
469 */
470 // draw the vehicle
471 bool drawCarriages = false;
472 const double geometryFactor = (s.scaleLength ?
473 ((myVehicle.getLane() != nullptr
475 : (myVehicle.getEdge()->getLanes().size() > 0 ? myVehicle.getEdge()->getLanes()[0]->getLengthGeometryFactor(s2) : 1)))
476 : 1);
477 double scaledLength = length * geometryFactor;
478 if (col.alpha() != 0) {
479 switch (s.vehicleQuality) {
480 case 0:
482 break;
483 case 1:
485 break;
486 case 2:
487 drawCarriages = drawAction_drawVehicleAsPolyWithCarriagges(s, scaledLength);
488 // draw flashing blue light for emergency vehicles
489 if (getVType().getGuiShape() == SUMOVehicleShape::EMERGENCY) {
490 glTranslated(0, 0, .1);
492 }
493 break;
494 case 3:
495 drawCarriages = drawAction_drawVehicleAsPolyWithCarriagges(s, scaledLength, true);
496 break;
497 case 4: {
498 // do not scale circle radius by lengthGeometryFactor nor length and reduce the effect of width
499 const double w = 1.8 * sqrt(getVType().getWidth() / 1.8);
501 // display text at circle center
502 scaledLength = 0;
503 break;
504 }
505 default:
506 break;
507 }
508 if (s.drawMinGap) {
509 const double minGap = -getVType().getMinGap();
510 glColor3d(0., 1., 0.);
511 glBegin(GL_LINES);
512 glVertex2d(0., 0);
513 glVertex2d(0., minGap);
514 glVertex2d(-.5, minGap);
515 glVertex2d(.5, minGap);
516 glEnd();
517 }
520 const double brakeGap = -static_cast<MSVehicle&>(myVehicle).getCarFollowModel().brakeGap(myVehicle.getSpeed());
521 glColor3d(1., 0., 0.);
522 glBegin(GL_LINES);
523 glVertex2d(0., 0);
524 glVertex2d(0., brakeGap);
525 glVertex2d(-.5, brakeGap);
526 glVertex2d(.5, brakeGap);
527 glEnd();
528 }
529 if (s.showBTRange) {
531 if (dev != nullptr) {
532 glColor3d(1., 0., 0.);
533 GLHelper::drawOutlineCircle(dev->getRange(), dev->getRange() - .2, 32);
534 }
535 }
536 // draw the blinker and brakelights if wished
537 if (s.showBlinker) {
538 glTranslated(0, 0, .1);
539 switch (getVType().getGuiShape()) {
549 break;
552 drawAction_drawVehicleBlinker(scaledLength);
553 drawAction_drawVehicleBrakeLight(scaledLength, true);
554 break;
555 default:
556 // only SUMOVehicleShape::RAIL_CAR has blinkers and brake lights but they are drawn along with the carriages
557 if (!drawCarriages) {
558 drawAction_drawVehicleBlinker(scaledLength);
560 }
561 break;
562 }
563 }
564 // draw the wish to change the lane
566 /*
567 if(gSelected.isSelected(GLO_VEHICLE, veh->getGlID())) {
568 MSLaneChangeModel::DK2004 &m = static_cast<MSLaneChangeModel::DK2004&>(veh->getLaneChangeModel());
569 glColor3d(.5, .5, 1);
570 glBegin(GL_LINES);
571 glVertex2f(0, 0);
572 glVertex2f(m.getChangeProbability(), .5);
573 glEnd();
574
575 glColor3d(1, 0, 0);
576 glBegin(GL_LINES);
577 glVertex2f(0.1, 0);
578 glVertex2f(0.1, m.myMaxJam1);
579 glEnd();
580
581 glColor3d(0, 1, 0);
582 glBegin(GL_LINES);
583 glVertex2f(-0.1, 0);
584 glVertex2f(-0.1, m.myTDist);
585 glEnd();
586 }
587 */
588 }
589 }
590 glTranslated(0, MIN2(scaledLength / 2, double(5)), -getType()); // drawing name at GLO_MAX fails unless translating z
591 glScaled(1 / upscale, 1 / upscaleLength, 1);
592 glRotated(-degAngle, 0, 0, 1);
593 drawName(Position(0, 0), s.scale, s.vehicleName, s.angle);
594 if (s.vehicleName.show(this) && myVehicle.getParameter().line != "") {
595 glRotated(-s.angle, 0, 0, 1);
596 glTranslated(0, 0.7 * s.vehicleName.scaledSize(s.scale), 0);
597 glRotated(s.angle, 0, 0, 1);
599 }
600 if (s.vehicleValue.show(this)) {
601 glRotated(-s.angle, 0, 0, 1);
602 glTranslated(0, 0.7 * s.vehicleName.scaledSize(s.scale), 0);
603 glRotated(s.angle, 0, 0, 1);
604 const double value = getColorValue(s, s.vehicleColorer.getActive());
605 if (value != s.MISSING_DATA) {
607 }
608 }
609 if (s.vehicleScaleValue.show(this)) {
610 glRotated(-s.angle, 0, 0, 1);
611 glTranslated(0, 0.7 * s.vehicleName.scaledSize(s.scale), 0);
612 glRotated(s.angle, 0, 0, 1);
613 const double value = getScaleValue(s, s.vehicleScaler.getActive());
614 if (value != s.MISSING_DATA) {
616 }
617 }
618 if (s.vehicleText.show(this)) {
619 std::string error;
620 std::string value = myVehicle.getPrefixedParameter(s.vehicleTextParam, error);
621 if (value != "") {
623 glRotated(-s.angle, 0, 0, 1);
624 glTranslated(0, 0.7 * s.vehicleText.scaledSize(s.scale) * (double)lines.size(), 0);
625 glRotated(s.angle, 0, 0, 1);
626 for (std::string& line : lines) {
628 glRotated(-s.angle, 0, 0, 1);
629 glTranslated(0, -0.7 * s.vehicleText.scaledSize(s.scale), 0);
630 glRotated(s.angle, 0, 0, 1);
631 }
632 }
633 }
636 glRotated(-s.angle, 0, 0, 1);
637 glTranslated(0, 0.7 * s.vehicleName.scaledSize(s.scale), 0);
638 glRotated(s.angle, 0, 0, 1);
639 const double value = myVehicle.getNumberParkingReroutes();
641 }
642
643 if (!drawCarriages) {
644 mySeatPositions.clear();
645 myContainerPositions.clear();
646 int requiredSeats = getNumPassengers();
647 int requiredContainerPositions = getNumContainers();
648 const Position back = (p1 + Position(-scaledLength * upscaleLength, 0)).rotateAround2D(angle, p1);
649 double extraOffset = scaledLength * 0.15;
650 computeSeats(p1, back, SUMO_const_waitingPersonWidth, getVType().getPersonCapacity(), upscale, requiredSeats, mySeatPositions, extraOffset);
651 computeSeats(p1, back, SUMO_const_waitingContainerWidth, getVType().getContainerCapacity(), upscale, requiredContainerPositions, myContainerPositions, extraOffset);
652 }
653
657}
658
659
660void
664
665
666void
668 if (!myVehicle.isOnRoad()) {
669 drawGL(s);
670 }
673 glTranslated(0, 0, getType() - .1); // don't draw on top of other cars
676 }
677 bool noLoop = hasActiveAddVisualisation(parent, VO_SHOW_ROUTE_NOLOOP);
679 drawRoute(s, 0, 0.25, false, noLoop);
680 }
682 drawRoute(s, 0, 0.25, true, noLoop);
683 }
685 if (myVehicle.getNumberReroutes() > 0) {
686 const int noReroutePlus1 = myVehicle.getNumberReroutes() + 1;
687 for (int i = noReroutePlus1 - 1; i >= 0; i--) {
688 double darken = double(0.4) / double(noReroutePlus1) * double(i);
689 drawRoute(s, i, darken);
690 }
691 } else {
692 drawRoute(s, 0, 0.25, false, noLoop);
693 }
694 }
697 }
700}
701
702
703void
704GUIBaseVehicle::drawLinkItem(const Position& pos, SUMOTime arrivalTime, SUMOTime leaveTime, double exagerate) {
705 glTranslated(pos.x(), pos.y(), -.1);
707 std::string times = toString(STEPS2TIME(arrivalTime)) + "/" + toString(STEPS2TIME(leaveTime));
708 GLHelper::drawText(times.c_str(), Position(), .1, 1.6 * exagerate, RGBColor::GREEN, 0);
709 glTranslated(-pos.x(), -pos.y(), .1);
710}
711
712
715 RGBColor col;
716 const GUIColorer& c = s.vehicleColorer;
717 if (!setFunctionalColor(c.getActive(), &myVehicle, col)) {
718 col = c.getScheme().getColor(getColorValue(s, c.getActive()));
719 }
721 return col;
722}
723
724
725bool
726GUIBaseVehicle::setFunctionalColor(int activeScheme, const MSBaseVehicle* veh, RGBColor& col) {
727 switch (activeScheme) {
728 case 0: {
729 //test for emergency vehicle
731 col = RGBColor::WHITE;
732 return true;
733 }
734 //test for firebrigade
736 col = RGBColor::RED;
737 return true;
738 }
739 //test for police car
741 col = RGBColor::BLUE;
742 return true;
743 }
745 col = veh->getParameter().color;
746 return true;
747 }
749 col = veh->getVehicleType().getColor();
750 return true;
751 }
752 if (&(veh->getRoute().getColor()) != &RGBColor::DEFAULT_COLOR) {
753 col = veh->getRoute().getColor();
754 return true;
755 }
756 return false;
757 }
758 case 2: {
760 col = veh->getParameter().color;
761 return true;
762 }
763 return false;
764 }
765 case 3: {
767 col = veh->getVehicleType().getColor();
768 return true;
769 }
770 return false;
771 }
772 case 4: {
773 if (&(veh->getRoute().getColor()) != &RGBColor::DEFAULT_COLOR) {
774 col = veh->getRoute().getColor();
775 return true;
776 }
777 return false;
778 }
779 case 5: {
780 Position p = veh->getRoute().getEdges()[0]->getLanes()[0]->getShape()[0];
781 const Boundary& b = ((GUINet*) MSNet::getInstance())->getBoundary();
782 Position center = b.getCenter();
783 double hue = 180. + atan2(center.x() - p.x(), center.y() - p.y()) * 180. / M_PI;
784 double sat = p.distanceTo(center) / center.distanceTo(Position(b.xmin(), b.ymin()));
785 col = RGBColor::fromHSV(hue, sat, 1.);
786 return true;
787 }
788 case 6: {
789 Position p = veh->getRoute().getEdges().back()->getLanes()[0]->getShape()[-1];
790 const Boundary& b = ((GUINet*) MSNet::getInstance())->getBoundary();
791 Position center = b.getCenter();
792 double hue = 180. + atan2(center.x() - p.x(), center.y() - p.y()) * 180. / M_PI;
793 double sat = p.distanceTo(center) / center.distanceTo(Position(b.xmin(), b.ymin()));
794 col = RGBColor::fromHSV(hue, sat, 1.);
795 return true;
796 }
797 case 7: {
798 Position pb = veh->getRoute().getEdges()[0]->getLanes()[0]->getShape()[0];
799 Position pe = veh->getRoute().getEdges().back()->getLanes()[0]->getShape()[-1];
800 const Boundary& b = ((GUINet*) MSNet::getInstance())->getBoundary();
801 double hue = 180. + atan2(pb.x() - pe.x(), pb.y() - pe.y()) * 180. / M_PI;
802 Position minp(b.xmin(), b.ymin());
803 Position maxp(b.xmax(), b.ymax());
804 double sat = pb.distanceTo(pe) / minp.distanceTo(maxp);
805 col = RGBColor::fromHSV(hue, sat, 1.);
806 return true;
807 }
808 case 35: { // color randomly (by pointer hash)
809 std::hash<const MSBaseVehicle*> ptr_hash;
810 const double hue = (double)(ptr_hash(veh) % 360); // [0-360]
811 const double sat = (double)((ptr_hash(veh) / 360) % 67) / 100.0 + 0.33; // [0.33-1]
812 col = RGBColor::fromHSV(hue, sat, 1.);
813 return true;
814 }
815 case 36: { // color by angle
816 double hue = GeomHelper::naviDegree(veh->getAngle());
817 col = RGBColor::fromHSV(hue, 1., 1.);
818 return true;
819 }
820 }
821 return false;
822}
823
824
825double
827 switch (activeScheme) {
828 case 0: // uniform
829 return 0;
830 case 1: // selection
831 return myVehicle.isSelected();
832 case 2: // by speed
833 if (myVehicle.isStopped()) {
834 return myVehicle.isParking() ? -2 : -1;
835 }
836 return myVehicle.getSpeed();
837 case 3:
839 case 4: {
840 MSVehicle* microVeh = dynamic_cast<MSVehicle*>(&myVehicle);
841 return (microVeh != nullptr ? microVeh->getAccumulatedWaitingSeconds() : 0);
842 }
843 case 5: {
844 MSVehicle* microVeh = dynamic_cast<MSVehicle*>(&myVehicle);
845 return (microVeh != nullptr ? microVeh->getLane()->getVehicleMaxSpeed(microVeh) : myVehicle.getEdge()->getVehicleMaxSpeed(&myVehicle));
846 }
847 case 6:
849 case 7: {
850 MSVehicle* microVeh = dynamic_cast<MSVehicle*>(&myVehicle);
851 return (microVeh != nullptr
852 ? (microVeh->getLaneChangeModel().isOpposite() ? -100 : microVeh->getBestLaneOffset())
853 : 0);
854 }
855 case 8:
856 return myVehicle.getAcceleration();
857 case 9: {
858 MSVehicle* microVeh = dynamic_cast<MSVehicle*>(&myVehicle);
859 return (microVeh != nullptr ? microVeh->getTimeGapOnLane() : 0);
860 }
861 case 10:
863 case 11:
865 case 12:
866 return myVehicle.getStopDelay();
867 case 13:
869 case 14: // by numerical param value
870 std::string error;
871 std::string val = myVehicle.getPrefixedParameter(s.vehicleScaleParam, error);
872 try {
873 if (val == "") {
874 return 0;
875 } else {
876 return StringUtils::toDouble(val);
877 }
878 } catch (NumberFormatException&) {
879 try {
880 return StringUtils::toBool(val);
881 } catch (BoolFormatException&) {
882 WRITE_WARNINGF(TL("Vehicle parameter '%' key '%' is not a number for vehicle '%'."),
884 return -1;
885 }
886 }
887 }
888 return 0;
889}
890
891
892// ------------ Additional visualisations
893bool
895 return myAdditionalVisualizations.find(parent) != myAdditionalVisualizations.end() && (myAdditionalVisualizations.find(parent)->second & which) != 0;
896}
897
898
899void
901 if (myAdditionalVisualizations.find(parent) == myAdditionalVisualizations.end()) {
902 myAdditionalVisualizations[parent] = 0;
903 }
904 myAdditionalVisualizations[parent] |= which;
905 if (which != VO_TRACK) {
906 parent->addAdditionalGLVisualisation(this);
907 }
908}
909
910
911void
913 myAdditionalVisualizations[parent] &= ~which;
914 if (myAdditionalVisualizations[parent] == 0) {
915 myAdditionalVisualizations.erase(parent);
916 }
918}
919
920
921void
922GUIBaseVehicle::drawRoute(const GUIVisualizationSettings& s, int routeNo, double darken, bool future, bool noLoop) const {
923 RGBColor vehColor = setColor(s);
924 RGBColor darker = vehColor.changedBrightness((int)(darken * -255));
925 if (darker == RGBColor::BLACK) {
926 darker = vehColor.multiply(1 - darken);
927 }
928 GLHelper::setColor(darker);
929 if (routeNo == 0) {
930 drawRouteHelper(s, myVehicle.getRoutePtr(), future, noLoop, darker);
931 return;
932 }
933 ConstMSRoutePtr route = myRoutes->getRoute(routeNo - 1); // only prior routes are stored
934 if (route != nullptr) {
935 drawRouteHelper(s, route, future, noLoop, darker);
936 }
937}
938
939
940void
941GUIBaseVehicle::drawStopLabels(const GUIVisualizationSettings& s, bool noLoop, const RGBColor& col) const {
942 // (vertical shift for repeated stops at the same position
943 std::map<const MSLane*, int> repeat; // count repeated occurrences of the same position
944 int stopIndex = 0;
945 for (const MSStop& stop : myVehicle.getStops()) {
946 double stopLanePos;
947 if (stop.getSpeed() > 0) {
948 stopLanePos = stop.reached ? stop.pars.endPos : stop.pars.startPos;
949 } else {
950 stopLanePos = stop.reached ? myVehicle.getPositionOnLane() : MAX2(0.0, stop.getEndPos(myVehicle));
951 }
952 if (stop.isOpposite && !stop.reached) {
953 stopLanePos = stop.lane->getLength() - stopLanePos;
954 }
955 Position pos = stop.lane->geometryPositionAtOffset(stopLanePos);
957 GLHelper::drawBoxLines(stop.lane->getShape().getOrthogonal(pos, 10, true, stop.lane->getWidth()), 0.1);
958 std::string label = (stop.getSpeed() > 0
959 ? (stop.reached ? "passing waypoint" : "waypoint ")
960 : (stop.reached ? "stopped" : "stop "));
961 if (!stop.reached) {
962 label += toString(stopIndex);
963 }
964
965 if (stop.isOpposite) {
966 label += " (opposite)";
967 }
968#ifdef _DEBUG
969 label += " (" + toString(stop.edge - myVehicle.getCurrentRouteEdge()) + "e)";
970#endif
972 label += " triggered:";
973 if (stop.triggered) {
974 label += "person";
975 if (stop.numExpectedPerson > 0) {
976 label += "(" + toString(stop.numExpectedPerson) + ")";
977 }
978 }
979 if (stop.containerTriggered) {
980 label += "container";
981 if (stop.numExpectedContainer > 0) {
982 label += "(" + toString(stop.numExpectedContainer) + ")";
983 }
984 }
985 if (stop.joinTriggered) {
986 label += "join";
987 if (stop.pars.join != "") {
988 label += "(" + stop.pars.join + ")";
989 }
990 }
991 }
992 if (stop.pars.ended >= 0 && MSGlobals::gUseStopEnded) {
993 label += " ended:" + time2string(stop.pars.ended);
994 } else if (stop.pars.until >= 0) {
995 label += " until:" + time2string(stop.pars.until);
996 }
997 if (stop.duration >= 0 || stop.pars.duration > 0) {
998 if (STEPS2TIME(stop.duration) > 3600 * 24) {
999 label += " duration:1day+";
1000 } else {
1001 label += " duration:" + time2string(stop.duration);
1002 }
1003 }
1004 if (stop.getSpeed() > 0) {
1005 if (stop.skipOnDemand) {
1006 label += " onDemand (skipped)";
1007 } else {
1008 label += " speed:" + toString(stop.getSpeed());
1009 }
1010 }
1011 if (stop.pars.actType != "") {
1012 label += " actType:" + stop.pars.actType;
1013 }
1014 const double nameSize = s.vehicleName.size / s.scale;
1015 Position pos2 = pos - Position(0, nameSize * repeat[stop.lane]);
1016 if (noLoop && repeat[stop.lane] > 0) {
1017 break;
1018 }
1019 GLHelper::drawTextSettings(s.vehicleText, label, pos2, s.scale, s.angle, 1.0);
1020 repeat[stop.lane]++;
1021 stopIndex++;
1022 }
1023 // indicate arrivalPos if set
1025 const int arrivalEdge = myVehicle.getParameter().arrivalEdge >= 0
1027 : (int)myVehicle.getRoute().getEdges().size() - 1;
1028 const MSLane* arrivalLane = myVehicle.getRoute().getEdges()[arrivalEdge]->getLanes()[MAX2(0, myVehicle.getArrivalLane())];
1030 GLHelper::setColor(col);
1031 GLHelper::drawBoxLines(arrivalLane->getShape().getOrthogonal(pos, 10, true, arrivalLane->getWidth() * 0.5, 90), 0.1);
1032 GLHelper::drawBoxLines(arrivalLane->getShape().getOrthogonal(pos, 10, true, arrivalLane->getWidth() * 0.5, 270), 0.1);
1033 GLHelper::drawTextSettings(s.vehicleText, "arrival", pos, s.scale, s.angle, 1.0);
1034
1035 }
1036}
1037
1038void
1040 if (s.showParkingInfo) {
1042 if (pm != nullptr) {
1043 for (auto item : *pm) {
1044 const GUIParkingArea* pa = dynamic_cast<const GUIParkingArea*>(item.first);
1045 if (item.second.blockedAtTime >= 0) {
1046 std::string seenAgo = time2string(SIMSTEP - item.second.blockedAtTime);
1047 //if (item.second.blockedAtTime >= 0) {
1048 // seenAgo += ", " + time2string(SIMSTEP - item.second.blockedAtTimeLocal);
1049 //}
1050 GLHelper::drawTextSettings(s.vehicleValue, seenAgo, pa->getSignPos(), s.scale, s.angle, 1.0);
1051 }
1052 if (item.second.score != "") {
1053 const double dist = 0.4 * (s.vehicleText.scaledSize(s.scale) + s.vehicleValue.scaledSize(s.scale));
1054 Position shift(0, -dist);
1055 GLHelper::drawTextSettings(s.vehicleText, item.second.score, pa->getSignPos() + shift, s.scale, s.angle, 1.0);
1056 }
1057 }
1058 }
1059 }
1060}
1061
1062void
1064 if (s.showChargingInfo) {
1066 if (pm != nullptr) {
1067 for (auto item : *pm) {
1068 const GUIChargingStation* cs = dynamic_cast<const GUIChargingStation*>(item.first);
1069 if (item.second.blockedAtTime >= 0) {
1070 std::string seenAgo = time2string(SIMSTEP - item.second.blockedAtTime);
1071 GLHelper::drawTextSettings(s.vehicleValue, seenAgo, cs->getSignPos(), s.scale, s.angle, 1.0);
1072 }
1073 if (item.second.score != "") {
1074 const double dist = 0.4 * (s.vehicleText.scaledSize(s.scale) + s.vehicleValue.scaledSize(s.scale));
1075 Position shift(0, -dist);
1076 GLHelper::drawTextSettings(s.vehicleText, item.second.score, cs->getSignPos() + shift, s.scale, s.angle, 1.0);
1077 }
1078 }
1079 }
1080 }
1081}
1082
1084GUIBaseVehicle::getSeatPosition(int personIndex) const {
1086 return mySeatPositions[MIN2(personIndex, (int)mySeatPositions.size() - 1)];
1087}
1088
1090GUIBaseVehicle::getContainerPosition(int containerIndex) const {
1092 return myContainerPositions[MIN2(containerIndex, (int)myContainerPositions.size() - 1)];
1093}
1094
1095
1096void
1098 if (myVehicle.myPersonDevice != nullptr) {
1099 const std::vector<MSTransportable*>& ps = myVehicle.myPersonDevice->getTransportables();
1100 int personIndex = 0;
1101 for (std::vector<MSTransportable*>::const_iterator i = ps.begin(); i != ps.end(); ++i) {
1102 GUIPerson* person = dynamic_cast<GUIPerson*>(*i);
1103 assert(person != 0);
1104 person->setPositionInVehicle(getSeatPosition(personIndex++));
1105 person->drawGL(s);
1106 }
1107 }
1108 if (myVehicle.myContainerDevice != nullptr) {
1109 const std::vector<MSTransportable*>& cs = myVehicle.myContainerDevice->getTransportables();
1110 int containerIndex = 0;
1111 for (std::vector<MSTransportable*>::const_iterator i = cs.begin(); i != cs.end(); ++i) {
1112 GUIContainer* container = dynamic_cast<GUIContainer*>(*i);
1113 assert(container != 0);
1114 container->setPositionInVehicle(getContainerPosition(containerIndex++));
1115 container->drawGL(s);
1116 }
1117 }
1118#ifdef DRAW_BOUNDING_BOX
1120 MSVehicle& microVeh = dynamic_cast<MSVehicle&>(myVehicle);
1123 glTranslated(0, 0, getType());
1124 PositionVector smallBB = microVeh.getBoundingPoly();
1125 glColor3d(0.5, .8, 0);
1126 GLHelper::drawBoxLines(smallBB, 0.3);
1127 glTranslated(0, 0, 0.1);
1128 PositionVector boundingBox = microVeh.getBoundingBox();
1129 boundingBox.push_back(boundingBox.front());
1130 glColor3d(1, 0, 0);
1131 GLHelper::drawBoxLines(boundingBox, 0.15);
1134 }
1135#endif
1136}
1137
1138bool
1142
1143bool
1145 if (getVType().getParameter().carriageLength > 0 &&
1147 drawAction_drawCarriageClass(s, scaledLength, asImage);
1148 return true;
1149 } else {
1151 s, getVType().getImgFile(), this, getVType().getWidth(), scaledLength)) {
1152 return false;
1153 }
1154 GUIBaseVehicleHelper::drawAction_drawVehicleAsPoly(s, getVType().getGuiShape(), getVType().getWidth(), scaledLength, -1, myVehicle.isStopped(), drawReversed(s));
1155 return false;
1156 }
1157}
1158
1159
1160int
1162 if (myVehicle.getPersonDevice() != nullptr) {
1163 return (int)myVehicle.getPersonDevice()->size();
1164 }
1165 return 0;
1166}
1167
1168
1169int
1171 if (myVehicle.getContainerDevice() != nullptr) {
1172 return (int)myVehicle.getContainerDevice()->size();
1173 }
1174 return 0;
1175}
1176
1177std::string
1179 std::vector<std::string> devs;
1180 for (MSDevice* d : myVehicle.getDevices()) {
1181 devs.push_back(d->deviceName());
1182 }
1183 return joinToString(devs, " ");
1184}
1185
1186
1187void
1188GUIBaseVehicle::computeSeats(const Position& front, const Position& back, double seatOffset, int maxSeats, double exaggeration, int& requiredSeats, Seats& into, double extraOffset) const {
1189 if (requiredSeats <= 0) {
1190 return;
1191 }
1192 maxSeats = MAX2(maxSeats, 1); // compute at least one seat
1193 seatOffset *= exaggeration;
1194 const double vehWidth = getVType().getSeatingWidth() * exaggeration;
1195 const double length = front.distanceTo2D(back);
1196 const int rowSize = MAX2(1, (int)floor(vehWidth / seatOffset));
1197 const double frontSeatPos = getVType().getFrontSeatPos() + extraOffset;
1198 const double rowOffset = MAX2(1.0, (length - frontSeatPos - 1)) / ceil((double)maxSeats / rowSize);
1199 const double sideOffset = (rowSize - 1) / 2.0 * seatOffset;
1200 double rowPos = frontSeatPos - rowOffset;
1201 double angle = back.angleTo2D(front);
1202 const int fillDirection = MSGlobals::gLefthand ? -1 : 1;
1203 //if (myVehicle.getID() == "v0") std::cout << SIMTIME << " seatOffset=" << seatOffset << " max=" << maxSeats << " ex=" << exaggeration << " req=" << requiredSeats << " rowSize=" << rowSize << " sideOffset=" << sideOffset << " front=" << front << " back=" << back << " a=" << angle << " da=" << RAD2DEG(angle) << "\n";
1204 for (int i = 0; requiredSeats > 0 && i < maxSeats; i++) {
1205 int seat = (i % rowSize);
1206 if (seat == 0) {
1207 rowPos += rowOffset;
1208 }
1209 into.push_back(Seat(PositionVector::positionAtOffset2D(front, back, rowPos, (sideOffset - seat * seatOffset) * fillDirection), angle));
1210 requiredSeats--;
1211 }
1212}
1213
1214
1215/****************************************************************************/
long long int SUMOTime
Definition GUI.h:36
@ MID_HIDE_ALLROUTES
Hide all vehicle's routes.
Definition GUIAppEnum.h:511
@ MID_HIDE_BEST_LANES
Hide vehicle's best lanes.
Definition GUIAppEnum.h:507
@ MID_HIDE_CURRENTROUTE
Hide vehicle's current route.
Definition GUIAppEnum.h:495
@ MID_SHOW_FOES
select foes of a vehicle
Definition GUIAppEnum.h:517
@ MID_SHOW_BEST_LANES
Show vehicle's best lanes.
Definition GUIAppEnum.h:505
@ MID_START_TRACK
Start to track a vehicle.
Definition GUIAppEnum.h:513
@ MID_SHOW_ALLROUTES
Show all vehicle's routes.
Definition GUIAppEnum.h:509
@ MID_SHOW_LFLINKITEMS
Definition GUIAppEnum.h:518
@ MID_SHOW_ROUTE_NOLOOPS
Show vehicle's future route (without loops)
Definition GUIAppEnum.h:501
@ MID_HIDE_ROUTE_NOLOOPS
Hide vehicle's future route (without loops)
Definition GUIAppEnum.h:503
@ MID_TOGGLE_STOP
toggle stop state of a vehicle or person
Definition GUIAppEnum.h:523
@ MID_HIDE_LFLINKITEMS
Definition GUIAppEnum.h:519
@ MID_REMOVE_OBJECT
remove a vehicle or person
Definition GUIAppEnum.h:525
@ MID_SHOW_FUTUREROUTE
Show vehicle's future route.
Definition GUIAppEnum.h:497
@ MID_HIDE_FUTUREROUTE
Hide vehicle's future route.
Definition GUIAppEnum.h:499
@ MID_SHOW_CURRENTROUTE
Show vehicle's current route.
Definition GUIAppEnum.h:493
@ MID_STOP_TRACK
Stop to track a vehicle.
Definition GUIAppEnum.h:515
@ MID_SELECT_TRANSPORTED
select transportables of a vehicle
Definition GUIAppEnum.h:521
FXDEFMAP(GUIBaseVehicle::GUIBaseVehiclePopupMenu) GUIBaseVehiclePopupMenuMap[]
@ GLO_VEHICLE
a vehicle
GUISelectedStorage gSelected
A global holder of selected objects.
GUIIcon
An enumeration of icons used by the gui applications.
Definition GUIIcons.h:33
#define RAD2DEG(x)
Definition GeomHelper.h:36
#define WRITE_WARNINGF(...)
Definition MsgHandler.h:284
#define WRITE_WARNING(msg)
Definition MsgHandler.h:283
#define TL(string)
Definition MsgHandler.h:301
std::shared_ptr< const MSRoute > ConstMSRoutePtr
Definition Route.h:32
std::string time2string(SUMOTime t, bool humanReadable)
convert SUMOTime to string (independently of global format setting)
Definition SUMOTime.cpp:91
#define STEPS2TIME(x)
Definition SUMOTime.h:55
#define SIMSTEP
Definition SUMOTime.h:61
#define TIME2STEPS(x)
Definition SUMOTime.h:57
const long long int VTYPEPARS_COLOR_SET
@ RAIL_CARGO
render as a cargo train
@ EMERGENCY
render as an emergency vehicle
@ RAIL
render as a rail
@ SCOOTER
render as a scooter
@ RAIL_CAR
render as a (city) rail without locomotive
@ SHIP
render as a arbitrary ship
@ BICYCLE
render as a bicycle
@ MOTORCYCLE
render as a motorcycle
@ ANT
render as a giant ant
@ AIRCRAFT
render as aircraft
@ FIREBRIGADE
render as a fire brigade
@ MOPED
render as a moped
@ POLICE
render as a police car
@ PEDESTRIAN
render as a pedestrian
const long long int VEHPARS_COLOR_SET
const long long int VEHPARS_ARRIVALPOS_SET
T MIN2(T a, T b)
Definition StdDefs.h:76
T MAX2(T a, T b)
Definition StdDefs.h:82
const double SUMO_const_waitingContainerWidth
Definition StdDefs.h:54
const double SUMO_const_waitingPersonWidth
Definition StdDefs.h:52
std::string joinToString(const std::vector< T > &v, const T_BETWEEN &between, std::streamsize accuracy=gPrecision)
Definition ToString.h:283
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition ToString.h:46
A class that stores a 2D geometrical boundary.
Definition Boundary.h:39
Position getCenter() const
Returns the center of the boundary.
Definition Boundary.cpp:109
void add(double x, double y, double z=0)
Makes the boundary include the given coordinate.
Definition Boundary.cpp:75
double ymin() const
Returns minimum y-coordinate.
Definition Boundary.cpp:127
double xmin() const
Returns minimum x-coordinate.
Definition Boundary.cpp:115
Boundary & grow(double by)
extends the boundary by the given amount
Definition Boundary.cpp:340
double ymax() const
Returns maximum y-coordinate.
Definition Boundary.cpp:133
double xmax() const
Returns maximum x-coordinate.
Definition Boundary.cpp:121
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 pushName(unsigned int name)
push Name
Definition GLHelper.cpp:140
static void drawFilledCircle(const double widradiusth, const int steps=8)
Draws a filled circle around (0,0)
Definition GLHelper.cpp:564
static void popMatrix()
pop matrix
Definition GLHelper.cpp:131
static void drawBoxLines(const PositionVector &geom, const std::vector< double > &rots, const std::vector< double > &lengths, double width, int cornerDetail=0, double offset=0)
Draws thick lines.
Definition GLHelper.cpp:348
static void popName()
pop Name
Definition GLHelper.cpp:149
static void pushMatrix()
push matrix
Definition GLHelper.cpp:118
static void drawText(const std::string &text, const Position &pos, const double layer, const double size, const RGBColor &col=RGBColor::BLACK, const double angle=0, const int align=0, double width=-1)
Definition GLHelper.cpp:748
static void drawTextSettings(const GUIVisualizationTextSettings &settings, const std::string &text, const Position &pos, const double scale, const double angle=0, const double layer=2048, const int align=0)
Definition GLHelper.cpp:779
long onCmdHideFutureRoute(FXObject *, FXSelector, void *)
Called if the current route of the vehicle shall be hidden.
long onCmdStartTrack(FXObject *, FXSelector, void *)
Called if the vehicle shall be tracked.
long onCmdHideBestLanes(FXObject *, FXSelector, void *)
Called if the vehicle's best lanes shall be hidden.
long onCmdHideCurrentRoute(FXObject *, FXSelector, void *)
Called if the current route of the vehicle shall be hidden.
long onCmdShowBestLanes(FXObject *, FXSelector, void *)
Called if the vehicle's best lanes shall be shown.
long onCmdShowRouteNoLoops(FXObject *, FXSelector, void *)
Called if the current route of the vehicle shall be shown.
long onCmdShowLFLinkItems(FXObject *, FXSelector, void *)
Called if all routes of the vehicle shall be shown.
long onCmdShowFoes(FXObject *, FXSelector, void *)
Called to show (select) a vehicles foes.
long onCmdHideRouteNoLoops(FXObject *, FXSelector, void *)
Called if the current route of the vehicle shall be hidden.
long onCmdShowFutureRoute(FXObject *, FXSelector, void *)
Called if the current route of the vehicle shall be shown.
long onCmdShowAllRoutes(FXObject *, FXSelector, void *)
Called if all routes of the vehicle shall be shown.
long onCmdToggleStop(FXObject *, FXSelector, void *)
Called when toggling stop state.
long onCmdStopTrack(FXObject *, FXSelector, void *)
Called if the current shall not be tracked any longer.
long onCmdSelectTransported(FXObject *, FXSelector, void *)
Called to select all riding persons and containers.
long onCmdRemoveObject(FXObject *, FXSelector, void *)
Called when removing the vehicle.
long onCmdHideAllRoutes(FXObject *, FXSelector, void *)
Called if all routes of the vehicle shall be hidden.
long onCmdHideLFLinkItems(FXObject *, FXSelector, void *)
Called if all routes of the vehicle shall be hidden.
long onCmdShowCurrentRoute(FXObject *, FXSelector, void *)
Called if the current route of the vehicle shall be shown.
static bool drawAction_drawVehicleAsImage(const GUIVisualizationSettings &s, const std::string &file, const GUIGlObject *o, const double width, double length)
try to draw vehicle as raster image and return true if successful
static void drawAction_drawVehicleAsCircle(const double width, double detail)
draw vehicle as a circle
static void drawAction_drawVehicleAsTrianglePlus(const double width, const double length, bool amReversed=false)
draw vehicle as a triangle
static void drawAction_drawVehicleAsPoly(const GUIVisualizationSettings &s, const SUMOVehicleShape shape, const double width, const double length, int carriageIndex=-1, bool isStopped=false, bool amReversed=false)
draw vehicle as a polygon
static void drawAction_drawVehicleAsBoxPlus(const double width, const double length, bool amReversed=false)
draw vehicle as a Box
A MSVehicle extended by some values for usage within the gui.
const Seat & getContainerPosition(int containerIndex) const
static bool setFunctionalColor(int activeScheme, const MSBaseVehicle *veh, RGBColor &col)
sets the color according to the current scheme index and some vehicle function
const std::string getOptionalName() const
Returns the value for generic parameter 'name' or ''.
virtual void drawAction_drawLinkItems(const GUIVisualizationSettings &) const
const Seat & getSeatPosition(int personIndex) const
returns the seat position for the person with the given index
RGBColor setColor(const GUIVisualizationSettings &s) const
sets the color according to the current settings
int getNumContainers() const
return the number of passengers
void drawOnPos(const GUIVisualizationSettings &s, const Position &pos, const double angle) const
Draws the object on the specified position with the specified angle.
GUIGLObjectPopupMenu * myPopup
current popup (to clean up in destructor). GUIBaseVehicle is not responsible for removal
void drawParkingInfo(const GUIVisualizationSettings &s) const
GUIBaseVehicle(MSBaseVehicle &vehicle)
MSDevice_Vehroutes * myRoutes
virtual void drawAction_drawPersonsAndContainers(const GUIVisualizationSettings &s) const
virtual void drawAction_drawCarriageClass(const GUIVisualizationSettings &s, double scaledLength, bool asImage) const =0
draws the given guiShape with distinct carriages/modules
bool hasActiveAddVisualisation(GUISUMOAbstractView *const parent, int which) const
Returns whether the named feature is enabled in the given view.
virtual void drawRouteHelper(const GUIVisualizationSettings &s, ConstMSRoutePtr r, bool future, bool noLoop, const RGBColor &col) const =0
Draws the route.
void removeActiveAddVisualisation(GUISUMOAbstractView *const parent, int which)
Adds the named visualisation feature to the given view.
void drawRoute(const GUIVisualizationSettings &s, int routeNo, double darken, bool future=false, bool noLoop=false) const
Chooses the route to draw and draws it, darkening it as given.
virtual Position getVisualPosition(bool s2, const double offset=0) const =0
Return current position taking into account secondary shape.
std::vector< Seat > Seats
MSBaseVehicle & myVehicle
The vehicle to which all calls should be delegated.
virtual void drawAction_drawVehicleBlinker(double) const
void removedPopupMenu()
notify object about popup menu removal
void addActiveAddVisualisation(GUISUMOAbstractView *const parent, int which)
Adds the named visualisation feature to the given view.
static void drawLinkItem(const Position &pos, SUMOTime arrivalTime, SUMOTime leaveTime, double exagerate)
double getScaleValue(const GUIVisualizationSettings &s, int activeScheme) const
gets the size multiplier value according to the current scheme index
virtual void drawBestLanes() const
Draws the vehicle's best lanes.
GUIGLObjectPopupMenu * getPopUpMenu(GUIMainWindow &app, GUISUMOAbstractView &parent)
Returns an own popup-menu.
void drawChargingInfo(const GUIVisualizationSettings &s) const
virtual Boundary getCenteringBoundary() const
Returns the boundary to which the view shall be centered in order to show the object.
@ VO_SHOW_LFLINKITEMS
LFLinkItems.
@ VO_SHOW_ALL_ROUTES
show all vehicle's routes
@ VO_TRACK
track the vehicle (only needed for cleaning up)
@ VO_SHOW_ROUTE_NOLOOP
show vehicle's routes without loops
@ VO_SHOW_FUTURE_ROUTE
show vehicle's current continued from the current position
@ VO_SHOW_ROUTE
show vehicle's current route
@ VO_SHOW_BEST_LANES
show vehicle's best lanes
virtual void drawGLAdditional(GUISUMOAbstractView *const parent, const GUIVisualizationSettings &s) const
Draws additionally triggered visualisations.
bool drawReversed(const GUIVisualizationSettings &s) const
whether to reverse trains in their reversed state
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
FXMutex myLock
The mutex used to avoid concurrent updates of the vehicle buffer.
virtual void drawAction_drawVehicleBrakeLight(double length, bool onlyOne=false) const
void computeSeats(const Position &front, const Position &back, double seatOffset, int maxSeats, double exaggeration, int &requiredSeats, Seats &into, double extraOffset=0) const
add seats to mySeatPositions and update requiredSeats
virtual double getColorValue(const GUIVisualizationSettings &s, int activeScheme) const =0
gets the color value according to the current scheme index
int getNumPassengers() const
return the number of passengers
bool drawAction_drawVehicleAsPolyWithCarriagges(const GUIVisualizationSettings &s, double scaledLength, bool asImage=false) const
draw vehicle body and return whether carriages are being drawn
~GUIBaseVehicle()
destructor
double getExaggeration(const GUIVisualizationSettings &s) const
return exaggeration associated with this GLObject
virtual void drawAction_drawVehicleBlueLight() const
std::map< GUISUMOAbstractView *, int > myAdditionalVisualizations
Enabled visualisations, per view.
virtual void selectBlockingFoes() const =0
adds the blocking foes to the current selection
void drawStopLabels(const GUIVisualizationSettings &s, bool noLoop, const RGBColor &col) const
Seats mySeatPositions
positions of seats in the vehicle (updated at every drawing step)
const MSBaseVehicle & getVehicle()
std::string getDeviceDescription()
lists equipped device (types) for the current vehicle
virtual double getVisualAngle(bool s2) const =0
Returns the vehicle's direction in radians taking into account secondary shape.
const MSVehicleType & getVType() const
A shortcut to myVehicle.myType.
A lane area vehicles can halt at (gui-version)
const Position & getSignPos() const
void setPositionInVehicle(const GUIBaseVehicle::Seat &pos)
void drawGL(const GUIVisualizationSettings &s) const override
Draws the object.
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.
GUISUMOAbstractView * getParentView()
return the real owner of this popup
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 buildShowTypeParamsPopupEntry(GUIGLObjectPopupMenu *ret, bool addSeparator=true)
Builds an entry which allows to open the type parameter window.
void buildShowParamsPopupEntry(GUIGLObjectPopupMenu *ret, bool addSeparator=true)
Builds an entry which allows to open the parameter window.
void buildCenterPopupEntry(GUIGLObjectPopupMenu *ret, bool addSeparator=true)
Builds an entry which allows to center to the object.
void buildNameCopyPopupEntry(GUIGLObjectPopupMenu *ret, bool addSeparator=true)
Builds entries which allow to copy the name / typed name into the clipboard.
void buildPopupHeader(GUIGLObjectPopupMenu *ret, GUIMainWindow &app, bool addSeparator=true)
Builds the header.
GUIGlObjectType getType() const
Returns the type of the object as coded in GUIGlObjectType.
void buildSelectionPopupEntry(GUIGLObjectPopupMenu *ret, bool addSeparator=true)
Builds an entry which allows to (de)select the object.
GUIGlID getGlID() const
Returns the numerical id of the object.
void drawName(const Position &pos, const double scale, const GUIVisualizationTextSettings &settings, const double angle=0, bool forceShow=false) const
draw name of item
static bool gSecondaryShape
whether secondary shapes are currently being drawn
Definition GUIGlobals.h:49
A MSNet extended by some values for usage within the gui.
Definition GUINet.h:82
A lane area vehicles can halt at (gui-version)
const Position & getSignPos() const
void setPositionInVehicle(const GUIBaseVehicle::Seat &pos)
void drawGL(const GUIVisualizationSettings &s) const override
Draws the object.
T getColor(const double value) const
bool removeAdditionalGLVisualisation(GUIGlObject *const which)
Removes an object from the list of objects that show additional things.
void destroyPopup()
destroys the popup
bool addAdditionalGLVisualisation(GUIGlObject *const which)
Adds an object to call its additional visualisation method.
virtual GUIGlID getTrackedID() const
get tracked id
void select(GUIGlID id, bool update=true)
Adds the object with the given id.
Stores the information about how to visualize structures.
GUIVisualizationTextSettings vehicleName
GUIVisualizationSizeSettings vehicleSize
bool showBlinker
Information whether vehicle blinkers shall be drawn.
GUIColorer vehicleColorer
The vehicle colorer.
GUIVisualizationTextSettings vehicleScaleValue
bool trueZ
drawl all objects according to their z data
std::string vehicleScaleParam
key for scaling by vehicle parameter
bool showParkingInfo
Set whether parking related information should be shown.
GUIVisualizationTextSettings vehicleValue
int vehicleQuality
The quality of vehicle drawing.
double laneWidthExaggeration
The lane exaggeration (upscale thickness)
std::string vehicleTextParam
key for rendering vehicle textual parameter
bool scaleLength
Whether vehicle length shall be scaled with length/geometry factor.
GUIScaler vehicleScaler
The size scaling settings for vehicles.
bool showChargingInfo
Set whether the charging search related information should be shown.
double scale
information about a lane's width (temporary, used for a single view)
bool secondaryShape
whether secondary lane shape shall be drawn
bool drawMinGap
Information whether the minimum gap shall be drawn.
GUIVisualizationTextSettings vehicleText
bool showBTRange
Information whether the communication range shall be drawn.
bool drawReversed
Whether to draw reversed vehicles in their reversed state.
bool drawBrakeGap
Information whether the brake gap shall be drawn.
bool drawLaneChangePreference
Information whether the lane change preference shall be drawn.
double angle
The current view rotation angle.
static double naviDegree(const double angle)
void vaporizeCar(MEVehicle *v, MSMoveReminder::Notification reason)
remove the given car and clean up the relevant data structures
Definition MELoop.cpp:266
A vehicle from the mesoscopic point of view.
Definition MEVehicle.h:42
The base class for microscopic and mesoscopic vehicles.
ConstMSRoutePtr getRoutePtr() const
Returns the current route.
virtual bool isSelected() const
whether this vehicle is selected in the GUI
const StoppingPlaceMemory * getParkingMemory() const
const std::vector< MSTransportable * > & getPersons() const
retrieve riding persons
const std::vector< MSVehicleDevice * > & getDevices() const
Returns this vehicle's devices.
virtual double getArrivalPos() const
Returns this vehicle's desired arrivalPos for its current route (may change on reroute)
virtual double getStopDelay() const
Returns the estimated public transport stop (departure) delay in seconds.
MoveReminderCont myMoveReminders
Currently relevant move reminders.
const SUMOVehicleParameter & getParameter() const
Returns the vehicle's parameter (including departure definition)
int getNumberParkingReroutes() const
std::vector< MSVehicleDevice * > myDevices
The devices this vehicle has.
virtual const MSEdge * getCurrentEdge() const
Returns the edge the vehicle is currently at (possibly an internal edge)
bool isReversed() const
Returns whether the logical state of the vehicle is reversed - for drawing.
virtual double getTimeLossSeconds() const
Returns the time loss in seconds.
const MSRouteIterator & getCurrentRouteEdge() const
Returns an iterator pointing to the current edge in this vehicles route.
bool isParking() const
Returns whether the vehicle is parking.
const MSEdge * getEdge() const
Returns the edge the vehicle is currently at.
virtual int getArrivalLane() const
MSDevice_Transportable * myContainerDevice
The containers this vehicle may have.
const std::list< MSStop > & getStops() const
double getWaitingSeconds() const
Returns the number of seconds waited (speed was lesser than 0.1m/s)
const MSDevice_Transportable * getPersonDevice() const
MSDevice_Transportable * myPersonDevice
The passengers this vehicle may have.
const MSStop & getNextStop() const
std::string getPrefixedParameter(const std::string &key, std::string &error) const
retrieve parameters of devices, models and the vehicle itself
virtual double getStopArrivalDelay() const
Returns the estimated public transport stop arrival delay in seconds.
bool isStoppedTriggered() const
Returns whether the vehicle is on a triggered stop.
virtual double getAcceleration() const
Returns the vehicle's acceleration.
virtual double getRightSideOnEdge(const MSLane *lane=0) const
Get the vehicle's lateral position on the edge of the given lane (or its current edge if lane == 0)
const MSRoute & getRoute() const
Returns the current route.
const MSDevice_Transportable * getContainerDevice() const
SUMOTime getDepartDelay() const
Returns the depart delay.
int getNumberReroutes() const
Returns the number of new routes this vehicle got.
virtual bool isOnRoad() const
Returns the information whether the vehicle is on a road (is simulated)
const std::vector< MSTransportable * > & getContainers() const
retrieve riding containers
const StoppingPlaceMemory * getChargingMemory() const
const MSVehicleType & getVehicleType() const
Returns the vehicle's type definition.
bool isStopped() const
Returns whether the vehicle is at a stop.
MSDevice * getDevice(const std::type_info &type) const
Returns a device of the given type if it exists, nullptr otherwise.
double brakeGap(const double speed) const
Returns the distance the vehicle needs to halt including driver's reaction time tau (i....
Definition MSCFModel.h:408
static double getRange()
Returns the configured range.
const std::vector< MSTransportable * > & getTransportables() const
Returns the list of transportables using this vehicle.
int size() const
Return the number of passengers / containers.
ConstMSRoutePtr getRoute(int index) const
Called on route retrieval.
static MSDevice_Vehroutes * buildVehicleDevices(SUMOVehicle &v, std::vector< MSVehicleDevice * > &into, int maxRoutes=std::numeric_limits< int >::max())
Build devices for the given vehicle, if needed.
Abstract in-vehicle / in-person device.
Definition MSDevice.h:62
const std::vector< MSLane * > & getLanes() const
Returns this edge's lanes.
Definition MSEdge.h:168
double getWidth() const
Returns the edges's width (sum over all lanes)
Definition MSEdge.h:656
double getVehicleMaxSpeed(const SUMOTrafficObject *const veh) const
Returns the maximum speed the vehicle may use on this edge.
Definition MSEdge.cpp:1170
static bool gUseMesoSim
Definition MSGlobals.h:106
static MELoop * gMesoNet
mesoscopic simulation infrastructure
Definition MSGlobals.h:112
static bool gLefthand
Whether lefthand-drive is being simulated.
Definition MSGlobals.h:174
static bool gUseStopEnded
whether the simulation should replay previous stop times
Definition MSGlobals.h:133
Representation of a lane in the micro simulation.
Definition MSLane.h:84
virtual MSVehicle * removeVehicle(MSVehicle *remVehicle, MSMoveReminder::Notification notification, bool notify=true)
Definition MSLane.cpp:2806
virtual double getLengthGeometryFactor(bool) const
Definition MSLane.h:290
double getVehicleMaxSpeed(const SUMOTrafficObject *const veh) const
Returns the lane's maximum speed, given a vehicle's speed limit adaptation.
Definition MSLane.h:574
virtual const VehCont & getVehiclesSecure() const
Returns the vehicles container; locks it for microsimulation.
Definition MSLane.h:483
virtual void releaseVehicles() const
Allows to use the container for microsimulation again.
Definition MSLane.h:513
virtual const PositionVector & getShape(bool) const
Definition MSLane.h:294
double getWidth() const
Returns the lane's width.
Definition MSLane.h:635
const Position geometryPositionAtOffset(double offset, double lateralOffset=0) const
Definition MSLane.h:560
@ NOTIFICATION_VAPORIZED_GUI
The vehicle got removed via the GUI.
static MSNet * getInstance()
Returns the pointer to the unique instance of MSNet (singleton).
Definition MSNet.cpp:186
MSVehicleControl & getVehicleControl()
Returns the vehicle control.
Definition MSNet.h:383
bool parkOnRoad() const
whether vehicles park on the road
const ConstMSEdgeVector & getEdges() const
Definition MSRoute.h:125
const RGBColor & getColor() const
Returns the color.
Definition MSRoute.cpp:395
MSParkingArea * parkingarea
(Optional) parkingArea if one is assigned to the stop
Definition MSStop.h:58
double getUpscaleLength() const
void scheduleVehicleRemoval(SUMOVehicle *veh, bool checkDuplicate=false)
Removes a vehicle after it has ended.
Representation of a vehicle in the micro simulation.
Definition MSVehicle.h:77
double getTimeGapOnLane() const
Returns the time gap in seconds to the leader of the vehicle on the same lane.
PositionVector getBoundingPoly(double offset=0) const
get bounding polygon
double getAccumulatedWaitingSeconds() const
Returns the number of seconds waited (speed was lesser than 0.1m/s) within the last millisecs.
Definition MSVehicle.h:714
MSAbstractLaneChangeModel & getLaneChangeModel()
bool addTraciStop(SUMOVehicleParameter::Stop stop, std::string &errorMsg)
PositionVector getBoundingBox(double offset=0) const
get bounding rectangle
void onRemovalFromNet(const MSMoveReminder::Notification reason)
Called when the vehicle is removed from the network.
bool resumeFromStopping()
int getBestLaneOffset() const
const MSLane * getLane() const
Returns the lane the vehicle is on.
Definition MSVehicle.h:581
MSLane * getMutableLane() const
Returns the lane the vehicle is on Non const version indicates that something volatile is going on.
Definition MSVehicle.h:589
std::pair< const MSLane *, double > getLanePosAfterDist(double distance) const
return lane and position along bestlanes at the given distance
double getSpeed() const
Returns the vehicle's current speed.
Definition MSVehicle.h:490
const MSCFModel & getCarFollowModel() const
Returns the vehicle's car following model definition.
Definition MSVehicle.h:969
double getWidth() const
Get the width which vehicles of this class shall have when being drawn.
double getSeatingWidth() const
Get the width of the passenger compartment when being drawn.
double getMinGap() const
Get the free space in front of vehicles of this class.
bool wasSet(long long int what) const
Returns whether the given parameter was set.
double getFrontSeatPos() const
Get offset of first seat from vehicle front.
double getLength() const
Get vehicle's length [m].
SUMOVehicleShape getGuiShape() const
Get this vehicle type's shape.
const RGBColor & getColor() const
Returns this type's color.
const std::string & getID() const
Returns the id.
Definition Named.h:74
virtual const std::string getParameter(const std::string &key, const std::string defaultValue="") const
Returns the value for a given key.
A point in 2D or 3D with translation and scaling methods.
Definition Position.h:37
double distanceTo2D(const Position &p2) const
returns the euclidean distance in the x-y-plane
Definition Position.h:273
double distanceTo(const Position &p2) const
returns the euclidean distance in 3 dimensions
Definition Position.h:263
double x() const
Returns the x-position.
Definition Position.h:52
double 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.
PositionVector getOrthogonal(const Position &p, double extend, bool before, double length=1.0, double deg=90) const
return orthogonal through p (extending this vector if necessary)
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:195
static const RGBColor BLUE
Definition RGBColor.h:190
unsigned char alpha() const
Returns the alpha-amount of the color.
Definition RGBColor.cpp:92
RGBColor multiply(double factor) const
Returns a new color with altered brightness.
Definition RGBColor.cpp:230
static const RGBColor GREEN
Definition RGBColor.h:189
static RGBColor fromHSV(double h, double s, double v)
Converts the given hsv-triplet to rgb, inspired by http://alvyray.com/Papers/CG/hsv2rgb....
Definition RGBColor.cpp:403
static const RGBColor BLACK
Definition RGBColor.h:196
RGBColor changedBrightness(int change, int toChange=3) const
Returns a new color with altered brightness.
Definition RGBColor.cpp:200
static const RGBColor DEFAULT_COLOR
The default color (for vehicle types and vehicles)
Definition RGBColor.h:202
static const RGBColor RED
named colors
Definition RGBColor.h:188
virtual const MSLane * getLane() const =0
Returns the lane the object is currently at.
virtual double getSpeed() const =0
Returns the object's current speed.
virtual double getPositionOnLane() const =0
Get the object's position along the lane.
virtual double getAngle() const =0
Get the vehicle's angle.
Definition of vehicle stop (position and duration)
std::string lane
The lane to stop at.
double startPos
The stopping position start.
double endPos
The stopping position end.
SUMOTime duration
The stopping duration.
bool wasSet(long long int what) const
Returns whether the given parameter was set.
RGBColor color
The vehicle's color, TraCI may change this.
int arrivalEdge
(optional) The final edge within the route of the vehicle
std::string line
The vehicle's line (mainly for public transport)
static const int NEWLINE
identifier for splitting the given string at all newline characters
std::vector< std::string > getVector()
return vector of strings
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
#define M_PI
Definition odrSpiral.cpp:45
double getExaggeration(const GUIVisualizationSettings &s, const GUIGlObject *o, double factor=20) const
return the drawing size including exaggeration and constantSize values
bool constantSizeSelected
whether only selected objects shall be drawn with constant
bool show(const GUIGlObject *o) const
whether to show the text
double scaledSize(double scale, double constFactor=0.1) const
get scale size