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

Comparing ray/src/cv/mgflib/parser.c (file contents):
Revision 1.22 by greg, Fri Dec 1 11:03:57 1995 UTC vs.
Revision 1.25 by greg, Fri Mar 21 12:32:41 1997 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1995 Regents of the University of California */
1 > /* Copyright (c) 1996 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 63 | Line 63 | int    mg_nqcdivs = MG_NQCD;   /* number of divisions per q
63  
64   static int      e_any_toss(),           /* discard unneeded entity */
65                  e_ies(),                /* IES luminaire file */
66                e_include(),            /* include file */
67                e_sph(),                /* sphere */
66                  e_cct(),                /* color temperature */
67                  e_cmix(),               /* color mixtures */
68 <                e_cspec(),              /* color spectra */
71 <                e_cyl(),                /* cylinder */
72 <                e_cone(),               /* cone */
73 <                e_prism(),              /* prism */
74 <                e_ring(),               /* ring */
75 <                e_torus();              /* torus */
68 >                e_cspec();              /* color spectra */
69  
70                                  /* alternate handler support functions */
71  
# Line 123 | Line 116 | mg_init()                      /* initialize alternate entity handlers */
116                  ineed |= 1L<<MG_E_POINT|1L<<MG_E_NORMAL|1L<<MG_E_VERTEX;
117          } else
118                  uneed |= 1L<<MG_E_POINT|1L<<MG_E_NORMAL|1L<<MG_E_VERTEX|1L<<MG_E_XF;
119 +        if (mg_ehand[MG_E_FACE] == NULL)
120 +                mg_ehand[MG_E_FACE] = mg_ehand[MG_E_FACEH];
121 +        else if (mg_ehand[MG_E_FACEH] == NULL)
122 +                mg_ehand[MG_E_FACEH] = e_faceh;
123          if (mg_ehand[MG_E_COLOR] != NULL) {
124                  if (mg_ehand[MG_E_CMIX] == NULL) {
125                          mg_ehand[MG_E_CMIX] = e_cmix;
# Line 260 | Line 257 | mg_close()                     /* close input file */
257          register MG_FCTXT       *ctx = mg_file;
258  
259          mg_file = ctx->prev;            /* restore enclosing context */
260 <        if (ctx->fp == stdin)
261 <                return;                 /* don't close standard input */
265 <        fclose(ctx->fp);
260 >        if (ctx->fp != stdin)           /* close file if it's a file */
261 >                fclose(ctx->fp);
262   }
263  
264  
# Line 319 | Line 315 | mg_parse()                     /* parse current input line */
315   {
316          char    abuf[MG_MAXLINE];
317          char    *argv[MG_MAXARGC];
322        int     en;
318          register char   *cp, *cp2, **ap;
319                                          /* copy line, removing escape chars */
320          cp = abuf; cp2 = mg_file->inpline;
# Line 392 | Line 387 | void
387   mg_clear()                      /* clear parser history */
388   {
389          c_clearall();                   /* clear context tables */
390 <        mg_file = NULL;                 /* reset our context */
390 >        while (mg_file != NULL)         /* reset our file context */
391 >                mg_close();
392   }
393  
394  
# Line 410 | Line 406 | char   **av;
406   }
407  
408  
409 < static int
409 > int
410   e_include(ac, av)               /* include file */
411   int     ac;
412   char    **av;
# Line 463 | Line 459 | char   **av;
459   }
460  
461  
462 + int
463 + e_faceh(ac, av)                 /* replace face+holes with single contour */
464 + int     ac;
465 + char    **av;
466 + {
467 +        char    *newav[MG_MAXARGC];
468 +        int     lastp = 0;
469 +        register int    i, j;
470 +
471 +        newav[0] = mg_ename[MG_E_FACE];
472 +        for (i = 1; i < ac; i++)
473 +                if (av[i][0] == '-') {
474 +                        if (i < 4)
475 +                                return(MG_EARGC);
476 +                        if (i >= ac-1)
477 +                                break;
478 +                        if (!lastp)
479 +                                lastp = i-1;
480 +                        for (j = i+1; j < ac-1 && av[j+1][0] != '-'; j++)
481 +                                ;
482 +                        if (j - i < 3)
483 +                                return(MG_EARGC);
484 +                        newav[i] = av[j];       /* connect hole loop */
485 +                } else
486 +                        newav[i] = av[i];       /* hole or perimeter vertex */
487 +        if (lastp)
488 +                newav[i++] = av[lastp];         /* finish seam to outside */
489 +        newav[i] = NULL;
490 +        return(mg_handle(MG_E_FACE, i, newav));
491 + }
492 +
493 +
494   static void
495   make_axes(u, v, w)              /* compute u and v given w (normalized) */
496   FVECT   u, v, w;
# Line 480 | Line 508 | FVECT  u, v, w;
508   }
509  
510  
511 < static int
511 > int
512   e_sph(ac, av)                   /* expand a sphere into cones */
513   int     ac;
514   char    **av;
# Line 532 | Line 560 | char   **av;
560   }
561  
562  
563 < static int
563 > int
564   e_torus(ac, av)                 /* expand a torus into cones */
565   int     ac;
566   char    **av;
# Line 624 | Line 652 | char   **av;
652   }
653  
654  
655 < static int
655 > int
656   e_cyl(ac, av)                   /* replace a cylinder with equivalent cone */
657   int     ac;
658   char    **av;
# Line 641 | Line 669 | char   **av;
669   }
670  
671  
672 < static int
672 > int
673   e_ring(ac, av)                  /* turn a ring into polygons */
674   int     ac;
675   char    **av;
# Line 739 | Line 767 | char   **av;
767   }
768  
769  
770 < static int
770 > int
771   e_cone(ac, av)                  /* turn a cone into polygons */
772   int     ac;
773   char    **av;
# Line 781 | Line 809 | char   **av;
809                  if (rad2 == 0.)
810                          return(MG_EILL);
811          } else if (rad2 != 0.) {
812 <                if (rad1 < 0. ^ rad2 < 0.)
812 >                if ((rad1 < 0.) ^ (rad2 < 0.))
813                          return(MG_EILL);
814          } else {                        /* swap */
815                  C_VERTEX        *cv;
# Line 909 | Line 937 | char   **av;
937   }
938  
939  
940 < static int
940 > int
941   e_prism(ac, av)                 /* turn a prism into polygons */
942   int     ac;
943   char    **av;
# Line 1021 | Line 1049 | put_cxy()                      /* put out current xy chromaticities */
1049   {
1050          static char     xbuf[24], ybuf[24];
1051          static char     *ccom[4] = {mg_ename[MG_E_CXY], xbuf, ybuf};
1024        int     rv;
1052  
1053          sprintf(xbuf, "%.4f", c_ccolor->cx);
1054          sprintf(ybuf, "%.4f", c_ccolor->cy);
1055 <        if ((rv = mg_handle(MG_E_CXY, 3, ccom)) != MG_OK)
1029 <                return(rv);
1030 <        return(MG_OK);
1055 >        return(mg_handle(MG_E_CXY, 3, ccom));
1056   }
1057  
1058  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines