/************* * DESCRIPTION: destructor * deletes all allocated memory DCs, bitmaps and the display * the two bitmaps are allocated in OnDraw * INPUT: - * OUTPUT: - *************/ CCamView::~CCamView() { FreeSurfaces(); gfx.Cleanup(); delete pDisplay; }
/* =============== idInteraction::UnlinkAndFree Removes links and puts it back on the free list. =============== */ void idInteraction::UnlinkAndFree( void ) { // clear the table pointer idRenderWorldLocal *renderWorld = this->lightDef->world; if ( renderWorld->interactionTable ) { int index = this->lightDef->index * renderWorld->interactionTableWidth + this->entityDef->index; if ( renderWorld->interactionTable[index] != this ) { common->Error( "idInteraction::UnlinkAndFree: interactionTable wasn't set" ); } renderWorld->interactionTable[index] = NULL; } Unlink(); FreeSurfaces(); // free the interaction area references areaNumRef_t *area, *nextArea; for ( area = frustumAreas; area; area = nextArea ) { nextArea = area->next; renderWorld->areaNumRefAllocator.Free( area ); } // put it back on the free list renderWorld->interactionAllocator.Free( this ); }
/* =============== idInteraction::UnlinkAndFree Removes links and puts it back on the free list. =============== */ void idInteraction::UnlinkAndFree() { // clear the table pointer idRenderWorldLocal *renderWorld = this->lightDef->world; int index = this->lightDef->index * renderWorld->interactionTableWidth + this->entityDef->index; if ( renderWorld->interactionTable[index] != this && renderWorld->interactionTable[index] != INTERACTION_EMPTY ) { common->Error( "idInteraction::UnlinkAndFree: interactionTable wasn't set" ); } renderWorld->interactionTable[index] = NULL; Unlink(); FreeSurfaces(); // put it back on the free list renderWorld->interactionAllocator.Free( this ); }
LTBOOL CBitmapCtrl::SetBitmap(char *lpszNormalBmp,char *lpszSelectedBmp,char *lpszDisabledBmp) { uint32 dwWidth=0; uint32 dwHeight=0; if (m_bFreeSurfaces) FreeSurfaces(); HSURFACE hNormalSurface = g_pInterfaceResMgr->GetSharedSurface(lpszNormalBmp); if (!hNormalSurface) return LTFALSE; strncpy(m_sNormalSurface,lpszNormalBmp,sizeof(m_sNormalSurface)); m_pClientDE->GetSurfaceDims (hNormalSurface, &dwWidth, &dwHeight); m_nNormalWidth = (int)dwWidth; m_nNormalHeight = (int)dwHeight; if (lpszSelectedBmp) { HSURFACE hSelectedSurface = g_pInterfaceResMgr->GetSharedSurface(lpszSelectedBmp); if (!hSelectedSurface) { Destroy(); return LTFALSE; } strncpy(m_sSelectedSurface,lpszSelectedBmp,sizeof(m_sSelectedSurface)); m_pClientDE->GetSurfaceDims (hSelectedSurface, &dwWidth, &dwHeight); m_nSelectedWidth = (int)dwWidth; m_nSelectedHeight = (int)dwHeight; } if (lpszDisabledBmp) { HSURFACE hDisabledSurface = g_pInterfaceResMgr->GetSharedSurface(lpszDisabledBmp); if (!hDisabledSurface) { Destroy(); return LTFALSE; } strncpy(m_sDisabledSurface,lpszDisabledBmp,sizeof(m_sDisabledSurface)); m_pClientDE->GetSurfaceDims (hDisabledSurface, &dwWidth, &dwHeight); m_nDisabledWidth = (int)dwWidth; m_nDisabledHeight = (int)dwHeight; } return LTTRUE; }
/* ================== idInteraction::AddActiveInteraction Create and add any necessary light and shadow triangles If the model doesn't have any surfaces that need interactions with this type of light, it can be skipped, but we might need to instantiate the dynamic model to find out ================== */ void idInteraction::AddActiveInteraction( void ) { viewLight_t * vLight; viewEntity_t * vEntity; idScreenRect shadowScissor; idScreenRect lightScissor; idVec3 localLightOrigin; idVec3 localViewOrigin; vLight = lightDef->viewLight; vEntity = entityDef->viewEntity; // do not waste time culling the interaction frustum if there will be no shadows if ( !HasShadows() ) { // use the entity scissor rectangle shadowScissor = vEntity->scissorRect; // culling does not seem to be worth it for static world models } else if ( entityDef->parms.hModel->IsStaticWorldModel() ) { // use the light scissor rectangle shadowScissor = vLight->scissorRect; } else { // try to cull the interaction // this will also cull the case where the light origin is inside the // view frustum and the entity bounds are outside the view frustum if ( CullInteractionByViewFrustum( tr.viewDef->viewFrustum ) ) { return; } // calculate the shadow scissor rectangle shadowScissor = CalcInteractionScissorRectangle( tr.viewDef->viewFrustum ); } // get out before making the dynamic model if the shadow scissor rectangle is empty if ( shadowScissor.IsEmpty() ) { return; } // We will need the dynamic surface created to make interactions, even if the // model itself wasn't visible. This just returns a cached value after it // has been generated once in the view. idRenderModel *model = R_EntityDefDynamicModel( entityDef ); if ( model == NULL || model->NumSurfaces() <= 0 ) { return; } // the dynamic model may have changed since we built the surface list if ( !IsDeferred() && entityDef->dynamicModelFrameCount != dynamicModelFrameCount ) { FreeSurfaces(); } dynamicModelFrameCount = entityDef->dynamicModelFrameCount; // actually create the interaction if needed, building light and shadow surfaces as needed if ( IsDeferred() ) { CreateInteraction( model ); } R_GlobalPointToLocal( vEntity->modelMatrix, lightDef->globalLightOrigin, localLightOrigin ); R_GlobalPointToLocal( vEntity->modelMatrix, tr.viewDef->renderView.vieworg, localViewOrigin ); // calculate the scissor as the intersection of the light and model rects // this is used for light triangles, but not for shadow triangles lightScissor = vLight->scissorRect; lightScissor.Intersect( vEntity->scissorRect ); bool lightScissorsEmpty = lightScissor.IsEmpty(); // for each surface of this entity / light interaction for ( int i = 0; i < numSurfaces; i++ ) { surfaceInteraction_t *sint = &surfaces[i]; // see if the base surface is visible, we may still need to add shadows even if empty if ( !lightScissorsEmpty && sint->ambientTris && sint->ambientTris->ambientViewCount == tr.viewCount ) { // make sure we have created this interaction, which may have been deferred // on a previous use that only needed the shadow if ( sint->lightTris == LIGHT_TRIS_DEFERRED ) { sint->lightTris = R_CreateLightTris( vEntity->entityDef, sint->ambientTris, vLight->lightDef, sint->shader, sint->cullInfo ); R_FreeInteractionCullInfo( sint->cullInfo ); } srfTriangles_t *lightTris = sint->lightTris; if ( lightTris ) { // try to cull before adding // FIXME: this may not be worthwhile. We have already done culling on the ambient, // but individual surfaces may still be cropped somewhat more if ( !R_CullLocalBox( lightTris->bounds, vEntity->modelMatrix, 5, tr.viewDef->frustum ) ) { // make sure the original surface has its ambient cache created srfTriangles_t *tri = sint->ambientTris; if ( !tri->ambientCache ) { if ( !R_CreateAmbientCache( tri, sint->shader->ReceivesLighting() ) ) { // skip if we were out of vertex memory continue; } } // reference the original surface's ambient cache lightTris->ambientCache = tri->ambientCache; // touch the ambient surface so it won't get purged vertexCache.Touch(lightTris->ambientCache); if (!lightTris->indexCache) { vertexCache.Alloc(lightTris->indexes, lightTris->numIndexes * sizeof(lightTris->indexes[0]), &lightTris->indexCache, true); vertexCache.Touch(lightTris->indexCache); } // add the surface to the light list const idMaterial *shader = sint->shader; R_GlobalShaderOverride(&shader); // there will only be localSurfaces if the light casts shadows and // there are surfaces with NOSELFSHADOW if ( sint->shader->Coverage() == MC_TRANSLUCENT ) { R_LinkLightSurf( &vLight->translucentInteractions, lightTris, vEntity, lightDef, shader, lightScissor, false ); } else if ( !lightDef->parms.noShadows && sint->shader->TestMaterialFlag(MF_NOSELFSHADOW) ) { R_LinkLightSurf( &vLight->localInteractions, lightTris, vEntity, lightDef, shader, lightScissor, false ); } else { R_LinkLightSurf( &vLight->globalInteractions, lightTris, vEntity, lightDef, shader, lightScissor, false ); } } } } srfTriangles_t *shadowTris = sint->shadowTris; // the shadows will always have to be added, unless we can tell they // are from a surface in an unconnected area if ( shadowTris ) { // check for view specific shadow suppression (player shadows, etc) if ( !r_skipSuppress.GetBool() ) { if ( entityDef->parms.suppressShadowInViewID && entityDef->parms.suppressShadowInViewID == tr.viewDef->renderView.viewID ) { continue; } if ( entityDef->parms.suppressShadowInLightID && entityDef->parms.suppressShadowInLightID == lightDef->parms.lightId ) { continue; } } // cull static shadows that have a non-empty bounds // dynamic shadows that use the turboshadow code will not have valid // bounds, because the perspective projection extends them to infinity if ( r_useShadowCulling.GetBool() && !shadowTris->bounds.IsCleared() ) { if ( R_CullLocalBox( shadowTris->bounds, vEntity->modelMatrix, 5, tr.viewDef->frustum ) ) { continue; } } // copy the shadow vertexes to the vertex cache if they have been purged // if we are using shared shadowVertexes and letting a vertex program fix them up, // get the shadowCache from the parent ambient surface if ( !shadowTris->shadowVertexes ) { // the data may have been purged, so get the latest from the "home position" shadowTris->shadowCache = sint->ambientTris->shadowCache; } // if we have been purged, re-upload the shadowVertexes if ( !shadowTris->shadowCache ) { if ( shadowTris->shadowVertexes ) { // each interaction has unique vertexes R_CreatePrivateShadowCache( shadowTris ); } else { R_CreateVertexProgramShadowCache( sint->ambientTris ); shadowTris->shadowCache = sint->ambientTris->shadowCache; } // if we are out of vertex cache space, skip the interaction if ( !shadowTris->shadowCache ) { continue; } } // touch the shadow surface so it won't get purged vertexCache.Touch( shadowTris->shadowCache ); if ( !shadowTris->indexCache ) { vertexCache.Alloc( shadowTris->indexes, shadowTris->numIndexes * sizeof( shadowTris->indexes[0] ), &shadowTris->indexCache, true ); vertexCache.Touch( shadowTris->indexCache ); } // see if we can avoid using the shadow volume caps bool inside = R_PotentiallyInsideInfiniteShadow( sint->ambientTris, localViewOrigin, localLightOrigin ); if ( sint->shader->TestMaterialFlag( MF_NOSELFSHADOW ) ) { R_LinkLightSurf( &vLight->localShadows, shadowTris, vEntity, lightDef, NULL, shadowScissor, inside ); } else { R_LinkLightSurf( &vLight->globalShadows, shadowTris, vEntity, lightDef, NULL, shadowScissor, inside ); } } } }
// Destruction void CBitmapCtrl::Destroy() { if (m_bFreeSurfaces) FreeSurfaces(); }