]> git.mxchange.org Git - flightgear.git/blobdiff - src/Instrumentation/KLN89/kln89_page_apt.cxx
Give the FGAirport class a sane filename.
[flightgear.git] / src / Instrumentation / KLN89 / kln89_page_apt.cxx
index 9166db43a0a03dbd20a7b1fa3599d78c308c90e1..52a0778c319d202a75279171ae4ca1b15b3de47b 100644 (file)
@@ -3,7 +3,7 @@
 //
 // Written by David Luff, started 2005.
 //
-// Copyright (C) 2005 - David C Luff - david.luff@nottingham.ac.uk
+// Copyright (C) 2005 - David C Luff - daveluff AT ntlworld.com
 //
 // This program is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License as
 #endif
 
 #include "kln89_page_apt.hxx"
-#if ENABLE_ATCDCL
-#    include <ATCDCL/commlist.hxx>
-#else
-  #include <ATC/atcutils.hxx>
-#endif
+
+#include <simgear/structure/exception.hxx>
+#include <cassert>
+#include <cstdio>
+
+#include <ATC/CommStation.hxx>
 #include <Main/globals.hxx>
 #include <Airports/runways.hxx>
-#include <Airports/simple.hxx>
+#include <Airports/airport.hxx>
 
-// This function is copied from Airports/runways.cxx
-// TODO - Make the original properly available and remove this instance!!!!
-// Return reverse rwy number
-// eg 01 -> 19
-// 03L -> 21R
-static string GetReverseRunwayNo(string rwyno) {       
-    // cout << "Original rwyno = " << rwyNo << '\n';
-    
-    // standardize input number
-    string tmp = rwyno.substr(1, 1);
-    if (( tmp == "L" || tmp == "R" || tmp == "C" ) || (rwyno.size() == 1)) {
-               tmp = rwyno;
-               rwyno = "0" + tmp;
-               SG_LOG( SG_GENERAL, SG_INFO,
-                       "Standardising rwy number from " << tmp << " to " << rwyno );
-    }
-    
-    char buf[4];
-    int rn = atoi(rwyno.substr(0,2).c_str());
-    rn += 18;
-    while(rn > 36) {
-               rn -= 36;
-    }
-    sprintf(buf, "%02i", rn);
-    if(rwyno.size() == 3) {
-               if(rwyno.substr(2,1) == "L") {
-                       buf[2] = 'R';
-                       buf[3] = '\0';
-               } else if (rwyno.substr(2,1) == "R") {
-                       buf[2] = 'L';
-                       buf[3] = '\0';
-               } else if (rwyno.substr(2,1) == "C") {
-                       buf[2] = 'C';
-                       buf[3] = '\0';
-               } else if (rwyno.substr(2,1) == "T") {
-                       buf[2] = 'T';
-                       buf[3] = '\0';
-               } else {
-                       SG_LOG(SG_GENERAL, SG_ALERT, "Unknown runway code "
-                       << rwyno << " passed to GetReverseRunwayNo(...)");
-               }
-    }
-    return(buf);
-}
+using std::string;
 
 KLN89AptPage::KLN89AptPage(KLN89* parent) 
 : KLN89Page(parent) {
@@ -231,7 +189,8 @@ void KLN89AptPage::Update(double dt) {
                                string s = _aptRwys[i]->ident();
                                _kln89->DrawText(s, 2, 9, 3);
                                _kln89->DrawText("/", 2, 12, 3);
-                               _kln89->DrawText(GetReverseRunwayNo(s), 2, 13, 3);
+                string recipIdent = _aptRwys[i]->reciprocalRunway()->ident();
+                               _kln89->DrawText(recipIdent, 2, 13, 3);
                                // Length
                                s = GPSitoa(int(float(_aptRwys[i]->lengthFt()) * (_kln89->_altUnits == GPS_ALT_UNITS_FT ? 1.0 : SG_FEET_TO_METER) + 0.5));
                                _kln89->DrawText(s, 2, 5 - s.size(), 2);
@@ -279,7 +238,8 @@ void KLN89AptPage::Update(double dt) {
                                string s = _aptRwys[i]->ident();
                                _kln89->DrawText(s, 2, 9, 1);
                                _kln89->DrawText("/", 2, 12, 1);
-                               _kln89->DrawText(GetReverseRunwayNo(s), 2, 13, 1);
+                string recip = _aptRwys[i]->reciprocalRunway()->ident();
+                               _kln89->DrawText(recip, 2, 13, 1);
                                // Length
                                s = GPSitoa(int(float(_aptRwys[i]->lengthFt()) * (_kln89->_altUnits == GPS_ALT_UNITS_FT ? 1.0 : SG_FEET_TO_METER) + 0.5));
                                _kln89->DrawText(s, 2, 5 - s.size(), 0);
@@ -500,38 +460,35 @@ void KLN89AptPage::SetId(const string& s) {
 // Update the cached airport details
 void KLN89AptPage::UpdateAirport(const string& id) {
        // Frequencies
-       _aptFreqs.clear();
-       ATCData ad;
-       AptFreq aq;
-       //cout << "UpdateAirport called, id = " << id << '\n';
-       // TODO - the logic below only returns one service per type per airport - they can be on more than one freq though.
-       if(current_commlist->FindByCode(id, ad, ATIS)) {
-               //cout << "Found ATIS\n";
-               aq.service = "ATIS*";
-               aq.freq = ad.freq;
-               _aptFreqs.push_back(aq);
-       }
-       if(current_commlist->FindByCode(id, ad, GROUND)) {
-               aq.service = "GRND*";
-               aq.freq = ad.freq;
-               _aptFreqs.push_back(aq);
-       }
-       if(current_commlist->FindByCode(id, ad, TOWER)) {
-               aq.service = "TWR *";
-               aq.freq = ad.freq;
-               _aptFreqs.push_back(aq);
-       }
-       if(current_commlist->FindByCode(id, ad, APPROACH)) {
-               aq.service = "APR";
-               aq.freq = ad.freq;
-               _aptFreqs.push_back(aq);
-       }
+       _aptFreqs.clear();      
+       
+    const FGAirport* apt = fgFindAirportID(id);
+    if (!apt) {
+        throw sg_exception("UpdateAirport: unknown airport id " + id);
+    }
+       
+    for (unsigned int c=0; c<apt->commStations().size(); ++c) {
+        flightgear::CommStation* comm = apt->commStations()[c];
+        AptFreq aq;
+        aq.freq = comm->freqKHz();
+        switch (comm->type()) {
+        case FGPositioned::FREQ_ATIS:
+            aq.service = "ATIS*"; break;
+        case FGPositioned::FREQ_GROUND:
+            aq.service = "GRND*"; break;
+        case FGPositioned::FREQ_TOWER:
+            aq.service = "TWR *"; break;
+        case FGPositioned::FREQ_APP_DEP:
+            aq.service = "APR *"; break;
+        default:
+            continue;
+        }
+    }
+
        _nFreqPages = (unsigned int)ceil((float(_aptFreqs.size())) / 3.0f);
        
        // Runways
        _aptRwys.clear();
-  const FGAirport* apt = fgFindAirportID(id);
-  assert(apt);
   
   // build local array, longest runway first
   for (unsigned int r=0; r<apt->numRunways(); ++r) {