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.10 by gregl, Mon Oct 20 16:37:14 1997 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 Regents of the University of California */
1 > /* Copyright (c) 1995 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 10 | Line 10 | static char SCCSid[] = "$SunId$ LBL";
10  
11   #include  "mkillum.h"
12  
13 + #include  <signal.h>
14 +
15   #include  <ctype.h>
16  
17                                  /* default parameters */
18 < #define  SAMPDENS       128             /* points per projected steradian */
18 > #define  SAMPDENS       48              /* points per projected steradian */
19   #define  NSAMPS         32              /* samples per point */
20   #define  DFLMAT         "illum_mat"     /* material name */
21 + #define  DFLDAT         "illum"         /* data file name */
22                                  /* selection options */
23   #define  S_NONE         0               /* select none */
24   #define  S_ELEM         1               /* select specified element */
# Line 23 | Line 26 | static char SCCSid[] = "$SunId$ LBL";
26   #define  S_ALL          3               /* select all */
27  
28                                  /* rtrace command and defaults */
29 < char  *rtargv[64] = { "rtrace", "-dj", ".25", "-dr", "3", "-ab", "2",
30 <                "-ad", "256", "-as", "128", "-aa", ".15" };
31 < int  rtargc = 13;
29 > char  *rtargv[64] = { "rtrace", "-dj", ".25", "-dr", "3", "-dv-",
30 >                "-ab", "2", "-ad", "256", "-as", "128", "-aa", ".15", };
31 > int  rtargc = 14;
32                                  /* overriding rtrace options */
33 < char  *myrtopts[] = { "-I-", "-i-", "-di+", "-ov", "-h-", "-fff", NULL };
33 > char  *myrtopts[] = { "-I-", "-i-", "-ld-", "-ov", "-h-",
34 >                        "-fff", "-y", "0", NULL };
35  
36   struct rtproc   rt;             /* our rtrace process */
37  
38   struct illum_args  thisillum = {        /* our illum and default values */
39                  0,
40                  DFLMAT,
41 <                DFLMAT,
41 >                DFLDAT,
42                  0,
43                  VOIDID,
44 +                SAMPDENS,
45                  NSAMPS,
46 +                0.,
47          };
48  
43 int     sampdens = SAMPDENS;    /* sample point density */
49   char    matcheck[MAXSTR];       /* current material to include or exclude */
50   int     matselect = S_ALL;      /* selection criterion */
51  
# Line 56 | Line 61 | int    doneheader = 0;         /* printed header yet? */
61   int     warnings = 1;           /* print warnings? */
62  
63   extern char     *fgetline(), *fgetword(), *sskip(),
64 <                *atos(), *iskip(), *fskip();
64 >                *atos(), *iskip(), *fskip(), *strcpy();
65   extern FILE     *popen();
66  
67  
# Line 66 | Line 71 | char   *argv[];
71   {
72          extern char     *getenv(), *getpath();
73          char    *rtpath;
74 +        FILE    *fp;
75          register int    i;
76                                  /* set global arguments */
77 <        gargc = argc; gargv = argv;
77 >        gargv = argv;
78                                  /* set up rtrace command */
79 <        if (argc < 2)
80 <                error(USER, "too few arguments");
81 <        for (i = 1; i < argc-1; i++) {
79 >        for (i = 1; i < argc; i++) {
80 >                if (argv[i][0] == '<' && argv[i][1] == '\0')
81 >                        break;
82                  rtargv[rtargc++] = argv[i];
83                  if (argv[i][0] == '-' && argv[i][1] == 'w')
84 <                        warnings = !warnings;
84 >                        switch (argv[i][2]) {
85 >                        case '\0':
86 >                                warnings = !warnings;
87 >                                break;
88 >                        case '+':
89 >                        case 'T': case 't':
90 >                        case 'Y': case 'y':
91 >                        case '1':
92 >                                warnings = 1;
93 >                                break;
94 >                        case '-':
95 >                        case 'F': case 'f':
96 >                        case 'N': case 'n':
97 >                        case '0':
98 >                                warnings = 0;
99 >                                break;
100 >                        }
101          }
102 +        gargc = i;
103 +        rtargc--;
104          for (i = 0; myrtopts[i] != NULL; i++)
105                  rtargv[rtargc++] = myrtopts[i];
106 <        rtargv[rtargc++] = argv[argc-1];
106 >        rtargv[rtargc++] = argv[gargc-1];
107          rtargv[rtargc] = NULL;
108                                  /* just asking for defaults? */
109 <        if (!strcmp(argv[argc-1], "-defaults")) {
109 >        if (!strcmp(argv[gargc-1], "-defaults")) {
110 >                printopts(); fflush(stdout);
111                  rtpath = getpath(rtargv[0], getenv("PATH"), X_OK);
112                  if (rtpath == NULL) {
113                          eputs(rtargv[0]);
# Line 93 | Line 118 | char   *argv[];
118                  perror(rtpath);
119                  exit(1);
120          }
121 +        if (gargc < 2 || argv[gargc-1][0] == '-')
122 +                error(USER, "missing octree argument");
123                                  /* else initialize and run our calculation */
124          init();
125 <        filter(stdin, "standard input");
125 >        if (gargc+1 < argc)
126 >                for (i = gargc+1; i < argc; i++) {
127 >                        if ((fp = fopen(argv[i], "r")) == NULL) {
128 >                                sprintf(errmsg,
129 >                                "cannot open scene file \"%s\"", argv[i]);
130 >                                error(SYSTEM, errmsg);
131 >                        }
132 >                        filter(fp, argv[i]);
133 >                        fclose(fp);
134 >                }
135 >        else
136 >                filter(stdin, "standard input");
137          quit(0);
138   }
139  
140  
141 + quit(status)                    /* exit with status */
142 + int  status;
143 + {
144 +        int     rtstat;
145 +
146 +        rtstat = close_process(rt.pd);
147 +        if (status == 0)
148 +                if (rtstat < 0)
149 +                        error(WARNING,
150 +                        "unknown return status from rtrace process");
151 +                else
152 +                        status = rtstat;
153 +        exit(status);
154 + }
155 +
156 +
157   init()                          /* start rtrace and set up buffers */
158   {
159 +        extern int  o_face(), o_sphere(), o_ring();
160          int     maxbytes;
161 <
161 >                                        /* set up object functions */
162 >        ofun[OBJ_FACE].funp = o_face;
163 >        ofun[OBJ_SPHERE].funp = o_sphere;
164 >        ofun[OBJ_RING].funp = o_ring;
165 >                                        /* set up signal handling */
166 >        signal(SIGPIPE, quit);
167 >                                        /* start rtrace process */
168 >        errno = 0;
169          maxbytes = open_process(rt.pd, rtargv);
170          if (maxbytes == 0) {
171                  eputs(rtargv[0]);
# Line 113 | Line 175 | init()                         /* start rtrace and set up buffers */
175          if (maxbytes < 0)
176                  error(SYSTEM, "cannot start rtrace process");
177          rt.bsiz = maxbytes/(6*sizeof(float));
178 <        rt.buf = (float *)malloc(rt.bsiz*(6*sizeof(float)));
179 <        if (rt.buf == NULL)
178 >        rt.buf = (float *)malloc(6*sizeof(float)*rt.bsiz--);
179 >        rt.dest = (float **)malloc(sizeof(float *)*rt.bsiz);
180 >        if (rt.buf == NULL || rt.dest == NULL)
181                  error(SYSTEM, "out of memory in init");
119        rt.bsiz--;                      /* allow for flush ray */
182          rt.nrays = 0;
183 +                                        /* set up urand */
184 +        initurand(16384);
185   }
186  
187  
124 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
188   eputs(s)                                /* put string to stderr */
189   register char  *s;
190   {
# Line 216 | Line 264 | char   *nm;
264                  case 'm':                       /* material name */
265                          if (*++cp != '=')
266                                  break;
267 <                        if (!*++cp)
267 >                        if (!*++cp || isspace(*cp))
268                                  break;
269                          atos(thisillum.matname, MAXSTR, cp);
270                          cp = sskip(cp);
# Line 228 | Line 276 | char   *nm;
276                  case 'f':                       /* data file name */
277                          if (*++cp != '=')
278                                  break;
279 <                        if (!*++cp) {
279 >                        if (!*++cp || isspace(*cp)) {
280 >                                strcpy(thisillum.datafile,thisillum.matname);
281 >                                thisillum.dfnum = 0;
282                                  thisillum.flags &= ~IL_DATCLB;
283                                  continue;
284                          }
# Line 239 | Line 289 | char   *nm;
289                          continue;
290                  case 'i':                       /* include material */
291                  case 'e':                       /* exclude material */
292 <                        matselect = (*cp == 'i') ? S_ELEM : S_COMPL;
243 <                        if (*++cp != '=')
292 >                        if (cp[1] != '=')
293                                  break;
294 <                        atos(matcheck, MAXSTR, ++cp);
294 >                        matselect = (*cp == 'i') ? S_ELEM : S_COMPL;
295 >                        cp += 2;
296 >                        atos(matcheck, MAXSTR, cp);
297                          cp = sskip(cp);
298                          continue;
299                  case 'a':                       /* use everything */
# Line 258 | Line 309 | char   *nm;
309                                  break;
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;
266 <                                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 278 | Line 328 | char   *nm;
328                                  break;
329                          if (!isintd(++cp, " \t\n"))
330                                  break;
331 <                        sampdens = atoi(cp);
331 >                        thisillum.sampdens = atoi(cp);
332                          cp = sskip(cp);
333                          continue;
334                  case 's':                       /* point super-samples */
# Line 289 | Line 339 | char   *nm;
339                          thisillum.nsamps = atoi(cp);
340                          cp = sskip(cp);
341                          continue;
342 +                case 'l':                       /* light sources */
343 +                        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"))
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)
365 >                        if (!*++cp || isspace(*cp))
366                                  break;
367                          atos(buf, sizeof(buf), cp);
368                          cp = sskip(cp);
# Line 303 | 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? */
# Line 320 | Line 396 | char   *nm;
396                                  progname, nerrs);
397          }
398                                                  /* print pure comment */
399 <        putchar('#'); putchar(' '); fputs(s+2, stdout);
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;
# Line 333 | Line 430 | register char  **av;
430                  putchar(' ');
431                  fputs(*av++, stdout);
432          }
433 <        putchar('\n');
433 >        fputs("\n#@mkillum !\n", stdout);
434   }
435  
436  
# Line 356 | Line 453 | char  *nm;
453                  printf("\n%s %s %s", thisillum.altmat, ALIASID, str);
454                  if (fgetword(str, MAXSTR, fp) == NULL)
455                          goto readerr;
456 <                printf(" %s\n", str);
456 >                printf("\t%s\n", str);
457                  return;
458          }
459 <        thisobj.omod = OVOID;
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);
# Line 376 | Line 473 | char  *nm;
473                  doit = 0;
474                  break;
475          case S_ALL:
476 <                doit = issurface(thisobj.otype);
476 >                doit = 1;
477                  break;
478          case S_ELEM:
479                  doit = !strcmp(thisillum.altmat, matcheck);
# Line 385 | Line 482 | char  *nm;
482                  doit = strcmp(thisillum.altmat, matcheck);
483                  break;
484          }
485 <        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 <                }
485 >        doit = doit && issurface(thisobj.otype);
486                                                  /* print header? */
487          checkhead();
488                                                  /* process object */
489          if (doit)
490 <                mkillum(&thisobj, &thisillum, &rt);
490 >                (*ofun[thisobj.otype].funp)(&thisobj, &thisillum, &rt, nm);
491          else
492                  printobj(thisillum.altmat, &thisobj);
493                                                  /* free arguments */
# Line 414 | Line 497 | readerr:
497          sprintf(errmsg, "(%s): error reading scene", nm);
498          error(USER, errmsg);
499   }
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