ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/image.c
Revision: 2.5
Committed: Tue Sep 8 10:04:30 1992 UTC (31 years, 7 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.4: +10 -8 lines
Log Message:
modified testing of DIRSEP to allow multiple possible values

File Contents

# User Rev Content
1 greg 2.4 /* Copyright (c) 1992 Regents of the University of California */
2 greg 1.1
3     #ifndef lint
4     static char SCCSid[] = "$SunId$ LBL";
5     #endif
6    
7     /*
8     * image.c - routines for image generation.
9     *
10     * 10/17/85
11     */
12    
13     #include "standard.h"
14    
15     #include "view.h"
16    
17 greg 1.17 #include "resolu.h"
18    
19 greg 2.4 #include "paths.h"
20    
21 greg 1.5 VIEW stdview = STDVIEW; /* default view parameters */
22 greg 1.1
23    
24     char *
25 greg 1.5 setview(v) /* set hvec and vvec, return message on error */
26     register VIEW *v;
27 greg 1.3 {
28 greg 1.12 static char ill_horiz[] = "illegal horizontal view size";
29     static char ill_vert[] = "illegal vertical view size";
30    
31 greg 1.1 if (normalize(v->vdir) == 0.0) /* normalize direction */
32     return("zero view direction");
33    
34 greg 1.14 if (normalize(v->vup) == 0.0) /* normalize view up */
35     return("zero view up vector");
36    
37 greg 1.5 fcross(v->hvec, v->vdir, v->vup); /* compute horiz dir */
38    
39     if (normalize(v->hvec) == 0.0)
40 greg 1.14 return("view up parallel to view direction");
41 greg 1.1
42 greg 1.5 fcross(v->vvec, v->hvec, v->vdir); /* compute vert dir */
43    
44 greg 1.12 if (v->horiz <= FTINY)
45     return(ill_horiz);
46     if (v->vert <= FTINY)
47     return(ill_vert);
48    
49     switch (v->type) {
50     case VT_PAR: /* parallel view */
51 greg 1.5 v->hn2 = v->horiz;
52 greg 1.12 v->vn2 = v->vert;
53     break;
54     case VT_PER: /* perspective view */
55     if (v->horiz >= 180.0-FTINY)
56     return(ill_horiz);
57     if (v->vert >= 180.0-FTINY)
58     return(ill_vert);
59 greg 1.5 v->hn2 = 2.0 * tan(v->horiz*(PI/180.0/2.0));
60 greg 1.12 v->vn2 = 2.0 * tan(v->vert*(PI/180.0/2.0));
61     break;
62     case VT_ANG: /* angular fisheye */
63     if (v->horiz > 360.0+FTINY)
64     return(ill_horiz);
65     if (v->vert > 360.0+FTINY)
66     return(ill_vert);
67     v->hn2 = v->horiz / 90.0;
68     v->vn2 = v->vert / 90.0;
69     break;
70     case VT_HEM: /* hemispherical fisheye */
71     if (v->horiz > 180.0+FTINY)
72     return(ill_horiz);
73     if (v->vert > 180.0+FTINY)
74     return(ill_vert);
75     v->hn2 = 2.0 * sin(v->horiz*(PI/180.0/2.0));
76     v->vn2 = 2.0 * sin(v->vert*(PI/180.0/2.0));
77     break;
78     default:
79 greg 1.1 return("unknown view type");
80 greg 1.12 }
81 greg 1.13 if (v->type != VT_ANG) {
82 greg 1.12 v->hvec[0] *= v->hn2;
83     v->hvec[1] *= v->hn2;
84     v->hvec[2] *= v->hn2;
85     v->vvec[0] *= v->vn2;
86     v->vvec[1] *= v->vn2;
87     v->vvec[2] *= v->vn2;
88     }
89 greg 1.5 v->hn2 *= v->hn2;
90     v->vn2 *= v->vn2;
91 greg 1.1
92     return(NULL);
93     }
94    
95    
96 greg 1.7 normaspect(va, ap, xp, yp) /* fix pixel aspect or resolution */
97     double va; /* view aspect ratio */
98     double *ap; /* pixel aspect in (or out if 0) */
99     int *xp, *yp; /* x and y resolution in (or out if *ap!=0) */
100 greg 1.6 {
101     if (*ap <= FTINY)
102 greg 1.7 *ap = va * *xp / *yp; /* compute pixel aspect */
103 greg 1.6 else if (va * *xp > *ap * *yp)
104 greg 1.10 *xp = *yp / va * *ap + .5; /* reduce x resolution */
105 greg 1.6 else
106 greg 1.10 *yp = *xp * va / *ap + .5; /* reduce y resolution */
107 greg 1.6 }
108    
109    
110 greg 1.5 viewray(orig, direc, v, x, y) /* compute ray origin and direction */
111 greg 1.1 FVECT orig, direc;
112     register VIEW *v;
113     double x, y;
114     {
115 greg 1.12 double d, z;
116    
117 greg 1.5 x += v->hoff - 0.5;
118     y += v->voff - 0.5;
119 greg 1.1
120 greg 1.12 switch(v->type) {
121     case VT_PAR: /* parallel view */
122 greg 1.5 orig[0] = v->vp[0] + x*v->hvec[0] + y*v->vvec[0];
123     orig[1] = v->vp[1] + x*v->hvec[1] + y*v->vvec[1];
124     orig[2] = v->vp[2] + x*v->hvec[2] + y*v->vvec[2];
125 greg 1.1 VCOPY(direc, v->vdir);
126 greg 1.12 return(0);
127     case VT_PER: /* perspective view */
128 greg 1.1 VCOPY(orig, v->vp);
129 greg 1.5 direc[0] = v->vdir[0] + x*v->hvec[0] + y*v->vvec[0];
130     direc[1] = v->vdir[1] + x*v->hvec[1] + y*v->vvec[1];
131     direc[2] = v->vdir[2] + x*v->hvec[2] + y*v->vvec[2];
132 greg 1.1 normalize(direc);
133 greg 1.12 return(0);
134     case VT_HEM: /* hemispherical fisheye */
135 greg 1.13 z = 1.0 - x*x*v->hn2 - y*y*v->vn2;
136 greg 1.12 if (z < 0.0)
137     return(-1);
138     z = sqrt(z);
139     VCOPY(orig, v->vp);
140     direc[0] = z*v->vdir[0] + x*v->hvec[0] + y*v->vvec[0];
141     direc[1] = z*v->vdir[1] + x*v->hvec[1] + y*v->vvec[1];
142     direc[2] = z*v->vdir[2] + x*v->hvec[2] + y*v->vvec[2];
143     return(0);
144     case VT_ANG: /* angular fisheye */
145     x *= v->horiz/180.0;
146     y *= v->vert/180.0;
147     d = x*x + y*y;
148     if (d > 1.0)
149     return(-1);
150     VCOPY(orig, v->vp);
151     if (d <= FTINY) {
152     VCOPY(direc, v->vdir);
153     return(0);
154     }
155     d = sqrt(d);
156     z = cos(PI*d);
157     d = sqrt(1 - z*z)/d;
158     x *= d;
159     y *= d;
160     direc[0] = z*v->vdir[0] + x*v->hvec[0] + y*v->vvec[0];
161     direc[1] = z*v->vdir[1] + x*v->hvec[1] + y*v->vvec[1];
162     direc[2] = z*v->vdir[2] + x*v->hvec[2] + y*v->vvec[2];
163     return(0);
164 greg 1.1 }
165 greg 1.12 return(-1);
166 greg 1.1 }
167    
168    
169 greg 1.17 viewloc(ip, v, p) /* find image location for point */
170     FVECT ip;
171 greg 1.3 register VIEW *v;
172     FVECT p;
173     {
174     double d;
175     FVECT disp;
176 greg 1.5
177 greg 1.3 disp[0] = p[0] - v->vp[0];
178     disp[1] = p[1] - v->vp[1];
179     disp[2] = p[2] - v->vp[2];
180    
181 greg 1.12 switch (v->type) {
182     case VT_PAR: /* parallel view */
183 greg 1.17 ip[2] = DOT(disp,v->vdir);
184 greg 1.13 break;
185 greg 1.12 case VT_PER: /* perspective view */
186 greg 1.11 d = DOT(disp,v->vdir);
187 greg 1.17 ip[2] = sqrt(DOT(disp,disp));
188     if (d < 0.0) { /* fold pyramid */
189     ip[2] = -ip[2];
190 greg 1.11 d = -d;
191 greg 1.17 } else if (d > FTINY) {
192 greg 1.11 d = 1.0/d;
193     disp[0] *= d;
194     disp[1] *= d;
195     disp[2] *= d;
196     }
197 greg 1.13 break;
198 greg 1.12 case VT_HEM: /* hemispherical fisheye */
199     d = normalize(disp);
200 greg 1.17 if (DOT(disp,v->vdir) < 0.0)
201     ip[2] = -d;
202     else
203     ip[2] = d;
204 greg 1.13 break;
205 greg 1.12 case VT_ANG: /* angular fisheye */
206 greg 1.17 ip[0] = 0.5 - v->hoff;
207     ip[1] = 0.5 - v->voff;
208     ip[2] = normalize(disp);
209 greg 1.12 d = DOT(disp,v->vdir);
210     if (d >= 1.0-FTINY)
211     return;
212     if (d <= -(1.0-FTINY)) {
213 greg 1.17 ip[1] += 180.0/v->horiz;
214     ip[2] += 180.0/v->vert;
215 greg 1.12 return;
216     }
217     d = acos(d)/PI / sqrt(1.0 - d*d);
218 greg 1.17 ip[0] += DOT(disp,v->hvec)*d*180.0/v->horiz;
219     ip[1] += DOT(disp,v->vvec)*d*180.0/v->vert;
220 greg 1.12 return;
221 greg 1.3 }
222 greg 1.17 ip[0] = DOT(disp,v->hvec)/v->hn2 + 0.5 - v->hoff;
223     ip[1] = DOT(disp,v->vvec)/v->vn2 + 0.5 - v->voff;
224 greg 1.3 }
225    
226    
227 greg 1.17 pix2loc(loc, rp, px, py) /* compute image location from pixel pos. */
228     FLOAT loc[2];
229     register RESOLU *rp;
230     int px, py;
231     {
232     register int x, y;
233    
234     if (rp->or & YMAJOR) {
235     x = px;
236     y = py;
237     } else {
238     x = py;
239     y = px;
240     }
241     if (rp->or & XDECR)
242     x = rp->xr-1 - x;
243     if (rp->or & YDECR)
244     y = rp->yr-1 - y;
245     loc[0] = (x+.5)/rp->xr;
246     loc[1] = (y+.5)/rp->yr;
247     }
248    
249    
250     loc2pix(pp, rp, lx, ly) /* compute pixel pos. from image location */
251     int pp[2];
252     register RESOLU *rp;
253     double lx, ly;
254     {
255     register int x, y;
256    
257     x = lx * rp->xr;
258     y = ly * rp->yr;
259     if (rp->or & XDECR)
260     x = rp->xr-1 - x;
261     if (rp->or & YDECR)
262     y = rp->yr-1 - y;
263     if (rp->or & YMAJOR) {
264     pp[0] = x;
265     pp[1] = y;
266     } else {
267     pp[0] = y;
268     pp[1] = x;
269     }
270     }
271    
272    
273 greg 1.5 int
274     getviewopt(v, ac, av) /* process view argument */
275     register VIEW *v;
276     int ac;
277     register char *av[];
278     {
279 greg 1.16 #define check(c,l) if ((av[0][c]&&av[0][c]!=' ') || \
280     badarg(ac-1,av+1,l)) return(-1)
281 greg 1.5
282 greg 1.9 if (ac <= 0 || av[0][0] != '-' || av[0][1] != 'v')
283 greg 1.5 return(-1);
284     switch (av[0][2]) {
285     case 't': /* type */
286     if (!av[0][3] || av[0][3]==' ')
287     return(-1);
288 greg 1.16 check(4,"");
289 greg 1.5 v->type = av[0][3];
290     return(0);
291     case 'p': /* point */
292 greg 1.16 check(3,"fff");
293 greg 1.5 v->vp[0] = atof(av[1]);
294     v->vp[1] = atof(av[2]);
295     v->vp[2] = atof(av[3]);
296     return(3);
297     case 'd': /* direction */
298 greg 1.16 check(3,"fff");
299 greg 1.5 v->vdir[0] = atof(av[1]);
300     v->vdir[1] = atof(av[2]);
301     v->vdir[2] = atof(av[3]);
302     return(3);
303     case 'u': /* up */
304 greg 1.16 check(3,"fff");
305 greg 1.5 v->vup[0] = atof(av[1]);
306     v->vup[1] = atof(av[2]);
307     v->vup[2] = atof(av[3]);
308     return(3);
309     case 'h': /* horizontal size */
310 greg 1.16 check(3,"f");
311 greg 1.5 v->horiz = atof(av[1]);
312     return(1);
313     case 'v': /* vertical size */
314 greg 1.16 check(3,"f");
315 greg 1.5 v->vert = atof(av[1]);
316     return(1);
317     case 's': /* shift */
318 greg 1.16 check(3,"f");
319 greg 1.5 v->hoff = atof(av[1]);
320     return(1);
321     case 'l': /* lift */
322 greg 1.16 check(3,"f");
323 greg 1.5 v->voff = atof(av[1]);
324     return(1);
325     default:
326     return(-1);
327     }
328     #undef check
329     }
330    
331    
332     int
333     sscanview(vp, s) /* get view parameters from string */
334     VIEW *vp;
335 greg 1.1 register char *s;
336     {
337 greg 1.5 int ac;
338     char *av[4];
339     int na;
340     int nvopts = 0;
341    
342 greg 2.3 if (*s != '-')
343     s = sskip(s);
344 greg 1.9 while (*s) {
345 greg 1.5 ac = 0;
346     do {
347     av[ac++] = s;
348     while (*s && *s != ' ')
349     s++;
350     while (*s == ' ')
351     s++;
352     } while (*s && ac < 4);
353     if ((na = getviewopt(vp, ac, av)) >= 0) {
354     if (na+1 < ac)
355     s = av[na+1];
356     nvopts++;
357 greg 1.9 } else if (ac > 1)
358     s = av[1];
359     }
360 greg 1.5 return(nvopts);
361 greg 1.1 }
362    
363    
364     fprintview(vp, fp) /* write out view parameters */
365     register VIEW *vp;
366     FILE *fp;
367     {
368     fprintf(fp, " -vt%c", vp->type);
369     fprintf(fp, " -vp %.6g %.6g %.6g", vp->vp[0], vp->vp[1], vp->vp[2]);
370     fprintf(fp, " -vd %.6g %.6g %.6g", vp->vdir[0], vp->vdir[1], vp->vdir[2]);
371     fprintf(fp, " -vu %.6g %.6g %.6g", vp->vup[0], vp->vup[1], vp->vup[2]);
372     fprintf(fp, " -vh %.6g -vv %.6g", vp->horiz, vp->vert);
373 greg 1.9 fprintf(fp, " -vs %.6g -vl %.6g", vp->hoff, vp->voff);
374 greg 1.1 }
375    
376    
377 greg 2.3 int
378     isview(s) /* is this a view string? */
379     char *s;
380     {
381 greg 2.5 static char *altname[]={NULL,VIEWSTR,"rpict","rview","pinterp",NULL};
382     extern char *progname;
383 greg 2.3 register char *cp;
384     register char **an;
385     /* add program name to list */
386 greg 2.5 if (altname[0] == NULL) {
387     for (cp = progname; *cp; cp++)
388     ;
389     while (cp > progname && !ISDIRSEP(cp[-1]))
390     cp--;
391     altname[0] = cp;
392     }
393 greg 2.3 /* skip leading path */
394     cp = s;
395     while (*cp && *cp != ' ')
396     cp++;
397 greg 2.5 while (cp > s && !ISDIRSEP(cp[-1]))
398 greg 2.3 cp--;
399     for (an = altname; *an != NULL; an++)
400     if (!strncmp(*an, cp, strlen(*an)))
401     return(1);
402     return(0);
403     }
404 greg 1.1
405 greg 2.3
406 greg 1.15 struct myview {
407     VIEW *hv;
408     int ok;
409     };
410 greg 1.1
411 greg 1.15
412 greg 1.1 static
413 greg 1.15 gethview(s, v) /* get view from header */
414 greg 1.1 char *s;
415 greg 1.15 register struct myview *v;
416 greg 1.1 {
417 greg 2.3 if (isview(s) && sscanview(v->hv, s) > 0)
418     v->ok++;
419 greg 1.1 }
420    
421    
422     int
423 greg 1.17 viewfile(fname, vp, rp) /* get view from file */
424 greg 1.1 char *fname;
425     VIEW *vp;
426 greg 1.17 RESOLU *rp;
427 greg 1.1 {
428 greg 1.15 struct myview mvs;
429 greg 1.1 FILE *fp;
430    
431     if ((fp = fopen(fname, "r")) == NULL)
432     return(-1);
433    
434 greg 1.15 mvs.hv = vp;
435     mvs.ok = 0;
436 greg 1.1
437 greg 1.15 getheader(fp, gethview, &mvs);
438 greg 1.8
439 greg 1.17 if (rp != NULL && !fgetsresolu(rp, fp))
440 greg 1.15 mvs.ok = 0;
441 greg 1.1
442     fclose(fp);
443    
444 greg 1.15 return(mvs.ok);
445 greg 1.1 }