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

Comparing ray/src/px/ximage.c (file contents):
Revision 1.1 by greg, Thu Feb 2 10:49:43 1989 UTC vs.
Revision 1.27 by greg, Wed Nov 7 13:10:39 1990 UTC

# Line 29 | Line 29 | static char SCCSid[] = "$SunId$ LBL";
29  
30   #include  "pic.h"
31  
32 + #include  "random.h"
33 +
34   #define  controlshift(e)        (((XButtonEvent *)(e))->detail & (ShiftMask|ControlMask))
35  
36   #define  FONTNAME       "9x15"          /* text font we'll use */
# Line 38 | Line 40 | static char SCCSid[] = "$SunId$ LBL";
40   #define  BORWIDTH       5               /* border width */
41   #define  BARHEIGHT      25              /* menu bar size */
42  
43 < double  gamcor = 2.0;                   /* gamcor correction */
43 > double  gamcor = 2.2;                   /* gamma correction */
44  
45 < XRASTER  ourras;                        /* our stored raster image */
45 > XRASTER  *ourras = NULL;                /* our stored raster image */
46  
47   int  dither = 1;                        /* dither colors? */
48   int  fast = 0;                          /* keep picture in Pixmap? */
# Line 51 | Line 53 | Font  fontid;                          /* our font */
53   int  maxcolors = 0;                     /* maximum colors */
54   int  greyscale = 0;                     /* in grey */
55  
56 + int  scale = 0;                         /* scalefactor; power of two */
57 +
58   int  xoff = 0;                          /* x image offset */
59   int  yoff = 0;                          /* y image offset */
60  
61 < VIEW  ourview = STDVIEW(0);             /* image view parameters */
61 > VIEW  ourview = STDVIEW;                /* image view parameters */
62   int  gotview = 0;                       /* got parameters from file */
63  
64   COLR  *scanline;                        /* scan line buffer */
# Line 82 | Line 86 | extern long  ftell();
86  
87   extern char  *malloc(), *calloc();
88  
89 < extern double  atof();
89 > extern double  atof(), pow(), log();
90  
91  
92   main(argc, argv)
# Line 112 | Line 116 | char  *argv[];
116                          case 'f':
117                                  fast = !fast;
118                                  break;
119 +                        case 'e':
120 +                                if (argv[i+1][0] != '+' && argv[i+1][0] != '-')
121 +                                        goto userr;
122 +                                scale = atoi(argv[++i]);
123 +                                break;
124                          case 'g':
125                                  gamcor = atof(argv[++i]);
126                                  break;
# Line 130 | Line 139 | char  *argv[];
139                          sprintf(errmsg, "can't open file \"%s\"", fname);
140                          quiterr(errmsg);
141                  }
142 <        } else
134 <                goto userr;
135 <
142 >        }
143                                  /* get header */
144          getheader(fin, headline);
145                                  /* get picture dimensions */
146 <        if (fscanf(fin, "-Y %d +X %d\n", &ymax, &xmax) != 2)
146 >        if (fgetresolu(&xmax, &ymax, fin) != (YMAJOR|YDECR))
147                  quiterr("bad picture size");
148                                  /* set view parameters */
149 <        if (gotview) {
150 <                ourview.hresolu = xmax;
144 <                ourview.vresolu = ymax;
145 <                if (setview(&ourview) != NULL)
146 <                        gotview = 0;
147 <        }
149 >        if (gotview && setview(&ourview) != NULL)
150 >                gotview = 0;
151          if ((scanline = (COLR *)malloc(xmax*sizeof(COLR))) == NULL)
152                  quiterr("out of memory");
153  
# Line 154 | Line 157 | char  *argv[];
157                  getevent();             /* main loop */
158   userr:
159          fprintf(stderr,
160 <        "Usage: %s [=geometry][-b][-m][-d][-f][-c ncolors] file\n",
160 >        "Usage: %s [=geometry][-b][-m][-d][-f][-c ncolors][-e +/-stops] file\n",
161                          progname);
162          quit(1);
163   }
# Line 163 | Line 166 | userr:
166   headline(s)             /* get relevant info from header */
167   char  *s;
168   {
169 <        static char  *altname[] = {"rview","rpict","VIEW=",NULL};
169 >        static char  *altname[] = {"rview","rpict",VIEWSTR,NULL};
170          register char  **an;
171  
172 <        if (!strncmp(s, "EXPOSURE=", 9))
173 <                exposure *= atof(s+9);
172 >        if (isexpos(s))
173 >                exposure *= exposval(s);
174          else
175                  for (an = altname; *an != NULL; an++)
176                          if (!strncmp(*an, s, strlen(*an))) {
177 <                                if (sscanview(&ourview, s+strlen(*an)) == 0)
177 >                                if (sscanview(&ourview, s+strlen(*an)) > 0)
178                                          gotview++;
179                                  return;
180                          }
181   }
182  
183  
181 char *
182 sskip(s)                /* skip a word */
183 register char  *s;
184 {
185        while (isspace(*s)) s++;
186        while (*s && !isspace(*s)) s++;
187        return(s);
188 }
189
190
184   init()                  /* get data and open window */
185   {
186          register int  i;
194        colormap  ourmap;
187          OpaqueFrame  mainframe;
188          char  defgeom[32];
189          
# Line 213 | Line 205 | init()                 /* get data and open window */
205                  maxcolors = 1<<DisplayPlanes();
206                  if (maxcolors > 4) maxcolors -= 2;
207          }
216        ourras.width = xmax;
217        ourras.height = ymax;
208                                  /* store image */
209 <        if (maxcolors <= 2) {           /* monochrome */
210 <                ourras.data.m = (unsigned short *)malloc(BitmapSize(xmax,ymax));
221 <                if (ourras.data.m == NULL)
222 <                        goto memerr;
223 <                getmono();
224 <        } else {
225 <                ourras.data.bz = (unsigned char *)malloc(BZPixmapSize(xmax,ymax));
226 <                if (ourras.data.bz == NULL)
227 <                        goto memerr;
228 <                if (greyscale)
229 <                        biq(dither,maxcolors,1,ourmap);
230 <                else
231 <                        ciq(dither,maxcolors,1,ourmap);
232 <                if (init_rcolors(&ourras, ourmap) == 0)
233 <                        goto memerr;
234 <        }
209 >        getras();
210 >
211          mainframe.bdrwidth = BORWIDTH;
212          mainframe.border = WhitePixmap;
213          mainframe.background = BlackPixmap;
# Line 284 | Line 260 | int  code;
260   }
261  
262  
263 + getras()                                /* get raster file */
264 + {
265 +        colormap        ourmap;
266 +
267 +        ourras = (XRASTER *)calloc(1, sizeof(XRASTER));
268 +        if (ourras == NULL)
269 +                goto memerr;
270 +        ourras->width = xmax;
271 +        ourras->height = ymax;
272 +        if (maxcolors <= 2) {           /* monochrome */
273 +                ourras->data.m = (unsigned short *)malloc(BitmapSize(xmax,ymax));
274 +                if (ourras->data.m == NULL)
275 +                        goto memerr;
276 +                getmono();
277 +        } else {
278 +                ourras->data.bz = (unsigned char *)malloc(BZPixmapSize(xmax,ymax));
279 +                if (ourras->data.bz == NULL)
280 +                        goto memerr;
281 +                if (greyscale)
282 +                        biq(dither,maxcolors,1,ourmap);
283 +                else
284 +                        ciq(dither,maxcolors,1,ourmap);
285 +                if (init_rcolors(ourras, ourmap) == 0)
286 +                        goto memerr;
287 +        }
288 +        return;
289 + memerr:
290 +        quiterr("out of memory");
291 + }
292 +
293 +
294   getevent()                              /* process the next event */
295   {
296          WindowInfo  info;
# Line 303 | Line 310 | getevent()                             /* process the next event */
310                  fixwindow(&e);
311                  break;
312          case UnmapWindow:
313 <                unmap_rcolors(&ourras);
313 >                unmap_rcolors(ourras);
314                  break;
315          case ButtonPressed:
316                  if (controlshift(&e))
# Line 326 | Line 333 | redraw(x, y, w, h)                     /* redraw section of window */
333   int  x, y;
334   int  w, h;
335   {
336 <        map_rcolors(&ourras);
336 >        if (ourras->ncolors && map_rcolors(ourras) == NULL) {
337 >                fprintf(stderr, "%s: cannot allocate colors\n", progname);
338 >                return(-1);
339 >        }
340          if (fast)
341 <                make_rpixmap(&ourras);
342 <        return(patch_raster(wind,x-xoff,y-yoff,x,y,w,h,&ourras) ? 0 : -1);
341 >                make_rpixmap(ourras);
342 >        return(patch_raster(wind,x-xoff,y-yoff,x,y,w,h,ourras) ? 0 : -1);
343   }
344  
345  
# Line 338 | Line 348 | XKeyEvent  *ekey;
348   {
349          char  buf[80];
350          COLOR  cval;
351 +        Color  cvx;
352          char  *cp;
353          int  n;
354 +        double  comp;
355          FVECT  rorg, rdir;
356  
357          cp = XLookupMapping(ekey, &n);
# Line 347 | Line 359 | XKeyEvent  *ekey;
359                  return(0);
360          switch (*cp) {                  /* interpret command */
361          case 'q':
362 <        case CTRL(D):                           /* quiterr */
362 >        case CTRL(D):                           /* quit */
363                  quit(0);
364          case '\n':
365          case '\r':
# Line 358 | Line 370 | XKeyEvent  *ekey;
370                  switch (*cp) {
371                  case '\n':
372                  case '\r':                              /* radiance */
373 <                        sprintf(buf, "%-3g", intens(cval)/exposure);
373 >                        sprintf(buf, "%.3f", intens(cval)/exposure);
374                          break;
375                  case 'l':                               /* luminance */
376 <                        sprintf(buf, "%-3gL", bright(cval)*683.0/exposure);
376 >                        sprintf(buf, "%.0fn", bright(cval)*683.0/exposure);
377                          break;
378                  case 'c':                               /* color */
379 +                        comp = pow(2.0, (double)scale);
380                          sprintf(buf, "(%.2f,%.2f,%.2f)",
381 <                                        colval(cval,RED),
382 <                                        colval(cval,GRN),
383 <                                        colval(cval,BLU));
381 >                                        colval(cval,RED)*comp,
382 >                                        colval(cval,GRN)*comp,
383 >                                        colval(cval,BLU)*comp);
384                          break;
385                  }
386                  XText(wind, box.xmin, box.ymin, buf, strlen(buf),
387                                  fontid, BlackPixel, WhitePixel);
388                  return(0);
389 +        case 'i':                               /* identify (contour) */
390 +                if (ourras->pixels == NULL)
391 +                        return(-1);
392 +                n = ourras->data.bz[ekey->x-xoff+BZPixmapSize(xmax,ekey->y-yoff)];
393 +                n = ourras->pmap[n];
394 +                cvx.pixel = ourras->cdefs[n].pixel;
395 +                cvx.red = random() & 65535;
396 +                cvx.green = random() & 65535;
397 +                cvx.blue = random() & 65535;
398 +                XStoreColor(&cvx);
399 +                return(0);
400          case 'p':                               /* position */
401                  sprintf(buf, "(%d,%d)", ekey->x-xoff, ymax-1-ekey->y+yoff);
402                  XText(wind, ekey->x, ekey->y, buf, strlen(buf),
# Line 383 | Line 407 | XKeyEvent  *ekey;
407                          XFeep(0);
408                          return(-1);
409                  }
410 <                rayview(rorg, rdir, &ourview,
411 <                                ekey->x-xoff + .5, ymax-1-ekey->y+yoff + .5);
410 >                if (viewray(rorg, rdir, &ourview, (ekey->x-xoff+.5)/xmax,
411 >                                (ymax-1-ekey->y+yoff+.5)/ymax) < 0)
412 >                        return(-1);
413                  printf("%e %e %e ", rorg[0], rorg[1], rorg[2]);
414                  printf("%e %e %e\n", rdir[0], rdir[1], rdir[2]);
415                  fflush(stdout);
416                  return(0);
417 +        case '=':                               /* adjust exposure */
418 +                if (avgbox(cval) == -1)
419 +                        return(-1);
420 +                n = log(.5/bright(cval))/.69315 - scale;        /* truncate */
421 +                if (n == 0)
422 +                        return(0);
423 +                scale_rcolors(ourras, pow(2.0, (double)n));
424 +                scale += n;
425 +                sprintf(buf, "%+d", scale);
426 +                XText(wind, box.xmin, box.ymin, buf, strlen(buf),
427 +                                fontid, BlackPixel, WhitePixel);
428 +                XFlush();
429 +                free_raster(ourras);
430 +                getras();
431 +        /* fall through */
432          case CTRL(R):                           /* redraw */
433 +        case CTRL(L):
434 +                unmap_rcolors(ourras);
435                  XClear(wind);
436                  return(redraw(0, 0, width, height));
437          case ' ':                               /* clear */
# Line 501 | Line 543 | getmono()                      /* get monochrome data */
543          register unsigned short *dp;
544          register int    x, err;
545          int     y;
546 <        rgbpixel        *inline;
546 >        rgbpixel        *inl;
547          short   *cerr;
548  
549 <        if ((inline = (rgbpixel *)malloc(xmax*sizeof(rgbpixel))) == NULL
549 >        if ((inl = (rgbpixel *)malloc(xmax*sizeof(rgbpixel))) == NULL
550                          || (cerr = (short *)calloc(xmax,sizeof(short))) == NULL)
551 <                quit("out of memory in getmono");
552 <        dp = ourras.data.m - 1;
551 >                quiterr("out of memory in getmono");
552 >        dp = ourras->data.m - 1;
553          for (y = 0; y < ymax; y++) {
554 <                picreadline3(y, inline);
554 >                picreadline3(y, inl);
555                  err = 0;
556                  for (x = 0; x < xmax; x++) {
557                          if (!(x&0xf))
558                                  *++dp = 0;
559 <                        err += rgb_bright(&inline[x]) + cerr[x];
559 >                        err += rgb_bright(&inl[x]) + cerr[x];
560                          if (err > 127)
561                                  err -= 255;
562                          else
# Line 522 | Line 564 | getmono()                      /* get monochrome data */
564                          cerr[x] = err >>= 1;
565                  }
566          }
567 <        free((char *)inline);
567 >        free((char *)inl);
568          free((char *)cerr);
569   }
570  
571  
572 < init_rcolors(xr, cmap)                          /* assign color values */
572 > init_rcolors(xr, cmap)                          /* (re)assign color values */
573   register XRASTER        *xr;
574   colormap        cmap;
575   {
# Line 558 | Line 600 | colormap       cmap;
600   }
601  
602  
603 + scale_rcolors(xr, sf)                   /* scale color map */
604 + register XRASTER        *xr;
605 + double  sf;
606 + {
607 +        register int    i;
608 +        long    maxv;
609 +
610 +        if (xr->pixels == NULL)
611 +                return;
612 +
613 +        sf = pow(sf, 1.0/gamcor);
614 +        maxv = 65535/sf;
615 +
616 +        for (i = xr->ncolors; i--; ) {
617 +                xr->cdefs[i].red = xr->cdefs[i].red > maxv ?
618 +                                65535 :
619 +                                xr->cdefs[i].red * sf;
620 +                xr->cdefs[i].green = xr->cdefs[i].green > maxv ?
621 +                                65535 :
622 +                                xr->cdefs[i].green * sf;
623 +                xr->cdefs[i].blue = xr->cdefs[i].blue > maxv ?
624 +                                65535 :
625 +                                xr->cdefs[i].blue * sf;
626 +        }
627 +        XStoreColors(xr->ncolors, xr->cdefs);
628 + }
629 +
630 +
631   getscan(y)
632   int  y;
633   {
# Line 565 | Line 635 | int  y;
635                  if (scanpos == NULL || scanpos[y] == -1)
636                          return(-1);
637                  if (fseek(fin, scanpos[y], 0) == -1)
638 <                        quit("fseek error");
638 >                        quiterr("fseek error");
639                  cury = y;
640          } else if (scanpos != NULL)
641                  scanpos[y] = ftell(fin);
# Line 582 | Line 652 | picreadline3(y, l3)                    /* read in 3-byte scanline */
652   int  y;
653   register rgbpixel  *l3;
654   {
655 <        register BYTE   *l4;
656 <        register int    shift, c;
587 <        int     i;
588 <
655 >        register int    i;
656 >                                                        /* read scanline */
657          if (getscan(y) < 0)
658                  quiterr("cannot seek for picreadline");
659                                                          /* convert scanline */
660 <        for (l4=scanline[0], i=xmax; i--; l4+=4, l3++) {
661 <                shift = l4[EXP] - COLXS;
662 <                if (shift >= 8) {
663 <                        l3->r = l3->g = l3->b = 255;
664 <                } else if (shift <= -8) {
597 <                        l3->r = l3->g = l3->b = 0;
598 <                } else if (shift > 0) {
599 <                        c = l4[RED] << shift;
600 <                        l3->r = c > 255 ? 255 : c;
601 <                        c = l4[GRN] << shift;
602 <                        l3->g = c > 255 ? 255 : c;
603 <                        c = l4[BLU] << shift;
604 <                        l3->b = c > 255 ? 255 : c;
605 <                } else if (shift < 0) {
606 <                        l3->r = l4[RED] >> -shift;
607 <                        l3->g = l4[GRN] >> -shift;
608 <                        l3->b = l4[BLU] >> -shift;
609 <                } else {
610 <                        l3->r = l4[RED];
611 <                        l3->g = l4[GRN];
612 <                        l3->b = l4[BLU];
613 <                }
660 >        normcolrs(scanline, xmax, scale);
661 >        for (i = 0; i < xmax; i++) {
662 >                l3[i].r = scanline[i][RED];
663 >                l3[i].g = scanline[i][GRN];
664 >                l3[i].b = scanline[i][BLU];
665          }
666   }
667  
# Line 619 | Line 670 | picwriteline(y, l)             /* add 8-bit scanline to image */
670   int  y;
671   pixel  *l;
672   {
673 <        bcopy(l, ourras.data.bz+BZPixmapSize(xmax,y), BZPixmapSize(xmax,1));
673 >        bcopy((char *)l, (char *)ourras->data.bz+BZPixmapSize(xmax,y), BZPixmapSize(xmax,1));
674   }
675  
676  
677 < picreadcm(map)                  /* do gamcor correction */
677 > picreadcm(map)                  /* do gamma correction */
678   colormap  map;
679   {
680          extern double  pow();
681          register int  i, val;
682  
683          for (i = 0; i < 256; i++) {
684 <                val = pow(i/256.0, 1.0/gamcor) * 256.0;
684 >                val = pow((i+0.5)/256.0, 1.0/gamcor) * 256.0;
685                  map[0][i] = map[1][i] = map[2][i] = val;
686          }
687   }
# Line 639 | Line 690 | colormap  map;
690   picwritecm(map)                 /* handled elsewhere */
691   colormap  map;
692   {
693 + #ifdef DEBUG
694 +        register int i;
695 +
696 +        for (i = 0; i < 256; i++)
697 +                printf("%d %d %d\n", map[0][i],map[1][i],map[2][i]);
698 + #endif
699   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines