18 |
|
|
19 |
|
#include "random.h" |
20 |
|
|
21 |
+ |
#ifndef WFLUSH |
22 |
+ |
#define WFLUSH 30 /* flush after this many rays */ |
23 |
+ |
#endif |
24 |
|
|
25 |
+ |
|
26 |
|
getrect(s, r) /* get a box */ |
27 |
|
char *s; |
28 |
|
register RECT *r; |
31 |
|
|
32 |
|
if (*s && !strncmp(s, "all", strlen(s))) { |
33 |
|
r->l = r->d = 0; |
34 |
< |
r->r = ourview.hresolu; |
35 |
< |
r->u = ourview.vresolu; |
34 |
> |
r->r = hresolu; |
35 |
> |
r->u = vresolu; |
36 |
|
return(0); |
37 |
|
} |
38 |
|
if (sscanf(s, "%d %d %d %d", &x0, &y0, &x1, &y1) != 4) { |
61 |
|
} |
62 |
|
if (r->l < 0) r->l = 0; |
63 |
|
if (r->d < 0) r->d = 0; |
64 |
< |
if (r->r > ourview.hresolu) r->r = ourview.hresolu; |
65 |
< |
if (r->u > ourview.vresolu) r->u = ourview.vresolu; |
64 |
> |
if (r->r > hresolu) r->r = hresolu; |
65 |
> |
if (r->u > vresolu) r->u = vresolu; |
66 |
|
if (r->l > r->r) r->l = r->r; |
67 |
|
if (r->d > r->u) r->d = r->u; |
68 |
|
return(0); |
93 |
|
(*dev->comout)("Pick view center\n"); |
94 |
|
if ((*dev->getcur)(&x, &y) == ABORT) |
95 |
|
return(-1); |
96 |
< |
rayview(thisray.rorg, thisray.rdir, &ourview, x+.5, y+.5); |
96 |
> |
if (viewray(thisray.rorg, thisray.rdir, &ourview, |
97 |
> |
(x+.5)/hresolu, (y+.5)/vresolu) < 0) { |
98 |
> |
error(COMMAND, "not on image"); |
99 |
> |
return(-1); |
100 |
> |
} |
101 |
|
if (!direc || ourview.type == VT_PAR) { |
102 |
|
rayorigin(&thisray, NULL, PRIMARY, 1.0); |
103 |
|
if (!localhit(&thisray, &thescene)) { |
137 |
|
register PNODE *p; |
138 |
|
int xmin, ymin, xmax, ymax; |
139 |
|
{ |
140 |
+ |
extern long nrays; |
141 |
+ |
static long lastflush = 0; |
142 |
|
static RAY thisray; |
143 |
|
double h, v; |
134 |
– |
register int i; |
144 |
|
|
145 |
|
if (xmax - xmin <= 0 || ymax - ymin <= 0) { /* empty */ |
146 |
|
p->x = xmin; |
149 |
|
return; |
150 |
|
} |
151 |
|
/* jitter ray direction */ |
152 |
< |
p->x = h = xmin + (xmax-xmin)*frandom(); |
153 |
< |
p->y = v = ymin + (ymax-ymin)*frandom(); |
152 |
> |
h = xmin + (xmax-xmin)*frandom(); |
153 |
> |
v = ymin + (ymax-ymin)*frandom(); |
154 |
|
|
155 |
< |
rayview(thisray.rorg, thisray.rdir, &ourview, h, v); |
155 |
> |
if (viewray(thisray.rorg, thisray.rdir, &ourview, |
156 |
> |
h/hresolu, v/vresolu) < 0) { |
157 |
> |
setcolor(thisray.rcol, 0.0, 0.0, 0.0); |
158 |
> |
} else { |
159 |
> |
rayorigin(&thisray, NULL, PRIMARY, 1.0); |
160 |
> |
rayvalue(&thisray); |
161 |
> |
} |
162 |
|
|
163 |
< |
rayorigin(&thisray, NULL, PRIMARY, 1.0); |
164 |
< |
|
150 |
< |
rayvalue(&thisray); |
151 |
< |
|
163 |
> |
p->x = h; |
164 |
> |
p->y = v; |
165 |
|
copycolor(p->v, thisray.rcol); |
153 |
– |
|
166 |
|
scalecolor(p->v, exposure); |
167 |
|
|
168 |
|
(*dev->paintr)(greyscale?greyof(p->v):p->v, xmin, ymin, xmax, ymax); |
169 |
+ |
|
170 |
+ |
if (dev->flush != NULL && nrays - lastflush >= WFLUSH) { |
171 |
+ |
lastflush = nrays; |
172 |
+ |
(*dev->flush)(); |
173 |
+ |
} |
174 |
|
} |
175 |
|
|
176 |
|
|
178 |
|
{ |
179 |
|
/* free old image */ |
180 |
|
freepkids(&ptrunk); |
181 |
< |
/* set up frame */ |
182 |
< |
if (ourview.hresolu > dev->xsiz || ourview.vresolu > dev->ysiz) |
183 |
< |
newview(&ourview); /* beware recursive loop! */ |
181 |
> |
/* compute resolution */ |
182 |
> |
hresolu = dev->xsiz; |
183 |
> |
vresolu = dev->ysiz; |
184 |
> |
normaspect(viewaspect(&ourview), &dev->pixaspect, &hresolu, &vresolu); |
185 |
|
pframe.l = pframe.d = 0; |
186 |
< |
pframe.r = ourview.hresolu; pframe.u = ourview.vresolu; |
186 |
> |
pframe.r = hresolu; pframe.u = vresolu; |
187 |
|
pdepth = 0; |
188 |
|
/* clear device */ |
189 |
< |
(*dev->clear)(ourview.hresolu, ourview.vresolu); |
189 |
> |
(*dev->clear)(hresolu, vresolu); |
190 |
|
/* get first value */ |
191 |
< |
paint(&ptrunk, 0, 0, ourview.hresolu, ourview.vresolu); |
191 |
> |
paint(&ptrunk, 0, 0, hresolu, vresolu); |
192 |
|
} |
193 |
|
|
194 |
|
|
195 |
|
redraw() /* redraw the image */ |
196 |
|
{ |
197 |
< |
(*dev->clear)(ourview.hresolu, ourview.vresolu); |
197 |
> |
(*dev->clear)(hresolu, vresolu); |
198 |
|
(*dev->comout)("redrawing...\n"); |
199 |
< |
repaint(0, 0, ourview.hresolu, ourview.vresolu); |
199 |
> |
repaint(0, 0, hresolu, vresolu); |
200 |
|
(*dev->comout)("\n"); |
201 |
|
} |
202 |
|
|
209 |
|
reg.l = xmin; reg.r = xmax; |
210 |
|
reg.d = ymin; reg.u = ymax; |
211 |
|
|
212 |
< |
paintrect(&ptrunk, 0, 0, ourview.hresolu, ourview.vresolu, ®); |
212 |
> |
paintrect(&ptrunk, 0, 0, hresolu, vresolu, ®); |
213 |
|
} |
214 |
|
|
215 |
|
|
357 |
|
{ |
358 |
|
char *err; |
359 |
|
|
342 |
– |
if (vp->hresolu > dev->xsiz || vp->vresolu > dev->ysiz) /* shrink */ |
343 |
– |
if (vp->vresolu * dev->xsiz < vp->hresolu * dev->ysiz) { |
344 |
– |
vp->vresolu = dev->xsiz * vp->vresolu / vp->hresolu; |
345 |
– |
vp->hresolu = dev->xsiz; |
346 |
– |
} else { |
347 |
– |
vp->hresolu = dev->ysiz * vp->hresolu / vp->vresolu; |
348 |
– |
vp->vresolu = dev->ysiz; |
349 |
– |
} |
360 |
|
if ((err = setview(vp)) != NULL) { |
361 |
|
sprintf(errmsg, "view not set - %s", err); |
362 |
|
error(COMMAND, errmsg); |
363 |
< |
} else if (bcmp(vp, &ourview, sizeof(VIEW))) { |
364 |
< |
bcopy(&ourview, &oldview, sizeof(VIEW)); |
365 |
< |
bcopy(vp, &ourview, sizeof(VIEW)); |
366 |
< |
newimage(); /* newimage() calls with vp=&ourview! */ |
363 |
> |
} else if (bcmp((char *)vp, (char *)&ourview, sizeof(VIEW))) { |
364 |
> |
copystruct(&oldview, &ourview); |
365 |
> |
copystruct(&ourview, vp); |
366 |
> |
newimage(); |
367 |
|
} |
368 |
|
} |
369 |
|
|
379 |
|
register int i; |
380 |
|
|
381 |
|
VCOPY(nv.vup, ourview.vup); |
382 |
< |
nv.hresolu = ourview.hresolu; nv.vresolu = ourview.vresolu; |
382 |
> |
nv.hoff = ourview.hoff; nv.voff = ourview.voff; |
383 |
|
spinvector(nv.vdir, ourview.vdir, ourview.vup, angle*(PI/180.)); |
384 |
|
if (elev != 0.0) { |
385 |
|
fcross(v1, ourview.vup, nv.vdir); |
400 |
|
for (i = 0; i < 3; i++) |
401 |
|
nv.vp[i] = vc[i] - d*nv.vdir[i]; |
402 |
|
newview(&nv); |
403 |
+ |
} |
404 |
+ |
|
405 |
+ |
|
406 |
+ |
zoomview(vp, zf) /* zoom in our out */ |
407 |
+ |
register VIEW *vp; |
408 |
+ |
double zf; |
409 |
+ |
{ |
410 |
+ |
switch (vp->type) { |
411 |
+ |
case VT_PAR: /* parallel view */ |
412 |
+ |
case VT_ANG: /* angular fisheye */ |
413 |
+ |
vp->horiz /= zf; |
414 |
+ |
vp->vert /= zf; |
415 |
+ |
return; |
416 |
+ |
case VT_PER: /* perspective view */ |
417 |
+ |
vp->horiz = atan(tan(vp->horiz*(PI/180./2.))/zf) / |
418 |
+ |
(PI/180./2.); |
419 |
+ |
vp->vert = atan(tan(vp->vert*(PI/180./2.))/zf) / |
420 |
+ |
(PI/180./2.); |
421 |
+ |
return; |
422 |
+ |
case VT_HEM: /* hemispherical fisheye */ |
423 |
+ |
vp->horiz = sin(vp->horiz*(PI/180./2.))/zf; |
424 |
+ |
if (vp->horiz >= 1.0-FTINY) |
425 |
+ |
vp->horiz = 180.; |
426 |
+ |
else |
427 |
+ |
vp->horiz = asin(vp->horiz) / (PI/180./2.); |
428 |
+ |
vp->vert = sin(vp->vert*(PI/180./2.))/zf; |
429 |
+ |
if (vp->vert >= 1.0-FTINY) |
430 |
+ |
vp->vert = 180.; |
431 |
+ |
else |
432 |
+ |
vp->vert = asin(vp->vert) / (PI/180./2.); |
433 |
+ |
return; |
434 |
+ |
} |
435 |
|
} |
436 |
|
|
437 |
|
|