source: git/src/cavern.h @ a17d22fc

debug-cidebug-ci-sanitisersfaster-cavernloglog-selectstereo-2025walls-datawalls-data-hanging-as-warningwarn-only-for-hanging-survey
Last change on this file since a17d22fc was a17d22fc, checked in by Olly Betts <olly@…>, 17 months ago

Include <stdbool.h> in config.h for C

This emulates C23's addition of bool, false and true as keywords,
and means we don't need to include <stdbool.h> in each C file that
uses them.

  • Property mode set to 100644
File size: 15.2 KB
RevLine 
[0badc31]1/* cavern.h
[bb90203]2 * SURVEX Cave surveying software - header file
[fdffa7d]3 * Copyright (C) 1991-2024 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
[d333899]18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
[bb90203]19 */
20
[3875c32]21#ifndef CAVERN_H
22#define CAVERN_H
23
[05c700b]24/* Using covariances increases the memory required somewhat - may be
25 * desirable to disable this for small memory machines */
26
[93ac03a]27/* #define NO_COVARIANCES 1 */
[bb90203]28
29#include <stdio.h>
30#include <stdlib.h>
31#include <string.h>
32#include <ctype.h>
33#include <math.h>
34#include <float.h>
35
[b39e24a]36#include <proj.h>
[c092d72]37
[a405bc1]38#include "img_hosted.h"
[3d441da]39#include "useful.h"
[bb90203]40
[05c700b]41/* Set EXPLICIT_FIXED_FLAG to 1 to force an explicit fixed flag to be used
42 * in each pos struct, rather than using p[0]==UNFIXED_VAL to indicate
43 * unfixed-ness.  This may be slightly faster, but uses more memory.
[bb90203]44 */
45#ifndef EXPLICIT_FIXED_FLAG
46# define EXPLICIT_FIXED_FLAG 0
47#endif
48
49typedef double real; /* so we can change the precision used easily */
50#define HUGE_REAL HUGE_VAL
[7bdf66d]51#define REAL_EPSILON DBL_EPSILON
[bb90203]52
53#if (!EXPLICIT_FIXED_FLAG)
54# define UNFIXED_VAL HUGE_VAL /* if p[0]==UNFIXED_VAL, station is unfixed */
55#endif
56
[7d40549]57#define SPECIAL_EOL             0x0001
58#define SPECIAL_BLANK           0x0002
59#define SPECIAL_KEYWORD         0x0004
60#define SPECIAL_COMMENT         0x0008
61#define SPECIAL_OMIT            0x0010
[a882316]62#ifndef NO_DEPRECATED
[7d40549]63#define SPECIAL_ROOT            0x0020
[a882316]64#endif
[7d40549]65#define SPECIAL_SEPARATOR       0x0040
66#define SPECIAL_NAMES           0x0080
67#define SPECIAL_DECIMAL         0x0100
68#define SPECIAL_MINUS           0x0200
69#define SPECIAL_PLUS            0x0400
70#define SPECIAL_OPEN            0x0800
71#define SPECIAL_CLOSE           0x1000
[bb90203]72
[3875c32]73extern char *fnm_output_base;
74extern int fnm_output_base_is_dir;
75
[d1878c51]76extern bool fExportUsed;
77
[1ee204e]78extern int current_days_since_1900;
[e0c7cd1]79
[bb90203]80/* Types */
81
[05c700b]82typedef enum {
[009a9e4]83   Q_NULL = -1, Q_DEFAULT, Q_POS, Q_PLUMB, Q_LEVEL,
84   Q_GRADIENT, Q_BACKGRADIENT, Q_BEARING, Q_BACKBEARING,
[4f38f94]85   Q_LENGTH, Q_BACKLENGTH, Q_DEPTH, Q_DX, Q_DY, Q_DZ, Q_COUNT, Q_DECLINATION,
[009a9e4]86   Q_LEFT, Q_RIGHT, Q_UP, Q_DOWN,
87   Q_MAC
[05c700b]88} q_quantity;
[bb90203]89
[27b8b59]90typedef enum {
[4e00b50]91   INFER_NULL = -1,
92   INFER_EQUATES,
93   INFER_EXPORTS,
94   INFER_PLUMBS,
95   INFER_SUBSURVEYS,
96   /* In Compass DAT files a dummy zero-length leg from a station to itself is
97    * used to provide a place to specify LRUD for the start or end of a
98    * traverse (depending if dimensions are measured at the from or to
99    * station), so we shouldn't warn about equating a station to itself.
100    */
101   INFER_EQUATES_SELF_OK
[27b8b59]102} infer_what;
103
[bb90203]104/* unsigned long to cope with 16-bit int-s */
105#define BIT(N) (1UL << (N))
106#define BITA(N) (1UL << ((N) - 'a'))
107
[7f08c83]108#define TSTBIT(W, N) (((W)>>(N))&1)
109
[bb90203]110/* masks for quantities which are length and angles respectively */
[4f38f94]111#define LEN_QMASK (BIT(Q_LENGTH) | BIT(Q_BACKLENGTH) | BIT(Q_DEPTH) |\
[9dc51ae]112   BIT(Q_DX) | BIT(Q_DY) | BIT(Q_DZ) | BIT(Q_POS) | BIT(Q_COUNT) |\
113   BIT(Q_LEFT) | BIT(Q_RIGHT) | BIT(Q_UP) | BIT(Q_DOWN))
[b14f44f]114#define ANG_QMASK (BIT(Q_BEARING) | BIT(Q_BACKBEARING) |\
115   BIT(Q_GRADIENT) | BIT(Q_BACKGRADIENT) | BIT(Q_PLUMB) | BIT(Q_LEVEL) |\
116   BIT(Q_DECLINATION))
[bb90203]117
[5c3c61a]118/* if you add/change the order, check factor_tab in commands.c */
[05c700b]119typedef enum {
120   UNITS_NULL = -1, UNITS_METRES, UNITS_FEET, UNITS_YARDS,
[00b10c1]121   UNITS_DEGS, UNITS_QUADRANTS, UNITS_GRADS, UNITS_PERCENT, UNITS_MINUTES,
122   UNITS_MAC, UNITS_DEPRECATED_ALIAS_FOR_GRADS
[05c700b]123} u_units;
[5c3c61a]124
[95c3272]125/* don't reorder these values!  They need to match with img.h too */
[5c3c61a]126typedef enum {
[95c3272]127   FLAGS_NOT = -2, FLAGS_UNKNOWN = -1, FLAGS_SURFACE, FLAGS_DUPLICATE,
[710ecc1]128   FLAGS_SPLAY,
[3d441da]129#if 0
130   /* underground, but through rock (e.g. radiolocation).  Want to hide from
131    * plots by default (so not cave) but don't want to include in surface
132    * triangulation nets (so not surface) */
[710ecc1]133   FLAGS_SKELETAL, /* FIXME */
[3d441da]134#endif
[dcbcae0]135   /* Don't need to match img.h: */
136   FLAGS_ANON_ONE_END,
[eb5aea0]137   FLAGS_IMPLICIT_SPLAY,
138   FLAGS_STYLE_BIT0, FLAGS_STYLE_BIT1, FLAGS_STYLE_BIT2
[5c3c61a]139} flags;
[bb90203]140
[eb5aea0]141/* flags are currently stored in an unsigned char */
142typedef int compiletimeassert_flags0[FLAGS_STYLE_BIT2 <= 7 ? 1 : -1];
143
144/* Mask to AND with to get bits to pass to img library. */
145#define FLAGS_MASK \
146    (BIT(FLAGS_SURFACE) | BIT(FLAGS_DUPLICATE) | BIT(FLAGS_SPLAY))
147
[ab4de24]148typedef int compiletimeassert_flags1[BIT(FLAGS_SURFACE) == img_FLAG_SURFACE ? 1 : -1];
149typedef int compiletimeassert_flags2[BIT(FLAGS_DUPLICATE) == img_FLAG_DUPLICATE ? 1 : -1];
150typedef int compiletimeassert_flags3[BIT(FLAGS_SPLAY) == img_FLAG_SPLAY ? 1 : -1];
151
[95c3272]152typedef enum {
[ee05463]153   /* Don't reorder these values!  They need to match with img.h too. */
[dfb4240]154   SFLAGS_SURFACE = 0, SFLAGS_UNDERGROUND, SFLAGS_ENTRANCE, SFLAGS_EXPORTED,
[dcbcae0]155   SFLAGS_FIXED, SFLAGS_ANON, SFLAGS_WALL,
[ee05463]156   /* These values don't need to match img.h, but mustn't clash. */
[f15cde77]157   SFLAGS_USED = 11,
[d333899]158   SFLAGS_SOLVED = 12, SFLAGS_SUSPECTTYPO = 13, SFLAGS_SURVEY = 14, SFLAGS_PREFIX_ENTERED = 15
[95c3272]159} sflags;
[ee05463]160
161/* Mask to AND with to get bits to pass to img library. */
162#define SFLAGS_MASK (BIT(SFLAGS_SURFACE) | BIT(SFLAGS_UNDERGROUND) |\
[a2c33ae]163        BIT(SFLAGS_ENTRANCE) | BIT(SFLAGS_EXPORTED) | BIT(SFLAGS_FIXED) |\
[dcbcae0]164        BIT(SFLAGS_ANON) | BIT(SFLAGS_WALL))
[95c3272]165
[ab4de24]166typedef int compiletimeassert_sflags1[BIT(SFLAGS_SURFACE) == img_SFLAG_SURFACE ? 1 : -1];
167typedef int compiletimeassert_sflags2[BIT(SFLAGS_UNDERGROUND) == img_SFLAG_UNDERGROUND ? 1 : -1];
168typedef int compiletimeassert_sflags3[BIT(SFLAGS_ENTRANCE) == img_SFLAG_ENTRANCE ? 1 : -1];
169typedef int compiletimeassert_sflags4[BIT(SFLAGS_EXPORTED) == img_SFLAG_EXPORTED ? 1 : -1];
170typedef int compiletimeassert_sflags5[BIT(SFLAGS_FIXED) == img_SFLAG_FIXED ? 1 : -1];
[a2c33ae]171typedef int compiletimeassert_sflags6[BIT(SFLAGS_ANON) == img_SFLAG_ANON ? 1 : -1];
[dcbcae0]172typedef int compiletimeassert_sflags7[BIT(SFLAGS_WALL) == img_SFLAG_WALL ? 1 : -1];
[ab4de24]173
[bb90203]174/* enumeration of field types */
[05c700b]175typedef enum {
[4f38f94]176   End = 0, Tape, Comp, Clino, BackTape, BackComp, BackClino,
177   Left, Right, Up, Down,
[21c226e]178   FrDepth, ToDepth, Dx, Dy, Dz, FrCount, ToCount,
[44bb30d]179   /* Up to here are readings are allowed multiple values
180    * and have slot in the value[] array in datain.c.
181    * (Depth, DepthChange, and Count can have multiple
182    * readings, but are actually handled using tokens
183    * above rather than as themselves).
184    *
185    * Fr must be the first reading after this comment!
186    */
[21c226e]187   Fr, To, Station, Depth, DepthChange, Count, Dir,
[44bb30d]188   Newline, IgnoreAllAndNewLine, Ignore, IgnoreAll,
189   /* IgnoreAll must be the last reading before this comment!
190    *
191    * Readings after this comment are only used in datain.c
192    * so can have enum values >= 32 because we only use a
193    * bitmask for those readings used in commands.c.
194    */
[07442af]195   CompassDATComp, CompassDATClino, CompassDATBackComp, CompassDATBackClino,
196   CompassDATLeft, CompassDATRight, CompassDATUp, CompassDATDown,
197   CompassDATFlags
[0395657]198} reading;
[05c700b]199
[90bb053f]200/* if IgnoreAll is >= 32, the compiler will choke on this */
201typedef char compiletimeassert_reading[IgnoreAll < 32 ? 1 : -1];
202
[3d441da]203/* position or length vector */
204typedef real delta[3];
205
206/* variance */
207#ifdef NO_COVARIANCES
208typedef real var[3];
209typedef var svar;
210#else
211typedef real var[3][3];
212typedef real svar[6];
213#endif
[bb90203]214
215/* station name */
216typedef struct Prefix {
217   struct Prefix *up, *down, *right;
218   struct Node *stn;
219   struct Pos *pos;
[eb18f4d]220   const char *ident;
[4d9eecd]221   const char *filename;
222   unsigned int line;
[c00c74a9]223   /* If (min_export == 0) then max_export is max # levels above is this
224    * prefix is used (and so needs to be exported) (0 == parent only).
225    * If (min_export > 0) then max_export is max # levels above this
[932f7e9]226    * prefix has been exported, and min_export is how far down the exports
227    * have got (if min_export > 1 after a run, this prefix hasn't been
[c00c74a9]228    * exported from below enough).
[27b8b59]229    * If INFER_EXPORTS is active when a station is encountered, we
[c00c74a9]230    * set min_export = USHRT_MAX and max_export gets set as usual.  Then at
231    * the end of the run, we also mark stations with min_export == USHRT_MAX
232    * and max_export > 0 as exported. */
233   unsigned short max_export, min_export;
[95c3272]234   /* stn flags - e.g. surface, underground, entrance
235    * also suspecttypo and survey */
[421b7d2]236   unsigned short sflags;
[c00c74a9]237   short shape;
[bb90203]238} prefix;
239
[b5a3219]240/* survey metadata */
241typedef struct Meta_data {
242    size_t ref_count;
[0e9e1ee]243    /* Days since 1900 for start and end date of survey, or -1 if undated. */
[1ee204e]244    int days1, days2;
[b5a3219]245} meta_data;
246
[bb90203]247/* stuff stored for both forward & reverse legs */
248typedef struct {
249   struct Node *to;
250   /* bits 0..1 = reverse leg number; bit7 is fFullLeg */
251   /* bit6 = fReplacementLeg (by reduction rules) */
[cb3d1e2]252   /* bit5 = articulation leg (i.e. carries no error) */
[67508f0]253   unsigned char reverse;
[5c3c61a]254   /* flags - e.g. surface, duplicate survey
[693388e]255    * only used if (FLAG_DATAHERE & !(FLAG_REPLACEMENTLEG|FLAG_FAKE))
[b5a3219]256    * This could be only in linkfor, but this is actually more space
257    * efficient.
[5c3c61a]258    */
[67508f0]259   unsigned char flags;
[bb90203]260} linkcommon;
[3d441da]261
[cb3d1e2]262#define FLAG_DATAHERE 0x80
263#define FLAG_REPLACEMENTLEG 0x40
[7f08c83]264#define FLAG_ARTICULATION 0x20
[693388e]265#define FLAG_FAKE 0x10 /* an equate or leg inside an sdfix */
[cb3d1e2]266#define MASK_REVERSEDIRN 0x03
[bb90203]267
268/* reverse leg - deltas & vars stored on other dirn */
269typedef struct LinkRev {
270   linkcommon l;
271} linkrev;
272
273/* forward leg - deltas & vars stored here */
274typedef struct Link {
275   linkcommon l;
[eb18f4d]276   delta d; /* Delta */
[59f2dbb]277   svar v; /* Variances */
[b5a3219]278   meta_data *meta;
[bb90203]279} linkfor;
280
281/* node - like a station, except several nodes are used to represent a
282 * station with more than 3 legs connected to it
283 */
284typedef struct Node {
285   struct Prefix *name;
286   struct Link *leg[3];
[564f471]287   struct Node *prev, *next;
[118eea4]288   long colour;
[bb90203]289} node;
290
291/* station position */
292typedef struct Pos {
[eb18f4d]293   delta p; /* Position */
[bb90203]294#if EXPLICIT_FIXED_FLAG
[67508f0]295   unsigned char fFixed; /* flag indicating if station is a fixed point */
[bb90203]296#endif
297} pos;
298
299/*
300typedef struct Inst {
301   real zero, scale, units;
302} inst;
303*/
304
[107b8bd]305/* Survey data styles */
306#define STYLE_NORMAL     0
307#define STYLE_DIVING     1
308#define STYLE_CARTESIAN  2
309#define STYLE_CYLPOLAR   3
[ac28f4f]310#define STYLE_NOSURVEY   4
311#define STYLE_PASSAGE    5
[ee05463]312#define STYLE_IGNORE     6
[107b8bd]313
[eb5aea0]314typedef int compiletimeassert_style1[STYLE_NORMAL == img_STYLE_NORMAL ? 1 : -1];
315typedef int compiletimeassert_style2[STYLE_DIVING == img_STYLE_DIVING ? 1 : -1];
316typedef int compiletimeassert_style3[STYLE_CARTESIAN == img_STYLE_CARTESIAN ? 1 : -1];
317typedef int compiletimeassert_style4[STYLE_CYLPOLAR == img_STYLE_CYLPOLAR ? 1 : -1];
318typedef int compiletimeassert_style5[STYLE_NOSURVEY == img_STYLE_NOSURVEY ? 1 : -1];
319
[bb90203]320/* various settings preserved by *BEGIN and *END */
321typedef struct Settings {
[b5a3219]322   struct Settings *next;
[eb18f4d]323   unsigned int Truncate;
[fa42426]324   bool f_clino_percent;
325   bool f_backclino_percent;
[00b10c1]326   bool f_bearing_quadrants;
327   bool f_backbearing_quadrants;
[dcbcae0]328   bool dash_for_anon_wall_station;
[27b8b59]329   unsigned char infer;
[bb90203]330   enum {OFF, LOWER, UPPER} Case;
[fdffa7d]331   /* STYLE_xxx value to process data as. */
[107b8bd]332   int style;
[fdffa7d]333   /* STYLE_xxx value to put in 3d file (different for Compass DAT diving
334    * data, as the data in the DAT file is always presented in the format
335    * tape,compass,clino even if that isn't how it was really measured).
336    */
337   int recorded_style;
[bb90203]338   prefix *Prefix;
[613028c]339   prefix *begin_survey; /* used to check BEGIN and END match */
[bb90203]340   short *Translate; /* if short is >= 16 bits, which ANSI requires */
341   real Var[Q_MAC];
342   real z[Q_MAC];
343   real sc[Q_MAC];
[cb3d1e2]344   real units[Q_MAC];
[78ed938]345   const reading *ordering;
[47c7a94]346   int begin_lineno; /* 0 means no block started in this file */
[5c3c61a]347   int flags;
[b39e24a]348   char* proj_str;
[58c7b459]349   /* Location at which we calculate the declination if
[3830dc0]350    * z[Q_DECLINATION] == HUGE_REAL.
351    *
352    * Latitude and longitude are in radians; altitude is in metres above the
353    * ellipsoid.
354    */
355   real dec_lat, dec_lon, dec_alt;
[b5907bb]356   /* Cached auto-declination in radians, or HUGE_REAL for no cached value.
357    * Only meaningful if date1 != -1.
[95b0f1d]358    */
359   real declination;
[37d6b84]360   double min_declination, max_declination;
361   int min_declination_days, max_declination_days;
362   const char* dec_filename;
363   int dec_line;
364   /* Copy of the text of the `*declination auto ...` line (malloced). */
365   char* dec_context;
[b5907bb]366   /* Grid convergence in radians. */
[2c17123e]367   real convergence;
[b5a3219]368   meta_data * meta;
[bb90203]369} settings;
370
371/* global variables */
372extern settings *pcs;
373extern prefix *root;
[a2c33ae]374extern prefix *anon_list;
[bb90203]375extern node *stnlist;
[3875c32]376extern unsigned long optimize;
[c092d72]377extern char * proj_str_out;
[da9163b]378extern PJ * pj_cached;
[bd283cf6]379
[bb90203]380extern char *survey_title;
381extern int survey_title_len;
382
383extern bool fExplicitTitle;
384extern long cLegs, cStns, cComponents;
385extern FILE *fhErrStat;
[693388e]386extern img *pimg;
[bb90203]387extern real totadj, total, totplan, totvert;
[dfac588]388extern real min[6], max[6];
389extern prefix *pfxHi[6], *pfxLo[6];
[647407d]390extern bool fQuiet; /* just show brief summary + errors */
[ed0f5b6]391extern bool fMute; /* just show errors */
[c0b279c]392extern bool fSuppress; /* only output 3d file */
[bb90203]393
394/* macros */
395
396#define POS(S, D) ((S)->name->pos->p[(D)])
397#define POSD(S) ((S)->name->pos->p)
398
399#define data_here(L) ((L)->l.reverse & FLAG_DATAHERE)
[cb3d1e2]400#define reverse_leg_dirn(L) ((L)->l.reverse & MASK_REVERSEDIRN)
401#define reverse_leg(L) ((L)->l.to->leg[reverse_leg_dirn(L)])
[bb90203]402
403#if EXPLICIT_FIXED_FLAG
404# define pfx_fixed(N) ((N)->pos->fFixed)
[3e25a0d]405# define pos_fixed(P) ((P)->fFixed)
[63d4f07]406# define fix(S) (S)->name->pos->fFixed = (char)true
407# define fixpos(P) (P)->fFixed = (char)true
408# define unfix(S) (S)->name->pos->fFixed = (char)false
[bb90203]409#else
410# define pfx_fixed(N) ((N)->pos->p[0] != UNFIXED_VAL)
[3e25a0d]411# define pos_fixed(P) ((P)->p[0] != UNFIXED_VAL)
[bb90203]412# define fix(S) NOP
[084905c]413# define fixpos(P) NOP
[bb90203]414# define unfix(S) POS((S), 0) = UNFIXED_VAL
415#endif
416#define fixed(S) pfx_fixed((S)->name)
417
[0af7076]418/* macros for special chars */
[bb90203]419
420#define isEol(c)    (pcs->Translate[(c)] & SPECIAL_EOL)
421#define isBlank(c)  (pcs->Translate[(c)] & SPECIAL_BLANK)
422#define isKeywd(c)  (pcs->Translate[(c)] & SPECIAL_KEYWORD)
423#define isComm(c)   (pcs->Translate[(c)] & SPECIAL_COMMENT)
424#define isOmit(c)   (pcs->Translate[(c)] & SPECIAL_OMIT)
[a882316]425#ifndef NO_DEPRECATED
[bb90203]426#define isRoot(c)   (pcs->Translate[(c)] & SPECIAL_ROOT)
[a882316]427#endif
[bb90203]428#define isSep(c)    (pcs->Translate[(c)] & SPECIAL_SEPARATOR)
429#define isNames(c)  (pcs->Translate[(c)] & SPECIAL_NAMES)
430#define isDecimal(c) (pcs->Translate[(c)] & SPECIAL_DECIMAL)
431#define isMinus(c)  (pcs->Translate[(c)] & SPECIAL_MINUS)
432#define isPlus(c)   (pcs->Translate[(c)] & SPECIAL_PLUS)
[21c226e]433#define isOpen(c)   (pcs->Translate[(c)] & SPECIAL_OPEN)
434#define isClose(c)  (pcs->Translate[(c)] & SPECIAL_CLOSE)
[bb90203]435
436#define isSign(c)   (pcs->Translate[(c)] & (SPECIAL_PLUS | SPECIAL_MINUS))
437#define isData(c)   (pcs->Translate[(c)] & (SPECIAL_OMIT | SPECIAL_ROOT|\
438   SPECIAL_SEPARATOR | SPECIAL_NAMES | SPECIAL_DECIMAL | SPECIAL_PLUS |\
439   SPECIAL_MINUS))
440
[647407d]441typedef struct nosurveylink {
442   node *fr, *to;
[b3bef47]443   int flags;
[ee05463]444   meta_data *meta;
[647407d]445   struct nosurveylink *next;
446} nosurveylink;
447
448extern nosurveylink *nosurveyhead;
449
[ee05463]450typedef struct lrud {
451    struct lrud * next;
452    prefix *stn;
[a6301a1]453    meta_data *meta;
[ee05463]454    real l, r, u, d;
455} lrud;
456
457typedef struct lrudlist {
458    lrud * tube;
459    struct lrudlist * next;
460} lrudlist;
461
462extern lrudlist * model;
463
464extern lrud ** next_lrud;
465
[3875c32]466#endif /* CAVERN_H */
Note: See TracBrowser for help on using the repository browser.