2000-08-16 01:28:33 +00:00
|
|
|
// runways.hxx -- a simple class to manage airport runway info
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started August 2000.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2000 Curtis L. Olson - curt@flightgear.org
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _RUNWAYS_HXX
|
|
|
|
#define _RUNWAYS_HXX
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
# error This library requires C++
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <simgear/compiler.h>
|
|
|
|
|
|
|
|
#include STL_STRING
|
|
|
|
#include <vector>
|
|
|
|
|
2002-04-04 06:05:51 +00:00
|
|
|
// Forward declarations.
|
|
|
|
class c4_Storage;
|
|
|
|
class c4_View;
|
2000-08-16 01:28:33 +00:00
|
|
|
|
2001-03-23 22:59:18 +00:00
|
|
|
SG_USING_STD(string);
|
|
|
|
SG_USING_STD(vector);
|
2000-08-16 01:28:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
class FGRunway {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
string id;
|
|
|
|
string rwy_no;
|
|
|
|
|
|
|
|
double lon;
|
|
|
|
double lat;
|
|
|
|
double heading;
|
|
|
|
double length;
|
|
|
|
double width;
|
|
|
|
|
|
|
|
string surface_flags;
|
|
|
|
string end1_flags;
|
|
|
|
string end2_flags;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2002-04-04 06:05:51 +00:00
|
|
|
FGRunway() {}
|
|
|
|
~FGRunway() {}
|
2000-08-16 01:28:33 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class FGRunways {
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
c4_Storage *storage;
|
|
|
|
c4_View *vRunway;
|
|
|
|
int next_index;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
FGRunways( const string& file );
|
|
|
|
|
|
|
|
// Destructor
|
|
|
|
~FGRunways();
|
|
|
|
|
2001-05-15 00:00:08 +00:00
|
|
|
// search for the specified apt id.
|
2000-08-16 01:28:33 +00:00
|
|
|
// Returns true if successful, otherwise returns false.
|
|
|
|
// On success, runway data is returned thru "runway" pointer.
|
|
|
|
// "runway" is not changed if "apt" is not found.
|
2001-05-15 00:00:08 +00:00
|
|
|
bool search( const string& aptid, FGRunway* runway );
|
|
|
|
bool search( const string& aptid, const string& rwyno, FGRunway* runway );
|
2001-11-07 17:55:28 +00:00
|
|
|
|
|
|
|
// DCL - search for runway closest to desired heading in degrees
|
|
|
|
bool search( const string& aptid, const int hdg, FGRunway* runway );
|
|
|
|
|
|
|
|
// Return the runway number of the runway closest to a given heading
|
2002-02-15 22:00:49 +00:00
|
|
|
string search( const string& aptid, const int tgt_hdg );
|
2001-11-07 17:55:28 +00:00
|
|
|
|
2001-05-15 00:00:08 +00:00
|
|
|
FGRunway search( const string& aptid );
|
2000-08-16 01:28:33 +00:00
|
|
|
bool next( FGRunway* runway );
|
|
|
|
FGRunway next();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class FGRunwaysUtil {
|
|
|
|
public:
|
|
|
|
typedef vector< FGRunway > container;
|
|
|
|
typedef container::iterator iterator;
|
|
|
|
typedef container::const_iterator const_iterator;
|
|
|
|
|
|
|
|
private:
|
|
|
|
container runways;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
FGRunwaysUtil();
|
|
|
|
|
|
|
|
// Destructor
|
|
|
|
~FGRunwaysUtil();
|
|
|
|
|
|
|
|
// load the data
|
|
|
|
int load( const string& file );
|
|
|
|
|
|
|
|
// save the data in metakit format
|
|
|
|
bool dump_mk4( const string& file );
|
|
|
|
|
|
|
|
// search for the specified id.
|
|
|
|
// Returns true if successful, otherwise returns false.
|
|
|
|
// On success, runway data is returned thru "runway" pointer.
|
|
|
|
// "runway" is not changed if "id" is not found.
|
|
|
|
// bool search( const string& id, FGRunway* runway ) const;
|
|
|
|
// FGRunway search( const string& id ) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _RUNWAYS_HXX
|