| 1 |
– |
/* Copyright (c) 1987 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 |
|
* rv3.c - miscellaneous routines for rview. |
| 6 |
|
* |
| 7 |
< |
* 5/11/87 |
| 7 |
> |
* External symbols declared in rpaint.h |
| 8 |
|
*/ |
| 9 |
|
|
| 10 |
< |
#include "ray.h" |
| 10 |
> |
#include "copyright.h" |
| 11 |
|
|
| 12 |
< |
#include "octree.h" |
| 12 |
> |
#include <string.h> |
| 13 |
|
|
| 14 |
+ |
#include "ray.h" |
| 15 |
|
#include "rpaint.h" |
| 18 |
– |
|
| 16 |
|
#include "random.h" |
| 17 |
|
|
| 18 |
|
#ifndef WFLUSH |
| 19 |
< |
#define WFLUSH 30 /* flush after this many rays */ |
| 19 |
> |
#ifdef SPEED |
| 20 |
> |
#define WFLUSH (5*SPEED) |
| 21 |
> |
#else |
| 22 |
> |
#define WFLUSH 100 /* flush after this many rays */ |
| 23 |
|
#endif |
| 24 |
+ |
#endif |
| 25 |
|
|
| 26 |
|
#ifdef SMLFLT |
| 27 |
|
#define sscanvec(s,v) (sscanf(s,"%f %f %f",v,v+1,v+2)==3) |
| 30 |
|
#endif |
| 31 |
|
|
| 32 |
|
|
| 33 |
+ |
int |
| 34 |
|
getrect(s, r) /* get a box */ |
| 35 |
|
char *s; |
| 36 |
|
register RECT *r; |
| 77 |
|
} |
| 78 |
|
|
| 79 |
|
|
| 80 |
+ |
int |
| 81 |
|
getinterest(s, direc, vec, mp) /* get area of interest */ |
| 82 |
|
char *s; |
| 83 |
|
int direc; |
| 102 |
|
(*dev->comout)("Pick view center\n"); |
| 103 |
|
if ((*dev->getcur)(&x, &y) == ABORT) |
| 104 |
|
return(-1); |
| 105 |
< |
if (viewray(thisray.rorg, thisray.rdir, &ourview, |
| 106 |
< |
(x+.5)/hresolu, (y+.5)/vresolu) < 0) { |
| 105 |
> |
if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir, |
| 106 |
> |
&ourview, (x+.5)/hresolu, (y+.5)/vresolu)) < -FTINY) { |
| 107 |
|
error(COMMAND, "not on image"); |
| 108 |
|
return(-1); |
| 109 |
|
} |
| 125 |
|
} else if (direc) |
| 126 |
|
for (i = 0; i < 3; i++) |
| 127 |
|
vec[i] -= ourview.vp[i]; |
| 128 |
+ |
if (normalize(vec) == 0.0) |
| 129 |
+ |
return(-1); |
| 130 |
|
return(0); |
| 131 |
|
} |
| 132 |
|
|
| 144 |
|
} |
| 145 |
|
|
| 146 |
|
|
| 147 |
+ |
void |
| 148 |
|
paint(p, xmin, ymin, xmax, ymax) /* compute and paint a rectangle */ |
| 149 |
|
register PNODE *p; |
| 150 |
|
int xmin, ymin, xmax, ymax; |
| 151 |
|
{ |
| 152 |
< |
extern long nrays; |
| 147 |
< |
static long lastflush = 0; |
| 152 |
> |
static unsigned long lastflush = 0; |
| 153 |
|
static RAY thisray; |
| 154 |
|
double h, v; |
| 155 |
|
|
| 163 |
|
h = xmin + (xmax-xmin)*frandom(); |
| 164 |
|
v = ymin + (ymax-ymin)*frandom(); |
| 165 |
|
|
| 166 |
< |
if (viewray(thisray.rorg, thisray.rdir, &ourview, |
| 167 |
< |
h/hresolu, v/vresolu) < 0) { |
| 166 |
> |
if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir, &ourview, |
| 167 |
> |
h/hresolu, v/vresolu)) < -FTINY) { |
| 168 |
|
setcolor(thisray.rcol, 0.0, 0.0, 0.0); |
| 169 |
|
} else { |
| 170 |
|
rayorigin(&thisray, NULL, PRIMARY, 1.0); |
| 186 |
|
} |
| 187 |
|
|
| 188 |
|
|
| 189 |
+ |
void |
| 190 |
|
newimage() /* start a new image */ |
| 191 |
|
{ |
| 192 |
|
/* free old image */ |
| 207 |
|
} |
| 208 |
|
|
| 209 |
|
|
| 210 |
+ |
void |
| 211 |
|
redraw() /* redraw the image */ |
| 212 |
|
{ |
| 213 |
|
(*dev->clear)(hresolu, vresolu); |
| 217 |
|
} |
| 218 |
|
|
| 219 |
|
|
| 220 |
+ |
void |
| 221 |
|
repaint(xmin, ymin, xmax, ymax) /* repaint a region */ |
| 222 |
|
int xmin, ymin, xmax, ymax; |
| 223 |
|
{ |
| 230 |
|
} |
| 231 |
|
|
| 232 |
|
|
| 233 |
+ |
void |
| 234 |
|
paintrect(p, xmin, ymin, xmax, ymax, r) /* paint picture rectangle */ |
| 235 |
|
register PNODE *p; |
| 236 |
|
int xmin, ymin, xmax, ymax; |
| 301 |
|
} |
| 302 |
|
|
| 303 |
|
|
| 304 |
+ |
void |
| 305 |
|
scalepict(p, sf) /* scale picture values */ |
| 306 |
|
register PNODE *p; |
| 307 |
|
double sf; |
| 318 |
|
} |
| 319 |
|
|
| 320 |
|
|
| 321 |
+ |
void |
| 322 |
|
getpictcolrs(yoff, scan, p, xsiz, ysiz) /* get scanline from picture */ |
| 323 |
|
int yoff; |
| 324 |
|
register COLR *scan; |
| 349 |
|
} |
| 350 |
|
|
| 351 |
|
|
| 352 |
< |
pcopy(p1, p2) /* copy paint node p1 into p2 */ |
| 342 |
< |
register PNODE *p1, *p2; |
| 343 |
< |
{ |
| 344 |
< |
copycolor(p2->v, p1->v); |
| 345 |
< |
p2->x = p1->x; |
| 346 |
< |
p2->y = p1->y; |
| 347 |
< |
} |
| 348 |
< |
|
| 349 |
< |
|
| 352 |
> |
void |
| 353 |
|
freepkids(p) /* free pnode's children */ |
| 354 |
|
register PNODE *p; |
| 355 |
|
{ |
| 359 |
|
freepkids(p->kid+DR); |
| 360 |
|
freepkids(p->kid+UL); |
| 361 |
|
freepkids(p->kid+UR); |
| 362 |
< |
free((char *)p->kid); |
| 362 |
> |
free((void *)p->kid); |
| 363 |
|
p->kid = NULL; |
| 364 |
|
} |
| 365 |
|
|
| 366 |
|
|
| 367 |
+ |
void |
| 368 |
|
newview(vp) /* change viewing parameters */ |
| 369 |
|
register VIEW *vp; |
| 370 |
|
{ |
| 373 |
|
if ((err = setview(vp)) != NULL) { |
| 374 |
|
sprintf(errmsg, "view not set - %s", err); |
| 375 |
|
error(COMMAND, errmsg); |
| 376 |
< |
} else if (bcmp((char *)vp, (char *)&ourview, sizeof(VIEW))) { |
| 377 |
< |
copystruct(&oldview, &ourview); |
| 378 |
< |
copystruct(&ourview, vp); |
| 376 |
> |
} else if (memcmp((char *)vp, (char *)&ourview, sizeof(VIEW))) { |
| 377 |
> |
oldview = ourview; |
| 378 |
> |
ourview = *vp; |
| 379 |
|
newimage(); |
| 380 |
|
} |
| 381 |
|
} |
| 382 |
|
|
| 383 |
|
|
| 384 |
+ |
void |
| 385 |
|
moveview(angle, elev, mag, vc) /* move viewpoint */ |
| 386 |
|
double angle, elev, mag; |
| 387 |
|
FVECT vc; |
| 388 |
|
{ |
| 389 |
|
double d; |
| 390 |
|
FVECT v1; |
| 391 |
< |
VIEW nv; |
| 391 |
> |
VIEW nv = ourview; |
| 392 |
|
register int i; |
| 393 |
|
|
| 389 |
– |
VCOPY(nv.vup, ourview.vup); |
| 390 |
– |
nv.hoff = ourview.hoff; nv.voff = ourview.voff; |
| 394 |
|
spinvector(nv.vdir, ourview.vdir, ourview.vup, angle*(PI/180.)); |
| 395 |
|
if (elev != 0.0) { |
| 396 |
|
fcross(v1, ourview.vup, nv.vdir); |
| 404 |
|
for (i = 0; i < 3; i++) |
| 405 |
|
d += (vc[i] - ourview.vp[i])*ourview.vdir[i]; |
| 406 |
|
} else { |
| 404 |
– |
nv.horiz = ourview.horiz; |
| 405 |
– |
nv.vert = ourview.vert; |
| 407 |
|
d = sqrt(dist2(ourview.vp, vc)) / mag; |
| 408 |
+ |
if ((nv.vfore = ourview.vfore) > FTINY) { |
| 409 |
+ |
nv.vfore += d - d*mag; |
| 410 |
+ |
if (nv.vfore < 0.0) nv.vfore = 0.0; |
| 411 |
+ |
} |
| 412 |
+ |
if ((nv.vaft = ourview.vaft) > FTINY) { |
| 413 |
+ |
nv.vaft += d - d*mag; |
| 414 |
+ |
if (nv.vaft <= nv.vfore) nv.vaft = 0.0; |
| 415 |
+ |
} |
| 416 |
|
} |
| 417 |
|
for (i = 0; i < 3; i++) |
| 418 |
|
nv.vp[i] = vc[i] - d*nv.vdir[i]; |
| 420 |
|
} |
| 421 |
|
|
| 422 |
|
|
| 423 |
< |
zoomview(vp, zf) /* zoom in our out */ |
| 423 |
> |
void |
| 424 |
> |
pcopy(p1, p2) /* copy paint node p1 into p2 */ |
| 425 |
> |
register PNODE *p1, *p2; |
| 426 |
> |
{ |
| 427 |
> |
copycolor(p2->v, p1->v); |
| 428 |
> |
p2->x = p1->x; |
| 429 |
> |
p2->y = p1->y; |
| 430 |
> |
} |
| 431 |
> |
|
| 432 |
> |
|
| 433 |
> |
void |
| 434 |
> |
zoomview(vp, zf) /* zoom in or out */ |
| 435 |
|
register VIEW *vp; |
| 436 |
|
double zf; |
| 437 |
|
{ |
| 438 |
|
switch (vp->type) { |
| 439 |
|
case VT_PAR: /* parallel view */ |
| 440 |
+ |
vp->horiz /= zf; |
| 441 |
+ |
vp->vert /= zf; |
| 442 |
+ |
return; |
| 443 |
|
case VT_ANG: /* angular fisheye */ |
| 444 |
|
vp->horiz /= zf; |
| 445 |
+ |
if (vp->horiz > 360.) |
| 446 |
+ |
vp->horiz = 360.; |
| 447 |
|
vp->vert /= zf; |
| 448 |
+ |
if (vp->vert > 360.) |
| 449 |
+ |
vp->vert = 360.; |
| 450 |
+ |
return; |
| 451 |
+ |
case VT_CYL: /* cylindrical panorama */ |
| 452 |
+ |
vp->horiz /= zf; |
| 453 |
+ |
if (vp->horiz > 360.) |
| 454 |
+ |
vp->horiz = 360.; |
| 455 |
+ |
vp->vert = atan(tan(vp->vert*(PI/180./2.))/zf) / (PI/180./2.); |
| 456 |
|
return; |
| 457 |
|
case VT_PER: /* perspective view */ |
| 458 |
|
vp->horiz = atan(tan(vp->horiz*(PI/180./2.))/zf) / |