source: git/src/img.h @ 17b47b7

RELEASE/1.0RELEASE/1.1RELEASE/1.2debug-cidebug-ci-sanitisersfaster-cavernloglog-selectstereostereo-2025walls-datawalls-data-hanging-as-warningwarn-only-for-hanging-survey
Last change on this file since 17b47b7 was 76bbb7c9, checked in by Olly Betts <olly@…>, 24 years ago

Pushed code to filter lines/points from a sub-survey down into img.c.

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

  • Property mode set to 100644
File size: 4.9 KB
RevLine 
[d1b1380]1/* > img.h
2 * Header file for routines to read and write Survex ".3d" image files
[5c3c61a]3 * Copyright (C) Olly Betts 1993,1994,1997,2001
[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>
28
[72af530]29# ifdef IMG_HOSTED
[d1b1380]30#  include "useful.h"
31# endif
32
33# define img_BAD   -2
34# define img_STOP  -1
35# define img_MOVE   0
36# define img_LINE   1
[437caf3]37/* NB: img_CROSS is never output and ignored on input.
38 * Crosses are put where labels are. */
[d1b1380]39# define img_CROSS  2
40# define img_LABEL  3
[5c3c61a]41
42# define img_FLAG_SURFACE   0x01
43# define img_FLAG_DUPLICATE 0x02
[95c3272]44# define img_FLAG_SPLAY     0x04
[d1b1380]45
[5cb0e72]46# define img_SFLAG_SURFACE     0x01
47# define img_SFLAG_UNDERGROUND 0x02
[dfb4240]48# define img_SFLAG_ENTRANCE    0x04
49# define img_SFLAG_EXPORTED    0x08
50# define img_SFLAG_FIXED       0x10
[5cb0e72]51
[0ed0e16]52typedef struct {
[a9f5117]53   double x, y, z;
[0ed0e16]54} img_point;
55   
[d1b1380]56typedef struct {
[6f6356c4]57   /* members you can access when reading (don't touch when writing) */
[23f7ea7]58   char *label;
[5c3c61a]59   int flags;
60   /* all other members are for internal use only */
[a420b49]61   FILE *fh;          /* file handle of image file */
[23f7ea7]62   size_t buf_len;
[d69255f]63   size_t label_len;
[72af530]64# ifdef IMG_HOSTED
[a420b49]65   bool fRead;        /* fTrue for reading, fFalse for writing */
[d1b1380]66# else
[a420b49]67   int fRead;        /* fTrue for reading, fFalse for writing */
[d1b1380]68# endif
[f2588ca]69   long start;
[5c3c61a]70   /* version of file format (0 => 0.01 ascii, 1 => 0.01 binary,
[1af7b77]71    * 2 => byte actions and flags, 3 => prefixes for legs; compressed
72    * prefixes) */
[5c3c61a]73   int version;
[76bbb7c9]74   char *survey;
75   size_t survey_len;
76   int pending; /* for old style text format files and survey filtering */
77   img_point mv;
[d1b1380]78} img;
79
[5c3c61a]80/* Which version of the file format to output (defaults to newest) */
81extern unsigned int img_output_version;
82
[0ed0e16]83/* Open a .3d file for reading
[d1b1380]84 * fnm is the filename
[95c3272]85 * title_buf and date_buf should be buffers to put the title and datestamp in
[4ee5fbf]86 * (each of size 256 chars) or NULL if you don't want the information
[d1b1380]87 * Returns pointer to an img struct or NULL
88 */
[76bbb7c9]89#define img_open(F, T, D) img_open_survey((F), (T), (D), NULL)
90
91/* Open a .3d file for reading
92 * fnm is the filename
93 * title_buf and date_buf should be buffers to put the title and datestamp in
94 * (each of size 256 chars) or NULL if you don't want the information
95 * Returns pointer to an img struct or NULL
96 * survey points to a survey name to restrict reading to (or NULL for all
97 * survey data in the file)
98 */
99img *img_open_survey(const char *fnm, char *title_buf, char *date_buf,
100                     const char *survey);
[d1b1380]101
102/* Open a .3d file for output
103 * fnm is the filename
[95c3272]104 * title_buf is the title
[d1b1380]105 * fBinary == 0 for ASCII .3d file
106 *         != 0 for binary .3d file
[5c3c61a]107 * NB only the original .3d file format has an ASCII variant
[d1b1380]108 * Returns pointer to an img struct or NULL
109 */
[72af530]110# ifdef IMG_HOSTED
[95c3272]111img *img_open_write(const char *fnm, char *title_buf, bool fBinary);
[d1b1380]112# else
[95c3272]113img *img_open_write(const char *fnm, char *title_buf, int fBinary);
[d1b1380]114# endif
115
[0ed0e16]116/* Read an item from a .3d file
[d1b1380]117 * pimg is a pointer to an img struct returned by img_open()
[0ed0e16]118 * coordinates are returned in p
[23f7ea7]119 * flags and label name are returned in fields in pimg
[d1b1380]120 * Returns img_XXXX as #define-d above
121 */
[23f7ea7]122int img_read_item(img *pimg, img_point *p);
[d1b1380]123
[0ed0e16]124/* Write a item to a .3d file
[d1b1380]125 * pimg is a pointer to an img struct returned by img_open_write()
126 * code is one of the img_XXXX #define-d above
[95c3272]127 * flags is the leg or station flags (meaningful for img_LINE and img_LABEL
128 * s is the label (only meaningful for img_LABEL)
[0ed0e16]129 * x, y, z are the coordinates
[d1b1380]130 */
[95c3272]131void img_write_item(img *pimg, int code, int flags, const char *s,
[a9f5117]132                    double x, double y, double z);
[f2588ca]133
134/* rewind a .3d file opened for reading so the data can be read in
135 * several passes
136 * pimg is a pointer to an img struct returned by img_open()
137 */
138void img_rewind(img *pimg);
139
[d1b1380]140/* Close a .3d file
141 * pimg is a pointer to an img struct returned by img_open() or
142 *   img_open_write()
143 */
[a420b49]144void img_close(img *pimg);
[d1b1380]145
146/* Codes returned by img_error */
[72af530]147# ifndef IMG_HOSTED
[a420b49]148typedef enum {
149   IMG_NONE = 0, IMG_FILENOTFOUND, IMG_OUTOFMEMORY,
150   IMG_CANTOPENOUT, IMG_BADFORMAT, IMG_DIRECTORY
151} img_errcode;
[d1b1380]152
153/* Read the error code
154 * if img_open() or img_open_write() returns NULL, you can call this
[a420b49]155 * to discover why */
156img_errcode img_error(void);
[d1b1380]157# else
[a420b49]158int img_error(void);
[d1b1380]159# endif
160
[8df22e9]161#ifdef __cplusplus
[f2daf3b]162}
163#endif
164
[d1b1380]165#endif
Note: See TracBrowser for help on using the repository browser.