![]() |
User Manual, Developers Guide and API Documentation |
![]() |
00001 /******************************************************************************* 00002 * This file is part of openWNS (open Wireless Network Simulator) 00003 * _____________________________________________________________________________ 00004 * 00005 * Copyright (C) 2004-2007 00006 * Chair of Communication Networks (ComNets) 00007 * Kopernikusstr. 5, D-52074 Aachen, Germany 00008 * phone: ++49-241-80-27910, 00009 * fax: ++49-241-80-22242 00010 * email: info@openwns.org 00011 * www: http://www.openwns.org 00012 * _____________________________________________________________________________ 00013 * 00014 * openWNS is free software; you can redistribute it and/or modify it under the 00015 * terms of the GNU Lesser General Public License version 2 as published by the 00016 * Free Software Foundation; 00017 * 00018 * openWNS is distributed in the hope that it will be useful, but WITHOUT ANY 00019 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 00020 * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 00021 * details. 00022 * 00023 * You should have received a copy of the GNU Lesser General Public License 00024 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00025 * 00026 ******************************************************************************/ 00027 00028 #ifndef _SC_HPP 00029 #define _SC_HPP 00030 00031 #include <vector> 00032 #include <fstream> 00033 00034 #include <RISE/scenario/sceneryfile/SceneryFile.hpp> 00035 #include <RISE/scenario/scenerymap/SceneryMap.hpp> 00036 #include <RISE/scenario/Scenario.hpp> 00037 00038 namespace rise 00039 { 00040 namespace scenario 00041 { 00042 namespace sceneryfile 00043 { 00045 class SC : 00046 public SceneryFile 00047 { 00048 public: 00049 00050 SC(); 00051 SC(const std::string filename, const scenario::Scenario& scenario); 00052 virtual ~SC() {} 00053 00054 virtual bool hasMorphologyMap() const { return true; } 00055 virtual bool hasPathlossMap() const { return true; } 00056 virtual bool hasShadowingMap() const { return true; } 00057 virtual bool hasObstructionList() const { return false; } 00058 00059 virtual const scenerymap::MorphologyMap2D& getMorphologyMap() const 00060 { 00061 assert(initialized); 00062 return morphologyMap; 00063 } 00064 00065 virtual const scenerymap::PathlossMaps2D& getPathlossMap() const 00066 { 00067 assert(initialized); 00068 return pathlossMaps; 00069 } 00070 00071 virtual const scenerymap::ShadowingMap2D& getShadowingMap() const 00072 { 00073 assert(initialized); 00074 return shadowingMap; 00075 } 00076 00077 private: 00078 bool initialized; 00079 00080 std::ifstream SCfile; 00081 00082 scenerymap::MorphologyMap2D morphologyMap; 00083 scenerymap::PathlossMaps2D pathlossMaps; 00084 scenerymap::ShadowingMap2D shadowingMap; 00085 00086 }; 00087 } 00088 } 00089 } 00090 00091 #endif // _SC_HPP
1.5.5