source: git/src/dump3d.c @ 4f70ebc

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-datawalls-data-hanging-as-warning
Last change on this file since 4f70ebc was 4f70ebc, checked in by Olly Betts <olly@…>, 10 years ago

src/: Add new "datestamp_numeric" field to struct img giving the
datestamp as a time_t in UTC (or (time_t)-1 if there's no datestamp
or we failed to convert it). For .3d >= v8, this field is reliable.
We attempt to convert date strings in .3d <= v7 and CMAP XYZ
files, but may get the timezone wrong.

  • Property mode set to 100644
File size: 5.9 KB
RevLine 
[02da880]1/* dump3d.c */
2/* Show raw contents of .3d file in text form */
[4f70ebc]3/* Copyright (C) 2001,2002,2006,2011,2012,2013,2014 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'},
[02da880]40   {"help", no_argument, 0, HLP_HELP},
41   {"version", no_argument, 0, HLP_VERSION},
42   {0, 0, 0, 0}
43};
44
[798a6bf]45#define short_opts "rds:"
[02da880]46
47static struct help_msg help[] = {
48/*                              <-- */
[fbc1d32]49   {HLP_ENCODELONG(0),        /*only load the sub-survey with this prefix*/199, 0},
50   {HLP_ENCODELONG(1),        /*rewind file and read it a second time*/204, 0},
[81dc8f3]51   {HLP_ENCODELONG(2),        /*show survey date information (if present)*/396, 0},
[fbc1d32]52   {0, 0, 0}
[02da880]53};
54
55int
56main(int argc, char **argv)
57{
58   char *fnm;
59   img *pimg;
60   img_point pt;
61   int code;
62   const char *survey = NULL;
[e7b9e00]63   bool fRewind = fFalse;
[798a6bf]64   bool show_dates = fFalse;
[02da880]65
[bdfe97f]66   msg_init(argv);
[02da880]67
68   cmdline_init(argc, argv, short_opts, long_opts, NULL, help, 1, 1);
69   while (1) {
70      int opt = cmdline_getopt();
71      if (opt == EOF) break;
72      if (opt == 's') survey = optarg;
[e7b9e00]73      if (opt == 'r') fRewind = fTrue;
[798a6bf]74      if (opt == 'd') show_dates = fTrue;
[02da880]75   }
76   fnm = argv[optind];
77
78#if 0
[ce9057c]79   pimg = img_open_write("dump3d.3d", "dump3d", 0);
[a405bc1]80   if (!pimg) fatalerror(img_error2msg(img_error()), "dump3d.3d");
[02da880]81   img_write_item(pimg, img_MOVE, 0, NULL, 0, 0, 0);
82   img_write_item(pimg, img_LINE, 0, "161.lostworld.upstream",
83                  36920.120000, 82672.840000, 1528.820000);
84   img_write_item(pimg, img_LINE, 0, "161.keinzimmer",
85                  36918.480000, 82663.360000, 1527.670000);
86   img_write_item(pimg, img_LINE, 0, "161.lostworld.upstream",
87                  36959.760000, 82679.880000, 1537.900000);
88   img_close(pimg);
89#endif
90
[a2ad284]91   pimg = img_open_survey(fnm, survey);
[a405bc1]92   if (!pimg) fatalerror(img_error2msg(img_error()), fnm);
[e7b9e00]93
[984f49e]94   printf("TITLE \"%s\"\n", pimg->title);
95   printf("DATE \"%s\"\n", pimg->datestamp);
[4f70ebc]96   printf("DATE_NUMERIC %ld\n", pimg->datestamp_numeric);
[5757725]97   printf("VERSION %d\n", pimg->version);
[88c1ccb]98   if (pimg->is_extended_elevation)
99      printf("EXTENDED ELEVATION\n");
[984f49e]100   printf("--\n");
[02da880]101
[e7b9e00]102   code = img_BAD;
[02da880]103   do {
[e7b9e00]104      if (code == img_STOP) {
105         printf("<<< REWIND <<<\n");
106         fRewind = fFalse;
[a405bc1]107         if (!img_rewind(pimg)) fatalerror(img_error2msg(img_error()), fnm);
[02da880]108      }
[e7b9e00]109
110      do {
111         code = img_read_item(pimg, &pt);
112         switch (code) {
113          case img_MOVE:
[f346a33]114            printf("MOVE %.2f %.2f %.2f\n", pt.x, pt.y, pt.z);
[e7b9e00]115            break;
116          case img_LINE:
[f346a33]117            printf("LINE %.2f %.2f %.2f [%s]", pt.x, pt.y, pt.z, pimg->label);
[567445a]118            switch (pimg->style) {
119                case img_STYLE_UNKNOWN:
120                    break;
121                case img_STYLE_NORMAL:
122                    printf(" STYLE=NORMAL");
123                    break;
124                case img_STYLE_DIVING:
125                    printf(" STYLE=DIVING");
126                    break;
127                case img_STYLE_CARTESIAN:
128                    printf(" STYLE=CARTESIAN");
129                    break;
130                case img_STYLE_CYLPOLAR:
131                    printf(" STYLE=CYLPOLAR");
132                    break;
133                case img_STYLE_NOSURVEY:
134                    printf(" STYLE=NOSURVEY");
135                    break;
136            }
[914e980]137            if (pimg->flags & img_FLAG_SURFACE) printf(" SURFACE");
138            if (pimg->flags & img_FLAG_DUPLICATE) printf(" DUPLICATE");
139            if (pimg->flags & img_FLAG_SPLAY) printf(" SPLAY");
[798a6bf]140            if (show_dates && pimg->days1 != -1) {
141                int y, m, d;
142                ymd_from_days_since_1900(pimg->days1, &y, &m, &d);
143                printf(" %04d.%02d.%02d", y, m, d);
144                if (pimg->days1 != pimg->days2) {
145                    ymd_from_days_since_1900(pimg->days2, &y, &m, &d);
146                    printf("-%04d.%02d.%02d", y, m, d);
147                }
148            }
[914e980]149            printf("\n");
[e7b9e00]150            break;
151          case img_LABEL:
[f346a33]152            printf("NODE %.2f %.2f %.2f [%s]", pt.x, pt.y, pt.z, pimg->label);
[914e980]153            if (pimg->flags & img_SFLAG_SURFACE) printf(" SURFACE");
154            if (pimg->flags & img_SFLAG_UNDERGROUND) printf(" UNDERGROUND");
155            if (pimg->flags & img_SFLAG_ENTRANCE) printf(" ENTRANCE");
156            if (pimg->flags & img_SFLAG_EXPORTED) printf(" EXPORTED");
157            if (pimg->flags & img_SFLAG_FIXED) printf(" FIXED");
[a2c33ae]158            if (pimg->flags & img_SFLAG_ANON) printf(" ANON");
[914e980]159            printf("\n");
[e7b9e00]160            break;
[01a88e5]161          case img_XSECT:
[a7f78d4]162            printf("XSECT %.2f %.2f %.2f %.2f [%s]",
[01a88e5]163                   pimg->l, pimg->r, pimg->u, pimg->d, pimg->label);
[a7f78d4]164            if (show_dates && pimg->days1 != -1) {
165                int y, m, d;
166                ymd_from_days_since_1900(pimg->days1, &y, &m, &d);
167                printf(" %04d.%02d.%02d", y, m, d);
168                if (pimg->days1 != pimg->days2) {
169                    ymd_from_days_since_1900(pimg->days2, &y, &m, &d);
170                    printf("-%04d.%02d.%02d", y, m, d);
171                }
172            }
173            printf("\n");
[01a88e5]174            break;
175          case img_XSECT_END:
176            printf("XSECT_END\n");
177            break;
[68961ee]178          case img_ERROR_INFO:
179            printf("ERROR_INFO #legs %d, len %.2fm, E %.2f H %.2f V %.2f\n",
180                   pimg->n_legs, pimg->length, pimg->E, pimg->H, pimg->V);
181            break;
[e7b9e00]182          case img_BAD:
183            img_close(pimg);
[a405bc1]184            fatalerror(img_error2msg(img_error()), fnm);
[8f365d5]185          case img_STOP:
186            printf("STOP\n");
187            break;
[8dfcf6c]188          default:
189            printf("CODE_0x%02x\n", code);
[e7b9e00]190         }
191      } while (code != img_STOP);
192   } while (fRewind);
[421b7d2]193
[02da880]194   img_close(pimg);
195
196   return 0;
197}
Note: See TracBrowser for help on using the repository browser.