SUMO - Simulation of Urban MObility
GNEDetectorE3.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2001-2018 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials
5 // are made available under the terms of the Eclipse Public License v2.0
6 // which accompanies this distribution, and is available at
7 // http://www.eclipse.org/legal/epl-v20.html
8 // SPDX-License-Identifier: EPL-2.0
9 /****************************************************************************/
15 //
16 /****************************************************************************/
17 #ifndef GNEDetectorE3_h
18 #define GNEDetectorE3_h
19 
20 
21 // ===========================================================================
22 // included modules
23 // ===========================================================================
24 
25 #include "GNEAdditional.h"
26 
27 
28 // ===========================================================================
29 // class definitions
30 // ===========================================================================
35 class GNEDetectorE3 : public GNEAdditional {
36 
37 public:
50  GNEDetectorE3(const std::string& id, GNEViewNet* viewNet, Position pos, double freq, const std::string& filename, const std::string& vehicleTypes, const std::string& name, const double timeThreshold, double speedThreshold, bool blockMovement);
51 
54 
57 
60  void moveGeometry(const Position& offset);
61 
65  void commitGeometryMoving(GNEUndoList* undoList);
66 
68  void updateGeometry(bool updateGrid);
69 
73 
78  std::string getParentName() const;
79 
84  void drawGL(const GUIVisualizationSettings& s) const;
86 
89  /* @brief method for getting the Attribute of an XML key
90  * @param[in] key The attribute key
91  * @return string with the value associated to key
92  */
93  std::string getAttribute(SumoXMLAttr key) const;
94 
95  /* @brief method for setting the attribute and letting the object perform additional changes
96  * @param[in] key The attribute key
97  * @param[in] value The new value
98  * @param[in] undoList The undoList on which to register changes
99  */
100  void setAttribute(SumoXMLAttr key, const std::string& value, GNEUndoList* undoList);
101 
102  /* @brief method for checking if the key and their conrrespond attribute are valids
103  * @param[in] key The attribute key
104  * @param[in] value The value asociated to key key
105  * @return true if the value is valid, false in other case
106  */
107  bool isValid(SumoXMLAttr key, const std::string& value);
108 
110  std::string getPopUpID() const;
111 
113  std::string getHierarchyName() const;
115 
116 protected:
119 
121  double myFreq;
122 
124  std::string myFilename;
125 
127  std::string myVehicleTypes;
128 
131 
134 
135 private:
137  bool checkAdditionalChildRestriction() const;
138 
140  void setAttribute(SumoXMLAttr key, const std::string& value);
141 
143  GNEDetectorE3(const GNEDetectorE3&) = delete;
144 
146  GNEDetectorE3& operator=(const GNEDetectorE3&) = delete;
147 };
148 
149 #endif
150 /****************************************************************************/
double mySpeedThreshold
The speed-based threshold that describes how slow a vehicle has to be to be recognized as halting...
std::string getAttribute(SumoXMLAttr key) const
Position myPosition
position of E3 in view
std::string myVehicleTypes
attribute vehicle types
Position getPositionInView() const
Returns position of additional in view.
Stores the information about how to visualize structures.
double myTimeThreshold
The time-based threshold that describes how much time has to pass until a vehicle is recognized as ha...
void drawGL(const GUIVisualizationSettings &s) const
Draws the object.
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
std::string getPopUpID() const
get PopPup ID (Used in AC Hierarchy)
bool checkAdditionalChildRestriction() const
check restriction with the number of childs
void commitGeometryMoving(GNEUndoList *undoList)
commit geometry changes in the attributes of an element after use of moveGeometry(...)
bool isValid(SumoXMLAttr key, const std::string &value)
method for checking if the key and their conrrespond attribute are valids
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:39
GNEDetectorE3(const std::string &id, GNEViewNet *viewNet, Position pos, double freq, const std::string &filename, const std::string &vehicleTypes, const std::string &name, const double timeThreshold, double speedThreshold, bool blockMovement)
GNEDetectorE3 Constructor.
std::string getParentName() const
Returns the name of the parent object (if any)
std::string getHierarchyName() const
get Hierarchy Name (Used in AC Hierarchy)
void updateGeometry(bool updateGrid)
update pre-computed geometry information
double myFreq
frequency of E3 detector
An Element which don't belongs to GNENet but has influency in the simulation.
Definition: GNEAdditional.h:48
~GNEDetectorE3()
GNEDetectorE3 Destructor.
void moveGeometry(const Position &offset)
change the position of the element geometry without saving in undoList
std::string myFilename
fielname of E3 detector
void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)
method for setting the attribute and letting the object perform additional changes ...
GNEDetectorE3 & operator=(const GNEDetectorE3 &)=delete
Invalidated assignment operator.