You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.5 KiB
48 lines
1.5 KiB
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
//=============================================================================
|
||
|
//#include "studio.h"
|
||
|
#include "studio.h"
|
||
|
#include "datacache/imdlcache.h"
|
||
|
#include "datamodel/dmelementfactoryhelper.h"
|
||
|
#include "istudiorender.h"
|
||
|
#include "bone_setup.h"
|
||
|
#include "tier3/tier3.h"
|
||
|
|
||
|
// memdbgon must be the last include file in a .cpp file!!!
|
||
|
#include "tier0/memdbgon.h"
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// FIXME: This trashy glue code is really not acceptable. Figure out a way of making it unnecessary.
|
||
|
//-----------------------------------------------------------------------------
|
||
|
const studiohdr_t *studiohdr_t::FindModel( void **cache, char const *pModelName ) const
|
||
|
{
|
||
|
MDLHandle_t handle = g_pMDLCache->FindMDL( pModelName );
|
||
|
*cache = (void*)(uintp)handle;
|
||
|
return g_pMDLCache->GetStudioHdr( handle );
|
||
|
}
|
||
|
|
||
|
virtualmodel_t *studiohdr_t::GetVirtualModel( void ) const
|
||
|
{
|
||
|
return g_pMDLCache->GetVirtualModel( (MDLHandle_t)((int)virtualModel&0xffff) );
|
||
|
}
|
||
|
|
||
|
byte *studiohdr_t::GetAnimBlock( int i ) const
|
||
|
{
|
||
|
return g_pMDLCache->GetAnimBlock( (MDLHandle_t)((int)virtualModel&0xffff), i );
|
||
|
}
|
||
|
|
||
|
int studiohdr_t::GetAutoplayList( unsigned short **pOut ) const
|
||
|
{
|
||
|
return g_pMDLCache->GetAutoplayList( (MDLHandle_t)((int)virtualModel&0xffff), pOut );
|
||
|
}
|
||
|
|
||
|
const studiohdr_t *virtualgroup_t::GetStudioHdr( void ) const
|
||
|
{
|
||
|
return g_pMDLCache->GetStudioHdr( (MDLHandle_t)((int)cache&0xffff) );
|
||
|
}
|
||
|
|