ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/cv/obj2rad.c
(Generate patch)

Comparing ray/src/cv/obj2rad.c (file contents):
Revision 2.18 by greg, Tue Mar 4 01:42:29 2003 UTC vs.
Revision 2.23 by greg, Fri Apr 23 16:20:56 2004 UTC

# Line 10 | Line 10 | static const char      RCSid[] = "$Id$";
10   * I'm not sure they work correctly.  (Taken out -- see TEXMAPS defines.)
11   */
12  
13 < #include "standard.h"
13 > #include <stdlib.h>
14 > #include <stdio.h>
15 > #include <ctype.h>
16  
17 + #include "rtmath.h"
18 + #include "rtio.h"
19 + #include "resolu.h"
20   #include "trans.h"
16
21   #include "tmesh.h"
22  
19 #include <ctype.h>
23  
24   #define PATNAME         "M-pat"         /* mesh pattern name (reused) */
25   #define TEXNAME         "M-nor"         /* mesh texture name (reused) */
# Line 29 | Line 32 | FVECT  *vlist;                 /* our vertex list */
32   int     nvs;                    /* number of vertices in our list */
33   FVECT   *vnlist;                /* vertex normal list */
34   int     nvns;
35 < FLOAT   (*vtlist)[2];           /* map vertex list */
35 > RREAL   (*vtlist)[2];           /* map vertex list */
36   int     nvts;
37  
38   typedef int     VNDX[3];        /* vertex index (point,map,normal) */
39  
40 < #define CHUNKSIZ        256     /* vertex allocation chunk size */
40 > #define CHUNKSIZ        1024    /* vertex allocation chunk size */
41  
42 < #define MAXARG          64      /* maximum # arguments in a statement */
42 > #define MAXARG          512     /* maximum # arguments in a statement */
43  
44                                  /* qualifiers */
45   #define Q_MTL           0
# Line 65 | Line 68 | char   *defobj = DEFOBJ;       /* default (starting) object na
68  
69   int     flatten = 0;            /* discard surface normal information */
70  
68 char    *getmtl(), *getonm();
69
71   char    mapname[128];           /* current picture file */
72   char    matname[64];            /* current material name */
73   char    group[16][32];          /* current group names */
# Line 75 | Line 76 | char   *inpfile;               /* input file name */
76   int     lineno;                 /* current line number */
77   int     faceno;                 /* current face number */
78  
79 + static void getnames(FILE *fp);
80 + static void convert(FILE *fp);
81 + static int getstmt(char *av[MAXARG], FILE *fp);
82 + static char * getmtl(void);
83 + static char * getonm(void);
84 + static int matchrule(RULEHD *rp);
85 + static int cvtndx(VNDX vi, char *vs);
86 + static int nonplanar(int ac, char **av);
87 + static int putface(int ac, char **av);
88 + static int puttri(char *v1, char *v2, char *v3);
89 + static void freeverts(void);
90 + static int newv(double x, double y, double z);
91 + static int newvn(double x, double y, double z);
92 + static int newvt(double x, double y);
93 + static void syntax(char *er);
94  
95 < main(argc, argv)                /* read in .obj file and convert */
96 < int     argc;
97 < char    *argv[];
95 >
96 > int
97 > main(           /* read in .obj file and convert */
98 >        int     argc,
99 >        char    *argv[]
100 > )
101   {
102          int     donames = 0;
103          int     i;
# Line 100 | Line 119 | char   *argv[];
119                  default:
120                          goto userr;
121                  }
122 <        if (i > argc | i < argc-1)
122 >        if ((i > argc) | (i < argc-1))
123                  goto userr;
124          if (i == argc)
125                  inpfile = "<stdin>";
# Line 129 | Line 148 | userr:
148   }
149  
150  
151 < getnames(fp)                    /* get valid qualifier names */
152 < FILE    *fp;
151 > void
152 > getnames(                       /* get valid qualifier names */
153 >        FILE    *fp
154 > )
155   {
156          char    *argv[MAXARG];
157          int     argc;
158          ID      tmpid;
159          register int    i;
160  
161 <        while (argc = getstmt(argv, fp))
161 >        while ( (argc = getstmt(argv, fp)) )
162                  switch (argv[0][0]) {
163                  case 'f':                               /* face */
164                          if (!argv[0][1])
# Line 178 | Line 199 | FILE   *fp;
199   }
200  
201  
202 < convert(fp)                     /* convert a T-mesh */
203 < FILE    *fp;
202 > void
203 > convert(                        /* convert a T-mesh */
204 >        FILE    *fp
205 > )
206   {
207          char    *argv[MAXARG];
208          int     argc;
# Line 188 | Line 211 | FILE   *fp;
211  
212          nstats = nunknown = 0;
213                                          /* scan until EOF */
214 <        while (argc = getstmt(argv, fp)) {
214 >        while ( (argc = getstmt(argv, fp)) ) {
215                  switch (argv[0][0]) {
216                  case 'v':               /* vertex */
217                          switch (argv[0][1]) {
# Line 282 | Line 305 | FILE   *fp;
305  
306  
307   int
308 < getstmt(av, fp)                         /* read the next statement from fp */
309 < register char   *av[MAXARG];
310 < FILE    *fp;
308 > getstmt(                                /* read the next statement from fp */
309 >        register char   *av[MAXARG],
310 >        FILE    *fp
311 > )
312   {
313 <        extern char     *fgetline();
290 <        static char     sbuf[MAXARG*10];
313 >        static char     sbuf[MAXARG*16];
314          register char   *cp;
315          register int    i;
316  
# Line 301 | Line 324 | FILE   *fp;
324                                          lineno++;
325                                  *cp++ = '\0';
326                          }
327 <                        if (!*cp || i >= MAXARG-1)
327 >                        if (!*cp)
328                                  break;
329 +                        if (i >= MAXARG-1) {
330 +                                fprintf(stderr,
331 +                        "warning: line %d: too many arguments (limit %d)\n",
332 +                                        lineno+1, MAXARG-1);
333 +                                break;
334 +                        }
335                          av[i++] = cp;
336                          while (*++cp && !isspace(*cp))
337                                  ;
# Line 316 | Line 345 | FILE   *fp;
345  
346  
347   char *
348 < getmtl()                                /* figure material for this face */
348 > getmtl(void)                            /* figure material for this face */
349   {
350          register RULEHD *rp = ourmapping;
351  
# Line 342 | Line 371 | getmtl()                               /* figure material for this face */
371  
372  
373   char *
374 < getonm()                                /* invent a good name for object */
374 > getonm(void)                            /* invent a good name for object */
375   {
376          static char     name[64];
377          register char   *cp1, *cp2;
# Line 357 | Line 386 | getonm()                               /* invent a good name for object */
386                  cp2 = group[i];
387                  if (cp1 > name)
388                          *cp1++ = '.';
389 <                while (*cp1 = *cp2++)
389 >                while ( (*cp1 = *cp2++) )
390                          if (++cp1 >= name+sizeof(name)-2) {
391                                  *cp1 = '\0';
392                                  return(name);
# Line 367 | Line 396 | getonm()                               /* invent a good name for object */
396   }
397  
398  
399 < matchrule(rp)                           /* check for a match on this rule */
400 < register RULEHD *rp;
399 > int
400 > matchrule(                              /* check for a match on this rule */
401 >        register RULEHD *rp
402 > )
403   {
404          ID      tmpid;
405          int     gotmatch;
# Line 418 | Line 449 | register RULEHD        *rp;
449   }
450  
451  
452 < cvtndx(vi, vs)                          /* convert vertex string to index */
453 < register VNDX   vi;
454 < register char   *vs;
452 > int
453 > cvtndx(                         /* convert vertex string to index */
454 >        register VNDX   vi,
455 >        register char   *vs
456 > )
457   {
458                                          /* get point */
459          vi[0] = atoi(vs);
# Line 465 | Line 498 | register char  *vs;
498   }
499  
500  
501 < nonplanar(ac, av)                       /* are vertices non-planar? */
502 < register int    ac;
503 < register char   **av;
501 > int
502 > nonplanar(                      /* are vertices non-planar? */
503 >        register int    ac,
504 >        register char   **av
505 > )
506   {
507          VNDX    vi;
508 <        FLOAT   *p0, *p1;
508 >        RREAL   *p0, *p1;
509          FVECT   v1, v2, nsum, newn;
510          double  d;
511          register int    i;
# Line 516 | Line 551 | register char  **av;
551   }
552  
553  
554 < putface(ac, av)                         /* put out an N-sided polygon */
555 < int     ac;
556 < register char   **av;
554 > int
555 > putface(                                /* put out an N-sided polygon */
556 >        int     ac,
557 >        register char   **av
558 > )
559   {
560          VNDX    vi;
561          char    *cp;
# Line 549 | Line 586 | register char  **av;
586   }
587  
588  
589 < puttri(v1, v2, v3)                      /* put out a triangle */
590 < char    *v1, *v2, *v3;
589 > int
590 > puttri(                 /* put out a triangle */
591 >        char *v1,
592 >        char *v2,
593 >        char *v3
594 > )
595   {
596          char    *mod;
597          VNDX    v1i, v2i, v3i;
598          BARYCCM bvecs;
599 <        FLOAT   bcoor[3][3];
600 <        int     texOK, patOK;
599 >        RREAL   bcoor[3][3];
600 >        int     texOK = 0, patOK;
601          int     flatness;
602          register int    i;
603  
# Line 639 | Line 680 | char   *v1, *v2, *v3;
680   }
681  
682  
683 < freeverts()                     /* free all vertices */
683 > void
684 > freeverts(void)                 /* free all vertices */
685   {
686          if (nvs) {
687                  free((void *)vlist);
# Line 657 | Line 699 | freeverts()                    /* free all vertices */
699  
700  
701   int
702 < newv(x, y, z)                   /* create a new vertex */
703 < double  x, y, z;
702 > newv(                   /* create a new vertex */
703 >        double  x,
704 >        double  y,
705 >        double  z
706 > )
707   {
708          if (!(nvs%CHUNKSIZ)) {          /* allocate next block */
709                  if (nvs == 0)
710                          vlist = (FVECT *)malloc(CHUNKSIZ*sizeof(FVECT));
711                  else
712 <                        vlist = (FVECT *)realloc((char *)vlist,
712 >                        vlist = (FVECT *)realloc((void *)vlist,
713                                          (nvs+CHUNKSIZ)*sizeof(FVECT));
714                  if (vlist == NULL) {
715                          fprintf(stderr,
# Line 681 | Line 726 | double x, y, z;
726  
727  
728   int
729 < newvn(x, y, z)                  /* create a new vertex normal */
730 < double  x, y, z;
729 > newvn(                  /* create a new vertex normal */
730 >        double  x,
731 >        double  y,
732 >        double  z
733 > )
734   {
735          if (!(nvns%CHUNKSIZ)) {         /* allocate next block */
736                  if (nvns == 0)
737                          vnlist = (FVECT *)malloc(CHUNKSIZ*sizeof(FVECT));
738                  else
739 <                        vnlist = (FVECT *)realloc((char *)vnlist,
739 >                        vnlist = (FVECT *)realloc((void *)vnlist,
740                                          (nvns+CHUNKSIZ)*sizeof(FVECT));
741                  if (vnlist == NULL) {
742                          fprintf(stderr,
# Line 707 | Line 755 | double x, y, z;
755  
756  
757   int
758 < newvt(x, y)                     /* create a new texture map vertex */
759 < double  x, y;
758 > newvt(                  /* create a new texture map vertex */
759 >        double  x,
760 >        double  y
761 > )
762   {
763          if (!(nvts%CHUNKSIZ)) {         /* allocate next block */
764                  if (nvts == 0)
765 <                        vtlist = (FLOAT (*)[2])malloc(CHUNKSIZ*2*sizeof(FLOAT));
765 >                        vtlist = (RREAL (*)[2])malloc(CHUNKSIZ*2*sizeof(RREAL));
766                  else
767 <                        vtlist = (FLOAT (*)[2])realloc((char *)vtlist,
768 <                                        (nvts+CHUNKSIZ)*2*sizeof(FLOAT));
767 >                        vtlist = (RREAL (*)[2])realloc((void *)vtlist,
768 >                                        (nvts+CHUNKSIZ)*2*sizeof(RREAL));
769                  if (vtlist == NULL) {
770                          fprintf(stderr,
771                          "Out of memory while allocating texture vertex %d\n",
# Line 730 | Line 780 | double x, y;
780   }
781  
782  
783 < syntax(er)                      /* report syntax error and exit */
784 < char    *er;
783 > void
784 > syntax(                 /* report syntax error and exit */
785 >        char    *er
786 > )
787   {
788          fprintf(stderr, "%s: Wavefront syntax error near line %d: %s\n",
789                          inpfile, lineno, er);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines