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 2.8 by greg, Tue Oct 17 20:34:55 1995 UTC vs.
Revision 2.47 by greg, Wed Apr 23 02:35:26 2025 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1995 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  
11 #include  "mkillum.h"
12
8   #include  <signal.h>
14
9   #include  <ctype.h>
10  
11 + #include  "paths.h"             /* win_popen() */
12 + #include  "mkillum.h"
13 + #include  "func.h"
14 +
15                                  /* default parameters */
16   #define  SAMPDENS       48              /* points per projected steradian */
17   #define  NSAMPS         32              /* samples per point */
# Line 25 | Line 23 | static char SCCSid[] = "$SunId$ LBL";
23   #define  S_COMPL        2               /* select all but element */
24   #define  S_ALL          3               /* select all */
25  
28                                /* rtrace command and defaults */
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-", "-ov", "-h-", "-fff", "-y", "0", NULL };
34
35 struct rtproc   rt;             /* our rtrace process */
36
26   struct illum_args  thisillum = {        /* our illum and default values */
27                  0,
28                  DFLMAT,
# Line 48 | Line 37 | struct illum_args  thisillum = {       /* our illum and defa
37   char    matcheck[MAXSTR];       /* current material to include or exclude */
38   int     matselect = S_ALL;      /* selection criterion */
39  
51 FUN     ofun[NUMOTYPE] = INIT_OTYPE;    /* object types */
52
40   int     gargc;                  /* global argc */
41   char    **gargv;                /* global argv */
55 #define  progname       gargv[0]
42  
43   int     doneheader = 0;         /* printed header yet? */
44   #define  checkhead()    if (!doneheader++) printhead(gargc,gargv)
45  
46   int     warnings = 1;           /* print warnings? */
47  
48 < extern char     *fgetline(), *fgetword(), *sskip(),
49 <                *atos(), *iskip(), *fskip(), *strcpy();
50 < extern FILE     *popen();
48 > void init(char *octnm, int np);
49 > void filter(FILE        *infp, char     *name);
50 > void xoptions(char      *s, char        *nm);
51 > void printopts(void);
52 > void printhead(int  ac, char  **av);
53 > void xobject(FILE  *fp, char  *nm);
54  
55  
56 < main(argc, argv)                /* compute illum distributions using rtrace */
57 < int     argc;
58 < char    *argv[];
56 > int
57 > main(           /* compute illum distributions using rtrace */
58 >        int     argc,
59 >        char    *argv[]
60 > )
61   {
62 <        extern char     *getenv(), *getpath();
72 <        char    *rtpath;
62 >        int     nprocs = 1;
63          FILE    *fp;
64 <        register int    i;
64 >        int     rval;
65 >        int     i;
66                                  /* set global arguments */
67          gargv = argv;
68 <                                /* set up rtrace command */
68 >        progname = gargv[0];
69 >                                /* set up rendering defaults */
70 >        dstrsrc = 0.5;
71 >        directrelay = 3;
72 >        ambounce = 2;
73 >                                /* initialize calcomp routines */
74 >        initfunc();
75 >                                /* get options from command line */
76          for (i = 1; i < argc; i++) {
77 <                if (argv[i][0] == '<' && argv[i][1] == '\0')
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 >                if (argv[i][0] != '-')
84                          break;
85 <                rtargv[rtargc++] = argv[i];
86 <                if (argv[i][0] == '-' && argv[i][1] == 'w')
87 <                        switch (argv[i][2]) {
84 <                        case '\0':
85 <                                warnings = !warnings;
86 <                                break;
87 <                        case '+':
88 <                        case 'T': case 't':
89 <                        case 'Y': case 'y':
90 <                        case '1':
91 <                                warnings = 1;
92 <                                break;
93 <                        case '-':
94 <                        case 'F': case 'f':
95 <                        case 'N': case 'n':
96 <                        case '0':
97 <                                warnings = 0;
98 <                                break;
99 <                        }
100 <        }
101 <        gargc = i;
102 <        rtargc--;
103 <        for (i = 0; myrtopts[i] != NULL; i++)
104 <                rtargv[rtargc++] = myrtopts[i];
105 <        rtargv[rtargc++] = argv[gargc-1];
106 <        rtargv[rtargc] = NULL;
107 <                                /* just asking for defaults? */
108 <        if (!strcmp(argv[gargc-1], "-defaults")) {
109 <                printopts(); fflush(stdout);
110 <                rtpath = getpath(rtargv[0], getenv("PATH"), X_OK);
111 <                if (rtpath == NULL) {
112 <                        eputs(rtargv[0]);
113 <                        eputs(": command not found\n");
114 <                        exit(1);
85 >                if (!strcmp(argv[i], "-w")) {
86 >                        warnings = 0;
87 >                        continue;
88                  }
89 <                execv(rtpath, rtargv);
90 <                perror(rtpath);
91 <                exit(1);
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 <        if (gargc < 2 || argv[gargc-1][0] == '-')
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 <        if (gargc+1 < argc)
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,
# Line 131 | Line 123 | char   *argv[];
123                          filter(fp, argv[i]);
124                          fclose(fp);
125                  }
126 <        else
126 >        } else
127                  filter(stdin, "standard input");
128          quit(0);
129 +        return 0; /* pro forma return */
130   }
131  
132  
133 < quit(status)                    /* exit with status */
134 < int  status;
133 > void
134 > init(char *octnm, int np)               /* start rendering process(es) */
135   {
143        int     rtstat;
144
145        rtstat = close_process(rt.pd);
146        if (status == 0)
147                if (rtstat < 0)
148                        error(WARNING,
149                        "unknown return status from rtrace process");
150                else
151                        status = rtstat;
152        exit(status);
153 }
154
155
156 init()                          /* start rtrace and set up buffers */
157 {
158        extern int  o_face(), o_sphere(), o_ring();
159        int     maxbytes;
160                                        /* set up object functions */
161        ofun[OBJ_FACE].funp = o_face;
162        ofun[OBJ_SPHERE].funp = o_sphere;
163        ofun[OBJ_RING].funp = o_ring;
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 <                                        /* start rtrace process */
147 <        errno = 0;
148 <        maxbytes = open_process(rt.pd, rtargv);
169 <        if (maxbytes == 0) {
170 <                eputs(rtargv[0]);
171 <                eputs(": command not found\n");
172 <                exit(1);
173 <        }
174 <        if (maxbytes < 0)
175 <                error(SYSTEM, "cannot start rtrace process");
176 <        rt.bsiz = maxbytes/(6*sizeof(float));
177 <        rt.buf = (float *)malloc(6*sizeof(float)*rt.bsiz--);
178 <        rt.dest = (float **)malloc(sizeof(float *)*rt.bsiz);
179 <        if (rt.buf == NULL || rt.dest == NULL)
180 <                error(SYSTEM, "out of memory in init");
181 <        rt.nrays = 0;
182 <                                        /* set up urand */
183 <        initurand(16384);
146 > #endif
147 >                                        /* start rendering process(es) */
148 >        ray_pinit(octnm, np);
149   }
150  
151  
152 < eputs(s)                                /* put string to stderr */
153 < register char  *s;
152 > void
153 > eputs(                          /* put string to stderr */
154 >        const char  *s
155 > )
156   {
157          static int  midline = 0;
158  
# Line 199 | Line 166 | register char  *s;
166   }
167  
168  
169 < wputs(s)                        /* print warning if enabled */
170 < char  *s;
169 > void
170 > wputs(const char *s)                    /* print warning if enabled */
171   {
172          if (warnings)
173                  eputs(s);
174   }
175  
176  
177 < filter(infp, name)              /* process stream */
178 < register FILE   *infp;
212 < char    *name;
177 > void
178 > quit(int ec)                    /* make sure exit is called */
179   {
180 +        if (ray_pnprocs > 0)    /* close children if any */
181 +                ray_pclose(0);
182 +        else if (ray_pnprocs < 0)
183 +                _exit(ec);      /* avoid flush() in child */
184 +        exit(ec);
185 + }
186 +
187 +
188 + void
189 + filter(         /* process stream */
190 +        FILE    *infp,
191 +        char    *name
192 + )
193 + {
194          char    buf[512];
195          FILE    *pfp;
196 <        register int    c;
196 >        int     c;
197  
198          while ((c = getc(infp)) != EOF) {
199                  if (isspace(c))
# Line 230 | Line 210 | char   *name;
210                                  error(SYSTEM, errmsg);
211                          }
212                          filter(pfp, buf);
213 <                        pclose(pfp);
213 >                        if (pclose(pfp) != 0) {
214 >                                sprintf(errmsg, "bad status from \"%s\"", buf);
215 >                                error(WARNING, errmsg);
216 >                        }
217                  } else {                                /* object */
218                          ungetc(c, infp);
219                          xobject(infp, name);
# Line 239 | Line 222 | char   *name;
222   }
223  
224  
225 < xoptions(s, nm)                 /* process options in string s */
226 < char    *s;
227 < char    *nm;
225 > void
226 > xoptions(                       /* process options in string s */
227 >        char    *s,
228 >        char    *nm
229 > )
230   {
246        extern FILE     *freopen();
231          char    buf[64];
232 +        int     negax;
233          int     nerrs = 0;
234 <        register char   *cp;
234 >        char    *cp;
235  
236          if (strncmp(s, "#@mkillum", 9) || !isspace(s[9])) {
237                  fputs(s, stdout);               /* not for us */
# Line 258 | Line 243 | char   *nm;
243                  case ' ':
244                  case '\t':
245                  case '\n':
246 +                case '\r':
247 +                case '\f':
248                          cp++;
249                          continue;
250                  case 'm':                       /* material name */
# Line 322 | Line 309 | char   *nm;
309                          }
310                          cp = sskip(cp);
311                          continue;
312 <                case 'd':                       /* point sample density */
312 >                case 'd':                       /* sample density */
313                          if (*++cp != '=')
314                                  break;
315 <                        if (!isintd(++cp, " \t\n"))
316 <                                break;
317 <                        thisillum.sampdens = atoi(cp);
315 >                        if (!*++cp || isspace(*cp))
316 >                                continue;
317 >                        if (isintd(cp, " \t\n\r")) {
318 >                                thisillum.sampdens = atoi(cp);
319 >                        } else {
320 >                                error(WARNING, "direct BSDF input unsupported");
321 >                                goto opterr;
322 >                        }
323                          cp = sskip(cp);
324                          continue;
325 <                case 's':                       /* point super-samples */
325 >                case 's':                       /* surface super-samples */
326                          if (*++cp != '=')
327                                  break;
328 <                        if (!isintd(++cp, " \t\n"))
328 >                        if (!isintd(++cp, " \t\n\r"))
329                                  break;
330                          thisillum.nsamps = atoi(cp);
331                          cp = sskip(cp);
# Line 351 | Line 343 | char   *nm;
343                  case 'b':                       /* brightness */
344                          if (*++cp != '=')
345                                  break;
346 <                        if (!isfltd(++cp, " \t\n"))
346 >                        if (!isfltd(++cp, " \t\n\r"))
347                                  break;
348                          thisillum.minbrt = atof(cp);
349                          if (thisillum.minbrt < 0.)
# Line 379 | Line 371 | char   *nm;
371                          return;
372                  }
373          opterr:                                 /* skip faulty option */
374 <                cp = sskip(cp);
374 >                while (*cp && !isspace(*cp))
375 >                        cp++;
376                  nerrs++;
377          }
378                                                  /* print header? */
# Line 397 | Line 390 | char   *nm;
390          printf("# %s", s+2);
391   }
392  
393 <
394 < printopts()                     /* print out option default values */
393 > void
394 > printopts(void)                 /* print out option default values */
395   {
396          printf("m=%-15s\t\t# material name\n", thisillum.matname);
397          printf("f=%-15s\t\t# data file name\n", thisillum.datafile);
# Line 413 | Line 406 | printopts()                    /* print out option default values */
406                  printf("l+\t\t\t\t# light type on\n");
407          else
408                  printf("l-\t\t\t\t# light type off\n");
409 <        printf("d=%d\t\t\t\t# density of points\n", thisillum.sampdens);
410 <        printf("s=%d\t\t\t\t# samples per point\n", thisillum.nsamps);
409 >        printf("d=%d\t\t\t\t# density of directions\n", thisillum.sampdens);
410 >        printf("s=%d\t\t\t\t# samples per direction\n", thisillum.nsamps);
411          printf("b=%f\t\t\t# minimum average brightness\n", thisillum.minbrt);
412   }
413  
414  
415 < printhead(ac, av)                       /* print out header */
416 < register int  ac;
417 < register char  **av;
415 > void
416 > printhead(                      /* print out header */
417 >        int  ac,
418 >        char  **av
419 > )
420   {
421          putchar('#');
422          while (ac-- > 0) {
# Line 432 | Line 427 | register char  **av;
427   }
428  
429  
430 < xobject(fp, nm)                         /* translate an object from fp */
431 < FILE  *fp;
432 < char  *nm;
430 > void
431 > xobject(                                /* translate an object from fp */
432 >        FILE  *fp,
433 >        char  *nm
434 > )
435   {
436          OBJREC  thisobj;
437          char  str[MAXSTR];
# Line 445 | Line 442 | char  *nm;
442          if (fgetword(str, MAXSTR, fp) == NULL)
443                  goto readerr;
444                                          /* is it an alias? */
445 <        if (!strcmp(str, ALIASID)) {
445 >        if (!strcmp(str, ALIASKEY)) {
446                  if (fgetword(str, MAXSTR, fp) == NULL)
447                          goto readerr;
448 <                printf("\n%s %s %s", thisillum.altmat, ALIASID, str);
448 >                printf("\n%s %s %s", thisillum.altmat, ALIASKEY, str);
449                  if (fgetword(str, MAXSTR, fp) == NULL)
450                          goto readerr;
451                  printf("\t%s\n", str);
# Line 485 | Line 482 | char  *nm;
482          checkhead();
483                                                  /* process object */
484          if (doit)
485 <                (*ofun[thisobj.otype].funp)(&thisobj, &thisillum, &rt, nm);
485 >                switch (thisobj.otype) {
486 >                case OBJ_FACE:
487 >                        my_face(&thisobj, &thisillum, nm);
488 >                        break;
489 >                case OBJ_SPHERE:
490 >                        my_sphere(&thisobj, &thisillum, nm);
491 >                        break;
492 >                case OBJ_RING:
493 >                        my_ring(&thisobj, &thisillum, nm);
494 >                        break;
495 >                default:
496 >                        my_default(&thisobj, &thisillum, nm);
497 >                        break;
498 >                }
499          else
500                  printobj(thisillum.altmat, &thisobj);
501                                                  /* free arguments */
502          freefargs(&thisobj.oargs);
503          return;
504   readerr:
505 <        sprintf(errmsg, "(%s): error reading scene", nm);
505 >        sprintf(errmsg, "(%s): error reading input", nm);
506          error(USER, errmsg);
507   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines