From: Dave Luff Date: Tue, 28 Dec 2010 18:08:41 +0000 (+0000) Subject: Remove conditional compilation of ATCDCL X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d6fceb3fbc1304bbcd1b9df90fb559e291b0272b;p=flightgear.git Remove conditional compilation of ATCDCL This patch removes the conditional compilation of ATCDCL, compiling both the old and new ATC systems. The old system only provides ATIS, AWOS and some dialog lookups, and hence should not conflict with the new system. --- diff --git a/configure.ac b/configure.ac index 07715d1a0..5f0dae1a8 100644 --- a/configure.ac +++ b/configure.ac @@ -209,16 +209,6 @@ else fi AM_CONDITIONAL(ENABLE_SP_FDM, test "x$enable_sp_fdms" != "xno") -# Specify whether we want to compile ATCDCL. -# default to with_atcdcl=yes -AC_ARG_ENABLE(atcdcl, [ --enable-atcdcl Compile and link the deprecated atc/ai module], [], [enable_atcdcl="$enableval"] ) -if test "x$enable_atcdcl" = "xyes"; then - AC_DEFINE([ENABLE_ATCDCL], 1, [Define to include old ATC/AI module]) -else - AC_DEFINE([ENABLE_ATCDCL], 0, [Define to include old ATC/AI module]) -fi -AM_CONDITIONAL(ENABLE_ATCDCL, test "x$enable_atcdcl" = "xyes") - dnl EXPERIMENTAL generic event driven input device # defaults to no AC_ARG_WITH(eventinput, [ --with-eventinput Include event driven input (EXPERIMENTAL) [default=no]], [], [with_eventinput=no]) @@ -945,10 +935,3 @@ if test "x$enable_sp_fdms" != "xno"; then else echo "Include special purpose flight models: no" fi - -if test "x$enable_atcdcl" = "xyes"; then - echo "Build deprecated ATC/AI module: yes" -else - echo "Build deprecated ATC/AI module: no" -fi - diff --git a/src/ATC/CMakeLists.txt b/src/ATC/CMakeLists.txt index 43cb8d3b1..3564a8999 100644 --- a/src/ATC/CMakeLists.txt +++ b/src/ATC/CMakeLists.txt @@ -1,9 +1,8 @@ include(FlightGearComponent) set(SOURCES - atcutils.cxx atis.cxx trafficcontrol.cxx ) -flightgear_component(ATC "${SOURCES}") \ No newline at end of file +flightgear_component(ATC "${SOURCES}") diff --git a/src/ATC/Makefile.am b/src/ATC/Makefile.am index 8748cef1e..3ddc8ae24 100644 --- a/src/ATC/Makefile.am +++ b/src/ATC/Makefile.am @@ -1,7 +1,6 @@ noinst_LIBRARIES = libATC.a libATC_a_SOURCES = \ - atcutils.cxx atcutils.hxx \ atis.cxx atis.hxx \ trafficcontrol.cxx trafficcontrol.hxx diff --git a/src/ATC/atcutils.cxx b/src/ATC/atcutils.cxx deleted file mode 100644 index 94e4ec63b..000000000 --- a/src/ATC/atcutils.cxx +++ /dev/null @@ -1,373 +0,0 @@ -// commlist.cxx -- comm frequency lookup class -// -// Written by David Luff and Alexander Kappes, started Jan 2003. -// Based on navlist.cxx by Curtis Olson, started April 2000. -// -// Copyright (C) 2000 Curtis L. Olson - http://www.flightgear.org/~curt -// -// 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - -#ifdef HAVE_CONFIG_H -# include -#endif - - - -#include -#include -#include -#include -#include -#include -#include - -#include "atcutils.hxx" - -#if !ENABLE_ATCDCL - - -FGCommList *current_commlist; - - -// Constructor -FGCommList::FGCommList( void ) { - sg_srandom_time(); -} - - -// Destructor -FGCommList::~FGCommList( void ) { -} - - -// load the navaids and build the map -bool FGCommList::init( const SGPath& path ) { -/* - SGPath temp = path; - commlist_freq.erase(commlist_freq.begin(), commlist_freq.end()); - commlist_bck.erase(commlist_bck.begin(), commlist_bck.end()); - temp.append( "ATC/default.atis" ); - LoadComms(temp); - temp = path; - temp.append( "ATC/default.tower" ); - LoadComms(temp); - temp = path; - temp.append( "ATC/default.ground" ); - LoadComms(temp); - temp = path; - temp.append( "ATC/default.approach" ); - LoadComms(temp);*/ - return true; -} - - -bool FGCommList::LoadComms(const SGPath& path) { -/* - sg_gzifstream fin( path.str() ); - if ( !fin.is_open() ) { - SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << path.str() ); - exit(-1); - } - - // read in each line of the file - fin >> skipcomment; - - while ( !fin.eof() ) { - ATCData a; - fin >> a; - if(a.type == INVALID) { - SG_LOG(SG_GENERAL, SG_DEBUG, "WARNING - INVALID type found in " << path.str() << '\n'); - } else { - // Push all stations onto frequency map - commlist_freq[a.freq].push_back(a); - - // Push non-atis stations onto bucket map as well - // In fact, push all stations onto bucket map for now so FGATCMgr::GetFrequency() works. - //if(a.type != ATIS and/or AWOS?) { - // get bucket number - SGBucket bucket(a.geod); - int bucknum = bucket.gen_index(); - commlist_bck[bucknum].push_back(a); - //} - } - - fin >> skipcomment; - } - - fin.close();*/ - return true; -} - - -// query the database for the specified frequency, lon and lat are in -// degrees, elev is in meters -// If no atc_type is specified, it returns true if any non-invalid type is found -// If atc_type is specifed, returns true only if the specified type is found -bool FGCommList::FindByFreq(const SGGeod& aPos, double freq, - ATCData* ad, atc_type tp ) -{ -/* - comm_list_type stations; - stations = commlist_freq[kHz10(freq)]; - comm_list_iterator current = stations.begin(); - comm_list_iterator last = stations.end(); - - // double az1, az2, s; - SGVec3d aircraft = SGVec3d::fromGeod(aPos); - const double orig_max_d = 1e100; - double max_d = orig_max_d; - double d; - // TODO - at the moment this loop returns the first match found in range - // We want to return the closest match in the event of a frequency conflict - for ( ; current != last ; ++current ) { - d = distSqr(aircraft, current->cart); - - //cout << " dist = " << sqrt(d) - // << " range = " << current->range * SG_NM_TO_METER << endl; - - // TODO - match up to twice the published range so we can model - // reduced signal strength - // NOTE The below is squared since we match to distance3Dsquared (above) to avoid a sqrt. - if ( d < (current->range * SG_NM_TO_METER - * current->range * SG_NM_TO_METER ) ) { - //cout << "matched = " << current->ident << endl; - if((tp == INVALID) || (tp == (*current).type)) { - if(d < max_d) { - max_d = d; - *ad = *current; - } - } - } - } - - if(max_d < orig_max_d) { - return true; - } else { - return false; - } -*/ - return false; -} - -int FGCommList::FindByPos(const SGGeod& aPos, double range, comm_list_type* stations, atc_type tp) -{ - // number of relevant stations found within range - int found = 0; -/* - stations->erase(stations->begin(), stations->end()); - - // get bucket number for plane position - SGBucket buck(aPos); - - // get neigboring buckets - int bx = (int)( range*SG_NM_TO_METER / buck.get_width_m() / 2) + 1; - int by = (int)( range*SG_NM_TO_METER / buck.get_height_m() / 2 ) + 1; - - // loop over bucket range - for ( int i=-bx; i<=bx; i++) { - for ( int j=-by; j<=by; j++) { - buck = sgBucketOffset(aPos.getLongitudeDeg(), aPos.getLatitudeDeg(), i, j); - long int bucket = buck.gen_index(); - comm_map_const_iterator Fstations = commlist_bck.find(bucket); - if (Fstations == commlist_bck.end()) continue; - comm_list_const_iterator current = Fstations->second.begin(); - comm_list_const_iterator last = Fstations->second.end(); - - - // double az1, az2, s; - SGVec3d aircraft = SGVec3d::fromGeod(aPos); - double d; - for(; current != last; ++current) { - if((current->type == tp) || (tp == INVALID)) { - d = distSqr(aircraft, current->cart); - // NOTE The below is squared since we match to distance3Dsquared (above) to avoid a sqrt. - if ( d < (current->range * SG_NM_TO_METER - * current->range * SG_NM_TO_METER ) ) { - stations->push_back(*current); - ++found; - } - } - } - } - } -*/ - return found; -} - - -// Returns the distance in meters to the closest station of a given type, -// with the details written into ATCData& ad. If no type is specifed simply -// returns the distance to the closest station of any type. -// Returns -9999 if no stations found within max_range in nautical miles (default 100 miles). -// Note that the search algorithm starts at 10 miles and multiplies by 10 thereafter, so if -// say 300 miles is specifed 10, then 100, then 1000 will be searched, breaking at first result -// and giving up after 1000. -double FGCommList::FindClosest(const SGGeod& aPos, ATCData& ad, atc_type tp, double max_range) { -/* - int num_stations = 0; - int range = 10; - comm_list_type stations; - comm_list_iterator itr; - double distance = -9999.0; - - while(num_stations == 0) { - num_stations = FindByPos(aPos, range, &stations, tp); - if(num_stations) { - double closest = max_range * SG_NM_TO_METER; - double tmp; - for(itr = stations.begin(); itr != stations.end(); ++itr) { - ATCData ad2 = *itr; - const FGAirport *a = fgFindAirportID(ad2.ident); - if (a) { - tmp = dclGetHorizontalSeparation(ad2.geod, aPos); - if(tmp <= closest) { - closest = tmp; - distance = tmp; - ad = *itr; - } - } - } - //cout << "Closest station is " << ad.ident << " at a range of " << distance << " meters\n"; - return(distance); - } - if(range > max_range) { - break; - } - range *= 10; - } -*/ - return(-9999.0); -} - - -// Find by Airport code. -// This is basically a wrapper for a call to the airport database to get the airport -// position followed by a call to FindByPos(...) -bool FGCommList::FindByCode( const std::string& ICAO, ATCData& ad, atc_type tp ) { -/* - const FGAirport *a = fgFindAirportID( ICAO); - if ( a) { - comm_list_type stations; - int found = FindByPos(a->geod(), 10.0, &stations, tp); - if(found) { - comm_list_iterator itr = stations.begin(); - while(itr != stations.end()) { - if(((*itr).ident == ICAO) && ((*itr).type == tp)) { - ad = *itr; - //cout << "FindByCode returns " << ICAO - // << " type: " << tp - // << " freq: " << itr->freq - // << endl; - return true; - } - ++itr; - } - } - } -*/ - return false; -} - -// TODO - this function should move somewhere else eventually! -// Return an appropriate sequence number for an ATIS transmission. -// Return sequence number + 2600 if sequence is unchanged since -// last time. -int FGCommList::GetAtisSequence( const std::string& apt_id, - const double tstamp, const int interval, const int special) -{ -/* - atis_transmission_type tran; - - if(atislog.find(apt_id) == atislog.end()) { // New station - tran.tstamp = tstamp - interval; -// Random number between 0 and 25 inclusive, i.e. 26 equiprobable outcomes: - tran.sequence = int(sg_random() * LTRS); - atislog[apt_id] = tran; - //cout << "New ATIS station: " << apt_id << " seq-1: " - // << tran.sequence << endl; - } - -// calculate the appropriate identifier and update the log - tran = atislog[apt_id]; - - int delta = int((tstamp - tran.tstamp) / interval); - tran.tstamp += delta * interval; - if (special && !delta) delta++; // a "special" ATIS update is required - tran.sequence = (tran.sequence + delta) % LTRS; - atislog[apt_id] = tran; - //if (delta) cout << "New ATIS sequence: " << tran.sequence - // << " Delta: " << delta << endl; - return(tran.sequence + (delta ? 0 : LTRS*1000)); -*/ - return 2600; -} -/***************************************************************************** - * FGKln89AlignedProjection - ****************************************************************************/ - -FGKln89AlignedProjection::FGKln89AlignedProjection() { - _origin.setLatitudeRad(0); - _origin.setLongitudeRad(0); - _origin.setElevationM(0); - _correction_factor = cos(_origin.getLatitudeRad()); -} - -FGKln89AlignedProjection::FGKln89AlignedProjection(const SGGeod& centre, double heading) { - _origin = centre; - _theta = heading * SG_DEGREES_TO_RADIANS; - _correction_factor = cos(_origin.getLatitudeRad()); -} - -FGKln89AlignedProjection::~FGKln89AlignedProjection() { -} - -void FGKln89AlignedProjection::Init(const SGGeod& centre, double heading) { - _origin = centre; - _theta = heading * SG_DEGREES_TO_RADIANS; - _correction_factor = cos(_origin.getLatitudeRad()); -} - -SGVec3d FGKln89AlignedProjection::ConvertToLocal(const SGGeod& pt) { - // convert from lat/lon to orthogonal - double delta_lat = pt.getLatitudeRad() - _origin.getLatitudeRad(); - double delta_lon = pt.getLongitudeRad() - _origin.getLongitudeRad(); - double y = sin(delta_lat) * SG_EQUATORIAL_RADIUS_M; - double x = sin(delta_lon) * SG_EQUATORIAL_RADIUS_M * _correction_factor; - - // Align - if(_theta != 0.0) { - double xbar = x; - x = x*cos(_theta) - y*sin(_theta); - y = (xbar*sin(_theta)) + (y*cos(_theta)); - } - - return SGVec3d(x, y, pt.getElevationM()); -} - -SGGeod FGKln89AlignedProjection::ConvertFromLocal(const SGVec3d& pt) { - // de-align - double thi = _theta * -1.0; - double x = pt.x()*cos(thi) - pt.y()*sin(thi); - double y = (pt.x()*sin(thi)) + (pt.y()*cos(thi)); - - // convert from orthogonal to lat/lon - double delta_lat = asin(y / SG_EQUATORIAL_RADIUS_M); - double delta_lon = asin(x / SG_EQUATORIAL_RADIUS_M) / _correction_factor; - - return SGGeod::fromRadM(_origin.getLongitudeRad()+delta_lon, _origin.getLatitudeRad()+delta_lat, pt.z()); -} - -#endif // #ENABLE_ATCDCL diff --git a/src/ATC/atcutils.hxx b/src/ATC/atcutils.hxx deleted file mode 100644 index d2d2366a0..000000000 --- a/src/ATC/atcutils.hxx +++ /dev/null @@ -1,198 +0,0 @@ -// atcutils.hxx -// -// This file contains a collection of classes from David Luff's -// AI/ATC code that are shared by non-AI parts of FlightGear. -// more specifcially, it contains implementations of FGCommList and -// FGATCAlign -// -// Written by David Luff and Alexander Kappes, started Jan 2003. -// Based on navlist.hxx by Curtis Olson, started April 2000. -// -// Copyright (C) 2000 Curtis L. Olson - http://www.flightgear.org/~curt -// -// 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - -/***************************************************************** -* -* FGCommList is used to store communication frequency information -* for the ATC and AI subsystems. Two maps are maintained - one -* searchable by location and one searchable by frequency. The -* data structure returned from the search is the ATCData struct -* defined in ATC.hxx, containing location, frequency, name, range -* and type of the returned station. -* -******************************************************************/ - -#ifndef _FG_ATCUTILS_HXX -#define _FG_ATCUTILS_HXX - - - -#include - -#include -#include -#include - -//#include "ATC.hxx" -//#include "atis.hxx" - -#if !ENABLE_ATCDCL - -class SGPath; - - - -// Possible types of ATC type that the radios may be tuned to. -// INVALID implies not tuned in to anything. -enum atc_type { - AWOS, - ATIS, - GROUND, - TOWER, - APPROACH, - DEPARTURE, - ENROUTE, - INVALID /* must be last element; see ATC_NUM_TYPES */ -}; - -struct ATCData { - ATCData() : type(INVALID), cart(0, 0, 0), freq(0), range(0) {} - atc_type type; - SGGeod geod; - SGVec3d cart; - unsigned short int freq; - unsigned short int range; - std::string ident; - std::string name; -}; - - - -// A list of ATC stations -typedef std::list < ATCData > comm_list_type; -typedef comm_list_type::iterator comm_list_iterator; -typedef comm_list_type::const_iterator comm_list_const_iterator; - -// A map of ATC station lists -typedef std::map < int, comm_list_type > comm_map_type; -typedef comm_map_type::iterator comm_map_iterator; -typedef comm_map_type::const_iterator comm_map_const_iterator; - - -class FGCommList { - -public: - - FGCommList(); - ~FGCommList(); - - // load all comm frequencies and build the map - bool init( const SGPath& path ); - - // query the database for the specified frequency, lon and lat are - // If no atc_type is specified, it returns true if any non-invalid type is found. - // If atc_type is specifed, returns true only if the specified type is found. - // Returns the station closest to the supplied position. - // The data found is written into the passed-in ATCData structure. - bool FindByFreq(const SGGeod& aPos, double freq, ATCData* ad, atc_type tp = INVALID ); - - // query the database by location, lon and lat are in degrees, elev is in meters, range is in nautical miles. - // Returns the number of stations of the specified atc_type tp that are in range of the position defined by - // lon, lat and elev, and pushes them into stations. - // If no atc_type is specifed, returns the number of all stations in range, and pushes them into stations - // ** stations is erased before use ** - int FindByPos(const SGGeod& aPos, double range, comm_list_type* stations, atc_type tp = INVALID ); - - // Returns the distance in meters to the closest station of a given type, - // with the details written into ATCData& ad. If no type is specifed simply - // returns the distance to the closest station of any type. - // Returns -9999 if no stations found within max_range in nautical miles (default 100 miles). - // Note that the search algorithm starts at 10 miles and multiplies by 10 thereafter, so if - // say 300 miles is specifed 10, then 100, then 1000 will be searched, breaking at first result - // and giving up after 1000. - // !!!Be warned that searching anything over 100 miles will pause the sim unacceptably!!! - // (The ability to search longer ranges should be used during init only). - double FindClosest(const SGGeod& aPos, ATCData& ad, atc_type tp = INVALID, double max_range = 100.0 ); - - // Find by Airport code. - bool FindByCode( const std::string& ICAO, ATCData& ad, atc_type tp = INVALID ); - - // Return the sequence letter for an ATIS transmission given transmission time and airport id - // This maybe should get moved somewhere else!! - int GetAtisSequence( const std::string& apt_id, const double tstamp, - const int interval, const int flush=0); - - // Comm stations mapped by frequency - //comm_map_type commlist_freq; - - // Comm stations mapped by bucket - //comm_map_type commlist_bck; - - // Load comms from a specified path (which must include the filename) -private: - - bool LoadComms(const SGPath& path); - -//----------- This stuff is left over from atislist.[ch]xx and maybe should move somewhere else - // Add structure and map for storing a log of atis transmissions - // made in this session of FlightGear. This allows the callsign - // to be allocated correctly wrt time. - //typedef struct { - // double tstamp; - // int sequence; - //} atis_transmission_type; - - //typedef std::map < std::string, atis_transmission_type > atis_log_type; - //typedef atis_log_type::iterator atis_log_iterator; - //typedef atis_log_type::const_iterator atis_log_const_iterator; - - //atis_log_type atislog; -//----------------------------------------------------------------------------------------------- - -}; - - -extern FGCommList *current_commlist; - -// FGATCAlignedProjection - a class to project an area local to a runway onto an orthogonal co-ordinate system -// with the origin at the threshold and the runway aligned with the y axis. -class FGKln89AlignedProjection { - -public: - FGKln89AlignedProjection(); - FGKln89AlignedProjection(const SGGeod& centre, double heading); - ~FGKln89AlignedProjection(); - - void Init(const SGGeod& centre, double heading); - - // Convert a lat/lon co-ordinate (degrees) to the local projection (meters) - SGVec3d ConvertToLocal(const SGGeod& pt); - - // Convert a local projection co-ordinate (meters) to lat/lon (degrees) - SGGeod ConvertFromLocal(const SGVec3d& pt); - -private: - SGGeod _origin; // lat/lon of local area origin (the threshold) - double _theta; // the rotation angle for alignment in radians - double _correction_factor; // Reduction in surface distance per degree of longitude due to latitude. Saves having to do a cos() every call. - -}; - -#endif // #if ENABLE_ATCDCL - -#endif // _FG_ATCUTILS_HXX - - diff --git a/src/ATCDCL/CMakeLists.txt b/src/ATCDCL/CMakeLists.txt new file mode 100644 index 000000000..68a46d1c3 --- /dev/null +++ b/src/ATCDCL/CMakeLists.txt @@ -0,0 +1,14 @@ +include(FlightGearComponent) + +set(SOURCES + ATC.cxx + atis.cxx + commlist.cxx + ATCDialog.cxx + ATCVoice.cxx + ATCmgr.cxx + ATCutils.cxx + ATCProjection.cxx + ) + +flightgear_component(ATC "${SOURCES}") diff --git a/src/Airports/apt_loader.cxx b/src/Airports/apt_loader.cxx index 34cccff20..8bb9924e6 100644 --- a/src/Airports/apt_loader.cxx +++ b/src/Airports/apt_loader.cxx @@ -46,11 +46,7 @@ #include "simple.hxx" #include "runways.hxx" #include "pavement.hxx" -#if ENABLE_ATCDCL -# include -#else - #include -#endif +#include #include @@ -486,7 +482,6 @@ private: // 50 11770 AWOS 3 // This code parallels code found in "operator>>" in ATC.hxx; // FIXME: unify the code. -#if ENABLE_ATCDCL ATCData a; a.geod = SGGeod::fromDegFt(rwy_lon_accum / (double)rwy_count, rwy_lat_accum / (double)rwy_count, last_apt_elev); @@ -505,8 +500,6 @@ private: SGBucket bucket(a.geod); int bucknum = bucket.gen_index(); comm_list->commlist_bck[bucknum].push_back(a); -#else -#endif #if 0 SG_LOG( SG_GENERAL, SG_ALERT, "Loaded ATIS/AWOS for airport: " << a.ident diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f7613b6cf..3edc66fae 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -7,6 +7,7 @@ foreach( mylibfolder Airports Aircraft ATC + ATCDCL Autopilot Cockpit Environment diff --git a/src/Include/config_cmake.h.in b/src/Include/config_cmake.h.in index 9f4bfcb1c..237d26e52 100644 --- a/src/Include/config_cmake.h.in +++ b/src/Include/config_cmake.h.in @@ -1,7 +1,6 @@ #cmakedefine FG_NDEBUG -#cmakedefine ENABLE_ATCDCL #cmakedefine ENABLE_SP_FDM // JSBSim needs this, to switch from standalone to in-FG mode diff --git a/src/Instrumentation/KLN89/kln89.cxx b/src/Instrumentation/KLN89/kln89.cxx index 0824d947c..8b7f53779 100644 --- a/src/Instrumentation/KLN89/kln89.cxx +++ b/src/Instrumentation/KLN89/kln89.cxx @@ -44,11 +44,7 @@ #include "kln89_symbols.hxx" #include -#if ENABLE_ATCDCL #include -#else -#include -#endif #include
#include @@ -763,11 +759,7 @@ void KLN89::DrawMap(bool draw_avs) { double mapScaleMeters = _mapScale * (_mapScaleUnits == 0 ? SG_NM_TO_METER : 1000); // TODO - use an aligned projection when either DTK or TK up! -#if ENABLE_ATCDCL FGATCAlignedProjection mapProj(SGGeod::fromRad(_gpsLon, _gpsLat), _mapHeading); -#else - FGKln89AlignedProjection mapProj(SGGeod::fromRad(_gpsLon, _gpsLat), _mapHeading); -#endif double meter_per_pix = (_mapOrientation == 0 ? mapScaleMeters / 20.0f : mapScaleMeters / 29.0f); SGGeod bottomLeft = mapProj.ConvertFromLocal(SGVec3d(gps_max(-57.0 * meter_per_pix, -50000), gps_max((_mapOrientation == 0 ? -20.0 * meter_per_pix : -11.0 * meter_per_pix), -25000), 0.0)); SGGeod topRight = mapProj.ConvertFromLocal(SGVec3d(gps_min(54.0 * meter_per_pix, 50000), gps_min((_mapOrientation == 0 ? 20.0 * meter_per_pix : 29.0 * meter_per_pix), 25000), 0.0)); diff --git a/src/Instrumentation/KLN89/kln89_page_apt.cxx b/src/Instrumentation/KLN89/kln89_page_apt.cxx index 67a4c8ddc..be9a4d721 100644 --- a/src/Instrumentation/KLN89/kln89_page_apt.cxx +++ b/src/Instrumentation/KLN89/kln89_page_apt.cxx @@ -29,11 +29,7 @@ #include -#if ENABLE_ATCDCL -# include -#else - #include -#endif +#include #include
#include #include diff --git a/src/Main/Makefile.am b/src/Main/Makefile.am index cf7a4e3f1..7cfe0fd91 100644 --- a/src/Main/Makefile.am +++ b/src/Main/Makefile.am @@ -9,13 +9,6 @@ else SP_FDM_LIBS = endif -if ENABLE_ATCDCL -ATCDCL_LIBS = $(top_builddir)/src/ATCDCL/libATCDCL.a -else -ATCDCL_LIBS = -endif - - if WITH_EVENTINPUT EVENT_LIBS = $(eventinput_LIBS) else @@ -81,7 +74,7 @@ fgfs_SOURCES = bootstrap.cxx fgfs_LDADD = \ libMain.a \ $(top_builddir)/src/Aircraft/libAircraft.a \ - $(ATCDCL_LIBS) \ + $(top_builddir)/src/ATCDCL/libATCDCL.a \ $(top_builddir)/src/Cockpit/libCockpit.a \ $(top_builddir)/src/Cockpit/built_in/libBuilt_in.a \ $(top_builddir)/src/Network/libNetwork.a \ diff --git a/src/Main/fg_init.cxx b/src/Main/fg_init.cxx index 8f66da05d..7af3e3bc0 100644 --- a/src/Main/fg_init.cxx +++ b/src/Main/fg_init.cxx @@ -74,13 +74,9 @@ #include -#if ENABLE_ATCDCL -# include -# include "ATCDCL/commlist.hxx" -#else -# include "ATC/atis.hxx" -# include "ATC/atcutils.hxx" -#endif +#include +#include +#include #include #include @@ -1387,19 +1383,17 @@ bool fgInitSubsystems() { //////////////////////////////////////////////////////////////////// - // Initialise the ATC Manager + // Initialise the ATC Manager //////////////////////////////////////////////////////////////////// -#if ENABLE_ATCDCL SG_LOG(SG_GENERAL, SG_INFO, " ATC Manager"); globals->set_ATC_mgr(new FGATCMgr); globals->get_ATC_mgr()->init(); -#else + //////////////////////////////////////////////////////////////////// // Initialise the ATIS Manager //////////////////////////////////////////////////////////////////// globals->add_subsystem("atis", new FGAtisManager, SGSubsystemMgr::POST_FDM); -#endif //////////////////////////////////////////////////////////////////// diff --git a/src/Main/main.cxx b/src/Main/main.cxx index 74e0ee9da..677d0f36b 100644 --- a/src/Main/main.cxx +++ b/src/Main/main.cxx @@ -63,9 +63,7 @@ #include #include #include -#if ENABLE_ATCDCL #include -#endif #include