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.
58 lines
1.5 KiB
58 lines
1.5 KiB
/*** |
|
* |
|
* Copyright (c) 1996-2002, 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. |
|
* |
|
****/ |
|
//========================================================= |
|
// monsterstate.cpp - base class monster functions for |
|
// controlling core AI. |
|
//========================================================= |
|
|
|
#include "extdll.h" |
|
#include "util.h" |
|
#include "cbase.h" |
|
#include "nodes.h" |
|
#include "monsters.h" |
|
#include "animation.h" |
|
#include "saverestore.h" |
|
#include "soundent.h" |
|
|
|
//========================================================= |
|
// SetState |
|
//========================================================= |
|
void CBaseMonster::SetState( MONSTERSTATE State ) |
|
{ |
|
/* |
|
if( State != m_MonsterState ) |
|
{ |
|
ALERT( at_aiconsole, "State Changed to %d\n", State ); |
|
} |
|
*/ |
|
switch( State ) |
|
{ |
|
|
|
// Drop enemy pointers when going to idle |
|
case MONSTERSTATE_IDLE: |
|
if( m_hEnemy != 0 ) |
|
{ |
|
m_hEnemy = NULL;// not allowed to have an enemy anymore. |
|
ALERT( at_aiconsole, "Stripped\n" ); |
|
} |
|
break; |
|
default: |
|
break; |
|
} |
|
|
|
m_MonsterState = State; |
|
m_IdealMonsterState = State; |
|
} |
|
|
|
|