00001 /****************************************************************************/ 00007 // A junction with right-of-way - rules 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 MSRightOfWayJunction_h 00020 #define MSRightOfWayJunction_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 "MSLogicJunction.h" 00033 #include <bitset> 00034 #include <vector> 00035 #include <string> 00036 00037 00038 // =========================================================================== 00039 // class declarations 00040 // =========================================================================== 00041 class MSLane; 00042 class MSJunctionLogic; 00043 00044 00045 // =========================================================================== 00046 // class definitions 00047 // =========================================================================== 00056 class MSRightOfWayJunction : public MSLogicJunction { 00057 public: 00066 MSRightOfWayJunction(const std::string &id, const Position2D &position, 00067 const Position2DVector &shape, 00068 std::vector<MSLane*> incoming, 00069 #ifdef HAVE_INTERNAL_LANES 00070 std::vector<MSLane*> internal, 00071 #endif 00072 MSJunctionLogic* logic) throw(); 00073 00075 virtual ~MSRightOfWayJunction(); 00076 00079 bool clearRequests(); 00080 00082 virtual bool setAllowed(); 00083 00084 void postloadInit() throw(ProcessError); 00085 00086 const std::vector<MSLink*> &getFoeLinks(const MSLink *const srcLink) const throw() { 00087 return myLinkFoeLinks.find((MSLink*) srcLink)->second; 00088 } 00089 00090 const std::vector<MSLane*> &getFoeInternalLanes(const MSLink *const srcLink) const throw() { 00091 return myLinkFoeInternalLanes.find((MSLink*) srcLink)->second; 00092 } 00093 00094 00095 protected: 00097 virtual void deadlockKiller(); 00098 00100 MSJunctionLogic* myLogic; 00101 00102 std::map<MSLink*, std::vector<MSLink*> > myLinkFoeLinks; 00103 std::map<MSLink*, std::vector<MSLane*> > myLinkFoeInternalLanes; 00104 00105 00106 private: 00108 MSRightOfWayJunction(const MSRightOfWayJunction&); 00109 00111 MSRightOfWayJunction& operator=(const MSRightOfWayJunction&); 00112 00113 }; 00114 00115 00116 #endif 00117 00118 /****************************************************************************/ 00119
1.5.6