| 1 | greg | 1.1 | #ifndef lint | 
| 2 | greg | 2.23 | static const char       RCSid[] = "$Id: readoct.c,v 2.22 2003/08/29 16:46:51 greg Exp $"; | 
| 3 | greg | 1.1 | #endif | 
| 4 |  |  | /* | 
| 5 |  |  | *  readoct.c - routines to read octree information. | 
| 6 | greg | 2.13 | */ | 
| 7 |  |  |  | 
| 8 | greg | 2.14 | #include "copyright.h" | 
| 9 | greg | 1.1 |  | 
| 10 | schorsch | 2.17 | #include  <stdio.h> | 
| 11 | greg | 2.19 | #include  <time.h> | 
| 12 | schorsch | 2.17 |  | 
| 13 | greg | 2.23 | #include  "platform.h" | 
| 14 | greg | 1.1 | #include  "standard.h" | 
| 15 |  |  | #include  "octree.h" | 
| 16 |  |  | #include  "object.h" | 
| 17 |  |  | #include  "otypes.h" | 
| 18 | schorsch | 2.17 | #include  "resolu.h" | 
| 19 | greg | 1.1 |  | 
| 20 | schorsch | 2.20 | static double  ogetflt(void); | 
| 21 |  |  | static long  ogetint(int); | 
| 22 |  |  | static char  *ogetstr(char *); | 
| 23 |  |  | static int  nonsurfinset(OBJECT *); | 
| 24 | schorsch | 2.17 | static void  octerror(int  etyp, char  *msg); | 
| 25 |  |  | static void  skiptree(void); | 
| 26 | schorsch | 2.20 | static OCTREE  getfullnode(void), gettree(void); | 
| 27 | greg | 1.1 |  | 
| 28 | greg | 2.13 | static char  *infn;                     /* input file specification */ | 
| 29 | greg | 1.1 | static FILE  *infp;                     /* input file stream */ | 
| 30 | greg | 1.14 | static int  objsize;                    /* size of stored OBJECT's */ | 
| 31 | greg | 1.1 | static OBJECT  objorig;                 /* zeroeth object */ | 
| 32 | greg | 2.12 | static OBJECT  fnobjects;               /* number of objects in this file */ | 
| 33 | greg | 1.1 |  | 
| 34 |  |  |  | 
| 35 |  |  | int | 
| 36 | greg | 2.13 | readoct(inpspec, load, scene, ofn)      /* read in octree file or stream */ | 
| 37 |  |  | char  *inpspec; | 
| 38 | greg | 1.1 | int  load; | 
| 39 |  |  | CUBE  *scene; | 
| 40 |  |  | char  *ofn[]; | 
| 41 |  |  | { | 
| 42 | greg | 1.11 | char  sbuf[512]; | 
| 43 | greg | 1.1 | int  nf; | 
| 44 | greg | 2.15 | int  i; | 
| 45 | greg | 1.15 | long  m; | 
| 46 | greg | 1.1 |  | 
| 47 | greg | 2.13 | if (inpspec == NULL) { | 
| 48 | greg | 1.1 | infn = "standard input"; | 
| 49 |  |  | infp = stdin; | 
| 50 | greg | 2.13 | } else if (inpspec[0] == '!') { | 
| 51 |  |  | infn = inpspec; | 
| 52 |  |  | if ((infp = popen(inpspec+1, "r")) == NULL) { | 
| 53 |  |  | sprintf(errmsg, "cannot execute \"%s\"", inpspec); | 
| 54 |  |  | error(SYSTEM, errmsg); | 
| 55 |  |  | } | 
| 56 | greg | 1.1 | } else { | 
| 57 | greg | 2.13 | infn = inpspec; | 
| 58 |  |  | if ((infp = fopen(inpspec, "r")) == NULL) { | 
| 59 | greg | 1.1 | sprintf(errmsg, "cannot open octree file \"%s\"", | 
| 60 | greg | 2.13 | inpspec); | 
| 61 | greg | 1.1 | error(SYSTEM, errmsg); | 
| 62 |  |  | } | 
| 63 |  |  | } | 
| 64 | schorsch | 2.16 | SET_FILE_BINARY(infp); | 
| 65 | greg | 1.1 | /* get header */ | 
| 66 | greg | 2.11 | if (checkheader(infp, OCTFMT, load&IO_INFO ? stdout : (FILE *)NULL) < 0) | 
| 67 | greg | 1.12 | octerror(USER, "not an octree"); | 
| 68 | greg | 1.1 | /* check format */ | 
| 69 | greg | 2.4 | if ((objsize = ogetint(2)-OCTMAGIC) <= 0 || | 
| 70 | greg | 1.14 | objsize > MAXOBJSIZ || objsize > sizeof(long)) | 
| 71 | greg | 1.12 | octerror(USER, "incompatible octree format"); | 
| 72 | greg | 1.1 | /* get boundaries */ | 
| 73 |  |  | if (load & IO_BOUNDS) { | 
| 74 |  |  | for (i = 0; i < 3; i++) | 
| 75 | greg | 2.4 | scene->cuorg[i] = atof(ogetstr(sbuf)); | 
| 76 |  |  | scene->cusize = atof(ogetstr(sbuf)); | 
| 77 | greg | 1.1 | } else { | 
| 78 |  |  | for (i = 0; i < 4; i++) | 
| 79 | greg | 2.4 | ogetstr(sbuf); | 
| 80 | greg | 1.1 | } | 
| 81 |  |  | objorig = nobjects;             /* set object offset */ | 
| 82 |  |  | nf = 0;                         /* get object files */ | 
| 83 | greg | 2.4 | while (*ogetstr(sbuf)) { | 
| 84 | greg | 1.1 | if (load & IO_SCENE) | 
| 85 |  |  | readobj(sbuf); | 
| 86 |  |  | if (load & IO_FILES) | 
| 87 |  |  | ofn[nf] = savqstr(sbuf); | 
| 88 |  |  | nf++; | 
| 89 |  |  | } | 
| 90 |  |  | if (load & IO_FILES) | 
| 91 |  |  | ofn[nf] = NULL; | 
| 92 | greg | 1.8 | /* get number of objects */ | 
| 93 | greg | 2.4 | fnobjects = m = ogetint(objsize); | 
| 94 | greg | 1.15 | if (fnobjects != m) | 
| 95 |  |  | octerror(USER, "too many objects"); | 
| 96 | greg | 1.1 |  | 
| 97 | greg | 2.13 | if (load & IO_TREE)             /* get the octree */ | 
| 98 | greg | 1.1 | scene->cutree = gettree(); | 
| 99 | greg | 2.5 | else if (load & IO_SCENE && nf == 0) | 
| 100 |  |  | skiptree(); | 
| 101 |  |  |  | 
| 102 | schorsch | 2.21 | if (load & IO_SCENE) {          /* get the scene */ | 
| 103 | greg | 2.5 | if (nf == 0) { | 
| 104 | greg | 2.15 | /* load binary scene data */ | 
| 105 |  |  | readscene(infp, objsize); | 
| 106 |  |  |  | 
| 107 | greg | 2.5 | } else {                    /* consistency checks */ | 
| 108 |  |  | /* check object count */ | 
| 109 |  |  | if (nobjects != objorig+fnobjects) | 
| 110 |  |  | octerror(USER, "bad object count; octree stale?"); | 
| 111 |  |  | /* check for non-surfaces */ | 
| 112 | greg | 2.12 | if (dosets(nonsurfinset)) | 
| 113 | greg | 2.5 | octerror(USER, "modifier in tree; octree stale?"); | 
| 114 |  |  | } | 
| 115 | schorsch | 2.21 | } | 
| 116 | greg | 2.13 | /* close the input */ | 
| 117 |  |  | if (infn[0] == '!') | 
| 118 |  |  | pclose(infp); | 
| 119 |  |  | else | 
| 120 |  |  | fclose(infp); | 
| 121 | greg | 1.1 | return(nf); | 
| 122 |  |  | } | 
| 123 |  |  |  | 
| 124 |  |  |  | 
| 125 |  |  | static char * | 
| 126 | greg | 2.4 | ogetstr(s)                      /* get null-terminated string */ | 
| 127 | greg | 1.1 | char  *s; | 
| 128 |  |  | { | 
| 129 | greg | 2.4 | extern char  *getstr(); | 
| 130 | greg | 1.1 |  | 
| 131 | greg | 2.4 | if (getstr(s, infp) == NULL) | 
| 132 |  |  | octerror(USER, "truncated octree"); | 
| 133 |  |  | return(s); | 
| 134 | greg | 1.1 | } | 
| 135 |  |  |  | 
| 136 |  |  |  | 
| 137 |  |  | static OCTREE | 
| 138 |  |  | getfullnode()                   /* get a set, return fullnode */ | 
| 139 |  |  | { | 
| 140 | greg | 2.7 | OBJECT  set[MAXSET+1]; | 
| 141 | greg | 1.1 | register int  i; | 
| 142 | greg | 1.14 | register long  m; | 
| 143 | greg | 1.1 |  | 
| 144 | greg | 2.4 | if ((set[0] = ogetint(objsize)) > MAXSET) | 
| 145 | greg | 1.1 | octerror(USER, "bad set in getfullnode"); | 
| 146 | greg | 1.14 | for (i = 1; i <= set[0]; i++) { | 
| 147 | greg | 2.4 | m = ogetint(objsize) + objorig; | 
| 148 | greg | 1.15 | if ((set[i] = m) != m) | 
| 149 | greg | 1.14 | octerror(USER, "too many objects"); | 
| 150 |  |  | } | 
| 151 | greg | 1.1 | return(fullnode(set)); | 
| 152 |  |  | } | 
| 153 |  |  |  | 
| 154 |  |  |  | 
| 155 |  |  | static long | 
| 156 | greg | 2.4 | ogetint(siz)                    /* get a siz-byte integer */ | 
| 157 |  |  | int  siz; | 
| 158 | greg | 1.1 | { | 
| 159 | greg | 2.4 | extern long  getint(); | 
| 160 | greg | 1.3 | register long  r; | 
| 161 | greg | 1.1 |  | 
| 162 | greg | 2.4 | r = getint(siz, infp); | 
| 163 |  |  | if (feof(infp)) | 
| 164 |  |  | octerror(USER, "truncated octree"); | 
| 165 | greg | 1.1 | return(r); | 
| 166 |  |  | } | 
| 167 |  |  |  | 
| 168 |  |  |  | 
| 169 |  |  | static double | 
| 170 | greg | 2.4 | ogetflt()                       /* get a floating point number */ | 
| 171 | greg | 1.1 | { | 
| 172 | greg | 2.4 | extern double  getflt(); | 
| 173 | greg | 2.7 | double  r; | 
| 174 | greg | 1.1 |  | 
| 175 | greg | 2.4 | r = getflt(infp); | 
| 176 |  |  | if (feof(infp)) | 
| 177 |  |  | octerror(USER, "truncated octree"); | 
| 178 |  |  | return(r); | 
| 179 | greg | 1.1 | } | 
| 180 |  |  |  | 
| 181 |  |  |  | 
| 182 |  |  | static OCTREE | 
| 183 |  |  | gettree()                       /* get a pre-ordered octree */ | 
| 184 |  |  | { | 
| 185 | greg | 2.7 | register OCTREE  ot; | 
| 186 | greg | 1.1 | register int  i; | 
| 187 |  |  |  | 
| 188 |  |  | switch (getc(infp)) { | 
| 189 |  |  | case OT_EMPTY: | 
| 190 |  |  | return(EMPTY); | 
| 191 |  |  | case OT_FULL: | 
| 192 |  |  | return(getfullnode()); | 
| 193 |  |  | case OT_TREE: | 
| 194 |  |  | if ((ot = octalloc()) == EMPTY) | 
| 195 |  |  | octerror(SYSTEM, "out of tree space in gettree"); | 
| 196 |  |  | for (i = 0; i < 8; i++) | 
| 197 |  |  | octkid(ot, i) = gettree(); | 
| 198 |  |  | return(ot); | 
| 199 | greg | 2.5 | case EOF: | 
| 200 |  |  | octerror(USER, "truncated octree"); | 
| 201 |  |  | default: | 
| 202 |  |  | octerror(USER, "damaged octree"); | 
| 203 |  |  | } | 
| 204 | greg | 2.22 | return EMPTY; /* pro forma return */ | 
| 205 | greg | 2.12 | } | 
| 206 |  |  |  | 
| 207 |  |  |  | 
| 208 |  |  | static int | 
| 209 |  |  | nonsurfinset(os)                        /* check set for modifier */ | 
| 210 |  |  | register OBJECT  *os; | 
| 211 |  |  | { | 
| 212 |  |  | register OBJECT  s; | 
| 213 |  |  | register int  i; | 
| 214 |  |  |  | 
| 215 |  |  | for (i = *os; i-- > 0; ) | 
| 216 |  |  | if ((s = *++os) >= objorig && s < objorig+fnobjects && | 
| 217 |  |  | ismodifier(objptr(s)->otype)) | 
| 218 |  |  | return(1); | 
| 219 |  |  | return(0); | 
| 220 | greg | 2.5 | } | 
| 221 |  |  |  | 
| 222 |  |  |  | 
| 223 | schorsch | 2.17 | static void | 
| 224 |  |  | skiptree(void)                          /* skip octree on input */ | 
| 225 | greg | 2.5 | { | 
| 226 |  |  | register int  i; | 
| 227 |  |  |  | 
| 228 |  |  | switch (getc(infp)) { | 
| 229 |  |  | case OT_EMPTY: | 
| 230 |  |  | return; | 
| 231 |  |  | case OT_FULL: | 
| 232 | greg | 2.6 | for (i = ogetint(objsize)*objsize; i-- > 0; ) | 
| 233 |  |  | if (getc(infp) == EOF) | 
| 234 |  |  | octerror(USER, "truncated octree"); | 
| 235 | greg | 2.5 | return; | 
| 236 |  |  | case OT_TREE: | 
| 237 |  |  | for (i = 0; i < 8; i++) | 
| 238 |  |  | skiptree(); | 
| 239 |  |  | return; | 
| 240 | greg | 1.1 | case EOF: | 
| 241 |  |  | octerror(USER, "truncated octree"); | 
| 242 |  |  | default: | 
| 243 |  |  | octerror(USER, "damaged octree"); | 
| 244 |  |  | } | 
| 245 |  |  | } | 
| 246 |  |  |  | 
| 247 |  |  |  | 
| 248 | schorsch | 2.17 | static void | 
| 249 | greg | 1.1 | octerror(etyp, msg)                     /* octree error */ | 
| 250 |  |  | int  etyp; | 
| 251 |  |  | char  *msg; | 
| 252 |  |  | { | 
| 253 |  |  | char  msgbuf[128]; | 
| 254 |  |  |  | 
| 255 |  |  | sprintf(msgbuf, "(%s): %s", infn, msg); | 
| 256 |  |  | error(etyp, msgbuf); | 
| 257 |  |  | } |