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.8 by schorsch, Tue Mar 30 16:13:01 2004 UTC vs.
Revision 2.28 by greg, Wed Nov 15 18:02:53 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 49 | Line 50 | extern double  dstrpix;                        /* square pixel distribution
50  
51   extern double  mblur;                   /* motion blur parameter */
52  
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 +                "Hyperspectral\nParticipatingMedia=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 +                "Hyperspectral\nParticipatingMedia=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
# Line 60 | Line 83 | main(int  argc, char  *argv[])
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 74 | Line 97 | main(int  argc, 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 152 | Line 179 | main(int  argc, 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 188 | Line 244 | main(int  argc, char  *argv[])
244                          check(2,"i");
245                          ralrm = atoi(argv[++i]);
246                          break;
247 + #if MAXCSAMP>3
248 +                case 'c':                               /* spectral sampling */
249 +                        switch (argv[i][2]) {
250 +                        case 's':                       /* spectral bin count */
251 +                                check(3,"i");
252 +                                NCSAMP = atoi(argv[++i]);
253 +                                break;
254 +                        case 'w':                       /* wavelength extrema */
255 +                                check(3,"ff");
256 +                                WLPART[0] = atof(argv[++i]);
257 +                                WLPART[3] = atof(argv[++i]);
258 +                                break;
259 + #if 0
260 +                        case 'o':                       /* output spectral results */
261 +                                rval = (out_prims == NULL);
262 +                                check_bool(3,rval);
263 +                                if (rval) out_prims = NULL;
264 +                                else if (out_prims == NULL) out_prims = stdprims;
265 +                                break;
266 + #endif
267 +                        default:
268 +                                goto badopt;
269 +                        }
270 +                        break;
271 + #endif
272   #ifdef  PERSIST
273                  case 'P':                               /* persist file */
274                          if (argv[i][2] == 'P') {
# Line 202 | Line 283 | main(int  argc, char  *argv[])
283   #endif
284                  case 'w':                               /* warnings */
285                          rval = erract[WARNING].pf != NULL;
286 <                        bool(2,rval);
286 >                        check_bool(2,rval);
287                          if (rval) erract[WARNING].pf = wputs;
288                          else erract[WARNING].pf = NULL;
289                          break;
# Line 220 | Line 301 | main(int  argc, char  *argv[])
301                                          /* initialize object types */
302          initotypes();
303                                          /* initialize urand */
304 <        initurand(2048);
304 >        if (rand_samp) {
305 >                srandom((long)time(0));
306 >                initurand(0);
307 >        } else {
308 >                srandom(0L);
309 >                initurand(2048);
310 >        }
311                                          /* set up signal handling */
312          sigdie(SIGINT, "Interrupt");
313   #ifdef SIGHUP
# Line 273 | Line 360 | main(int  argc, char  *argv[])
360   #endif
361          if (outfile != NULL)
362                  openheader();
276 #ifdef  _WIN32
363          SET_FILE_BINARY(stdout);
364          if (octname == NULL)
365                  SET_FILE_BINARY(stdin);
280 #endif
366          readoct(octname, loadflags, &thescene, NULL);
367          nsceneobjs = nobjects;
368  
# Line 285 | Line 370 | main(int  argc, char  *argv[])
370                  printargs(i, argv, stdout);
371                  printf("SOFTWARE= %s\n", VersionID);
372          }
373 +                  
374 +        ray_init_pmap();     /* PMAP: set up & load photon maps */
375  
376          marksources();                  /* find and mark sources */
377  
378          setambient();                   /* initialize ambient calculation */
379 +        
380 +        fflush(stdout);                 /* in case we're duplicating header */
381  
382   #ifdef  PERSIST
383          if (persist) {
295                fflush(stdout);
384                  if (outfile == NULL) {          /* reconnect stdout */
385                          dup2(duped1, fileno(stdout));
386                          close(duped1);
# Line 305 | Line 393 | main(int  argc, char  *argv[])
393                                  pflock(1);
394                                  pfhold();
395                                  tstart = time((time_t *)NULL);
396 +                                ambsync();              /* load new values */
397                          }
398                          if (rval < 0)
399                                  error(SYSTEM, "cannot fork child for persist function");
400 <                        pfdetach();             /* parent exits */
400 >                        pfdetach();             /* parent will run then exit */
401                  }
402          }
403   runagain:
# Line 343 | Line 432 | runagain:
432                  goto runagain;
433          }
434   #endif
435 +
436 +
437 +        ray_done_pmap();           /* PMAP: free photon maps */
438 +        
439          quit(0);
440  
441   badopt:
# Line 351 | Line 444 | badopt:
444          return 1; /* pro forma return */
445  
446   #undef  check
447 < #undef  bool
447 > #undef  check_bool
448   }
449  
450  
451   void
452   wputs(                          /* warning output function */
453 <        char    *s
453 >        const char      *s
454   )
455   {
456          int  lasterrno = errno;
# Line 368 | Line 461 | wputs(                         /* warning output function */
461  
462   void
463   eputs(                          /* put string to stderr */
464 <        register char  *s
464 >        const char  *s
465   )
466   {
467          static int  midline = 0;
# Line 429 | Line 522 | printdefaults(void)                    /* print default values to stdou
522                          ourview.type==VT_HEM ? "hemispherical" :
523                          ourview.type==VT_ANG ? "angular" :
524                          ourview.type==VT_CYL ? "cylindrical" :
525 +                        ourview.type==VT_PLS ? "planisphere" :
526                          "unknown");
527          printf("-vp %f %f %f\t# view point\n",
528                          ourview.vp[0], ourview.vp[1], ourview.vp[2]);
# Line 444 | Line 538 | printdefaults(void)                    /* print default values to stdou
538          printf("-vl %f\t\t\t# view lift\n", ourview.voff);
539          printf("-x  %-9d\t\t\t# x resolution\n", hresolu);
540          printf("-y  %-9d\t\t\t# y resolution\n", vresolu);
541 +        if (NCSAMP > 3) {
542 +                printf("-cs %-2d\t\t\t\t# number of spectral bins\n", NCSAMP);
543 +                printf("-cw %3.0f %3.0f\t\t\t# wavelength limits (nm)\n",
544 +                                WLPART[3], WLPART[0]);
545 + /*              printf(out_prims != NULL ? "-co-\t\t\t\t# output tristimulus colors\n" :
546 +                                "-co+\t\t\t\t# output spectral values\n");
547 + */      }
548 +        if (out_prims == stdprims)
549 +                printf("-pRGB\t\t\t\t# standard RGB color output\n");
550 +        else if (out_prims == xyzprims)
551 +                printf("-pXYZ\t\t\t\t# CIE XYZ color output\n");
552 +        else if (out_prims != NULL)
553 +                printf("-pc %.4f %.4f %.4f %.4f %.4f %.4f %.4f %.4f\t# output color primaries and white point\n",
554 +                                out_prims[RED][0], out_prims[RED][1],
555 +                                out_prims[GRN][0], out_prims[GRN][1],
556 +                                out_prims[BLU][0], out_prims[BLU][1],
557 +                                out_prims[WHT][0], out_prims[WHT][1]);
558          printf("-pa %f\t\t\t# pixel aspect ratio\n", pixaspect);
559          printf("-pj %f\t\t\t# pixel jitter\n", dstrpix);
560          printf("-pm %f\t\t\t# pixel motion\n", mblur);
561 +        printf("-pd %f\t\t\t# pixel depth-of-field\n", dblur);
562          printf("-ps %-9d\t\t\t# pixel sample\n", psample);
563          printf("-pt %f\t\t\t# pixel threshold\n", maxdiff);
564          printf("-t  %-9d\t\t\t# time between reports\n", ralrm);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines