[0da6e60] | 1 | /* img.c |
---|
[d1b1380] | 2 | * Routines for reading and writing Survex ".3d" image files |
---|
[ad4eaf3f] | 3 | * Copyright (C) 1993-2002 Olly Betts |
---|
[846746e] | 4 | * |
---|
[89231c4] | 5 | * This program is free software; you can redistribute it and/or modify |
---|
| 6 | * it under the terms of the GNU General Public License as published by |
---|
| 7 | * the Free Software Foundation; either version 2 of the License, or |
---|
| 8 | * (at your option) any later version. |
---|
[846746e] | 9 | * |
---|
| 10 | * This program is distributed in the hope that it will be useful, |
---|
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
[89231c4] | 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 13 | * GNU General Public License for more details. |
---|
[846746e] | 14 | * |
---|
[89231c4] | 15 | * You should have received a copy of the GNU General Public License |
---|
| 16 | * along with this program; if not, write to the Free Software |
---|
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
[d1b1380] | 18 | */ |
---|
| 19 | |
---|
[a420b49] | 20 | #ifdef HAVE_CONFIG_H |
---|
| 21 | # include <config.h> |
---|
| 22 | #endif |
---|
| 23 | |
---|
[d1b1380] | 24 | #include <stdio.h> |
---|
| 25 | #include <string.h> |
---|
| 26 | #include <stdlib.h> |
---|
| 27 | #include <time.h> |
---|
| 28 | #include <ctype.h> |
---|
| 29 | |
---|
[72af530] | 30 | #include "img.h" |
---|
[7d27e36] | 31 | |
---|
[72af530] | 32 | #ifdef IMG_HOSTED |
---|
[d69255f] | 33 | # include "debug.h" |
---|
[d1b1380] | 34 | # include "filelist.h" |
---|
[d69255f] | 35 | # include "filename.h" |
---|
| 36 | # include "message.h" |
---|
| 37 | # include "useful.h" |
---|
[a420b49] | 38 | # define TIMENA msg(/*Date and time not available.*/108) |
---|
| 39 | # define TIMEFMT msg(/*%a,%Y.%m.%d %H:%M:%S %Z*/107) |
---|
[d1b1380] | 40 | #else |
---|
[72af530] | 41 | # define INT32_T long |
---|
[d1b1380] | 42 | # define TIMENA "Time not available." |
---|
| 43 | # define TIMEFMT "%a,%Y.%m.%d %H:%M:%S %Z" |
---|
| 44 | # define EXT_SVX_3D "3d" |
---|
| 45 | # define xosmalloc(L) malloc((L)) |
---|
[72af530] | 46 | # define xosrealloc(L,S) realloc((L),(S)) |
---|
[d1b1380] | 47 | # define osfree(P) free((P)) |
---|
| 48 | # define ossizeof(T) sizeof(T) |
---|
[72af530] | 49 | /* in IMG_HOSTED mode, this tests if a filename refers to a directory */ |
---|
[d1b1380] | 50 | # define fDirectory(X) 0 |
---|
| 51 | /* open file FNM with mode MODE, maybe using path PTH and/or extension EXT */ |
---|
| 52 | /* path isn't used in img.c, but EXT is */ |
---|
| 53 | # define fopenWithPthAndExt(PTH,FNM,EXT,MODE,X) fopen(FNM,MODE) |
---|
| 54 | # define fFalse 0 |
---|
| 55 | # define fTrue 1 |
---|
| 56 | # define bool int |
---|
| 57 | /* dummy do {...} while(0) hack to permit stuff like |
---|
| 58 | * if (s) fputsnl(s,fh); else exit(1); |
---|
| 59 | * to work as intended |
---|
| 60 | */ |
---|
[23f7ea7] | 61 | # define fputsnl(S, FH) do {fputs((S), (FH)); putc('\n', (FH));} while(0) |
---|
[d69255f] | 62 | # define ASSERT(X) |
---|
[d1b1380] | 63 | |
---|
[a420b49] | 64 | static long |
---|
| 65 | get32(FILE *fh) |
---|
| 66 | { |
---|
[ad9a5cd] | 67 | long w = getc(fh); |
---|
[a420b49] | 68 | w |= (long)getc(fh) << 8l; |
---|
| 69 | w |= (long)getc(fh) << 16l; |
---|
| 70 | w |= (long)getc(fh) << 24l; |
---|
| 71 | return w; |
---|
[d1b1380] | 72 | } |
---|
| 73 | |
---|
[a420b49] | 74 | static void |
---|
| 75 | put32(long w, FILE *fh) |
---|
| 76 | { |
---|
| 77 | putc((char)(w), fh); |
---|
| 78 | putc((char)(w >> 8l), fh); |
---|
| 79 | putc((char)(w >> 16l), fh); |
---|
| 80 | putc((char)(w >> 24l), fh); |
---|
[d1b1380] | 81 | } |
---|
[5c3c61a] | 82 | |
---|
| 83 | #endif |
---|
| 84 | |
---|
[dd1d6369] | 85 | #ifdef HAVE_ROUND |
---|
| 86 | # include <math.h> |
---|
| 87 | extern double round(double); /* prototype is often missing... */ |
---|
| 88 | # define my_round round |
---|
| 89 | #else |
---|
| 90 | static double |
---|
| 91 | my_round(double x) { |
---|
| 92 | if (x >= 0.0) return floor(x + 0.5); |
---|
| 93 | return ceil(x - 0.5); |
---|
| 94 | } |
---|
| 95 | #endif |
---|
| 96 | |
---|
[ad4eaf3f] | 97 | /* portable case insensitive string compare */ |
---|
| 98 | #if defined(strcasecmp) || defined(HAVE_STRCASECMP) |
---|
| 99 | # define my_strcasecmp strcasecmp |
---|
| 100 | #else |
---|
| 101 | /* What about top bit set chars? */ |
---|
| 102 | int my_strcasecmp(const char *s1, const char *s2) { |
---|
| 103 | register c1, c2; |
---|
| 104 | do { |
---|
| 105 | c1 = *s1++; |
---|
| 106 | c2 = *s2++; |
---|
| 107 | } while (c1 && toupper(c1) == toupper(c2)); |
---|
| 108 | /* now calculate real difference */ |
---|
| 109 | return c1 - c2; |
---|
| 110 | } |
---|
| 111 | #endif |
---|
| 112 | |
---|
[d69255f] | 113 | unsigned int img_output_version = 3; |
---|
[5c3c61a] | 114 | |
---|
[72af530] | 115 | #ifdef IMG_HOSTED |
---|
[5c3c61a] | 116 | static enum { |
---|
| 117 | IMG_NONE = 0, |
---|
[759fb47] | 118 | IMG_FILENOTFOUND = /*Couldn't open data file `%s'*/24, |
---|
[5c3c61a] | 119 | IMG_OUTOFMEMORY = /*Out of memory %.0s*/38, |
---|
[759fb47] | 120 | IMG_DIRECTORY = /*Filename `%s' refers to directory*/44, |
---|
| 121 | IMG_CANTOPENOUT = /*Failed to open output file `%s'*/47, |
---|
[ad9a5cd] | 122 | IMG_BADFORMAT = /*Bad 3d image file `%s'*/106, |
---|
| 123 | IMG_READERROR = /*Error reading from file `%s'*/109, |
---|
[6c1c4f3] | 124 | IMG_WRITEERROR = /*Error writing to file `%s'*/110, |
---|
| 125 | IMG_TOONEW = /*File `%s' has a newer format than this program can understand*/114 |
---|
[5c3c61a] | 126 | } img_errno = IMG_NONE; |
---|
| 127 | #else |
---|
| 128 | static img_errcode img_errno = IMG_NONE; |
---|
[c0563da] | 129 | #endif |
---|
[d1b1380] | 130 | |
---|
[7d27e36] | 131 | #define FILEID "Survex 3D Image File" |
---|
| 132 | |
---|
[ad4eaf3f] | 133 | #define EXT_PLT "plt" |
---|
| 134 | |
---|
[0da6e60] | 135 | /* Attempt to string paste to ensure we are passed a literal string */ |
---|
| 136 | #define LITLEN(S) (sizeof(S"") - 1) |
---|
| 137 | |
---|
[7d27e36] | 138 | static char * |
---|
| 139 | my_strdup(const char *str) |
---|
[a420b49] | 140 | { |
---|
[7d27e36] | 141 | char *p; |
---|
| 142 | size_t len = strlen(str) + 1; |
---|
| 143 | p = xosmalloc(len); |
---|
| 144 | if (p) memcpy(p, str, len); |
---|
| 145 | return p; |
---|
[d1b1380] | 146 | } |
---|
[c0563da] | 147 | |
---|
[a2ad284] | 148 | static char * |
---|
| 149 | getline_alloc(FILE *fh) |
---|
| 150 | { |
---|
| 151 | int ch; |
---|
| 152 | size_t i = 0; |
---|
| 153 | size_t len = 16; |
---|
| 154 | char *buf = xosmalloc(len); |
---|
| 155 | if (!buf) return NULL; |
---|
| 156 | |
---|
| 157 | ch = getc(fh); |
---|
| 158 | while (ch != '\n' && ch != '\r' && ch != EOF) { |
---|
| 159 | buf[i++] = ch; |
---|
| 160 | if (i == len - 1) { |
---|
| 161 | char *p; |
---|
| 162 | len += len; |
---|
| 163 | p = xosrealloc(buf, len); |
---|
| 164 | if (!p) { |
---|
| 165 | osfree(buf); |
---|
| 166 | return NULL; |
---|
| 167 | } |
---|
| 168 | buf = p; |
---|
| 169 | } |
---|
| 170 | ch = getc(fh); |
---|
| 171 | } |
---|
| 172 | if (ch == '\n' || ch == '\r') { |
---|
| 173 | /* remove any further eol chars (for DOS text files) */ |
---|
| 174 | do { |
---|
| 175 | ch = getc(fh); |
---|
| 176 | } while (ch == '\n' || ch == '\r'); |
---|
| 177 | ungetc(ch, fh); /* we don't want it, so put it back */ |
---|
| 178 | } |
---|
[421b7d2] | 179 | buf[i++] = '\0'; |
---|
[a2ad284] | 180 | return buf; |
---|
| 181 | } |
---|
| 182 | |
---|
[72af530] | 183 | #ifndef IMG_HOSTED |
---|
[a420b49] | 184 | img_errcode |
---|
| 185 | img_error(void) |
---|
| 186 | { |
---|
| 187 | return img_errno; |
---|
[d1b1380] | 188 | } |
---|
| 189 | #else |
---|
[a420b49] | 190 | int |
---|
| 191 | img_error(void) |
---|
| 192 | { |
---|
| 193 | return (int)img_errno; |
---|
[d1b1380] | 194 | } |
---|
| 195 | #endif |
---|
| 196 | |
---|
[a420b49] | 197 | img * |
---|
[a2ad284] | 198 | img_open_survey(const char *fnm, const char *survey) |
---|
[a420b49] | 199 | { |
---|
| 200 | img *pimg; |
---|
[0da6e60] | 201 | size_t len; |
---|
[7d27e36] | 202 | char buf[LITLEN(FILEID) + 1]; |
---|
| 203 | int ch; |
---|
[a420b49] | 204 | |
---|
| 205 | if (fDirectory(fnm)) { |
---|
| 206 | img_errno = IMG_DIRECTORY; |
---|
| 207 | return NULL; |
---|
| 208 | } |
---|
[d1b1380] | 209 | |
---|
[a420b49] | 210 | pimg = (img *)xosmalloc(ossizeof(img)); |
---|
| 211 | if (pimg == NULL) { |
---|
| 212 | img_errno = IMG_OUTOFMEMORY; |
---|
| 213 | return NULL; |
---|
| 214 | } |
---|
[d1b1380] | 215 | |
---|
[23f7ea7] | 216 | pimg->buf_len = 257; |
---|
[0ff23cb] | 217 | pimg->label_buf = xosmalloc(pimg->buf_len); |
---|
| 218 | if (!pimg->label_buf) { |
---|
[23f7ea7] | 219 | osfree(pimg); |
---|
| 220 | img_errno = IMG_OUTOFMEMORY; |
---|
| 221 | return NULL; |
---|
| 222 | } |
---|
| 223 | |
---|
[a420b49] | 224 | pimg->fh = fopenWithPthAndExt("", fnm, EXT_SVX_3D, "rb", NULL); |
---|
| 225 | if (pimg->fh == NULL) { |
---|
| 226 | osfree(pimg); |
---|
| 227 | img_errno = IMG_FILENOTFOUND; |
---|
| 228 | return NULL; |
---|
| 229 | } |
---|
[d1b1380] | 230 | |
---|
[0da6e60] | 231 | pimg->fRead = fTrue; /* reading from this file */ |
---|
| 232 | img_errno = IMG_NONE; |
---|
| 233 | |
---|
| 234 | pimg->flags = 0; |
---|
| 235 | |
---|
| 236 | /* for version 3 we use label_buf to store the prefix for reuse */ |
---|
| 237 | pimg->label_len = 0; |
---|
| 238 | |
---|
| 239 | pimg->survey = NULL; |
---|
| 240 | pimg->survey_len = 0; |
---|
| 241 | |
---|
[58f02ae] | 242 | pimg->title = NULL; |
---|
[0da6e60] | 243 | if (survey) { |
---|
| 244 | len = strlen(survey); |
---|
| 245 | if (len) { |
---|
| 246 | if (survey[len - 1] == '.') len--; |
---|
| 247 | if (len) { |
---|
| 248 | char *p; |
---|
| 249 | pimg->survey = osmalloc(len + 2); |
---|
| 250 | memcpy(pimg->survey, survey, len); |
---|
| 251 | /* Set title to leaf survey name */ |
---|
| 252 | pimg->survey[len] = '\0'; |
---|
| 253 | p = strchr(pimg->survey, '.'); |
---|
| 254 | if (p) p++; else p = pimg->survey; |
---|
[7d27e36] | 255 | pimg->title = my_strdup(p); |
---|
| 256 | if (!pimg->title) { |
---|
| 257 | img_errno = IMG_OUTOFMEMORY; |
---|
| 258 | goto error; |
---|
| 259 | } |
---|
[0da6e60] | 260 | pimg->survey[len] = '.'; |
---|
| 261 | pimg->survey[len + 1] = '\0'; |
---|
| 262 | } |
---|
| 263 | } |
---|
| 264 | pimg->survey_len = len; |
---|
| 265 | } |
---|
| 266 | |
---|
[ad4eaf3f] | 267 | /* [version -2] pending IMG_LINE ('D') or IMG_MOVE ('M') |
---|
| 268 | * [version -1] already skipped heading line, or there wasn't one |
---|
[0da6e60] | 269 | * [version 0] not in the middle of a 'LINE' command |
---|
| 270 | * [version 3] not in the middle of turning a LINE into a MOVE |
---|
| 271 | */ |
---|
| 272 | pimg->pending = 0; |
---|
| 273 | |
---|
| 274 | len = strlen(fnm); |
---|
| 275 | if (len > LITLEN(EXT_SVX_POS) + 1 && |
---|
| 276 | fnm[len - LITLEN(EXT_SVX_POS) - 1] == FNM_SEP_EXT && |
---|
[ad4eaf3f] | 277 | my_strcasecmp(fnm + len - LITLEN(EXT_SVX_POS), EXT_SVX_POS) == 0) { |
---|
[0da6e60] | 278 | pimg->version = -1; |
---|
[984f49e] | 279 | if (!pimg->survey) pimg->title = baseleaf_from_fnm(fnm); |
---|
[7d27e36] | 280 | pimg->datestamp = my_strdup(TIMENA); |
---|
| 281 | if (!pimg->datestamp) { |
---|
| 282 | img_errno = IMG_OUTOFMEMORY; |
---|
| 283 | goto error; |
---|
| 284 | } |
---|
[58f02ae] | 285 | pimg->start = 0; |
---|
[0da6e60] | 286 | return pimg; |
---|
| 287 | } |
---|
[ad4eaf3f] | 288 | |
---|
| 289 | if (len > LITLEN(EXT_PLT) + 1 && |
---|
| 290 | fnm[len - LITLEN(EXT_PLT) - 1] == FNM_SEP_EXT && |
---|
| 291 | my_strcasecmp(fnm + len - LITLEN(EXT_PLT), EXT_PLT) == 0) { |
---|
| 292 | char *line = NULL; |
---|
[f710a3f] | 293 | |
---|
[ad4eaf3f] | 294 | pimg->version = -2; |
---|
[984f49e] | 295 | if (!pimg->survey) pimg->title = baseleaf_from_fnm(fnm); |
---|
[ad4eaf3f] | 296 | pimg->datestamp = my_strdup(TIMENA); |
---|
| 297 | if (!pimg->datestamp) { |
---|
| 298 | img_errno = IMG_OUTOFMEMORY; |
---|
| 299 | goto error; |
---|
| 300 | } |
---|
| 301 | do { |
---|
[984f49e] | 302 | do { |
---|
| 303 | osfree(line); |
---|
| 304 | line = getline_alloc(pimg->fh); |
---|
| 305 | if (!line) { |
---|
| 306 | img_errno = IMG_OUTOFMEMORY; |
---|
| 307 | goto error; |
---|
| 308 | } |
---|
| 309 | if (line[0] == '\x1a') { |
---|
| 310 | osfree(line); |
---|
| 311 | pimg->pending = img_STOP + 4; |
---|
| 312 | return pimg; |
---|
| 313 | } |
---|
| 314 | if (feof(pimg->fh)) { |
---|
[ad4eaf3f] | 315 | osfree(line); |
---|
| 316 | img_errno = IMG_BADFORMAT; |
---|
[984f49e] | 317 | goto error; |
---|
[ad4eaf3f] | 318 | } |
---|
[984f49e] | 319 | } while (line[0] != 'N'); |
---|
[f710a3f] | 320 | |
---|
[984f49e] | 321 | len = 1; |
---|
| 322 | while (line[len] > 32) ++len; |
---|
| 323 | } while (pimg->survey && (pimg->survey_len != len - 1 || |
---|
| 324 | memcmp(line + 1, pimg->survey, pimg->survey_len) != 0)); |
---|
[f710a3f] | 325 | |
---|
| 326 | if (len > pimg->buf_len) { |
---|
| 327 | char *b = xosrealloc(pimg->label_buf, len); |
---|
| 328 | if (!b) { |
---|
| 329 | img_errno = IMG_OUTOFMEMORY; |
---|
[984f49e] | 330 | goto error; |
---|
[f710a3f] | 331 | } |
---|
| 332 | pimg->label_buf = b; |
---|
| 333 | pimg->buf_len = len; |
---|
| 334 | } |
---|
[984f49e] | 335 | --len; |
---|
[f710a3f] | 336 | pimg->label_len = len; |
---|
| 337 | pimg->label = pimg->label_buf; |
---|
| 338 | memcpy(pimg->label, line + 1, len); |
---|
| 339 | pimg->label[len] = '\0'; |
---|
[984f49e] | 340 | if (pimg->survey) { |
---|
| 341 | char *q = strchr(line + len, 'C'); |
---|
| 342 | if (q && q[1]) { |
---|
| 343 | osfree(pimg->title); |
---|
| 344 | pimg->title = osstrdup(q + 1); |
---|
| 345 | } else if (!pimg->title) { |
---|
| 346 | pimg->title = osstrdup(pimg->label); |
---|
| 347 | } |
---|
| 348 | if (!pimg->title) { |
---|
| 349 | img_errno = IMG_OUTOFMEMORY; |
---|
| 350 | goto error; |
---|
| 351 | } |
---|
| 352 | } |
---|
[ad4eaf3f] | 353 | osfree(line); |
---|
| 354 | pimg->start = 0; |
---|
| 355 | return pimg; |
---|
| 356 | } |
---|
[0da6e60] | 357 | |
---|
[7d27e36] | 358 | if (fread(buf, LITLEN(FILEID) + 1, 1, pimg->fh) != 1 || |
---|
| 359 | memcmp(buf, FILEID"\n", LITLEN(FILEID)) != 0) { |
---|
[a420b49] | 360 | img_errno = IMG_BADFORMAT; |
---|
[58f02ae] | 361 | goto error; |
---|
[a420b49] | 362 | } |
---|
[d1b1380] | 363 | |
---|
[7d27e36] | 364 | /* check file format version */ |
---|
| 365 | ch = getc(pimg->fh); |
---|
| 366 | pimg->version = 0; |
---|
| 367 | if (tolower(ch) == 'b') { |
---|
| 368 | /* binary file iff B/b prefix */ |
---|
| 369 | pimg->version = 1; |
---|
| 370 | ch = getc(pimg->fh); |
---|
| 371 | } |
---|
| 372 | if (ch != 'v') { |
---|
| 373 | img_errno = IMG_BADFORMAT; |
---|
| 374 | goto error; |
---|
| 375 | } |
---|
| 376 | ch = getc(pimg->fh); |
---|
| 377 | if (ch == '0') { |
---|
| 378 | if (fread(buf, 4, 1, pimg->fh) != 1 || memcmp(buf, ".01\n", 4) != 0) { |
---|
| 379 | img_errno = IMG_BADFORMAT; |
---|
| 380 | goto error; |
---|
| 381 | } |
---|
[0da6e60] | 382 | /* nothing special to do */ |
---|
[7d27e36] | 383 | } else if (pimg->version == 0) { |
---|
| 384 | if (ch < '2' || ch > '3' || getc(pimg->fh) != '\n') { |
---|
[6c1c4f3] | 385 | img_errno = IMG_TOONEW; |
---|
[58f02ae] | 386 | goto error; |
---|
[6c1c4f3] | 387 | } |
---|
[7d27e36] | 388 | pimg->version = ch - '0'; |
---|
[5c3c61a] | 389 | } else { |
---|
[647407d] | 390 | img_errno = IMG_BADFORMAT; |
---|
[58f02ae] | 391 | goto error; |
---|
[a420b49] | 392 | } |
---|
[421b7d2] | 393 | |
---|
[4d3dfdf] | 394 | if (!pimg->title) |
---|
| 395 | pimg->title = getline_alloc(pimg->fh); |
---|
| 396 | else |
---|
| 397 | osfree(getline_alloc(pimg->fh)); |
---|
[a2ad284] | 398 | pimg->datestamp = getline_alloc(pimg->fh); |
---|
| 399 | if (!pimg->title || !pimg->datestamp) { |
---|
[58f02ae] | 400 | img_errno = IMG_OUTOFMEMORY; |
---|
| 401 | error: |
---|
[a2ad284] | 402 | osfree(pimg->title); |
---|
[984f49e] | 403 | osfree(pimg->datestamp); |
---|
[a2ad284] | 404 | fclose(pimg->fh); |
---|
| 405 | osfree(pimg); |
---|
| 406 | return NULL; |
---|
| 407 | } |
---|
| 408 | |
---|
[58f02ae] | 409 | pimg->start = ftell(pimg->fh); |
---|
[421b7d2] | 410 | |
---|
[a420b49] | 411 | return pimg; |
---|
[d1b1380] | 412 | } |
---|
| 413 | |
---|
[f2588ca] | 414 | void |
---|
| 415 | img_rewind(img *pimg) |
---|
| 416 | { |
---|
| 417 | fseek(pimg->fh, pimg->start, SEEK_SET); |
---|
[58f02ae] | 418 | clearerr(pimg->fh); |
---|
| 419 | /* [version -1] already skipped heading line, or there wasn't one |
---|
| 420 | * [version 0] not in the middle of a 'LINE' command |
---|
[76bbb7c9] | 421 | * [version 3] not in the middle of turning a LINE into a MOVE */ |
---|
[984f49e] | 422 | pimg->pending = 0; /* FIXME: consider rewind on .plt with survey matching nothing ... */ |
---|
[d69255f] | 423 | |
---|
| 424 | img_errno = IMG_NONE; |
---|
[99cf51a] | 425 | |
---|
[5d7280f8] | 426 | /* for version 3 we use label_buf to store the prefix for reuse */ |
---|
[d69255f] | 427 | pimg->label_len = 0; |
---|
[f2588ca] | 428 | } |
---|
| 429 | |
---|
[a420b49] | 430 | img * |
---|
[fe8e80e] | 431 | img_open_write(const char *fnm, char *title_buf, bool fBinary) |
---|
[a420b49] | 432 | { |
---|
| 433 | time_t tm; |
---|
| 434 | img *pimg; |
---|
[d1b1380] | 435 | |
---|
[d69255f] | 436 | fBinary = fBinary; |
---|
| 437 | |
---|
[a420b49] | 438 | if (fDirectory(fnm)) { |
---|
| 439 | img_errno = IMG_DIRECTORY; |
---|
| 440 | return NULL; |
---|
| 441 | } |
---|
[d1b1380] | 442 | |
---|
[a420b49] | 443 | pimg = (img *)xosmalloc(ossizeof(img)); |
---|
| 444 | if (pimg == NULL) { |
---|
| 445 | img_errno = IMG_OUTOFMEMORY; |
---|
| 446 | return NULL; |
---|
| 447 | } |
---|
[d1b1380] | 448 | |
---|
[fe8e80e] | 449 | pimg->buf_len = 257; |
---|
[0ff23cb] | 450 | pimg->label_buf = xosmalloc(pimg->buf_len); |
---|
| 451 | if (!pimg->label_buf) { |
---|
[fe8e80e] | 452 | osfree(pimg); |
---|
| 453 | img_errno = IMG_OUTOFMEMORY; |
---|
| 454 | return NULL; |
---|
| 455 | } |
---|
| 456 | |
---|
[a420b49] | 457 | pimg->fh = fopen(fnm, "wb"); |
---|
| 458 | if (!pimg->fh) { |
---|
| 459 | osfree(pimg); |
---|
| 460 | img_errno = IMG_CANTOPENOUT; |
---|
| 461 | return NULL; |
---|
| 462 | } |
---|
[d1b1380] | 463 | |
---|
[a420b49] | 464 | /* Output image file header */ |
---|
| 465 | fputs("Survex 3D Image File\n", pimg->fh); /* file identifier string */ |
---|
[5c3c61a] | 466 | if (img_output_version < 2) { |
---|
[d69255f] | 467 | pimg->version = 1; |
---|
| 468 | fputs("Bv0.01\n", pimg->fh); /* binary file format version number */ |
---|
[5c3c61a] | 469 | } else { |
---|
[d69255f] | 470 | pimg->version = (img_output_version > 2) ? 3 : 2; |
---|
[5c3c61a] | 471 | fprintf(pimg->fh, "v%d\n", pimg->version); /* file format version no. */ |
---|
| 472 | } |
---|
[fe8e80e] | 473 | fputsnl(title_buf, pimg->fh); |
---|
[a420b49] | 474 | tm = time(NULL); |
---|
| 475 | if (tm == (time_t)-1) { |
---|
| 476 | fputsnl(TIMENA, pimg->fh); |
---|
| 477 | } else { |
---|
[7d27e36] | 478 | char date[256]; |
---|
[a420b49] | 479 | /* output current date and time in format specified */ |
---|
[7d27e36] | 480 | strftime(date, 256, TIMEFMT, localtime(&tm)); |
---|
| 481 | fputsnl(date, pimg->fh); |
---|
[a420b49] | 482 | } |
---|
| 483 | pimg->fRead = fFalse; /* writing to this file */ |
---|
| 484 | img_errno = IMG_NONE; |
---|
[d69255f] | 485 | |
---|
[5d7280f8] | 486 | /* for version 3 we use label_buf to store the prefix for reuse */ |
---|
[0ff23cb] | 487 | pimg->label_buf[0] = '\0'; |
---|
[d69255f] | 488 | pimg->label_len = 0; |
---|
| 489 | |
---|
[ad9a5cd] | 490 | /* Don't check for write errors now - let img_close() report them... */ |
---|
[a420b49] | 491 | return pimg; |
---|
[d1b1380] | 492 | } |
---|
| 493 | |
---|
[ad9a5cd] | 494 | static int |
---|
| 495 | read_coord(FILE *fh, img_point *pt) |
---|
| 496 | { |
---|
| 497 | ASSERT(fh); |
---|
| 498 | ASSERT(pt); |
---|
| 499 | pt->x = get32(fh) / 100.0; |
---|
| 500 | pt->y = get32(fh) / 100.0; |
---|
| 501 | pt->z = get32(fh) / 100.0; |
---|
| 502 | if (ferror(fh) || feof(fh)) { |
---|
| 503 | img_errno = feof(fh) ? IMG_BADFORMAT : IMG_READERROR; |
---|
| 504 | return 0; |
---|
[421b7d2] | 505 | } |
---|
[ad9a5cd] | 506 | return 1; |
---|
| 507 | } |
---|
| 508 | |
---|
[4d3dfdf] | 509 | static int |
---|
| 510 | skip_coord(FILE *fh) |
---|
| 511 | { |
---|
| 512 | return (fseek(fh, 12, SEEK_CUR) == 0); |
---|
| 513 | } |
---|
| 514 | |
---|
[a420b49] | 515 | int |
---|
[23f7ea7] | 516 | img_read_item(img *pimg, img_point *p) |
---|
[a420b49] | 517 | { |
---|
| 518 | int result; |
---|
[95c3272] | 519 | pimg->flags = 0; |
---|
[d69255f] | 520 | |
---|
| 521 | if (pimg->version == 3) { |
---|
| 522 | int opt; |
---|
[76bbb7c9] | 523 | if (pimg->pending >= 0x80) { |
---|
| 524 | *p = pimg->mv; |
---|
| 525 | pimg->flags = (int)(pimg->pending) & 0x3f; |
---|
| 526 | pimg->pending = 0; |
---|
[421b7d2] | 527 | return img_LINE; |
---|
[76bbb7c9] | 528 | } |
---|
[d69255f] | 529 | again3: /* label to goto if we get a prefix */ |
---|
[4d3dfdf] | 530 | pimg->label = pimg->label_buf; |
---|
[d69255f] | 531 | opt = getc(pimg->fh); |
---|
[ad9a5cd] | 532 | if (opt == EOF) { |
---|
| 533 | img_errno = feof(pimg->fh) ? IMG_BADFORMAT : IMG_READERROR; |
---|
| 534 | return img_BAD; |
---|
| 535 | } |
---|
[d69255f] | 536 | switch (opt >> 6) { |
---|
| 537 | case 0: |
---|
| 538 | if (opt == 0) { |
---|
| 539 | if (!pimg->label_len) return img_STOP; /* end of data marker */ |
---|
| 540 | pimg->label_len = 0; |
---|
| 541 | goto again3; |
---|
| 542 | } |
---|
| 543 | if (opt < 15) { |
---|
| 544 | /* 1-14 mean trim that many levels from current prefix */ |
---|
| 545 | int c; |
---|
| 546 | if (pimg->label_len <= 16) { |
---|
[4d3dfdf] | 547 | /* zero prefix using "0" */ |
---|
[d69255f] | 548 | img_errno = IMG_BADFORMAT; |
---|
| 549 | return img_BAD; |
---|
| 550 | } |
---|
[4b156b3] | 551 | c = pimg->label_len - 16 - 1; |
---|
[0ff23cb] | 552 | while (pimg->label_buf[c] != '.' || --opt > 0) { |
---|
[d69255f] | 553 | if (--c < 0) { |
---|
| 554 | /* zero prefix using "0" */ |
---|
| 555 | img_errno = IMG_BADFORMAT; |
---|
| 556 | return img_BAD; |
---|
| 557 | } |
---|
| 558 | } |
---|
| 559 | c++; |
---|
| 560 | pimg->label_len = c; |
---|
| 561 | goto again3; |
---|
| 562 | } |
---|
| 563 | if (opt == 15) { |
---|
| 564 | result = img_MOVE; |
---|
| 565 | break; |
---|
| 566 | } |
---|
| 567 | /* 16-31 mean remove (n - 15) characters from the prefix */ |
---|
| 568 | /* zero prefix using 0 */ |
---|
[ad4eaf3f] | 569 | if (pimg->label_len <= (size_t)(opt - 15)) { |
---|
[d69255f] | 570 | img_errno = IMG_BADFORMAT; |
---|
| 571 | return img_BAD; |
---|
| 572 | } |
---|
[d245d71] | 573 | pimg->label_len -= (opt - 15); |
---|
[d69255f] | 574 | goto again3; |
---|
| 575 | case 1: case 2: { |
---|
| 576 | char *q; |
---|
[ad9a5cd] | 577 | long len = getc(pimg->fh); |
---|
| 578 | if (len == EOF) { |
---|
| 579 | img_errno = feof(pimg->fh) ? IMG_BADFORMAT : IMG_READERROR; |
---|
| 580 | return img_BAD; |
---|
| 581 | } |
---|
[d69255f] | 582 | if (len == 0xfe) { |
---|
| 583 | len += get16(pimg->fh); |
---|
[ad9a5cd] | 584 | if (feof(pimg->fh)) { |
---|
| 585 | img_errno = IMG_BADFORMAT; |
---|
| 586 | return img_BAD; |
---|
| 587 | } |
---|
| 588 | if (ferror(pimg->fh)) { |
---|
| 589 | img_errno = IMG_READERROR; |
---|
| 590 | return img_BAD; |
---|
| 591 | } |
---|
[d69255f] | 592 | } else if (len == 0xff) { |
---|
| 593 | len = get32(pimg->fh); |
---|
[ad9a5cd] | 594 | if (ferror(pimg->fh)) { |
---|
| 595 | img_errno = IMG_READERROR; |
---|
| 596 | return img_BAD; |
---|
| 597 | } |
---|
| 598 | if (feof(pimg->fh) || len < 0xfe + 0xffff) { |
---|
[d69255f] | 599 | img_errno = IMG_BADFORMAT; |
---|
| 600 | return img_BAD; |
---|
| 601 | } |
---|
| 602 | } |
---|
| 603 | |
---|
[0ff23cb] | 604 | q = pimg->label_buf + pimg->label_len; |
---|
[d69255f] | 605 | pimg->label_len += len; |
---|
| 606 | if (pimg->label_len >= pimg->buf_len) { |
---|
[58f02ae] | 607 | char *b = xosrealloc(pimg->label_buf, pimg->label_len + 1); |
---|
| 608 | if (!b) { |
---|
[d69255f] | 609 | img_errno = IMG_OUTOFMEMORY; |
---|
| 610 | return img_BAD; |
---|
| 611 | } |
---|
[58f02ae] | 612 | q = (q - pimg->label_buf) + b; |
---|
| 613 | pimg->label = pimg->label_buf = b; |
---|
[d69255f] | 614 | pimg->buf_len = pimg->label_len + 1; |
---|
| 615 | } |
---|
| 616 | if (len && fread(q, len, 1, pimg->fh) != 1) { |
---|
[ad9a5cd] | 617 | img_errno = feof(pimg->fh) ? IMG_BADFORMAT : IMG_READERROR; |
---|
[d69255f] | 618 | return img_BAD; |
---|
| 619 | } |
---|
| 620 | q[len] = '\0'; |
---|
[76bbb7c9] | 621 | |
---|
| 622 | result = opt & 0x40 ? img_LABEL : img_LINE; |
---|
| 623 | |
---|
| 624 | if (pimg->survey_len) { |
---|
| 625 | size_t l = pimg->survey_len; |
---|
[0ff23cb] | 626 | const char *s = pimg->label_buf; |
---|
[76bbb7c9] | 627 | if (result == img_LINE) { |
---|
| 628 | if (strncmp(pimg->survey, s, l) != 0 || |
---|
| 629 | !(s[l] == '.' || s[l] == '\0')) { |
---|
[421b7d2] | 630 | if (!read_coord(pimg->fh, &(pimg->mv))) return img_BAD; |
---|
[76bbb7c9] | 631 | pimg->pending = 15; |
---|
[421b7d2] | 632 | goto again3; |
---|
[76bbb7c9] | 633 | } |
---|
| 634 | } else { |
---|
| 635 | if (strncmp(pimg->survey, s, l + 1) != 0) { |
---|
[4d3dfdf] | 636 | if (!skip_coord(pimg->fh)) return img_BAD; |
---|
| 637 | pimg->pending = 0; |
---|
[76bbb7c9] | 638 | goto again3; |
---|
| 639 | } |
---|
| 640 | } |
---|
[0ff23cb] | 641 | pimg->label += l; |
---|
| 642 | /* skip the dot if there */ |
---|
| 643 | if (*pimg->label) pimg->label++; |
---|
[76bbb7c9] | 644 | } |
---|
| 645 | |
---|
| 646 | if (result == img_LINE && pimg->pending) { |
---|
| 647 | *p = pimg->mv; |
---|
[ad9a5cd] | 648 | if (!read_coord(pimg->fh, &(pimg->mv))) return img_BAD; |
---|
[76bbb7c9] | 649 | pimg->pending = opt; |
---|
| 650 | return img_MOVE; |
---|
| 651 | } |
---|
| 652 | pimg->flags = (int)opt & 0x3f; |
---|
[d69255f] | 653 | break; |
---|
| 654 | } |
---|
| 655 | default: |
---|
| 656 | img_errno = IMG_BADFORMAT; |
---|
| 657 | return img_BAD; |
---|
| 658 | } |
---|
[ad9a5cd] | 659 | if (!read_coord(pimg->fh, p)) return img_BAD; |
---|
[76bbb7c9] | 660 | pimg->pending = 0; |
---|
[d69255f] | 661 | return result; |
---|
[4d3dfdf] | 662 | } |
---|
| 663 | |
---|
| 664 | pimg->label = pimg->label_buf; |
---|
| 665 | |
---|
| 666 | if (pimg->version > 0) { |
---|
[d69255f] | 667 | static long opt_lookahead = 0; |
---|
[ad9a5cd] | 668 | static img_point pt = { 0.0, 0.0, 0.0 }; |
---|
[a420b49] | 669 | long opt; |
---|
| 670 | again: /* label to goto if we get a cross */ |
---|
[5d7280f8] | 671 | pimg->label[0] = '\0'; |
---|
[ad9a5cd] | 672 | |
---|
[5c3c61a] | 673 | if (pimg->version == 1) { |
---|
[c4d4649] | 674 | if (opt_lookahead) { |
---|
| 675 | opt = opt_lookahead; |
---|
| 676 | opt_lookahead = 0; |
---|
| 677 | } else { |
---|
| 678 | opt = get32(pimg->fh); |
---|
| 679 | } |
---|
[5c3c61a] | 680 | } else { |
---|
[421b7d2] | 681 | opt = getc(pimg->fh); |
---|
[5c3c61a] | 682 | } |
---|
[ad9a5cd] | 683 | |
---|
| 684 | if (feof(pimg->fh)) { |
---|
| 685 | img_errno = IMG_BADFORMAT; |
---|
| 686 | return img_BAD; |
---|
| 687 | } |
---|
| 688 | if (ferror(pimg->fh)) { |
---|
| 689 | img_errno = IMG_READERROR; |
---|
| 690 | return img_BAD; |
---|
| 691 | } |
---|
| 692 | |
---|
[a420b49] | 693 | switch (opt) { |
---|
[437caf3] | 694 | case -1: case 0: |
---|
[a420b49] | 695 | return img_STOP; /* end of data marker */ |
---|
| 696 | case 1: |
---|
[ad9a5cd] | 697 | /* skip coordinates */ |
---|
[4d3dfdf] | 698 | if (!skip_coord(pimg->fh)) { |
---|
[ad9a5cd] | 699 | img_errno = feof(pimg->fh) ? IMG_BADFORMAT : IMG_READERROR; |
---|
| 700 | return img_BAD; |
---|
| 701 | } |
---|
[a420b49] | 702 | goto again; |
---|
[23f7ea7] | 703 | case 2: case 3: { |
---|
[fe8e80e] | 704 | char *q; |
---|
[3a1f8da] | 705 | int ch; |
---|
[437caf3] | 706 | result = img_LABEL; |
---|
[3a1f8da] | 707 | ch = getc(pimg->fh); |
---|
[d69255f] | 708 | if (ch == EOF) { |
---|
[ad9a5cd] | 709 | img_errno = feof(pimg->fh) ? IMG_BADFORMAT : IMG_READERROR; |
---|
[d69255f] | 710 | return img_BAD; |
---|
| 711 | } |
---|
[3a1f8da] | 712 | if (ch != '\\') ungetc(ch, pimg->fh); |
---|
[0ff23cb] | 713 | fgets(pimg->label_buf, 257, pimg->fh); |
---|
[421b7d2] | 714 | if (feof(pimg->fh)) { |
---|
[ad9a5cd] | 715 | img_errno = IMG_BADFORMAT; |
---|
| 716 | return img_BAD; |
---|
| 717 | } |
---|
[421b7d2] | 718 | if (ferror(pimg->fh)) { |
---|
[ad9a5cd] | 719 | img_errno = IMG_READERROR; |
---|
| 720 | return img_BAD; |
---|
| 721 | } |
---|
[0ff23cb] | 722 | q = pimg->label_buf + strlen(pimg->label_buf) - 1; |
---|
[d69255f] | 723 | if (*q != '\n') { |
---|
| 724 | img_errno = IMG_BADFORMAT; |
---|
| 725 | return img_BAD; |
---|
| 726 | } |
---|
[9968ebf] | 727 | /* Ignore empty labels in some .3d files (caused by a bug) */ |
---|
[0ff23cb] | 728 | if (q == pimg->label_buf) goto again; |
---|
[fe8e80e] | 729 | *q = '\0'; |
---|
[509e099] | 730 | pimg->flags = img_SFLAG_UNDERGROUND; /* no flags given... */ |
---|
[437caf3] | 731 | if (opt == 2) goto done; |
---|
| 732 | break; |
---|
[23f7ea7] | 733 | } |
---|
[95c3272] | 734 | case 6: case 7: { |
---|
[ad9a5cd] | 735 | long len; |
---|
[23f7ea7] | 736 | result = img_LABEL; |
---|
[ad9a5cd] | 737 | |
---|
[509e099] | 738 | if (opt == 7) |
---|
| 739 | pimg->flags = getc(pimg->fh); |
---|
| 740 | else |
---|
| 741 | pimg->flags = img_SFLAG_UNDERGROUND; /* no flags given... */ |
---|
[ad9a5cd] | 742 | |
---|
[23f7ea7] | 743 | len = get32(pimg->fh); |
---|
[ad9a5cd] | 744 | |
---|
| 745 | if (feof(pimg->fh)) { |
---|
| 746 | img_errno = IMG_BADFORMAT; |
---|
| 747 | return img_BAD; |
---|
| 748 | } |
---|
| 749 | if (ferror(pimg->fh)) { |
---|
| 750 | img_errno = IMG_READERROR; |
---|
| 751 | return img_BAD; |
---|
| 752 | } |
---|
| 753 | |
---|
[9968ebf] | 754 | /* Ignore empty labels in some .3d files (caused by a bug) */ |
---|
| 755 | if (len == 0) goto again; |
---|
[dd1d6369] | 756 | if (len >= (long)pimg->buf_len) { |
---|
[9b56f4d] | 757 | char *b = xosrealloc(pimg->label_buf, len + 1); |
---|
| 758 | if (!b) { |
---|
[23f7ea7] | 759 | img_errno = IMG_OUTOFMEMORY; |
---|
| 760 | return img_BAD; |
---|
| 761 | } |
---|
[9b56f4d] | 762 | pimg->label = pimg->label_buf = b; |
---|
[23f7ea7] | 763 | pimg->buf_len = len + 1; |
---|
| 764 | } |
---|
[0ff23cb] | 765 | if (fread(pimg->label_buf, len, 1, pimg->fh) != 1) { |
---|
[ad9a5cd] | 766 | img_errno = feof(pimg->fh) ? IMG_BADFORMAT : IMG_READERROR; |
---|
[d69255f] | 767 | return img_BAD; |
---|
| 768 | } |
---|
[23f7ea7] | 769 | break; |
---|
| 770 | } |
---|
[a420b49] | 771 | case 4: |
---|
| 772 | result = img_MOVE; |
---|
| 773 | break; |
---|
| 774 | case 5: |
---|
| 775 | result = img_LINE; |
---|
| 776 | break; |
---|
| 777 | default: |
---|
[95c3272] | 778 | switch ((int)opt & 0xc0) { |
---|
| 779 | case 0x80: |
---|
| 780 | pimg->flags = (int)opt & 0x3f; |
---|
| 781 | result = img_LINE; |
---|
| 782 | break; |
---|
| 783 | case 0x40: { |
---|
| 784 | char *q; |
---|
| 785 | pimg->flags = (int)opt & 0x3f; |
---|
| 786 | result = img_LABEL; |
---|
[0ff23cb] | 787 | if (!fgets(pimg->label_buf, 257, pimg->fh)) { |
---|
[ad9a5cd] | 788 | img_errno = feof(pimg->fh) ? IMG_BADFORMAT : IMG_READERROR; |
---|
[d69255f] | 789 | return img_BAD; |
---|
| 790 | } |
---|
[0ff23cb] | 791 | q = pimg->label_buf + strlen(pimg->label_buf) - 1; |
---|
[9968ebf] | 792 | /* Ignore empty-labels in some .3d files (caused by a bug) */ |
---|
[0ff23cb] | 793 | if (q == pimg->label_buf) goto again; |
---|
[d69255f] | 794 | if (*q != '\n') { |
---|
| 795 | img_errno = IMG_BADFORMAT; |
---|
| 796 | return img_BAD; |
---|
| 797 | } |
---|
[95c3272] | 798 | *q = '\0'; |
---|
| 799 | break; |
---|
| 800 | } |
---|
| 801 | case 0xc0: |
---|
| 802 | /* use this for an extra leg or station flag if we need it */ |
---|
| 803 | default: |
---|
[d69255f] | 804 | img_errno = IMG_BADFORMAT; |
---|
[95c3272] | 805 | return img_BAD; |
---|
| 806 | } |
---|
[437caf3] | 807 | break; |
---|
[a420b49] | 808 | } |
---|
[ad9a5cd] | 809 | |
---|
| 810 | if (!read_coord(pimg->fh, &pt)) return img_BAD; |
---|
[76bbb7c9] | 811 | |
---|
[ed0f5b6] | 812 | if (result == img_LABEL && pimg->survey_len) { |
---|
| 813 | if (strncmp(pimg->label_buf, pimg->survey, pimg->survey_len + 1) != 0) |
---|
[0ff23cb] | 814 | goto again; |
---|
| 815 | pimg->label += pimg->survey_len + 1; |
---|
| 816 | } |
---|
[76bbb7c9] | 817 | |
---|
[a420b49] | 818 | done: |
---|
[ad9a5cd] | 819 | *p = pt; |
---|
[c4d4649] | 820 | |
---|
| 821 | if (result == img_MOVE && pimg->version == 1) { |
---|
[d69255f] | 822 | /* peek at next code and see if it's an old-style label */ |
---|
[23f7ea7] | 823 | opt_lookahead = get32(pimg->fh); |
---|
[ad9a5cd] | 824 | |
---|
| 825 | if (feof(pimg->fh)) { |
---|
| 826 | img_errno = IMG_BADFORMAT; |
---|
| 827 | return img_BAD; |
---|
| 828 | } |
---|
| 829 | if (ferror(pimg->fh)) { |
---|
| 830 | img_errno = IMG_READERROR; |
---|
| 831 | return img_BAD; |
---|
| 832 | } |
---|
| 833 | |
---|
[d69255f] | 834 | if (opt_lookahead == 2) return img_read_item(pimg, p); |
---|
[c4d4649] | 835 | } |
---|
[23f7ea7] | 836 | |
---|
[a420b49] | 837 | return result; |
---|
[0da6e60] | 838 | } else if (pimg->version == 0) { |
---|
[a420b49] | 839 | ascii_again: |
---|
[5d7280f8] | 840 | pimg->label[0] = '\0'; |
---|
[a420b49] | 841 | if (feof(pimg->fh)) return img_STOP; |
---|
[76bbb7c9] | 842 | if (pimg->pending) { |
---|
| 843 | pimg->pending = 0; |
---|
[a420b49] | 844 | result = img_LINE; |
---|
| 845 | } else { |
---|
[7d27e36] | 846 | char cmd[7]; |
---|
[a420b49] | 847 | /* Stop if nothing found */ |
---|
[7d27e36] | 848 | if (fscanf(pimg->fh, "%6s", cmd) < 1) return img_STOP; |
---|
| 849 | if (strcmp(cmd, "move") == 0) |
---|
[a420b49] | 850 | result = img_MOVE; |
---|
[7d27e36] | 851 | else if (strcmp(cmd, "draw") == 0) |
---|
[a420b49] | 852 | result = img_LINE; |
---|
[7d27e36] | 853 | else if (strcmp(cmd, "line") == 0) { |
---|
[bd1913f] | 854 | /* set flag to indicate to process second triplet as LINE */ |
---|
[76bbb7c9] | 855 | pimg->pending = 1; |
---|
[a420b49] | 856 | result = img_MOVE; |
---|
[7d27e36] | 857 | } else if (strcmp(cmd, "cross") == 0) { |
---|
[d69255f] | 858 | if (fscanf(pimg->fh, "%lf%lf%lf", &p->x, &p->y, &p->z) < 3) { |
---|
[ad9a5cd] | 859 | img_errno = feof(pimg->fh) ? IMG_BADFORMAT : IMG_READERROR; |
---|
[0ed0e16] | 860 | return img_BAD; |
---|
[d69255f] | 861 | } |
---|
[a420b49] | 862 | goto ascii_again; |
---|
[7d27e36] | 863 | } else if (strcmp(cmd, "name") == 0) { |
---|
[0da6e60] | 864 | size_t off = 0; |
---|
[58f02ae] | 865 | int ch = getc(pimg->fh); |
---|
| 866 | if (ch == ' ') ch = getc(pimg->fh); |
---|
| 867 | while (ch != ' ') { |
---|
| 868 | if (ch == '\n' || ch == EOF) { |
---|
| 869 | img_errno = ferror(pimg->fh) ? IMG_READERROR : IMG_BADFORMAT; |
---|
[ad9a5cd] | 870 | return img_BAD; |
---|
| 871 | } |
---|
[58f02ae] | 872 | if (off == pimg->buf_len) { |
---|
[9b56f4d] | 873 | char *b; |
---|
| 874 | b = xosrealloc(pimg->label_buf, pimg->buf_len * 2); |
---|
| 875 | if (!b) { |
---|
| 876 | img_errno = IMG_OUTOFMEMORY; |
---|
| 877 | return img_BAD; |
---|
| 878 | } |
---|
| 879 | pimg->label_buf = b; |
---|
| 880 | pimg->buf_len *= 2; |
---|
[0da6e60] | 881 | } |
---|
[58f02ae] | 882 | pimg->label_buf[off++] = ch; |
---|
| 883 | ch = getc(pimg->fh); |
---|
[ad9a5cd] | 884 | } |
---|
[58f02ae] | 885 | pimg->label_buf[off] = '\0'; |
---|
| 886 | |
---|
| 887 | pimg->label = pimg->label_buf; |
---|
| 888 | if (pimg->label[0] == '\\') pimg->label++; |
---|
[0da6e60] | 889 | |
---|
[a420b49] | 890 | result = img_LABEL; |
---|
[d69255f] | 891 | } else { |
---|
| 892 | img_errno = IMG_BADFORMAT; |
---|
[a420b49] | 893 | return img_BAD; /* unknown keyword */ |
---|
[d69255f] | 894 | } |
---|
[a420b49] | 895 | } |
---|
[d1b1380] | 896 | |
---|
[d69255f] | 897 | if (fscanf(pimg->fh, "%lf%lf%lf", &p->x, &p->y, &p->z) < 3) { |
---|
[ad9a5cd] | 898 | img_errno = ferror(pimg->fh) ? IMG_READERROR : IMG_BADFORMAT; |
---|
[fe8e80e] | 899 | return img_BAD; |
---|
[d69255f] | 900 | } |
---|
| 901 | |
---|
[58f02ae] | 902 | if (result == img_LABEL && pimg->survey_len) { |
---|
| 903 | if (strncmp(pimg->label, pimg->survey, pimg->survey_len + 1) != 0) |
---|
[0ff23cb] | 904 | goto ascii_again; |
---|
| 905 | pimg->label += pimg->survey_len + 1; |
---|
| 906 | } |
---|
[76bbb7c9] | 907 | |
---|
[a420b49] | 908 | return result; |
---|
[ad4eaf3f] | 909 | } else if (pimg->version == -1) { |
---|
[0da6e60] | 910 | /* version -1: .pos file */ |
---|
[58f02ae] | 911 | size_t off; |
---|
[5eea574] | 912 | pimg->flags = img_SFLAG_UNDERGROUND; /* default flags */ |
---|
[58f02ae] | 913 | againpos: |
---|
| 914 | off = 0; |
---|
[0da6e60] | 915 | while (fscanf(pimg->fh, "(%lf,%lf,%lf ) ", &p->x, &p->y, &p->z) != 3) { |
---|
| 916 | int ch; |
---|
| 917 | if (ferror(pimg->fh)) { |
---|
| 918 | img_errno = IMG_READERROR; |
---|
| 919 | return img_BAD; |
---|
| 920 | } |
---|
| 921 | if (feof(pimg->fh)) return img_STOP; |
---|
| 922 | if (pimg->pending) { |
---|
| 923 | img_errno = IMG_BADFORMAT; |
---|
| 924 | return img_BAD; |
---|
| 925 | } |
---|
| 926 | pimg->pending = 1; |
---|
| 927 | /* ignore rest of line */ |
---|
| 928 | do { |
---|
| 929 | ch = getc(pimg->fh); |
---|
| 930 | } while (ch != '\n' && ch != '\r' && ch != EOF); |
---|
| 931 | } |
---|
| 932 | |
---|
| 933 | pimg->label_buf[0] = '\0'; |
---|
| 934 | while (!feof(pimg->fh)) { |
---|
[9b56f4d] | 935 | char *b; |
---|
[0da6e60] | 936 | if (!fgets(pimg->label_buf + off, pimg->buf_len - off, pimg->fh)) { |
---|
| 937 | img_errno = IMG_READERROR; |
---|
| 938 | return img_BAD; |
---|
| 939 | } |
---|
| 940 | |
---|
| 941 | off += strlen(pimg->label_buf + off); |
---|
| 942 | if (off && pimg->label_buf[off - 1] == '\n') { |
---|
| 943 | pimg->label_buf[off - 1] = '\0'; |
---|
| 944 | break; |
---|
| 945 | } |
---|
[9b56f4d] | 946 | b = xosrealloc(pimg->label_buf, pimg->buf_len * 2); |
---|
| 947 | if (!b) { |
---|
| 948 | img_errno = IMG_OUTOFMEMORY; |
---|
| 949 | return img_BAD; |
---|
| 950 | } |
---|
| 951 | pimg->label_buf = b; |
---|
| 952 | pimg->buf_len *= 2; |
---|
[0da6e60] | 953 | } |
---|
| 954 | |
---|
[58f02ae] | 955 | pimg->label = pimg->label_buf; |
---|
| 956 | |
---|
[421b7d2] | 957 | if (pimg->label[0] == '\\') pimg->label++; |
---|
[58f02ae] | 958 | |
---|
| 959 | if (pimg->survey_len) { |
---|
| 960 | size_t l = pimg->survey_len + 1; |
---|
| 961 | if (strncmp(pimg->survey, pimg->label, l) != 0) goto againpos; |
---|
| 962 | pimg->label += l; |
---|
| 963 | } |
---|
| 964 | |
---|
[0da6e60] | 965 | return img_LABEL; |
---|
[ad4eaf3f] | 966 | } else { |
---|
| 967 | /* version -2: Compass .plt file */ |
---|
| 968 | if (pimg->pending) { |
---|
[984f49e] | 969 | /* pending MOVE or LINE or STOP */ |
---|
| 970 | int r = pimg->pending - 4; |
---|
[ad4eaf3f] | 971 | pimg->pending = 0; |
---|
| 972 | pimg->flags = 0; |
---|
[f710a3f] | 973 | pimg->label[pimg->label_len] = '\0'; |
---|
[ad4eaf3f] | 974 | return r; |
---|
| 975 | } |
---|
| 976 | |
---|
| 977 | while (1) { |
---|
| 978 | char *line = getline_alloc(pimg->fh); |
---|
| 979 | char *q; |
---|
| 980 | size_t len = 0; |
---|
| 981 | |
---|
| 982 | switch (line[0]) { |
---|
| 983 | case 'M': case 'D': |
---|
| 984 | /* Move or Draw */ |
---|
| 985 | if (sscanf(line + 1, "%lf %lf %lf", &p->x, &p->y, &p->z) != 3) { |
---|
| 986 | osfree(line); |
---|
| 987 | if (ferror(pimg->fh)) { |
---|
| 988 | img_errno = IMG_READERROR; |
---|
| 989 | } else { |
---|
| 990 | img_errno = IMG_BADFORMAT; |
---|
| 991 | } |
---|
| 992 | return img_BAD; |
---|
| 993 | } |
---|
| 994 | q = strchr(line, 'S'); |
---|
| 995 | if (!q) { |
---|
| 996 | osfree(line); |
---|
| 997 | img_errno = IMG_BADFORMAT; |
---|
| 998 | return img_BAD; |
---|
| 999 | } |
---|
| 1000 | ++q; |
---|
| 1001 | len = 0; |
---|
| 1002 | while (q[len] > ' ') ++len; |
---|
| 1003 | q[len] = '\0'; |
---|
[f710a3f] | 1004 | len += 2; /* '.' and '\0' */ |
---|
| 1005 | if (pimg->label_len + len > pimg->buf_len) { |
---|
| 1006 | char *b = xosrealloc(pimg->label_buf, pimg->label_len + len); |
---|
[ad4eaf3f] | 1007 | if (!b) { |
---|
| 1008 | img_errno = IMG_OUTOFMEMORY; |
---|
| 1009 | return img_BAD; |
---|
| 1010 | } |
---|
| 1011 | pimg->label_buf = b; |
---|
[f710a3f] | 1012 | pimg->buf_len = pimg->label_len + len; |
---|
[ad4eaf3f] | 1013 | } |
---|
| 1014 | pimg->label = pimg->label_buf; |
---|
[f710a3f] | 1015 | pimg->label[pimg->label_len] = '.'; |
---|
| 1016 | memcpy(pimg->label + pimg->label_len + 1, q, len - 1); |
---|
[984f49e] | 1017 | pimg->pending = (line[0] == 'M' ? img_MOVE : img_LINE) + 4; |
---|
[ad4eaf3f] | 1018 | osfree(line); |
---|
| 1019 | pimg->flags = img_SFLAG_UNDERGROUND; /* default flags */ |
---|
| 1020 | return img_LABEL; |
---|
| 1021 | case 'X': case 'F': case 'S': |
---|
| 1022 | /* bounding boX (marks end of survey), Feature survey, or |
---|
| 1023 | * new Section - skip to next survey */ |
---|
| 1024 | do { |
---|
[984f49e] | 1025 | do { |
---|
[ad4eaf3f] | 1026 | osfree(line); |
---|
[984f49e] | 1027 | line = getline_alloc(pimg->fh); |
---|
| 1028 | if (!line) { |
---|
| 1029 | img_errno = IMG_OUTOFMEMORY; |
---|
| 1030 | return img_BAD; |
---|
| 1031 | } |
---|
| 1032 | if (line[0] == '\x1a') { |
---|
| 1033 | osfree(line); |
---|
| 1034 | return img_STOP; |
---|
| 1035 | } |
---|
| 1036 | if (feof(pimg->fh)) { |
---|
| 1037 | osfree(line); |
---|
| 1038 | img_errno = IMG_BADFORMAT; |
---|
| 1039 | return img_BAD; |
---|
| 1040 | } |
---|
| 1041 | } while (line[0] != 'N'); |
---|
| 1042 | |
---|
| 1043 | len = 1; |
---|
| 1044 | while (line[len] > 32) ++len; |
---|
| 1045 | } while (pimg->survey && (pimg->survey_len != len - 1 || |
---|
| 1046 | memcmp(line + 1, pimg->survey, pimg->survey_len) != 0)); |
---|
[f710a3f] | 1047 | |
---|
| 1048 | if (len > pimg->buf_len) { |
---|
| 1049 | char *b = xosrealloc(pimg->label_buf, len); |
---|
| 1050 | if (!b) { |
---|
| 1051 | img_errno = IMG_OUTOFMEMORY; |
---|
| 1052 | return img_BAD; |
---|
| 1053 | } |
---|
| 1054 | pimg->label_buf = b; |
---|
| 1055 | pimg->buf_len = len; |
---|
| 1056 | } |
---|
| 1057 | --len; |
---|
| 1058 | pimg->label_len = len; |
---|
| 1059 | pimg->label = pimg->label_buf; |
---|
| 1060 | memcpy(pimg->label, line + 1, len); |
---|
| 1061 | pimg->label[len] = '\0'; |
---|
| 1062 | |
---|
[ad4eaf3f] | 1063 | osfree(line); |
---|
| 1064 | break; |
---|
| 1065 | default: |
---|
| 1066 | osfree(line); |
---|
| 1067 | img_errno = IMG_BADFORMAT; |
---|
| 1068 | return img_BAD; |
---|
| 1069 | } |
---|
| 1070 | } |
---|
[a420b49] | 1071 | } |
---|
[d1b1380] | 1072 | } |
---|
| 1073 | |
---|
[ad9a5cd] | 1074 | static int |
---|
[d69255f] | 1075 | write_v3label(img *pimg, int opt, const char *s) |
---|
| 1076 | { |
---|
| 1077 | size_t len, n, dot; |
---|
| 1078 | |
---|
| 1079 | /* find length of common prefix */ |
---|
| 1080 | dot = 0; |
---|
[0ff23cb] | 1081 | for (len = 0; s[len] == pimg->label_buf[len] && s[len] != '\0'; len++) { |
---|
[d69255f] | 1082 | if (s[len] == '.') dot = len + 1; |
---|
| 1083 | } |
---|
| 1084 | |
---|
| 1085 | ASSERT(len <= pimg->label_len); |
---|
| 1086 | n = pimg->label_len - len; |
---|
| 1087 | if (len == 0) { |
---|
| 1088 | if (pimg->label_len) putc(0, pimg->fh); |
---|
| 1089 | } else if (n <= 16) { |
---|
| 1090 | if (n) putc(n + 15, pimg->fh); |
---|
| 1091 | } else if (dot == 0) { |
---|
| 1092 | if (pimg->label_len) putc(0, pimg->fh); |
---|
[99cf51a] | 1093 | len = 0; |
---|
[d69255f] | 1094 | } else { |
---|
[0ff23cb] | 1095 | const char *p = pimg->label_buf + dot; |
---|
[d69255f] | 1096 | n = 1; |
---|
| 1097 | for (len = pimg->label_len - dot - 17; len; len--) { |
---|
| 1098 | if (*p++ == '.') n++; |
---|
| 1099 | } |
---|
| 1100 | if (n <= 14) { |
---|
| 1101 | putc(n, pimg->fh); |
---|
| 1102 | len = dot; |
---|
| 1103 | } else { |
---|
| 1104 | if (pimg->label_len) putc(0, pimg->fh); |
---|
| 1105 | len = 0; |
---|
| 1106 | } |
---|
| 1107 | } |
---|
| 1108 | |
---|
| 1109 | n = strlen(s + len); |
---|
| 1110 | putc(opt, pimg->fh); |
---|
| 1111 | if (n < 0xfe) { |
---|
| 1112 | putc(n, pimg->fh); |
---|
| 1113 | } else if (n < 0xffff + 0xfe) { |
---|
| 1114 | putc(0xfe, pimg->fh); |
---|
| 1115 | put16(n - 0xfe, pimg->fh); |
---|
| 1116 | } else { |
---|
| 1117 | putc(0xff, pimg->fh); |
---|
| 1118 | put32(n, pimg->fh); |
---|
| 1119 | } |
---|
| 1120 | fwrite(s + len, n, 1, pimg->fh); |
---|
| 1121 | |
---|
| 1122 | n += len; |
---|
| 1123 | pimg->label_len = n; |
---|
| 1124 | if (n >= pimg->buf_len) { |
---|
[0ff23cb] | 1125 | char *p = xosrealloc(pimg->label_buf, n + 1); |
---|
[ad9a5cd] | 1126 | if (!p) return 0; /* FIXME: distinguish out of memory... */ |
---|
| 1127 | pimg->label_buf = p; |
---|
| 1128 | pimg->buf_len = n + 1; |
---|
[d69255f] | 1129 | } |
---|
[0ff23cb] | 1130 | memcpy(pimg->label_buf + len, s + len, n - len + 1); |
---|
[ad9a5cd] | 1131 | |
---|
| 1132 | return !ferror(pimg->fh); |
---|
[d69255f] | 1133 | } |
---|
| 1134 | |
---|
[a420b49] | 1135 | void |
---|
[95c3272] | 1136 | img_write_item(img *pimg, int code, int flags, const char *s, |
---|
[a9f5117] | 1137 | double x, double y, double z) |
---|
[a420b49] | 1138 | { |
---|
[647407d] | 1139 | if (!pimg) return; |
---|
[d69255f] | 1140 | if (pimg->version == 3) { |
---|
| 1141 | int opt = 0; |
---|
| 1142 | switch (code) { |
---|
| 1143 | case img_LABEL: |
---|
| 1144 | write_v3label(pimg, 0x40 | flags, s); |
---|
| 1145 | opt = 0; |
---|
| 1146 | break; |
---|
| 1147 | case img_MOVE: |
---|
| 1148 | opt = 15; |
---|
| 1149 | break; |
---|
| 1150 | case img_LINE: |
---|
| 1151 | write_v3label(pimg, 0x80 | flags, s ? s : ""); |
---|
| 1152 | opt = 0; |
---|
| 1153 | break; |
---|
| 1154 | default: /* ignore for now */ |
---|
| 1155 | return; |
---|
| 1156 | } |
---|
| 1157 | if (opt) putc(opt, pimg->fh); |
---|
| 1158 | /* Output in cm */ |
---|
[dd1d6369] | 1159 | put32((INT32_T)my_round(x * 100.0), pimg->fh); |
---|
| 1160 | put32((INT32_T)my_round(y * 100.0), pimg->fh); |
---|
| 1161 | put32((INT32_T)my_round(z * 100.0), pimg->fh); |
---|
[d69255f] | 1162 | } else { |
---|
[23f7ea7] | 1163 | size_t len; |
---|
[badeec8] | 1164 | INT32_T opt = 0; |
---|
[d69255f] | 1165 | ASSERT(pimg->version > 0); |
---|
[a420b49] | 1166 | switch (code) { |
---|
[437caf3] | 1167 | case img_LABEL: |
---|
| 1168 | if (pimg->version == 1) { |
---|
| 1169 | /* put a move before each label */ |
---|
[95c3272] | 1170 | img_write_item(pimg, img_MOVE, 0, NULL, x, y, z); |
---|
[437caf3] | 1171 | put32(2, pimg->fh); |
---|
[0ed0e16] | 1172 | fputsnl(s, pimg->fh); |
---|
[437caf3] | 1173 | return; |
---|
| 1174 | } |
---|
[23f7ea7] | 1175 | len = strlen(s); |
---|
[af56069] | 1176 | if (len > 255 || strchr(s, '\n')) { |
---|
[23f7ea7] | 1177 | /* long label - not in early incarnations of v2 format, but few |
---|
| 1178 | * 3d files will need these, so better not to force incompatibility |
---|
| 1179 | * with a new version I think... */ |
---|
[95c3272] | 1180 | putc(7, pimg->fh); |
---|
| 1181 | putc(flags, pimg->fh); |
---|
[23f7ea7] | 1182 | put32(len, pimg->fh); |
---|
| 1183 | fputs(s, pimg->fh); |
---|
| 1184 | } else { |
---|
[95c3272] | 1185 | putc(0x40 | (flags & 0x3f), pimg->fh); |
---|
[23f7ea7] | 1186 | fputsnl(s, pimg->fh); |
---|
| 1187 | } |
---|
[437caf3] | 1188 | opt = 0; |
---|
[23f7ea7] | 1189 | break; |
---|
[a420b49] | 1190 | case img_MOVE: |
---|
| 1191 | opt = 4; |
---|
| 1192 | break; |
---|
| 1193 | case img_LINE: |
---|
[421b7d2] | 1194 | if (pimg->version > 1) { |
---|
[d69255f] | 1195 | opt = 0x80 | (flags & 0x3f); |
---|
[437caf3] | 1196 | break; |
---|
[421b7d2] | 1197 | } |
---|
[437caf3] | 1198 | opt = 5; |
---|
[a420b49] | 1199 | break; |
---|
[437caf3] | 1200 | default: /* ignore for now */ |
---|
| 1201 | return; |
---|
[a420b49] | 1202 | } |
---|
[437caf3] | 1203 | if (pimg->version == 1) { |
---|
| 1204 | put32(opt, pimg->fh); |
---|
| 1205 | } else { |
---|
| 1206 | if (opt) putc(opt, pimg->fh); |
---|
[a420b49] | 1207 | } |
---|
[d69255f] | 1208 | /* Output in cm */ |
---|
[dd1d6369] | 1209 | put32((INT32_T)my_round(x * 100.0), pimg->fh); |
---|
| 1210 | put32((INT32_T)my_round(y * 100.0), pimg->fh); |
---|
| 1211 | put32((INT32_T)my_round(z * 100.0), pimg->fh); |
---|
[a420b49] | 1212 | } |
---|
[d1b1380] | 1213 | } |
---|
| 1214 | |
---|
[ad9a5cd] | 1215 | int |
---|
[a420b49] | 1216 | img_close(img *pimg) |
---|
| 1217 | { |
---|
[ad9a5cd] | 1218 | int result = 1; |
---|
[dbb4e19] | 1219 | if (pimg) { |
---|
| 1220 | if (pimg->fh) { |
---|
[76bbb7c9] | 1221 | if (pimg->fRead) { |
---|
| 1222 | osfree(pimg->survey); |
---|
[a2ad284] | 1223 | osfree(pimg->title); |
---|
| 1224 | osfree(pimg->datestamp); |
---|
[76bbb7c9] | 1225 | } else { |
---|
| 1226 | /* write end of data marker */ |
---|
[d69255f] | 1227 | switch (pimg->version) { |
---|
| 1228 | case 1: |
---|
[5c3c61a] | 1229 | put32((INT32_T)-1, pimg->fh); |
---|
[d69255f] | 1230 | break; |
---|
| 1231 | case 2: |
---|
| 1232 | putc(0, pimg->fh); |
---|
| 1233 | break; |
---|
| 1234 | case 3: |
---|
| 1235 | if (pimg->label_len) putc(0, pimg->fh); |
---|
[437caf3] | 1236 | putc(0, pimg->fh); |
---|
[d69255f] | 1237 | break; |
---|
[5c3c61a] | 1238 | } |
---|
| 1239 | } |
---|
[ad9a5cd] | 1240 | if (ferror(pimg->fh)) result = 0; |
---|
| 1241 | if (fclose(pimg->fh)) result = 0; |
---|
| 1242 | img_errno = pimg->fRead ? IMG_READERROR : IMG_WRITEERROR; |
---|
[dbb4e19] | 1243 | } |
---|
[0ff23cb] | 1244 | osfree(pimg->label_buf); |
---|
[dbb4e19] | 1245 | osfree(pimg); |
---|
[a420b49] | 1246 | } |
---|
[ad9a5cd] | 1247 | return result; |
---|
[d1b1380] | 1248 | } |
---|