SUMO - Simulation of Urban MObility
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
NBOwnTLDef.h
Go to the documentation of this file.
1 /****************************************************************************/
9 // A traffic light logics which must be computed (only nodes/edges are given)
10 /****************************************************************************/
11 // SUMO, Simulation of Urban MObility; see http://sumo-sim.org/
12 // Copyright (C) 2001-2014 DLR (http://www.dlr.de/) and contributors
13 /****************************************************************************/
14 //
15 // This file is part of SUMO.
16 // SUMO is free software: you can redistribute it and/or modify
17 // it under the terms of the GNU General Public License as published by
18 // the Free Software Foundation, either version 3 of the License, or
19 // (at your option) any later version.
20 //
21 /****************************************************************************/
22 #ifndef NBOwnTLDef_h
23 #define NBOwnTLDef_h
24 
25 
26 // ===========================================================================
27 // included modules
28 // ===========================================================================
29 #ifdef _MSC_VER
30 #include <windows_config.h>
31 #else
32 #include <config.h>
33 #endif
34 
35 #include <vector>
36 #include <set>
39 #include "NBNode.h"
40 
41 
42 // ===========================================================================
43 // class declarations
44 // ===========================================================================
45 
46 
47 // ===========================================================================
48 // class definitions
49 // ===========================================================================
55 public:
62  NBOwnTLDef(const std::string& id,
63  const std::vector<NBNode*>& junctions,
64  SUMOTime offset,
65  TrafficLightType type);
66 
67 
74  NBOwnTLDef(const std::string& id, NBNode* junction, SUMOTime offset,
75  TrafficLightType type);
76 
77 
83  NBOwnTLDef(const std::string& id, SUMOTime offset, TrafficLightType type);
84 
85 
87  ~NBOwnTLDef();
88 
89 
94 
95 
98 
105  void remapRemoved(NBEdge* removed,
106  const EdgeVector& incoming, const EdgeVector& outgoing);
107 
108 
113  void setTLControllingInformation(const NBEdgeCont& ec) const;
115 
116 
119  void setSinglePhase() {
120  myHaveSinglePhase = true;
121  }
122 
124  static std::string addPedestrianPhases(NBTrafficLightLogic* logic, SUMOTime greenTime,
125  std::string state, const std::vector<NBNode::Crossing>& crossings, const EdgeVector& fromEdges, const EdgeVector& toEdges);
126 
128  static std::string patchStateForCrossings(const std::string& state,
129  const std::vector<NBNode::Crossing>& crossings, const EdgeVector& fromEdges, const EdgeVector& toEdges);
130 
131 protected:
134 
142  unsigned int brakingTimeSeconds);
143 
144 
148  void collectNodes();
149 
150 
155  void collectLinks();
156 
157 
165  void replaceRemoved(NBEdge* removed, int removedLane,
166  NBEdge* by, int byLane);
168 
169 
170 protected:
177 
178 
183  int getToPrio(const NBEdge* const e);
184 
185 
191  SUMOReal computeUnblockedWeightedStreamNumber(const NBEdge* const e1, const NBEdge* const e2);
192 
193 
198  std::pair<NBEdge*, NBEdge*> getBestCombination(const EdgeVector& edges);
199 
200 
208  std::pair<NBEdge*, NBEdge*> getBestPair(EdgeVector& incoming);
209 
210 
215  public:
220  int operator()(const NBEdge* const e1, const NBEdge* const e2) const {
221  if (e1->getJunctionPriority(e1->getToNode()) != e2->getJunctionPriority(e2->getToNode())) {
222  return e1->getJunctionPriority(e1->getToNode()) > e2->getJunctionPriority(e2->getToNode());
223  }
224  return e1->getID() > e2->getID();
225  }
226  };
227 
228 private:
231 
232 
233 };
234 
235 
236 #endif
237 
238 /****************************************************************************/
239