ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rpmain.c
(Generate patch)

Comparing ray/src/rt/rpmain.c (file contents):
Revision 2.6 by schorsch, Mon Jul 14 20:02:30 2003 UTC vs.
Revision 2.29 by greg, Fri Nov 17 20:02:07 2023 UTC

# Line 7 | Line 7 | static const char      RCSid[] = "$Id$";
7  
8   #include "copyright.h"
9  
10 < #include  <sys/types.h>
10 > #include  <time.h>
11   #include  <signal.h>
12  
13   #include  "platform.h"
# Line 18 | Line 18 | static const char      RCSid[] = "$Id$";
18   #include  "random.h"
19   #include  "paths.h"
20   #include  "view.h"
21 + #include  "pmapray.h"
22  
23                                          /* persistent processes define */
24   #ifdef  F_SETLKW
# Line 27 | Line 28 | static const char      RCSid[] = "$Id$";
28   #endif
29  
30   char  *progname;                        /* argv[0] */
30
31   char  *octname;                         /* octree name */
32
32   char  *sigerr[NSIG];                    /* signal error messages */
34
33   char  *shm_boundary = NULL;             /* boundary of shared memory */
36
34   char  *errfile = NULL;                  /* error output file */
35  
36   extern time_t  time();
# Line 53 | Line 50 | extern double  dstrpix;                        /* square pixel distribution
50  
51   extern double  mblur;                   /* motion blur parameter */
52  
53 < void    onsig();
57 < void    sigdie();
58 < void    printdefaults();
53 > extern double  dblur;                   /* depth-of-field blur parameter */
54  
55 + RGBPRIMP  out_prims = stdprims;         /* output color primitives */
56 + static RGBPRIMS  our_prims;             /* private output color primitives */
57  
58 + static void onsig(int signo);
59 + static void sigdie(int  signo, char  *msg);
60 + static void printdefaults(void);
61 +                                        /* rpict additional features */
62 + #ifdef PERSIST
63 + #define RPICT_FEATURES  "Persist\nParallelPersist\n" \
64 +                "ParticipatingMedia=Mist\n" \
65 +                "Recovery\nIrradianceCalc\nViewTypes=v,l,a,h,s,c\n" \
66 +                "HessianAmbientCache\nAmbientAveraging\nAmbientValueSharing\n" \
67 +                "PixelJitter\nPixelSampling\nPixelMotion\nPixelDepthOfField\n" \
68 +                "SmallSourceDrawing\nViewSequence\nProgressReporting\n" \
69 +                "AdaptiveShadowTesting\nOutputs=v,l\n"
70 + #else
71 + #define RPICT_FEATURES  "Recovery\nIrradianceCalc\nViewTypes=v,l,a,h,s,c\n" \
72 +                "ParticipatingMedia=Mist\n" \
73 +                "HessianAmbientCache\nAmbientAveraging\nAmbientValueSharing\n" \
74 +                "PixelJitter\nPixelSampling\nPixelMotion\nPixelDepthOfField\n" \
75 +                "SmallSourceDrawing\nViewSequence\nProgressReporting\n" \
76 +                "AdaptiveShadowTesting\nOutputs=v,l\n"
77 + #endif
78 +
79 +
80   int
81 < main(argc, argv)
63 < int  argc;
64 < char  *argv[];
81 > main(int  argc, char  *argv[])
82   {
83   #define  check(ol,al)           if (argv[i][ol] || \
84                                  badarg(argc-i-1,argv+i+1,al)) \
85                                  goto badopt
86 < #define  bool(olen,var)         switch (argv[i][olen]) { \
86 > #define  check_bool(olen,var)           switch (argv[i][olen]) { \
87                                  case '\0': var = !var; break; \
88                                  case 'y': case 'Y': case 't': case 'T': \
89                                  case '+': case '1': var = 1; break; \
# Line 80 | Line 97 | char  *argv[];
97          int  loadflags = ~IO_FILES;
98          int  seqstart = 0;
99          int  persist = 0;
100 <        int  duped1;
100 >        int  duped1 = -1;
101          int  rval;
102          int  i;
103                                          /* record start time */
104          tstart = time((time_t *)NULL);
105                                          /* global program name */
106          progname = argv[0] = fixargv0(argv[0]);
107 +                                        /* feature check only? */
108 +        strcat(RFeatureList, RPICT_FEATURES);
109 +        if (argc > 1 && !strcmp(argv[1], "-features"))
110 +                return feature_status(argc-2, argv+2);
111                                          /* option city */
112          for (i = 1; i < argc; i++) {
113                                                  /* expand arguments */
# Line 158 | Line 179 | char  *argv[];
179                                  check(3,"f");
180                                  mblur = atof(argv[++i]);
181                                  break;
182 +                        case 'd':                               /* aperture */
183 +                                check(3,"f");
184 +                                dblur = atof(argv[++i]);
185 +                                break;
186 +                        case 'R':                               /* standard RGB output */
187 +                                if (strcmp(argv[i]+2, "RGB"))
188 +                                        goto badopt;
189 +                                out_prims = stdprims;
190 +                                break;
191 +                        case 'X':                               /* XYZ output */
192 +                                if (strcmp(argv[i]+2, "XYZ"))
193 +                                        goto badopt;
194 +                                out_prims = xyzprims;
195 +                                break;
196 +                        case 'c': {                             /* chromaticities */
197 +                                int     j;
198 +                                check(3,"ffffffff");
199 +                                rval = 0;
200 +                                for (j = 0; j < 8; j++) {
201 +                                        our_prims[0][j] = atof(argv[++i]);
202 +                                        rval |= fabs(our_prims[0][j]-stdprims[0][j]) > .001;
203 +                                }
204 +                                if (rval) {
205 +                                        if (!colorprimsOK(our_prims))
206 +                                                error(USER, "illegal primary chromaticities");
207 +                                        out_prims = our_prims;
208 +                                } else
209 +                                        out_prims = stdprims;
210 +                                } break;
211                          default:
212                                  goto badopt;
213                          }
# Line 208 | Line 258 | char  *argv[];
258   #endif
259                  case 'w':                               /* warnings */
260                          rval = erract[WARNING].pf != NULL;
261 <                        bool(2,rval);
261 >                        check_bool(2,rval);
262                          if (rval) erract[WARNING].pf = wputs;
263                          else erract[WARNING].pf = NULL;
264                          break;
# Line 226 | Line 276 | char  *argv[];
276                                          /* initialize object types */
277          initotypes();
278                                          /* initialize urand */
279 <        initurand(2048);
279 >        if (rand_samp) {
280 >                srandom((long)time(0));
281 >                initurand(0);
282 >        } else {
283 >                srandom(0L);
284 >                initurand(2048);
285 >        }
286                                          /* set up signal handling */
287          sigdie(SIGINT, "Interrupt");
288   #ifdef SIGHUP
# Line 279 | Line 335 | char  *argv[];
335   #endif
336          if (outfile != NULL)
337                  openheader();
282 #ifdef  _WIN32
338          SET_FILE_BINARY(stdout);
339          if (octname == NULL)
340                  SET_FILE_BINARY(stdin);
286 #endif
341          readoct(octname, loadflags, &thescene, NULL);
342          nsceneobjs = nobjects;
343  
# Line 291 | Line 345 | char  *argv[];
345                  printargs(i, argv, stdout);
346                  printf("SOFTWARE= %s\n", VersionID);
347          }
348 +                  
349 +        ray_init_pmap();     /* PMAP: set up & load photon maps */
350  
351          marksources();                  /* find and mark sources */
352  
353          setambient();                   /* initialize ambient calculation */
354 +        
355 +        fflush(stdout);                 /* in case we're duplicating header */
356  
357   #ifdef  PERSIST
358          if (persist) {
301                fflush(stdout);
359                  if (outfile == NULL) {          /* reconnect stdout */
360                          dup2(duped1, fileno(stdout));
361                          close(duped1);
# Line 311 | Line 368 | char  *argv[];
368                                  pflock(1);
369                                  pfhold();
370                                  tstart = time((time_t *)NULL);
371 +                                ambsync();              /* load new values */
372                          }
373                          if (rval < 0)
374                                  error(SYSTEM, "cannot fork child for persist function");
375 <                        pfdetach();             /* parent exits */
375 >                        pfdetach();             /* parent will run then exit */
376                  }
377          }
378   runagain:
379 <        if (persist)
379 >        if (persist) {
380                  if (outfile == NULL)                    /* if out to stdout */
381                          dupheader();                    /* send header */
382                  else                                    /* if out to file */
383                          duped1 = dup(fileno(stdout));   /* hang onto pipe */
384 +        }
385   #endif
386                                          /* batch render picture(s) */
387          rpict(seqstart, outfile, zfile, recover);
# Line 348 | Line 407 | runagain:
407                  goto runagain;
408          }
409   #endif
410 +
411 +
412 +        ray_done_pmap();           /* PMAP: free photon maps */
413 +        
414          quit(0);
415  
416   badopt:
417          sprintf(errmsg, "command line error at '%s'", argv[i]);
418          error(USER, errmsg);
419 +        return 1; /* pro forma return */
420  
421   #undef  check
422 < #undef  bool
422 > #undef  check_bool
423   }
424  
425  
426   void
427 < wputs(s)                                /* warning output function */
428 < char    *s;
427 > wputs(                          /* warning output function */
428 >        const char      *s
429 > )
430   {
431          int  lasterrno = errno;
432          eputs(s);
# Line 370 | Line 435 | char   *s;
435  
436  
437   void
438 < eputs(s)                                /* put string to stderr */
439 < register char  *s;
438 > eputs(                          /* put string to stderr */
439 >        const char  *s
440 > )
441   {
442          static int  midline = 0;
443  
# Line 389 | Line 455 | register char  *s;
455   }
456  
457  
458 < void
459 < onsig(signo)                            /* fatal signal */
460 < int  signo;
458 > static void
459 > onsig(                          /* fatal signal */
460 >        int  signo
461 > )
462   {
463          static int  gotsig = 0;
464  
# Line 409 | Line 476 | int  signo;
476   }
477  
478  
479 < void
480 < sigdie(signo, msg)                      /* set fatal signal */
481 < int  signo;
482 < char  *msg;
479 > static void
480 > sigdie(                 /* set fatal signal */
481 >        int  signo,
482 >        char  *msg
483 > )
484   {
485          if (signal(signo, onsig) == SIG_IGN)
486                  signal(signo, SIG_IGN);
# Line 420 | Line 488 | char  *msg;
488   }
489  
490  
491 < void
492 < printdefaults()                 /* print default values to stdout */
491 > static void
492 > printdefaults(void)                     /* print default values to stdout */
493   {
494          printf("-vt%c\t\t\t\t# view type %s\n", ourview.type,
495                          ourview.type==VT_PER ? "perspective" :
# Line 429 | Line 497 | printdefaults()                        /* print default values to stdout */
497                          ourview.type==VT_HEM ? "hemispherical" :
498                          ourview.type==VT_ANG ? "angular" :
499                          ourview.type==VT_CYL ? "cylindrical" :
500 +                        ourview.type==VT_PLS ? "planisphere" :
501                          "unknown");
502          printf("-vp %f %f %f\t# view point\n",
503                          ourview.vp[0], ourview.vp[1], ourview.vp[2]);
# Line 444 | Line 513 | printdefaults()                        /* print default values to stdout */
513          printf("-vl %f\t\t\t# view lift\n", ourview.voff);
514          printf("-x  %-9d\t\t\t# x resolution\n", hresolu);
515          printf("-y  %-9d\t\t\t# y resolution\n", vresolu);
516 +        if (out_prims == stdprims)
517 +                printf("-pRGB\t\t\t\t# standard RGB color output\n");
518 +        else if (out_prims == xyzprims)
519 +                printf("-pXYZ\t\t\t\t# CIE XYZ color output\n");
520 +        else if (out_prims != NULL)
521 +                printf("-pc %.4f %.4f %.4f %.4f %.4f %.4f %.4f %.4f\t# output color primaries and white point\n",
522 +                                out_prims[RED][0], out_prims[RED][1],
523 +                                out_prims[GRN][0], out_prims[GRN][1],
524 +                                out_prims[BLU][0], out_prims[BLU][1],
525 +                                out_prims[WHT][0], out_prims[WHT][1]);
526          printf("-pa %f\t\t\t# pixel aspect ratio\n", pixaspect);
527          printf("-pj %f\t\t\t# pixel jitter\n", dstrpix);
528          printf("-pm %f\t\t\t# pixel motion\n", mblur);
529 +        printf("-pd %f\t\t\t# pixel depth-of-field\n", dblur);
530          printf("-ps %-9d\t\t\t# pixel sample\n", psample);
531          printf("-pt %f\t\t\t# pixel threshold\n", maxdiff);
532          printf("-t  %-9d\t\t\t# time between reports\n", ralrm);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines