1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
|
/*
===========================================================================
Doom 3 GPL Source Code
Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
This file is part of the Doom 3 GPL Source Code ("Doom 3 Source Code").
Doom 3 Source Code is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Doom 3 Source Code is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
===========================================================================
*/
#include "sys/platform.h"
#include "framework/DemoFile.h"
#include "framework/Session.h"
#include "renderer/RenderWorld_local.h"
#include "renderer/tr_local.h"
/*
All that is done in these functions is the creation of viewLights
and viewEntitys for the lightDefs and entityDefs that are visible
in the portal areas that can be seen from the current viewpoint.
*/
// if we hit this many planes, we will just stop cropping the
// view down, which is still correct, just conservative
const int MAX_PORTAL_PLANES = 20;
typedef struct portalStack_s {
portal_t *p;
const struct portalStack_s *next;
idScreenRect rect;
int numPortalPlanes;
idPlane portalPlanes[MAX_PORTAL_PLANES+1];
// positive side is outside the visible frustum
} portalStack_t;
//====================================================================
/*
===================
idRenderWorldLocal::ScreenRectForWinding
===================
*/
idScreenRect idRenderWorldLocal::ScreenRectFromWinding( const idWinding *w, viewEntity_t *space ) {
idScreenRect r;
int i;
idVec3 v;
idVec3 ndc;
float windowX, windowY;
r.Clear();
for ( i = 0 ; i < w->GetNumPoints() ; i++ ) {
R_LocalPointToGlobal( space->modelMatrix, (*w)[i].ToVec3(), v );
R_GlobalToNormalizedDeviceCoordinates( v, ndc );
windowX = 0.5f * ( 1.0f + ndc[0] ) * ( tr.viewDef->viewport.x2 - tr.viewDef->viewport.x1 );
windowY = 0.5f * ( 1.0f + ndc[1] ) * ( tr.viewDef->viewport.y2 - tr.viewDef->viewport.y1 );
r.AddPoint( windowX, windowY );
}
r.Expand();
return r;
}
/*
===================
PortalIsFoggedOut
===================
*/
bool idRenderWorldLocal::PortalIsFoggedOut( const portal_t *p ) {
idRenderLightLocal *ldef;
const idWinding *w;
int i;
idPlane forward;
ldef = p->doublePortal->fogLight;
if ( !ldef ) {
return false;
}
// find the current density of the fog
const idMaterial *lightShader = ldef->lightShader;
int size = sizeof( float ) *lightShader->GetNumRegisters();
float *regs =(float *)_alloca( size );
lightShader->EvaluateRegisters( regs, ldef->parms.shaderParms, tr.viewDef, ldef->parms.referenceSound );
const shaderStage_t *stage = lightShader->GetStage(0);
float alpha = regs[ stage->color.registers[3] ];
// if they left the default value on, set a fog distance of 500
float a;
if ( alpha <= 1.0f ) {
a = -0.5f / DEFAULT_FOG_DISTANCE;
} else {
// otherwise, distance = alpha color
a = -0.5f / alpha;
}
forward[0] = a * tr.viewDef->worldSpace.modelViewMatrix[2];
forward[1] = a * tr.viewDef->worldSpace.modelViewMatrix[6];
forward[2] = a * tr.viewDef->worldSpace.modelViewMatrix[10];
forward[3] = a * tr.viewDef->worldSpace.modelViewMatrix[14];
w = p->w;
for ( i = 0 ; i < w->GetNumPoints() ; i++ ) {
float d;
d = forward.Distance( (*w)[i].ToVec3() );
if ( d < 0.5f ) {
return false; // a point not clipped off
}
}
return true;
}
/*
===================
FloodViewThroughArea_r
===================
*/
void idRenderWorldLocal::FloodViewThroughArea_r( const idVec3 origin, int areaNum,
const struct portalStack_s *ps ) {
portal_t* p;
float d;
portalArea_t * area;
const portalStack_t *check;
portalStack_t newStack;
int i, j;
idVec3 v1, v2;
int addPlanes;
idFixedWinding w; // we won't overflow because MAX_PORTAL_PLANES = 20
area = &portalAreas[ areaNum ];
// cull models and lights to the current collection of planes
AddAreaRefs( areaNum, ps );
if ( areaScreenRect[areaNum].IsEmpty() ) {
areaScreenRect[areaNum] = ps->rect;
} else {
areaScreenRect[areaNum].Union( ps->rect );
}
// go through all the portals
for ( p = area->portals; p; p = p->next ) {
// an enclosing door may have sealed the portal off
if ( p->doublePortal->blockingBits & PS_BLOCK_VIEW ) {
continue;
}
// make sure this portal is facing away from the view
d = p->plane.Distance( origin );
if ( d < -0.1f ) {
continue;
}
// make sure the portal isn't in our stack trace,
// which would cause an infinite loop
for ( check = ps; check; check = check->next ) {
if ( check->p == p ) {
break; // don't recursively enter a stack
}
}
if ( check ) {
continue; // already in stack
}
// if we are very close to the portal surface, don't bother clipping
// it, which tends to give epsilon problems that make the area vanish
if ( d < 1.0f ) {
// go through this portal
newStack = *ps;
newStack.p = p;
newStack.next = ps;
FloodViewThroughArea_r( origin, p->intoArea, &newStack );
continue;
}
// clip the portal winding to all of the planes
w = *p->w;
for ( j = 0; j < ps->numPortalPlanes; j++ ) {
if ( !w.ClipInPlace( -ps->portalPlanes[j], 0 ) ) {
break;
}
}
if ( !w.GetNumPoints() ) {
continue; // portal not visible
}
// see if it is fogged out
if ( PortalIsFoggedOut( p ) ) {
continue;
}
// go through this portal
newStack.p = p;
newStack.next = ps;
// find the screen pixel bounding box of the remaining portal
// so we can scissor things outside it
newStack.rect = ScreenRectFromWinding( &w, &tr.identitySpace );
// slop might have spread it a pixel outside, so trim it back
newStack.rect.Intersect( ps->rect );
// generate a set of clipping planes that will further restrict
// the visible view beyond just the scissor rect
addPlanes = w.GetNumPoints();
if ( addPlanes > MAX_PORTAL_PLANES ) {
addPlanes = MAX_PORTAL_PLANES;
}
newStack.numPortalPlanes = 0;
for ( i = 0; i < addPlanes; i++ ) {
j = i+1;
if ( j == w.GetNumPoints() ) {
j = 0;
}
v1 = origin - w[i].ToVec3();
v2 = origin - w[j].ToVec3();
newStack.portalPlanes[newStack.numPortalPlanes].Normal().Cross( v2, v1 );
// if it is degenerate, skip the plane
if ( newStack.portalPlanes[newStack.numPortalPlanes].Normalize() < 0.01f ) {
continue;
}
newStack.portalPlanes[newStack.numPortalPlanes].FitThroughPoint( origin );
newStack.numPortalPlanes++;
}
// the last stack plane is the portal plane
newStack.portalPlanes[newStack.numPortalPlanes] = p->plane;
newStack.numPortalPlanes++;
FloodViewThroughArea_r( origin, p->intoArea, &newStack );
}
}
/*
=======================
FlowViewThroughPortals
Finds viewLights and viewEntities by flowing from an origin through the visible portals.
origin point can see into. The planes array defines a volume (positive
sides facing in) that should contain the origin, such as a view frustum or a point light box.
Zero planes assumes an unbounded volume.
=======================
*/
void idRenderWorldLocal::FlowViewThroughPortals( const idVec3 origin, int numPlanes, const idPlane *planes ) {
portalStack_t ps;
int i;
ps.next = NULL;
ps.p = NULL;
for ( i = 0 ; i < numPlanes ; i++ ) {
ps.portalPlanes[i] = planes[i];
}
ps.numPortalPlanes = numPlanes;
ps.rect = tr.viewDef->scissor;
if ( tr.viewDef->areaNum < 0 ){
for ( i = 0; i < numPortalAreas; i++ ) {
areaScreenRect[i] = tr.viewDef->scissor;
}
// if outside the world, mark everything
for ( i = 0 ; i < numPortalAreas ; i++ ) {
AddAreaRefs( i, &ps );
}
} else {
for ( i = 0; i < numPortalAreas; i++ ) {
areaScreenRect[i].Clear();
}
// flood out through portals, setting area viewCount
FloodViewThroughArea_r( origin, tr.viewDef->areaNum, &ps );
}
}
//==================================================================================================
/*
===================
FloodLightThroughArea_r
===================
*/
void idRenderWorldLocal::FloodLightThroughArea_r( idRenderLightLocal *light, int areaNum,
const struct portalStack_s *ps ) {
portal_t* p;
float d;
portalArea_t * area;
const portalStack_t *check, *firstPortalStack = NULL;
portalStack_t newStack;
int i, j;
idVec3 v1, v2;
int addPlanes;
idFixedWinding w; // we won't overflow because MAX_PORTAL_PLANES = 20
area = &portalAreas[ areaNum ];
// add an areaRef
AddLightRefToArea( light, area );
// go through all the portals
for ( p = area->portals; p; p = p->next ) {
// make sure this portal is facing away from the view
d = p->plane.Distance( light->globalLightOrigin );
if ( d < -0.1f ) {
continue;
}
// make sure the portal isn't in our stack trace,
// which would cause an infinite loop
for ( check = ps; check; check = check->next ) {
firstPortalStack = check;
if ( check->p == p ) {
break; // don't recursively enter a stack
}
}
if ( check ) {
continue; // already in stack
}
// if we are very close to the portal surface, don't bother clipping
// it, which tends to give epsilon problems that make the area vanish
if ( d < 1.0f ) {
// go through this portal
newStack = *ps;
newStack.p = p;
newStack.next = ps;
FloodLightThroughArea_r( light, p->intoArea, &newStack );
continue;
}
// clip the portal winding to all of the planes
w = *p->w;
for ( j = 0; j < ps->numPortalPlanes; j++ ) {
if ( !w.ClipInPlace( -ps->portalPlanes[j], 0 ) ) {
break;
}
}
if ( !w.GetNumPoints() ) {
continue; // portal not visible
}
// also always clip to the original light planes, because they aren't
// necessarily extending to infinitiy like a view frustum
for ( j = 0; j < firstPortalStack->numPortalPlanes; j++ ) {
if ( !w.ClipInPlace( -firstPortalStack->portalPlanes[j], 0 ) ) {
break;
}
}
if ( !w.GetNumPoints() ) {
continue; // portal not visible
}
// go through this portal
newStack.p = p;
newStack.next = ps;
// generate a set of clipping planes that will further restrict
// the visible view beyond just the scissor rect
addPlanes = w.GetNumPoints();
if ( addPlanes > MAX_PORTAL_PLANES ) {
addPlanes = MAX_PORTAL_PLANES;
}
newStack.numPortalPlanes = 0;
for ( i = 0; i < addPlanes; i++ ) {
j = i+1;
if ( j == w.GetNumPoints() ) {
j = 0;
}
v1 = light->globalLightOrigin - w[i].ToVec3();
v2 = light->globalLightOrigin - w[j].ToVec3();
newStack.portalPlanes[newStack.numPortalPlanes].Normal().Cross( v2, v1 );
// if it is degenerate, skip the plane
if ( newStack.portalPlanes[newStack.numPortalPlanes].Normalize() < 0.01f ) {
continue;
}
newStack.portalPlanes[newStack.numPortalPlanes].FitThroughPoint( light->globalLightOrigin );
newStack.numPortalPlanes++;
}
FloodLightThroughArea_r( light, p->intoArea, &newStack );
}
}
/*
=======================
FlowLightThroughPortals
Adds an arearef in each area that the light center flows into.
This can only be used for shadow casting lights that have a generated
prelight, because shadows are cast from back side which may not be in visible areas.
=======================
*/
void idRenderWorldLocal::FlowLightThroughPortals( idRenderLightLocal *light ) {
portalStack_t ps;
int i;
// if the light origin areaNum is not in a valid area,
// the light won't have any area refs
if ( light->areaNum == -1 ) {
return;
}
memset( &ps, 0, sizeof( ps ) );
ps.numPortalPlanes = 6;
for ( i = 0 ; i < 6 ; i++ ) {
ps.portalPlanes[i] = light->frustum[i];
}
FloodLightThroughArea_r( light, light->areaNum, &ps );
}
//======================================================================================================
/*
===================
idRenderWorldLocal::FloodFrustumAreas_r
===================
*/
areaNumRef_t *idRenderWorldLocal::FloodFrustumAreas_r( const idFrustum &frustum, const int areaNum, const idBounds &bounds, areaNumRef_t *areas ) {
portal_t *p;
portalArea_t *portalArea;
idBounds newBounds;
areaNumRef_t *a;
portalArea = &portalAreas[ areaNum ];
// go through all the portals
for ( p = portalArea->portals; p; p = p->next ) {
// check if we already visited the area the portal leads to
for ( a = areas; a; a = a->next ) {
if ( a->areaNum == p->intoArea ) {
break;
}
}
if ( a ) {
continue;
}
// the frustum origin must be at the front of the portal plane
if ( p->plane.Side( frustum.GetOrigin(), 0.1f ) == SIDE_BACK ) {
continue;
}
// the frustum must cross the portal plane
if ( frustum.PlaneSide( p->plane, 0.0f ) != PLANESIDE_CROSS ) {
continue;
}
// get the bounds for the portal winding projected in the frustum
frustum.ProjectionBounds( *p->w, newBounds );
newBounds.IntersectSelf( bounds );
if ( newBounds[0][0] > newBounds[1][0] || newBounds[0][1] > newBounds[1][1] || newBounds[0][2] > newBounds[1][2] ) {
continue;
}
newBounds[1][0] = frustum.GetFarDistance();
a = areaNumRefAllocator.Alloc();
a->areaNum = p->intoArea;
a->next = areas;
areas = a;
areas = FloodFrustumAreas_r( frustum, p->intoArea, newBounds, areas );
}
return areas;
}
/*
===================
idRenderWorldLocal::FloodFrustumAreas
Retrieves all the portal areas the frustum floods into where the frustum starts in the given areas.
All portals are assumed to be open.
===================
*/
areaNumRef_t *idRenderWorldLocal::FloodFrustumAreas( const idFrustum &frustum, areaNumRef_t *areas ) {
idBounds bounds;
areaNumRef_t *a;
// bounds that cover the whole frustum
bounds[0].Set( frustum.GetNearDistance(), -1.0f, -1.0f );
bounds[1].Set( frustum.GetFarDistance(), 1.0f, 1.0f );
for ( a = areas; a; a = a->next ) {
areas = FloodFrustumAreas_r( frustum, a->areaNum, bounds, areas );
}
return areas;
}
/*
=======================================================================
R_FindViewLightsAndEntities
=======================================================================
*/
/*
================
CullEntityByPortals
Return true if the entity reference bounds do not intersect the current portal chain.
================
*/
bool idRenderWorldLocal::CullEntityByPortals( const idRenderEntityLocal *entity, const portalStack_t *ps ) {
if ( !r_useEntityCulling.GetBool() ) {
return false;
}
// try to cull the entire thing using the reference bounds.
// we do not yet do callbacks or dynamic model creation,
// because we want to do all touching of the model after
// we have determined all the lights that may effect it,
// which optimizes cache usage
if ( R_CullLocalBox( entity->referenceBounds, entity->modelMatrix,
ps->numPortalPlanes, ps->portalPlanes ) ) {
return true;
}
return false;
}
/*
===================
AddAreaEntityRefs
Any models that are visible through the current portalStack will
have their scissor
===================
*/
void idRenderWorldLocal::AddAreaEntityRefs( int areaNum, const portalStack_t *ps ) {
areaReference_t *ref;
idRenderEntityLocal *entity;
portalArea_t *area;
viewEntity_t *vEnt;
idBounds b;
area = &portalAreas[ areaNum ];
for ( ref = area->entityRefs.areaNext ; ref != &area->entityRefs ; ref = ref->areaNext ) {
entity = ref->entity;
// debug tool to allow viewing of only one entity at a time
if ( r_singleEntity.GetInteger() >= 0 && r_singleEntity.GetInteger() != entity->index ) {
continue;
}
// remove decals that are completely faded away
R_FreeEntityDefFadedDecals( entity, tr.viewDef->renderView.time );
// check for completely suppressing the model
if ( !r_skipSuppress.GetBool() ) {
if ( entity->parms.suppressSurfaceInViewID
&& entity->parms.suppressSurfaceInViewID == tr.viewDef->renderView.viewID ) {
continue;
}
if ( entity->parms.allowSurfaceInViewID
&& entity->parms.allowSurfaceInViewID != tr.viewDef->renderView.viewID ) {
continue;
}
}
// cull reference bounds
if ( CullEntityByPortals( entity, ps ) ) {
// we are culled out through this portal chain, but it might
// still be visible through others
continue;
}
vEnt = R_SetEntityDefViewEntity( entity );
// possibly expand the scissor rect
vEnt->scissorRect.Union( ps->rect );
}
}
/*
================
CullLightByPortals
Return true if the light frustum does not intersect the current portal chain.
The last stack plane is not used because lights are not near clipped.
================
*/
bool idRenderWorldLocal::CullLightByPortals( const idRenderLightLocal *light, const portalStack_t *ps ) {
int i, j;
const srfTriangles_t *tri;
float d;
idFixedWinding w; // we won't overflow because MAX_PORTAL_PLANES = 20
if ( r_useLightCulling.GetInteger() == 0 ) {
return false;
}
if ( r_useLightCulling.GetInteger() >= 2 ) {
// exact clip of light faces against all planes
for ( i = 0; i < 6; i++ ) {
// the light frustum planes face out from the light,
// so the planes that have the view origin on the negative
// side will be the "back" faces of the light, which must have
// some fragment inside the portalStack to be visible
if ( light->frustum[i].Distance( tr.viewDef->renderView.vieworg ) >= 0 ) {
continue;
}
// get the exact winding for this side
const idWinding *ow = light->frustumWindings[i];
// projected lights may have one of the frustums degenerated
if ( !ow ) {
continue;
}
w = *ow;
// now check the winding against each of the portalStack planes
for ( j = 0; j < ps->numPortalPlanes - 1; j++ ) {
if ( !w.ClipInPlace( -ps->portalPlanes[j] ) ) {
break;
}
}
if ( w.GetNumPoints() ) {
// part of the winding is visible through the portalStack,
// so the light is not culled
return false;
}
}
// none of the light surfaces were visible
return true;
} else {
// simple point check against each plane
tri = light->frustumTris;
// check against frustum planes
for ( i = 0; i < ps->numPortalPlanes - 1; i++ ) {
for ( j = 0; j < tri->numVerts; j++ ) {
d = ps->portalPlanes[i].Distance( tri->verts[j].xyz );
if ( d < 0.0f ) {
break; // point is inside this plane
}
}
if ( j == tri->numVerts ) {
// all points were outside one of the planes
tr.pc.c_box_cull_out++;
return true;
}
}
}
return false;
}
/*
===================
AddAreaLightRefs
This is the only point where lights get added to the viewLights list
===================
*/
void idRenderWorldLocal::AddAreaLightRefs( int areaNum, const portalStack_t *ps ) {
areaReference_t *lref;
portalArea_t *area;
idRenderLightLocal *light;
viewLight_t *vLight;
area = &portalAreas[ areaNum ];
for ( lref = area->lightRefs.areaNext ; lref != &area->lightRefs ; lref = lref->areaNext ) {
light = lref->light;
// debug tool to allow viewing of only one light at a time
if ( r_singleLight.GetInteger() >= 0 && r_singleLight.GetInteger() != light->index ) {
continue;
}
// check for being closed off behind a door
// a light that doesn't cast shadows will still light even if it is behind a door
if ( r_useLightCulling.GetInteger() >= 3 &&
!light->parms.noShadows && light->lightShader->LightCastsShadows()
&& light->areaNum != -1 && !tr.viewDef->connectedAreas[ light->areaNum ] ) {
continue;
}
// cull frustum
if ( CullLightByPortals( light, ps ) ) {
// we are culled out through this portal chain, but it might
// still be visible through others
continue;
}
vLight = R_SetLightDefViewLight( light );
// expand the scissor rect
vLight->scissorRect.Union( ps->rect );
}
}
/*
===================
AddAreaRefs
This may be entered multiple times with different planes
if more than one portal sees into the area
===================
*/
void idRenderWorldLocal::AddAreaRefs( int areaNum, const portalStack_t *ps ) {
// mark the viewCount, so r_showPortals can display the
// considered portals
portalAreas[ areaNum ].viewCount = tr.viewCount;
// add the models and lights, using more precise culling to the planes
AddAreaEntityRefs( areaNum, ps );
AddAreaLightRefs( areaNum, ps );
}
/*
===================
BuildConnectedAreas_r
===================
*/
void idRenderWorldLocal::BuildConnectedAreas_r( int areaNum ) {
portalArea_t *area;
portal_t *portal;
if ( tr.viewDef->connectedAreas[areaNum] ) {
return;
}
tr.viewDef->connectedAreas[areaNum] = true;
// flood through all non-blocked portals
area = &portalAreas[ areaNum ];
for ( portal = area->portals ; portal ; portal = portal->next ) {
if ( !(portal->doublePortal->blockingBits & PS_BLOCK_VIEW) ) {
BuildConnectedAreas_r( portal->intoArea );
}
}
}
/*
===================
BuildConnectedAreas
This is only valid for a given view, not all views in a frame
===================
*/
void idRenderWorldLocal::BuildConnectedAreas( void ) {
int i;
tr.viewDef->connectedAreas = (bool *)R_FrameAlloc( numPortalAreas
* sizeof( tr.viewDef->connectedAreas[0] ) );
// if we are outside the world, we can see all areas
if ( tr.viewDef->areaNum == -1 ) {
for ( i = 0 ; i < numPortalAreas ; i++ ) {
tr.viewDef->connectedAreas[i] = true;
}
return;
}
// start with none visible, and flood fill from the current area
memset( tr.viewDef->connectedAreas, 0, numPortalAreas * sizeof( tr.viewDef->connectedAreas[0] ) );
BuildConnectedAreas_r( tr.viewDef->areaNum );
}
/*
=============
FindViewLightsAndEntites
All the modelrefs and lightrefs that are in visible areas
will have viewEntitys and viewLights created for them.
The scissorRects on the viewEntitys and viewLights may be empty if
they were considered, but not actually visible.
=============
*/
void idRenderWorldLocal::FindViewLightsAndEntities( void ) {
// clear the visible lightDef and entityDef lists
tr.viewDef->viewLights = NULL;
tr.viewDef->viewEntitys = NULL;
// find the area to start the portal flooding in
if ( !r_usePortals.GetBool() ) {
// debug tool to force no portal culling
tr.viewDef->areaNum = -1;
} else {
tr.viewDef->areaNum = PointInArea( tr.viewDef->initialViewAreaOrigin );
}
// determine all possible connected areas for
// light-behind-door culling
BuildConnectedAreas();
// bump the view count, invalidating all
// visible areas
tr.viewCount++;
// flow through all the portals and add models / lights
if ( r_singleArea.GetBool() ) {
// if debugging, only mark this area
// if we are outside the world, don't draw anything
if ( tr.viewDef->areaNum >= 0 ) {
portalStack_t ps;
int i;
static int lastPrintedAreaNum;
if ( tr.viewDef->areaNum != lastPrintedAreaNum ) {
lastPrintedAreaNum = tr.viewDef->areaNum;
common->Printf( "entering portal area %i\n", tr.viewDef->areaNum );
}
for ( i = 0 ; i < 5 ; i++ ) {
ps.portalPlanes[i] = tr.viewDef->frustum[i];
}
ps.numPortalPlanes = 5;
ps.rect = tr.viewDef->scissor;
AddAreaRefs( tr.viewDef->areaNum, &ps );
}
} else {
// note that the center of projection for flowing through portals may
// be a different point than initialViewAreaOrigin for subviews that
// may have the viewOrigin in a solid/invalid area
FlowViewThroughPortals( tr.viewDef->renderView.vieworg, 5, tr.viewDef->frustum );
}
}
/*
==============
NumPortals
==============
*/
int idRenderWorldLocal::NumPortals( void ) const {
return numInterAreaPortals;
}
/*
==============
FindPortal
Game code uses this to identify which portals are inside doors.
Returns 0 if no portal contacts the bounds
==============
*/
qhandle_t idRenderWorldLocal::FindPortal( const idBounds &b ) const {
int i, j;
idBounds wb;
doublePortal_t *portal;
idWinding *w;
for ( i = 0 ; i < numInterAreaPortals ; i++ ) {
portal = &doublePortals[i];
w = portal->portals[0]->w;
wb.Clear();
for ( j = 0 ; j < w->GetNumPoints() ; j++ ) {
wb.AddPoint( (*w)[j].ToVec3() );
}
if ( wb.IntersectsBounds( b ) ) {
return i + 1;
}
}
return 0;
}
/*
=============
FloodConnectedAreas
=============
*/
void idRenderWorldLocal::FloodConnectedAreas( portalArea_t *area, int portalAttributeIndex ) {
if ( area->connectedAreaNum[portalAttributeIndex] == connectedAreaNum ) {
return;
}
area->connectedAreaNum[portalAttributeIndex] = connectedAreaNum;
for ( portal_t *p = area->portals ; p ; p = p->next ) {
if ( !(p->doublePortal->blockingBits & (1<<portalAttributeIndex) ) ) {
FloodConnectedAreas( &portalAreas[p->intoArea], portalAttributeIndex );
}
}
}
/*
==============
AreasAreConnected
==============
*/
bool idRenderWorldLocal::AreasAreConnected( int areaNum1, int areaNum2, portalConnection_t connection ) {
if ( areaNum1 == -1 || areaNum2 == -1 ) {
return false;
}
if ( areaNum1 > numPortalAreas || areaNum2 > numPortalAreas || areaNum1 < 0 || areaNum2 < 0 ) {
common->Error( "idRenderWorldLocal::AreAreasConnected: bad parms: %i, %i", areaNum1, areaNum2 );
}
int attribute = 0;
int intConnection = (int)connection;
while ( intConnection > 1 ) {
attribute++;
intConnection >>= 1;
}
if ( attribute >= NUM_PORTAL_ATTRIBUTES || ( 1 << attribute ) != (int)connection ) {
common->Error( "idRenderWorldLocal::AreasAreConnected: bad connection number: %i\n", (int)connection );
}
return portalAreas[areaNum1].connectedAreaNum[attribute] == portalAreas[areaNum2].connectedAreaNum[attribute];
}
/*
==============
SetPortalState
doors explicitly close off portals when shut
==============
*/
void idRenderWorldLocal::SetPortalState( qhandle_t portal, int blockTypes ) {
if ( portal == 0 ) {
return;
}
if ( portal < 1 || portal > numInterAreaPortals ) {
common->Error( "SetPortalState: bad portal number %i", portal );
}
int old = doublePortals[portal-1].blockingBits;
if ( old == blockTypes ) {
return;
}
doublePortals[portal-1].blockingBits = blockTypes;
// leave the connectedAreaGroup the same on one side,
// then flood fill from the other side with a new number for each changed attribute
for ( int i = 0 ; i < NUM_PORTAL_ATTRIBUTES ; i++ ) {
if ( ( old ^ blockTypes ) & ( 1 << i ) ) {
connectedAreaNum++;
FloodConnectedAreas( &portalAreas[doublePortals[portal-1].portals[1]->intoArea], i );
}
}
if ( session->writeDemo ) {
session->writeDemo->WriteInt( DS_RENDER );
session->writeDemo->WriteInt( DC_SET_PORTAL_STATE );
session->writeDemo->WriteInt( portal );
session->writeDemo->WriteInt( blockTypes );
}
}
/*
==============
GetPortalState
==============
*/
int idRenderWorldLocal::GetPortalState( qhandle_t portal ) {
if ( portal == 0 ) {
return 0;
}
if ( portal < 1 || portal > numInterAreaPortals ) {
common->Error( "GetPortalState: bad portal number %i", portal );
}
return doublePortals[portal-1].blockingBits;
}
/*
=====================
idRenderWorldLocal::ShowPortals
Debugging tool, won't work correctly with SMP or when mirrors are present
=====================
*/
void idRenderWorldLocal::ShowPortals() {
int i, j;
portalArea_t *area;
portal_t *p;
idWinding *w;
// flood out through portals, setting area viewCount
for ( i = 0 ; i < numPortalAreas ; i++ ) {
area = &portalAreas[i];
if ( area->viewCount != tr.viewCount ) {
continue;
}
for ( p = area->portals ; p ; p = p->next ) {
w = p->w;
if ( !w ) {
continue;
}
if ( portalAreas[ p->intoArea ].viewCount != tr.viewCount ) {
// red = can't see
qglColor3f( 1, 0, 0 );
} else {
// green = see through
qglColor3f( 0, 1, 0 );
}
qglBegin( GL_LINE_LOOP );
for ( j = 0 ; j < w->GetNumPoints() ; j++ ) {
qglVertex3fv( (*w)[j].ToFloatPtr() );
}
qglEnd();
}
}
}
|