mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-06 08:35:05 +00:00
game: backport GetResponsePtr from 2007 branch
This commit is contained in:
parent
df71b52d11
commit
d330813654
@ -280,6 +280,14 @@ void AI_Response::Describe()
|
|||||||
DevMsg( "response %s = '%s'\n", DescribeResponse( (ResponseType_t)m_Type ), m_szResponseName );
|
DevMsg( "response %s = '%s'\n", DescribeResponse( (ResponseType_t)m_Type ), m_szResponseName );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
// Purpose:
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
const char * AI_Response::GetResponsePtr() const
|
||||||
|
{
|
||||||
|
return m_szResponseName;
|
||||||
|
}
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// Purpose:
|
// Purpose:
|
||||||
// Output : char const
|
// Output : char const
|
||||||
|
@ -182,20 +182,21 @@ public:
|
|||||||
|
|
||||||
void GetName( char *buf, size_t buflen ) const;
|
void GetName( char *buf, size_t buflen ) const;
|
||||||
void GetResponse( char *buf, size_t buflen ) const;
|
void GetResponse( char *buf, size_t buflen ) const;
|
||||||
const AI_ResponseParams *GetParams() const { return &m_Params; }
|
const AI_ResponseParams *GetParams() const { return &m_Params; }
|
||||||
ResponseType_t GetType() const { return (ResponseType_t)m_Type; }
|
const char * GetResponsePtr() const;
|
||||||
soundlevel_t GetSoundLevel() const;
|
ResponseType_t GetType() const { return (ResponseType_t)m_Type; }
|
||||||
|
soundlevel_t GetSoundLevel() const;
|
||||||
float GetRespeakDelay() const;
|
float GetRespeakDelay() const;
|
||||||
float GetWeaponDelay() const;
|
float GetWeaponDelay() const;
|
||||||
bool GetSpeakOnce() const;
|
bool GetSpeakOnce() const;
|
||||||
bool ShouldntUseScene( ) const;
|
bool ShouldntUseScene( ) const;
|
||||||
bool ShouldBreakOnNonIdle( void ) const;
|
bool ShouldBreakOnNonIdle( void ) const;
|
||||||
int GetOdds() const;
|
int GetOdds() const;
|
||||||
float GetDelay() const;
|
float GetDelay() const;
|
||||||
float GetPreDelay() const;
|
float GetPreDelay() const;
|
||||||
|
|
||||||
void SetContext( const char *context );
|
void SetContext( const char *context );
|
||||||
const char * GetContext( void ) const { return m_szContext; }
|
const char * GetContext( void ) const { return m_szContext; }
|
||||||
|
|
||||||
bool IsApplyContextToWorld( void ) { return m_bApplyContextToWorld; }
|
bool IsApplyContextToWorld( void ) { return m_bApplyContextToWorld; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user