2004-05-28 05:24:54 +00:00
|
|
|
// navdb.cxx -- top level navaids management routines
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started May 2004.
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
// Copyright (C) 2004 Curtis L. Olson - http://www.flightgear.org/~curt
|
2004-05-28 05:24:54 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2004-05-28 05:24:54 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
2006-02-18 13:58:09 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2004-05-28 05:24:54 +00:00
|
|
|
|
2004-05-28 16:24:43 +00:00
|
|
|
#include <simgear/compiler.h>
|
|
|
|
|
2008-07-25 18:38:29 +00:00
|
|
|
#include <string>
|
2004-05-28 16:24:43 +00:00
|
|
|
|
2004-05-28 05:24:54 +00:00
|
|
|
#include <simgear/debug/logstream.hxx>
|
2008-08-03 14:34:42 +00:00
|
|
|
#include <simgear/math/sg_geodesy.hxx>
|
2008-08-14 18:13:39 +00:00
|
|
|
#include <simgear/misc/strutils.hxx>
|
2008-12-25 23:11:43 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2008-09-12 08:46:15 +00:00
|
|
|
#include <simgear/structure/exception.hxx>
|
|
|
|
#include <simgear/misc/sgstream.hxx>
|
2004-05-28 05:24:54 +00:00
|
|
|
|
|
|
|
#include "navrecord.hxx"
|
2008-12-25 23:11:43 +00:00
|
|
|
#include "navlist.hxx"
|
2004-05-28 05:24:54 +00:00
|
|
|
#include "navdb.hxx"
|
2008-09-12 08:46:15 +00:00
|
|
|
#include "Main/globals.hxx"
|
2004-05-28 05:24:54 +00:00
|
|
|
|
2008-07-29 08:27:48 +00:00
|
|
|
using std::string;
|
2004-05-28 16:24:43 +00:00
|
|
|
|
2004-05-28 05:24:54 +00:00
|
|
|
|
|
|
|
// load and initialize the navigational databases
|
2008-09-12 08:46:15 +00:00
|
|
|
bool fgNavDBInit( FGNavList *navlist, FGNavList *loclist, FGNavList *gslist,
|
2008-12-25 23:11:43 +00:00
|
|
|
FGNavList *dmelist,
|
2005-10-01 09:56:53 +00:00
|
|
|
FGNavList *tacanlist, FGNavList *carrierlist,
|
|
|
|
FGTACANList *channellist)
|
2004-05-28 05:24:54 +00:00
|
|
|
{
|
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, "Loading Navaid Databases");
|
|
|
|
// SG_LOG(SG_GENERAL, SG_INFO, " VOR/NDB");
|
|
|
|
// SGPath p_nav( globals->get_fg_root() );
|
|
|
|
// p_nav.append( "Navaids/default.nav" );
|
|
|
|
// navlist->init( p_nav );
|
|
|
|
|
|
|
|
// SG_LOG(SG_GENERAL, SG_INFO, " ILS and Marker Beacons");
|
|
|
|
// beacons->init();
|
|
|
|
// SGPath p_ils( globals->get_fg_root() );
|
|
|
|
// p_ils.append( "Navaids/default.ils" );
|
|
|
|
// ilslist->init( p_ils );
|
|
|
|
|
|
|
|
|
|
|
|
SGPath path( globals->get_fg_root() );
|
|
|
|
path.append( "Navaids/nav.dat" );
|
|
|
|
|
|
|
|
sg_gzifstream in( path.str() );
|
|
|
|
if ( !in.is_open() ) {
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << path.str() );
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// skip first two lines
|
|
|
|
in >> skipeol;
|
|
|
|
in >> skipeol;
|
|
|
|
|
2008-09-12 08:46:15 +00:00
|
|
|
while (!in.eof()) {
|
|
|
|
FGNavRecord *r = FGNavRecord::createFromStream(in);
|
|
|
|
if (!r) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (r->type()) {
|
|
|
|
case FGPositioned::NDB:
|
|
|
|
case FGPositioned::VOR:
|
|
|
|
navlist->add(r);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FGPositioned::ILS:
|
|
|
|
case FGPositioned::LOC:
|
|
|
|
loclist->add(r);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FGPositioned::GS:
|
|
|
|
gslist->add(r);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FGPositioned::OM:
|
|
|
|
case FGPositioned::MM:
|
|
|
|
case FGPositioned::IM:
|
2008-12-25 23:11:43 +00:00
|
|
|
// no need to add this to a list, never searched by frequency
|
2008-09-12 08:46:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FGPositioned::DME:
|
|
|
|
{
|
|
|
|
dmelist->add(r);
|
2008-12-25 23:11:43 +00:00
|
|
|
string::size_type loc1= r->name().find( "TACAN", 0 );
|
|
|
|
string::size_type loc2 = r->name().find( "VORTAC", 0 );
|
2008-09-12 08:46:15 +00:00
|
|
|
|
|
|
|
if( loc1 != string::npos || loc2 != string::npos) {
|
|
|
|
tacanlist->add(r);
|
2004-05-28 05:24:54 +00:00
|
|
|
}
|
|
|
|
|
2008-09-12 08:46:15 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
throw sg_range_exception("got unsupported NavRecord type", "fgNavDBInit");
|
|
|
|
}
|
2004-05-28 05:24:54 +00:00
|
|
|
|
2008-09-12 08:46:15 +00:00
|
|
|
in >> skipcomment;
|
|
|
|
} // of stream data loop
|
2004-05-28 05:24:54 +00:00
|
|
|
|
2005-10-01 09:56:53 +00:00
|
|
|
// load the carrier navaids file
|
|
|
|
|
|
|
|
string file, name;
|
|
|
|
path = globals->get_fg_root() ;
|
|
|
|
path.append( "Navaids/carrier_nav.dat" );
|
|
|
|
|
|
|
|
file = path.str();
|
2005-12-06 18:48:56 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO, "opening file: " << path.str() );
|
2005-10-01 09:56:53 +00:00
|
|
|
|
|
|
|
sg_gzifstream incarrier( path.str() );
|
|
|
|
|
|
|
|
if ( !incarrier.is_open() ) {
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << path.str() );
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// skip first two lines
|
|
|
|
//incarrier >> skipeol;
|
|
|
|
//incarrier >> skipeol;
|
|
|
|
|
|
|
|
while ( ! incarrier.eof() ) {
|
2008-09-12 08:46:15 +00:00
|
|
|
FGNavRecord *r = FGNavRecord::createFromStream(incarrier);
|
|
|
|
if (!r) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
carrierlist->add (r);
|
2005-10-01 09:56:53 +00:00
|
|
|
} // end while
|
|
|
|
|
|
|
|
// end loading the carrier navaids file
|
|
|
|
|
|
|
|
// load the channel/freqency file
|
|
|
|
string channel, freq;
|
|
|
|
path="";
|
|
|
|
path = globals->get_fg_root();
|
|
|
|
path.append( "Navaids/TACAN_freq.dat" );
|
|
|
|
|
2005-12-06 18:48:56 +00:00
|
|
|
SG_LOG( SG_GENERAL, SG_INFO, "opening file: " << path.str() );
|
|
|
|
|
2005-10-01 09:56:53 +00:00
|
|
|
sg_gzifstream inchannel( path.str() );
|
|
|
|
|
|
|
|
if ( !inchannel.is_open() ) {
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << path.str() );
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
2005-10-02 17:57:16 +00:00
|
|
|
// skip first line
|
2005-10-01 09:56:53 +00:00
|
|
|
inchannel >> skipeol;
|
|
|
|
while ( ! inchannel.eof() ) {
|
|
|
|
FGTACANRecord *r = new FGTACANRecord;
|
|
|
|
inchannel >> (*r);
|
|
|
|
channellist->add ( r );
|
|
|
|
//cout << "channel = " << r->get_channel() ;
|
|
|
|
//cout << " freq = " << r->get_freq() << endl;
|
|
|
|
|
|
|
|
} // end while
|
|
|
|
|
|
|
|
|
|
|
|
// end ReadChanFile
|
|
|
|
|
2004-05-28 05:24:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|