| 7 |
|
|
| 8 |
|
#include "copyright.h" |
| 9 |
|
|
| 10 |
< |
#include "standard.h" |
| 10 |
> |
#include <stdio.h> |
| 11 |
> |
#include <time.h> |
| 12 |
|
|
| 13 |
+ |
#include "platform.h" |
| 14 |
+ |
#include "standard.h" |
| 15 |
|
#include "octree.h" |
| 13 |
– |
|
| 16 |
|
#include "object.h" |
| 15 |
– |
|
| 17 |
|
#include "otypes.h" |
| 18 |
+ |
#include "resolu.h" |
| 19 |
|
|
| 20 |
< |
static double ogetflt(); |
| 21 |
< |
static long ogetint(); |
| 22 |
< |
static char *ogetstr(); |
| 23 |
< |
static int nonsurfinset(); |
| 24 |
< |
static int octerror(), skiptree(); |
| 25 |
< |
static OCTREE getfullnode(), gettree(); |
| 20 |
> |
static double ogetflt(void); |
| 21 |
> |
static long ogetint(int); |
| 22 |
> |
static char *ogetstr(char *); |
| 23 |
> |
static int nonsurfinset(OBJECT *); |
| 24 |
> |
static void octerror(int etyp, char *msg); |
| 25 |
> |
static void skiptree(void); |
| 26 |
> |
static OCTREE getfullnode(void), gettree(void); |
| 27 |
|
|
| 28 |
|
static char *infn; /* input file specification */ |
| 29 |
|
static FILE *infp; /* input file stream */ |
| 61 |
|
error(SYSTEM, errmsg); |
| 62 |
|
} |
| 63 |
|
} |
| 64 |
< |
#ifdef MSDOS |
| 62 |
< |
setmode(fileno(infp), O_BINARY); |
| 63 |
< |
#endif |
| 64 |
> |
SET_FILE_BINARY(infp); |
| 65 |
|
/* get header */ |
| 66 |
|
if (checkheader(infp, OCTFMT, load&IO_INFO ? stdout : (FILE *)NULL) < 0) |
| 67 |
|
octerror(USER, "not an octree"); |
| 99 |
|
else if (load & IO_SCENE && nf == 0) |
| 100 |
|
skiptree(); |
| 101 |
|
|
| 102 |
< |
if (load & IO_SCENE) /* get the scene */ |
| 102 |
> |
if (load & IO_SCENE) { /* get the scene */ |
| 103 |
|
if (nf == 0) { |
| 104 |
|
/* load binary scene data */ |
| 105 |
|
readscene(infp, objsize); |
| 112 |
|
if (dosets(nonsurfinset)) |
| 113 |
|
octerror(USER, "modifier in tree; octree stale?"); |
| 114 |
|
} |
| 115 |
+ |
} |
| 116 |
|
/* close the input */ |
| 117 |
|
if (infn[0] == '!') |
| 118 |
|
pclose(infp); |
| 201 |
|
default: |
| 202 |
|
octerror(USER, "damaged octree"); |
| 203 |
|
} |
| 204 |
+ |
return EMPTY; /* pro forma return */ |
| 205 |
|
} |
| 206 |
|
|
| 207 |
|
|
| 220 |
|
} |
| 221 |
|
|
| 222 |
|
|
| 223 |
< |
static |
| 224 |
< |
skiptree() /* skip octree on input */ |
| 223 |
> |
static void |
| 224 |
> |
skiptree(void) /* skip octree on input */ |
| 225 |
|
{ |
| 226 |
|
register int i; |
| 227 |
|
|
| 245 |
|
} |
| 246 |
|
|
| 247 |
|
|
| 248 |
< |
static |
| 248 |
> |
static void |
| 249 |
|
octerror(etyp, msg) /* octree error */ |
| 250 |
|
int etyp; |
| 251 |
|
char *msg; |