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

Comparing ray/src/common/image.c (file contents):
Revision 1.12 by greg, Sat Oct 13 20:56:01 1990 UTC vs.
Revision 2.34 by greg, Tue Mar 11 02:21:46 2008 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1986 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  image.c - routines for image generation.
6   *
7 < *     10/17/85
7 > *  External symbols declared in view.h
8   */
9  
10 < #include  "standard.h"
10 > #include "copyright.h"
11  
12 + #include  <ctype.h>
13 + #include  "rtio.h"
14 + #include  "rtmath.h"
15 + #include  "paths.h"
16   #include  "view.h"
17  
18 +
19 + #define  FEQ(x,y)       (fabs((x)-(y)) <= FTINY)
20 + #define  VEQ(v,w)       (FEQ((v)[0],(w)[0]) && FEQ((v)[1],(w)[1]) \
21 +                                && FEQ((v)[2],(w)[2]))
22 +
23   VIEW  stdview = STDVIEW;                /* default view parameters */
24  
25 + static gethfunc gethview;
26  
27 +
28   char *
29   setview(v)              /* set hvec and vvec, return message on error */
30   register VIEW  *v;
# Line 24 | Line 32 | register VIEW  *v;
32          static char  ill_horiz[] = "illegal horizontal view size";
33          static char  ill_vert[] = "illegal vertical view size";
34          
35 <        if (normalize(v->vdir) == 0.0)          /* normalize direction */
35 >        if (v->vaft < -FTINY || (v->vaft > FTINY && v->vaft <= v->vfore))
36 >                return("illegal fore/aft clipping plane");
37 >
38 >        if (v->vdist <= FTINY)
39 >                return("illegal view distance");
40 >        v->vdist *= normalize(v->vdir);         /* normalize direction */
41 >        if (v->vdist == 0.0)
42                  return("zero view direction");
43  
44 +        if (normalize(v->vup) == 0.0)           /* normalize view up */
45 +                return("zero view up vector");
46 +
47          fcross(v->hvec, v->vdir, v->vup);       /* compute horiz dir */
48  
49          if (normalize(v->hvec) == 0.0)
50 <                return("illegal view up vector");
50 >                return("view up parallel to view direction");
51  
52          fcross(v->vvec, v->hvec, v->vdir);      /* compute vert dir */
53  
# Line 52 | Line 69 | register VIEW  *v;
69                  v->hn2 = 2.0 * tan(v->horiz*(PI/180.0/2.0));
70                  v->vn2 = 2.0 * tan(v->vert*(PI/180.0/2.0));
71                  break;
72 +        case VT_CYL:                            /* cylindrical panorama */
73 +                if (v->horiz > 360.0+FTINY)
74 +                        return(ill_horiz);
75 +                if (v->vert >= 180.0-FTINY)
76 +                        return(ill_vert);
77 +                v->hn2 = v->horiz * (PI/180.0);
78 +                v->vn2 = 2.0 * tan(v->vert*(PI/180.0/2.0));
79 +                break;
80          case VT_ANG:                            /* angular fisheye */
81                  if (v->horiz > 360.0+FTINY)
82                          return(ill_horiz);
83                  if (v->vert > 360.0+FTINY)
84                          return(ill_vert);
85 <                v->hn2 = v->horiz / 90.0;
86 <                v->vn2 = v->vert / 90.0;
85 >                v->hn2 = v->horiz * (PI/180.0);
86 >                v->vn2 = v->vert * (PI/180.0);
87                  break;
88          case VT_HEM:                            /* hemispherical fisheye */
89                  if (v->horiz > 180.0+FTINY)
# Line 68 | Line 93 | register VIEW  *v;
93                  v->hn2 = 2.0 * sin(v->horiz*(PI/180.0/2.0));
94                  v->vn2 = 2.0 * sin(v->vert*(PI/180.0/2.0));
95                  break;
96 +        case VT_PLS:                            /* planispheric fisheye */
97 +                if (v->horiz >= 360.0-FTINY)
98 +                        return(ill_horiz);
99 +                if (v->vert >= 360.0-FTINY)
100 +                        return(ill_vert);
101 +                v->hn2 = 2.*sin(v->horiz*(PI/180.0/2.0)) /
102 +                                (1.0 + cos(v->horiz*(PI/180.0/2.0)));
103 +                v->vn2 = 2.*sin(v->vert*(PI/180.0/2.0)) /
104 +                                (1.0 + cos(v->vert*(PI/180.0/2.0)));
105 +                break;
106          default:
107                  return("unknown view type");
108          }
109 <        if (v->type == VT_PAR || v->type == VT_PER) {
110 <                v->hvec[0] *= v->hn2;
111 <                v->hvec[1] *= v->hn2;
112 <                v->hvec[2] *= v->hn2;
109 >        if (v->type != VT_ANG && v->type != VT_PLS) {
110 >                if (v->type != VT_CYL) {
111 >                        v->hvec[0] *= v->hn2;
112 >                        v->hvec[1] *= v->hn2;
113 >                        v->hvec[2] *= v->hn2;
114 >                }
115                  v->vvec[0] *= v->vn2;
116                  v->vvec[1] *= v->vn2;
117                  v->vvec[2] *= v->vn2;
# Line 86 | Line 123 | register VIEW  *v;
123   }
124  
125  
126 + void
127   normaspect(va, ap, xp, yp)              /* fix pixel aspect or resolution */
128   double  va;                     /* view aspect ratio */
129   double  *ap;                    /* pixel aspect in (or out if 0) */
# Line 100 | Line 138 | int  *xp, *yp;                 /* x and y resolution in (or out if *
138   }
139  
140  
141 + double
142   viewray(orig, direc, v, x, y)           /* compute ray origin and direction */
143   FVECT  orig, direc;
144   register VIEW  *v;
# Line 112 | Line 151 | double  x, y;
151  
152          switch(v->type) {
153          case VT_PAR:                    /* parallel view */
154 <                orig[0] = v->vp[0] + x*v->hvec[0] + y*v->vvec[0];
155 <                orig[1] = v->vp[1] + x*v->hvec[1] + y*v->vvec[1];
156 <                orig[2] = v->vp[2] + x*v->hvec[2] + y*v->vvec[2];
154 >                orig[0] = v->vp[0] + v->vfore*v->vdir[0]
155 >                                + x*v->hvec[0] + y*v->vvec[0];
156 >                orig[1] = v->vp[1] + v->vfore*v->vdir[1]
157 >                                + x*v->hvec[1] + y*v->vvec[1];
158 >                orig[2] = v->vp[2] + v->vfore*v->vdir[2]
159 >                                + x*v->hvec[2] + y*v->vvec[2];
160                  VCOPY(direc, v->vdir);
161 <                return(0);
161 >                return(v->vaft > FTINY ? v->vaft - v->vfore : 0.0);
162          case VT_PER:                    /* perspective view */
121                VCOPY(orig, v->vp);
163                  direc[0] = v->vdir[0] + x*v->hvec[0] + y*v->vvec[0];
164                  direc[1] = v->vdir[1] + x*v->hvec[1] + y*v->vvec[1];
165                  direc[2] = v->vdir[2] + x*v->hvec[2] + y*v->vvec[2];
166 <                normalize(direc);
167 <                return(0);
166 >                orig[0] = v->vp[0] + v->vfore*direc[0];
167 >                orig[1] = v->vp[1] + v->vfore*direc[1];
168 >                orig[2] = v->vp[2] + v->vfore*direc[2];
169 >                d = normalize(direc);
170 >                return(v->vaft > FTINY ? (v->vaft - v->vfore)*d : 0.0);
171          case VT_HEM:                    /* hemispherical fisheye */
172 <                x *= v->horiz/90.0;
129 <                y *= v->vert/90.0;
130 <                z = 1.0 - x*x - y*y;
172 >                z = 1.0 - x*x*v->hn2 - y*y*v->vn2;
173                  if (z < 0.0)
174 <                        return(-1);
174 >                        return(-1.0);
175                  z = sqrt(z);
134                VCOPY(orig, v->vp);
176                  direc[0] = z*v->vdir[0] + x*v->hvec[0] + y*v->vvec[0];
177                  direc[1] = z*v->vdir[1] + x*v->hvec[1] + y*v->vvec[1];
178                  direc[2] = z*v->vdir[2] + x*v->hvec[2] + y*v->vvec[2];
179 <                return(0);
179 >                orig[0] = v->vp[0] + v->vfore*direc[0];
180 >                orig[1] = v->vp[1] + v->vfore*direc[1];
181 >                orig[2] = v->vp[2] + v->vfore*direc[2];
182 >                return(v->vaft > FTINY ? v->vaft - v->vfore : 0.0);
183 >        case VT_CYL:                    /* cylindrical panorama */
184 >                d = x * v->horiz * (PI/180.0);
185 >                z = cos(d);
186 >                x = sin(d);
187 >                direc[0] = z*v->vdir[0] + x*v->hvec[0] + y*v->vvec[0];
188 >                direc[1] = z*v->vdir[1] + x*v->hvec[1] + y*v->vvec[1];
189 >                direc[2] = z*v->vdir[2] + x*v->hvec[2] + y*v->vvec[2];
190 >                orig[0] = v->vp[0] + v->vfore*direc[0];
191 >                orig[1] = v->vp[1] + v->vfore*direc[1];
192 >                orig[2] = v->vp[2] + v->vfore*direc[2];
193 >                d = normalize(direc);
194 >                return(v->vaft > FTINY ? (v->vaft - v->vfore)*d : 0.0);
195          case VT_ANG:                    /* angular fisheye */
196 <                x *= v->horiz/180.0;
197 <                y *= v->vert/180.0;
196 >                x *= (1.0/180.0)*v->horiz;
197 >                y *= (1.0/180.0)*v->vert;
198                  d = x*x + y*y;
199                  if (d > 1.0)
200 <                        return(-1);
145 <                VCOPY(orig, v->vp);
146 <                if (d <= FTINY) {
147 <                        VCOPY(direc, v->vdir);
148 <                        return(0);
149 <                }
200 >                        return(-1.0);
201                  d = sqrt(d);
202                  z = cos(PI*d);
203 <                d = sqrt(1 - z*z)/d;
203 >                d = d <= FTINY ? PI : sqrt(1.0 - z*z)/d;
204                  x *= d;
205                  y *= d;
206                  direc[0] = z*v->vdir[0] + x*v->hvec[0] + y*v->vvec[0];
207                  direc[1] = z*v->vdir[1] + x*v->hvec[1] + y*v->vvec[1];
208                  direc[2] = z*v->vdir[2] + x*v->hvec[2] + y*v->vvec[2];
209 <                return(0);
209 >                orig[0] = v->vp[0] + v->vfore*direc[0];
210 >                orig[1] = v->vp[1] + v->vfore*direc[1];
211 >                orig[2] = v->vp[2] + v->vfore*direc[2];
212 >                return(v->vaft > FTINY ? v->vaft - v->vfore : 0.0);
213 >        case VT_PLS:                    /* planispheric fisheye */
214 >                x *= sqrt(v->hn2);
215 >                y *= sqrt(v->vn2);
216 >                d = x*x + y*y;
217 >                z = (1. - d)/(1. + d);
218 >                d = d <= FTINY*FTINY ? PI : sqrt((1.0 - z*z)/d);
219 >                x *= d;
220 >                y *= d;
221 >                direc[0] = z*v->vdir[0] + x*v->hvec[0] + y*v->vvec[0];
222 >                direc[1] = z*v->vdir[1] + x*v->hvec[1] + y*v->vvec[1];
223 >                direc[2] = z*v->vdir[2] + x*v->hvec[2] + y*v->vvec[2];
224 >                orig[0] = v->vp[0] + v->vfore*direc[0];
225 >                orig[1] = v->vp[1] + v->vfore*direc[1];
226 >                orig[2] = v->vp[2] + v->vfore*direc[2];
227 >                return(v->vaft > FTINY ? v->vaft - v->vfore : 0.0);
228          }
229 <        return(-1);
229 >        return(-1.0);
230   }
231  
232  
233 < viewpixel(xp, yp, zp, v, p)             /* find image location for point */
234 < double  *xp, *yp, *zp;
233 > void
234 > viewloc(ip, v, p)               /* find image location for point */
235 > FVECT  ip;
236   register VIEW  *v;
237   FVECT  p;
238   {
239 <        double  d;
239 >        double  d, d2;
240          FVECT  disp;
241  
242 <        disp[0] = p[0] - v->vp[0];
173 <        disp[1] = p[1] - v->vp[1];
174 <        disp[2] = p[2] - v->vp[2];
242 >        VSUB(disp, p, v->vp);
243  
244          switch (v->type) {
245          case VT_PAR:                    /* parallel view */
246 <                if (zp != NULL)
247 <                        *zp = DOT(disp,v->vdir);
180 <                *xp = DOT(disp,v->hvec)/v->hn2 + 0.5 - v->hoff;
181 <                *yp = DOT(disp,v->vvec)/v->vn2 + 0.5 - v->voff;
182 <                return;
246 >                ip[2] = DOT(disp,v->vdir) - v->vfore;
247 >                break;
248          case VT_PER:                    /* perspective view */
249                  d = DOT(disp,v->vdir);
250 <                if (zp != NULL) {
251 <                        *zp = sqrt(DOT(disp,disp));
252 <                        if (d < 0.0)
188 <                                *zp = -*zp;
189 <                }
190 <                if (d < 0.0)            /* fold pyramid */
250 >                ip[2] = VLEN(disp);
251 >                if (d < 0.0) {          /* fold pyramid */
252 >                        ip[2] = -ip[2];
253                          d = -d;
254 +                }
255                  if (d > FTINY) {
256                          d = 1.0/d;
257                          disp[0] *= d;
258                          disp[1] *= d;
259                          disp[2] *= d;
260                  }
261 <                *xp = DOT(disp,v->hvec)/v->hn2 + 0.5 - v->hoff;
262 <                *yp = DOT(disp,v->vvec)/v->vn2 + 0.5 - v->voff;
200 <                return;
261 >                ip[2] *= (1.0 - v->vfore*d);
262 >                break;
263          case VT_HEM:                    /* hemispherical fisheye */
264                  d = normalize(disp);
265 <                if (zp != NULL) {
266 <                        if (DOT(disp,v->vdir) < 0.0)
267 <                                *zp = -d;
268 <                        else
269 <                                *zp = d;
270 <                }
271 <                *xp = DOT(disp,v->hvec)*90.0/v->horiz + 0.5 - v->hoff;
272 <                *yp = DOT(disp,v->vvec)*90.0/v->vert + 0.5 - v->voff;
265 >                if (DOT(disp,v->vdir) < 0.0)
266 >                        ip[2] = -d;
267 >                else
268 >                        ip[2] = d;
269 >                ip[2] -= v->vfore;
270 >                break;
271 >        case VT_CYL:                    /* cylindrical panorama */
272 >                d = DOT(disp,v->hvec);
273 >                d2 = DOT(disp,v->vdir);
274 >                ip[0] = 180.0/PI * atan2(d,d2) / v->horiz + 0.5 - v->hoff;
275 >                d = 1.0/sqrt(d*d + d2*d2);
276 >                ip[1] = DOT(disp,v->vvec)*d/v->vn2 + 0.5 - v->voff;
277 >                ip[2] = VLEN(disp);
278 >                ip[2] *= (1.0 - v->vfore*d);
279                  return;
280          case VT_ANG:                    /* angular fisheye */
281 <                d = normalize(disp);
282 <                if (zp != NULL)
283 <                        *zp = d;
216 <                *xp = 0.5 - v->hoff;
217 <                *yp = 0.5 - v->voff;
281 >                ip[0] = 0.5 - v->hoff;
282 >                ip[1] = 0.5 - v->voff;
283 >                ip[2] = normalize(disp) - v->vfore;
284                  d = DOT(disp,v->vdir);
285                  if (d >= 1.0-FTINY)
286                          return;
287                  if (d <= -(1.0-FTINY)) {
288 <                        *xp += 180.0/v->horiz;
223 <                        *yp += 180.0/v->vert;
288 >                        ip[0] += 180.0/v->horiz;
289                          return;
290                  }
291 <                d = acos(d)/PI / sqrt(1.0 - d*d);
292 <                *xp += DOT(disp,v->hvec)*d*180.0/v->horiz;
293 <                *yp += DOT(disp,v->vvec)*d*180.0/v->vert;
291 >                d = (180.0/PI)*acos(d) / sqrt(1.0 - d*d);
292 >                ip[0] += DOT(disp,v->hvec)*d/v->horiz;
293 >                ip[1] += DOT(disp,v->vvec)*d/v->vert;
294                  return;
295 +        case VT_PLS:                    /* planispheric fisheye */
296 +                ip[0] = 0.5 - v->hoff;
297 +                ip[1] = 0.5 - v->voff;
298 +                ip[2] = normalize(disp) - v->vfore;
299 +                d = DOT(disp,v->vdir);
300 +                if (d >= 1.0-FTINY)
301 +                        return;
302 +                if (d <= -(1.0-FTINY))
303 +                        return;         /* really an error */
304 +                d = sqrt(1.0 - d*d) / (1.0 + d);
305 +                ip[0] += DOT(disp,v->hvec)*d/sqrt(v->hn2);
306 +                ip[1] += DOT(disp,v->vvec)*d/sqrt(v->vn2);
307 +                return;
308          }
309 +        ip[0] = DOT(disp,v->hvec)/v->hn2 + 0.5 - v->hoff;
310 +        ip[1] = DOT(disp,v->vvec)/v->vn2 + 0.5 - v->voff;
311   }
312  
313  
314 + void
315 + pix2loc(loc, rp, px, py)        /* compute image location from pixel pos. */
316 + RREAL  loc[2];
317 + register RESOLU  *rp;
318 + int  px, py;
319 + {
320 +        register int  x, y;
321 +
322 +        if (rp->rt & YMAJOR) {
323 +                x = px;
324 +                y = py;
325 +        } else {
326 +                x = py;
327 +                y = px;
328 +        }
329 +        if (rp->rt & XDECR)
330 +                x = rp->xr-1 - x;
331 +        if (rp->rt & YDECR)
332 +                y = rp->yr-1 - y;
333 +        loc[0] = (x+.5)/rp->xr;
334 +        loc[1] = (y+.5)/rp->yr;
335 + }
336 +
337 +
338 + void
339 + loc2pix(pp, rp, lx, ly)         /* compute pixel pos. from image location */
340 + int  pp[2];
341 + register RESOLU  *rp;
342 + double  lx, ly;
343 + {
344 +        register int  x, y;
345 +
346 +        x = lx * rp->xr;
347 +        y = ly * rp->yr;
348 +        if (rp->rt & XDECR)
349 +                x = rp->xr-1 - x;
350 +        if (rp->rt & YDECR)
351 +                y = rp->yr-1 - y;
352 +        if (rp->rt & YMAJOR) {
353 +                pp[0] = x;
354 +                pp[1] = y;
355 +        } else {
356 +                pp[0] = y;
357 +                pp[1] = x;
358 +        }
359 + }
360 +
361 +
362   int
363   getviewopt(v, ac, av)                   /* process view argument */
364   register VIEW  *v;
365   int  ac;
366   register char  *av[];
367   {
368 < #define check(c,n)      if ((av[0][c]&&av[0][c]!=' ') || n>=ac) return(-1)
369 <        extern double  atof();
368 > #define check(c,l)      if ((av[0][c]&&av[0][c]!=' ') || \
369 >                        badarg(ac-1,av+1,l)) return(-1)
370  
371          if (ac <= 0 || av[0][0] != '-' || av[0][1] != 'v')
372                  return(-1);
# Line 246 | Line 374 | register char  *av[];
374          case 't':                       /* type */
375                  if (!av[0][3] || av[0][3]==' ')
376                          return(-1);
377 <                check(4,0);
377 >                check(4,"");
378                  v->type = av[0][3];
379                  return(0);
380          case 'p':                       /* point */
381 <                check(3,3);
381 >                check(3,"fff");
382                  v->vp[0] = atof(av[1]);
383                  v->vp[1] = atof(av[2]);
384                  v->vp[2] = atof(av[3]);
385                  return(3);
386          case 'd':                       /* direction */
387 <                check(3,3);
387 >                check(3,"fff");
388                  v->vdir[0] = atof(av[1]);
389                  v->vdir[1] = atof(av[2]);
390                  v->vdir[2] = atof(av[3]);
391 +                v->vdist = 1.;
392                  return(3);
393          case 'u':                       /* up */
394 <                check(3,3);
394 >                check(3,"fff");
395                  v->vup[0] = atof(av[1]);
396                  v->vup[1] = atof(av[2]);
397                  v->vup[2] = atof(av[3]);
398                  return(3);
399          case 'h':                       /* horizontal size */
400 <                check(3,1);
400 >                check(3,"f");
401                  v->horiz = atof(av[1]);
402                  return(1);
403          case 'v':                       /* vertical size */
404 <                check(3,1);
404 >                check(3,"f");
405                  v->vert = atof(av[1]);
406                  return(1);
407 +        case 'o':                       /* fore clipping plane */
408 +                check(3,"f");
409 +                v->vfore = atof(av[1]);
410 +                return(1);
411 +        case 'a':                       /* aft clipping plane */
412 +                check(3,"f");
413 +                v->vaft = atof(av[1]);
414 +                return(1);
415          case 's':                       /* shift */
416 <                check(3,1);
416 >                check(3,"f");
417                  v->hoff = atof(av[1]);
418                  return(1);
419          case 'l':                       /* lift */
420 <                check(3,1);
420 >                check(3,"f");
421                  v->voff = atof(av[1]);
422                  return(1);
423          default:
# Line 300 | Line 437 | register char  *s;
437          int  na;
438          int  nvopts = 0;
439  
440 <        while (*s == ' ')
441 <                s++;
440 >        while (isspace(*s))
441 >                if (!*s++)
442 >                        return(0);
443          while (*s) {
444                  ac = 0;
445                  do {
446 <                        av[ac++] = s;
447 <                        while (*s && *s != ' ')
446 >                        if (ac || *s == '-')
447 >                                av[ac++] = s;
448 >                        while (*s && !isspace(*s))
449                                  s++;
450 <                        while (*s == ' ')
450 >                        while (isspace(*s))
451                                  s++;
452                  } while (*s && ac < 4);
453                  if ((na = getviewopt(vp, ac, av)) >= 0) {
# Line 322 | Line 461 | register char  *s;
461   }
462  
463  
464 + void
465   fprintview(vp, fp)                      /* write out view parameters */
466   register VIEW  *vp;
467   FILE  *fp;
468   {
469          fprintf(fp, " -vt%c", vp->type);
470          fprintf(fp, " -vp %.6g %.6g %.6g", vp->vp[0], vp->vp[1], vp->vp[2]);
471 <        fprintf(fp, " -vd %.6g %.6g %.6g", vp->vdir[0], vp->vdir[1], vp->vdir[2]);
471 >        fprintf(fp, " -vd %.6g %.6g %.6g", vp->vdir[0]*vp->vdist,
472 >                                                vp->vdir[1]*vp->vdist,
473 >                                                vp->vdir[2]*vp->vdist);
474          fprintf(fp, " -vu %.6g %.6g %.6g", vp->vup[0], vp->vup[1], vp->vup[2]);
475          fprintf(fp, " -vh %.6g -vv %.6g", vp->horiz, vp->vert);
476 +        fprintf(fp, " -vo %.6g -va %.6g", vp->vfore, vp->vaft);
477          fprintf(fp, " -vs %.6g -vl %.6g", vp->hoff, vp->voff);
478   }
479  
480  
481 < static VIEW  *hview;                    /* view from header */
482 < static int  gothview;                   /* success indicator */
483 < static char  *altname[] = {NULL,"rpict","rview","pinterp",VIEWSTR,NULL};
481 > char *
482 > viewopt(vp)                             /* translate to minimal view string */
483 > register VIEW  *vp;
484 > {
485 >        static char  vwstr[128];
486 >        register char  *cp = vwstr;
487  
488 +        *cp = '\0';
489 +        if (vp->type != stdview.type) {
490 +                sprintf(cp, " -vt%c", vp->type);
491 +                cp += strlen(cp);
492 +        }
493 +        if (!VEQ(vp->vp,stdview.vp)) {
494 +                sprintf(cp, " -vp %.6g %.6g %.6g",
495 +                                vp->vp[0], vp->vp[1], vp->vp[2]);
496 +                cp += strlen(cp);
497 +        }
498 +        if (!FEQ(vp->vdist,stdview.vdist) || !VEQ(vp->vdir,stdview.vdir)) {
499 +                sprintf(cp, " -vd %.6g %.6g %.6g",
500 +                                vp->vdir[0]*vp->vdist,
501 +                                vp->vdir[1]*vp->vdist,
502 +                                vp->vdir[2]*vp->vdist);
503 +                cp += strlen(cp);
504 +        }
505 +        if (!VEQ(vp->vup,stdview.vup)) {
506 +                sprintf(cp, " -vu %.6g %.6g %.6g",
507 +                                vp->vup[0], vp->vup[1], vp->vup[2]);
508 +                cp += strlen(cp);
509 +        }
510 +        if (!FEQ(vp->horiz,stdview.horiz)) {
511 +                sprintf(cp, " -vh %.6g", vp->horiz);
512 +                cp += strlen(cp);
513 +        }
514 +        if (!FEQ(vp->vert,stdview.vert)) {
515 +                sprintf(cp, " -vv %.6g", vp->vert);
516 +                cp += strlen(cp);
517 +        }
518 +        if (!FEQ(vp->vfore,stdview.vfore)) {
519 +                sprintf(cp, " -vo %.6g", vp->vfore);
520 +                cp += strlen(cp);
521 +        }
522 +        if (!FEQ(vp->vaft,stdview.vaft)) {
523 +                sprintf(cp, " -va %.6g", vp->vaft);
524 +                cp += strlen(cp);
525 +        }
526 +        if (!FEQ(vp->hoff,stdview.hoff)) {
527 +                sprintf(cp, " -vs %.6g", vp->hoff);
528 +                cp += strlen(cp);
529 +        }
530 +        if (!FEQ(vp->voff,stdview.voff)) {
531 +                sprintf(cp, " -vl %.6g", vp->voff);
532 +                cp += strlen(cp);
533 +        }
534 +        return(vwstr);
535 + }
536  
537 < static
538 < gethview(s)                             /* get view from header */
537 >
538 > int
539 > isview(s)                               /* is this a view string? */
540   char  *s;
541   {
542 +        static char  *altname[]={NULL,VIEWSTR,"rpict","rview","rvu","rpiece","pinterp",NULL};
543 +        extern char  *progname;
544 +        register char  *cp;
545          register char  **an;
546 <
546 >                                        /* add program name to list */
547 >        if (altname[0] == NULL) {
548 >                for (cp = progname; *cp; cp++)
549 >                        ;
550 >                while (cp > progname && !ISDIRSEP(cp[-1]))
551 >                        cp--;
552 >                altname[0] = cp;
553 >        }
554 >                                        /* skip leading path */
555 >        cp = s;
556 >        while (*cp && *cp != ' ')
557 >                cp++;
558 >        while (cp > s && !ISDIRSEP(cp[-1]))
559 >                cp--;
560          for (an = altname; *an != NULL; an++)
561 <                if (!strncmp(*an, s, strlen(*an))) {
562 <                        if (sscanview(hview, s+strlen(*an)) > 0)
563 <                                gothview++;
353 <                        return;
354 <                }
561 >                if (!strncmp(*an, cp, strlen(*an)))
562 >                        return(1);
563 >        return(0);
564   }
565  
566  
567 + struct myview {
568 +        VIEW    *hv;
569 +        int     ok;
570 + };
571 +
572 +
573 + static int
574 + gethview(                               /* get view from header */
575 +        char  *s,
576 +        void  *v
577 + )
578 + {
579 +        if (isview(s) && sscanview(((struct myview*)v)->hv, s) > 0)
580 +                ((struct myview*)v)->ok++;
581 +        return(0);
582 + }
583 +
584 +
585   int
586 < viewfile(fname, vp, xp, yp)             /* get view from file */
586 > viewfile(fname, vp, rp)                 /* get view from file */
587   char  *fname;
588   VIEW  *vp;
589 < int  *xp, *yp;
589 > RESOLU  *rp;
590   {
591 <        extern char  *progname;
591 >        struct myview   mvs;
592          FILE  *fp;
593  
594 <        if ((fp = fopen(fname, "r")) == NULL)
594 >        if (fname == NULL || !strcmp(fname, "-"))
595 >                fp = stdin;
596 >        else if ((fp = fopen(fname, "r")) == NULL)
597                  return(-1);
598  
599 <        altname[0] = progname;
600 <        hview = vp;
372 <        gothview = 0;
599 >        mvs.hv = vp;
600 >        mvs.ok = 0;
601  
602 <        getheader(fp, gethview);
602 >        getheader(fp, gethview, &mvs);
603  
604 <        if (xp != NULL && yp != NULL
605 <                        && fgetresolu(xp, yp, fp) == -1)
378 <                gothview = 0;
604 >        if (rp != NULL && !fgetsresolu(rp, fp))
605 >                mvs.ok = 0;
606  
607          fclose(fp);
608  
609 <        return(gothview);
609 >        return(mvs.ok);
610   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines