source: git/src/dump3d.c @ 04078a7

faster-cavernloglog-selectstereo-2025walls-datawalls-data-hanging-as-warningwarn-only-for-hanging-survey
Last change on this file since 04078a7 was a17d22fc, checked in by Olly Betts <olly@…>, 16 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: 6.2 KB
RevLine 
[02da880]1/* dump3d.c */
2/* Show raw contents of .3d file in text form */
[33dc695]3/* Copyright (C) 2001-2022 Olly Betts
[02da880]4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
[914e980]17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
[02da880]18 */
19
20#ifdef HAVE_CONFIG_H
21# include <config.h>
22#endif
23
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <math.h>
28
29#include "cmdline.h"
[798a6bf]30#include "date.h"
[02da880]31#include "debug.h"
32#include "filelist.h"
[a405bc1]33#include "img_hosted.h"
[02da880]34
35static const struct option long_opts[] = {
36   /* const char *name; int has_arg (0 no_argument, 1 required_*, 2 optional_*); int *flag; int val; */
37   {"survey", required_argument, 0, 's'},
[e7b9e00]38   {"rewind", no_argument, 0, 'r'},
[798a6bf]39   {"show-dates", no_argument, 0, 'd'},
[33dc695]40   {"legs", no_argument, 0, 'l'},
[02da880]41   {"help", no_argument, 0, HLP_HELP},
42   {"version", no_argument, 0, HLP_VERSION},
43   {0, 0, 0, 0}
44};
45
[33dc695]46#define short_opts "rdls:"
[02da880]47
48static struct help_msg help[] = {
49/*                              <-- */
[fbc1d32]50   {HLP_ENCODELONG(0),        /*only load the sub-survey with this prefix*/199, 0},
[736f7df]51   /* TRANSLATORS: --help output for dump3d --rewind option */
[fbc1d32]52   {HLP_ENCODELONG(1),        /*rewind file and read it a second time*/204, 0},
[81dc8f3]53   {HLP_ENCODELONG(2),        /*show survey date information (if present)*/396, 0},
[33dc695]54   {HLP_ENCODELONG(3),        /*convert MOVE and LINE into LEG*/486, 0},
[fbc1d32]55   {0, 0, 0}
[02da880]56};
57
58int
59main(int argc, char **argv)
60{
61   char *fnm;
62   img *pimg;
63   img_point pt;
[33dc695]64   img_point from = { 0.0, 0.0, 0.0 };
[02da880]65   int code;
66   const char *survey = NULL;
[63d4f07]67   bool fRewind = false;
68   bool show_dates = false;
69   bool make_legs = false;
[02da880]70
[bdfe97f]71   msg_init(argv);
[02da880]72
73   cmdline_init(argc, argv, short_opts, long_opts, NULL, help, 1, 1);
74   while (1) {
75      int opt = cmdline_getopt();
76      if (opt == EOF) break;
77      if (opt == 's') survey = optarg;
[63d4f07]78      if (opt == 'r') fRewind = true;
79      if (opt == 'd') show_dates = true;
80      if (opt == 'l') make_legs = true;
[02da880]81   }
82   fnm = argv[optind];
83
[a2ad284]84   pimg = img_open_survey(fnm, survey);
[a405bc1]85   if (!pimg) fatalerror(img_error2msg(img_error()), fnm);
[e7b9e00]86
[984f49e]87   printf("TITLE \"%s\"\n", pimg->title);
88   printf("DATE \"%s\"\n", pimg->datestamp);
[4f70ebc]89   printf("DATE_NUMERIC %ld\n", pimg->datestamp_numeric);
[48a7381]90   if (pimg->cs)
91      printf("CS %s\n", pimg->cs);
[5757725]92   printf("VERSION %d\n", pimg->version);
[88c1ccb]93   if (pimg->is_extended_elevation)
94      printf("EXTENDED ELEVATION\n");
[6f402d7]95   printf("SEPARATOR '%c'\n", pimg->separator);
[984f49e]96   printf("--\n");
[02da880]97
[e7b9e00]98   code = img_BAD;
[02da880]99   do {
[e7b9e00]100      if (code == img_STOP) {
101         printf("<<< REWIND <<<\n");
[63d4f07]102         fRewind = false;
[a405bc1]103         if (!img_rewind(pimg)) fatalerror(img_error2msg(img_error()), fnm);
[02da880]104      }
[e7b9e00]105
106      do {
107         code = img_read_item(pimg, &pt);
108         switch (code) {
109          case img_MOVE:
[33dc695]110            if (make_legs) {
111               from = pt;
112            } else {
113               printf("MOVE %.2f %.2f %.2f\n", pt.x, pt.y, pt.z);
114            }
[e7b9e00]115            break;
116          case img_LINE:
[33dc695]117            if (make_legs) {
118               printf("LEG %.2f %.2f %.2f %.2f %.2f %.2f [%s]",
119                      from.x, from.y, from.z,
120                      pt.x, pt.y, pt.z, pimg->label);
121               from = pt;
122            } else {
123               printf("LINE %.2f %.2f %.2f [%s]",
124                      pt.x, pt.y, pt.z, pimg->label);
125            }
[567445a]126            switch (pimg->style) {
127                case img_STYLE_UNKNOWN:
128                    break;
129                case img_STYLE_NORMAL:
130                    printf(" STYLE=NORMAL");
131                    break;
132                case img_STYLE_DIVING:
133                    printf(" STYLE=DIVING");
134                    break;
135                case img_STYLE_CARTESIAN:
136                    printf(" STYLE=CARTESIAN");
137                    break;
138                case img_STYLE_CYLPOLAR:
139                    printf(" STYLE=CYLPOLAR");
140                    break;
141                case img_STYLE_NOSURVEY:
142                    printf(" STYLE=NOSURVEY");
143                    break;
144            }
[914e980]145            if (pimg->flags & img_FLAG_SURFACE) printf(" SURFACE");
146            if (pimg->flags & img_FLAG_DUPLICATE) printf(" DUPLICATE");
147            if (pimg->flags & img_FLAG_SPLAY) printf(" SPLAY");
[798a6bf]148            if (show_dates && pimg->days1 != -1) {
149                int y, m, d;
150                ymd_from_days_since_1900(pimg->days1, &y, &m, &d);
151                printf(" %04d.%02d.%02d", y, m, d);
152                if (pimg->days1 != pimg->days2) {
153                    ymd_from_days_since_1900(pimg->days2, &y, &m, &d);
154                    printf("-%04d.%02d.%02d", y, m, d);
155                }
156            }
[914e980]157            printf("\n");
[e7b9e00]158            break;
159          case img_LABEL:
[f346a33]160            printf("NODE %.2f %.2f %.2f [%s]", pt.x, pt.y, pt.z, pimg->label);
[914e980]161            if (pimg->flags & img_SFLAG_SURFACE) printf(" SURFACE");
162            if (pimg->flags & img_SFLAG_UNDERGROUND) printf(" UNDERGROUND");
163            if (pimg->flags & img_SFLAG_ENTRANCE) printf(" ENTRANCE");
164            if (pimg->flags & img_SFLAG_EXPORTED) printf(" EXPORTED");
165            if (pimg->flags & img_SFLAG_FIXED) printf(" FIXED");
[a2c33ae]166            if (pimg->flags & img_SFLAG_ANON) printf(" ANON");
[5b9d78d]167            if (pimg->flags & img_SFLAG_WALL) printf(" WALL");
[914e980]168            printf("\n");
[e7b9e00]169            break;
[01a88e5]170          case img_XSECT:
[a7f78d4]171            printf("XSECT %.2f %.2f %.2f %.2f [%s]",
[01a88e5]172                   pimg->l, pimg->r, pimg->u, pimg->d, pimg->label);
[a7f78d4]173            if (show_dates && pimg->days1 != -1) {
174                int y, m, d;
175                ymd_from_days_since_1900(pimg->days1, &y, &m, &d);
176                printf(" %04d.%02d.%02d", y, m, d);
177                if (pimg->days1 != pimg->days2) {
178                    ymd_from_days_since_1900(pimg->days2, &y, &m, &d);
179                    printf("-%04d.%02d.%02d", y, m, d);
180                }
181            }
182            printf("\n");
[01a88e5]183            break;
184          case img_XSECT_END:
185            printf("XSECT_END\n");
186            break;
[68961ee]187          case img_ERROR_INFO:
188            printf("ERROR_INFO #legs %d, len %.2fm, E %.2f H %.2f V %.2f\n",
189                   pimg->n_legs, pimg->length, pimg->E, pimg->H, pimg->V);
190            break;
[e7b9e00]191          case img_BAD:
192            img_close(pimg);
[a405bc1]193            fatalerror(img_error2msg(img_error()), fnm);
[e63ce4d]194            /* fatalerror() won't return, but the compiler can't tell that and
195             * may warn about dropping through into the next case without a
196             * "break;" here.
197             */
198            break;
[8f365d5]199          case img_STOP:
200            printf("STOP\n");
201            break;
[8dfcf6c]202          default:
203            printf("CODE_0x%02x\n", code);
[e7b9e00]204         }
205      } while (code != img_STOP);
206   } while (fRewind);
[421b7d2]207
[02da880]208   img_close(pimg);
209
210   return 0;
211}
Note: See TracBrowser for help on using the repository browser.