SUMO - Simulation of Urban MObility
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MSDevice_Routing.h
Go to the documentation of this file.
1 /****************************************************************************/
8 // A device that performs vehicle rerouting based on current edge speeds
9 /****************************************************************************/
10 // SUMO, Simulation of Urban MObility; see http://sumo-sim.org/
11 // Copyright (C) 2001-2013 DLR (http://www.dlr.de/) and contributors
12 /****************************************************************************/
13 //
14 // This file is part of SUMO.
15 // SUMO is free software: you can redistribute it and/or modify
16 // it under the terms of the GNU General Public License as published by
17 // the Free Software Foundation, either version 3 of the License, or
18 // (at your option) any later version.
19 //
20 /****************************************************************************/
21 #ifndef MSDevice_Routing_h
22 #define MSDevice_Routing_h
23 
24 
25 // ===========================================================================
26 // included modules
27 // ===========================================================================
28 #ifdef _MSC_VER
29 #include <windows_config.h>
30 #else
31 #include <config.h>
32 #endif
33 
34 #include <set>
35 #include <vector>
36 #include <map>
37 #include <utils/common/SUMOTime.h>
40 #include <microsim/MSVehicle.h>
41 #include "MSDevice.h"
42 
43 
44 // ===========================================================================
45 // class declarations
46 // ===========================================================================
47 class MSLane;
48 
49 // ===========================================================================
50 // class definitions
51 // ===========================================================================
70 class MSDevice_Routing : public MSDevice {
71 public:
75  static void insertOptions(OptionsCont& oc);
76 
77 
95  static void buildVehicleDevices(SUMOVehicle& v, std::vector<MSDevice*>& into);
96 
97 
99  static void cleanup();
100 
101 
102 public:
105 
106 
107 
110 
131 
132 
133 private:
141  MSDevice_Routing(SUMOVehicle& holder, const std::string& id, SUMOTime period,
142  SUMOTime preInsertionPeriod);
143 
144 
157 
158 
174 
175 
190  static SUMOReal getEffort(const MSEdge* const e, const SUMOVehicle* const v, SUMOReal t);
191 
192 
195 
207  static SUMOTime adaptEdgeEfforts(SUMOTime currentTime);
209 
210 
213 
214 private:
217 
220 
223 
226 
228  static std::map<const MSEdge*, SUMOReal> myEdgeEfforts;
229 
232 
235 
237  static bool myWithTaz;
238 
240  static std::map<std::pair<const MSEdge*, const MSEdge*>, const MSRoute*> myCachedRoutes;
241 
244 
245 
246 private:
249 
252 
253 
254 };
255 
256 
257 #endif
258 
259 /****************************************************************************/
260