Precaching assets

From Valve Developer Community
Revision as of 21:11, 20 July 2010 by Pictizm (talk | contribs)
Jump to navigation Jump to search

To provide a smooth loading of assets for a typical game session, it is important that the engine does as much work as possible to load those assets before the session begins. By doing this, the player's experience is not disturbed by interruptions as the engine tries to load assets in the middle of a session, often causing "hitching", lag or delays in rendering. With precaching, the assets are already loaded and are immediately ready for use. To do this, entities must declare and precache the assets they intend to use before the session starts. There are multiple utility functions in place to achieve this.

Functions

The Precache() function is available to all descendants of the CBaseEntity class and must be called in the Spawn() function of each entity. All assets used by the entity (models, sounds, VCD, decals) must be declared in this function to be used. Assets may not be precached outside of this function.

Assets are precached using the functions described below.

PrecacheModel

Used to precache a model or material.

int CBaseEntity::PrecacheModel(
     const char *name
)

Parameters

  • name
    • Filename of the model to load

Return Value

  • Reference index for the model.

PrecacheScriptSound

Used to precache a sound script as declared in a sound script file.

void CBaseEntity::PrecacheScriptSound(
     const char *soundname
)

Parameters

  • soundname
    • Name of sound script to precache.

Remarks

  • Sound script must be declared in the sound script manifest document.

Return Value

  • None.

PrecacheInstancedScene

Used to precache a VCD file.

void PrecacheInstancedScene(
     char const *pszScene
)

Parameters

  • pszScene
    • Filename of the VCD to precache.

Return Value

  • None.

UTIL_PrecacheOther

Utility function that will call the Precache() function for an entity that will be referenced or created during the lifetime of the calling entity. This is often used for weapons that will create a child entity (like a grenade) dynamically during the course of a session.

void UTIL_PrecacheOther(
     const char *szClassname,
     const char *modelName
)

Parameters

  • szClassname
    • Entity classname to precache assets for.
  • modelName
    • Model name to use for this entity.

Return Value

  • None.

UTIL_PrecacheDecal

Used to precache a decal.

int UTIL_PrecacheDecal(
     const char *name,
     bool preload
)

Parameters

  • name
    • Name of the decal to precache.
  • preload
    • Whether or not to preload this decal.

Return Value

  • Reference index for the decal model.

More

  • IEngineSound::PrecacheSound
  • IVEngineServer::PrecacheSentenceFile
  • IVEngineServer::PrecacheDecal
  • IVEngineServer::PrecacheGeneric

Defines

  • PRECACHE_WEAPON_REGISTER
  • CLIENTEFFECT_REGISTER_BEGIN

Template:Otherlang:en Template:Otherlang:en:ru