SUMO - Simulation of Urban MObility
GUIPerson.h
Go to the documentation of this file.
1 /****************************************************************************/
10 // A MSVehicle extended by some values for usage within the gui
11 /****************************************************************************/
12 // SUMO, Simulation of Urban MObility; see http://sumo.dlr.de/
13 // Copyright (C) 2001-2017 DLR (http://www.dlr.de/) and contributors
14 /****************************************************************************/
15 //
16 // This file is part of SUMO.
17 // SUMO is free software: you can redistribute it and/or modify
18 // it under the terms of the GNU General Public License as published by
19 // the Free Software Foundation, either version 3 of the License, or
20 // (at your option) any later version.
21 //
22 /****************************************************************************/
23 #ifndef GUIPerson_h
24 #define GUIPerson_h
25 
26 
27 // ===========================================================================
28 // included modules
29 // ===========================================================================
30 #ifdef _MSC_VER
31 #include <windows_config.h>
32 #else
33 #include <config.h>
34 #endif
35 
36 #include <vector>
37 #include <set>
38 #include <string>
40 #include <utils/common/RGBColor.h>
45 
46 
47 // ===========================================================================
48 // class declarations
49 // ===========================================================================
52 class MSDevice_Vehroutes;
53 
54 
55 // ===========================================================================
56 // class definitions
57 // ===========================================================================
61 class GUIPerson : public MSPerson, public GUIGlObject {
62 public:
66 
67 
69  ~GUIPerson();
70 
71 
73 
74 
83 
84 
93 
101 
108 
109 
114  void drawGL(const GUIVisualizationSettings& s) const;
115 
116 
121  virtual void drawGLAdditional(GUISUMOAbstractView* const parent, const GUIVisualizationSettings& s) const;
123 
124  /* @brief set the position of a person while riding in a vehicle
125  * @note This must be called by the vehicle before the call to drawGl */
126  void setPositionInVehicle(const Position& pos) {
127  myPositionInVehicle = pos;
128  }
129 
131 
132 
134  double getEdgePos() const;
135 
137  // @note overrides the base method and returns myPositionInVehicle while in driving stage
138  Position getPosition() const;
139 
141  double getNaviDegree() const;
142 
144  double getWaitingSeconds() const;
145 
147  double getSpeed() const;
148 
150 
151 
159  FXDECLARE(GUIPersonPopupMenu)
160  public:
168  GUISUMOAbstractView& parent, GUIGlObject& o, std::map<GUISUMOAbstractView*, int>& additionalVisualizations);
169 
172 
174  long onCmdShowCurrentRoute(FXObject*, FXSelector, void*);
176  long onCmdHideCurrentRoute(FXObject*, FXSelector, void*);
178  long onCmdShowWalkingareaPath(FXObject*, FXSelector, void*);
180  long onCmdHideWalkingareaPath(FXObject*, FXSelector, void*);
182  long onCmdStartTrack(FXObject*, FXSelector, void*);
184  long onCmdStopTrack(FXObject*, FXSelector, void*);
185 
186 
187  protected:
189  std::map<GUISUMOAbstractView*, int>& myVehiclesAdditionalVisualizations;
191  std::map<GUISUMOAbstractView*, int> dummy;
192 
193  protected:
195  GUIPersonPopupMenu() : myVehiclesAdditionalVisualizations(dummy) { }
196 
197  };
198 
199 
209  };
210 
212  std::map<GUISUMOAbstractView*, int> myAdditionalVisualizations;
213 
214 
217 
223  bool hasActiveAddVisualisation(GUISUMOAbstractView* const parent, int which) const;
224 
225 
231  void addActiveAddVisualisation(GUISUMOAbstractView* const parent, int which);
232 
233 
239  void removeActiveAddVisualisation(GUISUMOAbstractView* const parent, int which);
241 
242 
243 private:
245  mutable MFXMutex myLock;
246 
249 
251  void setColor(const GUIVisualizationSettings& s) const;
252 
254  double getColorValue(int activeScheme) const;
255 
257  bool setFunctionalColor(int activeScheme) const;
258 
262  void drawAction_drawAsPoly(const GUIVisualizationSettings& s) const;
264 
267 };
268 
269 
270 #endif
271 
272 /****************************************************************************/
273 
virtual void drawGLAdditional(GUISUMOAbstractView *const parent, const GUIVisualizationSettings &s) const
Draws additionally triggered visualisations.
Definition: GUIPerson.cpp:315
std::map< GUISUMOAbstractView *, int > myAdditionalVisualizations
Enabled visualisations, per view.
Definition: GUIPerson.h:212
bool hasActiveAddVisualisation(GUISUMOAbstractView *const parent, int which) const
Returns whether the named feature is enabled in the given view.
Definition: GUIPerson.cpp:525
show persons&#39;s current route
Definition: GUIPerson.h:206
long onCmdHideWalkingareaPath(FXObject *, FXSelector, void *)
Called if the walkingarea path of the person shall be hidden.
Definition: GUIPerson.cpp:125
track person
Definition: GUIPerson.h:208
Position getPosition() const
return the Network coordinate of the person
Definition: GUIPerson.cpp:427
Stores the information about how to visualize structures.
void drawAction_drawAsImage(const GUIVisualizationSettings &s) const
Definition: GUIPerson.cpp:503
std::map< GUISUMOAbstractView *, int > dummy
Needed for parameterless instantiation.
Definition: GUIPerson.h:191
GUIPersonPopupMenu()
default constructor needed by FOX
Definition: GUIPerson.h:195
A class that stores a 2D geometrical boundary.
Definition: Boundary.h:48
The car-following model and parameter.
Definition: MSVehicleType.h:74
GUIParameterTableWindow * getParameterWindow(GUIMainWindow &app, GUISUMOAbstractView &parent)
Returns an own parameter window.
Definition: GUIPerson.cpp:207
~GUIPersonPopupMenu()
Destructor.
Definition: GUIPerson.cpp:95
double getEdgePos() const
return the offset from the start of the current edge
Definition: GUIPerson.cpp:420
MFXMutex myLock
The mutex used to avoid concurrent updates of the vehicle buffer.
Definition: GUIPerson.h:245
void drawAction_drawWalkingareaPath(const GUIVisualizationSettings &s) const
Definition: GUIPerson.cpp:297
long onCmdHideCurrentRoute(FXObject *, FXSelector, void *)
Called if the current route of the person shall be hidden.
Definition: GUIPerson.cpp:107
long onCmdStartTrack(FXObject *, FXSelector, void *)
Called if the person shall be tracked.
Definition: GUIPerson.cpp:133
GUIGLObjectPopupMenu * getPopUpMenu(GUIMainWindow &app, GUISUMOAbstractView &parent)
Returns an own popup-menu.
Definition: GUIPerson.cpp:174
std::vector< MSTransportable::Stage * > MSTransportablePlan
the structure holding the plan of a transportable
void drawAction_drawAsPoly(const GUIVisualizationSettings &s) const
Definition: GUIPerson.cpp:477
VisualisationFeatures
Additional visualisation feature ids.
Definition: GUIPerson.h:202
double getWaitingSeconds() const
the time this person spent waiting in seconds
Definition: GUIPerson.cpp:441
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:46
double getNaviDegree() const
return the current angle of the person
Definition: GUIPerson.cpp:434
long onCmdShowWalkingareaPath(FXObject *, FXSelector, void *)
Called if the walkingarea path of the person shall be shown.
Definition: GUIPerson.cpp:116
bool setFunctionalColor(int activeScheme) const
sets the color according to the current scheme index and some vehicle function
Definition: GUIPerson.cpp:355
GUIParameterTableWindow * getTypeParameterWindow(GUIMainWindow &app, GUISUMOAbstractView &parent)
Returns an own type parameter window.
Definition: GUIPerson.cpp:229
void setPositionInVehicle(const Position &pos)
Definition: GUIPerson.h:126
double getSpeed() const
the current speed of the person
Definition: GUIPerson.cpp:448
double getColorValue(int activeScheme) const
gets the color value according to the current scheme index
Definition: GUIPerson.cpp:400
show the current walkingarea path
Definition: GUIPerson.h:204
GUIPerson(const SUMOVehicleParameter *pars, const MSVehicleType *vtype, MSTransportable::MSTransportablePlan *plan)
Constructor.
Definition: GUIPerson.cpp:154
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
Definition: GUIPerson.cpp:261
void removeActiveAddVisualisation(GUISUMOAbstractView *const parent, int which)
Adds the named visualisation feature to the given view.
Definition: GUIPerson.cpp:541
long onCmdStopTrack(FXObject *, FXSelector, void *)
Called if the person shall not be tracked any longer.
Definition: GUIPerson.cpp:142
Structure representing possible vehicle parameter.
std::map< GUISUMOAbstractView *, int > & myVehiclesAdditionalVisualizations
Information which additional visualisations are enabled (per view)
Definition: GUIPerson.h:189
void setColor(const GUIVisualizationSettings &s) const
sets the color according to the currente settings
Definition: GUIPerson.cpp:346
void addActiveAddVisualisation(GUISUMOAbstractView *const parent, int which)
Adds the named visualisation feature to the given view.
Definition: GUIPerson.cpp:531
The popup menu of a globject.
A device which collects info on the vehicle trip (mainly on departure and arrival) ...
~GUIPerson()
destructor
Definition: GUIPerson.cpp:161
Boundary getCenteringBoundary() const
Returns the boundary to which the view shall be centered in order to show the object.
Definition: GUIPerson.cpp:251
long onCmdShowCurrentRoute(FXObject *, FXSelector, void *)
Called if the current route of the person shall be shown.
Definition: GUIPerson.cpp:98
Position myPositionInVehicle
The position of a person while riding a vehicle.
Definition: GUIPerson.h:248
A window containing a gl-object&#39;s parameter.
void drawAction_drawAsTriangle(const GUIVisualizationSettings &s) const
Definition: GUIPerson.cpp:455