source: git/src/datain.c @ 167626d

RELEASE/1.2debug-cidebug-ci-sanitisersfaster-cavernlogwalls-datawalls-data-hanging-as-warning
Last change on this file since 167626d was 78ed938, checked in by Olly Betts <olly@…>, 7 years ago

Make arrays of fixed data "const"

  • Property mode set to 100644
File size: 58.0 KB
RevLine 
[b0d908e]1/* datain.c
[d1b1380]2 * Reads in survey files, dealing with special characters, keywords & data
[aba729d]3 * Copyright (C) 1991-2003,2005,2009,2010,2011,2012,2013,2014,2015,2016,2017 Olly Betts
[44bb30d]4 * Copyright (C) 2004 Simeon Warner
[846746e]5 *
[89231c4]6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
[846746e]10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
[89231c4]13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
[846746e]15 *
[89231c4]16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
[ecbc6c18]18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
[d1b1380]19 */
20
[a420b49]21#ifdef HAVE_CONFIG_H
22#include <config.h>
23#endif
[d1b1380]24
25#include <limits.h>
[a420b49]26#include <stdarg.h>
[d1b1380]27
28#include "debug.h"
[a420b49]29#include "cavern.h"
[c60cb16]30#include "date.h"
[07025e3]31#include "filename.h"
32#include "message.h"
[d1b1380]33#include "filelist.h"
34#include "netbits.h"
[5853657]35#include "netskel.h"
[d1b1380]36#include "readval.h"
37#include "datain.h"
38#include "commands.h"
39#include "out.h"
[39fba51]40#include "str.h"
[58c7b459]41#include "thgeomag.h"
[d1b1380]42
[2b078c4]43#define EPSILON (REAL_EPSILON * 1000)
[d1b1380]44
[58cc1fb]45#define var(I) (pcs->Var[(I)])
[d1b1380]46
[44bb30d]47/* true if x is not-a-number value in Compass (999.0 or -999.0)    */
48/* Compass uses 999.0 but understands Karst data which used -999.0 */
49#define is_compass_NaN(x) ( fabs(fabs(x)-999.0) <  EPSILON )
50
[58cc1fb]51int ch;
[d1b1380]52
[be97baf]53typedef enum {
54    CTYPE_OMIT, CTYPE_READING, CTYPE_PLUMB, CTYPE_INFERPLUMB, CTYPE_HORIZ
55} clino_type;
[5b7c1b7]56
[eb18f4d]57/* Don't explicitly initialise as we can't set the jmp_buf - this has
58 * static scope so will be initialised like this anyway */
[b0d908e]59parse file /* = { NULL, NULL, 0, fFalse, NULL } */ ;
[a420b49]60
[932f7e9]61bool f_export_ok;
62
[21c226e]63static real value[Fr - 1];
64#define VAL(N) value[(N)-1]
65static real variance[Fr - 1];
66#define VAR(N) variance[(N)-1]
[e78a53a]67static long location[Fr - 1];
68#define LOC(N) location[(N)-1]
[76d5230]69static int location_width[Fr - 1];
70#define WID(N) location_width[(N)-1]
[21c226e]71
[ee05463]72/* style functions */
[e2d48d8]73static void data_normal(void);
74static void data_cartesian(void);
75static void data_passage(void);
76static void data_nosurvey(void);
77static void data_ignore(void);
[ee05463]78
[c7451a9]79void
[c80bd34]80get_pos(filepos *fp)
[c7451a9]81{
[c80bd34]82   fp->ch = ch;
83   fp->offset = ftell(file.fh);
84   if (fp->offset == -1)
[c7451a9]85      fatalerror_in_file(file.filename, 0, /*Error reading file*/18);
86}
87
[c80bd34]88void
89set_pos(const filepos *fp)
[c7451a9]90{
[c80bd34]91   ch = fp->ch;
92   if (fseek(file.fh, fp->offset, SEEK_SET) == -1)
[c7451a9]93      fatalerror_in_file(file.filename, 0, /*Error reading file*/18);
94}
95
[895f767]96static void
97report_parent(parse * p) {
98    if (p->parent)
99        report_parent(p->parent);
100    /* Force re-report of include tree for further errors in
101     * parent files */
102    p->reported_where = fFalse;
[736f7df]103    /* TRANSLATORS: %s is replaced by the filename of the parent file, and %u
[0b8c321]104     * by the line number in that file.  Your translation should also contain
105     * %s:%u so that automatic parsing of error messages to determine the file
106     * and line number still works. */
[895f767]107    fprintf(STDERR, msg(/*In file included from %s:%u:\n*/5), p->filename, p->line);
108}
109
[a420b49]110static void
111error_list_parent_files(void)
112{
[b0d908e]113   if (!file.reported_where && file.parent) {
[895f767]114      report_parent(file.parent);
[b0d908e]115      /* Suppress reporting of full include tree for further errors
116       * in this file */
117      file.reported_where = fTrue;
[a420b49]118   }
119}
120
[9b5f251]121static void
[2e386e2]122show_line(int col, int width)
[7e0ea2f]123{
[9b5f251]124   /* Rewind to beginning of line. */
125   long cur_pos = ftell(file.fh);
[917a6ba]126   int tabs = 0;
[9b5f251]127   if (cur_pos < 0 || fseek(file.fh, file.lpos, SEEK_SET) == -1)
128      fatalerror_in_file(file.filename, 0, /*Error reading file*/18);
[7e0ea2f]129
[9b5f251]130   /* Read the whole line and write it out. */
[d450200]131   PUTC(' ', STDERR);
[718e568]132   while (1) {
[9b5f251]133      int c = GETC(file.fh);
[718e568]134      /* Note: isEol() is true for EOF */
[9b5f251]135      if (isEol(c)) break;
[917a6ba]136      if (c == '\t') ++tabs;
[9b5f251]137      PUTC(c, STDERR);
[7e0ea2f]138   }
[9b5f251]139   fputnl(STDERR);
140
[96f6252]141   /* If we have a location in the line for the error, indicate it. */
142   if (col) {
[d450200]143      PUTC(' ', STDERR);
[917a6ba]144      if (tabs == 0) {
145         while (--col) PUTC(' ', STDERR);
146      } else {
147         /* Copy tabs from line, replacing other characters with spaces - this
148          * means that the caret should line up correctly. */
149         if (fseek(file.fh, file.lpos, SEEK_SET) == -1)
150            fatalerror_in_file(file.filename, 0, /*Error reading file*/18);
151         while (--col) {
152            int c = GETC(file.fh);
153            if (c != '\t') c = ' ';
154            PUTC(c, STDERR);
155         }
156      }
[96f6252]157      PUTC('^', STDERR);
[2e386e2]158      while (width > 1) {
159         PUTC('~', STDERR);
160         --width;
161      }
[96f6252]162      fputnl(STDERR);
163   }
164
[9b5f251]165   /* Revert to where we were. */
166   if (fseek(file.fh, cur_pos, SEEK_SET) == -1)
167      fatalerror_in_file(file.filename, 0, /*Error reading file*/18);
[7e0ea2f]168}
169
[2e386e2]170static int caret_width = 0;
171
[f8b1f6a]172static void
[7d89246]173compile_v_report_fpos(int severity, long fpos, int en, va_list ap)
[a420b49]174{
[da96015]175   int col = 0;
[a420b49]176   error_list_parent_files();
[9f55538]177   if (fpos >= file.lpos)
178      col = fpos - file.lpos - caret_width;
[f8b1f6a]179   v_report(severity, file.filename, file.line, col, en, ap);
[76d5230]180   if (file.fh) show_line(col, caret_width);
[f8b1f6a]181}
182
[7d89246]183static void
[cab0f26]184compile_v_report(int diag_flags, int en, va_list ap)
[7d89246]185{
[cab0f26]186   int severity = (diag_flags & DIAG_SEVERITY_MASK);
187   if (diag_flags & (DIAG_COL|DIAG_BUF)) {
[9f55538]188      if (file.fh) {
[cab0f26]189         if (diag_flags & DIAG_BUF) caret_width = strlen(buffer);
[9f55538]190         compile_v_report_fpos(severity, ftell(file.fh), en, ap);
[cab0f26]191         if (diag_flags & DIAG_BUF) caret_width = 0;
192         if (diag_flags & DIAG_SKIP) skipline();
[9f55538]193         return;
194      }
195   }
196   error_list_parent_files();
197   v_report(severity, file.filename, file.line, 0, en, ap);
[cab0f26]198   if (file.fh) {
199      if (diag_flags & DIAG_BUF) {
200         show_line(0, strlen(buffer));
201      } else {
202         show_line(0, caret_width);
203      }
204   }
205   if (diag_flags & DIAG_SKIP) skipline();
[a420b49]206}
207
[fa42426]208void
[cab0f26]209compile_diagnostic(int diag_flags, int en, ...)
[76d5230]210{
211   va_list ap;
212   va_start(ap, en);
[c270761]213   if (diag_flags & (DIAG_TOKEN|DIAG_UINT|DIAG_DATE|DIAG_NUM)) {
[1d74718]214      char *p = NULL;
215      int len = 0;
216      skipblanks();
217      if (diag_flags & DIAG_TOKEN) {
218         while (!isBlank(ch) && !isEol(ch)) {
219            s_catchar(&p, &len, (char)ch);
220            nextch();
221         }
[c270761]222      } else if (diag_flags & DIAG_UINT) {
[1d74718]223         while (isdigit(ch)) {
224            s_catchar(&p, &len, (char)ch);
225            nextch();
226         }
[c270761]227      } else if (diag_flags & DIAG_DATE) {
[1d74718]228         while (isdigit(ch) || ch == '.') {
229            s_catchar(&p, &len, (char)ch);
230            nextch();
231         }
[c270761]232      } else {
233         if (isMinus(ch) || isPlus(ch)) {
234            s_catchar(&p, &len, (char)ch);
235            nextch();
236         }
237         while (isdigit(ch)) {
238            s_catchar(&p, &len, (char)ch);
239            nextch();
240         }
241         if (isDecimal(ch)) {
242            s_catchar(&p, &len, (char)ch);
243            nextch();
244         }
245         while (isdigit(ch)) {
246            s_catchar(&p, &len, (char)ch);
247            nextch();
248         }
[1d74718]249      }
250      if (p) {
251         caret_width = strlen(p);
252         osfree(p);
253      }
254      compile_v_report(diag_flags|DIAG_COL, en, ap);
255      caret_width = 0;
256   } else {
257      compile_v_report(diag_flags, en, ap);
258   }
[76d5230]259   va_end(ap);
260}
261
[e78a53a]262static void
[cab0f26]263compile_diagnostic_reading(int diag_flags, reading r, int en, ...)
[e78a53a]264{
265   va_list ap;
[cab0f26]266   int severity = (diag_flags & DIAG_SEVERITY_MASK);
[e78a53a]267   va_start(ap, en);
[76d5230]268   caret_width = WID(r);
[cab0f26]269   compile_v_report_fpos(severity, LOC(r) + caret_width, en, ap);
[76d5230]270   caret_width = 0;
[e78a53a]271   va_end(ap);
272}
273
274static void
275compile_error_reading_skip(reading r, int en, ...)
276{
277   va_list ap;
[ebe86cb]278   va_start(ap, en);
[76d5230]279   caret_width = WID(r);
280   compile_v_report_fpos(1, LOC(r) + caret_width, en, ap);
281   caret_width = 0;
[e78a53a]282   va_end(ap);
283   skipline();
284}
285
[93e3492]286void
[cab0f26]287compile_diagnostic_at(int diag_flags, const char * filename, unsigned line, int en, ...)
[93e3492]288{
289   va_list ap;
[cab0f26]290   int severity = (diag_flags & DIAG_SEVERITY_MASK);
[93e3492]291   va_start(ap, en);
[cab0f26]292   v_report(severity, filename, line, 0, en, ap);
[93e3492]293   va_end(ap);
294}
295
296void
[cab0f26]297compile_diagnostic_pfx(int diag_flags, const prefix * pfx, int en, ...)
[93e3492]298{
299   va_list ap;
[cab0f26]300   int severity = (diag_flags & DIAG_SEVERITY_MASK);
[93e3492]301   va_start(ap, en);
[cab0f26]302   v_report(severity, pfx->filename, pfx->line, 0, en, ap);
[93e3492]303   va_end(ap);
304}
305
[9f55538]306void
[cab0f26]307compile_diagnostic_token_show(int diag_flags, int en)
[9f55538]308{
309   char *p = NULL;
310   int len = 0;
311   skipblanks();
312   while (!isBlank(ch) && !isEol(ch)) {
313      s_catchar(&p, &len, (char)ch);
314      nextch();
315   }
316   if (p) {
317      caret_width = strlen(p);
[cab0f26]318      compile_diagnostic(diag_flags|DIAG_COL, en, p);
[2e386e2]319      caret_width = 0;
320      osfree(p);
321   } else {
[cab0f26]322      compile_diagnostic(DIAG_ERR|DIAG_COL, en, "");
[2e386e2]323   }
[39fba51]324}
325
[9f55538]326static void
327compile_error_string(const char * s, int en, ...)
328{
329   va_list ap;
330   va_start(ap, en);
331   caret_width = strlen(s);
[cab0f26]332   compile_v_report(DIAG_ERR|DIAG_COL, en, ap);
[9f55538]333   va_end(ap);
334   caret_width = 0;
335}
336
[a420b49]337/* This function makes a note where to put output files */
338static void
339using_data_file(const char *fnm)
340{
341   if (!fnm_output_base) {
[4bab027]342      /* was: fnm_output_base = base_from_fnm(fnm); */
343      fnm_output_base = baseleaf_from_fnm(fnm);
344   } else if (fnm_output_base_is_dir) {
345      /* --output pointed to directory so use the leaf basename in that dir */
346      char *lf, *p;
347      lf = baseleaf_from_fnm(fnm);
348      p = use_path(fnm_output_base, lf);
349      osfree(lf);
350      osfree(fnm_output_base);
351      fnm_output_base = p;
352      fnm_output_base_is_dir = 0;
[58cc1fb]353   }
354}
355
[a420b49]356static void
357skipword(void)
358{
[58cc1fb]359   while (!isBlank(ch) && !isEol(ch)) nextch();
[d1b1380]360}
361
[a420b49]362extern void
363skipblanks(void)
364{
[58cc1fb]365   while (isBlank(ch)) nextch();
[d1b1380]366}
367
[a420b49]368extern void
369skipline(void)
370{
[58cc1fb]371   while (!isEol(ch)) nextch();
[d1b1380]372}
373
[90bb053f]374static void
375process_eol(void)
376{
377   int eolchar;
378
379   skipblanks();
380
381   if (!isEol(ch)) {
[cab0f26]382      if (!isComm(ch))
383         compile_diagnostic(DIAG_ERR|DIAG_COL, /*End of line not blank*/15);
[90bb053f]384      skipline();
385   }
386
387   eolchar = ch;
388   file.line++;
389   /* skip any different eol characters so we get line counts correct on
390    * DOS text files and similar, but don't count several adjacent blank
391    * lines as one */
392   while (ch != EOF) {
393      nextch();
394      if (ch == eolchar || !isEol(ch)) {
395         break;
396      }
[04c461e]397      if (ch == '\n') eolchar = ch;
[90bb053f]398   }
[9d2f254]399   file.lpos = ftell(file.fh) - 1;
[90bb053f]400}
401
402static bool
403process_non_data_line(void)
404{
[4b4ac38]405   skipblanks();
[90bb053f]406
407   if (isData(ch)) return fFalse;
408
409   if (isKeywd(ch)) {
410      nextch();
411      handle_command();
412   }
413
414   process_eol();
415
416   return fTrue;
417}
418
[21c226e]419static void
420read_reading(reading r, bool f_optional)
421{
422   int n_readings;
423   q_quantity q;
424   switch (r) {
425      case Tape: q = Q_LENGTH; break;
[4f38f94]426      case BackTape: q = Q_BACKLENGTH; break;
[21c226e]427      case Comp: q = Q_BEARING; break;
428      case BackComp: q = Q_BACKBEARING; break;
429      case Clino: q = Q_GRADIENT; break;
430      case BackClino: q = Q_BACKGRADIENT; break;
431      case FrDepth: case ToDepth: q = Q_DEPTH; break;
432      case Dx: q = Q_DX; break;
433      case Dy: q = Q_DY; break;
434      case Dz: q = Q_DZ; break;
435      case FrCount: case ToCount: q = Q_COUNT; break;
[07442af]436      case Left: q = Q_LEFT; break;
437      case Right: q = Q_RIGHT; break;
438      case Up: q = Q_UP; break;
439      case Down: q = Q_DOWN; break;
[74a0681]440      default:
[44bb30d]441        q = Q_NULL; /* Suppress compiler warning */;
[74a0681]442        BUG("Unexpected case");
[21c226e]443   }
[e78a53a]444   LOC(r) = ftell(file.fh);
[d3241e6]445   VAL(r) = read_numeric_multi(f_optional, &n_readings);
[76d5230]446   WID(r) = ftell(file.fh) - LOC(r);
[21c226e]447   VAR(r) = var(q);
448   if (n_readings > 1) VAR(r) /= sqrt(n_readings);
449}
450
451static void
452read_bearing_or_omit(reading r)
453{
454   int n_readings;
[74a0681]455   q_quantity q = Q_NULL;
[e78a53a]456   LOC(r) = ftell(file.fh);
[d3241e6]457   VAL(r) = read_numeric_multi_or_omit(&n_readings);
[76d5230]458   WID(r) = ftell(file.fh) - LOC(r);
[21c226e]459   switch (r) {
460      case Comp: q = Q_BEARING; break;
461      case BackComp: q = Q_BACKBEARING; break;
[74a0681]462      default:
[44bb30d]463        q = Q_NULL; /* Suppress compiler warning */;
[74a0681]464        BUG("Unexpected case");
[21c226e]465   }
466   VAR(r) = var(q);
467   if (n_readings > 1) VAR(r) /= sqrt(n_readings);
468}
469
[be97baf]470/* For reading Compass MAK files which have a freeform syntax */
471static void
472nextch_handling_eol(void)
473{
474   nextch();
475   while (ch != EOF && isEol(ch)) {
476      process_eol();
477   }
478}
479
480#define LITLEN(S) (sizeof(S"") - 1)
481#define has_ext(F,L,E) ((L) > LITLEN(E) + 1 &&\
482                        (F)[(L) - LITLEN(E) - 1] == FNM_SEP_EXT &&\
483                        strcasecmp((F) + (L) - LITLEN(E), E) == 0)
[a420b49]484extern void
485data_file(const char *pth, const char *fnm)
486{
[47c7a94]487   int begin_lineno_store;
[7f08c83]488   parse file_store;
[b4fe9fb]489   volatile enum {FMT_SVX, FMT_DAT, FMT_MAK} fmt = FMT_SVX;
[d1b1380]490
[7f08c83]491   {
492      char *filename;
[f4b609d]493      FILE *fh;
[be97baf]494      size_t len;
495
[f4b609d]496      if (!pth) {
497         /* file specified on command line - don't do special translation */
498         fh = fopenWithPthAndExt(pth, fnm, EXT_SVX_DATA, "rb", &filename);
499      } else {
500         fh = fopen_portable(pth, fnm, EXT_SVX_DATA, "rb", &filename);
501      }
[bd1913f]502
[7f08c83]503      if (fh == NULL) {
[cab0f26]504         compile_error_string(fnm, /*Couldn’t open file “%s”*/24, fnm);
[7f08c83]505         return;
506      }
507
[be97baf]508      len = strlen(filename);
509      if (has_ext(filename, len, "dat")) {
510         fmt = FMT_DAT;
511      } else if (has_ext(filename, len, "mak")) {
512         fmt = FMT_MAK;
513      }
514
[7f08c83]515      file_store = file;
516      if (file.fh) file.parent = &file_store;
517      file.fh = fh;
518      file.filename = filename;
519      file.line = 1;
[da96015]520      file.lpos = 0;
[b0d908e]521      file.reported_where = fFalse;
[4b4ac38]522      nextch();
[4d6c023]523      if (fmt == FMT_SVX && ch == 0xef) {
524         /* Maybe a UTF-8 "BOM" - skip if so. */
525         if (nextch() == 0xbb && nextch() == 0xbf) {
526            nextch();
527            file.lpos = 3;
528         } else {
529            rewind(fh);
530            ch = 0xef;
531         }
532      }
[a420b49]533   }
[cb3d1e2]534
[a420b49]535   using_data_file(file.filename);
[d1b1380]536
[47c7a94]537   begin_lineno_store = pcs->begin_lineno;
538   pcs->begin_lineno = 0;
[cb3d1e2]539
[be97baf]540   if (fmt == FMT_DAT) {
541      short *t;
542      int i;
543      settings *pcsNew;
544
545      pcsNew = osnew(settings);
546      *pcsNew = *pcs; /* copy contents */
547      pcsNew->begin_lineno = 0;
548      pcsNew->next = pcs;
549      pcs = pcsNew;
550      default_units(pcs);
551      default_calib(pcs);
552
553      pcs->style = STYLE_NORMAL;
554      pcs->units[Q_LENGTH] = METRES_PER_FOOT;
555      t = ((short*)osmalloc(ossizeof(short) * 257)) + 1;
556
557      t[EOF] = SPECIAL_EOL;
558      memset(t, 0, sizeof(short) * 33);
559      for (i = 33; i < 127; i++) t[i] = SPECIAL_NAMES;
560      t[127] = 0;
561      for (i = 128; i < 256; i++) t[i] = SPECIAL_NAMES;
562      t['\t'] |= SPECIAL_BLANK;
563      t[' '] |= SPECIAL_BLANK;
564      t['\032'] |= SPECIAL_EOL; /* Ctrl-Z, so olde DOS text files are handled ok */
565      t['\n'] |= SPECIAL_EOL;
566      t['\r'] |= SPECIAL_EOL;
567      t['.'] |= SPECIAL_DECIMAL;
568      t['-'] |= SPECIAL_MINUS;
569      t['+'] |= SPECIAL_PLUS;
570      pcs->Translate = t;
571      pcs->Case = OFF;
572      pcs->Truncate = INT_MAX;
[e9ea53b]573      pcs->infer = BIT(INFER_EQUATES)|BIT(INFER_EXPORTS)|BIT(INFER_PLUMBS);
[be97baf]574   } else if (fmt == FMT_MAK) {
575      short *t;
576      int i;
577      settings *pcsNew;
578
579      pcsNew = osnew(settings);
580      *pcsNew = *pcs; /* copy contents */
581      pcsNew->begin_lineno = 0;
582      pcsNew->next = pcs;
583      pcs = pcsNew;
584
585      t = ((short*)osmalloc(ossizeof(short) * 257)) + 1;
[44bb30d]586
[be97baf]587      t[EOF] = SPECIAL_EOL;
588      memset(t, 0, sizeof(short) * 33);
589      for (i = 33; i < 127; i++) t[i] = SPECIAL_NAMES;
590      t[127] = 0;
591      for (i = 128; i < 256; i++) t[i] = SPECIAL_NAMES;
592      t['['] = t[','] = t[';'] = 0;
593      t['\t'] |= SPECIAL_BLANK;
594      t[' '] |= SPECIAL_BLANK;
595      t['\032'] |= SPECIAL_EOL; /* Ctrl-Z, so olde DOS text files are handled ok */
596      t['\n'] |= SPECIAL_EOL;
597      t['\r'] |= SPECIAL_EOL;
598      t['.'] |= SPECIAL_DECIMAL;
599      t['-'] |= SPECIAL_MINUS;
600      t['+'] |= SPECIAL_PLUS;
601      pcs->Translate = t;
602      pcs->Case = OFF;
603      pcs->Truncate = INT_MAX;
604   }
605
[7d5f3c0]606#ifdef HAVE_SETJMP_H
[a420b49]607   /* errors in nested functions can longjmp here */
608   if (setjmp(file.jbSkipLine)) {
[e363f8b]609      skipline();
[076d33d]610      process_eol();
[a420b49]611   }
[d1b1380]612#endif
[cb3d1e2]613
[be97baf]614   if (fmt == FMT_DAT) {
[718e568]615      while (ch != EOF && !ferror(file.fh)) {
[78ed938]616         static const reading compass_order[] = {
[44bb30d]617            Fr, To, Tape, CompassDATComp, CompassDATClino,
[07442af]618            CompassDATLeft, CompassDATRight, CompassDATUp, CompassDATDown,
[be97baf]619            CompassDATFlags, IgnoreAll
620         };
[78ed938]621         static const reading compass_order_backsights[] = {
[44bb30d]622            Fr, To, Tape, CompassDATComp, CompassDATClino,
[07442af]623            CompassDATLeft, CompassDATRight, CompassDATUp, CompassDATDown,
[44bb30d]624            CompassDATBackComp, CompassDATBackClino,
[be97baf]625            CompassDATFlags, IgnoreAll
626         };
627         /* <Cave name> */
628         skipline();
629         process_eol();
630         /* SURVEY NAME: <Short name> */
631         get_token();
632         get_token();
633         /* if (ch != ':') ... */
634         nextch();
635         get_token();
636         skipline();
637         process_eol();
638         /* SURVEY DATE: 7 10 79  COMMENT:<Long name> */
639         get_token();
640         get_token();
[5dc0378]641         copy_on_write_meta(pcs);
[b5a3219]642         if (ch == ':') {
[1ee204e]643             int year, month, day;
[b5a3219]644
645             nextch();
[1ee204e]646
[2c39b49]647             /* NB order is *month* *day* year */
[1ee204e]648             month = read_uint();
649             day = read_uint();
650             year = read_uint();
[b5a3219]651             /* Note: Larry says a 2 digit year is always 19XX */
[1ee204e]652             if (year < 100) year += 1900;
[b5a3219]653
[1ee204e]654             pcs->meta->days1 = pcs->meta->days2 = days_since_1900(year, month, day);
[a6301a1]655         } else {
[1ee204e]656             pcs->meta->days1 = pcs->meta->days2 = -1;
[b5a3219]657         }
[95b0f1d]658         pcs->declination = HUGE_REAL;
[be97baf]659         skipline();
660         process_eol();
661         /* SURVEY TEAM: */
662         get_token();
663         get_token();
664         skipline();
665         process_eol();
666         /* <Survey team> */
667         skipline();
668         process_eol();
669         /* DECLINATION: 1.00  FORMAT: DDDDLUDRADLN  CORRECTIONS: 2.00 3.00 4.00 */
670         get_token();
671         nextch(); /* : */
672         skipblanks();
[d3241e6]673         pcs->z[Q_DECLINATION] = -read_numeric(fFalse);
[be97baf]674         pcs->z[Q_DECLINATION] *= pcs->units[Q_DECLINATION];
675         get_token();
676         pcs->ordering = compass_order;
677         if (strcmp(buffer, "FORMAT") == 0) {
678            nextch(); /* : */
679            get_token();
680            if (strlen(buffer) >= 12 && buffer[11] == 'B') {
681               /* We have backsights for compass and clino */
682               pcs->ordering = compass_order_backsights;
683            }
684            get_token();
[107b8bd]685         }
[be97baf]686         if (strcmp(buffer, "CORRECTIONS") == 0) {
687            nextch(); /* : */
[d3241e6]688            pcs->z[Q_BEARING] = -rad(read_numeric(fFalse));
689            pcs->z[Q_GRADIENT] = -rad(read_numeric(fFalse));
690            pcs->z[Q_LENGTH] = -read_numeric(fFalse);
[be97baf]691         } else {
692            pcs->z[Q_BEARING] = 0;
693            pcs->z[Q_GRADIENT] = 0;
694            pcs->z[Q_LENGTH] = 0;
[a420b49]695         }
[be97baf]696         skipline();
697         process_eol();
698         /* BLANK LINE */
699         skipline();
700         process_eol();
701         /* heading line */
702         skipline();
703         process_eol();
704         /* BLANK LINE */
705         skipline();
706         process_eol();
[718e568]707         while (ch != EOF) {
[be97baf]708            if (ch == '\x0c') {
709               nextch();
710               process_eol();
711               break;
712            }
[e2d48d8]713            data_normal();
[be97baf]714         }
[dda0ca7]715         clear_last_leg();
[be97baf]716      }
717      {
718         settings *pcsParent = pcs->next;
719         SVX_ASSERT(pcsParent);
720         pcs->ordering = NULL;
721         free_settings(pcs);
722         pcs = pcsParent;
[44bb30d]723      }
[be97baf]724   } else if (fmt == FMT_MAK) {
725      nextch_handling_eol();
[718e568]726      while (ch != EOF && !ferror(file.fh)) {
[be97baf]727         if (ch == '#') {
728            /* include a file */
729            int ch_store;
[b4fe9fb]730            char *dat_pth = path_from_fnm(file.filename);
731            char *dat_fnm = NULL;
732            int dat_fnm_len;
[be97baf]733            nextch_handling_eol();
734            while (ch != ',' && ch != ';' && ch != EOF) {
735               while (isEol(ch)) process_eol();
[63dc4eb]736               s_catchar(&dat_fnm, &dat_fnm_len, (char)ch);
[be97baf]737               nextch_handling_eol();
738            }
739            while (ch != ';' && ch != EOF) {
740               prefix *name;
741               nextch_handling_eol();
[c458cf7]742               name = read_prefix(PFX_STATION|PFX_OPT);
[be97baf]743               if (name) {
744                  skipblanks();
745                  if (ch == '[') {
746                     /* fixed pt */
747                     node *stn;
748                     real x, y, z;
749                     name->sflags |= BIT(SFLAGS_FIXED);
750                     nextch_handling_eol();
751                     while (!isdigit(ch) && ch != '+' && ch != '-' &&
752                            ch != '.' && ch != ']' && ch != EOF) {
753                        nextch_handling_eol();
754                     }
[d3241e6]755                     x = read_numeric(fFalse);
[be97baf]756                     while (!isdigit(ch) && ch != '+' && ch != '-' &&
757                            ch != '.' && ch != ']' && ch != EOF) {
758                        nextch_handling_eol();
759                     }
[d3241e6]760                     y = read_numeric(fFalse);
[be97baf]761                     while (!isdigit(ch) && ch != '+' && ch != '-' &&
762                            ch != '.' && ch != ']' && ch != EOF) {
763                        nextch_handling_eol();
764                     }
[d3241e6]765                     z = read_numeric(fFalse);
[be97baf]766                     stn = StnFromPfx(name);
767                     if (!fixed(stn)) {
768                        POS(stn, 0) = x;
769                        POS(stn, 1) = y;
770                        POS(stn, 2) = z;
771                        fix(stn);
772                     } else {
773                        if (x != POS(stn, 0) || y != POS(stn, 1) ||
774                            z != POS(stn, 2)) {
[cab0f26]775                           compile_diagnostic(DIAG_ERR, /*Station already fixed or equated to a fixed point*/46);
[be97baf]776                        } else {
[cab0f26]777                           compile_diagnostic(DIAG_WARN, /*Station already fixed at the same coordinates*/55);
[be97baf]778                        }
779                     }
780                     while (ch != ']' && ch != EOF) nextch_handling_eol();
781                     if (ch == ']') {
782                        nextch_handling_eol();
783                        skipblanks();
784                     }
785                  } else {
786                     /* FIXME: link station - ignore for now */
787                     /* FIXME: perhaps issue warning? */
788                  }
789                  while (ch != ',' && ch != ';' && ch != EOF)
790                     nextch_handling_eol();
791               }
792            }
[b4fe9fb]793            if (dat_fnm) {
[be97baf]794               ch_store = ch;
[b4fe9fb]795               data_file(dat_pth, dat_fnm);
[be97baf]796               ch = ch_store;
[b4fe9fb]797               osfree(dat_fnm);
[be97baf]798            }
799         } else {
800            /* FIXME: also check for % and $ later */
801            nextch_handling_eol();
802         }
803      }
804      {
805         settings *pcsParent = pcs->next;
806         SVX_ASSERT(pcsParent);
807         free_settings(pcs);
808         pcs = pcsParent;
[44bb30d]809      }
[be97baf]810   } else {
[718e568]811      while (ch != EOF && !ferror(file.fh)) {
[be97baf]812         if (!process_non_data_line()) {
813            f_export_ok = fFalse;
814            switch (pcs->style) {
815             case STYLE_NORMAL:
816             case STYLE_DIVING:
817             case STYLE_CYLPOLAR:
[e2d48d8]818               data_normal();
[be97baf]819               break;
820             case STYLE_CARTESIAN:
[e2d48d8]821               data_cartesian();
[be97baf]822               break;
[ee05463]823             case STYLE_PASSAGE:
[e2d48d8]824               data_passage();
[ee05463]825               break;
[be97baf]826             case STYLE_NOSURVEY:
[e2d48d8]827               data_nosurvey();
[be97baf]828               break;
829             case STYLE_IGNORE:
[e2d48d8]830               data_ignore();
[be97baf]831               break;
832             default:
833               BUG("bad style");
834            }
835         }
[647407d]836      }
[dda0ca7]837      clear_last_leg();
[a420b49]838   }
839
[932f7e9]840   /* don't allow *BEGIN at the end of a file, then *EXPORT in the
841    * including file */
842   f_export_ok = fFalse;
843
[47c7a94]844   if (pcs->begin_lineno) {
[0e867ba6]845      error_in_file(file.filename, pcs->begin_lineno,
846                    /*BEGIN with no matching END in this file*/23);
[47c7a94]847      /* Implicitly close any unclosed BEGINs from this file */
848      do {
849         settings *pcsParent = pcs->next;
[4c07c51]850         SVX_ASSERT(pcsParent);
[647407d]851         free_settings(pcs);
[47c7a94]852         pcs = pcsParent;
853      } while (pcs->begin_lineno);
854   }
855
856   pcs->begin_lineno = begin_lineno_store;
[cb3d1e2]857
[22c9877]858   if (ferror(file.fh))
[bfe1242]859      fatalerror_in_file(file.filename, 0, /*Error reading file*/18);
[cb3d1e2]860
[22c9877]861   (void)fclose(file.fh);
[7f08c83]862
[22c9877]863   file = file_store;
[4d9eecd]864
865   /* don't free this - it may be pointed to by prefix.file */
866   /* osfree(file.filename); */
[a420b49]867}
[d1b1380]868
[b6de07d]869static real
870mod2pi(real a)
871{
872   return a - floor(a / (2 * M_PI)) * (2 * M_PI);
873}
874
[dcec245]875static real
[5b7c1b7]876handle_plumb(clino_type *p_ctype)
[dcec245]877{
878   typedef enum {
879      CLINO_NULL=-1, CLINO_UP, CLINO_DOWN, CLINO_LEVEL
880   } clino_tok;
[78ed938]881   static const sztok clino_tab[] = {
[dcec245]882      {"D",     CLINO_DOWN},
883      {"DOWN",  CLINO_DOWN},
884      {"H",     CLINO_LEVEL},
885      {"LEVEL", CLINO_LEVEL},
886      {"U",     CLINO_UP},
887      {"UP",    CLINO_UP},
888      {NULL,    CLINO_NULL}
889   };
[78ed938]890   static const real clinos[] = {(real)M_PI_2, (real)(-M_PI_2), (real)0.0};
[dcec245]891   clino_tok tok;
892
893   skipblanks();
894   if (isalpha(ch)) {
[c80bd34]895      filepos fp;
896      get_pos(&fp);
[dcec245]897      get_token();
898      tok = match_tok(clino_tab, TABSIZE(clino_tab));
899      if (tok != CLINO_NULL) {
[be97baf]900         *p_ctype = (tok == CLINO_LEVEL ? CTYPE_HORIZ : CTYPE_PLUMB);
[dcec245]901         return clinos[tok];
902      }
[c80bd34]903      set_pos(&fp);
[dcec245]904   } else if (isSign(ch)) {
905      int chOld = ch;
906      nextch();
907      if (toupper(ch) == 'V') {
908         nextch();
[fa42426]909         *p_ctype = CTYPE_PLUMB;
[bceebf4]910         return (!isMinus(chOld) ? M_PI_2 : -M_PI_2);
[dcec245]911      }
912
[bd1913f]913      if (isOmit(chOld)) {
[fa42426]914         *p_ctype = CTYPE_OMIT;
[dcec245]915         /* no clino reading, so assume 0 with large sd */
916         return (real)0.0;
917      }
[5b7c1b7]918   } else if (isOmit(ch)) {
919      /* OMIT char may not be a SIGN char too so we need to check here as
920       * well as above... */
921      nextch();
[fa42426]922      *p_ctype = CTYPE_OMIT;
[5b7c1b7]923      /* no clino reading, so assume 0 with large sd */
924      return (real)0.0;
[dcec245]925   }
926   return HUGE_REAL;
927}
928
[b6de07d]929static void
[85c0078]930warn_readings_differ(int msgno, real diff, int units)
[b6de07d]931{
932   char buf[64];
933   char *p;
[85c0078]934   diff /= get_units_factor(units);
935   sprintf(buf, "%.2f", fabs(diff));
936   for (p = buf; *p; ++p) {
937      if (*p == '.') {
938         char *z = p;
939         while (*++p) {
940            if (*p != '0') z = p + 1;
941         }
942         p = z;
943         break;
[b6de07d]944      }
945   }
[85c0078]946   strcpy(p, get_units_string(units));
[cab0f26]947   compile_diagnostic(DIAG_WARN, msgno, buf);
[b6de07d]948}
949
950static bool
[21c226e]951handle_comp_units(void)
[b6de07d]952{
953   bool fNoComp = fTrue;
[21c226e]954   if (VAL(Comp) != HUGE_REAL) {
[b6de07d]955      fNoComp = fFalse;
[21c226e]956      VAL(Comp) *= pcs->units[Q_BEARING];
957      if (VAL(Comp) < (real)0.0 || VAL(Comp) - M_PI * 2.0 > EPSILON) {
[736f7df]958         /* TRANSLATORS: Suspicious means something like 410 degrees or -20
959          * degrees */
[cab0f26]960         compile_diagnostic_reading(DIAG_WARN, Comp, /*Suspicious compass reading*/59);
[21c226e]961         VAL(Comp) = mod2pi(VAL(Comp));
[b6de07d]962      }
963   }
[21c226e]964   if (VAL(BackComp) != HUGE_REAL) {
[b6de07d]965      fNoComp = fFalse;
[21c226e]966      VAL(BackComp) *= pcs->units[Q_BACKBEARING];
967      if (VAL(BackComp) < (real)0.0 || VAL(BackComp) - M_PI * 2.0 > EPSILON) {
[b6de07d]968         /* FIXME: different message for BackComp? */
[cab0f26]969         compile_diagnostic_reading(DIAG_WARN, BackComp, /*Suspicious compass reading*/59);
[21c226e]970         VAL(BackComp) = mod2pi(VAL(BackComp));
[b6de07d]971      }
972   }
973   return fNoComp;
974}
975
976static real
[21c226e]977handle_compass(real *p_var)
[b6de07d]978{
[b4fe9fb]979   real compvar = VAR(Comp);
[21c226e]980   real comp = VAL(Comp);
981   real backcomp = VAL(BackComp);
[58c7b459]982   real declination;
983   if (pcs->z[Q_DECLINATION] != HUGE_REAL) {
984      declination = -pcs->z[Q_DECLINATION];
[95b0f1d]985   } else if (pcs->declination != HUGE_REAL) {
[2c17123e]986      /* Cached value calculated for a previous compass reading taken on the
987       * same date (by the 'else' just below).
988       */
[95b0f1d]989      declination = pcs->declination;
[58c7b459]990   } else {
991      if (!pcs->meta || pcs->meta->days1 == -1) {
[cab0f26]992          compile_diagnostic(DIAG_WARN, /*No survey date specified - using 0 for magnetic declination*/304);
[58c7b459]993          declination = 0;
994      } else {
[85696c3]995          int avg_days = (pcs->meta->days1 + pcs->meta->days2) / 2;
996          double dat = julian_date_from_days_since_1900(avg_days);
[58c7b459]997          /* thgeomag() takes (lat, lon, h, dat) - i.e. (y, x, z, date). */
998          declination = thgeomag(pcs->dec_y, pcs->dec_x, pcs->dec_z, dat);
999      }
[2c17123e]1000      declination -= pcs->convergence;
[95b0f1d]1001      /* We cache the calculated declination as the calculation is relatively
[2c17123e]1002       * expensive.  We also cache an "assumed 0" answer so that we only
[95b0f1d]1003       * warn once per such survey rather than for every line with a compass
1004       * reading. */
1005      pcs->declination = declination;
[58c7b459]1006   }
[b6de07d]1007   if (comp != HUGE_REAL) {
1008      comp = (comp - pcs->z[Q_BEARING]) * pcs->sc[Q_BEARING];
[58c7b459]1009      comp += declination;
[b6de07d]1010   }
1011   if (backcomp != HUGE_REAL) {
1012      backcomp = (backcomp - pcs->z[Q_BACKBEARING])
1013              * pcs->sc[Q_BACKBEARING];
[58c7b459]1014      backcomp += declination;
[b6de07d]1015      backcomp -= M_PI;
1016      if (comp != HUGE_REAL) {
1017         real diff = comp - backcomp;
1018         real adj = fabs(diff) > M_PI ? M_PI : 0;
1019         diff -= floor((diff + M_PI) / (2 * M_PI)) * 2 * M_PI;
[ac8787c]1020         if (sqrd(diff / 3.0) > compvar + VAR(BackComp)) {
[4dc9899]1021            /* fore and back readings differ by more than 3 sds */
[85c0078]1022            /* TRANSLATORS: %s is replaced by the amount the readings disagree
1023             * by, e.g. "2.5°" or "3ᵍ". */
1024            warn_readings_differ(/*COMPASS reading and BACKCOMPASS reading disagree by %s*/98,
1025                                 diff, get_angle_units(Q_BEARING));
[b6de07d]1026         }
[b4fe9fb]1027         comp = (comp / compvar + backcomp / VAR(BackComp));
1028         compvar = (compvar + VAR(BackComp)) / 4;
1029         comp *= compvar;
[b6de07d]1030         comp += adj;
1031      } else {
1032         comp = backcomp;
[b4fe9fb]1033         compvar = VAR(BackComp);
[b6de07d]1034      }
1035   }
[b4fe9fb]1036   *p_var = compvar;
[b6de07d]1037   return comp;
1038}
1039
[3f1d1e7b]1040static real
1041handle_clino(q_quantity q, reading r, real val, bool percent, clino_type *p_ctype)
1042{
1043   bool range_0_180;
1044   real z;
1045   real diff_from_abs90;
1046   val *= pcs->units[q];
1047   /* percentage scale */
1048   if (percent) val = atan(val);
1049   /* We want to warn if there's a reading which it would be impossible
1050    * to have read from the instrument (e.g. on a -90 to 90 degree scale
1051    * you can't read "96" (it's probably a typo for "69").  However, the
1052    * gradient reading from a topofil is typically in the range 0 to 180,
1053    * with 90 being horizontal.
1054    *
1055    * Really we should allow the valid range to be specified, but for now
1056    * we infer it from the zero error - if this is within 45 degrees of
1057    * 90 then we assume the range is 0 to 180.
1058    */
1059   z = pcs->z[q];
1060   range_0_180 = (z > M_PI_4 && z < 3*M_PI_4);
1061   diff_from_abs90 = fabs(val) - M_PI_2;
1062   if (diff_from_abs90 > EPSILON) {
1063      if (!range_0_180) {
1064         int clino_units = get_angle_units(q);
1065         const char * units = get_units_string(clino_units);
1066         real right_angle = M_PI_2 / get_units_factor(clino_units);
1067         /* FIXME: different message for BackClino? */
1068         /* TRANSLATORS: %.f%s will be replaced with a right angle in the
1069          * units currently in use, e.g. "90°" or "100ᵍ".  And "absolute
1070          * value" means the reading ignoring the sign (so it might be
1071          * < -90° or > 90°. */
[cab0f26]1072         compile_diagnostic_reading(DIAG_WARN, r, /*Clino reading over %.f%s (absolute value)*/51,
1073                                    right_angle, units);
[3f1d1e7b]1074      }
1075   } else if (TSTBIT(pcs->infer, INFER_PLUMBS) &&
1076              diff_from_abs90 >= -EPSILON) {
1077      *p_ctype = CTYPE_INFERPLUMB;
1078   }
1079   if (range_0_180 && *p_ctype != CTYPE_INFERPLUMB) {
1080      /* FIXME: Warning message not ideal... */
1081      if (val < 0.0 || val - M_PI > EPSILON) {
1082         int clino_units = get_angle_units(q);
1083         const char * units = get_units_string(clino_units);
1084         real right_angle = M_PI_2 / get_units_factor(clino_units);
[cab0f26]1085         compile_diagnostic_reading(DIAG_WARN, r, /*Clino reading over %.f%s (absolute value)*/51,
1086                                    right_angle, units);
[3f1d1e7b]1087      }
1088   }
1089   return val;
1090}
1091
[90bb053f]1092static int
[21c226e]1093process_normal(prefix *fr, prefix *to, bool fToFirst,
1094               clino_type ctype, clino_type backctype)
[a420b49]1095{
[21c226e]1096   real tape = VAL(Tape);
1097   real clin = VAL(Clino);
1098   real backclin = VAL(BackClino);
1099
[a420b49]1100   real dx, dy, dz;
1101   real vx, vy, vz;
1102#ifndef NO_COVARIANCES
[cb3d1e2]1103   real cxy, cyz, czx;
[a420b49]1104#endif
[d1b1380]1105
[90bb053f]1106   bool fNoComp;
[a420b49]1107
[107b8bd]1108   /* adjusted tape is negative -- probably the calibration is wrong */
1109   if (tape < (real)0.0) {
1110      /* TRANSLATE different message for topofil? */
[cab0f26]1111      compile_diagnostic_reading(DIAG_WARN, Tape, /*Negative adjusted tape reading*/79);
[647407d]1112   }
[d1b1380]1113
[21c226e]1114   fNoComp = handle_comp_units();
[d1b1380]1115
[fa42426]1116   if (ctype == CTYPE_READING) {
[3f1d1e7b]1117      clin = handle_clino(Q_GRADIENT, Clino, clin,
1118                          pcs->f_clino_percent, &ctype);
[a420b49]1119   }
[cb3d1e2]1120
[fa42426]1121   if (backctype == CTYPE_READING) {
[3f1d1e7b]1122      backclin = handle_clino(Q_BACKGRADIENT, BackClino, backclin,
1123                              pcs->f_backclino_percent, &backctype);
[0b71cfc]1124   }
1125
[be97baf]1126   /* un-infer the plumb if the backsight was just a reading */
1127   if (ctype == CTYPE_INFERPLUMB && backctype == CTYPE_READING) {
1128       ctype = CTYPE_READING;
1129   }
1130
[fa42426]1131   if (ctype != CTYPE_OMIT && backctype != CTYPE_OMIT && ctype != backctype) {
[736f7df]1132      /* TRANSLATORS: In data with backsights, the user has tried to give a
1133       * plumb for the foresight and a clino reading for the backsight, or
1134       * something similar. */
[e78a53a]1135      compile_error_reading_skip(Clino, /*CLINO and BACKCLINO readings must be of the same type*/84);
[b14f44f]1136      return 0;
[0b71cfc]1137   }
1138
[be97baf]1139   if (ctype == CTYPE_PLUMB || ctype == CTYPE_INFERPLUMB ||
1140       backctype == CTYPE_PLUMB || backctype == CTYPE_INFERPLUMB) {
[a420b49]1141      /* plumbed */
1142      if (!fNoComp) {
[be97baf]1143         if (ctype == CTYPE_PLUMB ||
1144             (ctype == CTYPE_INFERPLUMB && VAL(Comp) != 0.0) ||
1145             backctype == CTYPE_PLUMB ||
1146             (backctype == CTYPE_INFERPLUMB && VAL(BackComp) != 0.0)) {
1147            /* FIXME: Different message for BackComp? */
[736f7df]1148            /* TRANSLATORS: A "plumbed leg" is one measured using a plumbline
1149             * (a weight on a string).  So the problem here is that the leg is
1150             * vertical, so a compass reading has no meaning! */
[cab0f26]1151            compile_diagnostic(DIAG_WARN, /*Compass reading given on plumbed leg*/21);
[be97baf]1152         }
[a420b49]1153      }
1154
1155      dx = dy = (real)0.0;
[fa42426]1156      if (ctype != CTYPE_OMIT) {
1157         if (backctype != CTYPE_OMIT && (clin > 0) == (backclin > 0)) {
[5d1c60c]1158            /* TRANSLATORS: We've been told the foresight and backsight are
1159             * both "UP", or that they're both "DOWN". */
[e78a53a]1160            compile_error_reading_skip(Clino, /*Plumbed CLINO and BACKCLINO readings can't be in the same direction*/92);
[b14f44f]1161            return 0;
[0b71cfc]1162         }
1163         dz = (clin > (real)0.0) ? tape : -tape;
1164      } else {
1165         dz = (backclin < (real)0.0) ? tape : -tape;
1166      }
[a420b49]1167      vx = vy = var(Q_POS) / 3.0 + dz * dz * var(Q_PLUMB);
[21c226e]1168      vz = var(Q_POS) / 3.0 + VAR(Tape);
[4f8285d]1169#ifndef NO_COVARIANCES
[26a805f]1170      /* Correct values - no covariances in this case! */
1171      cxy = cyz = czx = (real)0.0;
[4f8285d]1172#endif
[a420b49]1173   } else {
[fa42426]1174      /* Each of ctype and backctype are either CTYPE_READING/CTYPE_HORIZ
1175       * or CTYPE_OMIT */
[a420b49]1176      /* clino */
1177      real L2, cosG, LcosG, cosG2, sinB, cosB, dx2, dy2, dz2, v, V;
[421b7d2]1178      if (fNoComp) {
[736f7df]1179         /* TRANSLATORS: Here "legs" are survey legs, i.e. measurements between
1180          * survey stations. */
[e78a53a]1181         compile_error_reading_skip(Comp, /*Compass reading may not be omitted except on plumbed legs*/14);
[a420b49]1182         return 0;
1183      }
1184      if (tape == (real)0.0) {
1185         dx = dy = dz = (real)0.0;
1186         vx = vy = vz = (real)(var(Q_POS) / 3.0); /* Position error only */
[4f8285d]1187#ifndef NO_COVARIANCES
[a420b49]1188         cxy = cyz = czx = (real)0.0;
[4f8285d]1189#endif
[d1b1380]1190#if DEBUG_DATAIN_1
[a420b49]1191         printf("Zero length leg: vx = %f, vy = %f, vz = %f\n", vx, vy, vz);
[d1b1380]1192#endif
[a420b49]1193      } else {
[dbb4e19]1194         real sinGcosG;
[0b71cfc]1195         /* take into account variance in LEVEL case */
1196         real var_clin = var(Q_LEVEL);
[b6de07d]1197         real var_comp;
[21c226e]1198         real comp = handle_compass(&var_comp);
[fa42426]1199         /* ctype != CTYPE_READING is LEVEL case */
1200         if (ctype == CTYPE_READING) {
[a420b49]1201            clin = (clin - pcs->z[Q_GRADIENT]) * pcs->sc[Q_GRADIENT];
[21c226e]1202            var_clin = VAR(Clino);
[0b71cfc]1203         }
[fa42426]1204         if (backctype == CTYPE_READING) {
[b14f44f]1205            backclin = (backclin - pcs->z[Q_BACKGRADIENT])
1206               * pcs->sc[Q_BACKGRADIENT];
[fa42426]1207            if (ctype == CTYPE_READING) {
[be97baf]1208               if (sqrd((clin + backclin) / 3.0) > var_clin + VAR(BackClino)) {
[b14f44f]1209                  /* fore and back readings differ by more than 3 sds */
[85c0078]1210                  /* TRANSLATORS: %s is replaced by the amount the readings disagree
1211                   * by, e.g. "2.5°" or "3ᵍ". */
1212                  warn_readings_differ(/*CLINO reading and BACKCLINO reading disagree by %s*/99,
1213                                       clin + backclin, get_angle_units(Q_GRADIENT));
[b14f44f]1214               }
[21c226e]1215               clin = (clin / var_clin - backclin / VAR(BackClino));
1216               var_clin = (var_clin + VAR(BackClino)) / 4;
[b14f44f]1217               clin *= var_clin;
[0b71cfc]1218            } else {
1219               clin = -backclin;
[21c226e]1220               var_clin = VAR(BackClino);
[0b71cfc]1221            }
1222         }
[d1b1380]1223
1224#if DEBUG_DATAIN
[a420b49]1225         printf("    %4.2f %4.2f %4.2f\n", tape, comp, clin);
[d1b1380]1226#endif
[a420b49]1227         cosG = cos(clin);
1228         LcosG = tape * cosG;
1229         sinB = sin(comp);
1230         cosB = cos(comp);
[d1b1380]1231#if DEBUG_DATAIN_1
[a420b49]1232         printf("sinB = %f, cosG = %f, LcosG = %f\n", sinB, cosG, LcosG);
[d1b1380]1233#endif
[a420b49]1234         dx = LcosG * sinB;
1235         dy = LcosG * cosB;
1236         dz = tape * sin(clin);
[d1b1380]1237/*      printf("%.2f\n",clin); */
1238#if DEBUG_DATAIN_1
[a420b49]1239         printf("dx = %f\ndy = %f\ndz = %f\n", dx, dy, dz);
[d1b1380]1240#endif
[a420b49]1241         dx2 = dx * dx;
1242         L2 = tape * tape;
[21c226e]1243         V = VAR(Tape) / L2;
[a420b49]1244         dy2 = dy * dy;
1245         cosG2 = cosG * cosG;
[dbb4e19]1246         sinGcosG = sin(clin) * cosG;
[a420b49]1247         dz2 = dz * dz;
[0b71cfc]1248         v = dz2 * var_clin;
[5b7c1b7]1249#ifdef NO_COVARIANCES
[0b71cfc]1250         vx = (var(Q_POS) / 3.0 + dx2 * V + dy2 * var_comp +
[a420b49]1251               (.5 + sinB * sinB * cosG2) * v);
[0b71cfc]1252         vy = (var(Q_POS) / 3.0 + dy2 * V + dx2 * var_comp +
[a420b49]1253               (.5 + cosB * cosB * cosG2) * v);
[fa42426]1254         if (ctype == CTYPE_OMIT && backctype == CTYPE_OMIT) {
[5b7c1b7]1255            /* if no clino, assume sd=tape/sqrt(10) so 3sds = .95*tape */
[0b71cfc]1256            vz = var(Q_POS) / 3.0 + L2 * (real)0.1;
[5b7c1b7]1257         } else {
[0b71cfc]1258            vz = var(Q_POS) / 3.0 + dz2 * V + L2 * cosG2 * var_clin;
[5b7c1b7]1259         }
[a420b49]1260         /* for Surveyor87 errors: vx=vy=vz=var(Q_POS)/3.0; */
[dbb4e19]1261#else
[0b71cfc]1262         vx = var(Q_POS) / 3.0 + dx2 * V + dy2 * var_comp +
[dbb4e19]1263            (sinB * sinB * v);
[0b71cfc]1264         vy = var(Q_POS) / 3.0 + dy2 * V + dx2 * var_comp +
[dbb4e19]1265            (cosB * cosB * v);
[fa42426]1266         if (ctype == CTYPE_OMIT && backctype == CTYPE_OMIT) {
[5b7c1b7]1267            /* if no clino, assume sd=tape/sqrt(10) so 3sds = .95*tape */
[0b71cfc]1268            vz = var(Q_POS) / 3.0 + L2 * (real)0.1;
[5b7c1b7]1269         } else {
[0b71cfc]1270            vz = var(Q_POS) / 3.0 + dz2 * V + L2 * cosG2 * var_clin;
[5b7c1b7]1271         }
[647407d]1272         /* usual covariance formulae are fine in no clino case since
[0b71cfc]1273          * dz = 0 so value of var_clin is ignored */
[21c226e]1274         cxy = sinB * cosB * (VAR(Tape) * cosG2 + var_clin * dz2)
[0b71cfc]1275               - var_comp * dx * dy;
[21c226e]1276         czx = VAR(Tape) * sinB * sinGcosG - var_clin * dx * dz;
1277         cyz = VAR(Tape) * cosB * sinGcosG - var_clin * dy * dz;
[dbb4e19]1278#if 0
1279         printf("vx = %6.3f, vy = %6.3f, vz = %6.3f\n", vx, vy, vz);
1280         printf("cxy = %6.3f, cyz = %6.3f, czx = %6.3f\n", cxy, cyz, czx);
1281#endif
[4f8285d]1282#endif
[d1b1380]1283#if DEBUG_DATAIN_1
[a420b49]1284         printf("In DATAIN.C, vx = %f, vy = %f, vz = %f\n", vx, vy, vz);
[d1b1380]1285#endif
[a420b49]1286      }
1287   }
[d1b1380]1288#if DEBUG_DATAIN_1
[a420b49]1289   printf("Just before addleg, vx = %f\n", vx);
[d1b1380]1290#endif
[a420b49]1291   /*printf("dx,dy,dz = %.2f %.2f %.2f\n\n", dx, dy, dz);*/
[90bb053f]1292   addlegbyname(fr, to, fToFirst, dx, dy, dz, vx, vy, vz
[4f8285d]1293#ifndef NO_COVARIANCES
[2140502]1294                , cyz, czx, cxy
[4f8285d]1295#endif
[2140502]1296                );
[a420b49]1297   return 1;
[d1b1380]1298}
1299
[5a38209]1300static int
[21c226e]1301process_diving(prefix *fr, prefix *to, bool fToFirst, bool fDepthChange)
[a420b49]1302{
[21c226e]1303   real tape = VAL(Tape);
1304
[a420b49]1305   real dx, dy, dz;
1306   real vx, vy, vz;
[f795df0]1307#ifndef NO_COVARIANCES
1308   real cxy = 0, cyz = 0, czx = 0;
1309#endif
[a420b49]1310
[21c226e]1311   handle_comp_units();
[a420b49]1312
[a6d094f]1313   /* depth gauge readings increase upwards with default calibration */
[6114207]1314   if (fDepthChange) {
[21c226e]1315      SVX_ASSERT(VAL(FrDepth) == 0.0);
1316      dz = VAL(ToDepth) * pcs->units[Q_DEPTH] - pcs->z[Q_DEPTH];
1317      dz *= pcs->sc[Q_DEPTH];
[a6d094f]1318   } else {
[21c226e]1319      dz = VAL(ToDepth) - VAL(FrDepth);
1320      dz *= pcs->units[Q_DEPTH] * pcs->sc[Q_DEPTH];
[a6d094f]1321   }
[a420b49]1322
1323   /* adjusted tape is negative -- probably the calibration is wrong */
1324   if (tape < (real)0.0) {
[cab0f26]1325      compile_diagnostic(DIAG_WARN, /*Negative adjusted tape reading*/79);
[a420b49]1326   }
1327
1328   /* check if tape is less than depth change */
1329   if (tape < fabs(dz)) {
[bd1913f]1330      /* FIXME: allow margin of error based on variances? */
[736f7df]1331      /* TRANSLATORS: This means that the data fed in said this.
1332       *
1333       * It could be a gross error (e.g. the decimal point is missing from the
1334       * depth gauge reading) or it could just be due to random error on a near
1335       * vertical leg */
[cab0f26]1336      compile_diagnostic(DIAG_WARN, /*Tape reading is less than change in depth*/62);
[a420b49]1337   }
1338
[0a208f9]1339   if (tape == (real)0.0 && dz == 0.0) {
[a420b49]1340      dx = dy = dz = (real)0.0;
1341      vx = vy = vz = (real)(var(Q_POS) / 3.0); /* Position error only */
[21c226e]1342   } else if (VAL(Comp) == HUGE_REAL &&
1343              VAL(BackComp) == HUGE_REAL) {
[385b703]1344      /* plumb */
1345      dx = dy = (real)0.0;
1346      if (dz < 0) tape = -tape;
[21c226e]1347      /* FIXME: Should use FrDepth sometimes... */
1348      dz = (dz * VAR(Tape) + tape * 2 * VAR(ToDepth))
1349         / (VAR(Tape) * 2 * VAR(ToDepth));
[385b703]1350      vx = vy = var(Q_POS) / 3.0 + dz * dz * var(Q_PLUMB);
[21c226e]1351      /* FIXME: Should use FrDepth sometimes... */
1352      vz = var(Q_POS) / 3.0 + VAR(Tape) * 2 * VAR(ToDepth)
1353                              / (VAR(Tape) + VAR(ToDepth));
[a420b49]1354   } else {
[f795df0]1355      real L2, sinB, cosB, dz2, D2;
[b6de07d]1356      real var_comp;
[21c226e]1357      real comp = handle_compass(&var_comp);
[a420b49]1358      sinB = sin(comp);
1359      cosB = cos(comp);
1360      L2 = tape * tape;
1361      dz2 = dz * dz;
1362      D2 = L2 - dz2;
1363      if (D2 <= (real)0.0) {
[21c226e]1364         /* FIXME: Should use FrDepth sometimes... */
1365         real vsum = VAR(Tape) + 2 * VAR(ToDepth);
[a420b49]1366         dx = dy = (real)0.0;
[f795df0]1367         vx = vy = var(Q_POS) / 3.0;
[21c226e]1368         /* FIXME: Should use FrDepth sometimes... */
1369         vz = var(Q_POS) / 3.0 + VAR(Tape) * 2 * VAR(ToDepth) / vsum;
[f795df0]1370         if (dz > 0) {
[21c226e]1371            /* FIXME: Should use FrDepth sometimes... */
1372            dz = (dz * VAR(Tape) + tape * 2 * VAR(ToDepth)) / vsum;
[f795df0]1373         } else {
[21c226e]1374            dz = (dz * VAR(Tape) - tape * 2 * VAR(ToDepth)) / vsum;
[f795df0]1375         }
[a420b49]1376      } else {
1377         real D = sqrt(D2);
[21c226e]1378         /* FIXME: Should use FrDepth sometimes... */
1379         real F = VAR(Tape) * L2 + 2 * VAR(ToDepth) * D2;
[a420b49]1380         dx = D * sinB;
1381         dy = D * cosB;
[f795df0]1382
1383         vx = var(Q_POS) / 3.0 +
[72095d3]1384            sinB * sinB * F / D2 + var_comp * dy * dy;
[f795df0]1385         vy = var(Q_POS) / 3.0 +
[72095d3]1386            cosB * cosB * F / D2 + var_comp * dx * dx;
[21c226e]1387         /* FIXME: Should use FrDepth sometimes... */
1388         vz = var(Q_POS) / 3.0 + 2 * VAR(ToDepth);
[f795df0]1389
1390#ifndef NO_COVARIANCES
[72095d3]1391         cxy = sinB * cosB * (F / D2 + var_comp * D2);
[21c226e]1392         /* FIXME: Should use FrDepth sometimes... */
1393         cyz = -2 * VAR(ToDepth) * dy / D;
1394         czx = -2 * VAR(ToDepth) * dx / D;
[f795df0]1395#endif
[a420b49]1396      }
[9b89807]1397      /* FIXME: If there's a clino reading, check it against the depth reading,
1398       * and average.
1399       * if (VAL(Clino) != HUGE_REAL || VAL(BackClino) != HUGE_REAL) { ... }
1400       */
[a420b49]1401   }
[5a38209]1402   addlegbyname(fr, to, fToFirst, dx, dy, dz, vx, vy, vz
[2140502]1403#ifndef NO_COVARIANCES
[f795df0]1404                , cxy, cyz, czx
[647407d]1405#endif
[2140502]1406                );
[647407d]1407   return 1;
1408}
1409
[5a38209]1410static int
[21c226e]1411process_cartesian(prefix *fr, prefix *to, bool fToFirst)
[5a38209]1412{
[21c226e]1413   real dx = (VAL(Dx) * pcs->units[Q_DX] - pcs->z[Q_DX]) * pcs->sc[Q_DX];
1414   real dy = (VAL(Dy) * pcs->units[Q_DY] - pcs->z[Q_DY]) * pcs->sc[Q_DY];
1415   real dz = (VAL(Dz) * pcs->units[Q_DZ] - pcs->z[Q_DZ]) * pcs->sc[Q_DZ];
[647407d]1416
[21c226e]1417   addlegbyname(fr, to, fToFirst, dx, dy, dz, VAR(Dx), VAR(Dy), VAR(Dz)
[647407d]1418#ifndef NO_COVARIANCES
[c80bd34]1419                , 0, 0, 0
[647407d]1420#endif
[2140502]1421                );
[647407d]1422   return 1;
1423}
1424
[e2d48d8]1425static void
[5a38209]1426data_cartesian(void)
[647407d]1427{
[90bb053f]1428   prefix *fr = NULL, *to = NULL;
[5a38209]1429
1430   bool fMulti = fFalse;
[647407d]1431
[0395657]1432   reading first_stn = End;
1433
[78ed938]1434   const reading *ordering;
[647407d]1435
[5a38209]1436   again:
1437
[647407d]1438   for (ordering = pcs->ordering ; ; ordering++) {
1439      skipblanks();
1440      switch (*ordering) {
[4a6a094]1441       case Fr:
[c458cf7]1442         fr = read_prefix(PFX_STATION|PFX_ALLOW_ROOT);
[21c226e]1443         if (first_stn == End) first_stn = Fr;
1444         break;
[4a6a094]1445       case To:
[c458cf7]1446         to = read_prefix(PFX_STATION|PFX_ALLOW_ROOT);
[21c226e]1447         if (first_stn == End) first_stn = To;
1448         break;
[5a38209]1449       case Station:
[21c226e]1450         fr = to;
[c458cf7]1451         to = read_prefix(PFX_STATION);
[21c226e]1452         first_stn = To;
1453         break;
1454       case Dx: case Dy: case Dz:
1455         read_reading(*ordering, fFalse);
1456         break;
[647407d]1457       case Ignore:
1458         skipword(); break;
[5a38209]1459       case IgnoreAllAndNewLine:
1460         skipline();
1461         /* fall through */
1462       case Newline:
1463         if (fr != NULL) {
[e2d48d8]1464            if (!process_cartesian(fr, to, first_stn == To))
1465               skipline();
[5a38209]1466         }
1467         fMulti = fTrue;
1468         while (1) {
1469            process_eol();
[4b4ac38]1470            skipblanks();
[5a38209]1471            if (isData(ch)) break;
[ee6a621]1472            if (!isComm(ch)) {
[e2d48d8]1473               return;
[ee6a621]1474            }
[5a38209]1475         }
1476         break;
[647407d]1477       case IgnoreAll:
1478         skipline();
1479         /* fall through */
1480       case End:
[5a38209]1481         if (!fMulti) {
[e2d48d8]1482            process_cartesian(fr, to, first_stn == To);
[5a38209]1483            process_eol();
[e2d48d8]1484            return;
[5a38209]1485         }
[eef4d8c]1486         do {
[5a38209]1487            process_eol();
[4b4ac38]1488            skipblanks();
[eef4d8c]1489         } while (isComm(ch));
[5a38209]1490         goto again;
[0395657]1491       default: BUG("Unknown reading in ordering");
[647407d]1492      }
1493   }
[5a38209]1494}
[cb3d1e2]1495
[98a2eec]1496static int
[21c226e]1497process_cylpolar(prefix *fr, prefix *to, bool fToFirst, bool fDepthChange)
[98a2eec]1498{
[21c226e]1499   real tape = VAL(Tape);
1500
[98a2eec]1501   real dx, dy, dz;
1502   real vx, vy, vz;
1503#ifndef NO_COVARIANCES
1504   real cxy = 0;
1505#endif
1506
[21c226e]1507   handle_comp_units();
[98a2eec]1508
[a6d094f]1509   /* depth gauge readings increase upwards with default calibration */
[6114207]1510   if (fDepthChange) {
[21c226e]1511      SVX_ASSERT(VAL(FrDepth) == 0.0);
1512      dz = VAL(ToDepth) * pcs->units[Q_DEPTH] - pcs->z[Q_DEPTH];
1513      dz *= pcs->sc[Q_DEPTH];
[a6d094f]1514   } else {
[21c226e]1515      dz = VAL(ToDepth) - VAL(FrDepth);
1516      dz *= pcs->units[Q_DEPTH] * pcs->sc[Q_DEPTH];
[a6d094f]1517   }
[98a2eec]1518
1519   /* adjusted tape is negative -- probably the calibration is wrong */
1520   if (tape < (real)0.0) {
[cab0f26]1521      compile_diagnostic(DIAG_WARN, /*Negative adjusted tape reading*/79);
[98a2eec]1522   }
1523
[21c226e]1524   if (VAL(Comp) == HUGE_REAL && VAL(BackComp) == HUGE_REAL) {
[98a2eec]1525      /* plumb */
1526      dx = dy = (real)0.0;
1527      vx = vy = var(Q_POS) / 3.0 + dz * dz * var(Q_PLUMB);
[21c226e]1528      /* FIXME: Should use FrDepth sometimes... */
1529      vz = var(Q_POS) / 3.0 + 2 * VAR(ToDepth);
[98a2eec]1530   } else {
1531      real sinB, cosB;
[b6de07d]1532      real var_comp;
[21c226e]1533      real comp = handle_compass(&var_comp);
[98a2eec]1534      sinB = sin(comp);
1535      cosB = cos(comp);
1536
1537      dx = tape * sinB;
1538      dy = tape * cosB;
1539
1540      vx = var(Q_POS) / 3.0 +
[21c226e]1541         VAR(Tape) * sinB * sinB + var_comp * dy * dy;
[98a2eec]1542      vy = var(Q_POS) / 3.0 +
[21c226e]1543         VAR(Tape) * cosB * cosB + var_comp * dx * dx;
1544      /* FIXME: Should use FrDepth sometimes... */
1545      vz = var(Q_POS) / 3.0 + 2 * VAR(ToDepth);
[98a2eec]1546
1547#ifndef NO_COVARIANCES
[21c226e]1548      cxy = (VAR(Tape) - var_comp * tape * tape) * sinB * cosB;
[98a2eec]1549#endif
1550   }
1551   addlegbyname(fr, to, fToFirst, dx, dy, dz, vx, vy, vz
1552#ifndef NO_COVARIANCES
1553                , cxy, 0, 0
1554#endif
1555                );
1556   return 1;
1557}
1558
[107b8bd]1559/* Process tape/compass/clino, diving, and cylpolar styles of survey data
1560 * Also handles topofil (fromcount/tocount or count) in place of tape */
[e2d48d8]1561static void
[107b8bd]1562data_normal(void)
[54c4612]1563{
1564   prefix *fr = NULL, *to = NULL;
[107b8bd]1565   reading first_stn = End;
[54c4612]1566
[107b8bd]1567   bool fTopofil = fFalse, fMulti = fFalse;
1568   bool fRev;
[e217d67]1569   clino_type ctype, backctype;
[107b8bd]1570   bool fDepthChange;
[be97baf]1571   unsigned long compass_dat_flags = 0;
[54c4612]1572
[78ed938]1573   const reading *ordering;
[54c4612]1574
[4f38f94]1575   VAL(Tape) = VAL(BackTape) = HUGE_REAL;
[07442af]1576   VAL(Comp) = VAL(BackComp) = HUGE_REAL;
[21c226e]1577   VAL(FrCount) = VAL(ToCount) = 0;
1578   VAL(FrDepth) = VAL(ToDepth) = 0;
[07442af]1579   VAL(Left) = VAL(Right) = VAL(Up) = VAL(Down) = HUGE_REAL;
[54c4612]1580
1581   fRev = fFalse;
[fa42426]1582   ctype = backctype = CTYPE_OMIT;
[6114207]1583   fDepthChange = fFalse;
[54c4612]1584
[107b8bd]1585   /* ordering may omit clino reading, so set up default here */
1586   /* this is also used if clino reading is the omit character */
[21c226e]1587   VAL(Clino) = VAL(BackClino) = 0;
1588
1589   again:
[107b8bd]1590
[dcbcae0]1591   /* We clear these flags in the normal course of events, but if there's an
1592    * error in a reading, we might not, so make sure it has been cleared here.
[710ecc1]1593    */
[dcbcae0]1594   pcs->flags &= ~(BIT(FLAGS_ANON_ONE_END) | BIT(FLAGS_IMPLICIT_SPLAY));
[54c4612]1595   for (ordering = pcs->ordering; ; ordering++) {
1596      skipblanks();
1597      switch (*ordering) {
1598       case Fr:
[710ecc1]1599          fr = read_prefix(PFX_STATION|PFX_ALLOW_ROOT|PFX_ANON);
[107b8bd]1600          if (first_stn == End) first_stn = Fr;
1601          break;
[54c4612]1602       case To:
[710ecc1]1603          to = read_prefix(PFX_STATION|PFX_ALLOW_ROOT|PFX_ANON);
[107b8bd]1604          if (first_stn == End) first_stn = To;
1605          break;
[54c4612]1606       case Station:
[107b8bd]1607          fr = to;
[c458cf7]1608          to = read_prefix(PFX_STATION);
[107b8bd]1609          first_stn = To;
1610          break;
[ee1ec59]1611       case Dir: {
1612          typedef enum {
1613             DIR_NULL=-1, DIR_FORE, DIR_BACK
1614          } dir_tok;
[78ed938]1615          static const sztok dir_tab[] = {
[ee1ec59]1616             {"B",     DIR_BACK},
1617             {"F",     DIR_FORE},
1618          };
1619          dir_tok tok;
1620          get_token();
1621          tok = match_tok(dir_tab, TABSIZE(dir_tab));
1622          switch (tok) {
1623           case DIR_FORE:
[54c4612]1624             break;
[ee1ec59]1625           case DIR_BACK:
[54c4612]1626             fRev = fTrue;
1627             break;
1628           default:
[cab0f26]1629             compile_diagnostic(DIAG_ERR|DIAG_BUF|DIAG_SKIP, /*Found “%s”, expecting “F” or “B”*/131, buffer);
[54c4612]1630             process_eol();
[e2d48d8]1631             return;
[54c4612]1632          }
1633          break;
[ee1ec59]1634       }
[b6a9b27]1635       case Tape: case BackTape: {
1636          reading r = *ordering;
1637          read_reading(r, fTrue);
1638          if (VAL(r) == HUGE_REAL) {
1639             if (!isOmit(ch)) {
[cab0f26]1640                compile_diagnostic_token_show(DIAG_ERR, /*Expecting numeric field, found “%s”*/9);
[b6a9b27]1641                /* Avoid also warning about omitted tape reading. */
1642                VAL(r) = 0;
1643             } else {
1644                nextch();
1645             }
1646          } else if (VAL(r) < (real)0.0) {
[cab0f26]1647             compile_diagnostic_reading(DIAG_WARN, r, /*Negative tape reading*/60);
[b6a9b27]1648          }
[107b8bd]1649          break;
[b6a9b27]1650       }
[107b8bd]1651       case Count:
[21c226e]1652          VAL(FrCount) = VAL(ToCount);
[e78a53a]1653          LOC(FrCount) = LOC(ToCount);
[76d5230]1654          WID(FrCount) = WID(ToCount);
[21c226e]1655          read_reading(ToCount, fFalse);
[b4fe9fb]1656          fTopofil = fTrue;
[107b8bd]1657          break;
1658       case FrCount:
[21c226e]1659          read_reading(FrCount, fFalse);
[107b8bd]1660          break;
1661       case ToCount:
[21c226e]1662          read_reading(ToCount, fFalse);
[107b8bd]1663          fTopofil = fTrue;
1664          break;
[07442af]1665       case Comp: case BackComp:
1666          read_bearing_or_omit(*ordering);
[5b7c1b7]1667          break;
[0a158bc]1668       case Clino: case BackClino: {
1669          reading r = *ordering;
1670          clino_type * p_ctype = (r == Clino ? &ctype : &backctype);
1671          read_reading(r, fTrue);
1672          if (VAL(r) == HUGE_REAL) {
1673             VAL(r) = handle_plumb(p_ctype);
1674             if (VAL(r) != HUGE_REAL) break;
[cab0f26]1675             compile_diagnostic_token_show(DIAG_ERR, /*Expecting numeric field, found “%s”*/9);
[4bc4d58]1676             skipline();
[107b8bd]1677             process_eol();
[e2d48d8]1678             return;
[107b8bd]1679          }
[0a158bc]1680          *p_ctype = CTYPE_READING;
[107b8bd]1681          break;
[0a158bc]1682       }
[07442af]1683       case FrDepth: case ToDepth:
1684          read_reading(*ordering, fFalse);
[107b8bd]1685          break;
[54c4612]1686       case Depth:
[21c226e]1687          VAL(FrDepth) = VAL(ToDepth);
[e78a53a]1688          LOC(FrDepth) = LOC(ToDepth);
[76d5230]1689          WID(FrDepth) = WID(ToDepth);
[21c226e]1690          read_reading(ToDepth, fFalse);
[54c4612]1691          break;
[6114207]1692       case DepthChange:
1693          fDepthChange = fTrue;
[21c226e]1694          VAL(FrDepth) = 0;
1695          read_reading(ToDepth, fFalse);
[a186573]1696          break;
[44bb30d]1697       case CompassDATComp:
1698          read_bearing_or_omit(Comp);
1699          if (is_compass_NaN(VAL(Comp))) VAL(Comp) = HUGE_REAL;
1700          break;
1701       case CompassDATBackComp:
1702          read_bearing_or_omit(BackComp);
1703          if (is_compass_NaN(VAL(BackComp))) VAL(BackComp) = HUGE_REAL;
1704          break;
[0a158bc]1705       case CompassDATClino: case CompassDATBackClino: {
1706          reading r;
1707          clino_type * p_ctype;
1708          if (*ordering == CompassDATClino) {
1709             r = Clino;
1710             p_ctype = &ctype;
[07442af]1711          } else {
[0a158bc]1712             r = BackClino;
1713             p_ctype = &backctype;
[07442af]1714          }
[0a158bc]1715          read_reading(r, fFalse);
1716          if (is_compass_NaN(VAL(r))) {
1717             VAL(r) = HUGE_REAL;
1718             *p_ctype = CTYPE_OMIT;
[07442af]1719          } else {
[0a158bc]1720             *p_ctype = CTYPE_READING;
[07442af]1721          }
1722          break;
[0a158bc]1723       }
[07442af]1724       case CompassDATLeft: case CompassDATRight:
1725       case CompassDATUp: case CompassDATDown: {
[ee05463]1726          /* FIXME: need to actually make use of these entries! */
[07442af]1727          reading actual = Left + (*ordering - CompassDATLeft);
1728          read_reading(actual, fFalse);
1729          if (VAL(actual) < 0) VAL(actual) = HUGE_REAL;
[44bb30d]1730          break;
[07442af]1731       }
[be97baf]1732       case CompassDATFlags:
1733          if (ch == '#') {
[b9f638a]1734             filepos fp;
1735             get_pos(&fp);
[be97baf]1736             nextch();
1737             if (ch == '|') {
1738                nextch();
1739                while (ch >= 'A' && ch <= 'Z') {
1740                   compass_dat_flags |= BIT(ch - 'A');
[dfbd846]1741                   /* We currently understand:
[850fdc4]1742                    *   L (exclude from length)
1743                    *   X (exclude data)
[dfbd846]1744                    * FIXME: but should also handle at least some of:
1745                    *   C (no adjustment) (set all (co)variances to 0?)
1746                    *   P (no plot) (new flag in 3d for "hidden by default"?)
[0580c6a]1747                    */
[be97baf]1748                   nextch();
1749                }
1750                if (ch == '#') {
1751                   nextch();
1752                } else {
1753                   compass_dat_flags = 0;
1754                   set_pos(&fp);
1755                }
1756             } else {
[b9f638a]1757                set_pos(&fp);
[be97baf]1758             }
1759          }
[107b8bd]1760          break;
[be97baf]1761       case Ignore:
1762          skipword(); break;
[54c4612]1763       case IgnoreAllAndNewLine:
[107b8bd]1764          skipline();
1765          /* fall through */
[54c4612]1766       case Newline:
[107b8bd]1767          if (fr != NULL) {
1768             int r;
[710ecc1]1769             int save_flags;
[dcbcae0]1770             int implicit_splay;
[e78a53a]1771             if (fTopofil) {
[21c226e]1772                VAL(Tape) = VAL(ToCount) - VAL(FrCount);
[e78a53a]1773                LOC(Tape) = LOC(ToCount);
[76d5230]1774                WID(Tape) = WID(ToCount);
[e78a53a]1775             }
[107b8bd]1776             /* Note: frdepth == todepth test works regardless of fDepthChange
1777              * (frdepth always zero, todepth is change of depth) and also
1778              * works for STYLE_NORMAL (both remain 0) */
[44bb30d]1779             if (TSTBIT(pcs->infer, INFER_EQUATES) &&
[4f38f94]1780                 (VAL(Tape) == (real)0.0 || VAL(Tape) == HUGE_REAL) &&
1781                 (VAL(BackTape) == (real)0.0 || VAL(BackTape) == HUGE_REAL) &&
1782                 VAL(FrDepth) == VAL(ToDepth)) {
[107b8bd]1783                process_equate(fr, to);
1784                goto inferred_equate;
1785             }
[e7576f6]1786             if (fRev) {
1787                prefix *t = fr;
[44bb30d]1788                fr = to;
1789                to = t;
[e7576f6]1790             }
[107b8bd]1791             if (fTopofil) {
[21c226e]1792                VAL(Tape) *= pcs->units[Q_COUNT] * pcs->sc[Q_COUNT];
[4f38f94]1793             } else if (VAL(Tape) != HUGE_REAL) {
[21c226e]1794                VAL(Tape) *= pcs->units[Q_LENGTH];
1795                VAL(Tape) -= pcs->z[Q_LENGTH];
1796                VAL(Tape) *= pcs->sc[Q_LENGTH];
[107b8bd]1797             }
[4f38f94]1798             if (VAL(BackTape) != HUGE_REAL) {
1799                VAL(BackTape) *= pcs->units[Q_BACKLENGTH];
1800                VAL(BackTape) -= pcs->z[Q_BACKLENGTH];
1801                VAL(BackTape) *= pcs->sc[Q_BACKLENGTH];
1802                if (VAL(Tape) != HUGE_REAL) {
1803                   real diff = VAL(Tape) - VAL(BackTape);
1804                   if (sqrd(diff / 3.0) > VAR(Tape) + VAR(BackTape)) {
1805                      /* fore and back readings differ by more than 3 sds */
1806                      /* TRANSLATORS: %s is replaced by the amount the readings disagree
1807                       * by, e.g. "0.12m" or "0.2ft". */
1808                      warn_readings_differ(/*TAPE reading and BACKTAPE reading disagree by %s*/97,
1809                                           diff, get_length_units(Q_LENGTH));
1810                   }
1811                   VAL(Tape) = VAL(Tape) / VAR(Tape) + VAL(BackTape) / VAR(BackTape);
1812                   VAR(Tape) = (VAR(Tape) + VAR(BackTape)) / 4;
1813                   VAL(Tape) *= VAR(Tape);
1814                } else {
1815                   VAL(Tape) = VAL(BackTape);
1816                   VAR(Tape) = VAR(BackTape);
1817                }
[b6a9b27]1818             } else if (VAL(Tape) == HUGE_REAL) {
[cab0f26]1819                compile_diagnostic_reading(DIAG_ERR, Tape, /*Tape reading may not be omitted*/94);
[b6a9b27]1820                goto inferred_equate;
[4f38f94]1821             }
[dcbcae0]1822             implicit_splay = TSTBIT(pcs->flags, FLAGS_IMPLICIT_SPLAY);
1823             pcs->flags &= ~(BIT(FLAGS_ANON_ONE_END) | BIT(FLAGS_IMPLICIT_SPLAY));
1824             save_flags = pcs->flags;
1825             if (implicit_splay) {
[710ecc1]1826                pcs->flags |= BIT(FLAGS_SPLAY);
1827             }
[107b8bd]1828             switch (pcs->style) {
1829              case STYLE_NORMAL:
[21c226e]1830                r = process_normal(fr, to, (first_stn == To) ^ fRev,
1831                                   ctype, backctype);
[107b8bd]1832                break;
1833              case STYLE_DIVING:
[bd263b36]1834                /* FIXME: Handle any clino readings */
[21c226e]1835                r = process_diving(fr, to, (first_stn == To) ^ fRev,
1836                                   fDepthChange);
[107b8bd]1837                break;
1838              case STYLE_CYLPOLAR:
[21c226e]1839                r = process_cylpolar(fr, to, (first_stn == To) ^ fRev,
1840                                     fDepthChange);
[107b8bd]1841                break;
1842              default:
[74a0681]1843                r = 0; /* avoid warning */
[107b8bd]1844                BUG("bad style");
1845             }
[710ecc1]1846             pcs->flags = save_flags;
[107b8bd]1847             if (!r) skipline();
[44bb30d]1848
[e7576f6]1849             /* Swap fr and to back to how they were for next line */
1850             if (fRev) {
1851                prefix *t = fr;
1852                fr = to;
1853                to = t;
1854             }
[107b8bd]1855          }
[21c226e]1856
1857          fRev = fFalse;
1858          ctype = backctype = CTYPE_OMIT;
1859          fDepthChange = fFalse;
1860
1861          /* ordering may omit clino reading, so set up default here */
1862          /* this is also used if clino reading is the omit character */
1863          VAL(Clino) = VAL(BackClino) = 0;
[e78a53a]1864          LOC(Clino) = LOC(BackClino) = -1;
[76d5230]1865          WID(Clino) = WID(BackClino) = 0;
[21c226e]1866
[44bb30d]1867          inferred_equate:
[e7576f6]1868
[107b8bd]1869          fMulti = fTrue;
1870          while (1) {
1871              process_eol();
[4b4ac38]1872              skipblanks();
[107b8bd]1873              if (isData(ch)) break;
1874              if (!isComm(ch)) {
[e2d48d8]1875                 return;
[107b8bd]1876              }
1877          }
1878          break;
[54c4612]1879       case IgnoreAll:
[107b8bd]1880          skipline();
1881          /* fall through */
[54c4612]1882       case End:
[107b8bd]1883          if (!fMulti) {
[710ecc1]1884             int save_flags;
[dcbcae0]1885             int implicit_splay;
[be97baf]1886             /* Compass ignore flag is 'X' */
1887             if ((compass_dat_flags & BIT('X' - 'A'))) {
1888                process_eol();
[e2d48d8]1889                return;
[be97baf]1890             }
[107b8bd]1891             if (fRev) {
1892                prefix *t = fr;
1893                fr = to;
1894                to = t;
1895             }
[e78a53a]1896             if (fTopofil) {
1897                VAL(Tape) = VAL(ToCount) - VAL(FrCount);
1898                LOC(Tape) = LOC(ToCount);
[76d5230]1899                WID(Tape) = WID(ToCount);
[e78a53a]1900             }
[107b8bd]1901             /* Note: frdepth == todepth test works regardless of fDepthChange
1902              * (frdepth always zero, todepth is change of depth) and also
1903              * works for STYLE_NORMAL (both remain 0) */
[07442af]1904             if (TSTBIT(pcs->infer, INFER_EQUATES) &&
[4f38f94]1905                 (VAL(Tape) == (real)0.0 || VAL(Tape) == HUGE_REAL) &&
1906                 (VAL(BackTape) == (real)0.0 || VAL(BackTape) == HUGE_REAL) &&
1907                 VAL(FrDepth) == VAL(ToDepth)) {
[107b8bd]1908                process_equate(fr, to);
1909                process_eol();
[e2d48d8]1910                return;
[107b8bd]1911             }
1912             if (fTopofil) {
[21c226e]1913                VAL(Tape) *= pcs->units[Q_COUNT] * pcs->sc[Q_COUNT];
[4f38f94]1914             } else if (VAL(Tape) != HUGE_REAL) {
[21c226e]1915                VAL(Tape) *= pcs->units[Q_LENGTH];
1916                VAL(Tape) -= pcs->z[Q_LENGTH];
1917                VAL(Tape) *= pcs->sc[Q_LENGTH];
[107b8bd]1918             }
[4f38f94]1919             if (VAL(BackTape) != HUGE_REAL) {
1920                VAL(BackTape) *= pcs->units[Q_BACKLENGTH];
1921                VAL(BackTape) -= pcs->z[Q_BACKLENGTH];
1922                VAL(BackTape) *= pcs->sc[Q_BACKLENGTH];
1923                if (VAL(Tape) != HUGE_REAL) {
1924                   real diff = VAL(Tape) - VAL(BackTape);
1925                   if (sqrd(diff / 3.0) > VAR(Tape) + VAR(BackTape)) {
1926                      /* fore and back readings differ by more than 3 sds */
1927                      /* TRANSLATORS: %s is replaced by the amount the readings disagree
1928                       * by, e.g. "0.12m" or "0.2ft". */
1929                      warn_readings_differ(/*TAPE reading and BACKTAPE reading disagree by %s*/97,
1930                                           diff, get_length_units(Q_LENGTH));
1931                   }
1932                   VAL(Tape) = VAL(Tape) / VAR(Tape) + VAL(BackTape) / VAR(BackTape);
1933                   VAR(Tape) = (VAR(Tape) + VAR(BackTape)) / 4;
1934                   VAL(Tape) *= VAR(Tape);
1935                } else {
1936                   VAL(Tape) = VAL(BackTape);
1937                   VAR(Tape) = VAR(BackTape);
1938                }
[b6a9b27]1939             } else if (VAL(Tape) == HUGE_REAL) {
[cab0f26]1940                compile_diagnostic_reading(DIAG_ERR, Tape, /*Tape reading may not be omitted*/94);
[b6a9b27]1941                process_eol();
1942                return;
[4f38f94]1943             }
[dcbcae0]1944             implicit_splay = TSTBIT(pcs->flags, FLAGS_IMPLICIT_SPLAY);
1945             pcs->flags &= ~(BIT(FLAGS_ANON_ONE_END) | BIT(FLAGS_IMPLICIT_SPLAY));
[710ecc1]1946             save_flags = pcs->flags;
[dcbcae0]1947             if (implicit_splay) {
[710ecc1]1948                pcs->flags |= BIT(FLAGS_SPLAY);
1949             }
[850fdc4]1950             if ((compass_dat_flags & BIT('L' - 'A'))) {
1951                /* 'L' means "exclude from length" - map this to Survex's
1952                 * FLAGS_DUPLICATE. */
1953                pcs->flags |= BIT(FLAGS_DUPLICATE);
1954             }
[107b8bd]1955             switch (pcs->style) {
1956              case STYLE_NORMAL:
[e2d48d8]1957                process_normal(fr, to, (first_stn == To) ^ fRev,
1958                               ctype, backctype);
[107b8bd]1959                break;
1960              case STYLE_DIVING:
[bd263b36]1961                /* FIXME: Handle any clino readings */
[e2d48d8]1962                process_diving(fr, to, (first_stn == To) ^ fRev,
1963                               fDepthChange);
[107b8bd]1964                break;
1965              case STYLE_CYLPOLAR:
[e2d48d8]1966                process_cylpolar(fr, to, (first_stn == To) ^ fRev,
1967                                 fDepthChange);
[107b8bd]1968                break;
1969              default:
1970                BUG("bad style");
1971             }
[710ecc1]1972             pcs->flags = save_flags;
[ee05463]1973
[107b8bd]1974             process_eol();
[e2d48d8]1975             return;
[107b8bd]1976          }
1977          do {
1978             process_eol();
[4b4ac38]1979             skipblanks();
[107b8bd]1980          } while (isComm(ch));
1981          goto again;
1982       default:
1983          BUG("Unknown reading in ordering");
[54c4612]1984      }
1985   }
1986}
1987
[ee05463]1988static int
1989process_lrud(prefix *stn)
1990{
1991   SVX_ASSERT(next_lrud);
1992   lrud * xsect = osnew(lrud);
1993   xsect->stn = stn;
1994   xsect->l = (VAL(Left) * pcs->units[Q_LEFT] - pcs->z[Q_LEFT]) * pcs->sc[Q_LEFT];
1995   xsect->r = (VAL(Right) * pcs->units[Q_RIGHT] - pcs->z[Q_RIGHT]) * pcs->sc[Q_RIGHT];
1996   xsect->u = (VAL(Up) * pcs->units[Q_UP] - pcs->z[Q_UP]) * pcs->sc[Q_UP];
1997   xsect->d = (VAL(Down) * pcs->units[Q_DOWN] - pcs->z[Q_DOWN]) * pcs->sc[Q_DOWN];
[a6301a1]1998   xsect->meta = pcs->meta;
1999   if (pcs->meta) ++pcs->meta->ref_count;
[ee05463]2000   xsect->next = NULL;
2001   *next_lrud = xsect;
2002   next_lrud = &(xsect->next);
2003
2004   return 1;
2005}
2006
[e2d48d8]2007static void
[ee05463]2008data_passage(void)
2009{
2010   prefix *stn = NULL;
[78ed938]2011   const reading *ordering;
[ee05463]2012
2013   for (ordering = pcs->ordering ; ; ordering++) {
2014      skipblanks();
2015      switch (*ordering) {
2016       case Station:
[c458cf7]2017         stn = read_prefix(PFX_STATION);
[ee05463]2018         break;
[b6a9b27]2019       case Left: case Right: case Up: case Down: {
2020         reading r = *ordering;
2021         read_reading(r, fTrue);
2022         if (VAL(r) == HUGE_REAL) {
[b49ac56]2023            if (!isOmit(ch)) {
[cab0f26]2024               compile_diagnostic_token_show(DIAG_ERR, /*Expecting numeric field, found “%s”*/9);
[4bc4d58]2025            } else {
2026               nextch();
[b49ac56]2027            }
[b6a9b27]2028            VAL(r) = -1;
[b49ac56]2029         }
[ee05463]2030         break;
[b6a9b27]2031       }
[ee05463]2032       case Ignore:
2033         skipword(); break;
2034       case IgnoreAll:
2035         skipline();
2036         /* fall through */
2037       case End: {
[e2d48d8]2038         process_lrud(stn);
[ee05463]2039         process_eol();
[e2d48d8]2040         return;
[ee05463]2041       }
2042       default: BUG("Unknown reading in ordering");
2043      }
2044   }
2045}
2046
[5a38209]2047static int
2048process_nosurvey(prefix *fr, prefix *to, bool fToFirst)
2049{
2050   nosurveylink *link;
[647407d]2051
[f15cde77]2052   /* Suppress "unused fixed point" warnings for these stations */
2053   fr->sflags |= BIT(SFLAGS_USED);
2054   to->sflags |= BIT(SFLAGS_USED);
[838a602a]2055
[647407d]2056   /* add to linked list which is dealt with after network is solved */
2057   link = osnew(nosurveylink);
[5a38209]2058   if (fToFirst) {
[90bb053f]2059      link->to = StnFromPfx(to);
2060      link->fr = StnFromPfx(fr);
[0395657]2061   } else {
[90bb053f]2062      link->fr = StnFromPfx(fr);
2063      link->to = StnFromPfx(to);
[0395657]2064   }
[eb5aea0]2065   link->flags = pcs->flags | (STYLE_NOSURVEY << FLAGS_STYLE_BIT0);
[ee05463]2066   link->meta = pcs->meta;
2067   if (pcs->meta) ++pcs->meta->ref_count;
[647407d]2068   link->next = nosurveyhead;
2069   nosurveyhead = link;
[a420b49]2070   return 1;
[d1b1380]2071}
[50f6901]2072
[e2d48d8]2073static void
[5a38209]2074data_nosurvey(void)
2075{
2076   prefix *fr = NULL, *to = NULL;
2077
2078   bool fMulti = fFalse;
2079
2080   reading first_stn = End;
2081
[78ed938]2082   const reading *ordering;
[5a38209]2083
2084   again:
2085
2086   for (ordering = pcs->ordering ; ; ordering++) {
2087      skipblanks();
2088      switch (*ordering) {
2089       case Fr:
[c458cf7]2090          fr = read_prefix(PFX_STATION|PFX_ALLOW_ROOT);
[5a38209]2091          if (first_stn == End) first_stn = Fr;
2092          break;
2093       case To:
[c458cf7]2094          to = read_prefix(PFX_STATION|PFX_ALLOW_ROOT);
[5a38209]2095          if (first_stn == End) first_stn = To;
2096          break;
2097       case Station:
2098          fr = to;
[c458cf7]2099          to = read_prefix(PFX_STATION);
[5a38209]2100          first_stn = To;
2101          break;
2102       case Ignore:
2103         skipword(); break;
2104       case IgnoreAllAndNewLine:
2105         skipline();
2106         /* fall through */
2107       case Newline:
2108         if (fr != NULL) {
[e2d48d8]2109            if (!process_nosurvey(fr, to, first_stn == To))
2110               skipline();
[5a38209]2111         }
[838a602a]2112         if (ordering[1] == End) {
2113            do {
2114               process_eol();
[4b4ac38]2115               skipblanks();
[838a602a]2116            } while (isComm(ch));
[ee6a621]2117            if (!isData(ch)) {
[e2d48d8]2118               return;
[ee6a621]2119            }
[838a602a]2120            goto again;
2121         }
[5a38209]2122         fMulti = fTrue;
2123         while (1) {
2124            process_eol();
[4b4ac38]2125            skipblanks();
[5a38209]2126            if (isData(ch)) break;
[ee6a621]2127            if (!isComm(ch)) {
[e2d48d8]2128               return;
[ee6a621]2129            }
[5a38209]2130         }
2131         break;
2132       case IgnoreAll:
2133         skipline();
2134         /* fall through */
2135       case End:
2136         if (!fMulti) {
[e2d48d8]2137            (void)process_nosurvey(fr, to, first_stn == To);
[5a38209]2138            process_eol();
[e2d48d8]2139            return;
[5a38209]2140         }
[eef4d8c]2141         do {
[5a38209]2142            process_eol();
[4b4ac38]2143            skipblanks();
[eef4d8c]2144         } while (isComm(ch));
[5a38209]2145         goto again;
2146       default: BUG("Unknown reading in ordering");
2147      }
2148   }
2149}
2150
[50f6901]2151/* totally ignore a line of survey data */
[e2d48d8]2152static void
[50f6901]2153data_ignore(void)
2154{
2155   skipline();
[ee6a621]2156   process_eol();
[50f6901]2157}
Note: See TracBrowser for help on using the repository browser.