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.12 by greg, Fri Dec 21 17:20:11 1990 UTC vs.
Revision 2.39 by greg, Mon Nov 21 09:18:48 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)
41 #define  ourblack       BlackPixel(thedisplay,ourscreen)
42 #define  ourwhite       WhitePixel(thedisplay,ourscreen)
52   #define  ourroot        RootWindow(thedisplay,ourscreen)
44 #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 */
56 < 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 63 | 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 77 | Line 90 | int  cury = 0;                         /* current scan location */
90  
91   double  exposure = 1.0;                 /* exposure compensation used */
92  
93 + int  wrongformat = 0;                   /* input in another format? */
94 +
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 88 | Line 106 | struct {
106  
107   char  *geometry = NULL;                 /* geometry specification */
108  
109 + char  icondata[ICONSIZ*ICONSIZ/8];      /* icon bitmap data */
110 + int  iconwidth = 0, iconheight = 0;
111 +
112   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  
99 extern double  atof(), pow(), log();
100
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 122 | 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 133 | 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 146 | 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);
155 <                }
156 <        } else if (i != argc)
157 <                goto userr;
199 >                if (fin == NULL)
200 >                        quiterr("cannot open picture file");
201 >        }
202                                  /* get header */
203 <        getheader(fin, headline);
203 >        getheader(fin, headline, NULL);
204                                  /* get picture dimensions */
205 <        if (fgetresolu(&xmax, &ymax, fin) != (YMAJOR|YDECR))
206 <                quiterr("bad picture size");
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          for ( ; ; )
218                  getevent();             /* main loop */
219   userr:
220          fprintf(stderr,
221 <        "Usage: %s [-geometry spec][-b][-m][-d][-f][-c ncolors][-e +/-stops] file\n",
221 > "Usage: %s [-di disp][[-ge] spec][-b][-m][-d][-f][-c nclrs][-e +/-stops][-g gamcor] pic ..\n",
222                          progname);
223 <        quit(1);
223 >        exit(1);
224   }
225  
226  
227   headline(s)             /* get relevant info from header */
228   char  *s;
229   {
230 <        static char  *altname[] = {"rview","rpict","pinterp",VIEWSTR,NULL};
185 <        register char  **an;
230 >        char  fmt[32];
231  
232          if (isexpos(s))
233                  exposure *= exposval(s);
234 <        else
235 <                for (an = altname; *an != NULL; an++)
236 <                        if (!strncmp(*an, s, strlen(*an))) {
237 <                                if (sscanview(&ourview, s+strlen(*an)) > 0)
238 <                                        gotview++;
194 <                                return;
195 <                        }
234 >        else if (isformat(s)) {
235 >                formatval(fmt, s);
236 >                wrongformat = strcmp(fmt, COLRFMT);
237 >        } else if (isview(s) && sscanview(&ourview, s) > 0)
238 >                gotview++;
239   }
240  
241  
242 < init()                  /* get data and open window */
242 > init(argc, argv)                        /* get data and open window */
243 > int argc;
244 > char **argv;
245   {
246          XSetWindowAttributes    ourwinattr;
247 <        XSizeHints  oursizhints;
248 <        register int  i;
247 >        XClassHint      xclshints;
248 >        XWMHints        xwmhints;
249 >        XSizeHints      xszhints;
250 >        XTextProperty   windowName, iconName;
251 >        XGCValues       xgcv;
252 >        char    *name;
253 >        register int    i;
254          
255          if (fname != NULL) {
256                  scanpos = (long *)malloc(ymax*sizeof(long));
257                  if (scanpos == NULL)
258 <                        goto memerr;
258 >                        quiterr("out of memory");
259                  for (i = 0; i < ymax; i++)
260                          scanpos[i] = -1;
261 <        }
262 <        if ((thedisplay = XOpenDisplay(NULL)) == NULL)
263 <                quiterr("can't open display; DISPLAY variable set?");
264 <        if (maxcolors == 0) {           /* get number of available colors */
265 <                i = DisplayPlanes(thedisplay,ourscreen);
266 <                maxcolors = i > 8 ? 256 : 1<<i;
267 <                if (maxcolors > 4) maxcolors -= 2;
268 <        }
261 >                name = fname;
262 >        } else
263 >                name = progname;
264 >                                /* remove directory prefix from name */
265 >        for (i = strlen(name); i-- > 0; )
266 >                if (name[i] == '/')
267 >                        break;
268 >        name += i+1;
269 >        if ((thedisplay = XOpenDisplay(dispname)) == NULL)
270 >                quiterr("cannot open display");
271 >                                /* set gamma value */
272 >        if (gamstr == NULL)             /* get it from the X server */
273 >                gamstr = XGetDefault(thedisplay, "radiance", "gamma");
274 >        if (gamstr == NULL)             /* get it from the environment */
275 >                gamstr = getenv("DISPLAY_GAMMA");
276 >        if (gamstr != NULL)
277 >                gamcor = atof(gamstr);
278 >                                /* get best visual for default screen */
279 >        getbestvis();
280                                  /* store image */
281          getras();
282 <                                /* open window */
283 <        ourwinattr.border_pixel = ourblack;
284 <        ourwinattr.background_pixel = ourwhite;
224 <        wind = XCreateWindow(thedisplay, ourroot, 0, 0, xmax, ymax, BORWIDTH,
225 <                        0, InputOutput, ourras->visual,
226 <                        CWBackPixel|CWBorderPixel, &ourwinattr);
227 <        if (wind == 0)
228 <                quiterr("can't create window");
229 <        width = xmax;
230 <        height = ymax;
231 <        fontid = XLoadFont(thedisplay, FONTNAME);
232 <        if (fontid == 0)
233 <                quiterr("can't get font");
234 <        XSetFont(thedisplay, ourgc, fontid);
235 <        revgc = XCreateGC(thedisplay, wind, 0, 0);
236 <        XSetFunction(thedisplay, revgc, GXinvert);
237 <        XStoreName(thedisplay, wind, fname == NULL ? progname : fname);
238 <        XDefineCursor(thedisplay, wind, XCreateFontCursor(thedisplay,
239 <                        XC_diamond_cross));
282 >                                /* get size and position */
283 >        xszhints.flags = 0;
284 >        xszhints.width = xmax; xszhints.height = ymax;
285          if (geometry != NULL) {
286 <                bzero((char *)&oursizhints, sizeof(oursizhints));
287 <                i = XParseGeometry(geometry, &oursizhints.x, &oursizhints.y,
288 <                                (unsigned *)&oursizhints.width,
244 <                                (unsigned *)&oursizhints.height);
286 >                i = XParseGeometry(geometry, &xszhints.x, &xszhints.y,
287 >                                (unsigned *)&xszhints.width,
288 >                                (unsigned *)&xszhints.height);
289                  if ((i&(WidthValue|HeightValue)) == (WidthValue|HeightValue))
290 <                        oursizhints.flags |= USSize;
291 <                else {
292 <                        oursizhints.width = xmax;
249 <                        oursizhints.height = ymax;
250 <                        oursizhints.flags |= PSize;
251 <                }
290 >                        xszhints.flags |= USSize;
291 >                else
292 >                        xszhints.flags |= PSize;
293                  if ((i&(XValue|YValue)) == (XValue|YValue)) {
294 <                        oursizhints.flags |= USPosition;
294 >                        xszhints.flags |= USPosition;
295                          if (i & XNegative)
296 <                                oursizhints.x += DisplayWidth(thedisplay,
297 <                                ourscreen)-1-oursizhints.width-2*BORWIDTH;
296 >                                xszhints.x += DisplayWidth(thedisplay,
297 >                                ourscreen)-1-xszhints.width-2*BORWIDTH;
298                          if (i & YNegative)
299 <                                oursizhints.y += DisplayHeight(thedisplay,
300 <                                ourscreen)-1-oursizhints.height-2*BORWIDTH;
299 >                                xszhints.y += DisplayHeight(thedisplay,
300 >                                ourscreen)-1-xszhints.height-2*BORWIDTH;
301                  }
261                XSetNormalHints(thedisplay, wind, &oursizhints);
302          }
303 <        XSelectInput(thedisplay, wind, ButtonPressMask|ButtonReleaseMask
304 <                        |ButtonMotionMask|StructureNotifyMask
305 <                        |KeyPressMask|ExposureMask);
303 >        /* open window */
304 >        ourwinattr.border_pixel = ourwhite;
305 >        ourwinattr.background_pixel = ourblack;
306 >        ourwinattr.colormap = XCreateColormap(thedisplay, ourroot,
307 >                        ourvis.visual, AllocNone);
308 >        ourwinattr.event_mask = ExposureMask|KeyPressMask|ButtonPressMask|
309 >                        ButtonReleaseMask|ButtonMotionMask|StructureNotifyMask;
310 >        ourwinattr.cursor = XCreateFontCursor(thedisplay, XC_diamond_cross);
311 >        wind = XCreateWindow(thedisplay, ourroot, xszhints.x, xszhints.y,
312 >                        xszhints.width, xszhints.height, BORWIDTH,
313 >                        ourvis.depth, InputOutput, ourvis.visual, CWEventMask|
314 >                        CWCursor|CWBackPixel|CWBorderPixel|CWColormap, &ourwinattr);
315 >        if (wind == 0)
316 >                quiterr("cannot create window");
317 >        width = xmax;
318 >        height = ymax;
319 >        /* prepare graphics drawing context */
320 >        if ((xgcv.font = XLoadFont(thedisplay, FONTNAME)) == 0)
321 >                quiterr("cannot get font");
322 >        xgcv.foreground = ourblack;
323 >        xgcv.background = ourwhite;
324 >        ourgc = XCreateGC(thedisplay, wind, GCForeground|GCBackground|
325 >                        GCFont, &xgcv);
326 >        xgcv.function = GXinvert;
327 >        revgc = XCreateGC(thedisplay, wind, GCForeground|GCBackground|
328 >                        GCFunction, &xgcv);
329 >
330 >        /* set up the window manager */
331 >        xwmhints.flags = InputHint|IconPixmapHint;
332 >        xwmhints.input = True;
333 >        xwmhints.icon_pixmap = XCreateBitmapFromData(thedisplay,
334 >                        wind, icondata, iconwidth, iconheight);
335 >
336 >        windowName.encoding = iconName.encoding = XA_STRING;
337 >        windowName.format = iconName.format = 8;
338 >        windowName.value = (u_char *)name;
339 >        windowName.nitems = strlen(windowName.value);
340 >        iconName.value = (u_char *)name;
341 >        iconName.nitems = strlen(windowName.value);
342 >
343 >        xclshints.res_name = NULL;
344 >        xclshints.res_class = "Ximage";
345 >        XSetWMProperties(thedisplay, wind, &windowName, &iconName,
346 >                        argv, argc, &xszhints, &xwmhints, &xclshints);
347 >        closedownAtom = XInternAtom(thedisplay, "WM_DELETE_WINDOW", False);
348 >        wmProtocolsAtom = XInternAtom(thedisplay, "WM_PROTOCOLS", False);
349 >        XSetWMProtocols(thedisplay, wind, &closedownAtom, 1);
350 >
351          XMapWindow(thedisplay, wind);
267        return;
268 memerr:
269        quiterr("out of memory");
352   } /* end of init */
353  
354  
355   quiterr(err)            /* print message and exit */
356   char  *err;
357   {
358 <        if (err != NULL) {
359 <                fprintf(stderr, "%s: %s\n", progname, err);
360 <                exit(1);
358 >        register int  es;
359 >        int  cs;
360 >
361 >        if (es = err != NULL)
362 >                fprintf(stderr, "%s: %s: %s\n", progname,
363 >                                fname==NULL?"<stdin>":fname, err);
364 >        if (thedisplay != NULL)
365 >                XCloseDisplay(thedisplay);
366 >        if (parent < 0 & sigrecv == 0)
367 >                kill(getppid(), SIGCONT);
368 >        while (parent > 0 && wait(&cs) != -1) { /* wait for any children */
369 >                if (es == 0)
370 >                        es = cs>>8 & 0xff;
371 >                parent--;
372          }
373 <        exit(0);
373 >        exit(es);
374   }
375  
376  
377 < eputs(s)
378 < char    *s;
377 > static int
378 > viscmp(v1,v2)           /* compare visual to see which is better, descending */
379 > register XVisualInfo    *v1, *v2;
380   {
381 <        fputs(s, stderr);
381 >        int     bad1 = 0, bad2 = 0;
382 >        register int  *rp;
383 >
384 >        if (v1->class == v2->class) {
385 >                if (v1->class == TrueColor || v1->class == DirectColor) {
386 >                                        /* prefer 24-bit to 32-bit */
387 >                        if (v1->depth == 24 && v2->depth == 32)
388 >                                return(-1);
389 >                        if (v1->depth == 32 && v2->depth == 24)
390 >                                return(1);
391 >                        return(0);
392 >                }
393 >                                        /* don't be too greedy */
394 >                if (maxcolors <= 1<<v1->depth && maxcolors <= 1<<v2->depth)
395 >                        return(v1->depth - v2->depth);
396 >                return(v2->depth - v1->depth);
397 >        }
398 >                                        /* prefer Pseudo when < 24-bit */
399 >        if ((v1->class == TrueColor || v1->class == DirectColor) &&
400 >                        v1->depth < 24)
401 >                bad1 = 1;
402 >        if ((v2->class == TrueColor || v2->class == DirectColor) &&
403 >                        v2->depth < 24)
404 >                bad2 = -1;
405 >        if (bad1 | bad2)
406 >                return(bad1+bad2);
407 >                                        /* otherwise, use class ranking */
408 >        for (rp = ourrank; *rp != -1; rp++) {
409 >                if (v1->class == *rp)
410 >                        return(-1);
411 >                if (v2->class == *rp)
412 >                        return(1);
413 >        }
414 >        return(0);
415   }
416  
417  
418 < quit(code)
292 < int  code;
418 > getbestvis()                    /* get the best visual for this screen */
419   {
420 <        exit(code);
420 > #ifdef DEBUG
421 > static char  vistype[][12] = {
422 >                "StaticGray",
423 >                "GrayScale",
424 >                "StaticColor",
425 >                "PseudoColor",
426 >                "TrueColor",
427 >                "DirectColor"
428 > };
429 > #endif
430 >        static int      rankings[3][6] = {
431 >                {TrueColor,DirectColor,PseudoColor,GrayScale,StaticGray,-1},
432 >                {PseudoColor,GrayScale,StaticGray,-1},
433 >                {PseudoColor,GrayScale,StaticGray,-1}
434 >        };
435 >        XVisualInfo     *xvi;
436 >        int     vismatched;
437 >        register int    i, j;
438 >
439 >        if (greyscale) {
440 >                ourrank = rankings[2];
441 >                if (maxcolors < 2) maxcolors = 256;
442 >        } else if (maxcolors >= 2 && maxcolors <= 256)
443 >                ourrank = rankings[1];
444 >        else {
445 >                ourrank = rankings[0];
446 >                maxcolors = 256;
447 >        }
448 >                                        /* find best visual */
449 >        ourvis.screen = ourscreen;
450 >        xvi = XGetVisualInfo(thedisplay,VisualScreenMask,&ourvis,&vismatched);
451 >        if (xvi == NULL)
452 >                quiterr("no visuals for this screen!");
453 > #ifdef DEBUG
454 >        fprintf(stderr, "Supported visuals:\n");
455 >        for (i = 0; i < vismatched; i++)
456 >                fprintf(stderr, "\ttype %s, depth %d\n",
457 >                                vistype[xvi[i].class], xvi[i].depth);
458 > #endif
459 >        for (i = 0, j = 1; j < vismatched; j++)
460 >                if (viscmp(&xvi[i],&xvi[j]) > 0)
461 >                        i = j;
462 >                                        /* compare to least acceptable */
463 >        for (j = 0; ourrank[j++] != -1; )
464 >                ;
465 >        ourvis.class = ourrank[--j];
466 >        ourvis.depth = 1;
467 >        if (viscmp(&xvi[i],&ourvis) > 0)
468 >                quiterr("inadequate visuals on this screen");
469 >                                        /* OK, we'll use it */
470 >        copystruct(&ourvis, &xvi[i]);
471 > #ifdef DEBUG
472 >        fprintf(stderr, "Selected visual type %s, depth %d\n",
473 >                        vistype[ourvis.class], ourvis.depth);
474 > #endif
475 >                                        /* make appropriate adjustments */
476 >        if (ourvis.class == GrayScale || ourvis.class == StaticGray)
477 >                greyscale = 1;
478 >        if (ourvis.depth <= 8 && ourvis.colormap_size < maxcolors)
479 >                maxcolors = ourvis.colormap_size;
480 >        if (ourvis.class == StaticGray) {
481 >                ourblack = 0;
482 >                ourwhite = 255;
483 >        } else if (ourvis.class == PseudoColor) {
484 >                ourblack = BlackPixel(thedisplay,ourscreen);
485 >                ourwhite = WhitePixel(thedisplay,ourscreen);
486 >                if ((ourblack|ourwhite) & ~255L) {
487 >                        ourblack = 0;
488 >                        ourwhite = 1;
489 >                }
490 >                if (maxcolors > 4)
491 >                        maxcolors -= 2;
492 >        } else {
493 >                ourblack = 0;
494 >                ourwhite = ourvis.red_mask|ourvis.green_mask|ourvis.blue_mask;
495 >        }
496 >        XFree((char *)xvi);
497   }
498  
499  
500   getras()                                /* get raster file */
501   {
300        colormap        ourmap;
502          XVisualInfo     vinfo;
503  
504          if (maxcolors <= 2) {           /* monochrome */
505                  ourdata = (unsigned char *)malloc(ymax*((xmax+7)/8));
506                  if (ourdata == NULL)
507                          goto fail;
508 <                ourras = make_raster(thedisplay, ourscreen, 1, ourdata,
508 >                ourras = make_raster(thedisplay, &ourvis, 1, ourdata,
509                                  xmax, ymax, 8);
510                  if (ourras == NULL)
511                          goto fail;
512                  getmono();
513 <        } else if (XMatchVisualInfo(thedisplay,ourscreen,24,TrueColor,&vinfo)
514 <                                                /* kludge for DirectColor */
314 <        || XMatchVisualInfo(thedisplay,ourscreen,24,DirectColor,&vinfo)) {
315 <                ourdata = (unsigned char *)malloc(xmax*ymax*3);
513 >        } else if (ourvis.class == TrueColor | ourvis.class == DirectColor) {
514 >                ourdata = (unsigned char *)malloc(sizeof(int4)*xmax*ymax);
515                  if (ourdata == NULL)
516                          goto fail;
517 <                ourras = make_raster(thedisplay, ourscreen, 24, ourdata,
518 <                                xmax, ymax, 8);
517 >                ourras = make_raster(thedisplay, &ourvis, sizeof(int4)*8,
518 >                                ourdata, xmax, ymax, 32);
519                  if (ourras == NULL)
520                          goto fail;
521                  getfull();
# Line 324 | Line 523 | getras()                               /* get raster file */
523                  ourdata = (unsigned char *)malloc(xmax*ymax);
524                  if (ourdata == NULL)
525                          goto fail;
526 <                ourras = make_raster(thedisplay, ourscreen, 8, ourdata,
526 >                ourras = make_raster(thedisplay, &ourvis, 8, ourdata,
527                                  xmax, ymax, 8);
528                  if (ourras == NULL)
529                          goto fail;
530 <                if (greyscale)
531 <                        biq(dither,maxcolors,1,ourmap);
530 >                if (greyscale | ourvis.class == StaticGray)
531 >                        getgrey();
532                  else
533 <                        ciq(dither,maxcolors,1,ourmap);
534 <                if (init_rcolors(ourras, ourmap[0], ourmap[1], ourmap[2]) == 0)
533 >                        getmapped();
534 >                if (ourvis.class != StaticGray && !init_rcolors(ourras,clrtab))
535                          goto fail;
536          }
537          return;
# Line 343 | Line 542 | fail:
542  
543   getevent()                              /* process the next event */
544   {
545 <        union {
347 <                XEvent  u;
348 <                XConfigureEvent  c;
349 <                XExposeEvent  e;
350 <                XButtonPressedEvent  b;
351 <                XKeyPressedEvent  k;
352 <        } e;
545 >        XEvent xev;
546  
547 <        XNextEvent(thedisplay, &e.u);
548 <        switch (e.u.type) {
547 >        XNextEvent(thedisplay, &xev);
548 >        switch ((int)xev.type) {
549          case KeyPress:
550 <                docom(&e.k);
550 >                docom(&xev.xkey);
551                  break;
552          case ConfigureNotify:
553 <                width = e.c.width;
554 <                height = e.c.height;
553 >                width = xev.xconfigure.width;
554 >                height = xev.xconfigure.height;
555                  break;
556          case MapNotify:
557                  map_rcolors(ourras, wind);
558                  if (fast)
559 <                        make_rpixmap(ourras);
559 >                        make_rpixmap(ourras, wind);
560 >                if (parent < 0 & sigrecv == 0) {        /* notify parent */
561 >                        kill(getppid(), SIGCONT);
562 >                        sigrecv--;
563 >                }
564                  break;
565          case UnmapNotify:
566 <                unmap_rcolors(ourras);
566 >                if (!fast)
567 >                        unmap_rcolors(ourras);
568                  break;
569          case Expose:
570 <                redraw(e.e.x, e.e.y, e.e.width, e.e.height);
570 >                redraw(xev.xexpose.x, xev.xexpose.y,
571 >                                xev.xexpose.width, xev.xexpose.height);
572                  break;
573          case ButtonPress:
574 <                if (e.b.state & (ShiftMask|ControlMask))
575 <                        moveimage(&e.b);
574 >                if (xev.xbutton.state & (ShiftMask|ControlMask))
575 >                        moveimage(&xev.xbutton);
576 >                else if (xev.xbutton.button == Button2)
577 >                        traceray(xev.xbutton.x, xev.xbutton.y);
578                  else
579 <                        getbox(&e.b);
579 >                        getbox(&xev.xbutton);
580                  break;
581 +        case ClientMessage:
582 +                if ((xev.xclient.message_type == wmProtocolsAtom) &&
583 +                                (xev.xclient.data.l[0] == closedownAtom))
584 +                        quiterr(NULL);
585 +                break;
586          }
587   }
588  
589  
590 < docom(ekey)                                     /* execute command */
590 > traceray(xpos, ypos)                    /* print ray corresponding to pixel */
591 > int  xpos, ypos;
592 > {
593 >        FLOAT  hv[2];
594 >        FVECT  rorg, rdir;
595 >
596 >        if (!gotview) {         /* no view, no can do */
597 >                XBell(thedisplay, 0);
598 >                return(-1);
599 >        }
600 >        pix2loc(hv, &inpres, xpos-xoff, ypos-yoff);
601 >        if (viewray(rorg, rdir, &ourview, hv[0], hv[1]) < 0)
602 >                return(-1);
603 >        printf("%e %e %e ", rorg[0], rorg[1], rorg[2]);
604 >        printf("%e %e %e\n", rdir[0], rdir[1], rdir[2]);
605 >        fflush(stdout);
606 >        return(0);
607 > }
608 >
609 >
610 > docom(ekey)                             /* execute command */
611   XKeyPressedEvent  *ekey;
612   {
613          char  buf[80];
# Line 389 | Line 615 | XKeyPressedEvent  *ekey;
615          XColor  cvx;
616          int  com, n;
617          double  comp;
618 <        FVECT  rorg, rdir;
618 >        FLOAT  hv[2];
619  
620          n = XLookupString(ekey, buf, sizeof(buf), NULL, NULL);
621          if (n == 0)
# Line 397 | Line 623 | XKeyPressedEvent  *ekey;
623          com = buf[0];
624          switch (com) {                  /* interpret command */
625          case 'q':
626 <        case CTRL(D):                           /* quit */
627 <                quit(0);
626 >        case 'Q':
627 >        case CTRL('D'):                         /* quit */
628 >                quiterr(NULL);
629          case '\n':
630          case '\r':
631          case 'l':
# Line 411 | Line 638 | XKeyPressedEvent  *ekey;
638                          sprintf(buf, "%.3f", intens(cval)/exposure);
639                          break;
640                  case 'l':                               /* luminance */
641 <                        sprintf(buf, "%.0fn", bright(cval)*683.0/exposure);
641 >                        sprintf(buf, "%.0fL", luminance(cval)/exposure);
642                          break;
643                  case 'c':                               /* color */
644                          comp = pow(2.0, (double)scale);
# Line 437 | Line 664 | XKeyPressedEvent  *ekey;
664                  XStoreColor(thedisplay, ourras->cmap, &cvx);
665                  return(0);
666          case 'p':                               /* position */
667 <                sprintf(buf, "(%d,%d)", ekey->x-xoff, ymax-1-ekey->y+yoff);
667 >                pix2loc(hv, &inpres, ekey->x-xoff, ekey->y-yoff);
668 >                sprintf(buf, "(%d,%d)", (int)(hv[0]*inpres.xr),
669 >                                (int)(hv[1]*inpres.yr));
670                  XDrawImageString(thedisplay, wind, ourgc, ekey->x, ekey->y,
671                                          buf, strlen(buf));
672                  return(0);
673          case 't':                               /* trace */
674 <                if (!gotview) {
446 <                        XBell(thedisplay, 0);
447 <                        return(-1);
448 <                }
449 <                if (viewray(rorg, rdir, &ourview,
450 <                                (ekey->x-xoff+.5)/xmax,
451 <                                (ymax-1-ekey->y+yoff+.5)/ymax) < 0)
452 <                        return(-1);
453 <                printf("%e %e %e ", rorg[0], rorg[1], rorg[2]);
454 <                printf("%e %e %e\n", rdir[0], rdir[1], rdir[2]);
455 <                fflush(stdout);
456 <                return(0);
674 >                return(traceray(ekey->x, ekey->y));
675          case '=':                               /* adjust exposure */
676 +        case '@':                               /* adaptation level */
677                  if (avgbox(cval) == -1)
678                          return(-1);
679 <                n = log(.5/bright(cval))/.69315 - scale;        /* truncate */
679 >                comp = bright(cval);
680 >                if (comp < 1e-20) {
681 >                        XBell(thedisplay, 0);
682 >                        return(-1);
683 >                }
684 >                if (com == '@')
685 >                        comp = 106./exposure/
686 >                        pow(1.219+pow(comp*WHTEFFICACY/exposure,.4),2.5);
687 >                else
688 >                        comp = .5/comp;
689 >                comp = log(comp)/.69315 - scale;
690 >                n = comp < 0 ? comp-.5 : comp+.5 ;      /* round */
691                  if (n == 0)
692                          return(0);
693                  scale_rcolors(ourras, pow(2.0, (double)n));
# Line 470 | Line 700 | XKeyPressedEvent  *ekey;
700                  free_raster(ourras);
701                  getras();
702          /* fall through */
703 <        case CTRL(R):                           /* redraw */
704 <        case CTRL(L):
703 >        case CTRL('R'):                         /* redraw */
704 >        case CTRL('L'):
705                  unmap_rcolors(ourras);
706                  XClearWindow(thedisplay, wind);
707                  map_rcolors(ourras, wind);
708                  if (fast)
709 <                        make_rpixmap(ourras);
709 >                        make_rpixmap(ourras, wind);
710                  redraw(0, 0, width, height);
711                  return(0);
712 +        case 'f':                               /* turn on fast redraw */
713 +                fast = 1;
714 +                make_rpixmap(ourras, wind);
715 +                return(0);
716 +        case 'F':                               /* turn off fast redraw */
717 +                fast = 0;
718 +                free_rpixmap(ourras);
719 +                return(0);
720 +        case '0':                               /* recenter origin */
721 +                if (xoff == 0 & yoff == 0)
722 +                        return(0);
723 +                xoff = yoff = 0;
724 +                XClearWindow(thedisplay, wind);
725 +                redraw(0, 0, width, height);
726 +                return(0);
727          case ' ':                               /* clear */
728                  redraw(box.xmin, box.ymin, box.xsiz, box.ysiz);
729                  return(0);
# Line 492 | Line 737 | XKeyPressedEvent  *ekey;
737   moveimage(ebut)                         /* shift the image */
738   XButtonPressedEvent  *ebut;
739   {
740 <        union {
496 <                XEvent  u;
497 <                XButtonReleasedEvent  b;
498 <                XPointerMovedEvent  m;
499 <        }  e;
740 >        XEvent  e;
741          int     mxo, myo;
742  
743 <        XMaskEvent(thedisplay, ButtonReleaseMask|ButtonMotionMask, &e.u);
744 <        while (e.u.type == MotionNotify) {
745 <                mxo = e.m.x;
746 <                myo = e.m.y;
743 >        XMaskEvent(thedisplay, ButtonReleaseMask|ButtonMotionMask, &e);
744 >        while (e.type == MotionNotify) {
745 >                mxo = e.xmotion.x;
746 >                myo = e.xmotion.y;
747                  revline(ebut->x, ebut->y, mxo, myo);
748                  revbox(xoff+mxo-ebut->x, yoff+myo-ebut->y,
749                                  xoff+mxo-ebut->x+xmax, yoff+myo-ebut->y+ymax);
750 <                XMaskEvent(thedisplay,ButtonReleaseMask|ButtonMotionMask,&e.u);
750 >                XMaskEvent(thedisplay,ButtonReleaseMask|ButtonMotionMask,&e);
751                  revline(ebut->x, ebut->y, mxo, myo);
752                  revbox(xoff+mxo-ebut->x, yoff+myo-ebut->y,
753                                  xoff+mxo-ebut->x+xmax, yoff+myo-ebut->y+ymax);
754          }
755 <        xoff += e.b.x - ebut->x;
756 <        yoff += e.b.y - ebut->y;
755 >        xoff += e.xbutton.x - ebut->x;
756 >        yoff += e.xbutton.y - ebut->y;
757          XClearWindow(thedisplay, wind);
758          redraw(0, 0, width, height);
759   }
# Line 521 | Line 762 | XButtonPressedEvent  *ebut;
762   getbox(ebut)                            /* get new box */
763   XButtonPressedEvent  *ebut;
764   {
765 <        union {
525 <                XEvent  u;
526 <                XButtonReleasedEvent  b;
527 <                XPointerMovedEvent  m;
528 <        }  e;
765 >        XEvent  e;
766  
767 <        XMaskEvent(thedisplay, ButtonReleaseMask|ButtonMotionMask, &e.u);
768 <        while (e.u.type == MotionNotify) {
769 <                revbox(ebut->x, ebut->y, box.xmin = e.m.x, box.ymin = e.m.y);
770 <                XMaskEvent(thedisplay,ButtonReleaseMask|ButtonMotionMask,&e.u);
767 >        XMaskEvent(thedisplay, ButtonReleaseMask|ButtonMotionMask, &e);
768 >        while (e.type == MotionNotify) {
769 >                revbox(ebut->x, ebut->y, box.xmin = e.xmotion.x, box.ymin = e.xmotion.y);
770 >                XMaskEvent(thedisplay,ButtonReleaseMask|ButtonMotionMask,&e);
771                  revbox(ebut->x, ebut->y, box.xmin, box.ymin);
772          }
773 <        box.xmin = e.b.x<0 ? 0 : (e.b.x>=width ? width-1 : e.b.x);
774 <        box.ymin = e.b.y<0 ? 0 : (e.b.y>=height ? height-1 : e.b.y);
773 >        box.xmin = e.xbutton.x<0 ? 0 : (e.xbutton.x>=width ? width-1 : e.xbutton.x);
774 >        box.ymin = e.xbutton.y<0 ? 0 : (e.xbutton.y>=height ? height-1 : e.xbutton.y);
775          if (box.xmin > ebut->x) {
776                  box.xsiz = box.xmin - ebut->x + 1;
777                  box.xmin = ebut->x;
# Line 563 | Line 800 | int  x0, y0, x1, y1;
800   avgbox(clr)                             /* average color over current box */
801   COLOR  clr;
802   {
803 +        static COLOR  lc;
804 +        static int  ll, lr, lt, lb;
805          int  left, right, top, bottom;
806          int  y;
807          double  d;
# Line 586 | Line 825 | COLOR  clr;
825                  bottom = ymax;
826          if (top >= bottom)
827                  return(-1);
828 +        if (left == ll && right == lr && top == lt && bottom == lb) {
829 +                copycolor(clr, lc);
830 +                return(0);
831 +        }
832          for (y = top; y < bottom; y++) {
833                  if (getscan(y) == -1)
834                          return(-1);
# Line 596 | Line 839 | COLOR  clr;
839          }
840          d = 1.0/((right-left)*(bottom-top));
841          scalecolor(clr, d);
842 +        ll = left; lr = right; lt = top; lb = bottom;
843 +        copycolor(lc, clr);
844          return(0);
845   }
846  
# Line 604 | Line 849 | getmono()                      /* get monochrome data */
849   {
850          register unsigned char  *dp;
851          register int    x, err;
852 <        int     y;
852 >        int     y, errp;
853          short   *cerr;
854  
855          if ((cerr = (short *)calloc(xmax,sizeof(short))) == NULL)
856                  quiterr("out of memory in getmono");
857          dp = ourdata - 1;
858          for (y = 0; y < ymax; y++) {
859 <                if (getscan(y) < 0)
860 <                        quiterr("seek error in getmono");
859 >                getscan(y);
860 >                add2icon(y, scanline);
861                  normcolrs(scanline, xmax, scale);
862                  err = 0;
863                  for (x = 0; x < xmax; x++) {
864                          if (!(x&7))
865                                  *++dp = 0;
866 +                        errp = err;
867                          err += normbright(scanline[x]) + cerr[x];
868                          if (err > 127)
869                                  err -= 255;
870                          else
871                                  *dp |= 1<<(7-(x&07));
872 <                        cerr[x] = err >>= 1;
872 >                        err /= 3;
873 >                        cerr[x] = err + errp;
874                  }
875          }
876          free((char *)cerr);
877   }
878  
879  
880 + add2icon(y, scan)               /* add a scanline to our icon data */
881 + int  y;
882 + COLR  *scan;
883 + {
884 +        static short  cerr[ICONSIZ];
885 +        static int  ynext;
886 +        static char  *dp;
887 +        COLR  clr;
888 +        register int  err;
889 +        register int    x, ti;
890 +        int  errp;
891 +
892 +        if (iconheight == 0) {          /* initialize */
893 +                if (xmax <= ICONSIZ && ymax <= ICONSIZ) {
894 +                        iconwidth = xmax;
895 +                        iconheight = ymax;
896 +                } else if (xmax > ymax) {
897 +                        iconwidth = ICONSIZ;
898 +                        iconheight = ICONSIZ*ymax/xmax;
899 +                        if (iconheight < 1)
900 +                                iconheight = 1;
901 +                } else {
902 +                        iconwidth = ICONSIZ*xmax/ymax;
903 +                        if (iconwidth < 1)
904 +                                iconwidth = 1;
905 +                        iconheight = ICONSIZ;
906 +                }
907 +                ynext = 0;
908 +                dp = icondata - 1;
909 +        }
910 +        if (y < ynext*ymax/iconheight)  /* skip this one */
911 +                return;
912 +        err = 0;
913 +        for (x = 0; x < iconwidth; x++) {
914 +                if (!(x&7))
915 +                        *++dp = 0;
916 +                errp = err;
917 +                ti = x*xmax/iconwidth;
918 +                copycolr(clr, scan[ti]);
919 +                normcolrs(clr, 1, scale);
920 +                err += normbright(clr) + cerr[x];
921 +                if (err > 127)
922 +                        err -= 255;
923 +                else
924 +                        *dp |= 1<<(x&07);
925 +                err /= 3;
926 +                cerr[x] = err + errp;
927 +        }
928 +        ynext++;
929 + }
930 +
931 +
932   getfull()                       /* get full (24-bit) data */
933   {
934          int     y;
935 +        register unsigned int4  *dp;
936 +        register int    x;
937 +                                        /* set gamma correction */
938 +        setcolrgam(gamcor);
939 +                                        /* read and convert file */
940 +        dp = (unsigned int4 *)ourdata;
941 +        for (y = 0; y < ymax; y++) {
942 +                getscan(y);
943 +                add2icon(y, scanline);
944 +                if (scale)
945 +                        shiftcolrs(scanline, xmax, scale);
946 +                colrs_gambs(scanline, xmax);
947 +                if (ourras->image->blue_mask & 1)
948 +                        for (x = 0; x < xmax; x++)
949 +                                *dp++ = (unsigned int4)scanline[x][RED] << 16 |
950 +                                        (unsigned int4)scanline[x][GRN] << 8 |
951 +                                        (unsigned int4)scanline[x][BLU] ;
952 +                else
953 +                        for (x = 0; x < xmax; x++)
954 +                                *dp++ = (unsigned int4)scanline[x][RED] |
955 +                                        (unsigned int4)scanline[x][GRN] << 8 |
956 +                                        (unsigned int4)scanline[x][BLU] << 16 ;
957 +        }
958 + }
959 +
960 +
961 + getgrey()                       /* get greyscale data */
962 + {
963 +        int     y;
964          register unsigned char  *dp;
965          register int    x;
966                                          /* set gamma correction */
# Line 640 | Line 968 | getfull()                      /* get full (24-bit) data */
968                                          /* read and convert file */
969          dp = ourdata;
970          for (y = 0; y < ymax; y++) {
971 +                getscan(y);
972 +                add2icon(y, scanline);
973 +                if (scale)
974 +                        shiftcolrs(scanline, xmax, scale);
975 +                for (x = 0; x < xmax; x++)
976 +                        scanline[x][GRN] = normbright(scanline[x]);
977 +                colrs_gambs(scanline, xmax);
978 +                if (maxcolors < 256)
979 +                        for (x = 0; x < xmax; x++)
980 +                                *dp++ = ((long)scanline[x][GRN] *
981 +                                        maxcolors + maxcolors/2) >> 8;
982 +                else
983 +                        for (x = 0; x < xmax; x++)
984 +                                *dp++ = scanline[x][GRN];
985 +        }
986 +        for (x = 0; x < maxcolors; x++)
987 +                clrtab[x][RED] = clrtab[x][GRN] =
988 +                        clrtab[x][BLU] = ((long)x*256 + 128)/maxcolors;
989 + }
990 +
991 +
992 + getmapped()                     /* get color-mapped data */
993 + {
994 +        int     y;
995 +                                        /* make sure we can do it first */
996 +        if (fname == NULL)
997 +                quiterr("cannot map colors from standard input");
998 +                                        /* set gamma correction */
999 +        setcolrgam(gamcor);
1000 +                                        /* make histogram */
1001 +        if (new_histo((long)xmax*ymax) == -1)
1002 +                quiterr("cannot initialize histogram");
1003 +        for (y = 0; y < ymax; y++) {
1004                  if (getscan(y) < 0)
1005 <                        quiterr("seek error in getfull");
1005 >                        break;
1006 >                add2icon(y, scanline);
1007                  if (scale)
1008                          shiftcolrs(scanline, xmax, scale);
1009                  colrs_gambs(scanline, xmax);
1010 <                for (x = 0; x < xmax; x++) {
649 <                        *dp++ = scanline[x][RED];
650 <                        *dp++ = scanline[x][GRN];
651 <                        *dp++ = scanline[x][BLU];
652 <                }
1010 >                cnt_colrs(scanline, xmax);
1011          }
1012 +                                        /* map pixels */
1013 +        if (!new_clrtab(maxcolors))
1014 +                quiterr("cannot create color map");
1015 +        for (y = 0; y < ymax; y++) {
1016 +                getscan(y);
1017 +                if (scale)
1018 +                        shiftcolrs(scanline, xmax, scale);
1019 +                colrs_gambs(scanline, xmax);
1020 +                if (dither)
1021 +                        dith_colrs(ourdata+y*xmax, scanline, xmax);
1022 +                else
1023 +                        map_colrs(ourdata+y*xmax, scanline, xmax);
1024 +        }
1025   }
1026  
1027  
# Line 685 | Line 1056 | double sf;
1056   getscan(y)
1057   int  y;
1058   {
1059 +        static int  trunced = -1;               /* truncated file? */
1060 + skipit:
1061 +        if (trunced >= 0 && y >= trunced) {
1062 +                bzero(scanline, xmax*sizeof(COLR));
1063 +                return(-1);
1064 +        }
1065          if (y != cury) {
1066                  if (scanpos == NULL || scanpos[y] == -1)
1067                          return(-1);
1068                  if (fseek(fin, scanpos[y], 0) == -1)
1069                          quiterr("fseek error");
1070                  cury = y;
1071 <        } else if (scanpos != NULL)
1071 >        } else if (scanpos != NULL && scanpos[y] == -1)
1072                  scanpos[y] = ftell(fin);
1073  
1074 <        if (freadcolrs(scanline, xmax, fin) < 0)
1075 <                quiterr("read error");
1076 <
1074 >        if (freadcolrs(scanline, xmax, fin) < 0) {
1075 >                fprintf(stderr, "%s: %s: unfinished picture\n",
1076 >                                progname, fname==NULL?"<stdin>":fname);
1077 >                trunced = y;
1078 >                goto skipit;
1079 >        }
1080          cury++;
1081          return(0);
702 }
703
704
705 picreadline3(y, l3)                     /* read in 3-byte scanline */
706 int  y;
707 register rgbpixel  *l3;
708 {
709        register int    i;
710                                                        /* read scanline */
711        if (getscan(y) < 0)
712                quiterr("cannot seek for picreadline");
713                                                        /* convert scanline */
714        normcolrs(scanline, xmax, scale);
715        for (i = 0; i < xmax; i++) {
716                l3[i].r = scanline[i][RED];
717                l3[i].g = scanline[i][GRN];
718                l3[i].b = scanline[i][BLU];
719        }
720 }
721
722
723 picwriteline(y, l)              /* add 8-bit scanline to image */
724 int  y;
725 pixel  *l;
726 {
727        bcopy((char *)l, (char *)ourdata+y*xmax, xmax);
728 }
729
730
731 picreadcm(map)                  /* do gamma correction */
732 colormap  map;
733 {
734        extern double  pow();
735        register int  i, val;
736
737        for (i = 0; i < 256; i++) {
738                val = pow((i+0.5)/256.0, 1.0/gamcor) * 256.0;
739                map[0][i] = map[1][i] = map[2][i] = val;
740        }
741 }
742
743
744 picwritecm(map)                 /* handled elsewhere */
745 colormap  map;
746 {
747 #ifdef DEBUG
748        register int i;
749
750        for (i = 0; i < 256; i++)
751                printf("%d %d %d\n", map[0][i],map[1][i],map[2][i]);
752 #endif
1082   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines