]> git.mxchange.org Git - flightgear.git/blob - FixNode/main.cxx
Added #ifdef HAVE_STDLIB_H
[flightgear.git] / FixNode / main.cxx
1 // main.c -- read in a .node file and fix the z values of the interpolated 
2 //           points
3 //
4 // Written by Curtis Olson, started November 1997.
5 //
6 // Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 //
22 // $Id$
23 // (Log is kept at end of this file)
24 //
25
26
27 #include <dirent.h>
28 #include <stdio.h>
29 #include <string.h>
30 #include <sys/types.h>
31
32 #ifdef HAVE_STDLIB_H
33 #  include <stdlib.h>
34 #endif // HAVE_STDLIB_H
35
36 #include <DEM/dem.hxx>
37
38 #include "fixnode.hxx"
39 #include "triload.hxx"
40
41
42 // Storage for the original DEM data which is used to interpolate z values
43 static fgDEM dem;
44 static float dem_data[DEM_SIZE_1][DEM_SIZE_1];
45
46 // Node list
47 static double nodes[MAX_NODES][3];
48
49
50 // find all the matching files in the specified directory and fix them
51 void process_files(char *root_path) {
52     DIR *d;
53     struct dirent *de;
54     char file_path[256];
55     char *ptr;
56     int len;
57
58     if ( (d = opendir(root_path)) == NULL ) {
59         printf("cannot open directory '%s'.", root_path);
60         exit(-1);
61     }
62
63     while ( (de = readdir(d)) != NULL ) {
64         len = strlen(de->d_name);
65         if ( len > 7 ) {
66             ptr = de->d_name;
67             ptr += (len - 7);
68             // printf("--> %s \n", ptr);
69
70             if ( strcmp(ptr, ".1.node") == 0 ) {
71                 strcpy(file_path, root_path);
72                 strcat(file_path, "/");
73                 strcat(file_path, de->d_name);
74                 printf("File = %s\n", file_path);
75
76                 // load the input data files
77                 triload(file_path, nodes);
78
79                 fixnodes(file_path, dem, dem_data, nodes);
80             }
81         }
82     }
83 }
84
85
86 // main
87 int main(int argc, char **argv) {
88     char demfile[256], root_path[256];
89
90     if ( argc != 3 ) {
91         printf("Usage %s demfile root_path\n", argv[0]);
92         exit(-1);
93     }
94
95     strcpy(demfile, argv[1]);
96     strcpy(root_path, argv[2]);
97
98     // load the corresponding dem file so we can interpolate elev values
99     dem.open(demfile);
100     dem.parse();
101     dem.close();
102
103     // process all the *.1.node files in the specified directory
104     process_files(root_path);
105
106     return(0);
107 }
108
109
110 // $Log$
111 // Revision 1.3  1998/04/26 05:02:06  curt
112 // Added #ifdef HAVE_STDLIB_H
113 //
114 // Revision 1.2  1998/04/14 02:26:04  curt
115 // Code reorganizations.  Added a Lib/ directory for more general libraries.
116 //
117 // Revision 1.1  1998/04/08 23:05:57  curt
118 // Adopted Gnu automake/autoconf system.
119 //
120 // Revision 1.6  1998/04/06 21:09:44  curt
121 // Additional win32 support.
122 // Fixed a bad bug in dem file parsing that was causing the output to be
123 // flipped about x = y.
124 //
125 // Revision 1.5  1998/03/19 02:50:20  curt
126 // Updated to support -lDEM class.
127 //
128 // Revision 1.4  1998/03/03 16:00:58  curt
129 // More c++ compile tweaks.
130 //
131 // Revision 1.3  1998/01/09 23:03:08  curt
132 // Restructured to split 1deg x 1deg dem's into 64 subsections.
133 //
134 // Revision 1.2  1997/12/02 13:12:07  curt
135 // Updated to fix every node.
136 //
137 // Revision 1.1  1997/11/27 00:17:34  curt
138 // Initial revision.
139 //
140 //