--- ray/src/common/rglinst.c 2003/06/05 19:29:34 3.9 +++ ray/src/common/rglinst.c 2003/11/14 17:22:06 3.13 @@ -1,5 +1,5 @@ #ifndef lint -static const char RCSid[] = "$Id: rglinst.c,v 3.9 2003/06/05 19:29:34 schorsch Exp $"; +static const char RCSid[] = "$Id: rglinst.c,v 3.13 2003/11/14 17:22:06 schorsch Exp $"; #endif /* * Routines for reading instances and converting to OpenGL. @@ -7,9 +7,15 @@ static const char RCSid[] = "$Id: rglinst.c,v 3.9 2003 #include "copyright.h" +#include +#include +#include + +#include "platform.h" +#include "paths.h" +#include "resolu.h" #include "radogl.h" #include "octree.h" -#include "platform.h" #define MAXLEVEL 16 /* maximum instance hierarchy level */ @@ -20,13 +26,13 @@ typedef struct { char octfile[256]; /* octree file path */ } OCTINST; /* octree to instantiate */ -static double ogetflt(); -static long ogetint(); -static char *ogetstr(); -static int loadobj(); -static void skiptree(); -static void octerror(); -static OCTINST *getoct(); +static double ogetflt(void); +static long ogetint(int); +static char *ogetstr(char *); +static int loadobj(void); +static void skiptree(void); +static void octerror(int etyp, char *msg); +static OCTINST *getoct(char *); static char *infn; /* input file name */ static FILE *infp; /* input file stream */ @@ -55,7 +61,7 @@ register OBJREC *o; o->oargs.nsargs-1) objerror(o, USER, "bad transform"); glPushAttrib(GL_TRANSFORM_BIT); - if (xfs.sca < 1.-FTINY | xfs.sca > 1.+FTINY) + if ((xfs.sca < 1.-FTINY) | (xfs.sca > 1.+FTINY)) glEnable(GL_NORMALIZE); glMatrixMode(GL_MODELVIEW); glPushMatrix(); @@ -111,7 +117,7 @@ loadoctrees() /* load octrees we've saved up */ while (ottab.tsiz) { if (!levelsleft--) error(USER, "too many octree levels -- instance loop?"); - copystruct(&looptab, &ottab); + looptab = ottab; ottab.tsiz = 0; nocts += lu_doall(&looptab, buildoctlist); lu_done(&looptab); @@ -151,6 +157,7 @@ char *name; return(op); memerr: error(SYSTEM, "out of memory in getoct"); + return NULL; /* pro forma return */ } @@ -176,7 +183,7 @@ FVECT cent; /* check format */ if ((objsize = ogetint(2)-OCTMAGIC) <= 0 || objsize > MAXOBJSIZ || objsize > sizeof(long)) - octerror("incompatible octree format"); + octerror(USER, "incompatible octree format"); if (cent != NULL) { /* get boundaries (compute center) */ for (i = 0; i < 3; i++) cent[i] = atof(ogetstr(sbuf)); @@ -333,7 +340,7 @@ loadobj() /* get next object */ /* get name id */ ob.oname = ogetstr(idbuf); /* get string arguments */ - if (ob.oargs.nsargs = ogetint(2)) { + if ((ob.oargs.nsargs = ogetint(2))) { ob.oargs.sarg = (char **)malloc (ob.oargs.nsargs*sizeof(char *)); if (ob.oargs.sarg == NULL) @@ -355,9 +362,9 @@ loadobj() /* get next object */ ob.oargs.iarg = NULL; #endif /* get real arguments */ - if (ob.oargs.nfargs = ogetint(2)) { - ob.oargs.farg = (FLOAT *)malloc - (ob.oargs.nfargs*sizeof(FLOAT)); + if ((ob.oargs.nfargs = ogetint(2))) { + ob.oargs.farg = (RREAL *)malloc + (ob.oargs.nfargs*sizeof(RREAL)); if (ob.oargs.farg == NULL) goto memerr; for (i = 0; i < ob.oargs.nfargs; i++) @@ -377,6 +384,7 @@ loadobj() /* get next object */ return(nobjects++); /* return object id */ memerr: error(SYSTEM, "out of memory in loadobj"); + return OVOID; /* pro forma return */ }