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.24 by greg, Wed May 25 04:44:25 2005 UTC vs.
Revision 2.39 by greg, Sat Oct 13 20:15:43 2012 UTC

# Line 8 | Line 8 | static const char RCSid[] = "$Id$";
8   #include  <signal.h>
9   #include  <ctype.h>
10  
11 < #include  "platform.h"
11 > #include  "rtprocess.h" /* win_popen() */
12   #include  "mkillum.h"
13 #include  "random.h"
13  
14                                  /* default parameters */
15   #define  SAMPDENS       48              /* points per projected steradian */
# Line 23 | Line 22 | static const char RCSid[] = "$Id$";
22   #define  S_COMPL        2               /* select all but element */
23   #define  S_ALL          3               /* select all */
24  
26                                /* rtrace command and defaults */
27 char  *rtargv[64] = { "rtrace", "-dj", ".25", "-dr", "3", "-dv-",
28                "-ab", "2", "-ad", "1024", "-as", "512", "-aa", ".1", };
29 int  rtargc = 14;
30                                /* overriding rtrace options */
31 char  *myrtopts[] = { "-I-", "-i-", "-ld-", "-ov", "-h-",
32                        "-fff", "-y", "0", NULL };
33
34 struct rtproc   rt0;            /* head of rtrace process list */
35
25   struct illum_args  thisillum = {        /* our illum and default values */
26                  0,
27 +                0.,
28                  DFLMAT,
29                  DFLDAT,
30                  0,
# Line 47 | 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  
50 FUN     ofun[NUMOTYPE] = INIT_OTYPE;    /* object types */
51
52 char    persistfn[] = "pfXXXXXX";       /* persist file name */
53
40   int     gargc;                  /* global argc */
41   char    **gargv;                /* global argv */
56 #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 < int done_rprocs(struct rtproc *rtp);
64 < void init(int np);
48 > void init(char *octnm, int np);
49   void filter(register FILE       *infp, char     *name);
50   void xoptions(char      *s, char        *nm);
51   void printopts(void);
# Line 76 | Line 60 | main(          /* compute illum distributions using rtrace */
60   )
61   {
62          int     nprocs = 1;
79        char    *rtpath;
63          FILE    *fp;
64 +        int     rval;
65          register int    i;
66                                  /* set global arguments */
67          gargv = argv;
68 <                                /* check for -n option */
69 <        if (!strcmp(argv[1], "-n")) {
70 <                nprocs = atoi(argv[2]);
71 <                if (nprocs <= 0)
72 <                        error(USER, "illegal number of processes");
73 <                i = 3;
74 <        } else
75 <                i = 1;
76 <                                /* set up rtrace command */
77 <        for ( ; i < argc; i++) {
78 <                if (argv[i][0] == '<' && argv[i][1] == '\0')
68 >        progname = gargv[0];
69 >                                /* set up rendering defaults */
70 >        dstrsrc = 0.5;
71 >        directrelay = 3;
72 >        ambounce = 2;
73 >                                /* get options from command line */
74 >        for (i = 1; i < argc; i++) {
75 >                while ((rval = expandarg(&argc, &argv, i)) > 0)
76 >                        ;
77 >                if (rval < 0) {
78 >                        sprintf(errmsg, "cannot expand '%s'", argv[i]);
79 >                        error(SYSTEM, errmsg);
80 >                }
81 >                if (argv[i][0] != '-')
82                          break;
83 <                rtargv[rtargc++] = argv[i];
84 <                if (argv[i][0] == '-' && argv[i][1] == 'w')
85 <                        switch (argv[i][2]) {
99 <                        case '\0':
100 <                                warnings = !warnings;
101 <                                break;
102 <                        case '+':
103 <                        case 'T': case 't':
104 <                        case 'Y': case 'y':
105 <                        case '1':
106 <                                warnings = 1;
107 <                                break;
108 <                        case '-':
109 <                        case 'F': case 'f':
110 <                        case 'N': case 'n':
111 <                        case '0':
112 <                                warnings = 0;
113 <                                break;
114 <                        }
115 <        }
116 <        gargc = i;
117 <        if (!strcmp(rtargv[--rtargc], "-defaults"))
118 <                nprocs = 0;
119 <        if (nprocs > 1) {       /* add persist file if parallel invocation */
120 <                rtargv[rtargc++] = "-PP";
121 <                rtargv[rtargc++] = mktemp(persistfn);
122 <        }
123 <                                /* add "mandatory" rtrace options */
124 <        for (i = 0; myrtopts[i] != NULL; i++)
125 <                rtargv[rtargc++] = myrtopts[i];
126 <                                /* finally, put back final argument */
127 <        rtargv[rtargc++] = argv[gargc-1];
128 <        rtargv[rtargc] = NULL;
129 <        if (!nprocs) {          /* just asking for defaults? */
130 <                printopts(); fflush(stdout);
131 <                rtpath = getpath(rtargv[0], getenv("PATH"), X_OK);
132 <                if (rtpath == NULL) {
133 <                        eputs(rtargv[0]);
134 <                        eputs(": command not found\n");
135 <                        exit(1);
83 >                if (!strcmp(argv[i], "-w")) {
84 >                        warnings = 0;
85 >                        continue;
86                  }
87 <                execv(rtpath, rtargv);
88 <                perror(rtpath); /* execv() should not return */
89 <                exit(1);
87 >                if (!strcmp(argv[i], "-n")) {
88 >                        nprocs = atoi(argv[++i]);
89 >                        if (nprocs <= 0)
90 >                                error(USER, "illegal number of processes");
91 >                        continue;
92 >                }
93 >                if (!strcmp(argv[i], "-defaults")) {
94 >                        printopts();
95 >                        print_rdefaults();
96 >                        quit(0);
97 >                }
98 >                rval = getrenderopt(argc-i, argv+i);
99 >                if (rval < 0) {
100 >                        sprintf(errmsg, "bad render option at '%s'", argv[i]);
101 >                        error(USER, errmsg);
102 >                }
103 >                i += rval;
104          }
105 <        if (gargc < 2 || argv[gargc-1][0] == '-')
105 >        gargc = ++i;
106 >                                /* add "mandatory" render options */
107 >        do_irrad = 0;
108 >        if (gargc > argc || argv[gargc-1][0] == '-')
109                  error(USER, "missing octree argument");
110                                  /* else initialize and run our calculation */
111 <        init(nprocs);
112 <        if (gargc+1 < argc)
111 >        init(argv[gargc-1], nprocs);
112 >        if (gargc < argc) {
113 >                if (gargc == argc-1 || argv[gargc][0] != '<' || argv[gargc][1])
114 >                        error(USER, "use '< file1 file2 ..' for multiple inputs");
115                  for (i = gargc+1; i < argc; i++) {
116                          if ((fp = fopen(argv[i], "r")) == NULL) {
117                                  sprintf(errmsg,
# Line 152 | Line 121 | main(          /* compute illum distributions using rtrace */
121                          filter(fp, argv[i]);
122                          fclose(fp);
123                  }
124 <        else
124 >        } else
125                  filter(stdin, "standard input");
126          quit(0);
127 +        return 0; /* pro forma return */
128   }
129  
160 static void
161 killpersist(void)                       /* kill persistent rtrace process */
162 {
163        FILE    *fp = fopen(persistfn, "r");
164        int     pid;
130  
166        if (fp == NULL)
167                return;
168        if (fscanf(fp, "%*s %d", &pid) != 1 || kill(pid, SIGALRM) < 0)
169                unlink(persistfn);
170        fclose(fp);
171 }
172
173 int
174 done_rprocs(struct rtproc *rtp)
175 {
176        int     st0, st1 = 0;
177
178        if (rtp->next != NULL) {        /* close last opened first! */
179                st1 = done_rprocs(rtp->next);
180                free((void *)rtp->next);
181                rtp->next = NULL;
182        }
183        st0 = close_process(&rtp->pd);
184        if (st0 < 0)
185                error(WARNING, "unknown return status from rtrace process");
186        else if (st0 > 0)
187                return(st0);
188        return(st1);
189 }
190
131   void
132 < quit(int status)                        /* exit with status */
132 > init(char *octnm, int np)               /* start rendering process(es) */
133   {
194        int     rtstat;
195
196        if (rt0.next != NULL)           /* terminate persistent rtrace */
197                killpersist();
198                                        /* clean up rtrace process(es) */
199        rtstat = done_rprocs(&rt0);
200        if (status == 0)
201                status = rtstat;
202        exit(status);
203 }
204
205 void
206 init(int np)                            /* start rtrace and set up buffers */
207 {
208        struct rtproc   *rtp;
209        int     i;
210        int     maxbytes;
211                                        /* set up object functions */
212        ofun[OBJ_FACE].funp = o_face;
213        ofun[OBJ_SPHERE].funp = o_sphere;
214        ofun[OBJ_RING].funp = o_ring;
134                                          /* set up signal handling */
135 < #ifdef SIGPIPE /* not present on Windows */
135 >        signal(SIGINT, quit);
136 > #ifdef SIGHUP
137 >        signal(SIGHUP, quit);
138 > #endif
139 > #ifdef SIGTERM
140 >        signal(SIGTERM, quit);
141 > #endif
142 > #ifdef SIGPIPE
143          signal(SIGPIPE, quit);
144   #endif
145 <        rtp = &rt0;                     /* start rtrace process(es) */
146 <        for (i = 0; i++ < np; ) {
221 <                errno = 0;
222 <                maxbytes = open_process(&rtp->pd, rtargv);
223 <                if (maxbytes == 0) {
224 <                        eputs(rtargv[0]);
225 <                        eputs(": command not found\n");
226 <                        exit(1);
227 <                }
228 <                if (maxbytes < 0)
229 <                        error(SYSTEM, "cannot start rtrace process");
230 <                rtp->bsiz = maxbytes/(6*sizeof(float));
231 <                rtp->buf = (float *)malloc(6*sizeof(float)*rtp->bsiz--);
232 <                rtp->dest = (float **)calloc(rtp->bsiz, sizeof(float *));
233 <                if (rtp->buf == NULL || rtp->dest == NULL)
234 <                        error(SYSTEM, "out of memory in init");
235 <                rtp->nrays = 0;
236 <                if (i == np)            /* last process? */
237 <                        break;
238 <                if (np > 1)
239 <                        sleep(2);       /* wait for persist file */
240 <                rtp->next = (struct rtproc *)malloc(sizeof(struct rtproc));
241 <                if (rtp->next == NULL)
242 <                        error(SYSTEM, "out of memory in init");
243 <                rtp = rtp->next;
244 <        }
245 <        rtp->next = NULL;
246 <                                        /* set up urand */
247 <        initurand(16384);
145 >                                        /* start rendering process(es) */
146 >        ray_pinit(octnm, np);
147   }
148  
149  
# Line 275 | Line 174 | char  *s;
174  
175  
176   void
177 + quit(ec)                        /* make sure exit is called */
178 + int     ec;
179 + {
180 +        if (ray_pnprocs > 0)    /* close children if any */
181 +                ray_pclose(0);          
182 +        exit(ec);
183 + }
184 +
185 +
186 + void
187   filter(         /* process stream */
188          register FILE   *infp,
189          char    *name
# Line 316 | Line 225 | xoptions(                      /* process options in string s */
225   {
226          extern FILE     *freopen();
227          char    buf[64];
228 +        int     negax;
229          int     nerrs = 0;
230          register char   *cp;
231  
# Line 395 | Line 305 | xoptions(                      /* process options in string s */
305                          }
306                          cp = sskip(cp);
307                          continue;
308 <                case 'd':                       /* point sample density */
308 >                case 'd':                       /* sample density */
309                          if (*++cp != '=')
310                                  break;
311 <                        if (!isintd(++cp, " \t\n\r"))
312 <                                break;
313 <                        thisillum.sampdens = atoi(cp);
311 >                        if (!*++cp || isspace(*cp))
312 >                                continue;
313 >                        if (isintd(cp, " \t\n\r")) {
314 >                                thisillum.sampdens = atoi(cp);
315 >                        } else {
316 >                                error(WARNING, "direct BSDF input unsupported");
317 >                                goto opterr;
318 >                        }
319                          cp = sskip(cp);
320                          continue;
321 <                case 's':                       /* point super-samples */
321 >                case 's':                       /* surface super-samples */
322                          if (*++cp != '=')
323                                  break;
324                          if (!isintd(++cp, " \t\n\r"))
# Line 445 | Line 360 | xoptions(                      /* process options in string s */
360                          }
361                          doneheader = 0;
362                          continue;
363 +                case 't':                       /* object thickness */
364 +                        if (*++cp != '=')
365 +                                break;
366 +                        if (!isfltd(++cp, " \t\n\r"))
367 +                                break;
368 +                        thisillum.thick = atof(cp);
369 +                        if (thisillum.thick < .0)
370 +                                thisillum.thick = .0;
371 +                        cp = sskip(cp);
372 +                        continue;
373                  case '!':                       /* processed file! */
374                          sprintf(errmsg, "(%s): already processed!", nm);
375                          error(WARNING, errmsg);
# Line 487 | Line 412 | printopts(void)                        /* print out option default values *
412                  printf("l+\t\t\t\t# light type on\n");
413          else
414                  printf("l-\t\t\t\t# light type off\n");
415 <        printf("d=%d\t\t\t\t# density of points\n", thisillum.sampdens);
416 <        printf("s=%d\t\t\t\t# samples per point\n", thisillum.nsamps);
415 >        printf("d=%d\t\t\t\t# density of directions\n", thisillum.sampdens);
416 >        printf("s=%d\t\t\t\t# samples per direction\n", thisillum.nsamps);
417          printf("b=%f\t\t\t# minimum average brightness\n", thisillum.minbrt);
418 +        printf("t=%f\t\t\t# object thickness\n", thisillum.thick);
419   }
420  
421  
# Line 563 | Line 489 | xobject(                               /* translate an object from fp */
489          checkhead();
490                                                  /* process object */
491          if (doit)
492 <                (*ofun[thisobj.otype].funp)(&thisobj, &thisillum, &rt0, nm);
492 >                switch (thisobj.otype) {
493 >                case OBJ_FACE:
494 >                        my_face(&thisobj, &thisillum, nm);
495 >                        break;
496 >                case OBJ_SPHERE:
497 >                        my_sphere(&thisobj, &thisillum, nm);
498 >                        break;
499 >                case OBJ_RING:
500 >                        my_ring(&thisobj, &thisillum, nm);
501 >                        break;
502 >                default:
503 >                        my_default(&thisobj, &thisillum, nm);
504 >                        break;
505 >                }
506          else
507                  printobj(thisillum.altmat, &thisobj);
508                                                  /* free arguments */
509          freefargs(&thisobj.oargs);
510          return;
511   readerr:
512 <        sprintf(errmsg, "(%s): error reading scene", nm);
512 >        sprintf(errmsg, "(%s): error reading input", nm);
513          error(USER, errmsg);
514   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines