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

Comparing ray/src/px/pcompos.c (file contents):
Revision 1.7 by greg, Thu May 30 09:44:36 1991 UTC vs.
Revision 2.5 by greg, Tue Jun 16 16:48:41 1992 UTC

# Line 14 | Line 14 | static char SCCSid[] = "$SunId$ LBL";
14  
15   #include  "color.h"
16  
17 + #include  "resolu.h"
18  
19   #define  MAXFILE        32
20  
20 #define  SIGNHT         24
21 #define  setpscom(b,n)  sprintf(b, "psign -h %d '%.30s'|pfilt -1 -x /2 -y /2",\
22                                2*SIGNHT, n)
23
21                                          /* output picture size */
22   int  xsiz = 0;
23   int  ysiz = 0;
# Line 32 | Line 29 | int  ymax = 0;
29  
30   COLR  bgcolr = BLKCOLR;                 /* background color */
31  
32 + int  labelht = 24;                      /* label height */
33 +
34   int  checkthresh = 0;                   /* check threshold value */
35  
36   char  *progname;
# Line 49 | Line 48 | int  nfile;                    /* number of files */
48  
49   int  wrongformat = 0;
50  
51 < char  tmpbuf[128];
51 > FILE  *popen(), *lblopen();
52  
54 FILE  *popen();
53  
56
54   tabputs(s)                      /* print line preceded by a tab */
55   char  *s;
56   {
# Line 73 | Line 70 | main(argc, argv)
70   int  argc;
71   char  *argv[];
72   {
76        double  atof();
73          int  ncolumns = 0;
74 <        int  dolabels = 0;
74 >        int  autolabel = 0;
75          int  curcol = 0, curx = 0, cury = 0;
76 +        char  *thislabel;
77          int  an;
78  
79          progname = argv[0];
# Line 99 | Line 96 | char  *argv[];
96                          ncolumns = atoi(argv[++an]);
97                          break;
98                  case 'l':
99 <                        dolabels++;
99 >                        switch (argv[an][2]) {
100 >                        case 'a':
101 >                                autolabel++;
102 >                                break;
103 >                        case 'h':
104 >                                labelht = atoi(argv[++an]);
105 >                                break;
106 >                        case '\0':
107 >                                goto dofiles;
108 >                        default:
109 >                                goto userr;
110 >                        }
111                          break;
112                  case '\0':
113                  case 't':
# Line 109 | Line 117 | char  *argv[];
117                  }
118   dofiles:
119          for (nfile = 0; an < argc; nfile++) {
120 <                if (dolabels) {
121 <                        if (nfile >= MAXFILE-1) {
122 <                                fprintf(stderr,
123 <                                "%s: only %d files allowed with labels\n",
124 <                                        progname, MAXFILE/2);
125 <                        }
118 <                } else {
119 <                        if (nfile >= MAXFILE) {
120 <                                fprintf(stderr, "%s: only %d files allowed\n",
121 <                                                progname, MAXFILE);
122 <                                quit(1);
123 <                        }
124 <                }
125 <                if (nfile >= (dolabels ? MAXFILE-1 : MAXFILE)) {
126 <                        fprintf(stderr, "%s: too many files\n", progname);
127 <                        quit(1);
128 <                }
120 >                if (nfile >= MAXFILE)
121 >                        goto toomany;
122 >                if (autolabel)
123 >                        thislabel = argv[an];
124 >                else
125 >                        thislabel = NULL;
126                  input[nfile].hasmin = input[nfile].hasmax = 0;
127                  while (an < argc && (argv[an][0] == '-' || argv[an][0] == '+'))
128                          switch (argv[an][1]) {
# Line 146 | Line 143 | dofiles:
143                                  }
144                                  an += 2;
145                                  break;
146 +                        case 'l':
147 +                                if (strcmp(argv[an], "-l"))
148 +                                        goto userr;
149 +                                thislabel = argv[an+1];
150 +                                an += 2;
151 +                                break;
152                          case '\0':
153                                  if (argv[an][0] == '-')
154                                          goto getfile;
155 <                        /* fall through */
155 >                                goto userr;
156                          default:
157                                  goto userr;
158                          }
# Line 160 | Line 163 | getfile:
163                          input[nfile].name = "<stdin>";
164                          input[nfile].fp = stdin;
165                  } else {
166 <                        input[nfile].name = argv[an];
167 <                        if ((input[nfile].fp = argv[an][0] == '!' ?
168 <                                        popen(argv[an]+1, "r") :
169 <                                        fopen(argv[an], "r")) == NULL) {
166 >                        if (argv[an][0] == '!') {
167 >                                input[nfile].name = "<Command>";
168 >                                input[nfile].fp = popen(argv[an]+1, "r");
169 >                        } else {
170 >                                input[nfile].name = argv[an];
171 >                                input[nfile].fp = fopen(argv[an], "r");
172 >                        }
173 >                        if (input[nfile].fp == NULL) {
174                                  perror(argv[an]);
175                                  quit(1);
176                          }
# Line 179 | Line 186 | getfile:
186                  }
187                                                  /* get picture size */
188                  if (fgetresolu(&input[nfile].xres, &input[nfile].yres,
189 <                                input[nfile].fp) != (YMAJOR|YDECR)) {
189 >                                input[nfile].fp) < 0) {
190                          fprintf(stderr, "%s: bad picture size\n",
191                                          input[nfile].name);
192                          quit(1);
# Line 206 | Line 213 | getfile:
213                          xmax = input[nfile].xloc+input[nfile].xres;
214                  if (input[nfile].yloc+input[nfile].yres > ymax)
215                          ymax = input[nfile].yloc+input[nfile].yres;
216 <                if (dolabels) {
217 <                        input[++nfile].name = "<Label>";
218 <                        setpscom(tmpbuf, input[nfile-1].name);
219 <                        if ((input[nfile].fp = popen(tmpbuf, "r")) == NULL)
216 >                if (thislabel != NULL) {
217 >                        if (++nfile >= MAXFILE)
218 >                                goto toomany;
219 >                        input[nfile].name = "<Label>";
220 >                        input[nfile].hasmin = input[nfile].hasmax = 0;
221 >                        if ((input[nfile].fp = lblopen(thislabel,
222 >                                        &input[nfile].xres,
223 >                                        &input[nfile].yres)) == NULL)
224                                  goto labelerr;
214                        if (checkheader(input[nfile].fp, COLRFMT, NULL) < 0)
215                                goto labelerr;
216                        if (fgetresolu(&input[nfile].xres, &input[nfile].yres,
217                                        input[nfile].fp) != (YMAJOR|YDECR))
218                                goto labelerr;
225                          input[nfile].xloc = input[nfile-1].xloc;
226                          input[nfile].yloc = input[nfile-1].yloc +
227 <                                        input[nfile-1].yres - SIGNHT;
222 <                        input[nfile].hasmin = input[nfile].hasmax = 0;
227 >                                        input[nfile-1].yres-input[nfile].yres;
228                  }
229          }
230          if (xsiz <= 0)
# Line 229 | Line 234 | getfile:
234                                          /* add new header info. */
235          printargs(argc, argv, stdout);
236          fputformat(COLRFMT, stdout);
237 <        printf("\n-Y %d +X %d\n", ysiz, xsiz);
237 >        putchar('\n');
238 >        fprtresolu(xsiz, ysiz, stdout);
239  
240          compos();
241          
242          quit(0);
243   userr:
244 <        fprintf(stderr, "Usage: %s [-x xres][-y yres][-b r g b] ", progname);
245 <        fprintf(stderr, "[-t min1][+t max1] file1 x1 y1 ..\n");
244 >        fprintf(stderr, "Usage: %s [-x xr][-y yr][-b r g b][-a n][-la][-lh h] ",
245 >                        progname);
246 >        fprintf(stderr, "[-t min1][+t max1][-l lab] pic1 x1 y1 ..\n");
247          quit(1);
248 + toomany:
249 +        fprintf(stderr, "%s: only %d files and labels allowed\n",
250 +                        progname, MAXFILE);
251 +        quit(1);
252   labelerr:
253          fprintf(stderr, "%s: error opening label\n", progname);
254          quit(1);
# Line 316 | Line 327 | register COLR  c1, c2;
327                  if (i = c1[j] - c2[j])
328                          return(i);
329          return(0);
330 + }
331 +
332 +
333 + FILE *
334 + lblopen(s, xp, yp)              /* open pipe to label generator */
335 + char  *s;
336 + int  *xp, *yp;
337 + {
338 +        char  com[128];
339 +        FILE  *fp;
340 +
341 +        sprintf(com, "psign -s -.2 -h %d '%.30s'", labelht, s);
342 +        if ((fp = popen(com, "r")) == NULL)
343 +                return(NULL);
344 +        if (checkheader(fp, COLRFMT, NULL) < 0)
345 +                goto err;
346 +        if (fgetresolu(xp, yp, fp) < 0)
347 +                goto err;
348 +        return(fp);
349 + err:
350 +        pclose(fp);
351 +        return(NULL);
352   }
353  
354  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines