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

Comparing ray/src/px/pfilt.c (file contents):
Revision 2.14 by greg, Wed May 31 08:50:27 1995 UTC vs.
Revision 2.18 by greg, Wed May 22 10:42:08 1996 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1992 Regents of the University of California */
1 > /* Copyright (c) 1996 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 17 | Line 17 | static char SCCSid[] = "$SunId$ LBL";
17  
18   #include  "color.h"
19  
20 + #include  "view.h"
21 +
22   #include  "resolu.h"
23  
24   #include  "paths.h"
# Line 64 | Line 66 | int  correctaspect = 0;                /* aspect ratio correction? *
66  
67   int  wrongformat = 0;
68  
69 + VIEW  ourview = STDVIEW;
70 + int  gotview = 0;
71 + int  wrapfilt = 0;              /* wrap filter horizontally? */
72 +
73 + int  estatus = 0;               /* exit status (for non-fatal errors) */
74 +
75   int  xrad;                      /* x search radius */
76   int  yrad;                      /* y search radius */
77   int  xbrad;                     /* x box size */
# Line 147 | Line 155 | char  **argv;
155                                          fprintf(stderr,
156                                                  "%s: exposure out of range\n",
157                                                          argv[0]);
158 <                                        exit(1);
158 >                                        quit(1);
159                                  }
160                                  switch (argv[i][2]) {
161                                  case '\0':
# Line 267 | Line 275 | char  **argv;
275          }
276          if (!(order & YMAJOR))
277                  inpaspect = 1.0/inpaspect;
278 +                                        /* wrap around for cylindrical view? */
279 +        wrapfilt = gotview && ourview.type == VT_CYL &&
280 +                        ourview.horiz >= 360.-FTINY && order & YMAJOR;
281                                          /* compute output resolution */
282          if (ncols <= 0)
283                  ncols = x_c*xres + .5;
# Line 298 | Line 309 | char  **argv;
309          }
310          pass2(fin);
311  
312 <        quit(0);
312 >        quit(estatus);
313   }
314  
315  
316 + double
317 + rgb_bright(clr)
318 + COLOR  clr;
319 + {
320 +        return(bright(clr));
321 + }
322 +
323 +
324 + double
325 + xyz_bright(clr)
326 + COLOR  clr;
327 + {
328 +        return(clr[CIEY]);
329 + }
330 +
331 +
332 + double  (*ourbright)() = rgb_bright;
333 +
334 +
335   headline(s)                             /* process line from header */
336   char  *s;
337   {
# Line 310 | Line 340 | char  *s;
340          fputs(s, stdout);               /* copy to output */
341          if (isaspect(s))                /* get aspect ratio */
342                  inpaspect *= aspectval(s);
343 <        else if (isexpos(s))
343 >        else if (isexpos(s))            /* get exposure */
344                  hotlvl *= exposval(s);
345 <        else if (isformat(s)) {
346 <                formatval(fmt, s);
347 <                wrongformat = strcmp(fmt, COLRFMT);
348 <        }
345 >        else if (formatval(fmt, s)) {   /* get format */
346 >                wrongformat = 0;
347 >                if (!strcmp(COLRFMT, fmt))
348 >                        ourbright = rgb_bright;
349 >                else if (!strcmp(CIEFMT, fmt))
350 >                        ourbright = xyz_bright;
351 >                else
352 >                        wrongformat = !globmatch(PICFMT, fmt);
353 >        } else if (isview(s) && sscanview(&ourview, s) > 0)
354 >                gotview++;
355   }
356  
357  
# Line 358 | Line 394 | FILE  *in;
394                                          progname, (int)(100L*i/yres));
395                          yres = i;
396                          y_r = (double)nrows/yres;
397 +                        estatus++;
398                          break;
399                  }
400                  pass1scan(scan, i);
# Line 430 | Line 467 | scan2init()                    /* prepare scanline arrays */
467                          rad *= (y_r + x_c)/2.0;
468  
469                  if (thresh > FTINY) {
433                        xrad = CHECKRAD*THRESHRAD*rad/x_c + xbrad;
434                        yrad = CHECKRAD*THRESHRAD*rad/y_r + ybrad;
470                          orad = CHECKRAD*THRESHRAD*rad + 1;
471 +                        xrad = orad/x_c + xbrad;
472 +                        yrad = orad/y_r + ybrad;
473                          obarsize = 2*orad + 1;
474                  } else {
475                          xrad = CHECKRAD*rad/x_c + 1;
# Line 475 | Line 512 | scan2init()                    /* prepare scanline arrays */
512                          fputaspect(d, stdout);
513          }
514                                          /* record exposure */
515 <        d = bright(exposure);
515 >        d = (*ourbright)(exposure);
516          if (!FEQ(d,1.0))
517                  fputexpos(d, stdout);
518                                          /* record color correction */
# Line 502 | Line 539 | int  r;
539          int  ybot;
540          register int  c;
541                                          /* average input scanlines */
542 <        while (nextrow < r+orad && nextrow < nrows) {
542 >        while (nextrow <= r+orad && nextrow < nrows) {
543                  ybot = (long)nextrow*yres/nrows;
544                  for (c = 0; c < ncols; c++) {
545                          dobox(ctmp, (int)((long)c*xres/ncols),ybot, c,nextrow);
546 <                        greybar[nextrow%obarsize][c] = bright(ctmp);
546 >                        greybar[nextrow%obarsize][c] = (*ourbright)(ctmp);
547                  }
548                                          /* and zero output scanline */
549                  bzero((char *)scoutbar[nextrow%obarsize], ncols*sizeof(COLOR));
# Line 529 | Line 566 | scan2flush()                   /* flush output buffer */
566                          break;
567          if (fflush(stdout) < 0) {
568                  fprintf(stderr, "%s: write error at end of pass2\n", progname);
569 <                exit(1);
569 >                quit(1);
570          }
571   }
572  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines