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.35 by greg, Mon Nov 22 11:33:18 1993 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 113 | Line 117 | extern 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 194 | Line 214 | char  *argv[];
214  
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 [-di disp][[-ge] spec][-b][-m][-d][-f][-c nclrs][-e +/-stops] pic\n",
225 > "Usage: %s [-di disp][[-ge] spec][-b][-m][-d][-f][-c nclrs][-e +/-stops][-g gamcor] pic ..\n",
226                          progname);
227          exit(1);
228   }
# Line 248 | Line 272 | char **argv;
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("GAMMA");
280 +        if (gamstr != NULL)
281 +                gamcor = atof(gamstr);
282                                  /* get best visual for default screen */
283          getbestvis();
284                                  /* store image */
# Line 289 | Line 320 | char **argv;
320                  quiterr("cannot create window");
321          width = xmax;
322          height = ymax;
323 <        xgcv.foreground = ourblack;
293 <        xgcv.background = ourwhite;
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;
# Line 328 | Line 360 | char **argv;
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 (parent > 0 & wind != 0) {
370 >                XDestroyWindow(thedisplay, wind);
371 >                XFlush(thedisplay);
372 >        } else if (parent < 0 & sigrecv == 0)
373 >                kill(getppid(), SIGCONT);
374 >        while (parent > 0 && wait(&cs) != -1) { /* wait for any children */
375 >                if (es == 0)
376 >                        es = cs>>8 & 0xff;
377 >                parent--;
378          }
379 <        exit(0);
379 >        exit(es);
380   }
381  
382  
# Line 536 | Line 580 | getevent()                             /* process the next event */
580                  else
581                          getbox(&xev.xbutton);
582                  break;
583 <   case ClientMessage:
583 >        case ClientMessage:
584                  if ((xev.xclient.message_type == wmProtocolsAtom) &&
585                                  (xev.xclient.data.l[0] == closedownAtom))
586                          quiterr(NULL);
# Line 634 | Line 678 | XKeyPressedEvent  *ekey;
678          case '@':                               /* adaptation level */
679                  if (avgbox(cval) == -1)
680                          return(-1);
681 <                comp = com=='@'
682 <                ? 106./pow(1.219+pow(luminance(cval)/exposure,.4),2.5)/exposure
683 <                : .5/bright(cval) ;
681 >                comp = bright(cval);
682 >                if (comp < 1e-20) {
683 >                        XBell(thedisplay, 0);
684 >                        return(-1);
685 >                }
686 >                if (com == '@')
687 >                        comp = 106./exposure/
688 >                        pow(1.219+pow(comp*WHTEFFICACY/exposure,.4),2.5);
689 >                else
690 >                        comp = .5/comp;
691                  comp = log(comp)/.69315 - scale;
692                  n = comp < 0 ? comp-.5 : comp+.5 ;      /* round */
693                  if (n == 0)
# Line 897 | Line 948 | getfull()                      /* get full (24-bit) data */
948                  colrs_gambs(scanline, xmax);
949                  if (ourras->image->blue_mask & 1)
950                          for (x = 0; x < xmax; x++)
951 <                                *dp++ = scanline[x][RED] << 16 |
952 <                                        scanline[x][GRN] << 8 |
953 <                                        scanline[x][BLU] ;
951 >                                *dp++ = (unsigned int4)scanline[x][RED] << 16 |
952 >                                        (unsigned int4)scanline[x][GRN] << 8 |
953 >                                        (unsigned int4)scanline[x][BLU] ;
954                  else
955                          for (x = 0; x < xmax; x++)
956 <                                *dp++ = scanline[x][RED] |
957 <                                        scanline[x][GRN] << 8 |
958 <                                        scanline[x][BLU] << 16 ;
956 >                                *dp++ = (unsigned int4)scanline[x][RED] |
957 >                                        (unsigned int4)scanline[x][GRN] << 8 |
958 >                                        (unsigned int4)scanline[x][BLU] << 16 ;
959          }
960   }
961  
# Line 943 | Line 994 | getgrey()                      /* get greyscale data */
994   getmapped()                     /* get color-mapped data */
995   {
996          int     y;
997 +                                        /* make sure we can do it first */
998 +        if (fname == NULL)
999 +                quiterr("cannot map colors from standard input");
1000                                          /* set gamma correction */
1001          setcolrgam(gamcor);
1002                                          /* make histogram */
1003          new_histo();
1004          for (y = 0; y < ymax; y++) {
1005                  if (getscan(y) < 0)
1006 <                        quiterr("seek error in getmapped");
1006 >                        break;
1007                  add2icon(y, scanline);
1008                  if (scale)
1009                          shiftcolrs(scanline, xmax, scale);
# Line 960 | Line 1014 | getmapped()                    /* get color-mapped data */
1014          if (!new_clrtab(maxcolors))
1015                  quiterr("cannot create color map");
1016          for (y = 0; y < ymax; y++) {
1017 <                if (getscan(y) < 0)
964 <                        quiterr("seek error in getmapped");
1017 >                getscan(y);
1018                  if (scale)
1019                          shiftcolrs(scanline, xmax, scale);
1020                  colrs_gambs(scanline, xmax);
# Line 1004 | 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);
# Line 1013 | Line 1072 | int  y;
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);
1083   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines