2007-12-20 22:43:23 +00:00
# include <stdlib.h>
2007-12-20 20:37:06 +00:00
# include "templates.h"
# include "m_random.h"
# include "i_system.h"
# include "doomdef.h"
# include "p_local.h"
# include "p_lnspec.h"
# include "s_sound.h"
# include "g_game.h"
# include "doomstat.h"
# include "r_state.h"
# include "c_cvars.h"
# include "p_enemy.h"
# include "a_sharedglobal.h"
# include "a_action.h"
# include "thingdef/thingdef.h"
2008-09-14 23:54:38 +00:00
# include "g_level.h"
2007-12-20 20:37:06 +00:00
# include "gi.h"
bool P_LookForMonsters ( AActor * actor ) ;
static FRandom pr_look2 ( " LookyLookyEx " ) ;
static FRandom pr_look3 ( " IGotHookyEx " ) ;
static FRandom pr_lookforplayers ( " LookForPlayersEx " ) ;
2007-12-23 21:56:46 +00:00
static FRandom pr_skiptarget ( " SkipTargetEx " ) ;
2007-12-20 20:37:06 +00:00
// [KS] *** Start additions by me - p_enemy.cpp ***
2007-12-23 21:56:46 +00:00
// LookForTIDinBlockEx
// LookForEnemiesInBlockEx
2007-12-20 20:37:06 +00:00
// P_NewLookTID (copied from P_LookForTID)
// P_NewLookPlayers (copied from P_LookForPlayers)
// Takes FOV and sight distances into account when acquiring a target.
2007-12-23 21:56:46 +00:00
// TODO: Not sure if using actor properties to pass parameters around indirectly is such a good idea. If there's a cleaner method, do it that way instead.
// ~Kate S. Last updated on 12/23/2007
AActor * LookForTIDinBlockEx ( AActor * lookee , int index )
{
FBlockNode * block ;
AActor * link ;
AActor * other ;
fixed_t dist ;
angle_t an ;
for ( block = blocklinks [ index ] ; block ! = NULL ; block = block - > NextActor )
{
link = block - > Me ;
if ( ! ( link - > flags & MF_SHOOTABLE ) )
continue ; // not shootable (observer or dead)
if ( link = = lookee )
continue ;
if ( link - > health < = 0 )
continue ; // dead
if ( link - > flags2 & MF2_DORMANT )
continue ; // don't target dormant things
if ( link - > tid = = lookee - > TIDtoHate )
{
other = link ;
}
else if ( link - > target ! = NULL & & link - > target - > tid = = lookee - > TIDtoHate )
{
other = link - > target ;
if ( ! ( other - > flags & MF_SHOOTABLE ) | |
other - > health < = 0 | |
( other - > flags2 & MF2_DORMANT ) )
{
continue ;
}
}
else
{
continue ;
}
if ( ! ( lookee - > flags3 & MF3_NOSIGHTCHECK ) )
{
if ( ! P_CheckSight ( lookee , other , 2 ) )
continue ; // out of sight
dist = P_AproxDistance ( other - > x - lookee - > x ,
other - > y - lookee - > y ) ;
if ( lookee - > LookExMaxDist & & dist > lookee - > LookExMaxDist )
continue ; // [KS] too far
if ( lookee - > LookExMinDist & & dist < lookee - > LookExMinDist )
continue ; // [KS] too close
if ( lookee - > LookExFOV & & lookee - > LookExFOV < ANGLE_MAX )
{
an = R_PointToAngle2 ( lookee - > x ,
lookee - > y ,
other - > x ,
other - > y )
- lookee - > angle ;
if ( an > ( lookee - > LookExFOV / 2 ) & & an < ( ANGLE_MAX - ( lookee - > LookExFOV / 2 ) ) )
{
// if real close, react anyway
// [KS] but respect minimum distance rules
if ( lookee - > LookExMinDist | | dist > MELEERANGE )
continue ; // outside of fov
}
}
else
{
if ( ! ( lookee - > flags4 & MF4_LOOKALLAROUND ) | | ( lookee - > LookExFOV > = ANGLE_MAX ) ) // Just in case angle_t doesn't clamp stuff, because I can't be too sure.
{
an = R_PointToAngle2 ( lookee - > x ,
lookee - > y ,
other - > x ,
other - > y )
- lookee - > angle ;
if ( an > ANG90 & & an < ANG270 )
{
// if real close, react anyway
// [KS] but respect minimum distance rules
if ( lookee - > LookExMinDist | | dist > MELEERANGE )
continue ; // behind back
}
}
}
}
return other ;
}
return NULL ;
}
AActor * LookForEnemiesInBlockEx ( AActor * lookee , int index )
{
FBlockNode * block ;
AActor * link ;
AActor * other ;
fixed_t dist ;
angle_t an ;
for ( block = blocklinks [ index ] ; block ! = NULL ; block = block - > NextActor )
{
link = block - > Me ;
if ( ! ( link - > flags & MF_SHOOTABLE ) )
continue ; // not shootable (observer or dead)
if ( link = = lookee )
continue ;
if ( link - > health < = 0 )
continue ; // dead
if ( link - > flags2 & MF2_DORMANT )
continue ; // don't target dormant things
if ( ! ( link - > flags3 & MF3_ISMONSTER ) )
continue ; // don't target it if it isn't a monster (could be a barrel)
other = NULL ;
if ( link - > flags & MF_FRIENDLY )
{
if ( deathmatch & &
lookee - > FriendPlayer ! = 0 & & link - > FriendPlayer ! = 0 & &
lookee - > FriendPlayer ! = link - > FriendPlayer )
{
// This is somebody else's friend, so go after it
other = link ;
}
else if ( link - > target ! = NULL & & ! ( link - > target - > flags & MF_FRIENDLY ) )
{
other = link - > target ;
if ( ! ( other - > flags & MF_SHOOTABLE ) | |
other - > health < = 0 | |
( other - > flags2 & MF2_DORMANT ) )
{
other = NULL ; ;
}
}
}
else
{
other = link ;
}
// [MBF] If the monster is already engaged in a one-on-one attack
// with a healthy friend, don't attack around 60% the time.
// [GrafZahl] This prevents friendlies from attacking all the same
// target.
if ( other )
{
AActor * targ = other - > target ;
if ( targ & & targ - > target = = other & & pr_skiptarget ( ) > 100 & & lookee - > IsFriend ( targ ) & &
2009-07-04 18:17:44 +00:00
targ - > health * 2 > = targ - > SpawnHealth ( ) )
2007-12-23 21:56:46 +00:00
{
continue ;
}
}
// [KS] Hey, shouldn't there be a check for MF3_NOSIGHTCHECK here?
if ( other = = NULL | | ! P_CheckSight ( lookee , other , 2 ) )
continue ; // out of sight
dist = P_AproxDistance ( other - > x - lookee - > x ,
other - > y - lookee - > y ) ;
if ( lookee - > LookExMaxDist & & dist > lookee - > LookExMaxDist )
continue ; // [KS] too far
if ( lookee - > LookExMinDist & & dist < lookee - > LookExMinDist )
continue ; // [KS] too close
if ( lookee - > LookExFOV & & lookee - > LookExFOV < ANGLE_MAX )
{
an = R_PointToAngle2 ( lookee - > x ,
lookee - > y ,
other - > x ,
other - > y )
- lookee - > angle ;
if ( an > ( lookee - > LookExFOV / 2 ) & & an < ( ANGLE_MAX - ( lookee - > LookExFOV / 2 ) ) )
{
// if real close, react anyway
// [KS] but respect minimum distance rules
if ( lookee - > LookExMinDist | | dist > MELEERANGE )
continue ; // outside of fov
}
}
else
{
if ( ! ( lookee - > flags4 & MF4_LOOKALLAROUND ) | | ( lookee - > LookExFOV > = ANGLE_MAX ) ) // Just in case angle_t doesn't clamp stuff, because I can't be too sure.
{
an = R_PointToAngle2 ( lookee - > x ,
lookee - > y ,
other - > x ,
other - > y )
- lookee - > angle ;
if ( an > ANG90 & & an < ANG270 )
{
// if real close, react anyway
// [KS] but respect minimum distance rules
if ( lookee - > LookExMinDist | | dist > MELEERANGE )
continue ; // behind back
}
}
}
return other ;
}
return NULL ;
}
2007-12-20 20:37:06 +00:00
bool P_NewLookTID ( AActor * actor , angle_t fov , fixed_t mindist , fixed_t maxdist , bool chasegoal )
{
AActor * other ;
2007-12-23 21:56:46 +00:00
actor - > LookExMinDist = mindist ;
actor - > LookExMaxDist = maxdist ;
actor - > LookExFOV = fov ;
other = P_BlockmapSearch ( actor , 0 , LookForTIDinBlockEx ) ;
2007-12-20 20:37:06 +00:00
bool reachedend = false ;
fixed_t dist ;
angle_t an ;
2007-12-23 21:56:46 +00:00
if ( other ! = NULL )
{
if ( ! ( actor - > flags3 & MF3_NOSIGHTCHECK ) )
{
dist = P_AproxDistance ( other - > x - actor - > x ,
other - > y - actor - > y ) ;
if ( maxdist & & dist > maxdist )
{
other = NULL ; // [KS] too far
goto endcheck ;
}
if ( mindist & & dist < mindist )
{
other = NULL ; // [KS] too close
goto endcheck ;
}
if ( fov & & fov < ANGLE_MAX )
{
an = R_PointToAngle2 ( actor - > x ,
actor - > y ,
other - > x ,
other - > y )
- actor - > angle ;
if ( an > ( fov / 2 ) & & an < ( ANGLE_MAX - ( fov / 2 ) ) )
{
// if real close, react anyway
// [KS] but respect minimum distance rules
if ( mindist | | dist > MELEERANGE )
{
other = NULL ; // outside of fov
goto endcheck ;
}
}
}
else
{
if ( ! ( ( actor - > flags4 & MF4_LOOKALLAROUND ) | | ( fov > = ANGLE_MAX ) ) ) // Just in case angle_t doesn't clamp stuff, because I can't be too sure.
{
an = R_PointToAngle2 ( actor - > x ,
actor - > y ,
other - > x ,
other - > y )
- actor - > angle ;
if ( an > ANG90 & & an < ANG270 )
{
// if real close, react anyway
// [KS] but respect minimum distance rules
if ( mindist | | dist > MELEERANGE )
{
other = NULL ; // behind back
goto endcheck ;
}
}
}
}
}
}
endcheck :
2007-12-20 20:37:06 +00:00
if ( other ! = NULL )
{
if ( actor - > goal & & actor - > target = = actor - > goal )
actor - > reactiontime = 0 ;
actor - > target = other ;
2008-03-12 02:56:11 +00:00
actor - > LastLookActor = other ;
2007-12-20 20:37:06 +00:00
return true ;
}
// The actor's TID could change because of death or because of
// Thing_ChangeTID. If it's not what we expect, then don't use
// it as a base for the iterator.
2008-03-12 02:56:11 +00:00
if ( actor - > LastLookActor ! = NULL & &
actor - > LastLookActor - > tid ! = actor - > TIDtoHate )
2007-12-20 20:37:06 +00:00
{
2008-03-12 02:56:11 +00:00
actor - > LastLookActor = NULL ;
2007-12-20 20:37:06 +00:00
}
2008-03-12 02:56:11 +00:00
FActorIterator iterator ( actor - > TIDtoHate , actor - > LastLookActor ) ;
2007-12-20 20:37:06 +00:00
int c = ( pr_look3 ( ) & 31 ) + 7 ; // Look for between 7 and 38 hatees at a time
2008-03-12 02:56:11 +00:00
while ( ( other = iterator . Next ( ) ) ! = actor - > LastLookActor )
2007-12-20 20:37:06 +00:00
{
if ( other = = NULL )
{
if ( reachedend )
{
// we have cycled through the entire list at least once
// so let's abort because even if we continue nothing can
// be found.
break ;
}
reachedend = true ;
continue ;
}
if ( ! ( other - > flags & MF_SHOOTABLE ) )
continue ; // not shootable (observer or dead)
if ( other = = actor )
continue ; // don't hate self
if ( other - > health < = 0 )
continue ; // dead
if ( other - > flags2 & MF2_DORMANT )
continue ; // don't target dormant things
if ( - - c = = 0 )
break ;
if ( ! ( actor - > flags3 & MF3_NOSIGHTCHECK ) )
{
if ( ! P_CheckSight ( actor , other , 2 ) )
continue ; // out of sight
dist = P_AproxDistance ( other - > x - actor - > x ,
other - > y - actor - > y ) ;
if ( maxdist & & dist > maxdist )
continue ; // [KS] too far
if ( mindist & & dist < mindist )
continue ; // [KS] too close
2007-12-23 21:56:46 +00:00
if ( fov & & fov < ANGLE_MAX )
2007-12-20 20:37:06 +00:00
{
an = R_PointToAngle2 ( actor - > x ,
actor - > y ,
other - > x ,
other - > y )
- actor - > angle ;
if ( an > ( fov / 2 ) & & an < ( ANGLE_MAX - ( fov / 2 ) ) )
{
// if real close, react anyway
// [KS] but respect minimum distance rules
if ( mindist | | dist > MELEERANGE )
continue ; // outside of fov
}
}
else
{
2007-12-23 21:56:46 +00:00
if ( ! ( ( actor - > flags4 & MF4_LOOKALLAROUND ) | | ( fov > = ANGLE_MAX ) ) ) // Just in case angle_t doesn't clamp stuff, because I can't be too sure.
2007-12-20 20:37:06 +00:00
{
2007-12-23 21:56:46 +00:00
an = R_PointToAngle2 ( actor - > x ,
actor - > y ,
other - > x ,
other - > y )
- actor - > angle ;
if ( an > ANG90 & & an < ANG270 )
{
// if real close, react anyway
// [KS] but respect minimum distance rules
if ( mindist | | dist > MELEERANGE )
continue ; // behind back
}
2007-12-20 20:37:06 +00:00
}
}
}
// [RH] Need to be sure the reactiontime is 0 if the monster is
// leaving its goal to go after something else.
if ( actor - > goal & & actor - > target = = actor - > goal )
actor - > reactiontime = 0 ;
actor - > target = other ;
2008-03-12 02:56:11 +00:00
actor - > LastLookActor = other ;
2007-12-20 20:37:06 +00:00
return true ;
}
2008-03-12 02:56:11 +00:00
actor - > LastLookActor = other ;
2007-12-20 20:37:06 +00:00
if ( actor - > target = = NULL )
{
// [RH] use goal as target
if ( actor - > goal ! = NULL & & chasegoal )
{
actor - > target = actor - > goal ;
return true ;
}
// Use last known enemy if no hatee sighted -- killough 2/15/98:
if ( actor - > lastenemy ! = NULL & & actor - > lastenemy - > health > 0 )
{
if ( ! actor - > IsFriend ( actor - > lastenemy ) )
{
actor - > target = actor - > lastenemy ;
actor - > lastenemy = NULL ;
return true ;
}
else
{
actor - > lastenemy = NULL ;
}
}
}
return false ;
}
2007-12-23 21:56:46 +00:00
bool P_NewLookEnemies ( AActor * actor , angle_t fov , fixed_t mindist , fixed_t maxdist , bool chasegoal )
{
AActor * other ;
actor - > LookExMinDist = mindist ;
actor - > LookExMaxDist = maxdist ;
actor - > LookExFOV = fov ;
other = P_BlockmapSearch ( actor , 10 , LookForEnemiesInBlockEx ) ;
if ( other ! = NULL )
{
if ( actor - > goal & & actor - > target = = actor - > goal )
actor - > reactiontime = 0 ;
actor - > target = other ;
// actor->LastLook.Actor = other;
return true ;
}
if ( actor - > target = = NULL )
{
// [RH] use goal as target
if ( actor - > goal ! = NULL )
{
actor - > target = actor - > goal ;
return true ;
}
// Use last known enemy if no hatee sighted -- killough 2/15/98:
if ( actor - > lastenemy ! = NULL & & actor - > lastenemy - > health > 0 )
{
if ( ! actor - > IsFriend ( actor - > lastenemy ) )
{
actor - > target = actor - > lastenemy ;
actor - > lastenemy = NULL ;
return true ;
}
else
{
actor - > lastenemy = NULL ;
}
}
}
return false ;
}
2007-12-20 20:37:06 +00:00
bool P_NewLookPlayers ( AActor * actor , angle_t fov , fixed_t mindist , fixed_t maxdist , bool chasegoal )
{
int c ;
int stop ;
int pnum ;
player_t * player ;
angle_t an ;
fixed_t dist ;
if ( actor - > TIDtoHate ! = 0 )
{
if ( P_NewLookTID ( actor , fov , mindist , maxdist , chasegoal ) )
{
return true ;
}
if ( ! ( actor - > flags3 & MF3_HUNTPLAYERS ) )
{
return false ;
}
}
else if ( actor - > flags & MF_FRIENDLY )
{
2009-05-02 09:14:01 +00:00
if ( ! deathmatch ) // [SP] If you don't see any enemies in deathmatch, look for players.
return P_NewLookEnemies ( actor , fov , mindist , maxdist , chasegoal ) ;
else if ( P_NewLookEnemies ( actor , fov , mindist , maxdist , chasegoal ) )
return true ;
} // [SP] if false, and in deathmatch, intentional fall-through
2007-12-20 20:37:06 +00:00
2008-08-30 19:44:19 +00:00
if ( ! ( gameinfo . gametype & ( GAME_DoomStrifeChex ) ) & &
2007-12-20 20:37:06 +00:00
! multiplayer & &
players [ 0 ] . health < = 0 )
{ // Single player game and player is dead; look for monsters
return P_LookForMonsters ( actor ) ;
}
c = 0 ;
if ( actor - > TIDtoHate ! = 0 )
{
pnum = pr_look2 ( ) & ( MAXPLAYERS - 1 ) ;
}
else
{
2008-03-12 02:56:11 +00:00
pnum = actor - > LastLookPlayerNumber ;
2007-12-20 20:37:06 +00:00
}
stop = ( pnum - 1 ) & ( MAXPLAYERS - 1 ) ;
for ( ; ; )
{
pnum = ( pnum + 1 ) & ( MAXPLAYERS - 1 ) ;
if ( ! playeringame [ pnum ] )
continue ;
if ( actor - > TIDtoHate = = 0 )
{
2008-03-12 02:56:11 +00:00
actor - > LastLookPlayerNumber = pnum ;
2007-12-20 20:37:06 +00:00
}
if ( + + c = = MAXPLAYERS - 1 | | pnum = = stop )
{
// done looking
if ( actor - > target = = NULL )
{
// [RH] use goal as target
// [KS] ...unless we're ignoring goals and we don't already have one
if ( actor - > goal ! = NULL & & chasegoal )
{
actor - > target = actor - > goal ;
return true ;
}
// Use last known enemy if no players sighted -- killough 2/15/98:
if ( actor - > lastenemy ! = NULL & & actor - > lastenemy - > health > 0 )
{
if ( ! actor - > IsFriend ( actor - > lastenemy ) )
{
actor - > target = actor - > lastenemy ;
actor - > lastenemy = NULL ;
return true ;
}
else
{
actor - > lastenemy = NULL ;
}
}
}
return actor - > target = = actor - > goal & & actor - > goal ! = NULL ;
}
player = & players [ pnum ] ;
if ( ! ( player - > mo - > flags & MF_SHOOTABLE ) )
continue ; // not shootable (observer or dead)
if ( player - > cheats & CF_NOTARGET )
continue ; // no target
if ( player - > health < = 0 )
continue ; // dead
if ( ! P_CheckSight ( actor , player - > mo , 2 ) )
continue ; // out of sight
dist = P_AproxDistance ( player - > mo - > x - actor - > x ,
player - > mo - > y - actor - > y ) ;
if ( maxdist & & dist > maxdist )
continue ; // [KS] too far
if ( mindist & & dist < mindist )
continue ; // [KS] too close
2009-05-02 09:14:01 +00:00
// [SP] Deathmatch fixes - if we have MF_FRIENDLY we're definitely in deathmatch
// We're going to ignore our master, but go after his enemies.
if ( actor - > flags & MF_FRIENDLY )
{
if ( actor - > FriendPlayer = = 0 )
continue ; // I have no friends, I will ignore players.
if ( actor - > FriendPlayer = = player - > mo - > FriendPlayer )
continue ; // This is my master.
}
2007-12-20 20:37:06 +00:00
if ( fov )
{
an = R_PointToAngle2 ( actor - > x ,
actor - > y ,
player - > mo - > x ,
player - > mo - > y )
- actor - > angle ;
if ( an > ( fov / 2 ) & & an < ( ANGLE_MAX - ( fov / 2 ) ) )
{
// if real close, react anyway
// [KS] but respect minimum distance rules
if ( mindist | | dist > MELEERANGE )
continue ; // outside of fov
}
}
else
{
2007-12-23 21:56:46 +00:00
if ( ! ( ( actor - > flags4 & MF4_LOOKALLAROUND ) | | ( fov > = ANGLE_MAX ) ) )
2007-12-20 20:37:06 +00:00
{
2007-12-23 21:56:46 +00:00
an = R_PointToAngle2 ( actor - > x ,
actor - > y ,
player - > mo - > x ,
player - > mo - > y )
- actor - > angle ;
if ( an > ANG90 & & an < ANG270 )
{
// if real close, react anyway
// [KS] but respect minimum distance rules
if ( mindist | | dist > MELEERANGE )
continue ; // behind back
}
2007-12-20 20:37:06 +00:00
}
}
if ( ( player - > mo - > flags & MF_SHADOW & & ! ( i_compatflags & COMPATF_INVISIBILITY ) ) | |
player - > mo - > flags3 & MF3_GHOST )
{
if ( ( P_AproxDistance ( player - > mo - > x - actor - > x ,
player - > mo - > y - actor - > y ) > 2 * MELEERANGE )
2009-06-30 20:57:51 +00:00
& & P_AproxDistance ( player - > mo - > velx , player - > mo - > vely )
2007-12-20 20:37:06 +00:00
< 5 * FRACUNIT )
{ // Player is sneaking - can't detect
return false ;
}
if ( pr_lookforplayers ( ) < 225 )
{ // Player isn't sneaking, but still didn't detect
return false ;
}
}
// [RH] Need to be sure the reactiontime is 0 if the monster is
// leaving its goal to go after a player.
if ( actor - > goal & & actor - > target = = actor - > goal )
actor - > reactiontime = 0 ;
actor - > target = player - > mo ;
return true ;
}
}
//
// ACTION ROUTINES
//
//
// A_Look
// Stay in state until a player is sighted.
// [RH] Will also leave state to move to goal.
//
// A_LookEx (int flags, fixed minseedist, fixed maxseedist, fixed maxheardist, fixed fov, state wakestate)
// [KS] Borrowed the A_Look code to make a parameterized version.
//
enum LO_Flags
{
LOF_NOSIGHTCHECK = 1 ,
LOF_NOSOUNDCHECK = 2 ,
LOF_DONTCHASEGOAL = 4 ,
LOF_NOSEESOUND = 8 ,
LOF_FULLVOLSEESOUND = 16 ,
} ;
2008-08-12 14:30:07 +00:00
DEFINE_ACTION_FUNCTION_PARAMS ( AActor , A_LookEx )
2007-12-20 20:37:06 +00:00
{
2008-08-13 22:54:24 +00:00
ACTION_PARAM_START ( 6 ) ;
ACTION_PARAM_INT ( flags , 0 ) ;
ACTION_PARAM_FIXED ( minseedist , 1 ) ;
ACTION_PARAM_FIXED ( maxseedist , 2 ) ;
ACTION_PARAM_FIXED ( maxheardist , 3 ) ;
ACTION_PARAM_ANGLE ( fov , 4 ) ;
2008-10-25 17:38:00 +00:00
ACTION_PARAM_STATE ( seestate , 5 ) ;
2007-12-20 20:37:06 +00:00
AActor * targ = NULL ; // Shuts up gcc
fixed_t dist ;
2009-02-22 10:25:12 +00:00
if ( self - > flags5 & MF5_INCONVERSATION )
return ;
2007-12-20 20:37:06 +00:00
// [RH] Set goal now if appropriate
2008-08-10 20:48:55 +00:00
if ( self - > special = = Thing_SetGoal & & self - > args [ 0 ] = = 0 )
2007-12-20 20:37:06 +00:00
{
2008-08-10 20:48:55 +00:00
NActorIterator iterator ( NAME_PatrolPoint , self - > args [ 1 ] ) ;
self - > special = 0 ;
self - > goal = iterator . Next ( ) ;
self - > reactiontime = self - > args [ 2 ] * TICRATE + level . maptime ;
if ( self - > args [ 3 ] = = 0 ) self - > flags5 & = ~ MF5_CHASEGOAL ;
else self - > flags5 | = MF5_CHASEGOAL ;
2007-12-20 20:37:06 +00:00
}
2008-08-10 20:48:55 +00:00
self - > threshold = 0 ; // any shot will wake up
2007-12-20 20:37:06 +00:00
2008-08-10 20:48:55 +00:00
if ( self - > TIDtoHate ! = 0 )
2007-12-20 20:37:06 +00:00
{
2008-08-10 20:48:55 +00:00
targ = self - > target ;
2007-12-20 20:37:06 +00:00
}
else
{
if ( ! ( flags & LOF_NOSOUNDCHECK ) )
{
2008-08-10 20:48:55 +00:00
targ = self - > LastHeard ;
2007-12-20 20:37:06 +00:00
if ( targ ! = NULL )
{
// [RH] If the soundtarget is dead, don't chase it
if ( targ - > health < = 0 )
{
targ = NULL ;
}
2007-12-23 21:56:46 +00:00
else
2007-12-20 20:37:06 +00:00
{
2008-08-10 20:48:55 +00:00
dist = P_AproxDistance ( targ - > x - self - > x ,
targ - > y - self - > y ) ;
2007-12-23 21:56:46 +00:00
// [KS] If the target is too far away, don't respond to the sound.
if ( maxheardist & & dist > maxheardist )
{
targ = NULL ;
2008-08-10 20:48:55 +00:00
self - > LastHeard = NULL ;
2007-12-23 21:56:46 +00:00
}
2007-12-20 20:37:06 +00:00
}
}
if ( targ & & targ - > player & & ( targ - > player - > cheats & CF_NOTARGET ) )
{
return ;
}
}
}
// [RH] Andy Baker's stealth monsters
2008-08-10 20:48:55 +00:00
if ( self - > flags & MF_STEALTH )
2007-12-20 20:37:06 +00:00
{
2008-08-10 20:48:55 +00:00
self - > visdir = - 1 ;
2007-12-20 20:37:06 +00:00
}
if ( targ & & ( targ - > flags & MF_SHOOTABLE ) )
{
2008-08-10 20:48:55 +00:00
if ( self - > IsFriend ( targ ) ) // be a little more precise!
2007-12-20 20:37:06 +00:00
{
2008-08-10 20:48:55 +00:00
if ( ! ( self - > flags4 & MF4_STANDSTILL ) )
2007-12-20 20:37:06 +00:00
{
2007-12-23 21:56:46 +00:00
if ( ! ( flags & LOF_NOSIGHTCHECK ) )
{
// If we find a valid target here, the wandering logic should *not*
// be activated! If would cause the seestate to be set twice.
2008-08-10 20:48:55 +00:00
if ( P_NewLookPlayers ( self , fov , minseedist , maxseedist , ! ( flags & LOF_DONTCHASEGOAL ) ) )
2007-12-23 21:56:46 +00:00
goto seeyou ;
}
2007-12-20 20:37:06 +00:00
2008-08-10 20:48:55 +00:00
// Let the self wander around aimlessly looking for a fight
if ( self - > SeeState ! = NULL )
2007-12-20 20:37:06 +00:00
{
2008-08-10 20:48:55 +00:00
if ( ! ( self - > flags & MF_INCHASE ) )
2007-12-20 20:37:06 +00:00
{
2007-12-23 21:56:46 +00:00
if ( seestate )
{
2008-08-10 20:48:55 +00:00
self - > SetState ( seestate ) ;
2007-12-23 21:56:46 +00:00
}
else
{
2008-08-10 20:48:55 +00:00
self - > SetState ( self - > SeeState ) ;
2007-12-23 21:56:46 +00:00
}
2007-12-20 20:37:06 +00:00
}
}
2007-12-23 21:56:46 +00:00
else
{
2008-08-10 22:48:37 +00:00
CALL_ACTION ( A_Wander , self ) ;
2007-12-23 21:56:46 +00:00
}
2007-12-20 20:37:06 +00:00
}
}
else
{
2008-08-10 20:48:55 +00:00
self - > target = targ ; //We already have a target?
2007-12-20 20:37:06 +00:00
2007-12-23 21:56:46 +00:00
if ( targ ! = NULL )
2007-12-20 20:37:06 +00:00
{
2008-08-10 20:48:55 +00:00
if ( self - > flags & MF_AMBUSH )
2007-12-20 20:37:06 +00:00
{
2008-08-10 20:48:55 +00:00
dist = P_AproxDistance ( targ - > x - self - > x ,
targ - > y - self - > y ) ;
if ( P_CheckSight ( self , self - > target , 2 ) & &
2007-12-23 21:56:46 +00:00
( ! minseedist | | dist > minseedist ) & &
( ! maxseedist | | dist < maxseedist ) )
{
goto seeyou ;
}
2007-12-20 20:37:06 +00:00
}
2007-12-23 21:56:46 +00:00
else
goto seeyou ;
2007-12-20 20:37:06 +00:00
}
}
}
if ( ! ( flags & LOF_NOSIGHTCHECK ) )
{
2008-08-10 20:48:55 +00:00
if ( ! P_NewLookPlayers ( self , fov , minseedist , maxseedist , ! ( flags & LOF_DONTCHASEGOAL ) ) )
2007-12-20 20:37:06 +00:00
return ;
}
else
{
return ;
}
// go into chase state
seeyou :
// [RH] Don't start chasing after a goal if it isn't time yet.
2008-08-10 20:48:55 +00:00
if ( self - > target = = self - > goal )
2007-12-20 20:37:06 +00:00
{
2008-08-10 20:48:55 +00:00
if ( self - > reactiontime > level . maptime )
self - > target = NULL ;
2007-12-20 20:37:06 +00:00
}
2008-08-10 20:48:55 +00:00
else if ( self - > SeeSound & & ! ( flags & LOF_NOSEESOUND ) )
2007-12-20 20:37:06 +00:00
{
if ( flags & LOF_FULLVOLSEESOUND )
{ // full volume
2008-08-10 20:48:55 +00:00
S_Sound ( self , CHAN_VOICE , self - > SeeSound , 1 , ATTN_NONE ) ;
2007-12-20 20:37:06 +00:00
}
else
{
2008-08-10 20:48:55 +00:00
S_Sound ( self , CHAN_VOICE , self - > SeeSound , 1 , ATTN_NORM ) ;
2007-12-20 20:37:06 +00:00
}
}
2008-08-10 20:48:55 +00:00
if ( self - > target & & ! ( self - > flags & MF_INCHASE ) )
2007-12-20 20:37:06 +00:00
{
if ( seestate )
{
2008-08-10 20:48:55 +00:00
self - > SetState ( seestate ) ;
2007-12-20 20:37:06 +00:00
}
else
{
2008-08-10 20:48:55 +00:00
self - > SetState ( self - > SeeState ) ;
2007-12-20 20:37:06 +00:00
}
}
}
// [KS] *** End additions by me ***