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

Comparing ray/src/util/findglare.c (file contents):
Revision 1.9 by greg, Wed Mar 20 12:20:38 1991 UTC vs.
Revision 1.18 by greg, Thu Apr 18 15:18:22 1991 UTC

# Line 40 | Line 40 | int    hlim;                           /* central limit of horizontal */
40  
41   struct illum    *indirect;              /* array of indirect illuminances */
42  
43 + long    npixinvw;                       /* number of pixels in view */
44 + long    npixmiss;                       /* number of pixels missed */
45  
46 +
47   main(argc, argv)
48   int     argc;
49   char    *argv[];
50   {
51 +        int     combine = 1;
52          int     gotview = 0;
53          int     rval, i;
54          char    *err;
# Line 98 | Line 102 | char   *argv[];
102                  case 'p':
103                          picture = argv[++i];
104                          break;
105 +                case 'c':
106 +                        combine = !combine;
107 +                        break;
108                  case 'd':
109                  case 'l':
110                          rtargv[rtargc++] = argv[i];
# Line 176 | Line 183 | char   *argv[];
183          if (threshold <= FTINY)
184                  comp_thresh();                  /* compute glare threshold */
185          analyze();                              /* analyze view */
186 +        if (combine)
187 +                absorb_specks();                /* eliminate tiny sources */
188          cleanup();                              /* tidy up */
189                                                  /* print header */
190          printargs(argc, argv, stdout);
191          fputs(VIEWSTR, stdout);
192          fprintview(&ourview, stdout);
193 <        printf("\n\n");
193 >        printf("\n");
194 >        fputformat("ASCII", stdout);
195 >        printf("\n");
196          printsources();                         /* print glare sources */
197          printillum();                           /* print illuminances */
198          exit(0);
# Line 204 | Line 215 | init()                         /* initialize global variables */
215                                                  /* set direction vectors */
216          for (i = 0; glarang[i] != AEND; i++)
217                  ;
218 <        if (i > 0 && glarang[0] <= 0 || glarang[i-1] >= 180) {
218 >        if (i > 0 && (glarang[0] <= 0 || glarang[i-1] >= 180)) {
219                  fprintf(stderr, "%s: glare angles must be between 1 and 179\n",
220                                  progname);
221                  exit(1);
# Line 223 | Line 234 | init()                         /* initialize global variables */
234          indirect = (struct illum *)calloc(nglardirs, sizeof(struct illum));
235          if (indirect == NULL)
236                  memerr("indirect illuminances");
237 +        npixinvw = npixmiss = 0L;
238          copystruct(&leftview, &ourview);
239          copystruct(&rightview, &ourview);
240          spinvector(leftview.vdir, ourview.vdir, ourview.vup, maxtheta);
# Line 271 | Line 283 | init()                         /* initialize global variables */
283   cleanup()                               /* close files, wait for children */
284   {
285          if (verbose)
286 <                fprintf(stderr, "%s: cleaning up...\n", progname);
286 >                fprintf(stderr, "%s: cleaning up...        \n", progname);
287          if (picture != NULL)
288                  close_pict();
289          if (octree != NULL)
290                  done_rtrace();
291 +        if (npixinvw < 100*npixmiss)
292 +                fprintf(stderr, "%s: warning -- missing %ld%% of samples\n",
293 +                                progname, 100L*npixmiss/npixinvw);
294   }
295  
296  
297 < compdir(vd, x, y)                       /* compute direction for x,y */
297 > compdir(vd, x, y, se)                   /* compute direction for x,y */
298   FVECT   vd;
299   int     x, y;
300 + SPANERR *se;
301   {
302          FVECT   org;                    /* dummy variable */
303  
304          if (x <= -hlim)                 /* left region */
305                  return(viewray(org, vd, &leftview,
306 <                                (x+hlim)/(2.*sampdens)+.5,
307 <                                y/(2.*sampdens)+.5));
306 >                                (double)(x+hlim)/(2*sampdens)+.5,
307 >                                (double)y/(2*sampdens)+.5));
308          if (x >= hlim)                  /* right region */
309                  return(viewray(org, vd, &rightview,
310 <                                (x-hlim)/(2.*sampdens)+.5,
311 <                                y/(2.*sampdens)+.5));
312 <                                                /* central region */
313 <        if (viewray(org, vd, &ourview, .5, y/(2.*sampdens)+.5) < 0)
310 >                                (double)(x-hlim)/(2*sampdens)+.5,
311 >                                (double)y/(2*sampdens)+.5));
312 >                                        /* central region */
313 >        if (se != NULL) {       /* avoid over-counting of poles */
314 >                se->err += se->prob;
315 >                if (se->err <= 0.5)
316 >                        return(-1);
317 >                se->err -= 1.0;
318 >        }
319 >        if (viewray(org, vd, &ourview, .5, (double)y/(2*sampdens)+.5) < 0)
320                  return(-1);
321          spinvector(vd, vd, ourview.vup, h_theta(x));
322          return(0);
323   }
324  
325  
326 + setspanerr(se, y)               /* initialize span error at y */
327 + register SPANERR        *se;
328 + int     y;
329 + {
330 +        se->err = 0.0;
331 +        se->prob = sqrt(1.0 - (double)((long)y*y)/((long)vsize*vsize));
332 + }
333 +
334 +
335   memerr(s)                       /* malloc failure */
336   char    *s;
337   {
# Line 328 | Line 359 | printillum()                   /* print out indirect illuminances */
359  
360          printf("BEGIN indirect illuminance\n");
361          for (i = 0; i < nglardirs; i++)
362 <                printf("\t%.0f\t%f\n", (180.0/PI)*indirect[i].theta,
363 <                                PI * indirect[i].sum / (double)indirect[i].n);
362 >                if (indirect[i].n > FTINY)
363 >                        printf("\t%.0f\t%f\n", (180.0/PI)*indirect[i].theta,
364 >                                        PI * indirect[i].sum / indirect[i].n);
365          printf("END indirect illuminance\n");
366   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines