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.36 by greg, Sat Dec 12 19:00:59 2009 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 +
13                                  /* default parameters */
14 < #define  SAMPDENS       128             /* points per projected steradian */
14 > #define  SAMPDENS       48              /* points per projected steradian */
15   #define  NSAMPS         32              /* samples per point */
16   #define  DFLMAT         "illum_mat"     /* material name */
17 + #define  DFLDAT         "illum"         /* data file name */
18                                  /* selection options */
19   #define  S_NONE         0               /* select none */
20   #define  S_ELEM         1               /* select specified element */
21   #define  S_COMPL        2               /* select all but element */
22   #define  S_ALL          3               /* select all */
23  
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;
29                                /* overriding rtrace options */
30 char  *myrtopts[] = { "-I-", "-i-", "-di+", "-ov", "-h-", "-fff", NULL };
31
32 struct rtproc   rt;             /* our rtrace process */
33
24   struct illum_args  thisillum = {        /* our illum and default values */
25                  0,
26 +                UDzpos,
27 +                0.,
28                  DFLMAT,
29 <                DFLMAT,
29 >                DFLDAT,
30                  0,
31                  VOIDID,
32 +                SAMPDENS,
33                  NSAMPS,
34 +                NULL,
35 +                0.,
36          };
37  
43 int     sampdens = SAMPDENS;    /* sample point density */
38   char    matcheck[MAXSTR];       /* current material to include or exclude */
39   int     matselect = S_ALL;      /* selection criterion */
40  
47 FUN     ofun[NUMOTYPE] = INIT_OTYPE;    /* object types */
48
41   int     gargc;                  /* global argc */
42   char    **gargv;                /* global argv */
51 #define  progname       gargv[0]
43  
44   int     doneheader = 0;         /* printed header yet? */
45   #define  checkhead()    if (!doneheader++) printhead(gargc,gargv)
46  
47   int     warnings = 1;           /* print warnings? */
48  
49 < extern char     *fgetline(), *fgetword(), *sskip(),
50 <                *atos(), *iskip(), *fskip();
51 < extern FILE     *popen();
49 > void init(char *octnm, int np);
50 > void filter(register FILE       *infp, char     *name);
51 > void xoptions(char      *s, char        *nm);
52 > void printopts(void);
53 > void printhead(register int  ac, register char  **av);
54 > void xobject(FILE  *fp, char  *nm);
55  
56  
57 < main(argc, argv)                /* compute illum distributions using rtrace */
58 < int     argc;
59 < char    *argv[];
57 > int
58 > main(           /* compute illum distributions using rtrace */
59 >        int     argc,
60 >        char    *argv[]
61 > )
62   {
63 <        extern char     *getenv(), *getpath();
64 <        char    *rtpath;
63 >        int     nprocs = 1;
64 >        FILE    *fp;
65 >        int     rval;
66          register int    i;
67                                  /* set global arguments */
68 <        gargc = argc; gargv = argv;
69 <                                /* set up rtrace command */
70 <        if (argc < 2)
71 <                error(USER, "too few arguments");
72 <        for (i = 1; i < argc-1; i++) {
73 <                rtargv[rtargc++] = argv[i];
74 <                if (argv[i][0] == '-' && argv[i][1] == 'w')
75 <                        warnings = !warnings;
76 <        }
77 <        for (i = 0; myrtopts[i] != NULL; i++)
78 <                rtargv[rtargc++] = myrtopts[i];
79 <        rtargv[rtargc++] = argv[argc-1];
80 <        rtargv[rtargc] = NULL;
81 <                                /* just asking for defaults? */
85 <        if (!strcmp(argv[argc-1], "-defaults")) {
86 <                rtpath = getpath(rtargv[0], getenv("PATH"), X_OK);
87 <                if (rtpath == NULL) {
88 <                        eputs(rtargv[0]);
89 <                        eputs(": command not found\n");
90 <                        exit(1);
68 >        gargv = argv;
69 >        progname = gargv[0];
70 >                                /* set up rendering defaults */
71 >        dstrsrc = 0.5;
72 >        directrelay = 3;
73 >        directvis = 0;
74 >        ambounce = 2;
75 >                                /* get options from command line */
76 >        for (i = 1; i < argc; i++) {
77 >                while ((rval = expandarg(&argc, &argv, i)) > 0)
78 >                        ;
79 >                if (rval < 0) {
80 >                        sprintf(errmsg, "cannot expand '%s'", argv[i]);
81 >                        error(SYSTEM, errmsg);
82                  }
83 <                execv(rtpath, rtargv);
84 <                perror(rtpath);
85 <                exit(1);
83 >                if (argv[i][0] != '-')
84 >                        break;
85 >                if (!strcmp(argv[i], "-w")) {
86 >                        warnings = 0;
87 >                        continue;
88 >                }
89 >                if (!strcmp(argv[i], "-n")) {
90 >                        nprocs = atoi(argv[++i]);
91 >                        if (nprocs <= 0)
92 >                                error(USER, "illegal number of processes");
93 >                        continue;
94 >                }
95 >                if (!strcmp(argv[i], "-defaults")) {
96 >                        printopts();
97 >                        print_rdefaults();
98 >                        quit(0);
99 >                }
100 >                rval = getrenderopt(argc-i, argv+i);
101 >                if (rval < 0) {
102 >                        sprintf(errmsg, "bad render option at '%s'", argv[i]);
103 >                        error(USER, errmsg);
104 >                }
105 >                i += rval;
106          }
107 +        gargc = ++i;
108 +                                /* add "mandatory" render options */
109 +        do_irrad = 0;
110 +        if (gargc > argc || argv[gargc-1][0] == '-')
111 +                error(USER, "missing octree argument");
112                                  /* else initialize and run our calculation */
113 <        init();
114 <        filter(stdin, "standard input");
113 >        init(argv[gargc-1], nprocs);
114 >        if (gargc < argc) {
115 >                if (gargc == argc-1 || argv[gargc][0] != '<' || argv[gargc][1])
116 >                        error(USER, "use '< file1 file2 ..' for multiple inputs");
117 >                for (i = gargc+1; i < argc; i++) {
118 >                        if ((fp = fopen(argv[i], "r")) == NULL) {
119 >                                sprintf(errmsg,
120 >                                "cannot open scene file \"%s\"", argv[i]);
121 >                                error(SYSTEM, errmsg);
122 >                        }
123 >                        filter(fp, argv[i]);
124 >                        fclose(fp);
125 >                }
126 >        } else
127 >                filter(stdin, "standard input");
128          quit(0);
129 +        return 0; /* pro forma return */
130   }
131  
132  
133 < init()                          /* start rtrace and set up buffers */
133 > void
134 > init(char *octnm, int np)               /* start rendering process(es) */
135   {
136 <        int     maxbytes;
137 <
138 <        maxbytes = open_process(rt.pd, rtargv);
139 <        if (maxbytes == 0) {
140 <                eputs(rtargv[0]);
141 <                eputs(": command not found\n");
142 <                exit(1);
143 <        }
144 <        if (maxbytes < 0)
145 <                error(SYSTEM, "cannot start rtrace process");
146 <        rt.bsiz = maxbytes/(6*sizeof(float));
147 <        rt.buf = (float *)malloc(rt.bsiz*(6*sizeof(float)));
148 <        if (rt.buf == NULL)
118 <                error(SYSTEM, "out of memory in init");
119 <        rt.bsiz--;                      /* allow for flush ray */
120 <        rt.nrays = 0;
136 >                                        /* set up signal handling */
137 >        signal(SIGINT, quit);
138 > #ifdef SIGHUP
139 >        signal(SIGHUP, quit);
140 > #endif
141 > #ifdef SIGTERM
142 >        signal(SIGTERM, quit);
143 > #endif
144 > #ifdef SIGPIPE
145 >        signal(SIGPIPE, quit);
146 > #endif
147 >                                        /* start rendering process(es) */
148 >        ray_pinit(octnm, np);
149   }
150  
151  
152 < quit(status)                    /* exit with status */
153 < int  status;
152 > void
153 > eputs(                          /* put string to stderr */
154 >        register char  *s
155 > )
156   {
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
140 eputs(s)                                /* put string to stderr */
141 register char  *s;
142 {
157          static int  midline = 0;
158  
159          if (!*s) return;
# Line 152 | Line 166 | register char  *s;
166   }
167  
168  
169 + void
170   wputs(s)                        /* print warning if enabled */
171   char  *s;
172   {
# Line 160 | Line 175 | char  *s;
175   }
176  
177  
178 < filter(infp, name)              /* process stream */
179 < register FILE   *infp;
180 < char    *name;
178 > void
179 > quit(ec)                        /* make sure exit is called */
180 > int     ec;
181   {
182 +        if (ray_pnprocs > 0)    /* close children if any */
183 +                ray_pclose(0);          
184 +        exit(ec);
185 + }
186 +
187 +
188 + void
189 + filter(         /* process stream */
190 +        register FILE   *infp,
191 +        char    *name
192 + )
193 + {
194          char    buf[512];
195          FILE    *pfp;
196          register int    c;
# Line 192 | Line 219 | char   *name;
219   }
220  
221  
222 < xoptions(s, nm)                 /* process options in string s */
223 < char    *s;
224 < char    *nm;
222 > void
223 > xoptions(                       /* process options in string s */
224 >        char    *s,
225 >        char    *nm
226 > )
227   {
228          extern FILE     *freopen();
229          char    buf[64];
230 +        int     negax;
231          int     nerrs = 0;
232          register char   *cp;
233  
# Line 211 | Line 241 | char   *nm;
241                  case ' ':
242                  case '\t':
243                  case '\n':
244 +                case '\r':
245 +                case '\f':
246                          cp++;
247                          continue;
248                  case 'm':                       /* material name */
249                          if (*++cp != '=')
250                                  break;
251 <                        if (!*++cp)
251 >                        if (!*++cp || isspace(*cp))
252                                  break;
253                          atos(thisillum.matname, MAXSTR, cp);
254                          cp = sskip(cp);
# Line 228 | Line 260 | char   *nm;
260                  case 'f':                       /* data file name */
261                          if (*++cp != '=')
262                                  break;
263 <                        if (!*++cp) {
263 >                        if (!*++cp || isspace(*cp)) {
264 >                                strcpy(thisillum.datafile,thisillum.matname);
265 >                                thisillum.dfnum = 0;
266                                  thisillum.flags &= ~IL_DATCLB;
267                                  continue;
268                          }
# Line 239 | Line 273 | char   *nm;
273                          continue;
274                  case 'i':                       /* include material */
275                  case 'e':                       /* exclude material */
276 <                        matselect = (*cp == 'i') ? S_ELEM : S_COMPL;
243 <                        if (*++cp != '=')
276 >                        if (cp[1] != '=')
277                                  break;
278 <                        atos(matcheck, MAXSTR, ++cp);
278 >                        matselect = (*cp == 'i') ? S_ELEM : S_COMPL;
279 >                        cp += 2;
280 >                        atos(matcheck, MAXSTR, cp);
281                          cp = sskip(cp);
282                          continue;
283                  case 'a':                       /* use everything */
# Line 258 | Line 293 | char   *nm;
293                                  break;
294                          switch (*++cp) {
295                          case 'a':                       /* average */
296 <                                thisillum.flags |= IL_COLAVG;
297 <                                thisillum.flags &= ~IL_COLDST;
296 >                                thisillum.flags = (thisillum.flags|IL_COLAVG)
297 >                                                        & ~IL_COLDST;
298                                  break;
299                          case 'd':                       /* distribution */
300 <                                thisillum.flags |= IL_COLDST;
266 <                                thisillum.flags &= ~IL_COLAVG;
300 >                                thisillum.flags |= (IL_COLDST|IL_COLAVG);
301                                  break;
302                          case 'n':                       /* none */
303                                  thisillum.flags &= ~(IL_COLAVG|IL_COLDST);
# Line 273 | Line 307 | char   *nm;
307                          }
308                          cp = sskip(cp);
309                          continue;
310 <                case 'd':                       /* point sample density */
310 >                case 'd':                       /* sample density / BSDF data */
311                          if (*++cp != '=')
312                                  break;
313 <                        if (!isintd(++cp, " \t\n"))
314 <                                break;
315 <                        sampdens = atoi(cp);
313 >                        if (thisillum.sd != NULL) {
314 >                                free_BSDF(thisillum.sd);
315 >                                thisillum.sd = NULL;
316 >                        }
317 >                        if (!*++cp || isspace(*cp))
318 >                                continue;
319 >                        if (isintd(cp, " \t\n\r")) {
320 >                                thisillum.sampdens = atoi(cp);
321 >                        } else {
322 >                                atos(buf, sizeof(buf), cp);
323 >                                thisillum.sd = load_BSDF(buf);
324 >                                if (thisillum.sd == NULL)
325 >                                        break;
326 >                        }
327                          cp = sskip(cp);
328                          continue;
329 <                case 's':                       /* point super-samples */
329 >                case 's':                       /* surface super-samples */
330                          if (*++cp != '=')
331                                  break;
332 <                        if (!isintd(++cp, " \t\n"))
332 >                        if (!isintd(++cp, " \t\n\r"))
333                                  break;
334                          thisillum.nsamps = atoi(cp);
335                          cp = sskip(cp);
336                          continue;
337 +                case 'l':                       /* light sources */
338 +                        cp++;
339 +                        if (*cp == '+')
340 +                                thisillum.flags |= IL_LIGHT;
341 +                        else if (*cp == '-')
342 +                                thisillum.flags &= ~IL_LIGHT;
343 +                        else
344 +                                break;
345 +                        cp++;
346 +                        continue;
347 +                case 'b':                       /* brightness */
348 +                        if (*++cp != '=')
349 +                                break;
350 +                        if (!isfltd(++cp, " \t\n\r"))
351 +                                break;
352 +                        thisillum.minbrt = atof(cp);
353 +                        if (thisillum.minbrt < 0.)
354 +                                thisillum.minbrt = 0.;
355 +                        cp = sskip(cp);
356 +                        continue;
357                  case 'o':                       /* output file */
358                          if (*++cp != '=')
359                                  break;
360 <                        if (!*++cp)
360 >                        if (!*++cp || isspace(*cp))
361                                  break;
362                          atos(buf, sizeof(buf), cp);
363                          cp = sskip(cp);
# Line 303 | Line 368 | char   *nm;
368                          }
369                          doneheader = 0;
370                          continue;
371 +                case 'u':                       /* up direction */
372 +                        if (*++cp != '=')
373 +                                break;
374 +                        if (!*++cp || isspace(*cp)) {
375 +                                thisillum.udir = UDunknown;
376 +                                continue;
377 +                        }
378 +                        negax = 0;
379 +                        if (*cp == '+')
380 +                                cp++;
381 +                        else if (*cp == '-') {
382 +                                negax++;
383 +                                cp++;
384 +                        }
385 +                        switch (*cp++) {
386 +                        case 'x':
387 +                        case 'X':
388 +                                thisillum.udir = negax ? UDxneg : UDxpos;
389 +                                break;
390 +                        case 'y':
391 +                        case 'Y':
392 +                                thisillum.udir = negax ? UDyneg : UDypos;
393 +                                break;
394 +                        case 'z':
395 +                        case 'Z':
396 +                                thisillum.udir = negax ? UDzneg : UDzpos;
397 +                                break;
398 +                        default:
399 +                                thisillum.udir = UDunknown;
400 +                                break;
401 +                        }
402 +                        if (thisillum.udir == UDunknown || !isspace(*cp))
403 +                                break;
404 +                        continue;
405 +                case 't':                       /* object thickness */
406 +                        if (*++cp != '=')
407 +                                break;
408 +                        if (!isfltd(++cp, " \t\n\r"))
409 +                                break;
410 +                        thisillum.thick = atof(cp);
411 +                        if (thisillum.thick < .0)
412 +                                thisillum.thick = .0;
413 +                        cp = sskip(cp);
414 +                        continue;
415 +                case '!':                       /* processed file! */
416 +                        sprintf(errmsg, "(%s): already processed!", nm);
417 +                        error(WARNING, errmsg);
418 +                        matselect = S_NONE;
419 +                        return;
420                  }
421          opterr:                                 /* skip faulty option */
422 <                cp = sskip(cp);
422 >                while (*cp && !isspace(*cp))
423 >                        cp++;
424                  nerrs++;
425          }
426                                                  /* print header? */
# Line 320 | Line 435 | char   *nm;
435                                  progname, nerrs);
436          }
437                                                  /* print pure comment */
438 <        putchar('#'); putchar(' '); fputs(s+2, stdout);
438 >        printf("# %s", s+2);
439   }
440  
441 + void
442 + printopts(void)                 /* print out option default values */
443 + {
444 +        printf("m=%-15s\t\t# material name\n", thisillum.matname);
445 +        printf("f=%-15s\t\t# data file name\n", thisillum.datafile);
446 +        if (thisillum.flags & IL_COLAVG)
447 +                if (thisillum.flags & IL_COLDST)
448 +                        printf("c=d\t\t\t\t# color distribution\n");
449 +                else
450 +                        printf("c=a\t\t\t\t# color average\n");
451 +        else
452 +                printf("c=n\t\t\t\t# color none\n");
453 +        if (thisillum.flags & IL_LIGHT)
454 +                printf("l+\t\t\t\t# light type on\n");
455 +        else
456 +                printf("l-\t\t\t\t# light type off\n");
457 +        printf("d=%d\t\t\t\t# density of directions\n", thisillum.sampdens);
458 +        printf("s=%d\t\t\t\t# samples per direction\n", thisillum.nsamps);
459 +        printf("b=%f\t\t\t# minimum average brightness\n", thisillum.minbrt);
460 +        switch (thisillum.udir) {
461 +        case UDzneg:
462 +                fputs("u=-Z\t\t\t\t# up is negative Z\n", stdout);
463 +                break;
464 +        case UDyneg:
465 +                fputs("u=-Y\t\t\t\t# up is negative Y\n", stdout);
466 +                break;
467 +        case UDxneg:
468 +                fputs("u=-X\t\t\t\t# up is negative X\n", stdout);
469 +                break;
470 +        case UDxpos:
471 +                fputs("u=+X\t\t\t\t# up is positive X\n", stdout);
472 +                break;
473 +        case UDypos:
474 +                fputs("u=+Y\t\t\t\t# up is positive Y\n", stdout);
475 +                break;
476 +        case UDzpos:
477 +                fputs("u=+Z\t\t\t\t# up is positive Z\n", stdout);
478 +                break;
479 +        case UDunknown:
480 +                break;
481 +        }
482 +        printf("t=%f\t\t\t# object thickness\n", thisillum.thick);
483 + }
484  
485 < printhead(ac, av)                       /* print out header */
486 < register int  ac;
487 < register char  **av;
485 >
486 > void
487 > printhead(                      /* print out header */
488 >        register int  ac,
489 >        register char  **av
490 > )
491   {
492          putchar('#');
493          while (ac-- > 0) {
494                  putchar(' ');
495                  fputs(*av++, stdout);
496          }
497 <        putchar('\n');
497 >        fputs("\n#@mkillum !\n", stdout);
498   }
499  
500  
501 < xobject(fp, nm)                         /* translate an object from fp */
502 < FILE  *fp;
503 < char  *nm;
501 > void
502 > xobject(                                /* translate an object from fp */
503 >        FILE  *fp,
504 >        char  *nm
505 > )
506   {
507          OBJREC  thisobj;
508          char  str[MAXSTR];
# Line 350 | Line 513 | char  *nm;
513          if (fgetword(str, MAXSTR, fp) == NULL)
514                  goto readerr;
515                                          /* is it an alias? */
516 <        if (!strcmp(str, ALIASID)) {
516 >        if (!strcmp(str, ALIASKEY)) {
517                  if (fgetword(str, MAXSTR, fp) == NULL)
518                          goto readerr;
519 <                printf("\n%s %s %s", thisillum.altmat, ALIASID, str);
519 >                printf("\n%s %s %s", thisillum.altmat, ALIASKEY, str);
520                  if (fgetword(str, MAXSTR, fp) == NULL)
521                          goto readerr;
522 <                printf(" %s\n", str);
522 >                printf("\t%s\n", str);
523                  return;
524          }
525 <        thisobj.omod = OVOID;
525 >        thisobj.omod = OVOID;           /* unused field */
526          if ((thisobj.otype = otype(str)) < 0) {
527                  sprintf(errmsg, "(%s): unknown type \"%s\"", nm, str);
528                  error(USER, errmsg);
# Line 376 | Line 539 | char  *nm;
539                  doit = 0;
540                  break;
541          case S_ALL:
542 <                doit = issurface(thisobj.otype);
542 >                doit = 1;
543                  break;
544          case S_ELEM:
545                  doit = !strcmp(thisillum.altmat, matcheck);
# Line 385 | Line 548 | char  *nm;
548                  doit = strcmp(thisillum.altmat, matcheck);
549                  break;
550          }
551 <        if (doit)                               /* make sure we can do it */
551 >        doit = doit && issurface(thisobj.otype);
552 >                                                /* print header? */
553 >        checkhead();
554 >                                                /* process object */
555 >        if (doit)
556                  switch (thisobj.otype) {
390                case OBJ_SPHERE:
557                  case OBJ_FACE:
558 +                        my_face(&thisobj, &thisillum, nm);
559 +                        break;
560 +                case OBJ_SPHERE:
561 +                        my_sphere(&thisobj, &thisillum, nm);
562 +                        break;
563                  case OBJ_RING:
564 +                        my_ring(&thisobj, &thisillum, nm);
565                          break;
566                  default:
567 <                        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;
567 >                        my_default(&thisobj, &thisillum, nm);
568                          break;
569                  }
403                                                /* print header? */
404        checkhead();
405                                                /* process object */
406        if (doit)
407                mkillum(&thisobj, &thisillum, &rt);
570          else
571                  printobj(thisillum.altmat, &thisobj);
572                                                  /* free arguments */
573          freefargs(&thisobj.oargs);
574          return;
575   readerr:
576 <        sprintf(errmsg, "(%s): error reading scene", nm);
576 >        sprintf(errmsg, "(%s): error reading input", nm);
577          error(USER, errmsg);
578   }
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