| 60 |
|
int thresolu, tvresolu; /* input resolution */ |
| 61 |
|
double theirexp; /* input picture exposure */ |
| 62 |
|
double theirs2ours[4][4]; /* transformation matrix */ |
| 63 |
+ |
int hasmatrix = 0; /* has transformation matrix */ |
| 64 |
|
|
| 65 |
|
int childpid = -1; /* id of fill process */ |
| 66 |
|
FILE *psend, *precv; /* pipes to/from fill calculation */ |
| 285 |
|
exit(1); |
| 286 |
|
} |
| 287 |
|
/* compute transformation */ |
| 288 |
< |
pixform(theirs2ours, &theirview, &ourview); |
| 288 |
> |
hasmatrix = pixform(theirs2ours, &theirview, &ourview); |
| 289 |
|
/* allocate scanlines */ |
| 290 |
|
scanin = (COLR *)malloc(thresolu*sizeof(COLR)); |
| 291 |
|
zin = (float *)malloc(thresolu*sizeof(float)); |
| 332 |
|
{ |
| 333 |
|
double m4t[4][4]; |
| 334 |
|
|
| 335 |
+ |
if (vw1->type != VT_PER && vw1->type != VT_PAR) |
| 336 |
+ |
return(0); |
| 337 |
+ |
if (vw2->type != VT_PER && vw2->type != VT_PAR) |
| 338 |
+ |
return(0); |
| 339 |
|
setident4(xfmat); |
| 340 |
|
xfmat[0][0] = vw1->hvec[0]; |
| 341 |
|
xfmat[0][1] = vw1->hvec[1]; |
| 363 |
|
m4t[2][2] = vw2->vdir[2]; |
| 364 |
|
m4t[3][2] = -DOT(vw2->vp,vw2->vdir); |
| 365 |
|
multmat4(xfmat, xfmat, m4t); |
| 366 |
+ |
return(1); |
| 367 |
|
} |
| 368 |
|
|
| 369 |
|
|
| 374 |
|
struct position *lasty; /* input/output */ |
| 375 |
|
{ |
| 376 |
|
extern double sqrt(); |
| 377 |
< |
double pos[3]; |
| 377 |
> |
FVECT pos; |
| 378 |
|
struct position lastx, newpos; |
| 379 |
|
register int x; |
| 380 |
|
|
| 381 |
|
lastx.z = 0; |
| 382 |
|
for (x = thresolu-1; x >= 0; x--) { |
| 383 |
< |
pos[0] = (x+.5)/thresolu + theirview.hoff - .5; |
| 384 |
< |
pos[1] = (y+.5)/tvresolu + theirview.voff - .5; |
| 383 |
> |
pos[0] = (x+.5)/thresolu; |
| 384 |
> |
pos[1] = (y+.5)/tvresolu; |
| 385 |
|
pos[2] = zline[x]; |
| 386 |
< |
if (theirview.type == VT_PER) { |
| 381 |
< |
if (normdist) /* adjust for eye-ray distance */ |
| 382 |
< |
pos[2] /= sqrt( 1. |
| 383 |
< |
+ pos[0]*pos[0]*theirview.hn2 |
| 384 |
< |
+ pos[1]*pos[1]*theirview.vn2 ); |
| 385 |
< |
pos[0] *= pos[2]; |
| 386 |
< |
pos[1] *= pos[2]; |
| 387 |
< |
} |
| 388 |
< |
multp3(pos, pos, theirs2ours); |
| 389 |
< |
if (pos[2] <= 0) { |
| 386 |
> |
if (movepixel(pos) < 0) { |
| 387 |
|
lasty[x].z = lastx.z = 0; /* mark invalid */ |
| 388 |
|
continue; |
| 389 |
|
} |
| 393 |
– |
if (ourview.type == VT_PER) { |
| 394 |
– |
pos[0] /= pos[2]; |
| 395 |
– |
pos[1] /= pos[2]; |
| 396 |
– |
} |
| 397 |
– |
pos[0] += .5 - ourview.hoff; |
| 398 |
– |
pos[1] += .5 - ourview.voff; |
| 390 |
|
newpos.x = pos[0] * hresolu; |
| 391 |
|
newpos.y = pos[1] * vresolu; |
| 392 |
|
newpos.z = zline[x]; |
| 445 |
|
y1 = p0->y + c1*s1y/l1; |
| 446 |
|
for (c2 = l2; c2-- > 0; ) { |
| 447 |
|
x = x1 + c2*s2x/l2; |
| 448 |
+ |
if (x < 0 || x >= hresolu) |
| 449 |
+ |
continue; |
| 450 |
|
y = y1 + c2*s2y/l2; |
| 451 |
+ |
if (y < 0 || y >= vresolu) |
| 452 |
+ |
continue; |
| 453 |
|
if (zscan(y)[x] <= 0 || zscan(y)[x]-z |
| 454 |
|
> zeps*zscan(y)[x]) { |
| 455 |
|
zscan(y)[x] = z; |
| 460 |
|
} |
| 461 |
|
|
| 462 |
|
|
| 463 |
+ |
movepixel(pos) /* reposition image point */ |
| 464 |
+ |
FVECT pos; |
| 465 |
+ |
{ |
| 466 |
+ |
FVECT pt, direc; |
| 467 |
+ |
|
| 468 |
+ |
if (pos[2] <= 0) /* empty pixel */ |
| 469 |
+ |
return(-1); |
| 470 |
+ |
if (hasmatrix) { |
| 471 |
+ |
pos[0] += theirview.hoff - .5; |
| 472 |
+ |
pos[1] += theirview.voff - .5; |
| 473 |
+ |
if (theirview.type == VT_PER) { |
| 474 |
+ |
if (normdist) /* adjust for eye-ray distance */ |
| 475 |
+ |
pos[2] /= sqrt( 1. |
| 476 |
+ |
+ pos[0]*pos[0]*theirview.hn2 |
| 477 |
+ |
+ pos[1]*pos[1]*theirview.vn2 ); |
| 478 |
+ |
pos[0] *= pos[2]; |
| 479 |
+ |
pos[1] *= pos[2]; |
| 480 |
+ |
} |
| 481 |
+ |
multp3(pos, pos, theirs2ours); |
| 482 |
+ |
if (pos[2] <= 0) |
| 483 |
+ |
return(-1); |
| 484 |
+ |
if (ourview.type == VT_PER) { |
| 485 |
+ |
pos[0] /= pos[2]; |
| 486 |
+ |
pos[1] /= pos[2]; |
| 487 |
+ |
} |
| 488 |
+ |
pos[0] += .5 - ourview.hoff; |
| 489 |
+ |
pos[1] += .5 - ourview.voff; |
| 490 |
+ |
return(0); |
| 491 |
+ |
} |
| 492 |
+ |
if (viewray(pt, direc, &theirview, pos[0], pos[1]) < 0) |
| 493 |
+ |
return(-1); |
| 494 |
+ |
pt[0] += direc[0]*pos[2]; |
| 495 |
+ |
pt[1] += direc[1]*pos[2]; |
| 496 |
+ |
pt[2] += direc[2]*pos[2]; |
| 497 |
+ |
viewpixel(&pos[0], &pos[1], &pos[2], &ourview, pt); |
| 498 |
+ |
if (pos[2] <= 0) |
| 499 |
+ |
return(-1); |
| 500 |
+ |
return(0); |
| 501 |
+ |
} |
| 502 |
+ |
|
| 503 |
+ |
|
| 504 |
|
backpicture(fill, samp) /* background fill algorithm */ |
| 505 |
|
int (*fill)(); |
| 506 |
|
int samp; |
| 507 |
|
{ |
| 508 |
|
int *yback, xback; |
| 509 |
|
int y; |
| 474 |
– |
COLR pfill; |
| 510 |
|
register int x, i; |
| 511 |
|
/* get back buffer */ |
| 512 |
|
yback = (int *)malloc(hresolu*sizeof(int)); |
| 554 |
|
} |
| 555 |
|
/* |
| 556 |
|
* If we have no background for this pixel, |
| 522 |
– |
* or if the background is too distant, |
| 557 |
|
* use the given fill function. |
| 558 |
|
*/ |
| 559 |
< |
if ((xback < 0 && yback[x] < 0) |
| 560 |
< |
|| (samp > 0 |
| 527 |
< |
&& ABS(x-xback) >= samp |
| 528 |
< |
&& ABS(y-yback[y]) >= samp)) { |
| 529 |
< |
(*fill)(x,y); |
| 530 |
< |
if (fill != backfill) { /* reuse */ |
| 531 |
< |
yback[x] = -2; |
| 532 |
< |
xback = -2; |
| 533 |
< |
} |
| 534 |
< |
continue; |
| 535 |
< |
} |
| 559 |
> |
if (xback < 0 && yback[x] < 0) |
| 560 |
> |
goto fillit; |
| 561 |
|
/* |
| 562 |
|
* Compare, and use the background that is |
| 563 |
|
* farther, unless one of them is next to us. |
| 564 |
+ |
* If the background is too distant, call |
| 565 |
+ |
* the fill function. |
| 566 |
|
*/ |
| 567 |
|
if ( yback[x] < 0 |
| 568 |
|
|| (xback >= 0 && ABS(x-xback) <= 1) |
| 569 |
|
|| ( ABS(y-yback[x]) > 1 |
| 570 |
|
&& zscan(yback[x])[x] |
| 571 |
|
< zscan(y)[xback] ) ) { |
| 572 |
+ |
if (samp > 0 && ABS(x-xback) >= samp) |
| 573 |
+ |
goto fillit; |
| 574 |
|
copycolr(pscan(y)[x],pscan(y)[xback]); |
| 575 |
|
zscan(y)[x] = zscan(y)[xback]; |
| 576 |
|
} else { |
| 577 |
+ |
if (samp > 0 && ABS(y-yback[x]) > samp) |
| 578 |
+ |
goto fillit; |
| 579 |
|
copycolr(pscan(y)[x],pscan(yback[x])[x]); |
| 580 |
|
zscan(y)[x] = zscan(yback[x])[x]; |
| 581 |
|
} |
| 582 |
+ |
continue; |
| 583 |
+ |
fillit: |
| 584 |
+ |
(*fill)(x,y); |
| 585 |
+ |
if (fill == rcalfill) { /* use it */ |
| 586 |
+ |
clearqueue(); |
| 587 |
+ |
xback = x; |
| 588 |
+ |
yback[x] = y; |
| 589 |
+ |
} |
| 590 |
|
} else { /* full pixel */ |
| 591 |
|
yback[x] = -2; |
| 592 |
|
xback = -2; |
| 639 |
|
if (donorm) { |
| 640 |
|
double vx, yzn2; |
| 641 |
|
register int x; |
| 642 |
< |
yzn2 = y - .5*(vresolu-1); |
| 642 |
> |
yzn2 = (y+.5)/vresolu + ourview.voff - .5; |
| 643 |
|
yzn2 = 1. + yzn2*yzn2*ourview.vn2; |
| 644 |
|
for (x = 0; x < hresolu; x++) { |
| 645 |
< |
vx = x - .5*(hresolu-1); |
| 645 |
> |
vx = (x+.5)/hresolu + ourview.hoff - .5; |
| 646 |
|
zout[x] = zscan(y)[x] |
| 647 |
|
* sqrt(vx*vx*ourview.hn2 + yzn2); |
| 648 |
|
} |