1
0
Fork 0
flightgear/src/Navaids/fixlist.cxx

80 lines
2.1 KiB
C++
Raw Normal View History

2000-04-21 18:30:59 +00:00
// fixlist.cxx -- fix list management class
//
// Written by Curtis Olson, started April 2000.
//
// Copyright (C) 2000 Curtis L. Olson - http://www.flightgear.org/~curt
2000-04-21 18:30:59 +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.
2000-04-21 18:30:59 +00:00
//
// $Id$
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <algorithm>
2000-04-21 18:30:59 +00:00
#include <simgear/debug/logstream.hxx>
#include <simgear/misc/sgstream.hxx>
#include <simgear/misc/sg_path.hxx>
2000-09-27 20:16:22 +00:00
#include <simgear/math/sg_geodesy.hxx>
2000-04-21 18:30:59 +00:00
#include "fixlist.hxx"
#include "Navaids/fix.hxx"
2008-08-23 13:09:24 +00:00
#include "Airports/simple.hxx"
FGFix::FGFix(const std::string& aIdent, const SGGeod& aPos) :
FGPositioned(FIX, aIdent, aPos)
{
}
2000-04-21 18:30:59 +00:00
// Constructor
FGFixList::FGFixList( void ) {
}
// Destructor
FGFixList::~FGFixList( void ) {
}
// load the navaids and build the map
bool FGFixList::init(const SGPath& path ) {
sg_gzifstream in( path.str() );
2000-04-21 18:30:59 +00:00
if ( !in.is_open() ) {
2001-03-24 06:03:11 +00:00
SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << path.str() );
2000-04-21 18:30:59 +00:00
exit(-1);
}
// toss the first two lines of the file
in >> skipeol;
2000-04-21 18:30:59 +00:00
in >> skipeol;
// read in each remaining line of the file
while ( ! in.eof() ) {
double lat, lon;
string ident;
in >> lat >> lon >> ident;
if (lat > 95) break;
// fix gets added to the FGPositioned spatial indices, so we don't need
// to hold onto it here.
new FGFix(ident, SGGeod::fromDeg(lon, lat));
in >> skipcomment;
2000-04-21 18:30:59 +00:00
}
return true;
}