[0156ccfc] | 1 | /* cavern.c |
---|
[bb90203] | 2 | * SURVEX Cave surveying software: data reduction main and related functions |
---|
[4ae2ea4] | 3 | * Copyright (C) 1991-2002 Olly Betts |
---|
[846746e] | 4 | * |
---|
[89231c4] | 5 | * This program is free software; you can redistribute it and/or modify |
---|
| 6 | * it under the terms of the GNU General Public License as published by |
---|
| 7 | * the Free Software Foundation; either version 2 of the License, or |
---|
| 8 | * (at your option) any later version. |
---|
[846746e] | 9 | * |
---|
| 10 | * This program is distributed in the hope that it will be useful, |
---|
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
[89231c4] | 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 13 | * GNU General Public License for more details. |
---|
[846746e] | 14 | * |
---|
[89231c4] | 15 | * You should have received a copy of the GNU General Public License |
---|
| 16 | * along with this program; if not, write to the Free Software |
---|
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
[bb90203] | 18 | */ |
---|
| 19 | |
---|
| 20 | #ifdef HAVE_CONFIG_H |
---|
| 21 | #include <config.h> |
---|
| 22 | #endif |
---|
| 23 | |
---|
| 24 | #include <time.h> |
---|
| 25 | |
---|
[5853657] | 26 | #include "cavern.h" |
---|
| 27 | #include "cmdline.h" |
---|
| 28 | #include "commands.h" |
---|
[bb90203] | 29 | #include "datain.h" |
---|
| 30 | #include "debug.h" |
---|
| 31 | #include "message.h" |
---|
| 32 | #include "filename.h" |
---|
| 33 | #include "filelist.h" |
---|
| 34 | #include "img.h" |
---|
| 35 | #include "listpos.h" |
---|
[5853657] | 36 | #include "netbits.h" |
---|
| 37 | #include "netskel.h" |
---|
| 38 | #include "osdepend.h" |
---|
[bb90203] | 39 | #include "out.h" |
---|
[8e8057c] | 40 | #include "str.h" |
---|
[5853657] | 41 | #include "validate.h" |
---|
[bb90203] | 42 | |
---|
[647407d] | 43 | #ifdef NEW3DFORMAT |
---|
[8318645] | 44 | # if OS != RISCOS |
---|
| 45 | /* include header for getcwd() */ |
---|
| 46 | # if OS == MSDOS && defined(__TURBOC__) |
---|
| 47 | # include <dir.h> |
---|
| 48 | # else |
---|
| 49 | # include <unistd.h> |
---|
| 50 | # endif |
---|
[2d3f65a] | 51 | #endif |
---|
[407084d] | 52 | |
---|
[647407d] | 53 | #ifndef MAXPATHLEN |
---|
| 54 | #define MAXPATHLEN 1024 |
---|
| 55 | #endif |
---|
| 56 | #endif |
---|
| 57 | |
---|
[bb90203] | 58 | /* For funcs which want to be immune from messing around with different |
---|
| 59 | * calling conventions */ |
---|
| 60 | #ifndef CDECL |
---|
| 61 | # define CDECL |
---|
| 62 | #endif |
---|
| 63 | |
---|
| 64 | /* Globals */ |
---|
| 65 | node *stnlist = NULL; |
---|
| 66 | settings *pcs; |
---|
| 67 | prefix *root; |
---|
| 68 | long cLegs, cStns; |
---|
| 69 | long cComponents; |
---|
[d1878c51] | 70 | bool fExportUsed = fFalse; |
---|
[bb90203] | 71 | |
---|
| 72 | FILE *fhErrStat = NULL; |
---|
[693388e] | 73 | img *pimg = NULL; |
---|
[bb90203] | 74 | #ifndef NO_PERCENTAGE |
---|
| 75 | bool fPercent = fFalse; |
---|
| 76 | #endif |
---|
[647407d] | 77 | bool fQuiet = fFalse; /* just show brief summary + errors */ |
---|
[ed0f5b6] | 78 | bool fMute = fFalse; /* just show errors */ |
---|
[647407d] | 79 | bool fSuppress = fFalse; /* only output 3d(3dx) file */ |
---|
[2b6eca8] | 80 | static bool fLog = fFalse; /* stdout to .log file */ |
---|
[421b7d2] | 81 | static bool f_warnings_are_errors = fFalse; /* turn warnings into errors */ |
---|
[647407d] | 82 | |
---|
| 83 | nosurveylink *nosurveyhead; |
---|
[bb90203] | 84 | |
---|
| 85 | real totadj, total, totplan, totvert; |
---|
| 86 | real min[3], max[3]; |
---|
| 87 | prefix *pfxHi[3], *pfxLo[3]; |
---|
| 88 | |
---|
| 89 | char *survey_title = NULL; |
---|
| 90 | int survey_title_len; |
---|
| 91 | |
---|
| 92 | bool fExplicitTitle = fFalse; |
---|
| 93 | |
---|
[8e8057c] | 94 | char *fnm_output_base = NULL; |
---|
| 95 | int fnm_output_base_is_dir = 0; |
---|
| 96 | |
---|
[06a871f] | 97 | static void do_stats(void); |
---|
[bb90203] | 98 | |
---|
| 99 | static const struct option long_opts[] = { |
---|
| 100 | /* const char *name; int has_arg (0 no_argument, 1 required_*, 2 optional_*); int *flag; int val; */ |
---|
| 101 | #ifdef NO_PERCENTAGE |
---|
| 102 | {"percentage", no_argument, 0, 0}, |
---|
| 103 | {"no-percentage", no_argument, 0, 0}, |
---|
| 104 | #else |
---|
| 105 | {"percentage", no_argument, 0, 'p'}, |
---|
| 106 | {"no-percentage", no_argument, (int*)&fPercent, 0}, |
---|
| 107 | #endif |
---|
[8e8057c] | 108 | {"output", required_argument, 0, 'o'}, |
---|
[647407d] | 109 | {"quiet", no_argument, 0, 'q'}, |
---|
| 110 | {"no-auxiliary-files", no_argument, 0, 's'}, |
---|
[bb9d869] | 111 | {"warnings-are-errors", no_argument, 0, 'w'}, |
---|
[0dab87a] | 112 | {"log", no_argument, 0, 1}, |
---|
[647407d] | 113 | #ifdef NEW3DFORMAT |
---|
[773bb239] | 114 | {"chasm-format", no_argument, 0, 'x'}, |
---|
[5b68ae1] | 115 | #endif |
---|
[ce6ab688] | 116 | #if (OS==WIN32) |
---|
[0dab87a] | 117 | {"pause", no_argument, 0, 2}, |
---|
[647407d] | 118 | #endif |
---|
[bb90203] | 119 | {"help", no_argument, 0, HLP_HELP}, |
---|
| 120 | {"version", no_argument, 0, HLP_VERSION}, |
---|
| 121 | {0, 0, 0, 0} |
---|
| 122 | }; |
---|
| 123 | |
---|
[647407d] | 124 | #ifdef NEW3DFORMAT |
---|
[bb9d869] | 125 | #define short_opts "pxao:qswz:" |
---|
[647407d] | 126 | #else |
---|
[bb9d869] | 127 | #define short_opts "pao:qswz:" |
---|
[647407d] | 128 | #endif |
---|
[bb90203] | 129 | |
---|
[647407d] | 130 | /* TRANSLATE extract help messages to message file */ |
---|
[bb90203] | 131 | static struct help_msg help[] = { |
---|
| 132 | /* <-- */ |
---|
| 133 | {HLP_ENCODELONG(0), "display percentage progress"}, |
---|
[8e8057c] | 134 | {HLP_ENCODELONG(2), "set location for output files"}, |
---|
[647407d] | 135 | {HLP_ENCODELONG(3), "only show brief summary (-qq for errors only)"}, |
---|
[773bb239] | 136 | {HLP_ENCODELONG(4), "do not create .err file"}, |
---|
[9085f95] | 137 | {HLP_ENCODELONG(5), "turn warnings into errors"}, |
---|
[773bb239] | 138 | {HLP_ENCODELONG(6), "log output to .log file"}, |
---|
[647407d] | 139 | #ifdef NEW3DFORMAT |
---|
[0dab87a] | 140 | {HLP_ENCODELONG(7), "output data in chasm's 3dx format"}, |
---|
[647407d] | 141 | #endif |
---|
[8e8057c] | 142 | /*{'z', "set optimizations for network reduction"},*/ |
---|
[bb90203] | 143 | {0, 0} |
---|
| 144 | }; |
---|
| 145 | |
---|
[5b68ae1] | 146 | /* atexit functions */ |
---|
[25ab06b] | 147 | static void |
---|
| 148 | delete_output_on_error(void) |
---|
| 149 | { |
---|
[bb9d869] | 150 | if (msg_errors || (f_warnings_are_errors && msg_warnings)) |
---|
| 151 | filename_delete_output(); |
---|
[25ab06b] | 152 | } |
---|
| 153 | |
---|
[5b68ae1] | 154 | #if (OS==WIN32) |
---|
| 155 | static void |
---|
| 156 | pause_on_exit(void) |
---|
| 157 | { |
---|
| 158 | while (_kbhit()) _getch(); |
---|
| 159 | _getch(); |
---|
| 160 | } |
---|
| 161 | #endif |
---|
| 162 | |
---|
[bb90203] | 163 | extern CDECL int |
---|
| 164 | main(int argc, char **argv) |
---|
| 165 | { |
---|
| 166 | int d; |
---|
| 167 | static clock_t tmCPUStart; |
---|
| 168 | static time_t tmUserStart; |
---|
| 169 | static double tmCPU, tmUser; |
---|
| 170 | |
---|
| 171 | tmUserStart = time(NULL); |
---|
| 172 | tmCPUStart = clock(); |
---|
| 173 | init_screen(); |
---|
| 174 | |
---|
[bdfe97f] | 175 | msg_init(argv); |
---|
[bb90203] | 176 | |
---|
| 177 | pcs = osnew(settings); |
---|
| 178 | pcs->next = NULL; |
---|
| 179 | pcs->Translate = ((short*) osmalloc(ossizeof(short) * 257)) + 1; |
---|
| 180 | |
---|
| 181 | /* Set up root of prefix hierarchy */ |
---|
| 182 | root = osnew(prefix); |
---|
| 183 | root->up = root->right = root->down = NULL; |
---|
| 184 | root->stn = NULL; |
---|
[421b7d2] | 185 | root->pos = NULL; |
---|
[ff6cfe1] | 186 | root->ident = NULL; |
---|
[932f7e9] | 187 | root->min_export = root->max_export = 0; |
---|
[95c3272] | 188 | root->sflags = BIT(SFLAGS_SURVEY); |
---|
[016068a] | 189 | root->filename = NULL; |
---|
[647407d] | 190 | |
---|
| 191 | nosurveyhead = NULL; |
---|
[bb90203] | 192 | |
---|
| 193 | stnlist = NULL; |
---|
| 194 | cLegs = cStns = cComponents = 0; |
---|
| 195 | totadj = total = totplan = totvert = 0.0; |
---|
| 196 | |
---|
| 197 | for (d = 0; d <= 2; d++) { |
---|
[fa42426] | 198 | min[d] = HUGE_REAL; |
---|
| 199 | max[d] = -HUGE_REAL; |
---|
[bb90203] | 200 | pfxHi[d] = pfxLo[d] = NULL; |
---|
| 201 | } |
---|
| 202 | |
---|
[d06141c] | 203 | /* at least one argument must be given */ |
---|
[b85e20f] | 204 | cmdline_init(argc, argv, short_opts, long_opts, NULL, help, 1, -1); |
---|
[bb90203] | 205 | while (1) { |
---|
[b85e20f] | 206 | int opt = cmdline_getopt(); |
---|
[bb90203] | 207 | if (opt == EOF) break; |
---|
| 208 | switch (opt) { |
---|
| 209 | case 'p': |
---|
| 210 | #ifndef NO_PERCENTAGE |
---|
| 211 | fPercent = 1; |
---|
| 212 | #endif |
---|
| 213 | break; |
---|
[8e8057c] | 214 | case 'o': { |
---|
| 215 | /* can be a directory (in which case use basename of leaf input) |
---|
| 216 | * or a file (in which case just trim the extension off) */ |
---|
| 217 | if (fDirectory(optarg)) { |
---|
| 218 | /* this is a little tricky - we need to note the path here, |
---|
| 219 | * and then add the leaf later on (in datain.c) */ |
---|
| 220 | fnm_output_base = base_from_fnm(optarg); |
---|
| 221 | fnm_output_base_is_dir = 1; |
---|
| 222 | } else { |
---|
| 223 | osfree(fnm_output_base); /* in case of multiple -o options */ |
---|
| 224 | fnm_output_base = base_from_fnm(optarg); |
---|
| 225 | } |
---|
| 226 | break; |
---|
| 227 | } |
---|
[647407d] | 228 | #ifdef NEW3DFORMAT |
---|
| 229 | case 'x': { |
---|
| 230 | fUseNewFormat = 1; |
---|
| 231 | break; |
---|
| 232 | } |
---|
| 233 | #endif |
---|
| 234 | case 'q': |
---|
| 235 | if (fQuiet) fMute = 1; |
---|
| 236 | fQuiet = 1; |
---|
| 237 | break; |
---|
| 238 | case 's': |
---|
| 239 | fSuppress = 1; |
---|
| 240 | break; |
---|
[bb9d869] | 241 | case 'w': |
---|
| 242 | f_warnings_are_errors = 1; |
---|
| 243 | break; |
---|
[8e8057c] | 244 | case 'z': { |
---|
| 245 | /* Control which network optimisations are used (development tool) */ |
---|
| 246 | static int first_opt_z = 1; |
---|
[eb18f4d] | 247 | char c; |
---|
[8e8057c] | 248 | if (first_opt_z) { |
---|
[bb90203] | 249 | optimize = 0; |
---|
[8e8057c] | 250 | first_opt_z = 0; |
---|
[bb90203] | 251 | } |
---|
[c50391b8] | 252 | /* Lollipops, Parallel legs, Iterate mx, Delta* */ |
---|
[eb18f4d] | 253 | while ((c = *optarg++) != '\0') |
---|
[0dab87a] | 254 | if (islower(c)) optimize |= BITA(c); |
---|
| 255 | break; |
---|
| 256 | case 1: |
---|
| 257 | fLog = fTrue; |
---|
[bb90203] | 258 | break; |
---|
[5b68ae1] | 259 | #if (OS==WIN32) |
---|
[0dab87a] | 260 | case 2: |
---|
[5b68ae1] | 261 | atexit(pause_on_exit); |
---|
| 262 | break; |
---|
| 263 | #endif |
---|
[bb90203] | 264 | } |
---|
| 265 | } |
---|
| 266 | } |
---|
| 267 | |
---|
[0dab87a] | 268 | if (fLog) { |
---|
| 269 | char *fnm; |
---|
[9887ea01] | 270 | if (!fnm_output_base) { |
---|
| 271 | char *p; |
---|
| 272 | p = baseleaf_from_fnm(argv[optind]); |
---|
[0156ccfc] | 273 | fnm = add_ext(p, EXT_LOG); |
---|
[421b7d2] | 274 | osfree(p); |
---|
[9887ea01] | 275 | } else if (fnm_output_base_is_dir) { |
---|
[09e8f4c] | 276 | char *p; |
---|
| 277 | fnm = baseleaf_from_fnm(argv[optind]); |
---|
| 278 | p = use_path(fnm_output_base, fnm); |
---|
| 279 | osfree(fnm); |
---|
[0156ccfc] | 280 | fnm = add_ext(p, EXT_LOG); |
---|
[09e8f4c] | 281 | osfree(p); |
---|
| 282 | } else { |
---|
[0156ccfc] | 283 | fnm = add_ext(fnm_output_base, EXT_LOG); |
---|
[09e8f4c] | 284 | } |
---|
[421b7d2] | 285 | |
---|
[0dab87a] | 286 | if (!freopen(fnm, "w", stdout)) |
---|
| 287 | fatalerror(/*Failed to open output file `%s'*/47, fnm); |
---|
| 288 | |
---|
| 289 | osfree(fnm); |
---|
| 290 | } |
---|
| 291 | |
---|
[90123e8] | 292 | if (!fMute) |
---|
| 293 | printf(PRETTYPACKAGE" "VERSION"\n"COPYRIGHT_MSG"\n", msg(/*©*/0)); |
---|
[bb90203] | 294 | |
---|
[25ab06b] | 295 | atexit(delete_output_on_error); |
---|
| 296 | |
---|
[bb90203] | 297 | /* end of options, now process data files */ |
---|
| 298 | while (argv[optind]) { |
---|
| 299 | const char *fnm = argv[optind]; |
---|
| 300 | |
---|
| 301 | if (!fExplicitTitle) { |
---|
| 302 | char *lf; |
---|
[8e8057c] | 303 | lf = baseleaf_from_fnm(fnm); |
---|
[bb90203] | 304 | if (survey_title) s_catchar(&survey_title, &survey_title_len, ' '); |
---|
| 305 | s_cat(&survey_title, &survey_title_len, lf); |
---|
| 306 | osfree(lf); |
---|
| 307 | } |
---|
| 308 | |
---|
| 309 | /* Select defaults settings */ |
---|
| 310 | default_all(pcs); |
---|
[647407d] | 311 | #ifdef NEW3DFORMAT |
---|
| 312 | /* we need to get the filename of the first one for our base_source */ |
---|
| 313 | /* and also run_file */ |
---|
| 314 | if (fUseNewFormat) { |
---|
| 315 | create_twig(root, fnm); |
---|
| 316 | rhizome = root->twig_link; |
---|
| 317 | limb = get_twig(root); |
---|
| 318 | firstfilename = osstrdup(fnm); |
---|
| 319 | startingdir = osmalloc(MAXPATHLEN); |
---|
[49090c02] | 320 | #if (OS==RISCOS) |
---|
| 321 | strcpy(startingdir, "@"); |
---|
| 322 | #else |
---|
[647407d] | 323 | getcwd(startingdir, MAXPATHLEN); |
---|
[49090c02] | 324 | #endif |
---|
[647407d] | 325 | } |
---|
| 326 | #endif |
---|
[f4b609d] | 327 | data_file(NULL, fnm); /* first argument is current path */ |
---|
[cb3d1e2] | 328 | |
---|
[bb90203] | 329 | optind++; |
---|
| 330 | } |
---|
[cb3d1e2] | 331 | |
---|
[bb90203] | 332 | validate(); |
---|
| 333 | |
---|
| 334 | solve_network(/*stnlist*/); /* Find coordinates of all points */ |
---|
| 335 | validate(); |
---|
[421b7d2] | 336 | |
---|
[bb90203] | 337 | #ifdef NEW3DFORMAT |
---|
[647407d] | 338 | if (fUseNewFormat) { |
---|
[6f185e5] | 339 | /* this actually does all the writing */ |
---|
| 340 | if (!cave_close(pimg)) { |
---|
| 341 | char *fnm = add_ext(fnm_output_base, EXT_SVX_3DX); |
---|
| 342 | fatalerror_in_file(fnm, 0, /*Error writing to file*/111); |
---|
| 343 | } |
---|
[647407d] | 344 | } else { |
---|
[bb90203] | 345 | #endif |
---|
[6f185e5] | 346 | /* close .3d file */ |
---|
| 347 | if (!img_close(pimg)) { |
---|
| 348 | char *fnm = add_ext(fnm_output_base, EXT_SVX_3D); |
---|
| 349 | fatalerror(img_error(), fnm); |
---|
| 350 | } |
---|
[647407d] | 351 | #ifdef NEW3DFORMAT |
---|
| 352 | } |
---|
| 353 | #endif |
---|
[7104f16] | 354 | if (fhErrStat) safe_fclose(fhErrStat); |
---|
[bb90203] | 355 | |
---|
| 356 | out_current_action(msg(/*Calculating statistics*/120)); |
---|
[2b6eca8] | 357 | if (!fMute) do_stats(); |
---|
[647407d] | 358 | if (!fQuiet) { |
---|
[f03053a7] | 359 | /* clock() typically wraps after 72 minutes, but there doesn't seem |
---|
| 360 | * to be a better way. Still 72 minutes means some cave! |
---|
| 361 | */ |
---|
[647407d] | 362 | tmCPU = (clock_t)(clock() - tmCPUStart) / (double)CLOCKS_PER_SEC; |
---|
| 363 | tmUser = difftime(time(NULL), tmUserStart); |
---|
| 364 | |
---|
| 365 | /* tmCPU is integer, tmUser not - equivalent to (ceil(tmCPU) >= tmUser) */ |
---|
| 366 | if (tmCPU + 1 > tmUser) { |
---|
[421b7d2] | 367 | printf(msg(/*CPU time used %5.2fs*/140), tmCPU); |
---|
[647407d] | 368 | } else if (tmCPU == 0) { |
---|
[421b7d2] | 369 | if (tmUser == 0.0) { |
---|
| 370 | printf(msg(/*Time used %5.2fs*/141), tmUser); |
---|
[647407d] | 371 | } else { |
---|
[421b7d2] | 372 | fputs(msg(/*Time used unavailable*/142), stdout); |
---|
[647407d] | 373 | } |
---|
[bb90203] | 374 | } else { |
---|
[5b68ae1] | 375 | printf(msg(/*Time used %5.2fs (%5.2fs CPU time)*/143), tmUser, tmCPU); |
---|
[bb90203] | 376 | } |
---|
[5b68ae1] | 377 | putnl(); |
---|
[bb90203] | 378 | |
---|
[5b68ae1] | 379 | puts(msg(/*Done.*/144)); |
---|
[647407d] | 380 | } |
---|
[25ab06b] | 381 | if (msg_warnings || msg_errors) { |
---|
[7ebee5b] | 382 | if (msg_errors || (f_warnings_are_errors && msg_warnings)) { |
---|
| 383 | printf(msg(/*There were %d warning(s) and %d non-fatal error(s) - no output files produced.*/113), |
---|
| 384 | msg_warnings, msg_errors); |
---|
| 385 | putnl(); |
---|
| 386 | return EXIT_FAILURE; |
---|
| 387 | } |
---|
| 388 | printf(msg(/*There were %d warning(s).*/16), msg_warnings); |
---|
[25ab06b] | 389 | putnl(); |
---|
| 390 | } |
---|
[bb9d869] | 391 | return EXIT_SUCCESS; |
---|
[bb90203] | 392 | } |
---|
| 393 | |
---|
| 394 | static void |
---|
[2b6eca8] | 395 | do_range(int d, int msg1, int msg2, int msg3) |
---|
[bb90203] | 396 | { |
---|
[2b6eca8] | 397 | printf(msg(msg1), max[d] - min[d]); |
---|
| 398 | fprint_prefix(stdout, pfxHi[d]); |
---|
| 399 | printf(msg(msg2), max[d]); |
---|
| 400 | fprint_prefix(stdout, pfxLo[d]); |
---|
| 401 | printf(msg(msg3), min[d]); |
---|
| 402 | putnl(); |
---|
[bb90203] | 403 | } |
---|
| 404 | |
---|
| 405 | static void |
---|
[06a871f] | 406 | do_stats(void) |
---|
[bb90203] | 407 | { |
---|
| 408 | long cLoops = cComponents + cLegs - cStns; |
---|
| 409 | |
---|
[2b6eca8] | 410 | putnl(); |
---|
[bb90203] | 411 | |
---|
[a63fdd2a] | 412 | if (cStns == 1) { |
---|
[2b6eca8] | 413 | fputs(msg(/*Survey contains 1 survey station,*/172), stdout); |
---|
[a63fdd2a] | 414 | } else { |
---|
[2b6eca8] | 415 | printf(msg(/*Survey contains %ld survey stations,*/173), cStns); |
---|
[a63fdd2a] | 416 | } |
---|
[bb90203] | 417 | |
---|
[a63fdd2a] | 418 | if (cLegs == 1) { |
---|
[2b6eca8] | 419 | fputs(msg(/* joined by 1 leg.*/174), stdout); |
---|
[a63fdd2a] | 420 | } else { |
---|
[2b6eca8] | 421 | printf(msg(/* joined by %ld legs.*/175), cLegs); |
---|
[a63fdd2a] | 422 | } |
---|
[bb90203] | 423 | |
---|
[2b6eca8] | 424 | putnl(); |
---|
[bb90203] | 425 | |
---|
[a63fdd2a] | 426 | if (cLoops == 1) { |
---|
[2b6eca8] | 427 | fputs(msg(/*There is 1 loop.*/138), stdout); |
---|
[a63fdd2a] | 428 | } else { |
---|
[2b6eca8] | 429 | printf(msg(/*There are %ld loops.*/139), cLoops); |
---|
[a63fdd2a] | 430 | } |
---|
[bb90203] | 431 | |
---|
[2b6eca8] | 432 | putnl(); |
---|
[bb90203] | 433 | |
---|
| 434 | if (cComponents != 1) { |
---|
[2b6eca8] | 435 | printf(msg(/*Survey has %ld connected components.*/178), cComponents); |
---|
[a63fdd2a] | 436 | putnl(); |
---|
| 437 | } |
---|
[bb90203] | 438 | |
---|
[2b6eca8] | 439 | printf(msg(/*Total length of survey legs = %7.2fm (%7.2fm adjusted)*/132), |
---|
| 440 | total, totadj); |
---|
| 441 | putnl(); |
---|
| 442 | printf(msg(/*Total plan length of survey legs = %7.2fm*/133), |
---|
| 443 | totplan); |
---|
| 444 | putnl(); |
---|
| 445 | printf(msg(/*Total vertical length of survey legs = %7.2fm*/134), |
---|
| 446 | totvert); |
---|
| 447 | putnl(); |
---|
| 448 | |
---|
[4ae2ea4] | 449 | /* If there's no underground survey, we've no ranges */ |
---|
| 450 | if (pfxHi[0]) { |
---|
| 451 | do_range(2, /*Vertical range = %4.2fm (from */135, |
---|
| 452 | /* at %4.2fm to */136, /* at %4.2fm)*/137); |
---|
| 453 | do_range(1, /*North-South range = %4.2fm (from */148, |
---|
| 454 | /* at %4.2fm to */196, /* at %4.2fm)*/197); |
---|
| 455 | do_range(0, /*East-West range = %4.2fm (from */149, |
---|
| 456 | /* at %4.2fm to */196, /* at %4.2fm)*/197); |
---|
| 457 | } |
---|
[bb90203] | 458 | |
---|
[2b6eca8] | 459 | print_node_stats(); |
---|
[bb90203] | 460 | /* Also, could give: |
---|
| 461 | * # nodes stations (ie have other than two references or are fixed) |
---|
| 462 | * # fixed stations (list of?) |
---|
| 463 | */ |
---|
| 464 | } |
---|