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 2.6 by greg, Mon Jun 22 14:14:40 1992 UTC vs.
Revision 2.18 by greg, Sun Feb 27 10:17:04 1994 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 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 12 | Line 12 | static char SCCSid[] = "$SunId$ LBL";
12  
13   #include  <stdio.h>
14  
15 + #include  <math.h>
16 +
17 + #ifdef MSDOS
18 + #include  <fcntl.h>
19 + #endif
20 +
21   #include  "color.h"
22  
23   #include  "resolu.h"
24  
25 < #define  MAXFILE        32
25 > #define  MAXFILE        64
26  
27 + #define  HASMIN         1
28 + #define  HASMAX         2
29 +
30                                          /* output picture size */
31   int  xsiz = 0;
32   int  ysiz = 0;
# Line 33 | Line 42 | int  labelht = 24;                     /* label height */
42  
43   int  checkthresh = 0;                   /* check threshold value */
44  
45 + char  Command[] = "<Command>";
46 + char  Label[] = "<Label>";
47 +
48   char  *progname;
49  
50   struct {
# Line 40 | Line 52 | struct {
52          FILE  *fp;                      /* stream pointer */
53          int  xres, yres;                /* picture size */
54          int  xloc, yloc;                /* anchor point */
55 <        int  hasmin, hasmax;            /* has threshold values */
55 >        int  flags;                     /* HASMIN, HASMAX */
56          COLR  thmin, thmax;             /* thresholds */
57   } input[MAXFILE];               /* our input files */
58  
# Line 50 | Line 62 | int  wrongformat = 0;
62  
63   FILE  *popen(), *lblopen();
64  
65 + extern char  *malloc();
66  
67 +
68   tabputs(s)                      /* print line preceded by a tab */
69   char  *s;
70   {
71          char  fmt[32];
72  
73 <        if (isformat(s)) {
74 <                formatval(fmt, s);
73 >        if (isheadid(s))
74 >                return;
75 >        if (formatval(fmt, s))
76                  wrongformat = strcmp(fmt, COLRFMT);
77 <        } else {
77 >        else {
78                  putc('\t', stdout);
79                  fputs(s, stdout);
80          }
# Line 72 | Line 87 | char  *argv[];
87   {
88          int  ncolumns = 0;
89          int  autolabel = 0;
90 <        int  curcol = 0, curx = 0, cury = 0;
90 >        int  curcol = 0, x0 = 0, curx = 0, cury = 0, spacing = 0;
91 >        int  xsgn, ysgn;
92          char  *thislabel;
93          int  an;
94 <
94 > #ifdef MSDOS
95 >        extern int  _fmode;
96 >        _fmode = O_BINARY;
97 >        setmode(fileno(stdin), O_BINARY);
98 >        setmode(fileno(stdout), O_BINARY);
99 > #endif
100          progname = argv[0];
101  
102          for (an = 1; an < argc && argv[an][0] == '-'; an++)
103                  switch (argv[an][1]) {
104                  case 'x':
105 <                        xmax = xsiz = atoi(argv[++an]);
105 >                        xsiz = atoi(argv[++an]);
106                          break;
107                  case 'y':
108 <                        ymax = ysiz = atoi(argv[++an]);
108 >                        ysiz = atoi(argv[++an]);
109                          break;
110                  case 'b':
111                          setcolr(bgcolr, atof(argv[an+1]),
# Line 95 | Line 116 | char  *argv[];
116                  case 'a':
117                          ncolumns = atoi(argv[++an]);
118                          break;
119 +                case 's':
120 +                        spacing = atoi(argv[++an]);
121 +                        break;
122 +                case 'o':
123 +                        curx = x0 = atoi(argv[++an]);
124 +                        cury = atoi(argv[++an]);
125 +                        break;
126                  case 'l':
127                          switch (argv[an][2]) {
128                          case 'a':
# Line 116 | Line 144 | char  *argv[];
144                          goto userr;
145                  }
146   dofiles:
147 +        newheader("RADIANCE", stdout);
148          for (nfile = 0; an < argc; nfile++) {
149                  if (nfile >= MAXFILE)
150                          goto toomany;
151                  thislabel = NULL;
152 <                input[nfile].hasmin = input[nfile].hasmax = 0;
153 <                while (an < argc && (argv[an][0] == '-' || argv[an][0] == '+'))
152 >                input[nfile].flags = 0;
153 >                xsgn = ysgn = '-';
154 >                while (an < argc && (argv[an][0] == '-' || argv[an][0] == '+'
155 >                                || argv[an][0] == '=')) {
156                          switch (argv[an][1]) {
157                          case 't':
158                                  checkthresh = 1;
159                                  if (argv[an][0] == '-') {
160 <                                        input[nfile].hasmin = 1;
160 >                                        input[nfile].flags |= HASMIN;
161                                          setcolr(input[nfile].thmin,
162                                                          atof(argv[an+1]),
163                                                          atof(argv[an+1]),
164                                                          atof(argv[an+1]));
165 <                                } else {
166 <                                        input[nfile].hasmax = 1;
165 >                                } else if (argv[an][0] == '+') {
166 >                                        input[nfile].flags |= HASMAX;
167                                          setcolr(input[nfile].thmax,
168                                                          atof(argv[an+1]),
169                                                          atof(argv[an+1]),
170                                                          atof(argv[an+1]));
171 <                                }
172 <                                an += 2;
171 >                                } else
172 >                                        goto userr;
173 >                                an++;
174                                  break;
175                          case 'l':
176                                  if (strcmp(argv[an], "-l"))
177                                          goto userr;
178 <                                thislabel = argv[an+1];
147 <                                an += 2;
178 >                                thislabel = argv[++an];
179                                  break;
180 +                        case '+':
181 +                        case '-':
182 +                        case '0':
183 +                                if (argv[an][0] != '=')
184 +                                        goto userr;
185 +                                xsgn = argv[an][1];
186 +                                ysgn = argv[an][2];
187 +                                if (ysgn != '+' && ysgn != '-' && ysgn != '0')
188 +                                        goto userr;
189 +                                break;
190                          case '\0':
191                                  if (argv[an][0] == '-')
192                                          goto getfile;
# Line 153 | Line 194 | dofiles:
194                          default:
195                                  goto userr;
196                          }
197 +                        an++;
198 +                }
199   getfile:
200                  if (argc-an < (ncolumns ? 1 : 3))
201                          goto userr;
# Line 163 | Line 206 | getfile:
206                          input[nfile].fp = stdin;
207                  } else {
208                          if (argv[an][0] == '!') {
209 <                                input[nfile].name = "<Command>";
209 >                                input[nfile].name = Command;
210                                  input[nfile].fp = popen(argv[an]+1, "r");
211                          } else {
212                                  input[nfile].name = argv[an];
# Line 192 | Line 235 | getfile:
235                  }
236                  if (ncolumns > 0) {
237                          if (curcol >= ncolumns) {
238 <                                cury = ymax;
239 <                                curx = 0;
238 >                                cury = ymax + spacing;
239 >                                curx = x0;
240                                  curcol = 0;
241                          }
242                          input[nfile].xloc = curx;
243                          input[nfile].yloc = cury;
244 <                        curx += input[nfile].xres;
244 >                        curx += input[nfile].xres + spacing;
245                          curcol++;
246                  } else {
247                          input[nfile].xloc = atoi(argv[an++]);
248 +                        if (xsgn == '+')
249 +                                input[nfile].xloc -= input[nfile].xres;
250 +                        else if (xsgn == '0')
251 +                                input[nfile].xloc -= input[nfile].xres/2;
252                          input[nfile].yloc = atoi(argv[an++]);
253 +                        if (ysgn == '+')
254 +                                input[nfile].yloc -= input[nfile].yres;
255 +                        else if (ysgn == '0')
256 +                                input[nfile].yloc -= input[nfile].yres/2;
257                  }
258                  if (input[nfile].xloc < xmin)
259                          xmin = input[nfile].xloc;
# Line 215 | Line 266 | getfile:
266                  if (thislabel != NULL) {
267                          if (++nfile >= MAXFILE)
268                                  goto toomany;
269 <                        input[nfile].name = "<Label>";
270 <                        input[nfile].hasmin = input[nfile].hasmax = 0;
269 >                        input[nfile].name = Label;
270 >                        input[nfile].flags = 0;
271 >                        input[nfile].xres = input[nfile-1].xres;
272 >                        input[nfile].yres = labelht;
273                          if ((input[nfile].fp = lblopen(thislabel,
274                                          &input[nfile].xres,
275                                          &input[nfile].yres)) == NULL)
# Line 228 | Line 281 | getfile:
281          }
282          if (xsiz <= 0)
283                  xsiz = xmax;
284 +        else if (xsiz > xmax)
285 +                xmax = xsiz;
286          if (ysiz <= 0)
287                  ysiz = ymax;
288 +        else if (ysiz > ymax)
289 +                ymax = ysiz;
290                                          /* add new header info. */
291          printargs(argc, argv, stdout);
292          fputformat(COLRFMT, stdout);
# Line 240 | Line 297 | getfile:
297          
298          quit(0);
299   userr:
300 <        fprintf(stderr, "Usage: %s [-x xr][-y yr][-b r g b][-a n][-la][-lh h] ",
300 >        fprintf(stderr,
301 >        "Usage: %s [-x xr][-y yr][-b r g b][-a n][-s p][-o x0 y0][-la][-lh h] ",
302                          progname);
303 <        fprintf(stderr, "[-t min1][+t max1][-l lab] pic1 x1 y1 ..\n");
303 >        fprintf(stderr, "[-t min1][+t max1][-l lab][=SS] pic1 x1 y1 ..\n");
304          quit(1);
305   toomany:
306          fprintf(stderr, "%s: only %d files and labels allowed\n",
# Line 291 | Line 349 | compos()                               /* composite pictures */
349                                  if (x > xsiz)
350                                          x = xsiz;
351                                  for (x--; x >= 0 && x >= input[i].xloc; x--) {
352 <                                        if (input[i].hasmin &&
352 >                                        if (input[i].flags & HASMIN &&
353                                          cmpcolr(scanin[x], input[i].thmin) <= 0)
354                                                  continue;
355 <                                        if (input[i].hasmax &&
355 >                                        if (input[i].flags & HASMAX &&
356                                          cmpcolr(scanin[x], input[i].thmax) >= 0)
357                                                  continue;
358                                          copycolr(scanout[x], scanin[x]);
# Line 337 | Line 395 | int  *xp, *yp;
395          char  com[128];
396          FILE  *fp;
397  
398 <        sprintf(com, "psign -s -.2 -h %d '%.30s'", labelht, s);
398 >        sprintf(com, "psign -s -.15 -a 2 -x %d -y %d '%.90s'", *xp, *yp, s);
399          if ((fp = popen(com, "r")) == NULL)
400                  return(NULL);
401          if (checkheader(fp, COLRFMT, NULL) < 0)
# Line 354 | Line 412 | err:
412   quit(code)              /* exit gracefully */
413   int  code;
414   {
415 +        register int  i;
416 +                                /* close input files */
417 +        for (i = 0; i < nfile; i++)
418 +                if (input[i].name == Command || input[i].name == Label)
419 +                        pclose(input[i].fp);
420 +                else
421 +                        fclose(input[i].fp);
422          exit(code);
423   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines