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.20 by greg, Wed Nov 8 09:40:22 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 304 | Line 300 | mg_read()                      /* read next line from file */
300                  if (fgets(mg_file->inpline+len,
301                                  MG_MAXLINE-len, mg_file->fp) == NULL)
302                          return(len);
307                mg_file->lineno++;
303                  len += strlen(mg_file->inpline+len);
304 <                if (len > 1 && mg_file->inpline[len-2] == '\\')
305 <                        mg_file->inpline[--len-1] = ' ';
306 <        } while (mg_file->inpline[len]);
304 >                if (len >= MG_MAXLINE-1)
305 >                        return(len);
306 >                mg_file->lineno++;
307 >        } while (len > 1 && mg_file->inpline[len-2] == '\\');
308  
309          return(len);
310   }
# Line 319 | Line 315 | mg_parse()                     /* parse current input line */
315   {
316          char    abuf[MG_MAXLINE];
317          char    *argv[MG_MAXARGC];
318 <        int     en;
319 <        register char   *cp, **ap;
320 <
321 <        strcpy(cp=abuf, mg_file->inpline);
322 <        ap = argv;                      /* break into words */
318 >        register char   *cp, *cp2, **ap;
319 >                                        /* copy line, removing escape chars */
320 >        cp = abuf; cp2 = mg_file->inpline;
321 >        while ((*cp++ = *cp2++))
322 >                if (cp2[0] == '\n' && cp2[-1] == '\\')
323 >                        cp--;
324 >        cp = abuf; ap = argv;           /* break into words */
325          for ( ; ; ) {
326                  while (isspace(*cp))
327                          *cp++ = '\0';
# Line 348 | Line 346 | mg_load(fn)                    /* load an MGF file */
346   char    *fn;
347   {
348          MG_FCTXT        cntxt;
349 <        register int    rval;
349 >        int     rval;
350 >        register int    nbr;
351  
352          if ((rval = mg_open(&cntxt, fn)) != MG_OK) {
353                  fprintf(stderr, "%s: %s\n", fn, mg_err[rval]);
354                  return(rval);
355          }
356 <        while ((rval = mg_read()) > 0) {        /* parse each line */
357 <                if (rval >= MG_MAXLINE-1 && cntxt.inpline[rval-1] != '\n') {
356 >        while ((nbr = mg_read()) > 0) { /* parse each line */
357 >                if (nbr >= MG_MAXLINE-1) {
358                          fprintf(stderr, "%s: %d: %s\n", cntxt.fname,
359                                          cntxt.lineno, mg_err[rval=MG_ELINE]);
360                          break;
# Line 388 | 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 406 | 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 427 | Line 427 | char   **av;
427                  for (i = 1; i < ac-1; i++)
428                          xfarg[i] = av[i+1];
429                  xfarg[ac-1] = NULL;
430 <                if ((rv = mg_handle(MG_E_XF, ac-1, xfarg)) != MG_OK)
430 >                if ((rv = mg_handle(MG_E_XF, ac-1, xfarg)) != MG_OK) {
431 >                        mg_close();
432                          return(rv);
433 +                }
434          }
435          do {
436                  while ((rv = mg_read()) > 0) {
437 <                        if (rv >= MG_MAXLINE-1 && ictx.inpline[rv-1] != '\n') {
437 >                        if (rv >= MG_MAXLINE-1) {
438                                  fprintf(stderr, "%s: %d: %s\n", ictx.fname,
439                                                  ictx.lineno, mg_err[MG_ELINE]);
440                                  mg_close();
# Line 447 | Line 449 | char   **av;
449                          }
450                  }
451                  if (ac > 2)
452 <                        if ((rv = mg_handle(MG_E_XF, 1, xfarg)) != MG_OK)
452 >                        if ((rv = mg_handle(MG_E_XF, 1, xfarg)) != MG_OK) {
453 >                                mg_close();
454                                  return(rv);
455 +                        }
456          } while (xf_context != xf_orig);
457          mg_close();
458          return(MG_OK);
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 472 | 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 524 | 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 616 | 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 633 | 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 731 | 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 773 | 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 901 | 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 1013 | 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};
1016        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)
1021 <                return(rv);
1022 <        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