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.
80 lines
2.1 KiB
80 lines
2.1 KiB
8 years ago
|
/***
|
||
|
*
|
||
|
* Copyright (c) 1996-2001, Valve LLC. All rights reserved.
|
||
|
*
|
||
|
* This product contains software technology licensed from Id
|
||
|
* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc.
|
||
|
* All Rights Reserved.
|
||
|
*
|
||
|
* This source code contains proprietary and confidential information of
|
||
|
* Valve LLC and its suppliers. Access to this code is restricted to
|
||
|
* persons who have executed a written SDK license with Valve. Any access,
|
||
|
* use or distribution of this code by or to any unlicensed person is illegal.
|
||
|
*
|
||
|
****/
|
||
|
|
||
|
#ifndef BARNEY_H
|
||
|
#define BARNEY_H
|
||
|
|
||
|
#include "talkmonster.h"
|
||
|
|
||
|
class CBarney : public CTalkMonster
|
||
|
{
|
||
|
public:
|
||
|
void Spawn(void);
|
||
|
void Precache(void);
|
||
|
void SetYawSpeed(void);
|
||
|
int ISoundMask(void);
|
||
|
void BarneyFirePistol(void);
|
||
|
void AlertSound(void);
|
||
|
int Classify(void);
|
||
|
void HandleAnimEvent(MonsterEvent_t *pEvent);
|
||
|
|
||
|
void RunTask(Task_t *pTask);
|
||
|
void StartTask(Task_t *pTask);
|
||
|
virtual int ObjectCaps(void) { return CTalkMonster::ObjectCaps() | FCAP_IMPULSE_USE; }
|
||
|
int TakeDamage(entvars_t* pevInflictor, entvars_t* pevAttacker, float flDamage, int bitsDamageType);
|
||
|
BOOL CheckRangeAttack1(float flDot, float flDist);
|
||
|
|
||
|
void DeclineFollowing(void);
|
||
|
|
||
|
// Override these to set behavior
|
||
|
Schedule_t *GetScheduleOfType(int Type);
|
||
|
Schedule_t *GetSchedule(void);
|
||
|
MONSTERSTATE GetIdealState(void);
|
||
|
|
||
|
void DeathSound(void);
|
||
|
void PainSound(void);
|
||
|
|
||
|
void TalkInit(void);
|
||
|
|
||
|
void TraceAttack(entvars_t *pevAttacker, float flDamage, Vector vecDir, TraceResult *ptr, int bitsDamageType);
|
||
|
void Killed(entvars_t *pevAttacker, int iGib);
|
||
|
|
||
|
virtual int Save(CSave &save);
|
||
|
virtual int Restore(CRestore &restore);
|
||
|
static TYPEDESCRIPTION m_SaveData[];
|
||
|
|
||
|
BOOL m_fGunDrawn;
|
||
|
float m_painTime;
|
||
|
float m_checkAttackTime;
|
||
|
BOOL m_lastAttackCheck;
|
||
|
|
||
|
// UNDONE: What is this for? It isn't used?
|
||
|
float m_flPlayerDamage;// how much pain has the player inflicted on me?
|
||
|
|
||
|
CUSTOM_SCHEDULES;
|
||
|
|
||
|
void IdleRespond(void);
|
||
|
int FOkToSpeak(void);
|
||
|
|
||
|
BOOL IsZombieCop() const;
|
||
|
BOOL HasKevlar() const;
|
||
|
|
||
|
void FixupBarneySkin( BOOL bZombieCop );
|
||
|
|
||
|
int m_iBarneyFlags;
|
||
|
};
|
||
|
|
||
|
#endif // BARNEY_H
|