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

Comparing ray/src/cv/mgf2rad.c (file contents):
Revision 2.17 by greg, Mon May 1 17:05:22 1995 UTC vs.
Revision 2.22 by greg, Thu Jun 6 11:49:53 1996 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1994 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 33 | Line 33 | main(argc, argv)               /* convert files to stdout */
33   int     argc;
34   char    *argv[];
35   {
36 <        int     i, rv;
36 >        int     i;
37 >                                /* print out parser version */
38 >        printf("## Translated from MGF Version %d.%d\n", MG_VMAJOR, MG_VMINOR);
39                                  /* initialize dispatch table */
40          mg_ehand[MG_E_COMMENT] = r_comment;     /* we pass comments */
41          mg_ehand[MG_E_COLOR] = c_hcolor;        /* they get color */
# Line 92 | Line 94 | char   *argv[];
94          }
95          putchar('\n');
96          if (i == argc) {                /* convert stdin */
97 <                if ((rv = mg_load(NULL)) != MG_OK)
97 >                if (mg_load(NULL) != MG_OK)
98                          exit(1);
99 +                if (mg_nunknown)
100 +                        printf("## %s: %u unknown entities\n",
101 +                                        argv[0], mg_nunknown);
102          } else                          /* convert each file */
103                  for ( ; i < argc; i++) {
104                          printf("## %s %s ##############################\n",
105                                          argv[0], argv[i]);
106 <                        if ((rv = mg_load(argv[i])) != MG_OK)
106 >                        if (mg_load(argv[i]) != MG_OK)
107                                  exit(1);
108 +                        if (mg_nunknown) {
109 +                                printf("## %s %s: %u unknown entities\n",
110 +                                                argv[0], argv[i], mg_nunknown);
111 +                                mg_nunknown = 0;
112 +                        }
113                  }
114          exit(0);
115   userr:
# Line 338 | Line 348 | char   **av;
348          if (ac < 2)
349                  return(MG_EARGC);
350                                          /* construct output file name */
351 <        if ((op = strrchr(av[1], '/')) == NULL)
351 >        if ((op = strrchr(av[1], '/')) != NULL)
352 >                op++;
353 >        else
354                  op = av[1];
355          (void)strcpy(fname, op);
356          if ((op = strrchr(fname, '.')) == NULL)
# Line 529 | Line 541 | material()                     /* get (and print) current material */
541                  return(mname);
542          }
543                                          /* check for plastic */
544 <        if (c_cmaterial->rs < .1 && (c_cmaterial->rs < .01 ||
533 <                                        c_isgrey(&c_cmaterial->rs_c))) {
544 >        if (c_cmaterial->rs < .1) {
545                  cvtcolor(radrgb, &c_cmaterial->rd_c,
546                                          c_cmaterial->rd/(1.-c_cmaterial->rs));
547                  fprintf(matfp, "\nvoid plastic %s\n0\n0\n", mname);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines