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.27 by greg, Fri Jun 18 10:22:26 1993 UTC vs.
Revision 2.36 by greg, Tue Dec 14 20:43:42 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 32 | Line 33 | static char SCCSid[] = "$SunId$ LBL";
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)-'@')
# Line 48 | 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 64 | 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 106 | 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   {
117        extern char  *getenv();
118        char  *gv;
134          int  headline();
135          int  i;
136 +        int  pid;
137          
138          progname = argv[0];
123        if ((gv = getenv("GAMMA")) != NULL)
124                gamcor = atof(gv);
139  
140          for (i = 1; i < argc; i++)
141                  if (argv[i][0] == '-')
# Line 153 | 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 163 | 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);
172 <                }
173 <        } else if (i != argc)
174 <                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 187 | 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 241 | 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 282 | Line 320 | char **argv;
320                  quiterr("cannot create window");
321          width = xmax;
322          height = ymax;
323 <        xgcv.foreground = ourblack;
286 <        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 321 | 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 (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  
# Line 466 | Line 516 | getras()                               /* get raster file */
516                          goto fail;
517                  getmono();
518          } else if (ourvis.class == TrueColor | ourvis.class == DirectColor) {
519 <                ourdata = (unsigned char *)malloc(4*xmax*ymax);
519 >                ourdata = (unsigned char *)malloc(sizeof(int4)*xmax*ymax);
520                  if (ourdata == NULL)
521                          goto fail;
522 <                ourras = make_raster(thedisplay, &ourvis, 32,
522 >                ourras = make_raster(thedisplay, &ourvis, sizeof(int4)*8,
523                                  ourdata, xmax, ymax, 32);
524                  if (ourras == NULL)
525                          goto fail;
# Line 529 | Line 579 | getevent()                             /* process the next event */
579                  else
580                          getbox(&xev.xbutton);
581                  break;
582 <   case ClientMessage:
582 >        case ClientMessage:
583                  if ((xev.xclient.message_type == wmProtocolsAtom) &&
584                                  (xev.xclient.data.l[0] == closedownAtom))
585                          quiterr(NULL);
# Line 627 | Line 677 | XKeyPressedEvent  *ekey;
677          case '@':                               /* adaptation level */
678                  if (avgbox(cval) == -1)
679                          return(-1);
680 <                comp = com=='@'
681 <                ? 106./pow(1.219+pow(luminance(cval)/exposure,.4),2.5)/exposure
682 <                : .5/bright(cval) ;
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)
# Line 876 | Line 933 | COLR  *scan;
933   getfull()                       /* get full (24-bit) data */
934   {
935          int     y;
936 <        register unsigned long  *dp;
936 >        register unsigned int4  *dp;
937          register int    x;
938                                          /* set gamma correction */
939          setcolrgam(gamcor);
940                                          /* read and convert file */
941 <        dp = (unsigned long *)ourdata;
941 >        dp = (unsigned int4 *)ourdata;
942          for (y = 0; y < ymax; y++) {
943                  getscan(y);
944                  add2icon(y, scanline);
# Line 890 | Line 947 | getfull()                      /* get full (24-bit) data */
947                  colrs_gambs(scanline, xmax);
948                  if (ourras->image->blue_mask & 1)
949                          for (x = 0; x < xmax; x++)
950 <                                *dp++ = scanline[x][RED] << 16 |
951 <                                        scanline[x][GRN] << 8 |
952 <                                        scanline[x][BLU] ;
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++ = scanline[x][RED] |
956 <                                        scanline[x][GRN] << 8 |
957 <                                        scanline[x][BLU] << 16 ;
955 >                                *dp++ = (unsigned int4)scanline[x][RED] |
956 >                                        (unsigned int4)scanline[x][GRN] << 8 |
957 >                                        (unsigned int4)scanline[x][BLU] << 16 ;
958          }
959   }
960  
# Line 936 | Line 993 | getgrey()                      /* get greyscale data */
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          new_histo();
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 953 | 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)
957 <                        quiterr("seek error in getmapped");
1016 >                getscan(y);
1017                  if (scale)
1018                          shiftcolrs(scanline, xmax, scale);
1019                  colrs_gambs(scanline, xmax);
# Line 997 | 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 1006 | 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