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

Comparing ray/src/gen/mkillum.c (file contents):
Revision 1.2 by greg, Tue Jul 23 16:13:28 1991 UTC vs.
Revision 2.15 by greg, Fri Jun 27 22:27:45 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1991 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Make illum sources for optimizing rendering process
6   */
7  
8 < #include  "mkillum.h"
12 <
8 > #include  <signal.h>
9   #include  <ctype.h>
10  
11 + #include  "mkillum.h"
12 + #include  "platform.h"
13 +
14                                  /* default parameters */
15 < #define  SAMPDENS       128             /* points per projected steradian */
15 > #define  SAMPDENS       48              /* points per projected steradian */
16   #define  NSAMPS         32              /* samples per point */
17   #define  DFLMAT         "illum_mat"     /* material name */
18 + #define  DFLDAT         "illum"         /* data file name */
19                                  /* selection options */
20   #define  S_NONE         0               /* select none */
21   #define  S_ELEM         1               /* select specified element */
# Line 23 | Line 23 | static char SCCSid[] = "$SunId$ LBL";
23   #define  S_ALL          3               /* select all */
24  
25                                  /* rtrace command and defaults */
26 < char  *rtargv[64] = { "rtrace", "-dj", ".25", "-dr", "3", "-ab", "2",
27 <                "-ad", "256", "-as", "128", "-aa", ".15" };
28 < int  rtargc = 13;
26 > char  *rtargv[64] = { "rtrace", "-dj", ".25", "-dr", "3", "-dv-",
27 >                "-ab", "2", "-ad", "256", "-as", "128", "-aa", ".15", };
28 > int  rtargc = 14;
29                                  /* overriding rtrace options */
30 < char  *myrtopts[] = { "-I-", "-i-", "-di+", "-ov", "-h-", "-fff", NULL };
30 > char  *myrtopts[] = { "-I-", "-i-", "-ld-", "-ov", "-h-",
31 >                        "-fff", "-y", "0", NULL };
32  
33   struct rtproc   rt;             /* our rtrace process */
34  
35   struct illum_args  thisillum = {        /* our illum and default values */
36                  0,
37                  DFLMAT,
38 <                DFLMAT,
38 >                DFLDAT,
39                  0,
40                  VOIDID,
41 +                SAMPDENS,
42                  NSAMPS,
43 +                0.,
44          };
45  
43 int     sampdens = SAMPDENS;    /* sample point density */
46   char    matcheck[MAXSTR];       /* current material to include or exclude */
47   int     matselect = S_ALL;      /* selection criterion */
48  
# Line 55 | Line 57 | int    doneheader = 0;         /* printed header yet? */
57  
58   int     warnings = 1;           /* print warnings? */
59  
58 extern char     *fgetline(), *fgetword(), *sskip(),
59                *atos(), *iskip(), *fskip();
60 extern FILE     *popen();
60  
62
61   main(argc, argv)                /* compute illum distributions using rtrace */
62   int     argc;
63   char    *argv[];
64   {
67        extern char     *getenv(), *getpath();
65          char    *rtpath;
66 +        FILE    *fp;
67          register int    i;
68                                  /* set global arguments */
69 <        gargc = argc; gargv = argv;
69 >        gargv = argv;
70                                  /* set up rtrace command */
71 <        if (argc < 2)
72 <                error(USER, "too few arguments");
73 <        for (i = 1; i < argc-1; i++) {
71 >        for (i = 1; i < argc; i++) {
72 >                if (argv[i][0] == '<' && argv[i][1] == '\0')
73 >                        break;
74                  rtargv[rtargc++] = argv[i];
75                  if (argv[i][0] == '-' && argv[i][1] == 'w')
76 <                        warnings = !warnings;
76 >                        switch (argv[i][2]) {
77 >                        case '\0':
78 >                                warnings = !warnings;
79 >                                break;
80 >                        case '+':
81 >                        case 'T': case 't':
82 >                        case 'Y': case 'y':
83 >                        case '1':
84 >                                warnings = 1;
85 >                                break;
86 >                        case '-':
87 >                        case 'F': case 'f':
88 >                        case 'N': case 'n':
89 >                        case '0':
90 >                                warnings = 0;
91 >                                break;
92 >                        }
93          }
94 +        gargc = i;
95 +        rtargc--;
96          for (i = 0; myrtopts[i] != NULL; i++)
97                  rtargv[rtargc++] = myrtopts[i];
98 <        rtargv[rtargc++] = argv[argc-1];
98 >        rtargv[rtargc++] = argv[gargc-1];
99          rtargv[rtargc] = NULL;
100                                  /* just asking for defaults? */
101 <        if (!strcmp(argv[argc-1], "-defaults")) {
101 >        if (!strcmp(argv[gargc-1], "-defaults")) {
102 >                printopts(); fflush(stdout);
103                  rtpath = getpath(rtargv[0], getenv("PATH"), X_OK);
104                  if (rtpath == NULL) {
105                          eputs(rtargv[0]);
# Line 93 | Line 110 | char   *argv[];
110                  perror(rtpath);
111                  exit(1);
112          }
113 +        if (gargc < 2 || argv[gargc-1][0] == '-')
114 +                error(USER, "missing octree argument");
115                                  /* else initialize and run our calculation */
116          init();
117 <        filter(stdin, "standard input");
117 >        if (gargc+1 < argc)
118 >                for (i = gargc+1; i < argc; i++) {
119 >                        if ((fp = fopen(argv[i], "r")) == NULL) {
120 >                                sprintf(errmsg,
121 >                                "cannot open scene file \"%s\"", argv[i]);
122 >                                error(SYSTEM, errmsg);
123 >                        }
124 >                        filter(fp, argv[i]);
125 >                        fclose(fp);
126 >                }
127 >        else
128 >                filter(stdin, "standard input");
129          quit(0);
130   }
131  
132  
133 + void
134 + quit(status)                    /* exit with status */
135 + int  status;
136 + {
137 +        int     rtstat;
138 +
139 +        rtstat = close_process(&(rt.pd));
140 +        if (status == 0)
141 +                if (rtstat < 0)
142 +                        error(WARNING,
143 +                        "unknown return status from rtrace process");
144 +                else
145 +                        status = rtstat;
146 +        exit(status);
147 + }
148 +
149 +
150   init()                          /* start rtrace and set up buffers */
151   {
152 +        extern int  o_face(), o_sphere(), o_ring();
153          int     maxbytes;
154 <
155 <        maxbytes = open_process(rt.pd, rtargv);
154 >                                        /* set up object functions */
155 >        ofun[OBJ_FACE].funp = o_face;
156 >        ofun[OBJ_SPHERE].funp = o_sphere;
157 >        ofun[OBJ_RING].funp = o_ring;
158 >                                        /* set up signal handling */
159 > #ifdef SIGPIPE /* not present on Windows */
160 >        signal(SIGPIPE, quit);
161 > #endif
162 >                                        /* start rtrace process */
163 >        errno = 0;
164 >        maxbytes = open_process(&(rt.pd), rtargv);
165          if (maxbytes == 0) {
166                  eputs(rtargv[0]);
167                  eputs(": command not found\n");
# Line 113 | Line 170 | init()                         /* start rtrace and set up buffers */
170          if (maxbytes < 0)
171                  error(SYSTEM, "cannot start rtrace process");
172          rt.bsiz = maxbytes/(6*sizeof(float));
173 <        rt.buf = (float *)malloc(rt.bsiz*(6*sizeof(float)));
174 <        if (rt.buf == NULL)
173 >        rt.buf = (float *)malloc(6*sizeof(float)*rt.bsiz--);
174 >        rt.dest = (float **)malloc(sizeof(float *)*rt.bsiz);
175 >        if (rt.buf == NULL || rt.dest == NULL)
176                  error(SYSTEM, "out of memory in init");
119        rt.bsiz--;                      /* allow for flush ray */
177          rt.nrays = 0;
178 +                                        /* set up urand */
179 +        initurand(16384);
180   }
181  
182  
183 < quit(status)                    /* exit with status */
125 < int  status;
126 < {
127 <        int     rtstat;
128 <
129 <        rtstat = close_process(rt.pd);
130 <        if (status == 0)
131 <                if (rtstat < 0)
132 <                        error(WARNING,
133 <                        "unknown return status from rtrace process");
134 <                else
135 <                        status = rtstat;
136 <        exit(status);
137 < }
138 <
139 <
183 > void
184   eputs(s)                                /* put string to stderr */
185   register char  *s;
186   {
# Line 152 | Line 196 | register char  *s;
196   }
197  
198  
199 + void
200   wputs(s)                        /* print warning if enabled */
201   char  *s;
202   {
# Line 211 | Line 256 | char   *nm;
256                  case ' ':
257                  case '\t':
258                  case '\n':
259 +                case '\r':
260 +                case '\f':
261                          cp++;
262                          continue;
263                  case 'm':                       /* material name */
264                          if (*++cp != '=')
265                                  break;
266 <                        if (!*++cp)
266 >                        if (!*++cp || isspace(*cp))
267                                  break;
268                          atos(thisillum.matname, MAXSTR, cp);
269                          cp = sskip(cp);
# Line 228 | Line 275 | char   *nm;
275                  case 'f':                       /* data file name */
276                          if (*++cp != '=')
277                                  break;
278 <                        if (!*++cp) {
278 >                        if (!*++cp || isspace(*cp)) {
279 >                                strcpy(thisillum.datafile,thisillum.matname);
280 >                                thisillum.dfnum = 0;
281                                  thisillum.flags &= ~IL_DATCLB;
282                                  continue;
283                          }
# Line 239 | Line 288 | char   *nm;
288                          continue;
289                  case 'i':                       /* include material */
290                  case 'e':                       /* exclude material */
291 <                        matselect = (*cp == 'i') ? S_ELEM : S_COMPL;
243 <                        if (*++cp != '=')
291 >                        if (cp[1] != '=')
292                                  break;
293 <                        atos(matcheck, MAXSTR, ++cp);
293 >                        matselect = (*cp == 'i') ? S_ELEM : S_COMPL;
294 >                        cp += 2;
295 >                        atos(matcheck, MAXSTR, cp);
296                          cp = sskip(cp);
297                          continue;
298                  case 'a':                       /* use everything */
# Line 258 | Line 308 | char   *nm;
308                                  break;
309                          switch (*++cp) {
310                          case 'a':                       /* average */
311 <                                thisillum.flags |= IL_COLAVG;
312 <                                thisillum.flags &= ~IL_COLDST;
311 >                                thisillum.flags = (thisillum.flags|IL_COLAVG)
312 >                                                        & ~IL_COLDST;
313                                  break;
314                          case 'd':                       /* distribution */
315 <                                thisillum.flags |= IL_COLDST;
266 <                                thisillum.flags &= ~IL_COLAVG;
315 >                                thisillum.flags |= (IL_COLDST|IL_COLAVG);
316                                  break;
317                          case 'n':                       /* none */
318                                  thisillum.flags &= ~(IL_COLAVG|IL_COLDST);
# Line 276 | Line 325 | char   *nm;
325                  case 'd':                       /* point sample density */
326                          if (*++cp != '=')
327                                  break;
328 <                        if (!isintd(++cp, " \t\n"))
328 >                        if (!isintd(++cp, " \t\n\r"))
329                                  break;
330 <                        sampdens = atoi(cp);
330 >                        thisillum.sampdens = atoi(cp);
331                          cp = sskip(cp);
332                          continue;
333                  case 's':                       /* point super-samples */
334                          if (*++cp != '=')
335                                  break;
336 <                        if (!isintd(++cp, " \t\n"))
336 >                        if (!isintd(++cp, " \t\n\r"))
337                                  break;
338                          thisillum.nsamps = atoi(cp);
339                          cp = sskip(cp);
340                          continue;
341 +                case 'l':                       /* light sources */
342 +                        cp++;
343 +                        if (*cp == '+')
344 +                                thisillum.flags |= IL_LIGHT;
345 +                        else if (*cp == '-')
346 +                                thisillum.flags &= ~IL_LIGHT;
347 +                        else
348 +                                break;
349 +                        cp++;
350 +                        continue;
351 +                case 'b':                       /* brightness */
352 +                        if (*++cp != '=')
353 +                                break;
354 +                        if (!isfltd(++cp, " \t\n\r"))
355 +                                break;
356 +                        thisillum.minbrt = atof(cp);
357 +                        if (thisillum.minbrt < 0.)
358 +                                thisillum.minbrt = 0.;
359 +                        cp = sskip(cp);
360 +                        continue;
361                  case 'o':                       /* output file */
362                          if (*++cp != '=')
363                                  break;
364 <                        if (!*++cp)
364 >                        if (!*++cp || isspace(*cp))
365                                  break;
366                          atos(buf, sizeof(buf), cp);
367                          cp = sskip(cp);
# Line 303 | Line 372 | char   *nm;
372                          }
373                          doneheader = 0;
374                          continue;
375 +                case '!':                       /* processed file! */
376 +                        sprintf(errmsg, "(%s): already processed!", nm);
377 +                        error(WARNING, errmsg);
378 +                        matselect = S_NONE;
379 +                        return;
380                  }
381          opterr:                                 /* skip faulty option */
382 <                cp = sskip(cp);
382 >                while (*cp && !isspace(*cp))
383 >                        cp++;
384                  nerrs++;
385          }
386                                                  /* print header? */
# Line 320 | Line 395 | char   *nm;
395                                  progname, nerrs);
396          }
397                                                  /* print pure comment */
398 <        putchar('#'); putchar(' '); fputs(s+2, stdout);
398 >        printf("# %s", s+2);
399   }
400  
401  
402 + printopts()                     /* print out option default values */
403 + {
404 +        printf("m=%-15s\t\t# material name\n", thisillum.matname);
405 +        printf("f=%-15s\t\t# data file name\n", thisillum.datafile);
406 +        if (thisillum.flags & IL_COLAVG)
407 +                if (thisillum.flags & IL_COLDST)
408 +                        printf("c=d\t\t\t\t# color distribution\n");
409 +                else
410 +                        printf("c=a\t\t\t\t# color average\n");
411 +        else
412 +                printf("c=n\t\t\t\t# color none\n");
413 +        if (thisillum.flags & IL_LIGHT)
414 +                printf("l+\t\t\t\t# light type on\n");
415 +        else
416 +                printf("l-\t\t\t\t# light type off\n");
417 +        printf("d=%d\t\t\t\t# density of points\n", thisillum.sampdens);
418 +        printf("s=%d\t\t\t\t# samples per point\n", thisillum.nsamps);
419 +        printf("b=%f\t\t\t# minimum average brightness\n", thisillum.minbrt);
420 + }
421 +
422 +
423   printhead(ac, av)                       /* print out header */
424   register int  ac;
425   register char  **av;
# Line 333 | Line 429 | register char  **av;
429                  putchar(' ');
430                  fputs(*av++, stdout);
431          }
432 <        putchar('\n');
432 >        fputs("\n#@mkillum !\n", stdout);
433   }
434  
435  
# Line 350 | Line 446 | char  *nm;
446          if (fgetword(str, MAXSTR, fp) == NULL)
447                  goto readerr;
448                                          /* is it an alias? */
449 <        if (!strcmp(str, ALIASID)) {
449 >        if (!strcmp(str, ALIASKEY)) {
450                  if (fgetword(str, MAXSTR, fp) == NULL)
451                          goto readerr;
452 <                printf("\n%s %s %s", thisillum.altmat, ALIASID, str);
452 >                printf("\n%s %s %s", thisillum.altmat, ALIASKEY, str);
453                  if (fgetword(str, MAXSTR, fp) == NULL)
454                          goto readerr;
455 <                printf(" %s\n", str);
455 >                printf("\t%s\n", str);
456                  return;
457          }
458 <        thisobj.omod = OVOID;
458 >        thisobj.omod = OVOID;           /* unused field */
459          if ((thisobj.otype = otype(str)) < 0) {
460                  sprintf(errmsg, "(%s): unknown type \"%s\"", nm, str);
461                  error(USER, errmsg);
# Line 376 | Line 472 | char  *nm;
472                  doit = 0;
473                  break;
474          case S_ALL:
475 <                doit = issurface(thisobj.otype);
475 >                doit = 1;
476                  break;
477          case S_ELEM:
478                  doit = !strcmp(thisillum.altmat, matcheck);
# Line 385 | Line 481 | char  *nm;
481                  doit = strcmp(thisillum.altmat, matcheck);
482                  break;
483          }
484 <        if (doit)                               /* make sure we can do it */
389 <                switch (thisobj.otype) {
390 <                case OBJ_SPHERE:
391 <                case OBJ_FACE:
392 <                case OBJ_RING:
393 <                        break;
394 <                default:
395 <                        sprintf(errmsg,
396 <                                "(%s): cannot make illum for %s \"%s\"",
397 <                                        nm, ofun[thisobj.otype].funame,
398 <                                        thisobj.oname);
399 <                        error(WARNING, errmsg);
400 <                        doit = 0;
401 <                        break;
402 <                }
484 >        doit = doit && issurface(thisobj.otype);
485                                                  /* print header? */
486          checkhead();
487                                                  /* process object */
488          if (doit)
489 <                mkillum(&thisobj, &thisillum, &rt);
489 >                (*ofun[thisobj.otype].funp)(&thisobj, &thisillum, &rt, nm);
490          else
491                  printobj(thisillum.altmat, &thisobj);
492                                                  /* free arguments */
# Line 414 | Line 496 | readerr:
496          sprintf(errmsg, "(%s): error reading scene", nm);
497          error(USER, errmsg);
498   }
417
418
419 int
420 otype(ofname)                   /* get object function number from its name */
421 char  *ofname;
422 {
423        register int  i;
424
425        for (i = 0; i < NUMOTYPE; i++)
426                if (!strcmp(ofun[i].funame, ofname))
427                        return(i);
428
429        return(-1);             /* not found */
430 }
431
432
433 o_default() {}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines