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

Comparing ray/src/px/x11image.c (file contents):
Revision 1.21 by greg, Fri May 3 12:01:44 1991 UTC vs.
Revision 2.38 by greg, Tue Sep 20 15:48:15 1994 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1990 Regents of the University of California */
1 > /* Copyright (c) 1993 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 21 | Line 21 | static char SCCSid[] = "$SunId$ LBL";
21  
22   #include  "standard.h"
23  
24 + #include  <signal.h>
25   #include  <X11/Xlib.h>
26   #include  <X11/cursorfont.h>
27   #include  <X11/Xutil.h>
28 + #include  <X11/Xatom.h>
29  
30   #include  "color.h"
31   #include  "view.h"
30 #include  "pic.h"
32   #include  "x11raster.h"
33   #include  "random.h"
34 + #include  "resolu.h"
35  
36 + #ifdef  __alpha
37 + #define  int4           int
38 + #endif
39 + #ifndef  int4
40 + #define  int4           long
41 + #endif
42 +
43   #define  FONTNAME       "8x13"          /* text font we'll use */
44  
45 < #define  CTRL(c)        ('c'-'@')
45 > #define  CTRL(c)        ((c)-'@')
46  
47   #define  BORWIDTH       5               /* border width */
48  
49   #define  ICONSIZ        (8*10)          /* maximum icon dimension (even 8) */
50  
51   #define  ourscreen      DefaultScreen(thedisplay)
43 #define  ourblack       BlackPixel(thedisplay,ourscreen)
44 #define  ourwhite       WhitePixel(thedisplay,ourscreen)
52   #define  ourroot        RootWindow(thedisplay,ourscreen)
46 #define  ourgc          DefaultGC(thedisplay,ourscreen)
53  
54   #define  revline(x0,y0,x1,y1)   XDrawLine(thedisplay,wind,revgc,x0,y0,x1,y1)
55  
56   #define  redraw(x,y,w,h) patch_raster(wind,(x)-xoff,(y)-yoff,x,y,w,h,ourras)
57  
58   double  gamcor = 2.2;                   /* gamma correction */
59 + char  *gamstr = NULL;                   /* gamma value override */
60  
61   int  dither = 1;                        /* dither colors? */
62   int  fast = 0;                          /* keep picture in Pixmap? */
63  
64 < Window  wind = 0;                       /* our output window */
58 < Font  fontid;                           /* our font */
64 > char    *dispname = NULL;               /* our display name */
65  
66 + Window  wind = 0;                       /* our output window */
67 + unsigned long  ourblack=0, ourwhite=1;  /* black and white for this visual */
68   int  maxcolors = 0;                     /* maximum colors */
69   int  greyscale = 0;                     /* in grey */
70  
# Line 65 | Line 73 | int  scale = 0;                                /* scalefactor; power of two */
73   int  xoff = 0;                          /* x image offset */
74   int  yoff = 0;                          /* y image offset */
75  
76 + int  parent = 0;                        /* number of children, -1 if child */
77 +
78   VIEW  ourview = STDVIEW;                /* image view parameters */
79   int  gotview = 0;                       /* got parameters from file */
80  
81   COLR  *scanline;                        /* scan line buffer */
82  
83 < int  xmax, ymax;                        /* picture resolution */
83 > RESOLU  inpres;                         /* input resolution and ordering */
84 > int  xmax, ymax;                        /* picture dimensions */
85   int  width, height;                     /* window size */
86   char  *fname = NULL;                    /* input file name */
87   FILE  *fin = stdin;                     /* input file */
# Line 81 | Line 92 | double  exposure = 1.0;                        /* exposure compensation use
92  
93   int  wrongformat = 0;                   /* input in another format? */
94  
95 < int  imready = 0;                       /* is image up? */
85 <
95 > GC      ourgc;                          /* standard graphics context */
96   GC      revgc;                          /* graphics context with GXinvert */
97  
98 < XRASTER *ourras;                        /* our stored image */
98 > int             *ourrank;               /* our visual class ranking */
99 > XVisualInfo     ourvis;                 /* our visual */
100 > XRASTER         *ourras;                /* our stored image */
101   unsigned char   *ourdata;               /* our image data */
102  
103   struct {
# Line 101 | Line 113 | char  *progname;
113  
114   char  errmsg[128];
115  
116 + BYTE  clrtab[256][3];                   /* global color map */
117 +
118   extern long  ftell();
119  
120 < extern char  *malloc(), *calloc();
120 > extern char  *getenv();
121  
108 extern double  atof(), pow(), log();
109
122   Display  *thedisplay;
123 + Atom  closedownAtom, wmProtocolsAtom;
124  
125 + int  sigrecv;
126 +
127 + int  onsig() { sigrecv++; }
128 +
129 +
130   main(argc, argv)
131   int  argc;
132   char  *argv[];
133   {
134          int  headline();
135          int  i;
136 +        int  pid;
137          
138          progname = argv[0];
139  
# Line 131 | Line 150 | char  *argv[];
150                                  maxcolors = 2;
151                                  break;
152                          case 'd':
153 <                                dither = !dither;
153 >                                if (argv[i][2] == 'i')
154 >                                        dispname = argv[++i];
155 >                                else
156 >                                        dither = !dither;
157                                  break;
158                          case 'f':
159                                  fast = !fast;
# Line 142 | Line 164 | char  *argv[];
164                                  scale = atoi(argv[++i]);
165                                  break;
166                          case 'g':
167 <                                if (!strcmp(argv[i], "-geometry"))
167 >                                if (argv[i][2] == 'e')
168                                          geometry = argv[++i];
169                                  else
170 <                                        gamcor = atof(argv[++i]);
170 >                                        gamstr = argv[++i];
171                                  break;
172                          default:
173                                  goto userr;
# Line 155 | Line 177 | char  *argv[];
177                  else
178                          break;
179  
180 <        if (i == argc-1) {
180 >        if (i > argc)
181 >                goto userr;
182 >        while (i < argc-1) {
183 >                sigrecv = 0;
184 >                signal(SIGCONT, onsig);
185 >                if ((pid=fork()) == 0) {        /* a child for each picture */
186 >                        parent = -1;
187 >                        break;
188 >                }
189 >                if (pid < 0)
190 >                        quiterr("fork failed");
191 >                parent++;
192 >                while (!sigrecv)
193 >                        pause();        /* wait for wake-up call */
194 >                i++;
195 >        }
196 >        if (i < argc) {                 /* open picture file */
197                  fname = argv[i];
198                  fin = fopen(fname, "r");
199 <                if (fin == NULL) {
200 <                        sprintf(errmsg, "can't open file \"%s\"", fname);
201 <                        quiterr(errmsg);
164 <                }
165 <        } else if (i != argc)
166 <                goto userr;
199 >                if (fin == NULL)
200 >                        quiterr("cannot open picture file");
201 >        }
202                                  /* get header */
203          getheader(fin, headline, NULL);
204                                  /* get picture dimensions */
205 <        if (wrongformat || fgetresolu(&xmax, &ymax, fin) != (YMAJOR|YDECR))
205 >        if (wrongformat || !fgetsresolu(&inpres, fin))
206                  quiterr("bad picture format");
207 +        xmax = scanlen(&inpres);
208 +        ymax = numscans(&inpres);
209                                  /* set view parameters */
210          if (gotview && setview(&ourview) != NULL)
211                  gotview = 0;
212          if ((scanline = (COLR *)malloc(xmax*sizeof(COLR))) == NULL)
213                  quiterr("out of memory");
214  
215 <        init();                 /* get file and open window */
215 >        init(argc, argv);                       /* get file and open window */
216  
217 +        if (parent < 0) {
218 +                kill(getppid(), SIGCONT);       /* signal parent if child */
219 +                sigrecv--;
220 +        }
221          for ( ; ; )
222                  getevent();             /* main loop */
223   userr:
224          fprintf(stderr,
225 <        "Usage: %s [-geometry spec][-b][-m][-d][-f][-c ncolors][-e +/-stops] file\n",
225 > "Usage: %s [-di disp][[-ge] spec][-b][-m][-d][-f][-c nclrs][-e +/-stops][-g gamcor] pic ..\n",
226                          progname);
227 <        quit(1);
227 >        exit(1);
228   }
229  
230  
231   headline(s)             /* get relevant info from header */
232   char  *s;
233   {
193        static char  *altname[] = {"rview","rpict","pinterp",VIEWSTR,NULL};
194        register char  **an;
234          char  fmt[32];
235  
236          if (isexpos(s))
# Line 199 | Line 238 | char  *s;
238          else if (isformat(s)) {
239                  formatval(fmt, s);
240                  wrongformat = strcmp(fmt, COLRFMT);
241 <        } else
242 <                for (an = altname; *an != NULL; an++)
204 <                        if (!strncmp(*an, s, strlen(*an))) {
205 <                                if (sscanview(&ourview, s+strlen(*an)) > 0)
206 <                                        gotview++;
207 <                                return;
208 <                        }
241 >        } else if (isview(s) && sscanview(&ourview, s) > 0)
242 >                gotview++;
243   }
244  
245  
246 < init()                  /* get data and open window */
246 > init(argc, argv)                        /* get data and open window */
247 > int argc;
248 > char **argv;
249   {
214        XWMHints        ourxwmhints;
250          XSetWindowAttributes    ourwinattr;
251 <        XSizeHints  oursizhints;
252 <        register int  i;
251 >        XClassHint      xclshints;
252 >        XWMHints        xwmhints;
253 >        XSizeHints      xszhints;
254 >        XTextProperty   windowName, iconName;
255 >        XGCValues       xgcv;
256 >        char    *name;
257 >        register int    i;
258          
259          if (fname != NULL) {
260                  scanpos = (long *)malloc(ymax*sizeof(long));
261                  if (scanpos == NULL)
262 <                        goto memerr;
262 >                        quiterr("out of memory");
263                  for (i = 0; i < ymax; i++)
264                          scanpos[i] = -1;
265 <        }
266 <        if ((thedisplay = XOpenDisplay(NULL)) == NULL)
267 <                quiterr("can't open display; DISPLAY variable set?");
268 <        if (maxcolors == 0) {           /* get number of available colors */
269 <                i = DisplayPlanes(thedisplay,ourscreen);
270 <                maxcolors = i > 8 ? 256 : 1<<i;
271 <                if (maxcolors > 4) maxcolors -= 2;
272 <        }
265 >                name = fname;
266 >        } else
267 >                name = progname;
268 >                                /* remove directory prefix from name */
269 >        for (i = strlen(name); i-- > 0; )
270 >                if (name[i] == '/')
271 >                        break;
272 >        name += i+1;
273 >        if ((thedisplay = XOpenDisplay(dispname)) == NULL)
274 >                quiterr("cannot open display");
275 >                                /* set gamma value */
276 >        if (gamstr == NULL)             /* get it from the X server */
277 >                gamstr = XGetDefault(thedisplay, "radiance", "gamma");
278 >        if (gamstr == NULL)             /* get it from the environment */
279 >                gamstr = getenv("DISPLAY_GAMMA");
280 >        if (gamstr != NULL)
281 >                gamcor = atof(gamstr);
282 >                                /* get best visual for default screen */
283 >        getbestvis();
284                                  /* store image */
285          getras();
286 <                                /* open window */
287 <        ourwinattr.border_pixel = ourblack;
288 <        ourwinattr.background_pixel = ourwhite;
238 <        wind = XCreateWindow(thedisplay, ourroot, 0, 0, xmax, ymax, BORWIDTH,
239 <                        0, InputOutput, ourras->visual,
240 <                        CWBackPixel|CWBorderPixel, &ourwinattr);
241 <        if (wind == 0)
242 <                quiterr("can't create window");
243 <        width = xmax;
244 <        height = ymax;
245 <        fontid = XLoadFont(thedisplay, FONTNAME);
246 <        if (fontid == 0)
247 <                quiterr("can't get font");
248 <        XSetFont(thedisplay, ourgc, fontid);
249 <        revgc = XCreateGC(thedisplay, wind, 0, 0);
250 <        XSetFunction(thedisplay, revgc, GXinvert);
251 <        XDefineCursor(thedisplay, wind, XCreateFontCursor(thedisplay,
252 <                        XC_diamond_cross));
286 >                                /* get size and position */
287 >        xszhints.flags = 0;
288 >        xszhints.width = xmax; xszhints.height = ymax;
289          if (geometry != NULL) {
290 <                bzero((char *)&oursizhints, sizeof(oursizhints));
291 <                i = XParseGeometry(geometry, &oursizhints.x, &oursizhints.y,
292 <                                (unsigned *)&oursizhints.width,
257 <                                (unsigned *)&oursizhints.height);
290 >                i = XParseGeometry(geometry, &xszhints.x, &xszhints.y,
291 >                                (unsigned *)&xszhints.width,
292 >                                (unsigned *)&xszhints.height);
293                  if ((i&(WidthValue|HeightValue)) == (WidthValue|HeightValue))
294 <                        oursizhints.flags |= USSize;
295 <                else {
296 <                        oursizhints.width = xmax;
262 <                        oursizhints.height = ymax;
263 <                        oursizhints.flags |= PSize;
264 <                }
294 >                        xszhints.flags |= USSize;
295 >                else
296 >                        xszhints.flags |= PSize;
297                  if ((i&(XValue|YValue)) == (XValue|YValue)) {
298 <                        oursizhints.flags |= USPosition;
298 >                        xszhints.flags |= USPosition;
299                          if (i & XNegative)
300 <                                oursizhints.x += DisplayWidth(thedisplay,
301 <                                ourscreen)-1-oursizhints.width-2*BORWIDTH;
300 >                                xszhints.x += DisplayWidth(thedisplay,
301 >                                ourscreen)-1-xszhints.width-2*BORWIDTH;
302                          if (i & YNegative)
303 <                                oursizhints.y += DisplayHeight(thedisplay,
304 <                                ourscreen)-1-oursizhints.height-2*BORWIDTH;
303 >                                xszhints.y += DisplayHeight(thedisplay,
304 >                                ourscreen)-1-xszhints.height-2*BORWIDTH;
305                  }
274                XSetNormalHints(thedisplay, wind, &oursizhints);
306          }
307 <        ourxwmhints.flags = InputHint|IconPixmapHint;
308 <        ourxwmhints.input = True;
309 <        ourxwmhints.icon_pixmap = XCreateBitmapFromData(thedisplay,
307 >        /* open window */
308 >        ourwinattr.border_pixel = ourwhite;
309 >        ourwinattr.background_pixel = ourblack;
310 >        ourwinattr.colormap = XCreateColormap(thedisplay, ourroot,
311 >                        ourvis.visual, AllocNone);
312 >        ourwinattr.event_mask = ExposureMask|KeyPressMask|ButtonPressMask|
313 >                        ButtonReleaseMask|ButtonMotionMask|StructureNotifyMask;
314 >        ourwinattr.cursor = XCreateFontCursor(thedisplay, XC_diamond_cross);
315 >        wind = XCreateWindow(thedisplay, ourroot, xszhints.x, xszhints.y,
316 >                        xszhints.width, xszhints.height, BORWIDTH,
317 >                        ourvis.depth, InputOutput, ourvis.visual, CWEventMask|
318 >                        CWCursor|CWBackPixel|CWBorderPixel|CWColormap, &ourwinattr);
319 >        if (wind == 0)
320 >                quiterr("cannot create window");
321 >        width = xmax;
322 >        height = ymax;
323 >        /* prepare graphics drawing context */
324 >        if ((xgcv.font = XLoadFont(thedisplay, FONTNAME)) == 0)
325 >                quiterr("cannot get font");
326 >        xgcv.foreground = ourblack;
327 >        xgcv.background = ourwhite;
328 >        ourgc = XCreateGC(thedisplay, wind, GCForeground|GCBackground|
329 >                        GCFont, &xgcv);
330 >        xgcv.function = GXinvert;
331 >        revgc = XCreateGC(thedisplay, wind, GCForeground|GCBackground|
332 >                        GCFunction, &xgcv);
333 >
334 >        /* set up the window manager */
335 >        xwmhints.flags = InputHint|IconPixmapHint;
336 >        xwmhints.input = True;
337 >        xwmhints.icon_pixmap = XCreateBitmapFromData(thedisplay,
338                          wind, icondata, iconwidth, iconheight);
339 <        XSetWMHints(thedisplay, wind, &ourxwmhints);
340 <        XSelectInput(thedisplay, wind, ButtonPressMask|ButtonReleaseMask
341 <                        |ButtonMotionMask|StructureNotifyMask
342 <                        |KeyPressMask|ExposureMask);
339 >
340 >        windowName.encoding = iconName.encoding = XA_STRING;
341 >        windowName.format = iconName.format = 8;
342 >        windowName.value = (u_char *)name;
343 >        windowName.nitems = strlen(windowName.value);
344 >        iconName.value = (u_char *)name;
345 >        iconName.nitems = strlen(windowName.value);
346 >
347 >        xclshints.res_name = NULL;
348 >        xclshints.res_class = "Ximage";
349 >        XSetWMProperties(thedisplay, wind, &windowName, &iconName,
350 >                        argv, argc, &xszhints, &xwmhints, &xclshints);
351 >        closedownAtom = XInternAtom(thedisplay, "WM_DELETE_WINDOW", False);
352 >        wmProtocolsAtom = XInternAtom(thedisplay, "WM_PROTOCOLS", False);
353 >        XSetWMProtocols(thedisplay, wind, &closedownAtom, 1);
354 >
355          XMapWindow(thedisplay, wind);
285                                /* make sure the image is up */
286        do
287                getevent();
288        while (!imready);
289                                /* store name as ready signal */
290        XStoreName(thedisplay, wind, fname == NULL ? progname : fname);
356          return;
292 memerr:
293        quiterr("out of memory");
357   } /* end of init */
358  
359  
360   quiterr(err)            /* print message and exit */
361   char  *err;
362   {
363 <        if (err != NULL) {
364 <                fprintf(stderr, "%s: %s\n", progname, err);
365 <                exit(1);
363 >        register int  es;
364 >        int  cs;
365 >
366 >        if (es = err != NULL)
367 >                fprintf(stderr, "%s: %s: %s\n", progname,
368 >                                fname==NULL?"<stdin>":fname, err);
369 >        if (thedisplay != NULL)
370 >                XCloseDisplay(thedisplay);
371 >        if (parent < 0 & sigrecv == 0)
372 >                kill(getppid(), SIGCONT);
373 >        while (parent > 0 && wait(&cs) != -1) { /* wait for any children */
374 >                if (es == 0)
375 >                        es = cs>>8 & 0xff;
376 >                parent--;
377          }
378 <        exit(0);
378 >        exit(es);
379   }
380  
381  
382 < eputs(s)
383 < char    *s;
382 > static int
383 > viscmp(v1,v2)           /* compare visual to see which is better, descending */
384 > register XVisualInfo    *v1, *v2;
385   {
386 <        fputs(s, stderr);
386 >        int     bad1 = 0, bad2 = 0;
387 >        register int  *rp;
388 >
389 >        if (v1->class == v2->class) {
390 >                if (v1->class == TrueColor || v1->class == DirectColor) {
391 >                                        /* prefer 24-bit to 32-bit */
392 >                        if (v1->depth == 24 && v2->depth == 32)
393 >                                return(-1);
394 >                        if (v1->depth == 32 && v2->depth == 24)
395 >                                return(1);
396 >                        return(0);
397 >                }
398 >                                        /* don't be too greedy */
399 >                if (maxcolors <= 1<<v1->depth && maxcolors <= 1<<v2->depth)
400 >                        return(v1->depth - v2->depth);
401 >                return(v2->depth - v1->depth);
402 >        }
403 >                                        /* prefer Pseudo when < 24-bit */
404 >        if ((v1->class == TrueColor || v1->class == DirectColor) &&
405 >                        v1->depth < 24)
406 >                bad1 = 1;
407 >        if ((v2->class == TrueColor || v2->class == DirectColor) &&
408 >                        v2->depth < 24)
409 >                bad2 = -1;
410 >        if (bad1 | bad2)
411 >                return(bad1+bad2);
412 >                                        /* otherwise, use class ranking */
413 >        for (rp = ourrank; *rp != -1; rp++) {
414 >                if (v1->class == *rp)
415 >                        return(-1);
416 >                if (v2->class == *rp)
417 >                        return(1);
418 >        }
419 >        return(0);
420   }
421  
422  
423 < quit(code)
316 < int  code;
423 > getbestvis()                    /* get the best visual for this screen */
424   {
425 <        exit(code);
425 > #ifdef DEBUG
426 > static char  vistype[][12] = {
427 >                "StaticGray",
428 >                "GrayScale",
429 >                "StaticColor",
430 >                "PseudoColor",
431 >                "TrueColor",
432 >                "DirectColor"
433 > };
434 > #endif
435 >        static int      rankings[3][6] = {
436 >                {TrueColor,DirectColor,PseudoColor,GrayScale,StaticGray,-1},
437 >                {PseudoColor,GrayScale,StaticGray,-1},
438 >                {PseudoColor,GrayScale,StaticGray,-1}
439 >        };
440 >        XVisualInfo     *xvi;
441 >        int     vismatched;
442 >        register int    i, j;
443 >
444 >        if (greyscale) {
445 >                ourrank = rankings[2];
446 >                if (maxcolors < 2) maxcolors = 256;
447 >        } else if (maxcolors >= 2 && maxcolors <= 256)
448 >                ourrank = rankings[1];
449 >        else {
450 >                ourrank = rankings[0];
451 >                maxcolors = 256;
452 >        }
453 >                                        /* find best visual */
454 >        ourvis.screen = ourscreen;
455 >        xvi = XGetVisualInfo(thedisplay,VisualScreenMask,&ourvis,&vismatched);
456 >        if (xvi == NULL)
457 >                quiterr("no visuals for this screen!");
458 > #ifdef DEBUG
459 >        fprintf(stderr, "Supported visuals:\n");
460 >        for (i = 0; i < vismatched; i++)
461 >                fprintf(stderr, "\ttype %s, depth %d\n",
462 >                                vistype[xvi[i].class], xvi[i].depth);
463 > #endif
464 >        for (i = 0, j = 1; j < vismatched; j++)
465 >                if (viscmp(&xvi[i],&xvi[j]) > 0)
466 >                        i = j;
467 >                                        /* compare to least acceptable */
468 >        for (j = 0; ourrank[j++] != -1; )
469 >                ;
470 >        ourvis.class = ourrank[--j];
471 >        ourvis.depth = 1;
472 >        if (viscmp(&xvi[i],&ourvis) > 0)
473 >                quiterr("inadequate visuals on this screen");
474 >                                        /* OK, we'll use it */
475 >        copystruct(&ourvis, &xvi[i]);
476 > #ifdef DEBUG
477 >        fprintf(stderr, "Selected visual type %s, depth %d\n",
478 >                        vistype[ourvis.class], ourvis.depth);
479 > #endif
480 >                                        /* make appropriate adjustments */
481 >        if (ourvis.class == GrayScale || ourvis.class == StaticGray)
482 >                greyscale = 1;
483 >        if (ourvis.depth <= 8 && ourvis.colormap_size < maxcolors)
484 >                maxcolors = ourvis.colormap_size;
485 >        if (ourvis.class == StaticGray) {
486 >                ourblack = 0;
487 >                ourwhite = 255;
488 >        } else if (ourvis.class == PseudoColor) {
489 >                ourblack = BlackPixel(thedisplay,ourscreen);
490 >                ourwhite = WhitePixel(thedisplay,ourscreen);
491 >                if ((ourblack|ourwhite) & ~255L) {
492 >                        ourblack = 0;
493 >                        ourwhite = 1;
494 >                }
495 >                if (maxcolors > 4)
496 >                        maxcolors -= 2;
497 >        } else {
498 >                ourblack = 0;
499 >                ourwhite = ourvis.red_mask|ourvis.green_mask|ourvis.blue_mask;
500 >        }
501 >        XFree((char *)xvi);
502   }
503  
504  
505   getras()                                /* get raster file */
506   {
324        colormap        ourmap;
507          XVisualInfo     vinfo;
508  
509          if (maxcolors <= 2) {           /* monochrome */
510                  ourdata = (unsigned char *)malloc(ymax*((xmax+7)/8));
511                  if (ourdata == NULL)
512                          goto fail;
513 <                ourras = make_raster(thedisplay, ourscreen, 1, ourdata,
513 >                ourras = make_raster(thedisplay, &ourvis, 1, ourdata,
514                                  xmax, ymax, 8);
515                  if (ourras == NULL)
516                          goto fail;
517                  getmono();
518 <        } else if (XMatchVisualInfo(thedisplay,ourscreen,24,TrueColor,&vinfo)
519 <                                                /* kludge for DirectColor */
338 <        || XMatchVisualInfo(thedisplay,ourscreen,24,DirectColor,&vinfo)) {
339 <                ourdata = (unsigned char *)malloc(xmax*ymax*3);
518 >        } else if (ourvis.class == TrueColor | ourvis.class == DirectColor) {
519 >                ourdata = (unsigned char *)malloc(sizeof(int4)*xmax*ymax);
520                  if (ourdata == NULL)
521                          goto fail;
522 <                ourras = make_raster(thedisplay, ourscreen, 24, ourdata,
523 <                                xmax, ymax, 8);
522 >                ourras = make_raster(thedisplay, &ourvis, sizeof(int4)*8,
523 >                                ourdata, xmax, ymax, 32);
524                  if (ourras == NULL)
525                          goto fail;
526                  getfull();
# Line 348 | Line 528 | getras()                               /* get raster file */
528                  ourdata = (unsigned char *)malloc(xmax*ymax);
529                  if (ourdata == NULL)
530                          goto fail;
531 <                ourras = make_raster(thedisplay, ourscreen, 8, ourdata,
531 >                ourras = make_raster(thedisplay, &ourvis, 8, ourdata,
532                                  xmax, ymax, 8);
533                  if (ourras == NULL)
534                          goto fail;
535 <                if (greyscale)
536 <                        biq(dither,maxcolors,1,ourmap);
535 >                if (greyscale | ourvis.class == StaticGray)
536 >                        getgrey();
537                  else
538 <                        ciq(dither,maxcolors,1,ourmap);
539 <                if (init_rcolors(ourras, ourmap[0], ourmap[1], ourmap[2]) == 0)
538 >                        getmapped();
539 >                if (ourvis.class != StaticGray && !init_rcolors(ourras,clrtab))
540                          goto fail;
541          }
542          return;
# Line 367 | Line 547 | fail:
547  
548   getevent()                              /* process the next event */
549   {
550 <        union {
371 <                XEvent  u;
372 <                XConfigureEvent  c;
373 <                XExposeEvent  e;
374 <                XButtonPressedEvent  b;
375 <                XKeyPressedEvent  k;
376 <        } e;
550 >        XEvent xev;
551  
552 <        XNextEvent(thedisplay, &e.u);
553 <        switch (e.u.type) {
552 >        XNextEvent(thedisplay, &xev);
553 >        switch ((int)xev.type) {
554          case KeyPress:
555 <                docom(&e.k);
555 >                docom(&xev.xkey);
556                  break;
557          case ConfigureNotify:
558 <                width = e.c.width;
559 <                height = e.c.height;
558 >                width = xev.xconfigure.width;
559 >                height = xev.xconfigure.height;
560                  break;
561          case MapNotify:
562                  map_rcolors(ourras, wind);
563                  if (fast)
564 <                        make_rpixmap(ourras);
564 >                        make_rpixmap(ourras, wind);
565                  break;
566          case UnmapNotify:
567 <                unmap_rcolors(ourras);
567 >                if (!fast)
568 >                        unmap_rcolors(ourras);
569                  break;
570          case Expose:
571 <                redraw(e.e.x, e.e.y, e.e.width, e.e.height);
572 <                imready++;
571 >                redraw(xev.xexpose.x, xev.xexpose.y,
572 >                                xev.xexpose.width, xev.xexpose.height);
573                  break;
574          case ButtonPress:
575 <                if (e.b.state & (ShiftMask|ControlMask))
576 <                        moveimage(&e.b);
575 >                if (xev.xbutton.state & (ShiftMask|ControlMask))
576 >                        moveimage(&xev.xbutton);
577 >                else if (xev.xbutton.button == Button2)
578 >                        traceray(xev.xbutton.x, xev.xbutton.y);
579                  else
580 <                        getbox(&e.b);
580 >                        getbox(&xev.xbutton);
581                  break;
582 +        case ClientMessage:
583 +                if ((xev.xclient.message_type == wmProtocolsAtom) &&
584 +                                (xev.xclient.data.l[0] == closedownAtom))
585 +                        quiterr(NULL);
586 +                break;
587          }
588   }
589  
590  
591 < docom(ekey)                                     /* execute command */
591 > traceray(xpos, ypos)                    /* print ray corresponding to pixel */
592 > int  xpos, ypos;
593 > {
594 >        FLOAT  hv[2];
595 >        FVECT  rorg, rdir;
596 >
597 >        if (!gotview) {         /* no view, no can do */
598 >                XBell(thedisplay, 0);
599 >                return(-1);
600 >        }
601 >        pix2loc(hv, &inpres, xpos-xoff, ypos-yoff);
602 >        if (viewray(rorg, rdir, &ourview, hv[0], hv[1]) < 0)
603 >                return(-1);
604 >        printf("%e %e %e ", rorg[0], rorg[1], rorg[2]);
605 >        printf("%e %e %e\n", rdir[0], rdir[1], rdir[2]);
606 >        fflush(stdout);
607 >        return(0);
608 > }
609 >
610 >
611 > docom(ekey)                             /* execute command */
612   XKeyPressedEvent  *ekey;
613   {
614          char  buf[80];
# Line 414 | Line 616 | XKeyPressedEvent  *ekey;
616          XColor  cvx;
617          int  com, n;
618          double  comp;
619 <        FVECT  rorg, rdir;
619 >        FLOAT  hv[2];
620  
621          n = XLookupString(ekey, buf, sizeof(buf), NULL, NULL);
622          if (n == 0)
# Line 422 | Line 624 | XKeyPressedEvent  *ekey;
624          com = buf[0];
625          switch (com) {                  /* interpret command */
626          case 'q':
627 <        case CTRL(D):                           /* quit */
628 <                quit(0);
627 >        case 'Q':
628 >        case CTRL('D'):                         /* quit */
629 >                quiterr(NULL);
630          case '\n':
631          case '\r':
632          case 'l':
# Line 462 | Line 665 | XKeyPressedEvent  *ekey;
665                  XStoreColor(thedisplay, ourras->cmap, &cvx);
666                  return(0);
667          case 'p':                               /* position */
668 <                sprintf(buf, "(%d,%d)", ekey->x-xoff, ymax-1-ekey->y+yoff);
668 >                pix2loc(hv, &inpres, ekey->x-xoff, ekey->y-yoff);
669 >                sprintf(buf, "(%d,%d)", (int)(hv[0]*inpres.xr),
670 >                                (int)(hv[1]*inpres.yr));
671                  XDrawImageString(thedisplay, wind, ourgc, ekey->x, ekey->y,
672                                          buf, strlen(buf));
673                  return(0);
674          case 't':                               /* trace */
675 <                if (!gotview) {
471 <                        XBell(thedisplay, 0);
472 <                        return(-1);
473 <                }
474 <                if (viewray(rorg, rdir, &ourview,
475 <                                (ekey->x-xoff+.5)/xmax,
476 <                                (ymax-1-ekey->y+yoff+.5)/ymax) < 0)
477 <                        return(-1);
478 <                printf("%e %e %e ", rorg[0], rorg[1], rorg[2]);
479 <                printf("%e %e %e\n", rdir[0], rdir[1], rdir[2]);
480 <                fflush(stdout);
481 <                return(0);
675 >                return(traceray(ekey->x, ekey->y));
676          case '=':                               /* adjust exposure */
677 +        case '@':                               /* adaptation level */
678                  if (avgbox(cval) == -1)
679                          return(-1);
680 <                n = log(.5/bright(cval))/.69315 - scale;        /* truncate */
680 >                comp = bright(cval);
681 >                if (comp < 1e-20) {
682 >                        XBell(thedisplay, 0);
683 >                        return(-1);
684 >                }
685 >                if (com == '@')
686 >                        comp = 106./exposure/
687 >                        pow(1.219+pow(comp*WHTEFFICACY/exposure,.4),2.5);
688 >                else
689 >                        comp = .5/comp;
690 >                comp = log(comp)/.69315 - scale;
691 >                n = comp < 0 ? comp-.5 : comp+.5 ;      /* round */
692                  if (n == 0)
693                          return(0);
694                  scale_rcolors(ourras, pow(2.0, (double)n));
# Line 495 | Line 701 | XKeyPressedEvent  *ekey;
701                  free_raster(ourras);
702                  getras();
703          /* fall through */
704 <        case CTRL(R):                           /* redraw */
705 <        case CTRL(L):
704 >        case CTRL('R'):                         /* redraw */
705 >        case CTRL('L'):
706                  unmap_rcolors(ourras);
707                  XClearWindow(thedisplay, wind);
708                  map_rcolors(ourras, wind);
709                  if (fast)
710 <                        make_rpixmap(ourras);
710 >                        make_rpixmap(ourras, wind);
711                  redraw(0, 0, width, height);
712                  return(0);
713 +        case 'f':                               /* turn on fast redraw */
714 +                fast = 1;
715 +                make_rpixmap(ourras, wind);
716 +                return(0);
717 +        case 'F':                               /* turn off fast redraw */
718 +                fast = 0;
719 +                free_rpixmap(ourras);
720 +                return(0);
721 +        case '0':                               /* recenter origin */
722 +                if (xoff == 0 & yoff == 0)
723 +                        return(0);
724 +                xoff = yoff = 0;
725 +                XClearWindow(thedisplay, wind);
726 +                redraw(0, 0, width, height);
727 +                return(0);
728          case ' ':                               /* clear */
729                  redraw(box.xmin, box.ymin, box.xsiz, box.ysiz);
730                  return(0);
# Line 517 | Line 738 | XKeyPressedEvent  *ekey;
738   moveimage(ebut)                         /* shift the image */
739   XButtonPressedEvent  *ebut;
740   {
741 <        union {
521 <                XEvent  u;
522 <                XButtonReleasedEvent  b;
523 <                XPointerMovedEvent  m;
524 <        }  e;
741 >        XEvent  e;
742          int     mxo, myo;
743  
744 <        XMaskEvent(thedisplay, ButtonReleaseMask|ButtonMotionMask, &e.u);
745 <        while (e.u.type == MotionNotify) {
746 <                mxo = e.m.x;
747 <                myo = e.m.y;
744 >        XMaskEvent(thedisplay, ButtonReleaseMask|ButtonMotionMask, &e);
745 >        while (e.type == MotionNotify) {
746 >                mxo = e.xmotion.x;
747 >                myo = e.xmotion.y;
748                  revline(ebut->x, ebut->y, mxo, myo);
749                  revbox(xoff+mxo-ebut->x, yoff+myo-ebut->y,
750                                  xoff+mxo-ebut->x+xmax, yoff+myo-ebut->y+ymax);
751 <                XMaskEvent(thedisplay,ButtonReleaseMask|ButtonMotionMask,&e.u);
751 >                XMaskEvent(thedisplay,ButtonReleaseMask|ButtonMotionMask,&e);
752                  revline(ebut->x, ebut->y, mxo, myo);
753                  revbox(xoff+mxo-ebut->x, yoff+myo-ebut->y,
754                                  xoff+mxo-ebut->x+xmax, yoff+myo-ebut->y+ymax);
755          }
756 <        xoff += e.b.x - ebut->x;
757 <        yoff += e.b.y - ebut->y;
756 >        xoff += e.xbutton.x - ebut->x;
757 >        yoff += e.xbutton.y - ebut->y;
758          XClearWindow(thedisplay, wind);
759          redraw(0, 0, width, height);
760   }
# Line 546 | Line 763 | XButtonPressedEvent  *ebut;
763   getbox(ebut)                            /* get new box */
764   XButtonPressedEvent  *ebut;
765   {
766 <        union {
550 <                XEvent  u;
551 <                XButtonReleasedEvent  b;
552 <                XPointerMovedEvent  m;
553 <        }  e;
766 >        XEvent  e;
767  
768 <        XMaskEvent(thedisplay, ButtonReleaseMask|ButtonMotionMask, &e.u);
769 <        while (e.u.type == MotionNotify) {
770 <                revbox(ebut->x, ebut->y, box.xmin = e.m.x, box.ymin = e.m.y);
771 <                XMaskEvent(thedisplay,ButtonReleaseMask|ButtonMotionMask,&e.u);
768 >        XMaskEvent(thedisplay, ButtonReleaseMask|ButtonMotionMask, &e);
769 >        while (e.type == MotionNotify) {
770 >                revbox(ebut->x, ebut->y, box.xmin = e.xmotion.x, box.ymin = e.xmotion.y);
771 >                XMaskEvent(thedisplay,ButtonReleaseMask|ButtonMotionMask,&e);
772                  revbox(ebut->x, ebut->y, box.xmin, box.ymin);
773          }
774 <        box.xmin = e.b.x<0 ? 0 : (e.b.x>=width ? width-1 : e.b.x);
775 <        box.ymin = e.b.y<0 ? 0 : (e.b.y>=height ? height-1 : e.b.y);
774 >        box.xmin = e.xbutton.x<0 ? 0 : (e.xbutton.x>=width ? width-1 : e.xbutton.x);
775 >        box.ymin = e.xbutton.y<0 ? 0 : (e.xbutton.y>=height ? height-1 : e.xbutton.y);
776          if (box.xmin > ebut->x) {
777                  box.xsiz = box.xmin - ebut->x + 1;
778                  box.xmin = ebut->x;
# Line 588 | Line 801 | int  x0, y0, x1, y1;
801   avgbox(clr)                             /* average color over current box */
802   COLOR  clr;
803   {
804 +        static COLOR  lc;
805 +        static int  ll, lr, lt, lb;
806          int  left, right, top, bottom;
807          int  y;
808          double  d;
# Line 611 | Line 826 | COLOR  clr;
826                  bottom = ymax;
827          if (top >= bottom)
828                  return(-1);
829 +        if (left == ll && right == lr && top == lt && bottom == lb) {
830 +                copycolor(clr, lc);
831 +                return(0);
832 +        }
833          for (y = top; y < bottom; y++) {
834                  if (getscan(y) == -1)
835                          return(-1);
# Line 621 | Line 840 | COLOR  clr;
840          }
841          d = 1.0/((right-left)*(bottom-top));
842          scalecolor(clr, d);
843 +        ll = left; lr = right; lt = top; lb = bottom;
844 +        copycolor(lc, clr);
845          return(0);
846   }
847  
# Line 629 | Line 850 | getmono()                      /* get monochrome data */
850   {
851          register unsigned char  *dp;
852          register int    x, err;
853 <        int     y;
853 >        int     y, errp;
854          short   *cerr;
855  
856          if ((cerr = (short *)calloc(xmax,sizeof(short))) == NULL)
857                  quiterr("out of memory in getmono");
858          dp = ourdata - 1;
859          for (y = 0; y < ymax; y++) {
860 <                if (getscan(y) < 0)
640 <                        quiterr("seek error in getmono");
641 <                normcolrs(scanline, xmax, scale);
860 >                getscan(y);
861                  add2icon(y, scanline);
862 +                normcolrs(scanline, xmax, scale);
863                  err = 0;
864                  for (x = 0; x < xmax; x++) {
865                          if (!(x&7))
866                                  *++dp = 0;
867 +                        errp = err;
868                          err += normbright(scanline[x]) + cerr[x];
869                          if (err > 127)
870                                  err -= 255;
871                          else
872                                  *dp |= 1<<(7-(x&07));
873 <                        cerr[x] = err >>= 1;
873 >                        err /= 3;
874 >                        cerr[x] = err + errp;
875                  }
876          }
877          free((char *)cerr);
# Line 663 | Line 885 | COLR  *scan;
885          static short  cerr[ICONSIZ];
886          static int  ynext;
887          static char  *dp;
888 +        COLR  clr;
889          register int  err;
890          register int    x, ti;
891 +        int  errp;
892  
893          if (iconheight == 0) {          /* initialize */
894                  if (xmax <= ICONSIZ && ymax <= ICONSIZ) {
# Line 673 | Line 897 | COLR  *scan;
897                  } else if (xmax > ymax) {
898                          iconwidth = ICONSIZ;
899                          iconheight = ICONSIZ*ymax/xmax;
900 +                        if (iconheight < 1)
901 +                                iconheight = 1;
902                  } else {
903                          iconwidth = ICONSIZ*xmax/ymax;
904 +                        if (iconwidth < 1)
905 +                                iconwidth = 1;
906                          iconheight = ICONSIZ;
907                  }
908                  ynext = 0;
# Line 686 | Line 914 | COLR  *scan;
914          for (x = 0; x < iconwidth; x++) {
915                  if (!(x&7))
916                          *++dp = 0;
917 +                errp = err;
918                  ti = x*xmax/iconwidth;
919 <                err += normbright(scan[ti]) + cerr[x];
919 >                copycolr(clr, scan[ti]);
920 >                normcolrs(clr, 1, scale);
921 >                err += normbright(clr) + cerr[x];
922                  if (err > 127)
923                          err -= 255;
924                  else
925                          *dp |= 1<<(x&07);
926 <                cerr[x] = err >>= 1;
926 >                err /= 3;
927 >                cerr[x] = err + errp;
928          }
929          ynext++;
930   }
# Line 701 | Line 933 | COLR  *scan;
933   getfull()                       /* get full (24-bit) data */
934   {
935          int     y;
936 +        register unsigned int4  *dp;
937 +        register int    x;
938 +                                        /* set gamma correction */
939 +        setcolrgam(gamcor);
940 +                                        /* read and convert file */
941 +        dp = (unsigned int4 *)ourdata;
942 +        for (y = 0; y < ymax; y++) {
943 +                getscan(y);
944 +                add2icon(y, scanline);
945 +                if (scale)
946 +                        shiftcolrs(scanline, xmax, scale);
947 +                colrs_gambs(scanline, xmax);
948 +                if (ourras->image->blue_mask & 1)
949 +                        for (x = 0; x < xmax; x++)
950 +                                *dp++ = (unsigned int4)scanline[x][RED] << 16 |
951 +                                        (unsigned int4)scanline[x][GRN] << 8 |
952 +                                        (unsigned int4)scanline[x][BLU] ;
953 +                else
954 +                        for (x = 0; x < xmax; x++)
955 +                                *dp++ = (unsigned int4)scanline[x][RED] |
956 +                                        (unsigned int4)scanline[x][GRN] << 8 |
957 +                                        (unsigned int4)scanline[x][BLU] << 16 ;
958 +        }
959 + }
960 +
961 +
962 + getgrey()                       /* get greyscale data */
963 + {
964 +        int     y;
965          register unsigned char  *dp;
966          register int    x;
967                                          /* set gamma correction */
# Line 708 | Line 969 | getfull()                      /* get full (24-bit) data */
969                                          /* read and convert file */
970          dp = ourdata;
971          for (y = 0; y < ymax; y++) {
972 <                if (getscan(y) < 0)
973 <                        quiterr("seek error in getfull");
972 >                getscan(y);
973 >                add2icon(y, scanline);
974                  if (scale)
975                          shiftcolrs(scanline, xmax, scale);
976 +                for (x = 0; x < xmax; x++)
977 +                        scanline[x][GRN] = normbright(scanline[x]);
978                  colrs_gambs(scanline, xmax);
979 +                if (maxcolors < 256)
980 +                        for (x = 0; x < xmax; x++)
981 +                                *dp++ = ((long)scanline[x][GRN] *
982 +                                        maxcolors + maxcolors/2) >> 8;
983 +                else
984 +                        for (x = 0; x < xmax; x++)
985 +                                *dp++ = scanline[x][GRN];
986 +        }
987 +        for (x = 0; x < maxcolors; x++)
988 +                clrtab[x][RED] = clrtab[x][GRN] =
989 +                        clrtab[x][BLU] = ((long)x*256 + 128)/maxcolors;
990 + }
991 +
992 +
993 + getmapped()                     /* get color-mapped data */
994 + {
995 +        int     y;
996 +                                        /* make sure we can do it first */
997 +        if (fname == NULL)
998 +                quiterr("cannot map colors from standard input");
999 +                                        /* set gamma correction */
1000 +        setcolrgam(gamcor);
1001 +                                        /* make histogram */
1002 +        if (new_histo((long)xmax*ymax) == -1)
1003 +                quiterr("cannot initialize histogram");
1004 +        for (y = 0; y < ymax; y++) {
1005 +                if (getscan(y) < 0)
1006 +                        break;
1007                  add2icon(y, scanline);
1008 <                for (x = 0; x < xmax; x++) {
1009 <                        *dp++ = scanline[x][RED];
1010 <                        *dp++ = scanline[x][GRN];
1011 <                        *dp++ = scanline[x][BLU];
721 <                }
1008 >                if (scale)
1009 >                        shiftcolrs(scanline, xmax, scale);
1010 >                colrs_gambs(scanline, xmax);
1011 >                cnt_colrs(scanline, xmax);
1012          }
1013 +                                        /* map pixels */
1014 +        if (!new_clrtab(maxcolors))
1015 +                quiterr("cannot create color map");
1016 +        for (y = 0; y < ymax; y++) {
1017 +                getscan(y);
1018 +                if (scale)
1019 +                        shiftcolrs(scanline, xmax, scale);
1020 +                colrs_gambs(scanline, xmax);
1021 +                if (dither)
1022 +                        dith_colrs(ourdata+y*xmax, scanline, xmax);
1023 +                else
1024 +                        map_colrs(ourdata+y*xmax, scanline, xmax);
1025 +        }
1026   }
1027  
1028  
# Line 754 | Line 1057 | double sf;
1057   getscan(y)
1058   int  y;
1059   {
1060 +        static int  trunced = -1;               /* truncated file? */
1061 + skipit:
1062 +        if (trunced >= 0 && y >= trunced) {
1063 +                bzero(scanline, xmax*sizeof(COLR));
1064 +                return(-1);
1065 +        }
1066          if (y != cury) {
1067                  if (scanpos == NULL || scanpos[y] == -1)
1068                          return(-1);
1069                  if (fseek(fin, scanpos[y], 0) == -1)
1070                          quiterr("fseek error");
1071                  cury = y;
1072 <        } else if (scanpos != NULL)
1072 >        } else if (scanpos != NULL && scanpos[y] == -1)
1073                  scanpos[y] = ftell(fin);
1074  
1075 <        if (freadcolrs(scanline, xmax, fin) < 0)
1076 <                quiterr("read error");
1077 <
1075 >        if (freadcolrs(scanline, xmax, fin) < 0) {
1076 >                fprintf(stderr, "%s: %s: unfinished picture\n",
1077 >                                progname, fname==NULL?"<stdin>":fname);
1078 >                trunced = y;
1079 >                goto skipit;
1080 >        }
1081          cury++;
1082          return(0);
771 }
772
773
774 picreadline3(y, l3)                     /* read in 3-byte scanline */
775 int  y;
776 register rgbpixel  *l3;
777 {
778        register int    i;
779                                                        /* read scanline */
780        if (getscan(y) < 0)
781                quiterr("cannot seek for picreadline");
782                                                        /* convert scanline */
783        normcolrs(scanline, xmax, scale);
784        add2icon(y, scanline);
785        for (i = 0; i < xmax; i++) {
786                l3[i].r = scanline[i][RED];
787                l3[i].g = scanline[i][GRN];
788                l3[i].b = scanline[i][BLU];
789        }
790 }
791
792
793 picwriteline(y, l)              /* add 8-bit scanline to image */
794 int  y;
795 pixel  *l;
796 {
797        bcopy((char *)l, (char *)ourdata+y*xmax, xmax);
798 }
799
800
801 picreadcm(map)                  /* do gamma correction */
802 colormap  map;
803 {
804        extern double  pow();
805        register int  i, val;
806
807        for (i = 0; i < 256; i++) {
808                val = pow((i+0.5)/256.0, 1.0/gamcor) * 256.0;
809                map[0][i] = map[1][i] = map[2][i] = val;
810        }
811 }
812
813
814 picwritecm(map)                 /* handled elsewhere */
815 colormap  map;
816 {
817 #ifdef DEBUG
818        register int i;
819
820        for (i = 0; i < 256; i++)
821                printf("%d %d %d\n", map[0][i],map[1][i],map[2][i]);
822 #endif
1083   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines