UTIL EntitiesAlongRay: Difference between revisions
Jump to navigation
Jump to search
Stoopdapoop (talk | contribs) (Created page with 'This is a Utility function that when supplied a Ray_t will return an integer indicating the number of entities encountered along the ray, then will enumerate and place them i…') |
mNo edit summary |
||
(3 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
This is a | {{DISPLAYTITLE:UTIL_EntitiesAlongRay}} | ||
This is a [[UTIL]] [[function]] that when supplied a [[Ray_t]] will return an [[integer]] indicating the number of [[entity|entities]] encountered along the ray, then will enumerate and place them into an [[array]]. | |||
You can either specify an array, and the size of the array, and a mask for which encountered entities will be included in the array, or you can simply supply a [[Ray_t]] and | You can either specify an array, and the size of the array, and a mask for which encountered entities will be included in the array, or you can simply supply a [[Ray_t]] and a [[pointer]] to an instance of the [[CFlaggedEntitiesEnum]] class. | ||
== | == Usage == | ||
<source lang=cpp> | <source lang=cpp> | ||
int UTIL_EntitiesAlongRay( const Ray_t &ray, CFlaggedEntitiesEnum *pEnum ) | int UTIL_EntitiesAlongRay( const Ray_t &ray, CFlaggedEntitiesEnum *pEnum ) | ||
</source> | |||
<source lang=cpp> | |||
int UTIL_EntitiesAlongRay( CBaseEntity **pList, int listMax, const Ray_t &ray, int flagMask ) | int UTIL_EntitiesAlongRay( CBaseEntity **pList, int listMax, const Ray_t &ray, int flagMask ) | ||
</source> | </source> | ||
== Examples == | |||
== | |||
<source lang=cpp> | <source lang=cpp> | ||
int nCount = UTIL_EntitiesAlongRay( list, 1024, ray, FL_NPC | FL_CLIENT ); | |||
for ( int i = 0; i < nCount; i++ ) | |||
{ | |||
if ( !IsAttractiveTarget( list[i] ) ) | |||
continue; | |||
VectorSubtract( list[i]->WorldSpaceCenter(), vecStartPoint, vecDelta ); | |||
distance = VectorNormalize( vecDelta ); | |||
flDot = DotProduct( vecDelta, vecVelDir ); | |||
if ( flDot > flMaxDot ) | |||
{ | |||
if ( distance < flBestDist ) | |||
{ | |||
pBestTarget = list[i]; | |||
flBestDist = distance; | |||
} | } | ||
} | } | ||
} | |||
</source> | </source> | ||
[[Category:Programming]] | |||
[[Category:UTIL]] |
Latest revision as of 00:27, 5 December 2011
This is a UTIL function that when supplied a Ray_t will return an integer indicating the number of entities encountered along the ray, then will enumerate and place them into an array.
You can either specify an array, and the size of the array, and a mask for which encountered entities will be included in the array, or you can simply supply a Ray_t and a pointer to an instance of the CFlaggedEntitiesEnum class.
Usage
int UTIL_EntitiesAlongRay( const Ray_t &ray, CFlaggedEntitiesEnum *pEnum )
int UTIL_EntitiesAlongRay( CBaseEntity **pList, int listMax, const Ray_t &ray, int flagMask )
Examples
int nCount = UTIL_EntitiesAlongRay( list, 1024, ray, FL_NPC | FL_CLIENT );
for ( int i = 0; i < nCount; i++ )
{
if ( !IsAttractiveTarget( list[i] ) )
continue;
VectorSubtract( list[i]->WorldSpaceCenter(), vecStartPoint, vecDelta );
distance = VectorNormalize( vecDelta );
flDot = DotProduct( vecDelta, vecVelDir );
if ( flDot > flMaxDot )
{
if ( distance < flBestDist )
{
pBestTarget = list[i];
flBestDist = distance;
}
}
}