]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/apt_loader.cxx
Fix for refueling and radar calculations.
[flightgear.git] / src / Airports / apt_loader.cxx
index ff9f9305cde3f68757bd6f212791f1952c8c3d3b..0c62ea31dd214f50a3f9a52e816441a0c6fbb412 100644 (file)
@@ -17,7 +17,7 @@
 //
 // 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.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 //
 // $Id$
 
@@ -29,7 +29,8 @@
 #include <simgear/compiler.h>
 
 #include <stdlib.h> // atof(), atoi()
-#include <strings.h> // memchr()
+#include <string.h> // memchr()
+#include <ctype.h> // isspace()
 
 #include <simgear/constants.h>
 #include <simgear/debug/logstream.hxx>
@@ -67,10 +68,11 @@ bool fgAirportDBLoad( FGAirportList *airports, FGRunwayList *runways,
     string last_apt_info = "";
     string last_apt_type = "";
     string line;
-    char tmp[2048];
-
-    char sp_pos = 0, lid = 0;
+    char tmp[2049];
+    tmp[2048] = 0;
 
+    unsigned int line_id = 0;
+    unsigned int line_num = 0;
     double rwy_lon_accum = 0.0;
     double rwy_lat_accum = 0.0;
     int rwy_count = 0;
@@ -78,21 +80,20 @@ bool fgAirportDBLoad( FGAirportList *airports, FGRunwayList *runways,
     while ( ! in.eof() ) {
        in.getline(tmp, 2048);
        line = tmp;
+        line_num++;
 
-        SG_LOG( SG_GENERAL, SG_BULK, "-> '" << line << "'" );
-        if ( !line.size() )
+        SG_LOG( SG_GENERAL, SG_BULK, "#" << line_num << " '" << line << "'" );
+        if ( !line.size() || isspace(tmp[0]))
             continue;
 
-        if (line.size() > 3) {
+        if (line.size() >= 3) {
             char *p = (char *)memchr(tmp, ' ', 3);
             if ( p )
                 *p = 0;
         }
 
-        lid = atoi(tmp);
-        if ( tmp[0] == '#' || (tmp[0] == '/' && tmp[1] == '/') ) {
-           // comment, skip
-        } else if ( tmp[0] == 'I' ) {
+        line_id = atoi(tmp);
+        if ( tmp[0] == 'I' ) {
             // First line, indicates IBM (i.e. DOS line endings I
             // believe.)
 
@@ -100,16 +101,16 @@ bool fgAirportDBLoad( FGAirportList *airports, FGRunwayList *runways,
             // which is the version and copyright information
             in.getline(tmp, 2048);
             // vector<string> vers_token = simgear::strutils::split( tmp );
-            if ( strnlen(tmp, 2048) > 4 ) {
+            if ( strlen(tmp) > 4 ) {
                char *p = (char *)memchr(tmp, ' ', 4);
                if ( p )
                   *p = 0;
             }
             SG_LOG( SG_GENERAL, SG_INFO, "Data file version = "
                     << tmp );
-       } else if ( lid == 1 /* Airport */ ||
-                    lid == 16 /* Seaplane base */ ||
-                    lid == 17 /* Heliport */ ) {
+       } else if ( line_id == 1 /* Airport */ ||
+                    line_id == 16 /* Seaplane base */ ||
+                    line_id == 17 /* Heliport */ ) {
 
             token.clear();
             token = simgear::strutils::split(line);
@@ -151,7 +152,7 @@ bool fgAirportDBLoad( FGAirportList *airports, FGRunwayList *runways,
             rwy_lon_accum = 0.0;
             rwy_lat_accum = 0.0;
             rwy_count = 0;
-        } else if ( lid == 10 ) {
+        } else if ( line_id == 10 ) {
             token.clear();
             token = simgear::strutils::split(line);
 
@@ -192,21 +193,21 @@ bool fgAirportDBLoad( FGAirportList *airports, FGRunwayList *runways,
                           stopway1, stopway2, lighting_flags, surface_code,
                           shoulder_code, marking_code, smoothness,
                           dist_remaining );
-        } else if ( lid == 18 ) {
+        } else if ( line_id == 18 ) {
             // beacon entry (ignore)
-        } else if ( lid == 14 ) {
+        } else if ( line_id == 14 ) {
             // control tower entry (ignore)
-        } else if ( lid == 19 ) {
+        } else if ( line_id == 19 ) {
             // windsock entry (ignore)
-        } else if ( lid == 15 ) {
+        } else if ( line_id == 15 ) {
             // custom startup locations (ignore)
-        } else if ( lid >= 50 && lid <= 56 ) {
+        } else if ( line_id >= 50 && line_id <= 56 ) {
             // frequency entries (ignore)
-        } else if ( lid == 99 ) {
+        } else if ( line_id == 99 ) {
             SG_LOG( SG_GENERAL, SG_DEBUG, "End of file reached" );
         } else {
             SG_LOG( SG_GENERAL, SG_ALERT, 
-                    "Unknown line in file: " << line );
+                    "Unknown line(#" << line_num << ") in file: " << line );
             exit(-1);
         }
     }
@@ -242,10 +243,8 @@ bool fgAirportDBLoad( FGAirportList *airports, FGRunwayList *runways,
         if ( ident == "#" || ident == "//" ) {
             metar_in >> skipeol;
         } else {
-            const FGAirport &a = airports->search( ident );
-            if ( a.getId() == ident ) {
-                airports->has_metar( ident );
-            }
+            const FGAirport* a = airports->search( ident );
+            if ( a ) airports->has_metar( ident );
         }
     }