Precaching assets: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
Line 7: Line 7:


Assets are precached using the following functions:
Assets are precached using the following functions:
===PrecacheModel()===
===PrecacheModel===
Used to precache a model or material.
Used to precache a model or material.
<pre>
<pre>
Line 20: Line 20:
* Reference index for the model.
* Reference index for the model.


===PrecacheScriptSound()===
===PrecacheScriptSound===
Used to precache a sound script as declared in a sound script file.
Used to precache a sound script as declared in a sound script file.
<pre>
<pre>
Line 36: Line 36:




===PrecacheInstancedScene()===
===PrecacheInstancedScene===
Used to precache a VCD file.
Used to precache a VCD file.
<pre>
<pre>
Line 50: Line 50:




===UTIL_PrecacheOther()===
===UTIL_PrecacheOther===
Utility function that will call the <code>Precache()</code> 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.
Utility function that will call the <code>Precache()</code> 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.
<pre>
<pre>
Line 66: Line 66:
* None.
* None.


 
===UTIL_PrecacheDecal===
===UTIL_PrecacheDecal()===
Used to precache a decal.
Used to precache a decal.
<pre>
<pre>
Line 82: Line 81:
'''Return Value'''
'''Return Value'''
* Reference index for the decal model.
* Reference index for the decal model.
===More===
* IEngineSound::PrecacheSound
* IVEngineServer::PrecacheSentenceFile
* IVEngineServer::PrecacheDecal
* IVEngineServer::PrecacheGeneric
==Defines==
*PRECACHE_WEAPON_REGISTER
*CLIENTEFFECT_REGISTER_BEGIN

Revision as of 12:40, 17 July 2006

To provide a smooth loading of assets for a typical game session, it is important that the engine do 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.

Precache()

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 following functions:

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