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 2.28 by greg, Mon Jul 19 15:18:05 1993 UTC vs.
Revision 2.39 by greg, Mon Nov 21 09:18:48 1994 UTC

# 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>
# Line 55 | Line 56 | static char SCCSid[] = "$SunId$ LBL";
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? */
# Line 71 | 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  
# Line 109 | Line 113 | char  *progname;
113  
114   char  errmsg[128];
115  
116 < extern BYTE  clrtab[256][3];            /* global color map */
116 > BYTE  clrtab[256][3];                   /* global color map */
117  
118   extern long  ftell();
119  
120 + extern char  *getenv();
121 +
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   {
124        extern char  *getenv();
125        char  *gv;
134          int  headline();
135          int  i;
136 +        int  pid;
137          
138          progname = argv[0];
130        if ((gv = getenv("GAMMA")) != NULL)
131                gamcor = atof(gv);
139  
140          for (i = 1; i < argc; i++)
141                  if (argv[i][0] == '-')
# Line 160 | Line 167 | char  *argv[];
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 170 | 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, "cannot open file \"%s\"", fname);
201 <                        quiterr(errmsg);
179 <                }
180 <        } else if (i != argc)
181 <                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 */
# Line 198 | Line 218 | char  *argv[];
218                  getevent();             /* main loop */
219   userr:
220          fprintf(stderr,
221 < "Usage: %s [-di disp][[-ge] spec][-b][-m][-d][-f][-c nclrs][-e +/-stops] pic\n",
221 > "Usage: %s [-di disp][[-ge] spec][-b][-m][-d][-f][-c nclrs][-e +/-stops][-g gamcor] pic ..\n",
222                          progname);
223          exit(1);
224   }
# Line 248 | Line 268 | char **argv;
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 */
# Line 289 | Line 316 | char **argv;
316                  quiterr("cannot create window");
317          width = xmax;
318          height = ymax;
319 <        xgcv.foreground = ourblack;
293 <        xgcv.background = ourwhite;
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;
# Line 321 | Line 349 | char **argv;
349          XSetWMProtocols(thedisplay, wind, &closedownAtom, 1);
350  
351          XMapWindow(thedisplay, wind);
324        return;
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  
# Line 519 | Line 557 | getevent()                             /* process the next event */
557                  map_rcolors(ourras, wind);
558                  if (fast)
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                  if (!fast)
# Line 536 | Line 578 | getevent()                             /* process the next event */
578                  else
579                          getbox(&xev.xbutton);
580                  break;
581 <   case ClientMessage:
581 >        case ClientMessage:
582                  if ((xev.xclient.message_type == wmProtocolsAtom) &&
583                                  (xev.xclient.data.l[0] == closedownAtom))
584                          quiterr(NULL);
# Line 634 | Line 676 | XKeyPressedEvent  *ekey;
676          case '@':                               /* adaptation level */
677                  if (avgbox(cval) == -1)
678                          return(-1);
679 <                comp = com=='@'
680 <                ? 106./pow(1.219+pow(luminance(cval)/exposure,.4),2.5)/exposure
681 <                : .5/bright(cval) ;
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)
# Line 897 | Line 946 | getfull()                      /* get full (24-bit) data */
946                  colrs_gambs(scanline, xmax);
947                  if (ourras->image->blue_mask & 1)
948                          for (x = 0; x < xmax; x++)
949 <                                *dp++ = scanline[x][RED] << 16 |
950 <                                        scanline[x][GRN] << 8 |
951 <                                        scanline[x][BLU] ;
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++ = scanline[x][RED] |
955 <                                        scanline[x][GRN] << 8 |
956 <                                        scanline[x][BLU] << 16 ;
954 >                                *dp++ = (unsigned int4)scanline[x][RED] |
955 >                                        (unsigned int4)scanline[x][GRN] << 8 |
956 >                                        (unsigned int4)scanline[x][BLU] << 16 ;
957          }
958   }
959  
# Line 943 | Line 992 | getgrey()                      /* get greyscale data */
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 <        new_histo();
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 getmapped");
1005 >                        break;
1006                  add2icon(y, scanline);
1007                  if (scale)
1008                          shiftcolrs(scanline, xmax, scale);
# Line 960 | Line 1013 | getmapped()                    /* get color-mapped data */
1013          if (!new_clrtab(maxcolors))
1014                  quiterr("cannot create color map");
1015          for (y = 0; y < ymax; y++) {
1016 <                if (getscan(y) < 0)
964 <                        quiterr("seek error in getmapped");
1016 >                getscan(y);
1017                  if (scale)
1018                          shiftcolrs(scanline, xmax, scale);
1019                  colrs_gambs(scanline, xmax);
# Line 1004 | 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);
# Line 1013 | Line 1071 | int  y;
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);
1082   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines