00001 /****************************************************************************/ 00007 // with one ore more logics. 00008 /****************************************************************************/ 00009 // SUMO, Simulation of Urban MObility; see http://sumo.sourceforge.net/ 00010 // Copyright 2001-2010 DLR (http://www.dlr.de/) and contributors 00011 /****************************************************************************/ 00012 // 00013 // This program is free software; you can redistribute it and/or modify 00014 // it under the terms of the GNU General Public License as published by 00015 // the Free Software Foundation; either version 2 of the License, or 00016 // (at your option) any later version. 00017 // 00018 /****************************************************************************/ 00019 #ifndef MSLogicJunction_h 00020 #define MSLogicJunction_h 00021 00022 00023 // =========================================================================== 00024 // included modules 00025 // =========================================================================== 00026 #ifdef _MSC_VER 00027 #include <windows_config.h> 00028 #else 00029 #include <config.h> 00030 #endif 00031 00032 #include "MSJunction.h" 00033 #include <utils/common/SUMOTime.h> 00034 #include <bitset> 00035 #include <vector> 00036 00037 00038 // =========================================================================== 00039 // class declarations 00040 // =========================================================================== 00041 class MSLane; 00042 00043 00044 // =========================================================================== 00045 // class definitions 00046 // =========================================================================== 00053 class MSLogicJunction : public MSJunction { 00054 public: 00055 00056 00058 virtual ~MSLogicJunction(); 00059 00063 typedef std::bitset<64> Request; 00064 00067 typedef std::bitset<64> Respond; 00068 00070 typedef std::bitset<64> LinkFoes; 00071 00075 typedef std::bitset<64> InnerState; 00076 00078 virtual void postloadInit() throw(ProcessError); 00079 00080 protected: 00088 MSLogicJunction(const std::string &id, const Position2D &position, 00089 const Position2DVector &shape, 00090 std::vector<MSLane*> incoming 00091 #ifdef HAVE_INTERNAL_LANES 00092 , std::vector<MSLane*> internal 00093 #endif 00094 ) throw(); 00095 00096 protected: 00098 std::vector<MSLane*> myIncomingLanes; 00099 00100 #ifdef HAVE_INTERNAL_LANES 00102 std::vector<MSLane*> myInternalLanes; 00103 #endif 00104 00105 Request myRequest; 00106 00107 00109 InnerState myInnerState; 00110 00112 Respond myRespond; 00113 00114 private: 00116 MSLogicJunction(const MSLogicJunction&); 00117 00119 MSLogicJunction& operator=(const MSLogicJunction&); 00120 00121 }; 00122 00123 00124 #endif 00125 00126 /****************************************************************************/ 00127
1.5.6