Morphing Terrain Issues: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
Line 9: Line 9:
If the terrain represents snow, that the collision hulls are ''not'' updated can create a depth to your snow displacements.
If the terrain represents snow, that the collision hulls are ''not'' updated can create a depth to your snow displacements.
==The Problem==
==The Problem==
The following is engine code that is included in the SDK:
The following is engine code that is included in the SDK in '''src\public\dispcoll_common.cpp''':
  //-----------------------------------------------------------------------------
  //-----------------------------------------------------------------------------
  // Purpose:
  // Purpose:

Revision as of 13:05, 29 January 2006

Synopsis

Using the Env_terrainmorph does not update the collision hull. Tracing through the code leads you to engine->ApplyTerrainMod(), and the trail basicly ends there for the SDK. Can anything be done to "fix" this? Morphable terrain isn't very useful when it doesn't modify the collisions. I heard there was an E3 Demo of Source and the ability to morph the terrain along with updating the collisions was shown, yet the functionality appears to be absent now.

Work-arounds

The only work-around that exsists is to add in a func_movelinear or other moving brush, and simply have that move under the terrain to make the brushes' shape match what the terrain is supposed to be. This is not, however, always practical.

If the terrain represents snow, that the collision hulls are not updated can create a depth to your snow displacements.

The Problem

The following is engine code that is included in the SDK in src\public\dispcoll_common.cpp:

//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CDispCollTree::ApplyTerrainMod( ITerrainMod *pMod )
{
#if 0
	int nVertCount = GetSize();
	for ( int iVert = 0; iVert < nVertCount; ++iVert )
	{
		pMod->ApplyMod( m_aVerts[iVert].m_vecPos, m_aVerts[iVert].m_vecOrigPos );
		pMod->ApplyMod( m_aVerts[iVert].m_vecPos, m_aVerts[iVert].m_vecOrigPos );
	}

	// Setup/create the leaf nodes first so the recusion can use this data to stop.
	AABBTree_CreateLeafs();

	// Generate bounding boxes.
	AABBTree_GenerateBoxes();

	// Create the bounding box of the displacement surface + the base face.
	AABBTree_CalcBounds();
#endif
}