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

Comparing ray/src/rt/rtmain.c (file contents):
Revision 2.51 by greg, Fri Apr 5 16:41:17 2024 UTC vs.
Revision 2.62 by greg, Fri Dec 5 17:51:34 2025 UTC

# Line 13 | Line 13 | static const char      RCSid[] = "$Id$";
13   #include  "rtprocess.h" /* getpid() */
14   #include  "resolu.h"
15   #include  "ray.h"
16 + #include  "func.h"
17   #include  "source.h"
18   #include  "ambient.h"
19   #include  "random.h"
19 #include  "paths.h"
20   #include  "pmapray.h"
21
22 extern char     *progname;              /* global argv[0] */
23
24 extern char     *shm_boundary;          /* boundary of shared memory */
25
21                                          /* persistent processes define */
22   #ifdef  F_SETLKW
23   #define  PERSIST        1               /* normal persist */
# Line 59 | Line 54 | extern void  tranotify(OBJECT obj);
54   char  *tralist[MAXMODLIST];             /* list of modifers to trace (or no) */
55   int  traincl = -1;                      /* include == 1, exclude == 0 */
56  
57 < double  (*sens_curve)(SCOLOR scol) = NULL;      /* spectral conversion for 1-channel */
57 > double  (*sens_curve)(const SCOLOR scol) = NULL;        /* spectral conversion for 1-channel */
58   double  out_scalefactor = 1;            /* output calibration scale factor */
59   RGBPRIMP  out_prims = stdprims;         /* output color primitives (NULL if spectral) */
60   static RGBPRIMS  our_prims;             /* private output color primitives */
# Line 85 | Line 80 | static void printdefaults(void);
80                          "HessianAmbientCache\nAmbientAveraging\n" \
81                          "AmbientValueSharing\nAdaptiveShadowTesting\n" \
82                          "InputFormats=a,f,d\nOutputFormats=a,f,d,c\n" \
83 <                        "Outputs=o,d,v,V,w,W,l,L,c,p,n,N,s,m,M,r,x,R,X,~\n"
83 >                        "Outputs=o,d,v,V,w,W,l,L,c,p,n,N,s,m,M,r,x,R,X,~\n" \
84                          "OutputCS=RGB,XYZ,Y,S,M,prims,spec\n"
85   #endif
86  
# Line 116 | Line 111 | main(int  argc, char  *argv[])
111          strcat(RFeatureList, RTRACE_FEATURES);
112          if (argc > 1 && !strcmp(argv[1], "-features"))
113                  return feature_status(argc-2, argv+2);
114 +                                        /* initialize calcomp routines */
115 +        initfunc();
116                                          /* add trace notify function */
117          for (i = 0; addobjnotify[i] != NULL; i++)
118                  ;
# Line 304 | Line 301 | main(int  argc, char  *argv[])
301                          case 'S':                       /* scotopic response */
302                                  if (argv[i][3])
303                                          goto badopt;
307                                sens_curve = scolor_scotopic;
304                                  out_scalefactor = WHTSCOTOPIC;
305 +                                sens_curve = scolor_scotopic;
306                                  break;
307                          case 'M':                       /* melanopic response */
308                                  if (argv[i][3])
309                                          goto badopt;
313                                sens_curve = scolor_melanopic;
310                                  out_scalefactor = WHTMELANOPIC;
311 +                                sens_curve = scolor_melanopic;
312                                  break;
313 +                        case 'A':                       /* radiometric average */
314 +                                if (argv[i][3])
315 +                                        goto badopt;
316 +                                out_scalefactor = 1;
317 +                                sens_curve = scolor_mean;
318 +                                break;
319                          default:
320                                  goto badopt;
321                          }
# Line 350 | Line 353 | main(int  argc, char  *argv[])
353          rval = setspectrsamp(CNDX, WLPART);
354          if (rval < 0)
355                  error(USER, "unsupported spectral sampling");
356 <        if (out_prims != NULL) {
356 >        if (sens_curve != NULL)
357 >                out_prims = NULL;
358 >        else if (out_prims != NULL) {
359                  if (!rval)
360                          error(WARNING, "spectral range incompatible with color output");
361          } else if (NCSAMP == 3)
# Line 360 | Line 365 | main(int  argc, char  *argv[])
365                                          /* initialize object types */
366          initotypes();
367                                          /* initialize urand */
368 <        if (rand_samp) {
364 <                srandom((long)time(0));
365 <                initurand(0);
366 <        } else {
367 <                srandom(0L);
368 <                initurand(2048);
369 <        }
368 >        reset_random();
369                                          /* set up signal handling */
370          sigdie(SIGINT, "Interrupt");
371   #ifdef SIGHUP
# Line 453 | Line 452 | main(int  argc, char  *argv[])
452                  dup2(duped1, fileno(stdout));
453                  close(duped1);
454                  if (persist == PARALLEL) {      /* multiprocessing */
455 <                        preload_objs();         /* preload scene */
457 <                        shm_boundary = (char *)malloc(16);
458 <                        strcpy(shm_boundary, "SHM_BOUNDARY");
455 >                        cow_memshare();         /* preloads scene */
456                          while ((rval=fork()) == 0) {    /* keep on forkin' */
457                                  pflock(1);
458                                  pfhold();
# Line 512 | Line 509 | wputs(                         /* warning output function */
509   )
510   {
511          int  lasterrno = errno;
512 +        if (erract[WARNING].pf == NULL)
513 +                return;         /* called by calcomp or someone */
514          eputs(s);
515          errno = lasterrno;
516   }
# Line 632 | Line 631 | printdefaults(void)                    /* print default values to stdou
631                                  out_prims[GRN][0], out_prims[GRN][1],
632                                  out_prims[BLU][0], out_prims[BLU][1],
633                                  out_prims[WHT][0], out_prims[WHT][1]);
634 <        if (NCSAMP > 3)
634 >        if ((sens_curve == NULL) & (NCSAMP > 3))
635                  printf(out_prims != NULL ? "-co-\t\t\t\t# output tristimulus colors\n" :
636                                  "-co+\t\t\t\t# output spectral values\n");
637          print_rdefaults();

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)