]> git.mxchange.org Git - flightgear.git/blob - src/Navaids/fixlist.cxx
Handle libCurl linkage when enabled in SimGear
[flightgear.git] / src / Navaids / fixlist.cxx
1 // fixlist.cxx -- fix list management class
2 //
3 // Written by Curtis Olson, started April 2000.
4 //
5 // Copyright (C) 2000  Curtis L. Olson - http://www.flightgear.org/~curt
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23
24 #ifdef HAVE_CONFIG_H
25 #  include <config.h>
26 #endif
27
28 #include <algorithm>
29
30 #include <simgear/debug/logstream.hxx>
31 #include <simgear/misc/sgstream.hxx>
32 #include <simgear/misc/sg_path.hxx>
33 #include <simgear/math/sg_geodesy.hxx>
34 #include <simgear/structure/exception.hxx>
35
36 #include "fixlist.hxx"
37 #include <Navaids/fix.hxx>
38 #include <Navaids/NavDataCache.hxx>
39
40 FGFix::FGFix(PositionedID aGuid, const std::string& aIdent, const SGGeod& aPos) :
41   FGPositioned(aGuid, FIX, aIdent, aPos)
42 {
43 }
44
45
46 namespace flightgear
47 {
48
49 const unsigned int LINES_IN_FIX_DAT = 119724;
50   
51 void loadFixes(const SGPath& path)
52 {
53   sg_gzifstream in( path.str() );
54   if ( !in.is_open() ) {
55       throw sg_io_exception("Cannot open file:", path);
56   }
57   
58   // toss the first two lines of the file
59   in >> skipeol;
60   in >> skipeol;
61   
62   NavDataCache* cache = NavDataCache::instance();
63   unsigned int lineNumber = 2;
64
65   // read in each remaining line of the file
66   while ( ! in.eof() ) {
67     double lat, lon;
68     std::string ident;
69     in >> lat >> lon >> ident;
70     if (lat > 95) break;
71     
72     cache->insertFix(ident, SGGeod::fromDeg(lon, lat));
73     in >> skipcomment;
74
75       ++lineNumber;
76       if ((lineNumber % 100) == 0) {
77           // every 100 lines
78           unsigned int percent = (lineNumber * 100) / LINES_IN_FIX_DAT;
79           cache->setRebuildPhaseProgress(NavDataCache::REBUILD_FIXES, percent);
80       }
81   }
82
83 }
84
85 } // of namespace flightgear;