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.1 by greg, Tue Jul 23 12:00:29 1991 UTC vs.
Revision 2.17 by greg, Wed Sep 24 14:55:54 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  "standard.h"
8 > #include  <signal.h>
9 > #include  <ctype.h>
10  
11 < #include  "object.h"
11 > #include  "mkillum.h"
12 > #include  "platform.h"
13  
15 #include  "otypes.h"
16
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 25 | 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", "1024", "-as", "512", "-aa", ".1", };
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 <                                /* illum flags */
35 < #define  IL_FLAT        0x1             /* flat surface */
36 < #define  IL_LIGHT       0x2             /* light rather than illum */
37 < #define  IL_COLDST      0x4             /* colored distribution */
38 < #define  IL_COLAVG      0x8             /* compute average color */
39 < #define  IL_DATCLB      0x10            /* OK to clobber data file */
33 > struct rtproc   rt;             /* our rtrace process */
34  
35 < struct illum_args {
36 <        int     flags;                  /* flags from list above */
37 <        char    matname[MAXSTR];        /* illum material name */
38 <        char    datafile[MAXSTR];       /* distribution data file name */
39 <        int     dfnum;                  /* data file number */
40 <        char    altmatname[MAXSTR];     /* alternate material name */
41 <        int     nsamps;                 /* # of samples in each direction */
42 <        int     nalt, nazi;             /* # of altitude and azimuth angles */
43 <        FVECT   orient;                 /* coordinate system orientation */
44 < } thisillum = {                 /* default values */
51 <        0,
52 <        DFLMAT,
53 <        DFLMAT,
54 <        0,
55 <        VOIDID,
56 <        NSAMPS,
57 < };
35 > struct illum_args  thisillum = {        /* our illum and default values */
36 >                0,
37 >                DFLMAT,
38 >                DFLDAT,
39 >                0,
40 >                VOIDID,
41 >                SAMPDENS,
42 >                NSAMPS,
43 >                0.,
44 >        };
45  
59 int     sampdens = SAMPDENS;    /* sample point density */
46   char    matcheck[MAXSTR];       /* current material to include or exclude */
47   int     matselect = S_ALL;      /* selection criterion */
48  
49 < int     rt_pd[3];               /* rtrace pipe descriptors */
64 < float   *rt_buf;                /* rtrace i/o buffer */
65 < int     rt_bsiz;                /* maximum rays for rtrace buffer */
66 < int     rt_nrays;               /* current length of rtrace buffer */
49 > FUN     ofun[NUMOTYPE] = INIT_OTYPE;    /* object types */
50  
51   int     gargc;                  /* global argc */
52   char    **gargv;                /* global argv */
53   #define  progname       gargv[0]
54  
55   int     doneheader = 0;         /* printed header yet? */
56 + #define  checkhead()    if (!doneheader++) printhead(gargc,gargv)
57  
58 < extern char     *fgetline(), *fgetword(), *sskip(),
75 <                *atos(), *iskip(), *fskip();
76 < extern FILE     *popen();
58 > int     warnings = 1;           /* print warnings? */
59  
60  
61   main(argc, argv)                /* compute illum distributions using rtrace */
62   int     argc;
63   char    *argv[];
64   {
83        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 +                        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 106 | 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 <        mkillum(stdin, "standard input");
118 <        exit(cleanup());        /* cleanup returns rtrace status */
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 +        }
147 +        exit(status);
148 + }
149 +
150 +
151   init()                          /* start rtrace and set up buffers */
152   {
153 +        extern int  o_face(), o_sphere(), o_ring();
154          int     maxbytes;
155 <
156 <        maxbytes = open_process(rt_pd, rtargv);
155 >                                        /* set up object functions */
156 >        ofun[OBJ_FACE].funp = o_face;
157 >        ofun[OBJ_SPHERE].funp = o_sphere;
158 >        ofun[OBJ_RING].funp = o_ring;
159 >                                        /* set up signal handling */
160 > #ifdef SIGPIPE /* not present on Windows */
161 >        signal(SIGPIPE, quit);
162 > #endif
163 >                                        /* start rtrace process */
164 >        errno = 0;
165 >        maxbytes = open_process(&(rt.pd), rtargv);
166          if (maxbytes == 0) {
167                  eputs(rtargv[0]);
168                  eputs(": command not found\n");
# Line 125 | Line 170 | init()                         /* start rtrace and set up buffers */
170          }
171          if (maxbytes < 0)
172                  error(SYSTEM, "cannot start rtrace process");
173 <        rt_bsiz = maxbytes/(6*sizeof(float));
174 <        rt_buf = (float *)malloc(rt_bsiz*(6*sizeof(float)));
175 <        if (rt_buf == NULL)
173 >        rt.bsiz = maxbytes/(6*sizeof(float));
174 >        rt.buf = (float *)malloc(6*sizeof(float)*rt.bsiz--);
175 >        rt.dest = (float **)malloc(sizeof(float *)*rt.bsiz);
176 >        if (rt.buf == NULL || rt.dest == NULL)
177                  error(SYSTEM, "out of memory in init");
178 <        rt_bsiz--;                      /* allow for flush ray */
179 <        rt_nrays = 0;
178 >        rt.nrays = 0;
179 >                                        /* set up urand */
180 >        initurand(16384);
181   }
182  
183  
184 < int
138 < cleanup()                       /* close rtrace process and return status */
139 < {
140 <        int     status;
141 <
142 <        free((char *)rt_buf);
143 <        rt_bsiz = 0;
144 <        status = close_process(rt_pd);
145 <        if (status < 0)
146 <                return(0);              /* unknown status */
147 <        return(status);
148 < }
149 <
150 <
184 > void
185   eputs(s)                                /* put string to stderr */
186   register char  *s;
187   {
# Line 163 | Line 197 | register char  *s;
197   }
198  
199  
200 < mkillum(infp, name)             /* process stream */
200 > void
201 > wputs(s)                        /* print warning if enabled */
202 > char  *s;
203 > {
204 >        if (warnings)
205 >                eputs(s);
206 > }
207 >
208 >
209 > filter(infp, name)              /* process stream */
210   register FILE   *infp;
211   char    *name;
212   {
# Line 177 | Line 220 | char   *name;
220                  if (c == '#') {                         /* comment/options */
221                          buf[0] = c;
222                          fgets(buf+1, sizeof(buf)-1, infp);
223 <                        fputs(buf, stdout);
181 <                        getoptions(buf, name);
223 >                        xoptions(buf, name);
224                  } else if (c == '!') {                  /* command */
225                          buf[0] = c;
226                          fgetline(buf+1, sizeof(buf)-1, infp);
# Line 186 | Line 228 | char   *name;
228                                  sprintf(errmsg, "cannot execute \"%s\"", buf);
229                                  error(SYSTEM, errmsg);
230                          }
231 <                        mkillum(pfp, buf);
231 >                        filter(pfp, buf);
232                          pclose(pfp);
233                  } else {                                /* object */
234                          ungetc(c, infp);
# Line 196 | Line 238 | char   *name;
238   }
239  
240  
241 < getoptions(s, nm)               /* get options from string s */
241 > xoptions(s, nm)                 /* process options in string s */
242   char    *s;
243   char    *nm;
244   {
# Line 205 | Line 247 | char   *nm;
247          int     nerrs = 0;
248          register char   *cp;
249  
250 <        if (strncmp(s, "#@mkillum", 9) || !isspace(s[9]))
250 >        if (strncmp(s, "#@mkillum", 9) || !isspace(s[9])) {
251 >                fputs(s, stdout);               /* not for us */
252                  return;
253 +        }
254          cp = s+10;
255          while (*cp) {
256                  switch (*cp) {
257                  case ' ':
258                  case '\t':
259                  case '\n':
260 +                case '\r':
261 +                case '\f':
262                          cp++;
263                          continue;
264                  case 'm':                       /* material name */
265 <                        cp++;
220 <                        if (*cp != '=')
265 >                        if (*++cp != '=')
266                                  break;
267 <                        cp++;
267 >                        if (!*++cp || isspace(*cp))
268 >                                break;
269                          atos(thisillum.matname, MAXSTR, cp);
270                          cp = sskip(cp);
271                          if (!(thisillum.flags & IL_DATCLB)) {
# Line 228 | Line 274 | char   *nm;
274                          }
275                          continue;
276                  case 'f':                       /* data file name */
277 <                        cp++;
232 <                        if (*cp != '=')
277 >                        if (*++cp != '=')
278                                  break;
279 <                        cp++;
280 <                        if (*cp == '\0') {
279 >                        if (!*++cp || isspace(*cp)) {
280 >                                strcpy(thisillum.datafile,thisillum.matname);
281 >                                thisillum.dfnum = 0;
282                                  thisillum.flags &= ~IL_DATCLB;
283                                  continue;
284                          }
# Line 243 | Line 289 | char   *nm;
289                          continue;
290                  case 'i':                       /* include material */
291                  case 'e':                       /* exclude material */
292 <                        matselect = (*cp++ == 'i') ? S_ELEM : S_COMPL;
247 <                        if (*cp != '=')
292 >                        if (cp[1] != '=')
293                                  break;
294 <                        cp++;
294 >                        matselect = (*cp == 'i') ? S_ELEM : S_COMPL;
295 >                        cp += 2;
296                          atos(matcheck, MAXSTR, cp);
297                          cp = sskip(cp);
298                          continue;
# Line 259 | Line 305 | char   *nm;
305                          matselect = S_NONE;
306                          continue;
307                  case 'c':                       /* color calculation */
308 <                        cp++;
263 <                        if (*cp != '=')
308 >                        if (*++cp != '=')
309                                  break;
310 <                        cp++;
266 <                        switch (*cp) {
310 >                        switch (*++cp) {
311                          case 'a':                       /* average */
312 <                                thisillum.flags |= IL_COLAVG;
313 <                                thisillum.flags &= ~IL_COLDST;
312 >                                thisillum.flags = (thisillum.flags|IL_COLAVG)
313 >                                                        & ~IL_COLDST;
314                                  break;
315                          case 'd':                       /* distribution */
316 <                                thisillum.flags |= IL_COLDST;
273 <                                thisillum.flags &= ~IL_COLAVG;
316 >                                thisillum.flags |= (IL_COLDST|IL_COLAVG);
317                                  break;
318                          case 'n':                       /* none */
319                                  thisillum.flags &= ~(IL_COLAVG|IL_COLDST);
# Line 281 | Line 324 | char   *nm;
324                          cp = sskip(cp);
325                          continue;
326                  case 'd':                       /* point sample density */
327 <                        cp++;
285 <                        if (*cp != '=')
327 >                        if (*++cp != '=')
328                                  break;
329 <                        cp++;
288 <                        if (!isintd(cp, " \t\n"))
329 >                        if (!isintd(++cp, " \t\n\r"))
330                                  break;
331 <                        sampdens = atoi(cp);
331 >                        thisillum.sampdens = atoi(cp);
332                          cp = sskip(cp);
333                          continue;
334                  case 's':                       /* point super-samples */
335 <                        cp++;
295 <                        if (*cp != '=')
335 >                        if (*++cp != '=')
336                                  break;
337 <                        cp++;
298 <                        if (!isintd(cp, " \t\n"))
337 >                        if (!isintd(++cp, " \t\n\r"))
338                                  break;
339                          thisillum.nsamps = atoi(cp);
340                          cp = sskip(cp);
341                          continue;
342 <                case 'o':                       /* output file */
342 >                case 'l':                       /* light sources */
343                          cp++;
344 <                        if (*cp != '=')
344 >                        if (*cp == '+')
345 >                                thisillum.flags |= IL_LIGHT;
346 >                        else if (*cp == '-')
347 >                                thisillum.flags &= ~IL_LIGHT;
348 >                        else
349                                  break;
350                          cp++;
351 +                        continue;
352 +                case 'b':                       /* brightness */
353 +                        if (*++cp != '=')
354 +                                break;
355 +                        if (!isfltd(++cp, " \t\n\r"))
356 +                                break;
357 +                        thisillum.minbrt = atof(cp);
358 +                        if (thisillum.minbrt < 0.)
359 +                                thisillum.minbrt = 0.;
360 +                        cp = sskip(cp);
361 +                        continue;
362 +                case 'o':                       /* output file */
363 +                        if (*++cp != '=')
364 +                                break;
365 +                        if (!*++cp || isspace(*cp))
366 +                                break;
367                          atos(buf, sizeof(buf), cp);
368                          cp = sskip(cp);
369                          if (freopen(buf, "w", stdout) == NULL) {
# Line 314 | Line 373 | char   *nm;
373                          }
374                          doneheader = 0;
375                          continue;
376 +                case '!':                       /* processed file! */
377 +                        sprintf(errmsg, "(%s): already processed!", nm);
378 +                        error(WARNING, errmsg);
379 +                        matselect = S_NONE;
380 +                        return;
381                  }
382          opterr:                                 /* skip faulty option */
383 <                cp = sskip(cp);
383 >                while (*cp && !isspace(*cp))
384 >                        cp++;
385                  nerrs++;
386          }
387 +                                                /* print header? */
388 +        checkhead();
389 +                                                /* issue warnings? */
390          if (nerrs) {
391                  sprintf(errmsg, "(%s): %d error(s) in option line:",
392                                  nm, nerrs);
393                  error(WARNING, errmsg);
394 <                eputs(s);
394 >                wputs(s);
395 >                printf("# %s: the following option line has %d error(s):\n",
396 >                                progname, nerrs);
397          }
398 +                                                /* print pure comment */
399 +        printf("# %s", s+2);
400 + }
401 +
402 +
403 + printopts()                     /* print out option default values */
404 + {
405 +        printf("m=%-15s\t\t# material name\n", thisillum.matname);
406 +        printf("f=%-15s\t\t# data file name\n", thisillum.datafile);
407 +        if (thisillum.flags & IL_COLAVG)
408 +                if (thisillum.flags & IL_COLDST)
409 +                        printf("c=d\t\t\t\t# color distribution\n");
410 +                else
411 +                        printf("c=a\t\t\t\t# color average\n");
412 +        else
413 +                printf("c=n\t\t\t\t# color none\n");
414 +        if (thisillum.flags & IL_LIGHT)
415 +                printf("l+\t\t\t\t# light type on\n");
416 +        else
417 +                printf("l-\t\t\t\t# light type off\n");
418 +        printf("d=%d\t\t\t\t# density of points\n", thisillum.sampdens);
419 +        printf("s=%d\t\t\t\t# samples per point\n", thisillum.nsamps);
420 +        printf("b=%f\t\t\t# minimum average brightness\n", thisillum.minbrt);
421 + }
422 +
423 +
424 + printhead(ac, av)                       /* print out header */
425 + register int  ac;
426 + register char  **av;
427 + {
428 +        putchar('#');
429 +        while (ac-- > 0) {
430 +                putchar(' ');
431 +                fputs(*av++, stdout);
432 +        }
433 +        fputs("\n#@mkillum !\n", stdout);
434 + }
435 +
436 +
437 + xobject(fp, nm)                         /* translate an object from fp */
438 + FILE  *fp;
439 + char  *nm;
440 + {
441 +        OBJREC  thisobj;
442 +        char  str[MAXSTR];
443 +        int  doit;
444 +                                        /* read the object */
445 +        if (fgetword(thisillum.altmat, MAXSTR, fp) == NULL)
446 +                goto readerr;
447 +        if (fgetword(str, MAXSTR, fp) == NULL)
448 +                goto readerr;
449 +                                        /* is it an alias? */
450 +        if (!strcmp(str, ALIASKEY)) {
451 +                if (fgetword(str, MAXSTR, fp) == NULL)
452 +                        goto readerr;
453 +                printf("\n%s %s %s", thisillum.altmat, ALIASKEY, str);
454 +                if (fgetword(str, MAXSTR, fp) == NULL)
455 +                        goto readerr;
456 +                printf("\t%s\n", str);
457 +                return;
458 +        }
459 +        thisobj.omod = OVOID;           /* unused field */
460 +        if ((thisobj.otype = otype(str)) < 0) {
461 +                sprintf(errmsg, "(%s): unknown type \"%s\"", nm, str);
462 +                error(USER, errmsg);
463 +        }
464 +        if (fgetword(str, MAXSTR, fp) == NULL)
465 +                goto readerr;
466 +        thisobj.oname = str;
467 +        if (readfargs(&thisobj.oargs, fp) != 1)
468 +                goto readerr;
469 +        thisobj.os = NULL;
470 +                                        /* check for translation */
471 +        switch (matselect) {
472 +        case S_NONE:
473 +                doit = 0;
474 +                break;
475 +        case S_ALL:
476 +                doit = 1;
477 +                break;
478 +        case S_ELEM:
479 +                doit = !strcmp(thisillum.altmat, matcheck);
480 +                break;
481 +        case S_COMPL:
482 +                doit = strcmp(thisillum.altmat, matcheck);
483 +                break;
484 +        }
485 +        doit = doit && issurface(thisobj.otype);
486 +                                                /* print header? */
487 +        checkhead();
488 +                                                /* process object */
489 +        if (doit)
490 +                (*ofun[thisobj.otype].funp)(&thisobj, &thisillum, &rt, nm);
491 +        else
492 +                printobj(thisillum.altmat, &thisobj);
493 +                                                /* free arguments */
494 +        freefargs(&thisobj.oargs);
495 +        return;
496 + readerr:
497 +        sprintf(errmsg, "(%s): error reading scene", nm);
498 +        error(USER, errmsg);
499   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines