source: git/src/img.h @ 722886f

RELEASE/1.0
Last change on this file since 722886f was 168df28, checked in by Olly Betts <olly@…>, 19 years ago

Backport a whole pile of fixes and minor tweaks from 1.1.7.

git-svn-id: file:///home/survex-svn/survex/trunk@3114 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100644
File size: 5.5 KB
RevLine 
[421b7d2]1/* img.h
[d1b1380]2 * Header file for routines to read and write Survex ".3d" image files
[76d0b1e]3 * Copyright (C) Olly Betts 1993,1994,1997,2001,2002,2003,2004,2005
[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
20#ifndef IMG_H
21# define IMG_H
22
[8df22e9]23#ifdef __cplusplus
[f2daf3b]24extern "C" {
25#endif
26
[0d2b588]27#include <stdio.h>
[76d0b1e]28#include <time.h> /* for time_t */
[0d2b588]29
[72af530]30# ifdef IMG_HOSTED
[d1b1380]31#  include "useful.h"
32# endif
33
34# define img_BAD   -2
35# define img_STOP  -1
36# define img_MOVE   0
37# define img_LINE   1
[437caf3]38/* NB: img_CROSS is never output and ignored on input.
[0ff23cb]39 * Put crosses where labels are. */
40/* # define img_CROSS  2 */
[d1b1380]41# define img_LABEL  3
[76d0b1e]42# define img_XSECT  4
[5c3c61a]43
44# define img_FLAG_SURFACE   0x01
45# define img_FLAG_DUPLICATE 0x02
[95c3272]46# define img_FLAG_SPLAY     0x04
[d1b1380]47
[5cb0e72]48# define img_SFLAG_SURFACE     0x01
49# define img_SFLAG_UNDERGROUND 0x02
[dfb4240]50# define img_SFLAG_ENTRANCE    0x04
51# define img_SFLAG_EXPORTED    0x08
52# define img_SFLAG_FIXED       0x10
[5cb0e72]53
[76d0b1e]54# define img_XFLAG_END      0x01
55
[0874569e]56/* 3D coordinates (in metres) */
[0ed0e16]57typedef struct {
[a9f5117]58   double x, y, z;
[0ed0e16]59} img_point;
[421b7d2]60
[d1b1380]61typedef struct {
[6f6356c4]62   /* members you can access when reading (don't touch when writing) */
[23f7ea7]63   char *label;
[5c3c61a]64   int flags;
[a2ad284]65   char *title;
66   char *datestamp;
[168df28]67   char separator; /* character used to separate survey levels ('.' usually) */
[76d0b1e]68   time_t date1, date2;
69   double l, r, u, d;
70   char * filename_opened; /* The filename actually opened (e.g. may have ".3d" added). */
[5c3c61a]71   /* all other members are for internal use only */
[a420b49]72   FILE *fh;          /* file handle of image file */
[0ff23cb]73   char *label_buf;
[23f7ea7]74   size_t buf_len;
[d69255f]75   size_t label_len;
[72af530]76# ifdef IMG_HOSTED
[a420b49]77   bool fRead;        /* fTrue for reading, fFalse for writing */
[d1b1380]78# else
[a420b49]79   int fRead;        /* fTrue for reading, fFalse for writing */
[d1b1380]80# endif
[f2588ca]81   long start;
[0da6e60]82   /* version of file format:
[f1c7c9c7]83    *  -4 => CMAP .xyz file, shot format
84    *  -3 => CMAP .xyz file, station format
[ad4eaf3f]85    *  -2 => Compass .plt file
[0da6e60]86    *  -1 => .pos file
87    *   0 => 0.01 ascii
88    *   1 => 0.01 binary,
89    *   2 => byte actions and flags
[ad4eaf3f]90    *   3 => prefixes for legs; compressed prefixes
[76d0b1e]91    *   4 => survey date
92    *   5 => LRUD info
[0da6e60]93    */
[5c3c61a]94   int version;
[76bbb7c9]95   char *survey;
96   size_t survey_len;
97   int pending; /* for old style text format files and survey filtering */
98   img_point mv;
[76d0b1e]99   time_t olddate1, olddate2;
[d1b1380]100} img;
101
[5c3c61a]102/* Which version of the file format to output (defaults to newest) */
103extern unsigned int img_output_version;
104
[0ed0e16]105/* Open a .3d file for reading
[d1b1380]106 * fnm is the filename
107 * Returns pointer to an img struct or NULL
108 */
[a2ad284]109#define img_open(F) img_open_survey((F), NULL)
[76bbb7c9]110
111/* Open a .3d file for reading
112 * fnm is the filename
113 * Returns pointer to an img struct or NULL
114 * survey points to a survey name to restrict reading to (or NULL for all
115 * survey data in the file)
116 */
[a2ad284]117img *img_open_survey(const char *fnm, const char *survey);
[d1b1380]118
119/* Open a .3d file for output
120 * fnm is the filename
[95c3272]121 * title_buf is the title
[bde0a4c]122 * fBinary is ignored (it used to select an ASCII variant of the earliest
123 * version of the 3d file format)
[ad9a5cd]124 * Returns pointer to an img struct or NULL for error (check img_error()
125 * for details)
[d1b1380]126 */
[72af530]127# ifdef IMG_HOSTED
[95c3272]128img *img_open_write(const char *fnm, char *title_buf, bool fBinary);
[d1b1380]129# else
[95c3272]130img *img_open_write(const char *fnm, char *title_buf, int fBinary);
[d1b1380]131# endif
132
[0ed0e16]133/* Read an item from a .3d file
[d1b1380]134 * pimg is a pointer to an img struct returned by img_open()
[0ed0e16]135 * coordinates are returned in p
[23f7ea7]136 * flags and label name are returned in fields in pimg
[d1b1380]137 * Returns img_XXXX as #define-d above
138 */
[23f7ea7]139int img_read_item(img *pimg, img_point *p);
[d1b1380]140
[0ed0e16]141/* Write a item to a .3d file
[d1b1380]142 * pimg is a pointer to an img struct returned by img_open_write()
143 * code is one of the img_XXXX #define-d above
[76d0b1e]144 * flags is the leg, station, or xsect flags
145 * (meaningful for img_LINE, img_LABEL, and img_XSECT respectively)
[95c3272]146 * s is the label (only meaningful for img_LABEL)
[0ed0e16]147 * x, y, z are the coordinates
[d1b1380]148 */
[95c3272]149void img_write_item(img *pimg, int code, int flags, const char *s,
[a9f5117]150                    double x, double y, double z);
[f2588ca]151
152/* rewind a .3d file opened for reading so the data can be read in
153 * several passes
154 * pimg is a pointer to an img struct returned by img_open()
[9f3e5df]155 * Returns: non-zero for success, zero for error (check img_error() for
156 *   details)
[f2588ca]157 */
[9f3e5df]158int img_rewind(img *pimg);
[f2588ca]159
[d1b1380]160/* Close a .3d file
161 * pimg is a pointer to an img struct returned by img_open() or
162 *   img_open_write()
[ad9a5cd]163 * Returns: non-zero for success, zero for error (check img_error() for
164 *   details)
[d1b1380]165 */
[ad9a5cd]166int img_close(img *pimg);
[d1b1380]167
168/* Codes returned by img_error */
[72af530]169# ifndef IMG_HOSTED
[a420b49]170typedef enum {
171   IMG_NONE = 0, IMG_FILENOTFOUND, IMG_OUTOFMEMORY,
[ad9a5cd]172   IMG_CANTOPENOUT, IMG_BADFORMAT, IMG_DIRECTORY,
[6c1c4f3]173   IMG_READERROR, IMG_WRITEERROR, IMG_TOONEW
[a420b49]174} img_errcode;
[d1b1380]175
176/* Read the error code
177 * if img_open() or img_open_write() returns NULL, you can call this
[a420b49]178 * to discover why */
179img_errcode img_error(void);
[d1b1380]180# else
[a420b49]181int img_error(void);
[d1b1380]182# endif
183
[8df22e9]184#ifdef __cplusplus
[f2daf3b]185}
186#endif
187
[d1b1380]188#endif
Note: See TracBrowser for help on using the repository browser.