2006-02-24 04:48:15 +00:00
|
|
|
// Emacs style mode select -*- C++ -*-
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// $Id:$
|
|
|
|
//
|
|
|
|
// Copyright (C) 1993-1996 by id Software, Inc.
|
|
|
|
//
|
|
|
|
// This source is available for distribution and/or modification
|
|
|
|
// only under the terms of the DOOM Source Code License as
|
|
|
|
// published by id Software. All rights reserved.
|
|
|
|
//
|
|
|
|
// The source is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
// $Log:$
|
|
|
|
//
|
|
|
|
// DESCRIPTION:
|
|
|
|
// Enemy thinking, AI.
|
|
|
|
// Action Pointer Functions
|
|
|
|
// that are associated with states/frames.
|
|
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "templates.h"
|
|
|
|
#include "m_random.h"
|
|
|
|
#include "i_system.h"
|
|
|
|
#include "doomdef.h"
|
|
|
|
#include "p_local.h"
|
2008-04-06 17:33:43 +00:00
|
|
|
#include "m_bbox.h"
|
2006-02-24 04:48:15 +00:00
|
|
|
#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"
|
2007-05-28 14:46:49 +00:00
|
|
|
#include "thingdef/thingdef.h"
|
2008-05-30 06:56:50 +00:00
|
|
|
#include "d_dehacked.h"
|
2008-09-14 23:54:38 +00:00
|
|
|
#include "g_level.h"
|
2011-01-22 03:35:33 +00:00
|
|
|
#include "teaminfo.h"
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
#include "gi.h"
|
|
|
|
|
|
|
|
static FRandom pr_checkmissilerange ("CheckMissileRange");
|
|
|
|
static FRandom pr_opendoor ("OpenDoor");
|
|
|
|
static FRandom pr_trywalk ("TryWalk");
|
|
|
|
static FRandom pr_newchasedir ("NewChaseDir");
|
|
|
|
static FRandom pr_lookformonsters ("LookForMonsters");
|
|
|
|
static FRandom pr_lookforplayers ("LookForPlayers");
|
|
|
|
static FRandom pr_scaredycat ("Anubis");
|
|
|
|
FRandom pr_chase ("Chase");
|
|
|
|
static FRandom pr_facetarget ("FaceTarget");
|
|
|
|
static FRandom pr_railface ("RailFace");
|
|
|
|
static FRandom pr_dropitem ("DropItem");
|
|
|
|
static FRandom pr_look2 ("LookyLooky");
|
|
|
|
static FRandom pr_look3 ("IGotHooky");
|
|
|
|
static FRandom pr_slook ("SlooK");
|
2009-09-15 14:16:55 +00:00
|
|
|
static FRandom pr_dropoff ("Dropoff");
|
2009-09-16 15:54:04 +00:00
|
|
|
static FRandom pr_defect ("Defect");
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
static FRandom pr_skiptarget("SkipTarget");
|
2009-09-16 21:03:09 +00:00
|
|
|
static FRandom pr_enemystrafe("EnemyStrafe");
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// movement interpolation is fine for objects that are moved by their own
|
2009-06-30 20:57:51 +00:00
|
|
|
// velocity. But for monsters it is problematic.
|
2006-02-24 04:48:15 +00:00
|
|
|
// 1. They don't move every tic
|
|
|
|
// 2. Their animation is not designed for movement interpolation
|
|
|
|
// The result is that they tend to 'glide' across the floor
|
|
|
|
// so this CVAR allows to switch it off.
|
|
|
|
CVAR(Bool, nomonsterinterpolation, false, CVAR_GLOBALCONFIG|CVAR_ARCHIVE)
|
|
|
|
|
|
|
|
//
|
|
|
|
// P_NewChaseDir related LUT.
|
|
|
|
//
|
|
|
|
|
|
|
|
dirtype_t opposite[9] =
|
|
|
|
{
|
|
|
|
DI_WEST, DI_SOUTHWEST, DI_SOUTH, DI_SOUTHEAST,
|
|
|
|
DI_EAST, DI_NORTHEAST, DI_NORTH, DI_NORTHWEST, DI_NODIR
|
|
|
|
};
|
|
|
|
|
|
|
|
dirtype_t diags[4] =
|
|
|
|
{
|
|
|
|
DI_NORTHWEST, DI_NORTHEAST, DI_SOUTHWEST, DI_SOUTHEAST
|
|
|
|
};
|
|
|
|
|
|
|
|
fixed_t xspeed[8] = {FRACUNIT,46341,0,-46341,-FRACUNIT,-46341,0,46341};
|
|
|
|
fixed_t yspeed[8] = {0,46341,FRACUNIT,46341,0,-46341,-FRACUNIT,-46341};
|
|
|
|
|
2006-05-13 12:41:15 +00:00
|
|
|
void P_RandomChaseDir (AActor *actor);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// ENEMY THINKING
|
|
|
|
// Enemies are always spawned
|
|
|
|
// with targetplayer = -1, threshold = 0
|
|
|
|
// Most monsters are spawned unaware of all players,
|
|
|
|
// but some can be made preaware
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// PROC P_RecursiveSound
|
|
|
|
//
|
|
|
|
// Called by P_NoiseAlert.
|
|
|
|
// Recursively traverse adjacent sectors,
|
|
|
|
// sound blocking lines cut off traversal.
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2011-06-13 10:30:30 +00:00
|
|
|
void P_RecursiveSound (sector_t *sec, AActor *soundtarget, bool splash, int soundblocks, AActor *emitter, fixed_t maxdist)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
line_t* check;
|
|
|
|
sector_t* other;
|
|
|
|
AActor* actor;
|
|
|
|
|
|
|
|
// wake up all monsters in this sector
|
|
|
|
if (sec->validcount == validcount
|
|
|
|
&& sec->soundtraversed <= soundblocks+1)
|
|
|
|
{
|
|
|
|
return; // already flooded
|
|
|
|
}
|
|
|
|
|
|
|
|
sec->validcount = validcount;
|
|
|
|
sec->soundtraversed = soundblocks+1;
|
2006-04-20 14:21:27 +00:00
|
|
|
sec->SoundTarget = soundtarget;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// [RH] Set this in the actors in the sector instead of the sector itself.
|
|
|
|
for (actor = sec->thinglist; actor != NULL; actor = actor->snext)
|
|
|
|
{
|
2011-06-13 10:30:30 +00:00
|
|
|
if (actor != soundtarget && (!splash || !(actor->flags4 & MF4_NOSPLASHALERT)) &&
|
|
|
|
(!maxdist || (P_AproxDistance(actor->x - emitter->x, actor->y - emitter->y) <= maxdist)))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
actor->LastHeard = soundtarget;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < sec->linecount; i++)
|
|
|
|
{
|
|
|
|
check = sec->lines[i];
|
2009-09-06 20:45:56 +00:00
|
|
|
if (check->sidedef[1] == NULL ||
|
2006-02-24 04:48:15 +00:00
|
|
|
!(check->flags & ML_TWOSIDED))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2006-04-24 14:26:06 +00:00
|
|
|
|
|
|
|
// Early out for intra-sector lines
|
2009-09-06 20:45:56 +00:00
|
|
|
if (check->sidedef[0]->sector == check->sidedef[1]->sector) continue;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2009-09-06 20:45:56 +00:00
|
|
|
if ( check->sidedef[0]->sector == sec)
|
|
|
|
other = check->sidedef[1]->sector;
|
2006-02-24 04:48:15 +00:00
|
|
|
else
|
2009-09-06 20:45:56 +00:00
|
|
|
other = check->sidedef[0]->sector;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// check for closed door
|
|
|
|
if ((sec->floorplane.ZatPoint (check->v1->x, check->v1->y) >=
|
|
|
|
other->ceilingplane.ZatPoint (check->v1->x, check->v1->y) &&
|
|
|
|
sec->floorplane.ZatPoint (check->v2->x, check->v2->y) >=
|
|
|
|
other->ceilingplane.ZatPoint (check->v2->x, check->v2->y))
|
|
|
|
|| (other->floorplane.ZatPoint (check->v1->x, check->v1->y) >=
|
|
|
|
sec->ceilingplane.ZatPoint (check->v1->x, check->v1->y) &&
|
|
|
|
other->floorplane.ZatPoint (check->v2->x, check->v2->y) >=
|
|
|
|
sec->ceilingplane.ZatPoint (check->v2->x, check->v2->y))
|
|
|
|
|| (other->floorplane.ZatPoint (check->v1->x, check->v1->y) >=
|
|
|
|
other->ceilingplane.ZatPoint (check->v1->x, check->v1->y) &&
|
|
|
|
other->floorplane.ZatPoint (check->v2->x, check->v2->y) >=
|
|
|
|
other->ceilingplane.ZatPoint (check->v2->x, check->v2->y)))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (check->flags & ML_SOUNDBLOCK)
|
|
|
|
{
|
|
|
|
if (!soundblocks)
|
2011-06-13 10:30:30 +00:00
|
|
|
P_RecursiveSound (other, soundtarget, splash, 1, emitter, maxdist);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-06-13 10:30:30 +00:00
|
|
|
P_RecursiveSound (other, soundtarget, splash, soundblocks, emitter, maxdist);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// PROC P_NoiseAlert
|
|
|
|
//
|
|
|
|
// If a monster yells at a player, it will alert other monsters to the
|
|
|
|
// player.
|
|
|
|
//
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2011-06-13 10:30:30 +00:00
|
|
|
void P_NoiseAlert (AActor *target, AActor *emitter, bool splash, fixed_t maxdist)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2010-03-27 07:42:31 +00:00
|
|
|
if (emitter == NULL)
|
2006-02-24 04:48:15 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (target != NULL && target->player && (target->player->cheats & CF_NOTARGET))
|
|
|
|
return;
|
|
|
|
|
|
|
|
validcount++;
|
2011-06-13 10:30:30 +00:00
|
|
|
P_RecursiveSound (emitter->Sector, target, splash, 0, emitter, maxdist);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// AActor :: CheckMeleeRange
|
|
|
|
//
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
bool AActor::CheckMeleeRange ()
|
|
|
|
{
|
2009-09-16 15:54:04 +00:00
|
|
|
AActor *pl = target;
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
fixed_t dist;
|
|
|
|
|
2009-09-16 15:54:04 +00:00
|
|
|
if (!pl)
|
2006-02-24 04:48:15 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
dist = P_AproxDistance (pl->x - x, pl->y - y);
|
|
|
|
|
|
|
|
if (dist >= meleerange + pl->radius)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// [RH] If moving toward goal, then we've reached it.
|
2009-09-16 15:54:04 +00:00
|
|
|
if (pl == goal)
|
2006-02-24 04:48:15 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// [RH] Don't melee things too far above or below actor.
|
2008-08-07 20:16:07 +00:00
|
|
|
if (!(flags5 & MF5_NOVERTICALMELEERANGE))
|
|
|
|
{
|
|
|
|
if (pl->z > z + height)
|
|
|
|
return false;
|
|
|
|
if (pl->z + pl->height < z)
|
|
|
|
return false;
|
|
|
|
}
|
2009-09-16 15:54:04 +00:00
|
|
|
|
|
|
|
// killough 7/18/98: friendly monsters don't attack other friends
|
|
|
|
if (IsFriend(pl))
|
|
|
|
return false;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (!P_CheckSight (this, pl, 0))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// FUNC P_CheckMeleeRange2
|
|
|
|
//
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
bool P_CheckMeleeRange2 (AActor *actor)
|
|
|
|
{
|
|
|
|
AActor *mo;
|
|
|
|
fixed_t dist;
|
|
|
|
|
|
|
|
if (!actor->target)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
mo = actor->target;
|
|
|
|
dist = P_AproxDistance (mo->x-actor->x, mo->y-actor->y);
|
|
|
|
if (dist >= MELEERANGE*2 || dist < MELEERANGE-20*FRACUNIT + mo->radius)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (mo->z > actor->z+actor->height)
|
|
|
|
{ // Target is higher than the attacker
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if (actor->z > mo->z+mo->height)
|
|
|
|
{ // Attacker is higher
|
|
|
|
return false;
|
|
|
|
}
|
2009-09-16 15:54:04 +00:00
|
|
|
else if (actor->IsFriend(mo))
|
|
|
|
{
|
|
|
|
// killough 7/18/98: friendly monsters don't attack other friends
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
if (!P_CheckSight(actor, mo))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-04-24 14:26:06 +00:00
|
|
|
|
|
|
|
//=============================================================================
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
// P_CheckMissileRange
|
|
|
|
//
|
2006-04-24 14:26:06 +00:00
|
|
|
//=============================================================================
|
2006-09-14 00:02:31 +00:00
|
|
|
bool P_CheckMissileRange (AActor *actor)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
fixed_t dist;
|
|
|
|
|
2011-01-23 00:22:08 +00:00
|
|
|
if (!P_CheckSight (actor, actor->target, SF_SEEPASTBLOCKEVERYTHING))
|
2006-02-24 04:48:15 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (actor->flags & MF_JUSTHIT)
|
|
|
|
{
|
|
|
|
// the target just hit the enemy, so fight back!
|
|
|
|
actor->flags &= ~MF_JUSTHIT;
|
2009-09-16 15:54:04 +00:00
|
|
|
|
|
|
|
// killough 7/18/98: no friendly fire at corpses
|
|
|
|
// killough 11/98: prevent too much infighting among friends
|
|
|
|
// Cleaned up and made readable
|
|
|
|
if (!(actor->flags & MF_FRIENDLY)) return true;
|
|
|
|
if (actor->target->health <= 0) return false;
|
|
|
|
if (!actor->IsFriend(actor->target)) return true;
|
|
|
|
if (actor->target->player != NULL)
|
|
|
|
{
|
|
|
|
return (pr_defect() >128);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return !(actor->target->flags & MF_JUSTHIT) && pr_defect() >128;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (actor->reactiontime)
|
|
|
|
return false; // do not attack yet
|
2009-09-16 15:54:04 +00:00
|
|
|
|
|
|
|
// killough 7/18/98: friendly monsters don't attack other friendly
|
|
|
|
// monsters or players (except when attacked, and then only once)
|
|
|
|
if (actor->IsFriend(actor->target))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (actor->flags & MF_FRIENDLY && P_HitFriend(actor))
|
|
|
|
return false;
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
// OPTIMIZE: get this from a global checksight
|
|
|
|
// [RH] What?
|
|
|
|
dist = P_AproxDistance (actor->x-actor->target->x,
|
|
|
|
actor->y-actor->target->y) - 64*FRACUNIT;
|
|
|
|
|
|
|
|
if (actor->MeleeState == NULL)
|
|
|
|
dist -= 128*FRACUNIT; // no melee attack, so fire more
|
|
|
|
|
|
|
|
return actor->SuggestMissileAttack (dist);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AActor::SuggestMissileAttack (fixed_t dist)
|
|
|
|
{
|
|
|
|
// new version encapsulates the different behavior in flags instead of virtual functions
|
|
|
|
// The advantage is that this allows inheriting the missile attack attributes from the
|
|
|
|
// various Doom monsters by custom monsters
|
|
|
|
|
2007-04-22 21:01:35 +00:00
|
|
|
if (maxtargetrange > 0 && dist > maxtargetrange)
|
|
|
|
return false; // The Arch Vile's special behavior turned into a property
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2007-05-13 20:21:26 +00:00
|
|
|
if (MeleeState != NULL && dist < meleethreshold)
|
2006-02-24 04:48:15 +00:00
|
|
|
return false; // From the Revenant: close enough for fist attack
|
|
|
|
|
|
|
|
if (flags4 & MF4_MISSILEMORE) dist >>= 1;
|
|
|
|
if (flags4 & MF4_MISSILEEVENMORE) dist >>= 3;
|
|
|
|
|
2007-10-29 22:15:46 +00:00
|
|
|
int mmc = FixedMul(MinMissileChance, G_SkillProperty(SKILLP_Aggressiveness));
|
|
|
|
return pr_checkmissilerange() >= MIN<int> (dist >> FRACBITS, mmc);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
//
|
|
|
|
// P_HitFriend()
|
|
|
|
//
|
|
|
|
// killough 12/98
|
|
|
|
// This function tries to prevent shooting at friends that get in the line of fire
|
|
|
|
//
|
|
|
|
// [GrafZahl] Taken from MBF but this has been cleaned up to make it readable.
|
|
|
|
//
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
bool P_HitFriend(AActor * self)
|
|
|
|
{
|
2008-04-10 14:38:43 +00:00
|
|
|
AActor *linetarget;
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
if (self->flags&MF_FRIENDLY && self->target != NULL)
|
|
|
|
{
|
|
|
|
angle_t angle = R_PointToAngle2 (self->x, self->y, self->target->x, self->target->y);
|
2009-09-16 15:54:04 +00:00
|
|
|
fixed_t dist = P_AproxDistance (self->x - self->target->x, self->y - self->target->y);
|
2008-04-10 14:38:43 +00:00
|
|
|
P_AimLineAttack (self, angle, dist, &linetarget, 0, true);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (linetarget != NULL && linetarget != self->target)
|
|
|
|
{
|
2006-03-03 03:57:01 +00:00
|
|
|
return self->IsFriend (linetarget);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// P_Move
|
|
|
|
// Move in the current direction,
|
|
|
|
// returns false if the move is blocked.
|
|
|
|
//
|
2009-09-14 20:47:53 +00:00
|
|
|
|
2006-09-14 00:02:31 +00:00
|
|
|
bool P_Move (AActor *actor)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
fixed_t tryx, tryy, deltax, deltay, origx, origy;
|
2006-09-14 00:02:31 +00:00
|
|
|
bool try_ok;
|
2009-09-14 19:44:14 +00:00
|
|
|
int speed = actor->Speed;
|
2006-02-24 04:48:15 +00:00
|
|
|
int movefactor = ORIG_FRICTION_FACTOR;
|
|
|
|
int friction = ORIG_FRICTION;
|
2009-09-15 14:16:55 +00:00
|
|
|
int dropoff = 0;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (actor->flags2 & MF2_BLASTED)
|
2009-09-14 19:44:14 +00:00
|
|
|
{
|
2006-02-24 04:48:15 +00:00
|
|
|
return true;
|
2009-09-14 19:44:14 +00:00
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (actor->movedir == DI_NODIR)
|
2009-09-14 19:44:14 +00:00
|
|
|
{
|
2006-02-24 04:48:15 +00:00
|
|
|
return false;
|
2009-09-14 19:44:14 +00:00
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2010-09-18 02:55:08 +00:00
|
|
|
// [RH] Walking actors that are not on the ground cannot walk. We don't
|
|
|
|
// want to yank them to the ground here as Doom did, since that makes
|
|
|
|
// it difficult ot thrust them vertically in a reasonable manner.
|
2009-09-14 20:47:53 +00:00
|
|
|
// [GZ] Let jumping actors jump.
|
|
|
|
if (!((actor->flags & MF_NOGRAVITY) || (actor->flags6 & MF6_CANJUMP))
|
|
|
|
&& actor->z > actor->floorz && !(actor->flags2 & MF2_ONMOBJ))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2010-09-18 02:55:08 +00:00
|
|
|
return false;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((unsigned)actor->movedir >= 8)
|
|
|
|
I_Error ("Weird actor->movedir!");
|
|
|
|
|
2009-09-14 23:50:21 +00:00
|
|
|
// killough 10/98: allow dogs to drop off of taller ledges sometimes.
|
|
|
|
// dropoff==1 means always allow it, dropoff==2 means only up to 128 high,
|
|
|
|
// and only if the target is immediately on the other side of the line.
|
2009-09-15 14:16:55 +00:00
|
|
|
AActor *target = actor->target;
|
2009-09-14 23:50:21 +00:00
|
|
|
|
2009-09-15 14:16:55 +00:00
|
|
|
if ((actor->flags6 & MF6_JUMPDOWN) && target &&
|
2009-09-14 23:50:21 +00:00
|
|
|
!(target->IsFriend(actor)) &&
|
2009-09-15 14:16:55 +00:00
|
|
|
P_AproxDistance(actor->x - target->x, actor->y - target->y) < FRACUNIT*144 &&
|
|
|
|
pr_dropoff() < 235)
|
2009-09-14 23:50:21 +00:00
|
|
|
{
|
|
|
|
dropoff = 2;
|
|
|
|
}
|
|
|
|
|
2009-09-14 20:47:53 +00:00
|
|
|
// [RH] I'm not so sure this is such a good idea
|
|
|
|
// [GZ] That's why it's compat-optioned.
|
|
|
|
if (compatflags & COMPATF_MBFMONSTERMOVE)
|
|
|
|
{
|
|
|
|
// killough 10/98: make monsters get affected by ice and sludge too:
|
|
|
|
movefactor = P_GetMoveFactor (actor, &friction);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2009-09-14 20:47:53 +00:00
|
|
|
if (friction < ORIG_FRICTION)
|
|
|
|
{ // sludge
|
|
|
|
speed = ((ORIG_FRICTION_FACTOR - (ORIG_FRICTION_FACTOR-movefactor)/2)
|
|
|
|
* speed) / ORIG_FRICTION_FACTOR;
|
|
|
|
if (speed == 0)
|
|
|
|
{ // always give the monster a little bit of speed
|
|
|
|
speed = ksgn(actor->Speed);
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tryx = (origx = actor->x) + (deltax = FixedMul (speed, xspeed[actor->movedir]));
|
|
|
|
tryy = (origy = actor->y) + (deltay = FixedMul (speed, yspeed[actor->movedir]));
|
|
|
|
|
2006-04-17 13:53:34 +00:00
|
|
|
// Like P_XYMovement this should do multiple moves if the step size is too large
|
|
|
|
|
|
|
|
fixed_t maxmove = actor->radius - FRACUNIT;
|
|
|
|
int steps = 1;
|
|
|
|
|
|
|
|
if (maxmove > 0)
|
|
|
|
{
|
|
|
|
const fixed_t xspeed = abs (deltax);
|
|
|
|
const fixed_t yspeed = abs (deltay);
|
|
|
|
|
|
|
|
if (xspeed > yspeed)
|
|
|
|
{
|
|
|
|
if (xspeed > maxmove)
|
|
|
|
{
|
|
|
|
steps = 1 + xspeed / maxmove;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (yspeed > maxmove)
|
|
|
|
{
|
|
|
|
steps = 1 + yspeed / maxmove;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-04-08 20:52:49 +00:00
|
|
|
FCheckPosition tm;
|
|
|
|
|
2009-12-06 22:10:25 +00:00
|
|
|
tm.FromPMove = true;
|
|
|
|
|
2006-04-17 13:53:34 +00:00
|
|
|
try_ok = true;
|
|
|
|
for(int i=1; i < steps; i++)
|
|
|
|
{
|
2010-09-01 03:30:18 +00:00
|
|
|
try_ok = P_TryMove(actor, origx + Scale(deltax, i, steps), origy + Scale(deltay, i, steps), dropoff, NULL, tm);
|
2006-04-17 13:53:34 +00:00
|
|
|
if (!try_ok) break;
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
// killough 3/15/98: don't jump over dropoffs:
|
2010-09-01 03:30:18 +00:00
|
|
|
if (try_ok) try_ok = P_TryMove (actor, tryx, tryy, dropoff, NULL, tm);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// [GrafZahl] Interpolating monster movement as it is done here just looks bad
|
2009-12-06 22:10:25 +00:00
|
|
|
// so make it switchable
|
2006-02-24 04:48:15 +00:00
|
|
|
if (nomonsterinterpolation)
|
|
|
|
{
|
2009-12-30 18:53:14 +00:00
|
|
|
actor->PrevX = actor->x;
|
|
|
|
actor->PrevY = actor->y;
|
|
|
|
actor->PrevZ = actor->z;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (try_ok && friction > ORIG_FRICTION)
|
|
|
|
{
|
|
|
|
actor->x = origx;
|
|
|
|
actor->y = origy;
|
|
|
|
movefactor *= FRACUNIT / ORIG_FRICTION_FACTOR / 4;
|
2009-06-30 20:57:51 +00:00
|
|
|
actor->velx += FixedMul (deltax, movefactor);
|
|
|
|
actor->vely += FixedMul (deltay, movefactor);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2010-09-18 02:55:08 +00:00
|
|
|
// [RH] If a walking monster is no longer on the floor, move it down
|
|
|
|
// to the floor if it is within MaxStepHeight, presuming that it is
|
|
|
|
// actually walking down a step.
|
|
|
|
if (try_ok &&
|
|
|
|
!((actor->flags & MF_NOGRAVITY) || (actor->flags6 & MF6_CANJUMP))
|
|
|
|
&& actor->z > actor->floorz && !(actor->flags2 & MF2_ONMOBJ))
|
|
|
|
{
|
|
|
|
if (actor->z <= actor->floorz + actor->MaxStepHeight)
|
|
|
|
{
|
|
|
|
fixed_t savedz = actor->z;
|
|
|
|
actor->z = actor->floorz;
|
|
|
|
// Make sure that there isn't some other actor between us and
|
|
|
|
// the floor we could get stuck in. The old code did not do this.
|
|
|
|
if (!P_TestMobjZ(actor))
|
|
|
|
{
|
|
|
|
actor->z = savedz;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
if (!try_ok)
|
|
|
|
{
|
2009-09-14 20:47:53 +00:00
|
|
|
if (((actor->flags6 & MF6_CANJUMP)||(actor->flags & MF_FLOAT)) && tm.floatok)
|
2006-02-24 04:48:15 +00:00
|
|
|
{ // must adjust height
|
|
|
|
fixed_t savedz = actor->z;
|
|
|
|
|
2008-04-08 20:52:49 +00:00
|
|
|
if (actor->z < tm.floorz)
|
2006-05-14 14:30:13 +00:00
|
|
|
actor->z += actor->FloatSpeed;
|
2006-02-24 04:48:15 +00:00
|
|
|
else
|
2006-05-14 14:30:13 +00:00
|
|
|
actor->z -= actor->FloatSpeed;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2009-09-14 19:44:14 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
// [RH] Check to make sure there's nothing in the way of the float
|
|
|
|
if (P_TestMobjZ (actor))
|
|
|
|
{
|
|
|
|
actor->flags |= MF_INFLOAT;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
actor->z = savedz;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!spechit.Size ())
|
2009-09-14 19:44:14 +00:00
|
|
|
{
|
2006-02-24 04:48:15 +00:00
|
|
|
return false;
|
2009-09-14 19:44:14 +00:00
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// open any specials
|
|
|
|
actor->movedir = DI_NODIR;
|
|
|
|
|
|
|
|
// if the special is not a door that can be opened, return false
|
|
|
|
//
|
|
|
|
// killough 8/9/98: this is what caused monsters to get stuck in
|
|
|
|
// doortracks, because it thought that the monster freed itself
|
|
|
|
// by opening a door, even if it was moving towards the doortrack,
|
|
|
|
// and not the door itself.
|
|
|
|
//
|
|
|
|
// killough 9/9/98: If a line blocking the monster is activated,
|
|
|
|
// return true 90% of the time. If a line blocking the monster is
|
|
|
|
// not activated, but some other line is, return false 90% of the
|
|
|
|
// time. A bit of randomness is needed to ensure it's free from
|
|
|
|
// lockups, but for most cases, it returns the correct result.
|
|
|
|
//
|
|
|
|
// Do NOT simply return false 1/4th of the time (causes monsters to
|
|
|
|
// back out when they shouldn't, and creates secondary stickiness).
|
|
|
|
|
|
|
|
line_t *ld;
|
|
|
|
int good = 0;
|
|
|
|
|
2009-10-10 12:42:57 +00:00
|
|
|
if (!(actor->flags6 & MF6_NOTRIGGER))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2009-10-10 12:42:57 +00:00
|
|
|
while (spechit.Pop (ld))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2009-10-10 12:42:57 +00:00
|
|
|
// [RH] let monsters push lines, as well as use them
|
|
|
|
if (((actor->flags4 & MF4_CANUSEWALLS) && P_ActivateLine (ld, actor, 0, SPAC_Use)) ||
|
|
|
|
((actor->flags2 & MF2_PUSHWALL) && P_ActivateLine (ld, actor, 0, SPAC_Push)))
|
|
|
|
{
|
|
|
|
good |= ld == actor->BlockingLine ? 1 : 2;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
2009-10-10 12:42:57 +00:00
|
|
|
else spechit.Clear();
|
2006-02-24 04:48:15 +00:00
|
|
|
return good && ((pr_opendoor() >= 203) ^ (good & 1));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
actor->flags &= ~MF_INFLOAT;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-04-24 14:26:06 +00:00
|
|
|
//=============================================================================
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
// TryWalk
|
|
|
|
// Attempts to move actor on
|
|
|
|
// in its current (ob->moveangle) direction.
|
|
|
|
// If blocked by either a wall or an actor
|
|
|
|
// returns FALSE
|
|
|
|
// If move is either clear or blocked only by a door,
|
|
|
|
// returns TRUE and sets...
|
|
|
|
// If a door is in the way,
|
|
|
|
// an OpenDoor call is made to start it opening.
|
|
|
|
//
|
2006-04-24 14:26:06 +00:00
|
|
|
//=============================================================================
|
|
|
|
|
2006-09-14 00:02:31 +00:00
|
|
|
bool P_TryWalk (AActor *actor)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
if (!P_Move (actor))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
actor->movecount = pr_trywalk() & 15;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-04-24 14:26:06 +00:00
|
|
|
//=============================================================================
|
|
|
|
//
|
|
|
|
// P_DoNewChaseDir
|
|
|
|
//
|
|
|
|
// killough 9/8/98:
|
|
|
|
//
|
|
|
|
// Most of P_NewChaseDir(), except for what
|
|
|
|
// determines the new direction to take
|
|
|
|
//
|
|
|
|
//=============================================================================
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-04-24 14:26:06 +00:00
|
|
|
void P_DoNewChaseDir (AActor *actor, fixed_t deltax, fixed_t deltay)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
dirtype_t d[3];
|
|
|
|
int tdir;
|
|
|
|
dirtype_t olddir, turnaround;
|
|
|
|
|
|
|
|
olddir = (dirtype_t)actor->movedir;
|
|
|
|
turnaround = opposite[olddir];
|
|
|
|
|
|
|
|
if (deltax>10*FRACUNIT)
|
|
|
|
d[1]= DI_EAST;
|
|
|
|
else if (deltax<-10*FRACUNIT)
|
|
|
|
d[1]= DI_WEST;
|
|
|
|
else
|
|
|
|
d[1]=DI_NODIR;
|
|
|
|
|
|
|
|
if (deltay<-10*FRACUNIT)
|
|
|
|
d[2]= DI_SOUTH;
|
|
|
|
else if (deltay>10*FRACUNIT)
|
|
|
|
d[2]= DI_NORTH;
|
|
|
|
else
|
|
|
|
d[2]=DI_NODIR;
|
|
|
|
|
|
|
|
// try direct route
|
|
|
|
if (d[1] != DI_NODIR && d[2] != DI_NODIR)
|
|
|
|
{
|
|
|
|
actor->movedir = diags[((deltay<0)<<1) + (deltax>0)];
|
|
|
|
if (actor->movedir != turnaround && P_TryWalk(actor))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// try other directions
|
2008-04-06 17:33:43 +00:00
|
|
|
if (!(actor->flags5 & MF5_AVOIDINGDROPOFF))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-04-06 17:33:43 +00:00
|
|
|
if ((pr_newchasedir() > 200 || abs(deltay) > abs(deltax)))
|
|
|
|
{
|
2010-07-23 21:19:59 +00:00
|
|
|
swapvalues (d[1], d[2]);
|
2008-04-06 17:33:43 +00:00
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-04-06 17:33:43 +00:00
|
|
|
if (d[1] == turnaround)
|
|
|
|
d[1] = DI_NODIR;
|
|
|
|
if (d[2] == turnaround)
|
|
|
|
d[2] = DI_NODIR;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (d[1] != DI_NODIR)
|
|
|
|
{
|
|
|
|
actor->movedir = d[1];
|
|
|
|
if (P_TryWalk (actor))
|
|
|
|
{
|
|
|
|
// either moved forward or attacked
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (d[2] != DI_NODIR)
|
|
|
|
{
|
|
|
|
actor->movedir = d[2];
|
|
|
|
if (P_TryWalk (actor))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-04-06 17:33:43 +00:00
|
|
|
if (!(actor->flags5 & MF5_AVOIDINGDROPOFF))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-04-06 17:33:43 +00:00
|
|
|
// there is no direct path to the player, so pick another direction.
|
|
|
|
if (olddir != DI_NODIR)
|
|
|
|
{
|
|
|
|
actor->movedir = olddir;
|
|
|
|
if (P_TryWalk (actor))
|
|
|
|
return;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// randomly determine direction of search
|
|
|
|
if (pr_newchasedir() & 1)
|
|
|
|
{
|
|
|
|
for (tdir = DI_EAST; tdir <= DI_SOUTHEAST; tdir++)
|
|
|
|
{
|
|
|
|
if (tdir != turnaround)
|
|
|
|
{
|
|
|
|
actor->movedir = tdir;
|
|
|
|
if ( P_TryWalk(actor) )
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (tdir = DI_SOUTHEAST; tdir != (DI_EAST-1); tdir--)
|
|
|
|
{
|
|
|
|
if (tdir != turnaround)
|
|
|
|
{
|
|
|
|
actor->movedir = tdir;
|
|
|
|
if ( P_TryWalk(actor) )
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (turnaround != DI_NODIR)
|
|
|
|
{
|
|
|
|
actor->movedir =turnaround;
|
|
|
|
if ( P_TryWalk(actor) )
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-09-14 19:44:14 +00:00
|
|
|
actor->movedir = DI_NODIR; // cannot move
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2006-04-24 14:26:06 +00:00
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
//
|
|
|
|
// killough 11/98:
|
|
|
|
//
|
|
|
|
// Monsters try to move away from tall dropoffs.
|
|
|
|
//
|
|
|
|
// In Doom, they were never allowed to hang over dropoffs,
|
|
|
|
// and would remain stuck if involuntarily forced over one.
|
|
|
|
// This logic, combined with p_map.c (P_TryMove), allows
|
|
|
|
// monsters to free themselves without making them tend to
|
|
|
|
// hang over dropoffs.
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
//
|
|
|
|
// P_NewChaseDir
|
|
|
|
//
|
|
|
|
// killough 9/8/98: Split into two functions
|
|
|
|
//
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
void P_NewChaseDir(AActor * actor)
|
|
|
|
{
|
2006-05-13 12:41:15 +00:00
|
|
|
fixed_t deltax;
|
|
|
|
fixed_t deltay;
|
|
|
|
|
2009-09-16 15:54:04 +00:00
|
|
|
actor->strafecount = 0;
|
|
|
|
|
2006-05-13 12:41:15 +00:00
|
|
|
if ((actor->flags5&MF5_CHASEGOAL || actor->goal == actor->target) && actor->goal!=NULL)
|
|
|
|
{
|
|
|
|
deltax = actor->goal->x - actor->x;
|
|
|
|
deltay = actor->goal->y - actor->y;
|
|
|
|
}
|
|
|
|
else if (actor->target != NULL)
|
|
|
|
{
|
|
|
|
deltax = actor->target->x - actor->x;
|
|
|
|
deltay = actor->target->y - actor->y;
|
|
|
|
|
2009-06-06 12:46:35 +00:00
|
|
|
if (!(actor->flags6 & MF6_NOFEAR))
|
2006-05-13 12:41:15 +00:00
|
|
|
{
|
2009-06-06 12:46:35 +00:00
|
|
|
if ((actor->target->player != NULL && (actor->target->player->cheats & CF_FRIGHTENING)) ||
|
|
|
|
(actor->flags4 & MF4_FRIGHTENED))
|
|
|
|
{
|
|
|
|
deltax = -deltax;
|
|
|
|
deltay = -deltay;
|
|
|
|
}
|
2006-05-13 12:41:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Don't abort if this happens.
|
|
|
|
Printf ("P_NewChaseDir: called with no target\n");
|
|
|
|
P_RandomChaseDir(actor);
|
|
|
|
return;
|
|
|
|
}
|
2006-04-24 14:26:06 +00:00
|
|
|
|
|
|
|
// Try to move away from a dropoff
|
|
|
|
if (actor->floorz - actor->dropoffz > actor->MaxDropOffHeight &&
|
|
|
|
actor->z <= actor->floorz && !(actor->flags & MF_DROPOFF) &&
|
|
|
|
!(actor->flags2 & MF2_ONMOBJ) &&
|
2006-06-03 12:30:11 +00:00
|
|
|
!(actor->flags & MF_FLOAT) && !(i_compatflags & COMPATF_DROPOFF))
|
2006-04-24 14:26:06 +00:00
|
|
|
{
|
2008-04-06 17:33:43 +00:00
|
|
|
FBoundingBox box(actor->x, actor->y, actor->radius);
|
|
|
|
FBlockLinesIterator it(box);
|
|
|
|
line_t *line;
|
|
|
|
|
|
|
|
fixed_t deltax = 0;
|
|
|
|
fixed_t deltay = 0;
|
|
|
|
while ((line = it.Next()))
|
|
|
|
{
|
|
|
|
if (line->backsector && // Ignore one-sided linedefs
|
|
|
|
box.Right() > line->bbox[BOXLEFT] &&
|
|
|
|
box.Left() < line->bbox[BOXRIGHT] &&
|
|
|
|
box.Top() > line->bbox[BOXBOTTOM] && // Linedef must be contacted
|
|
|
|
box.Bottom() < line->bbox[BOXTOP] &&
|
|
|
|
box.BoxOnLineSide(line) == -1)
|
|
|
|
{
|
|
|
|
fixed_t front = line->frontsector->floorplane.ZatPoint(actor->x,actor->y);
|
|
|
|
fixed_t back = line->backsector->floorplane.ZatPoint(actor->x,actor->y);
|
|
|
|
angle_t angle;
|
2006-04-24 14:26:06 +00:00
|
|
|
|
2008-04-06 17:33:43 +00:00
|
|
|
// The monster must contact one of the two floors,
|
|
|
|
// and the other must be a tall dropoff.
|
|
|
|
|
|
|
|
if (back == actor->z && front < actor->z - actor->MaxDropOffHeight)
|
|
|
|
{
|
|
|
|
angle = R_PointToAngle2(0,0,line->dx,line->dy); // front side dropoff
|
|
|
|
}
|
|
|
|
else if (front == actor->z && back < actor->z - actor->MaxDropOffHeight)
|
|
|
|
{
|
|
|
|
angle = R_PointToAngle2(line->dx,line->dy,0,0); // back side dropoff
|
|
|
|
}
|
|
|
|
else continue;
|
2006-04-24 14:26:06 +00:00
|
|
|
|
2008-04-06 17:33:43 +00:00
|
|
|
// Move away from dropoff at a standard speed.
|
|
|
|
// Multiple contacted linedefs are cumulative (e.g. hanging over corner)
|
|
|
|
deltax -= finesine[angle >> ANGLETOFINESHIFT]*32;
|
|
|
|
deltay += finecosine[angle >> ANGLETOFINESHIFT]*32;
|
|
|
|
}
|
|
|
|
}
|
2006-04-24 14:26:06 +00:00
|
|
|
|
2008-04-06 17:33:43 +00:00
|
|
|
if (deltax || deltay)
|
2006-04-24 14:26:06 +00:00
|
|
|
{
|
|
|
|
// [Graf Zahl] I have changed P_TryMove to only apply this logic when
|
|
|
|
// being called from here. AVOIDINGDROPOFF activates the code that
|
|
|
|
// allows monsters to move away from a dropoff. This is different from
|
|
|
|
// MBF which requires unconditional use of the altered logic and therefore
|
|
|
|
// forcing a massive change in the monster behavior to use this.
|
|
|
|
|
|
|
|
// use different dropoff movement logic in P_TryMove
|
|
|
|
actor->flags5|=MF5_AVOIDINGDROPOFF;
|
2008-04-06 17:33:43 +00:00
|
|
|
P_DoNewChaseDir(actor, deltax, deltay);
|
2006-04-24 14:26:06 +00:00
|
|
|
actor->flags5&=~MF5_AVOIDINGDROPOFF;
|
|
|
|
|
|
|
|
// If moving away from dropoff, set movecount to 1 so that
|
|
|
|
// small steps are taken to get monster away from dropoff.
|
|
|
|
actor->movecount = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2009-09-16 15:54:04 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
// Move away from friends when too close, except
|
|
|
|
// in certain situations (e.g. a crowded lift)
|
|
|
|
|
|
|
|
// MBF code for friends. Cannot be done in ZDoom but left here as a reminder for later implementation.
|
|
|
|
|
|
|
|
if (actor->flags & target->flags & MF_FRIEND &&
|
|
|
|
distfriend << FRACBITS > dist &&
|
|
|
|
!P_IsOnLift(target) && !P_IsUnderDamage(actor))
|
|
|
|
deltax = -deltax, deltay = -deltay;
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// MBF's monster_backing option. Made an actor flag instead. Also cleaned the code up to make it readable.
|
|
|
|
// Todo: implement the movement logic
|
2009-09-16 21:03:09 +00:00
|
|
|
AActor *target = actor->target;
|
2009-09-16 15:54:04 +00:00
|
|
|
if (target->health > 0 && !actor->IsFriend(target))
|
|
|
|
{ // Live enemy target
|
|
|
|
|
|
|
|
if (actor->flags3 & MF3_AVOIDMELEE)
|
|
|
|
{
|
|
|
|
bool ismeleeattacker = false;
|
2009-09-16 21:03:09 +00:00
|
|
|
fixed_t dist = P_AproxDistance(actor->x-target->x, actor->y-target->y);
|
2009-09-16 15:54:04 +00:00
|
|
|
if (target->player == NULL)
|
|
|
|
{
|
|
|
|
ismeleeattacker = (target->MissileState == NULL && dist < (target->meleerange + target->radius)*2);
|
|
|
|
}
|
|
|
|
else if (target->player->ReadyWeapon != NULL)
|
|
|
|
{
|
|
|
|
// melee range of player weapon is a parameter of the action function and cannot be checked here.
|
|
|
|
// Add a new weapon property?
|
2009-09-16 21:03:09 +00:00
|
|
|
ismeleeattacker = (target->player->ReadyWeapon->WeaponFlags & WIF_MELEEWEAPON && dist < MELEERANGE*3);
|
2009-09-16 15:54:04 +00:00
|
|
|
}
|
|
|
|
if (ismeleeattacker)
|
|
|
|
{
|
|
|
|
actor->strafecount = pr_enemystrafe() & 15;
|
|
|
|
deltax = -deltax, deltay = -deltay;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-24 14:26:06 +00:00
|
|
|
P_DoNewChaseDir(actor, deltax, deltay);
|
2009-09-16 15:54:04 +00:00
|
|
|
|
|
|
|
// If strafing, set movecount to strafecount so that old Doom
|
|
|
|
// logic still works the same, except in the strafing part
|
|
|
|
|
|
|
|
if (actor->strafecount)
|
|
|
|
actor->movecount = actor->strafecount;
|
|
|
|
|
2006-04-24 14:26:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
//
|
|
|
|
// P_RandomChaseDir
|
|
|
|
//
|
|
|
|
//=============================================================================
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
void P_RandomChaseDir (AActor *actor)
|
|
|
|
{
|
|
|
|
dirtype_t olddir, turnaround;
|
|
|
|
int tdir, i;
|
|
|
|
|
|
|
|
olddir = (dirtype_t)actor->movedir;
|
|
|
|
turnaround = opposite[olddir];
|
|
|
|
int turndir;
|
|
|
|
|
|
|
|
// Friendly monsters like to head toward a player
|
|
|
|
if (actor->flags & MF_FRIENDLY)
|
|
|
|
{
|
|
|
|
AActor *player;
|
|
|
|
fixed_t deltax, deltay;
|
|
|
|
dirtype_t d[3];
|
|
|
|
|
|
|
|
if (actor->FriendPlayer != 0)
|
|
|
|
{
|
2009-05-15 03:11:44 +00:00
|
|
|
player = players[i = actor->FriendPlayer - 1].mo;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!multiplayer)
|
|
|
|
{
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
else for (i = pr_newchasedir() & (MAXPLAYERS-1); !playeringame[i]; i = (i+1) & (MAXPLAYERS-1))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
player = players[i].mo;
|
|
|
|
}
|
2009-05-11 21:05:40 +00:00
|
|
|
if (player != NULL && playeringame[i])
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2009-05-11 21:05:40 +00:00
|
|
|
if (pr_newchasedir() & 1 || !P_CheckSight (actor, player))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2009-05-11 21:05:40 +00:00
|
|
|
deltax = player->x - actor->x;
|
|
|
|
deltay = player->y - actor->y;
|
|
|
|
|
|
|
|
if (deltax>128*FRACUNIT)
|
|
|
|
d[1]= DI_EAST;
|
|
|
|
else if (deltax<-128*FRACUNIT)
|
|
|
|
d[1]= DI_WEST;
|
|
|
|
else
|
|
|
|
d[1]=DI_NODIR;
|
|
|
|
|
|
|
|
if (deltay<-128*FRACUNIT)
|
|
|
|
d[2]= DI_SOUTH;
|
|
|
|
else if (deltay>128*FRACUNIT)
|
|
|
|
d[2]= DI_NORTH;
|
|
|
|
else
|
|
|
|
d[2]=DI_NODIR;
|
|
|
|
|
|
|
|
// try direct route
|
|
|
|
if (d[1] != DI_NODIR && d[2] != DI_NODIR)
|
|
|
|
{
|
|
|
|
actor->movedir = diags[((deltay<0)<<1) + (deltax>0)];
|
|
|
|
if (actor->movedir != turnaround && P_TryWalk(actor))
|
|
|
|
return;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2009-05-11 21:05:40 +00:00
|
|
|
// try other directions
|
|
|
|
if (pr_newchasedir() > 200 || abs(deltay) > abs(deltax))
|
|
|
|
{
|
2010-07-23 21:19:59 +00:00
|
|
|
swapvalues (d[1], d[2]);
|
2009-05-11 21:05:40 +00:00
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2009-05-11 21:05:40 +00:00
|
|
|
if (d[1] == turnaround)
|
|
|
|
d[1] = DI_NODIR;
|
|
|
|
if (d[2] == turnaround)
|
|
|
|
d[2] = DI_NODIR;
|
|
|
|
|
|
|
|
if (d[1] != DI_NODIR)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2009-05-11 21:05:40 +00:00
|
|
|
actor->movedir = d[1];
|
|
|
|
if (P_TryWalk (actor))
|
|
|
|
{
|
|
|
|
// either moved forward or attacked
|
|
|
|
return;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2009-05-11 21:05:40 +00:00
|
|
|
if (d[2] != DI_NODIR)
|
|
|
|
{
|
|
|
|
actor->movedir = d[2];
|
|
|
|
if (P_TryWalk (actor))
|
|
|
|
return;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the actor elects to continue in its current direction, let it do
|
|
|
|
// so unless the way is blocked. Then it must turn.
|
|
|
|
if (pr_newchasedir() < 150)
|
|
|
|
{
|
|
|
|
if (P_TryWalk (actor))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
turndir = (pr_newchasedir() & 1) ? -1 : 1;
|
|
|
|
|
|
|
|
if (olddir == DI_NODIR)
|
|
|
|
{
|
|
|
|
olddir = (dirtype_t)(pr_newchasedir() & 7);
|
|
|
|
}
|
|
|
|
for (tdir = (olddir + turndir) & 7; tdir != olddir; tdir = (tdir + turndir) & 7)
|
|
|
|
{
|
|
|
|
if (tdir != turnaround)
|
|
|
|
{
|
|
|
|
actor->movedir = tdir;
|
|
|
|
if (P_TryWalk (actor))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
if (pr_newchasedir() & 1)
|
|
|
|
{
|
|
|
|
for (tdir = olddir; tdir <= DI_SOUTHEAST; ++tdir)
|
|
|
|
{
|
|
|
|
if (tdir != turnaround)
|
|
|
|
{
|
|
|
|
actor->movedir = tdir;
|
|
|
|
if (P_TryWalk (actor))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (tdir = DI_SOUTHEAST; tdir >= DI_EAST; --tdir)
|
|
|
|
{
|
|
|
|
if (tdir != turnaround)
|
|
|
|
{
|
|
|
|
actor->movedir = tdir;
|
|
|
|
if (P_TryWalk (actor))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
if (turnaround != DI_NODIR)
|
|
|
|
{
|
|
|
|
actor->movedir = turnaround;
|
|
|
|
if (P_TryWalk (actor))
|
|
|
|
{
|
|
|
|
actor->movecount = pr_newchasedir() & 15;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
actor->movedir = DI_NODIR; // cannot move
|
|
|
|
}
|
|
|
|
|
2009-09-16 15:54:04 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// P_IsVisible
|
|
|
|
//
|
|
|
|
// killough 9/9/98: whether a target is visible to a monster
|
|
|
|
// Extended to handle all A_LookEx related checking, too.
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
bool P_IsVisible(AActor *lookee, AActor *other, INTBOOL allaround, FLookExParams *params)
|
|
|
|
{
|
|
|
|
fixed_t maxdist;
|
|
|
|
fixed_t mindist;
|
|
|
|
angle_t fov;
|
|
|
|
|
|
|
|
if (params != NULL)
|
|
|
|
{
|
|
|
|
maxdist = params->maxdist;
|
|
|
|
mindist = params->mindist;
|
|
|
|
fov = params->fov;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mindist = maxdist = 0;
|
|
|
|
fov = allaround? 0 : ANGLE_180;
|
|
|
|
}
|
|
|
|
|
|
|
|
fixed_t dist = P_AproxDistance (other->x - lookee->x, other->y - lookee->y);
|
|
|
|
|
|
|
|
if (maxdist && dist > maxdist)
|
|
|
|
return false; // [KS] too far
|
|
|
|
|
|
|
|
if (mindist && dist < mindist)
|
|
|
|
return false; // [KS] too close
|
|
|
|
|
|
|
|
if (fov && fov < ANGLE_MAX)
|
|
|
|
{
|
|
|
|
angle_t an = R_PointToAngle2 (lookee->x, lookee->y, other->x, other->y) - lookee->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)
|
|
|
|
return false; // outside of fov
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// P_CheckSight is by far the most expensive operation in here so let's do it last.
|
2011-01-23 00:22:08 +00:00
|
|
|
return P_CheckSight(lookee, other, SF_SEEPASTSHOOTABLELINES);
|
2009-09-16 15:54:04 +00:00
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// FUNC P_LookForMonsters
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#define MONS_LOOK_RANGE (20*64*FRACUNIT)
|
|
|
|
#define MONS_LOOK_LIMIT 64
|
|
|
|
|
2006-09-14 00:02:31 +00:00
|
|
|
bool P_LookForMonsters (AActor *actor)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
int count;
|
|
|
|
AActor *mo;
|
|
|
|
TThinkerIterator<AActor> iterator;
|
|
|
|
|
2010-03-27 07:42:31 +00:00
|
|
|
if (!P_CheckSight (players[0].mo, actor, SF_SEEPASTBLOCKEVERYTHING))
|
2006-02-24 04:48:15 +00:00
|
|
|
{ // Player can't see monster
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
count = 0;
|
|
|
|
while ( (mo = iterator.Next ()) )
|
|
|
|
{
|
|
|
|
if (!(mo->flags3 & MF3_ISMONSTER) || (mo == actor) || (mo->health <= 0))
|
|
|
|
{ // Not a valid monster
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (P_AproxDistance (actor->x-mo->x, actor->y-mo->y)
|
|
|
|
> MONS_LOOK_RANGE)
|
|
|
|
{ // Out of range
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (pr_lookformonsters() < 16)
|
|
|
|
{ // Skip
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (++count >= MONS_LOOK_LIMIT)
|
|
|
|
{ // Stop searching
|
|
|
|
return false;
|
|
|
|
}
|
2010-04-04 03:03:01 +00:00
|
|
|
if (mo->GetSpecies() == actor->GetSpecies())
|
2006-02-24 04:48:15 +00:00
|
|
|
{ // [RH] Don't go after same species
|
|
|
|
continue;
|
|
|
|
}
|
2010-03-27 07:42:31 +00:00
|
|
|
if (!P_CheckSight (actor, mo, SF_SEEPASTBLOCKEVERYTHING))
|
2006-02-24 04:48:15 +00:00
|
|
|
{ // Out of sight
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Found a target monster
|
|
|
|
actor->target = mo;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
//
|
|
|
|
// LookForTIDinBlock
|
|
|
|
//
|
|
|
|
// Finds a target with the specified TID in a mapblock. Alternatively, it
|
|
|
|
// can find a target with a specified TID if something in this mapblock is
|
|
|
|
// already targetting it.
|
|
|
|
//
|
|
|
|
//============================================================================
|
|
|
|
|
2009-09-16 15:54:04 +00:00
|
|
|
AActor *LookForTIDInBlock (AActor *lookee, int index, void *extparams)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2009-09-16 15:54:04 +00:00
|
|
|
FLookExParams *params = (FLookExParams *)extparams;
|
2006-02-24 04:48:15 +00:00
|
|
|
FBlockNode *block;
|
|
|
|
AActor *link;
|
|
|
|
AActor *other;
|
|
|
|
|
|
|
|
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))
|
|
|
|
{
|
2009-09-16 15:54:04 +00:00
|
|
|
if (!P_IsVisible(lookee, other, true, params))
|
2006-02-24 04:48:15 +00:00
|
|
|
continue; // out of sight
|
|
|
|
}
|
|
|
|
|
|
|
|
return other;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
//
|
|
|
|
// P_LookForTID
|
|
|
|
//
|
|
|
|
// Selects a live monster with the given TID
|
|
|
|
//
|
|
|
|
//============================================================================
|
|
|
|
|
2009-09-16 15:54:04 +00:00
|
|
|
bool P_LookForTID (AActor *actor, INTBOOL allaround, FLookExParams *params)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
AActor *other;
|
2006-12-09 12:50:52 +00:00
|
|
|
bool reachedend = false;
|
2009-09-16 15:54:04 +00:00
|
|
|
bool chasegoal = params? (!(params->flags & LOF_DONTCHASEGOAL)) : true;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2009-09-16 15:54:04 +00:00
|
|
|
other = P_BlockmapSearch (actor, 0, LookForTIDInBlock, params);
|
2006-02-24 04:48:15 +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;
|
2006-02-24 04:48:15 +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)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-03-12 02:56:11 +00:00
|
|
|
actor->LastLookActor = NULL;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2008-03-12 02:56:11 +00:00
|
|
|
FActorIterator iterator (actor->TIDtoHate, actor->LastLookActor);
|
2006-02-24 04:48:15 +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)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
if (other == NULL)
|
2006-12-09 12:50:52 +00:00
|
|
|
{
|
|
|
|
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;
|
2006-02-24 04:48:15 +00:00
|
|
|
continue;
|
2006-12-09 12:50:52 +00:00
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
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))
|
|
|
|
{
|
2009-09-16 15:54:04 +00:00
|
|
|
if (!P_IsVisible (actor, other, !!allaround, params))
|
2006-02-24 04:48:15 +00:00
|
|
|
continue; // out of sight
|
|
|
|
}
|
|
|
|
|
|
|
|
// [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;
|
2006-02-24 04:48:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
2008-03-12 02:56:11 +00:00
|
|
|
actor->LastLookActor = other;
|
2006-02-24 04:48:15 +00:00
|
|
|
if (actor->target == NULL)
|
|
|
|
{
|
|
|
|
// [RH] use goal as target
|
2009-09-16 15:54:04 +00:00
|
|
|
if (actor->goal != NULL && chasegoal)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
2006-09-28 07:37:19 +00:00
|
|
|
if (!actor->IsFriend(actor->lastenemy))
|
|
|
|
{
|
|
|
|
actor->target = actor->lastenemy;
|
|
|
|
actor->lastenemy = NULL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
actor->lastenemy = NULL;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
//
|
2009-09-16 15:54:04 +00:00
|
|
|
// LookForEnemiesinBlock
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
// Finds a non-friendly monster in a mapblock. It can also use targets of
|
|
|
|
// friendlies in this mapblock to find non-friendlies in other mapblocks.
|
|
|
|
//
|
|
|
|
//============================================================================
|
|
|
|
|
2009-09-16 15:54:04 +00:00
|
|
|
AActor *LookForEnemiesInBlock (AActor *lookee, int index, void *extparam)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
FBlockNode *block;
|
|
|
|
AActor *link;
|
|
|
|
AActor *other;
|
2009-09-16 15:54:04 +00:00
|
|
|
FLookExParams *params = (FLookExParams *)extparam;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
2011-01-22 03:35:33 +00:00
|
|
|
if (!lookee->IsFriend(link))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// 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;
|
2006-03-03 03:57:01 +00:00
|
|
|
if (targ && targ->target == other && pr_skiptarget() > 100 && lookee->IsFriend (targ) &&
|
2009-07-04 18:17:44 +00:00
|
|
|
targ->health*2 >= targ->SpawnHealth())
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-16 15:54:04 +00:00
|
|
|
// [KS] Hey, shouldn't there be a check for MF3_NOSIGHTCHECK here?
|
|
|
|
|
|
|
|
if (other == NULL || !P_IsVisible (lookee, other, true, params))
|
2006-02-24 04:48:15 +00:00
|
|
|
continue; // out of sight
|
2009-09-16 15:54:04 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
return other;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
//
|
|
|
|
// P_LookForEnemies
|
|
|
|
//
|
|
|
|
// Selects a live enemy monster
|
|
|
|
//
|
|
|
|
//============================================================================
|
|
|
|
|
2009-09-16 15:54:04 +00:00
|
|
|
bool P_LookForEnemies (AActor *actor, INTBOOL allaround, FLookExParams *params)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
AActor *other;
|
|
|
|
|
2009-09-16 15:54:04 +00:00
|
|
|
other = P_BlockmapSearch (actor, 10, LookForEnemiesInBlock, params);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2006-09-28 07:37:19 +00:00
|
|
|
// Use last known enemy if no hatee sighted -- killough 2/15/98:
|
2006-02-24 04:48:15 +00:00
|
|
|
if (actor->lastenemy != NULL && actor->lastenemy->health > 0)
|
|
|
|
{
|
2006-09-28 07:37:19 +00:00
|
|
|
if (!actor->IsFriend(actor->lastenemy))
|
|
|
|
{
|
|
|
|
actor->target = actor->lastenemy;
|
|
|
|
actor->lastenemy = NULL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
actor->lastenemy = NULL;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
================
|
|
|
|
=
|
|
|
|
= P_LookForPlayers
|
|
|
|
=
|
|
|
|
= If allaround is false, only look 180 degrees in front
|
|
|
|
= returns true if a player is targeted
|
|
|
|
================
|
|
|
|
*/
|
|
|
|
|
2009-09-16 15:54:04 +00:00
|
|
|
bool P_LookForPlayers (AActor *actor, INTBOOL allaround, FLookExParams *params)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
int c;
|
|
|
|
int stop;
|
|
|
|
int pnum;
|
|
|
|
player_t* player;
|
2009-09-16 15:54:04 +00:00
|
|
|
bool chasegoal = params? (!(params->flags & LOF_DONTCHASEGOAL)) : true;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (actor->TIDtoHate != 0)
|
|
|
|
{
|
2009-09-16 15:54:04 +00:00
|
|
|
if (P_LookForTID (actor, allaround, params))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!(actor->flags3 & MF3_HUNTPLAYERS))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (actor->flags & MF_FRIENDLY)
|
|
|
|
{
|
2009-09-16 15:54:04 +00:00
|
|
|
bool result = P_LookForEnemies (actor, allaround, params);
|
|
|
|
|
|
|
|
#ifdef MBF_FRIENDS
|
|
|
|
if (!result && (actor->flags & MF_FRIEND_MBF))
|
|
|
|
{ // killough 9/9/98: friendly monsters go about players differently
|
|
|
|
|
|
|
|
// Go back to a player, no matter whether it's visible or not
|
|
|
|
for (int anyone=0; anyone<=1; anyone++)
|
|
|
|
{
|
|
|
|
for (int c=0; c<MAXPLAYERS; c++)
|
|
|
|
{
|
|
|
|
if (playeringame[c] && players[c].playerstate==PST_LIVE &&
|
|
|
|
actor->IsFriend(players[c].mo) &&
|
|
|
|
(anyone || P_IsVisible(actor, players[c].mo, allaround)))
|
|
|
|
{
|
|
|
|
actor->target = players[c].mo;
|
|
|
|
|
|
|
|
// killough 12/98:
|
|
|
|
// get out of refiring loop, to avoid hitting player accidentally
|
|
|
|
|
|
|
|
if (actor->MissileState != NULL)
|
|
|
|
{
|
2010-08-11 06:31:47 +00:00
|
|
|
actor->SetState(actor->SeeState, true);
|
2009-09-16 15:54:04 +00:00
|
|
|
actor->flags &= ~MF_JUSTHIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
// [SP] If you don't see any enemies in deathmatch, look for players (but only when friend to a specific player.)
|
2011-01-22 03:35:33 +00:00
|
|
|
if (actor->FriendPlayer == 0 && (!teamplay || actor->DesignatedTeam == TEAM_NONE)) return result;
|
2009-09-16 15:54:04 +00:00
|
|
|
if (result || !deathmatch) return true;
|
|
|
|
|
|
|
|
|
2009-05-02 09:14:01 +00:00
|
|
|
} // [SP] if false, and in deathmatch, intentional fall-through
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-08-30 19:44:19 +00:00
|
|
|
if (!(gameinfo.gametype & (GAME_DoomStrifeChex)) &&
|
2006-02-24 04:48:15 +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;
|
2006-02-24 04:48:15 +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;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (++c == MAXPLAYERS-1 || pnum == stop)
|
|
|
|
{
|
|
|
|
// done looking
|
|
|
|
if (actor->target == NULL)
|
|
|
|
{
|
|
|
|
// [RH] use goal as target
|
2009-09-16 15:54:04 +00:00
|
|
|
// [KS] ...unless we're ignoring goals and we don't already have one
|
|
|
|
if (actor->goal != NULL && chasegoal)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
actor->target = actor->goal;
|
|
|
|
return true;
|
|
|
|
}
|
2006-10-04 07:45:44 +00:00
|
|
|
// Use last known enemy if no players sighted -- killough 2/15/98:
|
2006-02-24 04:48:15 +00:00
|
|
|
if (actor->lastenemy != NULL && actor->lastenemy->health > 0)
|
|
|
|
{
|
2006-09-28 07:37:19 +00:00
|
|
|
if (!actor->IsFriend(actor->lastenemy))
|
|
|
|
{
|
|
|
|
actor->target = actor->lastenemy;
|
|
|
|
actor->lastenemy = NULL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
actor->lastenemy = NULL;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
|
|
2009-09-16 15:54:04 +00:00
|
|
|
if (!P_IsVisible (actor, player->mo, allaround, params))
|
2006-02-24 04:48:15 +00:00
|
|
|
continue; // out of sight
|
|
|
|
|
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 )
|
|
|
|
{
|
2011-01-22 03:35:33 +00:00
|
|
|
if ( actor->IsFriend(player->mo) )
|
|
|
|
continue;
|
2009-05-02 09:14:01 +00:00
|
|
|
}
|
|
|
|
|
2011-05-26 23:25:02 +00:00
|
|
|
// [RC] Well, let's let special monsters with this flag active be able to see
|
|
|
|
// the player then, eh?
|
|
|
|
if(!(actor->flags & MF6_SEEINVISIBLE))
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
&& P_AproxDistance (player->mo->velx, player->mo->vely)
|
|
|
|
< 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;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// [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.
|
|
|
|
//
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_Look)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
AActor *targ;
|
|
|
|
|
2009-02-22 10:25:12 +00:00
|
|
|
if (self->flags5 & MF5_INCONVERSATION)
|
|
|
|
return;
|
|
|
|
|
2006-02-24 04:48:15 +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)
|
2006-02-24 04:48:15 +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;
|
2009-02-07 01:37:06 +00:00
|
|
|
if (self->args[3] == 0) self->flags5 &= ~MF5_CHASEGOAL;
|
2008-08-10 20:48:55 +00:00
|
|
|
else self->flags5 |= MF5_CHASEGOAL;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
self->threshold = 0; // any shot will wake up
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
if (self->TIDtoHate != 0)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
targ = self->target;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
targ = (i_compatflags & COMPATF_SOUNDTARGET || self->flags & MF_NOSECTOR)?
|
|
|
|
self->Sector->SoundTarget : self->LastHeard;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// [RH] If the soundtarget is dead, don't chase it
|
|
|
|
if (targ != NULL && targ->health <= 0)
|
|
|
|
{
|
|
|
|
targ = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
self->visdir = -1;
|
2006-02-24 04:48:15 +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!
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// If we find a valid target here, the wandering logic should *not*
|
2009-02-07 01:37:06 +00:00
|
|
|
// be activated! It would cause the seestate to be set twice.
|
2009-09-16 15:54:04 +00:00
|
|
|
if (P_LookForPlayers (self, self->flags4 & MF4_LOOKALLAROUND, NULL))
|
2006-02-24 04:48:15 +00:00
|
|
|
goto seeyou;
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
// Let the self wander around aimlessly looking for a fight
|
|
|
|
if (self->SeeState != NULL)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2009-02-04 02:29:59 +00:00
|
|
|
self->SetState (self->SeeState);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-08-10 22:48:37 +00:00
|
|
|
CALL_ACTION(A_Wander, self);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
self->target = targ;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
if (self->flags & MF_AMBUSH)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2010-03-27 07:42:31 +00:00
|
|
|
if (P_CheckSight (self, self->target, SF_SEEPASTBLOCKEVERYTHING))
|
2006-02-24 04:48:15 +00:00
|
|
|
goto seeyou;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
goto seeyou;
|
|
|
|
}
|
|
|
|
}
|
2009-02-07 01:37:06 +00:00
|
|
|
|
2009-09-16 15:54:04 +00:00
|
|
|
if (!P_LookForPlayers (self, self->flags4 & MF4_LOOKALLAROUND, NULL))
|
2006-02-24 04:48:15 +00:00
|
|
|
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)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
if (self->reactiontime > level.maptime)
|
|
|
|
self->target = NULL;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2008-08-10 20:48:55 +00:00
|
|
|
else if (self->SeeSound)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
if (self->flags2 & MF2_BOSS)
|
2006-02-24 04:48:15 +00:00
|
|
|
{ // full volume
|
2008-08-10 20:48:55 +00:00
|
|
|
S_Sound (self, CHAN_VOICE, self->SeeSound, 1, ATTN_NONE);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
S_Sound (self, CHAN_VOICE, self->SeeSound, 1, ATTN_NORM);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-04 02:29:59 +00:00
|
|
|
if (self->target)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
self->SetState (self->SeeState);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-24 14:26:06 +00:00
|
|
|
|
2009-09-16 15:54:04 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_LookEx)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
ACTION_PARAM_STATE(seestate, 5);
|
|
|
|
|
|
|
|
AActor *targ = NULL; // Shuts up gcc
|
|
|
|
fixed_t dist;
|
|
|
|
FLookExParams params = {fov, minseedist, maxseedist, maxheardist, flags, seestate };
|
|
|
|
|
|
|
|
if (self->flags5 & MF5_INCONVERSATION)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// [RH] Set goal now if appropriate
|
|
|
|
if (self->special == Thing_SetGoal && self->args[0] == 0)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
self->threshold = 0; // any shot will wake up
|
|
|
|
|
|
|
|
if (self->TIDtoHate != 0)
|
|
|
|
{
|
|
|
|
targ = self->target;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!(flags & LOF_NOSOUNDCHECK))
|
|
|
|
{
|
2009-09-16 23:21:16 +00:00
|
|
|
targ = (self->flags & MF_NOSECTOR)? self->Sector->SoundTarget : self->LastHeard;
|
2009-09-16 15:54:04 +00:00
|
|
|
if (targ != NULL)
|
|
|
|
{
|
|
|
|
// [RH] If the soundtarget is dead, don't chase it
|
|
|
|
if (targ->health <= 0)
|
|
|
|
{
|
|
|
|
targ = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dist = P_AproxDistance (targ->x - self->x,
|
|
|
|
targ->y - self->y);
|
|
|
|
|
|
|
|
// [KS] If the target is too far away, don't respond to the sound.
|
|
|
|
if (maxheardist && dist > maxheardist)
|
|
|
|
{
|
|
|
|
targ = NULL;
|
|
|
|
self->LastHeard = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (targ && targ->player && (targ->player->cheats & CF_NOTARGET))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// [RH] Andy Baker's stealth monsters
|
|
|
|
if (self->flags & MF_STEALTH)
|
|
|
|
{
|
|
|
|
self->visdir = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (targ && (targ->flags & MF_SHOOTABLE))
|
|
|
|
{
|
|
|
|
if (self->IsFriend (targ)) // be a little more precise!
|
|
|
|
{
|
|
|
|
if (!(self->flags4 & MF4_STANDSTILL))
|
|
|
|
{
|
|
|
|
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.
|
|
|
|
if (P_LookForPlayers(self, true, ¶ms))
|
|
|
|
goto seeyou;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Let the self wander around aimlessly looking for a fight
|
|
|
|
if (!(self->flags & MF_INCHASE))
|
|
|
|
{
|
|
|
|
if (seestate)
|
|
|
|
{
|
|
|
|
self->SetState (seestate);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (self->SeeState != NULL)
|
|
|
|
{
|
|
|
|
self->SetState (self->SeeState);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CALL_ACTION(A_Wander, self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
self->target = targ; //We already have a target?
|
|
|
|
|
|
|
|
// [KS] The target can become ourselves in rare circumstances (like
|
|
|
|
// if we committed suicide), so if that's the case, just ignore it.
|
|
|
|
if (self->target == self) self->target = NULL;
|
|
|
|
|
|
|
|
if (self->target != NULL)
|
|
|
|
{
|
|
|
|
if (self->flags & MF_AMBUSH)
|
|
|
|
{
|
|
|
|
dist = P_AproxDistance (self->target->x - self->x,
|
|
|
|
self->target->y - self->y);
|
2010-03-27 07:42:31 +00:00
|
|
|
if (P_CheckSight (self, self->target, SF_SEEPASTBLOCKEVERYTHING) &&
|
2009-09-16 15:54:04 +00:00
|
|
|
(!minseedist || dist > minseedist) &&
|
|
|
|
(!maxseedist || dist < maxseedist))
|
|
|
|
{
|
|
|
|
goto seeyou;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
goto seeyou;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(flags & LOF_NOSIGHTCHECK))
|
|
|
|
{
|
|
|
|
if (!P_LookForPlayers(self, true, ¶ms))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// go into chase state
|
|
|
|
seeyou:
|
|
|
|
// [RH] Don't start chasing after a goal if it isn't time yet.
|
|
|
|
if (self->target == self->goal)
|
|
|
|
{
|
|
|
|
if (self->reactiontime > level.maptime)
|
|
|
|
self->target = NULL;
|
|
|
|
}
|
|
|
|
else if (self->SeeSound && !(flags & LOF_NOSEESOUND))
|
|
|
|
{
|
|
|
|
if (flags & LOF_FULLVOLSEESOUND)
|
|
|
|
{ // full volume
|
|
|
|
S_Sound (self, CHAN_VOICE, self->SeeSound, 1, ATTN_NONE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
S_Sound (self, CHAN_VOICE, self->SeeSound, 1, ATTN_NORM);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->target && !(self->flags & MF_INCHASE))
|
|
|
|
{
|
2010-08-28 20:22:35 +00:00
|
|
|
if (!(flags & LOF_NOJUMP))
|
|
|
|
{
|
|
|
|
if (seestate)
|
|
|
|
{
|
|
|
|
self->SetState (seestate);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
self->SetState (self->SeeState);
|
|
|
|
}
|
|
|
|
}
|
2009-09-16 15:54:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// [KS] *** End additions by me ***
|
|
|
|
|
2012-03-22 21:40:26 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// A_ClearLastHeard
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_ClearLastHeard)
|
|
|
|
{
|
|
|
|
self->LastHeard = NULL;
|
|
|
|
}
|
|
|
|
|
2006-04-24 14:26:06 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// A_Wander
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_Wander)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// [RH] Strife probably clears this flag somewhere, but I couldn't find where.
|
|
|
|
// This seems as good a place as any.
|
|
|
|
self->flags4 &= ~MF4_INCOMBAT;
|
|
|
|
|
2009-02-22 10:25:12 +00:00
|
|
|
if (self->flags5 & MF5_INCONVERSATION)
|
|
|
|
return;
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
if (self->flags4 & MF4_STANDSTILL)
|
|
|
|
return;
|
|
|
|
|
- Updated lempar.c to v1.31.
- Added .txt files to the list of types (wad, zip, and pk3) that can be
loaded without listing them after -file.
- Fonts that are created by the ACS setfont command to wrap a texture now
support animated textures.
- FON2 fonts can now use their full palette for CR_UNTRANSLATED when drawn
with the hardware 2D path instead of being restricted to the game palette.
- Fixed: Toggling vid_vsync would reset the displayed fullscreen gamma to 1
on a Radeon 9000.
- Added back the off-by-one palette handling, but in a much more limited
scope than before. The skipped entry is assumed to always be at 248, and
it is assumed that all Shader Model 1.4 cards suffer from this. That's
because all SM1.4 cards are based on variants of the ATI R200 core, and the
RV250 in a Radeon 9000 craps up like this. I see no reason to assume that
other flavors of the R200 are any different. (Interesting note: With the
Radeon 9000, D3DTADDRESS_CLAMP is an invalid address mode when using the
debug Direct3D 9 runtime, but it works perfectly fine with the retail
Direct3D 9 runtime.) (Insight: The R200 probably uses bytes for all its
math inside pixel shaders. That would explain perfectly why I can't use
constants greater than 1 with PS1.4 and why it can't do an exact mapping to
every entry in the color palette.
- Fixed: The software shaded drawer did not work for 2D, because its selected
"color"map was replaced with the identitymap before being used.
- Fixed: I cannot use Printf to output messages before the framebuffer was
completely setup, meaning that Shader Model 1.4 cards could not change
resolution.
- I have decided to let remap palettes specify variable alpha values for
their colors. D3DFB no longer forces them to 255.
- Updated re2c to version 0.12.3.
- Fixed: A_Wander used threshold as a timer, when it should have used
reactiontime.
- Fixed: A_CustomRailgun would not fire at all for actors without a target
when the aim parameter was disabled.
- Made the warp command work in multiplayer, again courtesy of Karate Chris.
- Fixed: Trying to spawn a bot while not in a game made for a crashing time.
(Patch courtesy of Karate Chris.)
- Removed some floating point math from hu_scores.cpp that somebody's GCC
gave warnings for (not mine, though).
- Fixed: The SBarInfo drawbar command crashed if the sprite image was
unavailable.
- Fixed: FString::operator=(const char *) did not release its old buffer when
being assigned to the null string.
- The scanner no longer has an upper limit on the length of strings it
accepts, though short strings will be faster than long ones.
- Moved all the text scanning functions into a class. Mainly, this means that
multiple script scanner states can be stored without being forced to do so
recursively. I think I might be taking advantage of that in the near
future. Possibly. Maybe.
- Removed some potential buffer overflows from the decal parser.
- Applied Blzut3's SBARINFO update #9:
* Fixed: When using even length values in drawnumber it would cap to a 98
value instead of a 99 as intended.
* The SBarInfo parser can now accept negatives for coordinates. This
doesn't allow much right now, but later I plan to add better fullscreen
hud support in which the negatives will be more useful. This also cleans
up the source a bit since all calls for (x, y) coordinates are with the
function getCoordinates().
- Added support for stencilling actors.
- Added support for non-black colors specified with DTA_ColorOverlay to the
software renderer.
- Fixed: The inverse, gold, red, and green fixed colormaps each allocated
space for 32 different colormaps, even though each only used the first one.
- Added two new blending flags to make reverse subtract blending more useful:
STYLEF_InvertSource and STYLEF_InvertOverlay. These invert the color that
gets blended with the background, since that seems like a good idea for
reverse subtraction. They also work with the other two blending operations.
- Added subtract and reverse subtract blending operations to the renderer.
Since the ERenderStyle enumeration was getting rather unwieldy, I converted
it into a new FRenderStyle structure that lets each parameter of the
blending equation be set separately. This simplified the set up for the
blend quite a bit, and it means a number of new combinations are available
by setting the parameters properly.
SVN r710 (trunk)
2008-01-25 23:57:44 +00:00
|
|
|
if (self->reactiontime != 0)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
- Updated lempar.c to v1.31.
- Added .txt files to the list of types (wad, zip, and pk3) that can be
loaded without listing them after -file.
- Fonts that are created by the ACS setfont command to wrap a texture now
support animated textures.
- FON2 fonts can now use their full palette for CR_UNTRANSLATED when drawn
with the hardware 2D path instead of being restricted to the game palette.
- Fixed: Toggling vid_vsync would reset the displayed fullscreen gamma to 1
on a Radeon 9000.
- Added back the off-by-one palette handling, but in a much more limited
scope than before. The skipped entry is assumed to always be at 248, and
it is assumed that all Shader Model 1.4 cards suffer from this. That's
because all SM1.4 cards are based on variants of the ATI R200 core, and the
RV250 in a Radeon 9000 craps up like this. I see no reason to assume that
other flavors of the R200 are any different. (Interesting note: With the
Radeon 9000, D3DTADDRESS_CLAMP is an invalid address mode when using the
debug Direct3D 9 runtime, but it works perfectly fine with the retail
Direct3D 9 runtime.) (Insight: The R200 probably uses bytes for all its
math inside pixel shaders. That would explain perfectly why I can't use
constants greater than 1 with PS1.4 and why it can't do an exact mapping to
every entry in the color palette.
- Fixed: The software shaded drawer did not work for 2D, because its selected
"color"map was replaced with the identitymap before being used.
- Fixed: I cannot use Printf to output messages before the framebuffer was
completely setup, meaning that Shader Model 1.4 cards could not change
resolution.
- I have decided to let remap palettes specify variable alpha values for
their colors. D3DFB no longer forces them to 255.
- Updated re2c to version 0.12.3.
- Fixed: A_Wander used threshold as a timer, when it should have used
reactiontime.
- Fixed: A_CustomRailgun would not fire at all for actors without a target
when the aim parameter was disabled.
- Made the warp command work in multiplayer, again courtesy of Karate Chris.
- Fixed: Trying to spawn a bot while not in a game made for a crashing time.
(Patch courtesy of Karate Chris.)
- Removed some floating point math from hu_scores.cpp that somebody's GCC
gave warnings for (not mine, though).
- Fixed: The SBarInfo drawbar command crashed if the sprite image was
unavailable.
- Fixed: FString::operator=(const char *) did not release its old buffer when
being assigned to the null string.
- The scanner no longer has an upper limit on the length of strings it
accepts, though short strings will be faster than long ones.
- Moved all the text scanning functions into a class. Mainly, this means that
multiple script scanner states can be stored without being forced to do so
recursively. I think I might be taking advantage of that in the near
future. Possibly. Maybe.
- Removed some potential buffer overflows from the decal parser.
- Applied Blzut3's SBARINFO update #9:
* Fixed: When using even length values in drawnumber it would cap to a 98
value instead of a 99 as intended.
* The SBarInfo parser can now accept negatives for coordinates. This
doesn't allow much right now, but later I plan to add better fullscreen
hud support in which the negatives will be more useful. This also cleans
up the source a bit since all calls for (x, y) coordinates are with the
function getCoordinates().
- Added support for stencilling actors.
- Added support for non-black colors specified with DTA_ColorOverlay to the
software renderer.
- Fixed: The inverse, gold, red, and green fixed colormaps each allocated
space for 32 different colormaps, even though each only used the first one.
- Added two new blending flags to make reverse subtract blending more useful:
STYLEF_InvertSource and STYLEF_InvertOverlay. These invert the color that
gets blended with the background, since that seems like a good idea for
reverse subtraction. They also work with the other two blending operations.
- Added subtract and reverse subtract blending operations to the renderer.
Since the ERenderStyle enumeration was getting rather unwieldy, I converted
it into a new FRenderStyle structure that lets each parameter of the
blending equation be set separately. This simplified the set up for the
blend quite a bit, and it means a number of new combinations are available
by setting the parameters properly.
SVN r710 (trunk)
2008-01-25 23:57:44 +00:00
|
|
|
self->reactiontime--;
|
2006-02-24 04:48:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// turn towards movement direction if not there yet
|
|
|
|
if (self->movedir < DI_NODIR)
|
|
|
|
{
|
|
|
|
self->angle &= (angle_t)(7<<29);
|
- Updated lempar.c to v1.31.
- Added .txt files to the list of types (wad, zip, and pk3) that can be
loaded without listing them after -file.
- Fonts that are created by the ACS setfont command to wrap a texture now
support animated textures.
- FON2 fonts can now use their full palette for CR_UNTRANSLATED when drawn
with the hardware 2D path instead of being restricted to the game palette.
- Fixed: Toggling vid_vsync would reset the displayed fullscreen gamma to 1
on a Radeon 9000.
- Added back the off-by-one palette handling, but in a much more limited
scope than before. The skipped entry is assumed to always be at 248, and
it is assumed that all Shader Model 1.4 cards suffer from this. That's
because all SM1.4 cards are based on variants of the ATI R200 core, and the
RV250 in a Radeon 9000 craps up like this. I see no reason to assume that
other flavors of the R200 are any different. (Interesting note: With the
Radeon 9000, D3DTADDRESS_CLAMP is an invalid address mode when using the
debug Direct3D 9 runtime, but it works perfectly fine with the retail
Direct3D 9 runtime.) (Insight: The R200 probably uses bytes for all its
math inside pixel shaders. That would explain perfectly why I can't use
constants greater than 1 with PS1.4 and why it can't do an exact mapping to
every entry in the color palette.
- Fixed: The software shaded drawer did not work for 2D, because its selected
"color"map was replaced with the identitymap before being used.
- Fixed: I cannot use Printf to output messages before the framebuffer was
completely setup, meaning that Shader Model 1.4 cards could not change
resolution.
- I have decided to let remap palettes specify variable alpha values for
their colors. D3DFB no longer forces them to 255.
- Updated re2c to version 0.12.3.
- Fixed: A_Wander used threshold as a timer, when it should have used
reactiontime.
- Fixed: A_CustomRailgun would not fire at all for actors without a target
when the aim parameter was disabled.
- Made the warp command work in multiplayer, again courtesy of Karate Chris.
- Fixed: Trying to spawn a bot while not in a game made for a crashing time.
(Patch courtesy of Karate Chris.)
- Removed some floating point math from hu_scores.cpp that somebody's GCC
gave warnings for (not mine, though).
- Fixed: The SBarInfo drawbar command crashed if the sprite image was
unavailable.
- Fixed: FString::operator=(const char *) did not release its old buffer when
being assigned to the null string.
- The scanner no longer has an upper limit on the length of strings it
accepts, though short strings will be faster than long ones.
- Moved all the text scanning functions into a class. Mainly, this means that
multiple script scanner states can be stored without being forced to do so
recursively. I think I might be taking advantage of that in the near
future. Possibly. Maybe.
- Removed some potential buffer overflows from the decal parser.
- Applied Blzut3's SBARINFO update #9:
* Fixed: When using even length values in drawnumber it would cap to a 98
value instead of a 99 as intended.
* The SBarInfo parser can now accept negatives for coordinates. This
doesn't allow much right now, but later I plan to add better fullscreen
hud support in which the negatives will be more useful. This also cleans
up the source a bit since all calls for (x, y) coordinates are with the
function getCoordinates().
- Added support for stencilling actors.
- Added support for non-black colors specified with DTA_ColorOverlay to the
software renderer.
- Fixed: The inverse, gold, red, and green fixed colormaps each allocated
space for 32 different colormaps, even though each only used the first one.
- Added two new blending flags to make reverse subtract blending more useful:
STYLEF_InvertSource and STYLEF_InvertOverlay. These invert the color that
gets blended with the background, since that seems like a good idea for
reverse subtraction. They also work with the other two blending operations.
- Added subtract and reverse subtract blending operations to the renderer.
Since the ERenderStyle enumeration was getting rather unwieldy, I converted
it into a new FRenderStyle structure that lets each parameter of the
blending equation be set separately. This simplified the set up for the
blend quite a bit, and it means a number of new combinations are available
by setting the parameters properly.
SVN r710 (trunk)
2008-01-25 23:57:44 +00:00
|
|
|
int delta = self->angle - (self->movedir << 29);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (delta > 0)
|
|
|
|
{
|
|
|
|
self->angle -= ANG90/2;
|
|
|
|
}
|
|
|
|
else if (delta < 0)
|
|
|
|
{
|
|
|
|
self->angle += ANG90/2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (--self->movecount < 0 || !P_Move (self))
|
|
|
|
{
|
|
|
|
P_RandomChaseDir (self);
|
|
|
|
self->movecount += 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-24 14:26:06 +00:00
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// A_Look2
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_Look2)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
AActor *targ;
|
|
|
|
|
2009-02-22 10:25:12 +00:00
|
|
|
if (self->flags5 & MF5_INCONVERSATION)
|
|
|
|
return;
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
self->threshold = 0;
|
|
|
|
targ = self->LastHeard;
|
|
|
|
|
|
|
|
if (targ != NULL && targ->health <= 0)
|
|
|
|
{
|
|
|
|
targ = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (targ && (targ->flags & MF_SHOOTABLE))
|
|
|
|
{
|
|
|
|
if ((level.flags & LEVEL_NOALLIES) ||
|
|
|
|
(self->flags & MF_FRIENDLY) != (targ->flags & MF_FRIENDLY))
|
|
|
|
{
|
|
|
|
if (self->flags & MF_AMBUSH)
|
|
|
|
{
|
2010-03-27 07:42:31 +00:00
|
|
|
if (!P_CheckSight (self, targ, SF_SEEPASTBLOCKEVERYTHING))
|
2006-02-24 04:48:15 +00:00
|
|
|
goto nosee;
|
|
|
|
}
|
|
|
|
self->target = targ;
|
|
|
|
self->threshold = 10;
|
|
|
|
self->SetState (self->SeeState);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-09-16 15:54:04 +00:00
|
|
|
if (!P_LookForPlayers (self, self->flags4 & MF4_LOOKALLAROUND, NULL))
|
2006-02-24 04:48:15 +00:00
|
|
|
goto nosee;
|
|
|
|
self->SetState (self->SeeState);
|
|
|
|
self->flags4 |= MF4_INCOMBAT;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nosee:
|
|
|
|
if (pr_look2() < 30)
|
|
|
|
{
|
|
|
|
self->SetState (self->SpawnState + (pr_look2() & 1) + 1);
|
|
|
|
}
|
|
|
|
if (!(self->flags4 & MF4_STANDSTILL) && pr_look2() < 40)
|
|
|
|
{
|
|
|
|
self->SetState (self->SpawnState + 3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-05 22:08:57 +00:00
|
|
|
//=============================================================================
|
|
|
|
//
|
|
|
|
// A_Chase
|
|
|
|
//
|
|
|
|
// Actor has a melee attack, so it tries to close as fast as possible
|
|
|
|
//
|
2006-02-24 04:48:15 +00:00
|
|
|
// [GrafZahl] integrated A_FastChase, A_SerpentChase and A_SerpentWalk into this
|
|
|
|
// to allow the monsters using those functions to take advantage of the
|
|
|
|
// enhancements.
|
|
|
|
//
|
|
|
|
//=============================================================================
|
|
|
|
#define CLASS_BOSS_STRAFE_RANGE 64*10*FRACUNIT
|
|
|
|
|
2007-10-29 20:27:40 +00:00
|
|
|
void A_DoChase (AActor *actor, bool fastchase, FState *meleestate, FState *missilestate, bool playactive, bool nightmarefast, bool dontmove)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
int delta;
|
|
|
|
|
2009-02-22 10:25:12 +00:00
|
|
|
if (actor->flags5 & MF5_INCONVERSATION)
|
|
|
|
return;
|
|
|
|
|
2009-02-04 02:29:59 +00:00
|
|
|
if (actor->flags & MF_INCHASE)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
actor->flags |= MF_INCHASE;
|
|
|
|
|
|
|
|
// [RH] Andy Baker's stealth monsters
|
|
|
|
if (actor->flags & MF_STEALTH)
|
|
|
|
{
|
|
|
|
actor->visdir = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (actor->reactiontime)
|
|
|
|
{
|
|
|
|
actor->reactiontime--;
|
|
|
|
}
|
|
|
|
|
|
|
|
// [RH] Don't chase invisible targets
|
|
|
|
if (actor->target != NULL &&
|
|
|
|
actor->target->renderflags & RF_INVISIBLE &&
|
|
|
|
actor->target != actor->goal)
|
|
|
|
{
|
|
|
|
actor->target = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// modify target threshold
|
|
|
|
if (actor->threshold)
|
|
|
|
{
|
|
|
|
if (actor->target == NULL || actor->target->health <= 0)
|
|
|
|
{
|
|
|
|
actor->threshold = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
actor->threshold--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-29 22:15:46 +00:00
|
|
|
if (nightmarefast && G_SkillProperty(SKILLP_FastMonsters))
|
2006-02-24 04:48:15 +00:00
|
|
|
{ // Monsters move faster in nightmare mode
|
2010-09-19 10:39:34 +00:00
|
|
|
if (actor->tics > 3)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2010-09-19 10:39:34 +00:00
|
|
|
actor->tics -= actor->tics / 2;
|
|
|
|
if (actor->tics < 3)
|
|
|
|
{
|
|
|
|
actor->tics = 3;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// turn towards movement direction if not there yet
|
2009-09-16 21:03:09 +00:00
|
|
|
if (actor->strafecount)
|
|
|
|
{
|
|
|
|
A_FaceTarget(actor);
|
|
|
|
}
|
|
|
|
else if (actor->movedir < 8)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
actor->angle &= (angle_t)(7<<29);
|
|
|
|
delta = actor->angle - (actor->movedir << 29);
|
|
|
|
if (delta > 0)
|
|
|
|
{
|
|
|
|
actor->angle -= ANG90/2;
|
|
|
|
}
|
|
|
|
else if (delta < 0)
|
|
|
|
{
|
|
|
|
actor->angle += ANG90/2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-28 07:37:19 +00:00
|
|
|
// [RH] If the target is dead or a friend (and not a goal), stop chasing it.
|
|
|
|
if (actor->target && actor->target != actor->goal && (actor->target->health <= 0 || actor->IsFriend(actor->target)))
|
2006-02-24 04:48:15 +00:00
|
|
|
actor->target = NULL;
|
|
|
|
|
|
|
|
// [RH] Friendly monsters will consider chasing whoever hurts a player if they
|
|
|
|
// don't already have a target.
|
|
|
|
if (actor->flags & MF_FRIENDLY && actor->target == NULL)
|
|
|
|
{
|
|
|
|
player_t *player;
|
|
|
|
|
|
|
|
if (actor->FriendPlayer != 0)
|
|
|
|
{
|
|
|
|
player = &players[actor->FriendPlayer - 1];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
if (!multiplayer)
|
|
|
|
{
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
else for (i = pr_newchasedir() & (MAXPLAYERS-1); !playeringame[i]; i = (i+1) & (MAXPLAYERS-1))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
player = &players[i];
|
|
|
|
}
|
|
|
|
if (player->attacker && player->attacker->health > 0 && player->attacker->flags & MF_SHOOTABLE && pr_newchasedir() < 80)
|
|
|
|
{
|
|
|
|
if (!(player->attacker->flags & MF_FRIENDLY) ||
|
|
|
|
(deathmatch && actor->FriendPlayer != 0 && player->attacker->FriendPlayer != 0 &&
|
|
|
|
actor->FriendPlayer != player->attacker->FriendPlayer))
|
|
|
|
{
|
|
|
|
actor->target = player->attacker;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!actor->target || !(actor->target->flags & MF_SHOOTABLE))
|
|
|
|
{ // look for a new target
|
2008-05-31 03:39:57 +00:00
|
|
|
if (actor->target != NULL && (actor->target->flags2 & MF2_NONSHOOTABLE))
|
|
|
|
{
|
|
|
|
// Target is only temporarily unshootable, so remember it.
|
|
|
|
actor->lastenemy = actor->target;
|
|
|
|
// Switch targets faster, since we're only changing because we can't
|
|
|
|
// hurt our old one temporarily.
|
|
|
|
actor->threshold = 0;
|
|
|
|
}
|
2009-09-16 15:54:04 +00:00
|
|
|
if (P_LookForPlayers (actor, true, NULL) && actor->target != actor->goal)
|
2006-02-24 04:48:15 +00:00
|
|
|
{ // got a new target
|
|
|
|
actor->flags &= ~MF_INCHASE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (actor->target == NULL)
|
|
|
|
{
|
|
|
|
if (actor->flags & MF_FRIENDLY)
|
|
|
|
{
|
2009-02-07 01:37:06 +00:00
|
|
|
//CALL_ACTION(A_Look, actor);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (actor->target == NULL)
|
|
|
|
{
|
2008-08-10 22:48:37 +00:00
|
|
|
if (!dontmove) CALL_ACTION(A_Wander, actor);
|
2006-02-24 04:48:15 +00:00
|
|
|
actor->flags &= ~MF_INCHASE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-04-03 10:49:54 +00:00
|
|
|
actor->SetIdle();
|
2006-02-24 04:48:15 +00:00
|
|
|
actor->flags &= ~MF_INCHASE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// do not attack twice in a row
|
|
|
|
if (actor->flags & MF_JUSTATTACKED)
|
|
|
|
{
|
|
|
|
actor->flags &= ~MF_JUSTATTACKED;
|
2008-03-01 13:12:33 +00:00
|
|
|
if (!actor->isFast() && !dontmove)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
P_NewChaseDir (actor);
|
|
|
|
}
|
|
|
|
actor->flags &= ~MF_INCHASE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// [RH] Don't attack if just moving toward goal
|
2006-05-13 12:41:15 +00:00
|
|
|
if (actor->target == actor->goal || (actor->flags5&MF5_CHASEGOAL && actor->goal != NULL))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-05-13 12:41:15 +00:00
|
|
|
AActor * savedtarget = actor->target;
|
|
|
|
actor->target = actor->goal;
|
|
|
|
bool result = actor->CheckMeleeRange();
|
|
|
|
actor->target = savedtarget;
|
|
|
|
|
|
|
|
if (result)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// reached the goal
|
2006-12-02 15:38:50 +00:00
|
|
|
NActorIterator iterator (NAME_PatrolPoint, actor->goal->args[0]);
|
|
|
|
NActorIterator specit (NAME_PatrolSpecial, actor->goal->tid);
|
2006-02-24 04:48:15 +00:00
|
|
|
AActor *spec;
|
|
|
|
|
|
|
|
// Execute the specials of any PatrolSpecials with the same TID
|
|
|
|
// as the goal.
|
|
|
|
while ( (spec = specit.Next()) )
|
|
|
|
{
|
2011-02-13 10:18:28 +00:00
|
|
|
P_ExecuteSpecial(spec->special, NULL, actor, false, spec->args[0],
|
2006-02-24 04:48:15 +00:00
|
|
|
spec->args[1], spec->args[2], spec->args[3], spec->args[4]);
|
|
|
|
}
|
|
|
|
|
|
|
|
angle_t lastgoalang = actor->goal->angle;
|
2006-05-13 12:41:15 +00:00
|
|
|
int delay;
|
|
|
|
AActor * newgoal = iterator.Next ();
|
|
|
|
if (newgoal != NULL && actor->goal == actor->target)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-05-13 12:41:15 +00:00
|
|
|
delay = newgoal->args[1];
|
|
|
|
actor->reactiontime = delay * TICRATE + level.maptime;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-05-13 12:41:15 +00:00
|
|
|
delay = 0;
|
2006-02-24 04:48:15 +00:00
|
|
|
actor->reactiontime = actor->GetDefault()->reactiontime;
|
|
|
|
actor->angle = lastgoalang; // Look in direction of last goal
|
|
|
|
}
|
2006-05-13 12:41:15 +00:00
|
|
|
if (actor->target == actor->goal) actor->target = NULL;
|
2006-02-24 04:48:15 +00:00
|
|
|
actor->flags |= MF_JUSTATTACKED;
|
2006-05-13 12:41:15 +00:00
|
|
|
if (newgoal != NULL && delay != 0)
|
2006-04-11 16:27:41 +00:00
|
|
|
{
|
|
|
|
actor->flags4 |= MF4_INCOMBAT;
|
2008-04-03 10:49:54 +00:00
|
|
|
actor->SetIdle();
|
2006-04-11 16:27:41 +00:00
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
actor->flags &= ~MF_INCHASE;
|
2006-05-13 12:41:15 +00:00
|
|
|
actor->goal = newgoal;
|
2006-02-24 04:48:15 +00:00
|
|
|
return;
|
|
|
|
}
|
2006-05-13 12:41:15 +00:00
|
|
|
if (actor->goal == actor->target) goto nomissile;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Strafe (Hexen's class bosses)
|
|
|
|
// This was the sole reason for the separate A_FastChase function but
|
|
|
|
// it can be just as easily handled by a simple flag so the monsters
|
|
|
|
// can take advantage of all the other enhancements of A_Chase.
|
|
|
|
|
2007-10-29 20:27:40 +00:00
|
|
|
if (fastchase && !dontmove)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2007-11-28 13:53:55 +00:00
|
|
|
if (actor->FastChaseStrafeCount > 0)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2007-11-28 13:53:55 +00:00
|
|
|
actor->FastChaseStrafeCount--;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-11-28 13:53:55 +00:00
|
|
|
actor->FastChaseStrafeCount = 0;
|
2009-06-30 20:57:51 +00:00
|
|
|
actor->velx = 0;
|
|
|
|
actor->vely = 0;
|
2006-02-24 04:48:15 +00:00
|
|
|
fixed_t dist = P_AproxDistance (actor->x - actor->target->x, actor->y - actor->target->y);
|
|
|
|
if (dist < CLASS_BOSS_STRAFE_RANGE)
|
|
|
|
{
|
|
|
|
if (pr_chase() < 100)
|
|
|
|
{
|
|
|
|
angle_t ang = R_PointToAngle2(actor->x, actor->y, actor->target->x, actor->target->y);
|
|
|
|
if (pr_chase() < 128) ang += ANGLE_90;
|
|
|
|
else ang -= ANGLE_90;
|
2009-06-30 20:57:51 +00:00
|
|
|
actor->velx = 13 * finecosine[ang>>ANGLETOFINESHIFT];
|
|
|
|
actor->vely = 13 * finesine[ang>>ANGLETOFINESHIFT];
|
2007-11-28 13:53:55 +00:00
|
|
|
actor->FastChaseStrafeCount = 3; // strafe time
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// [RH] Scared monsters attack less frequently
|
2006-04-11 16:27:41 +00:00
|
|
|
if (((actor->target->player == NULL ||
|
|
|
|
!(actor->target->player->cheats & CF_FRIGHTENING)) &&
|
|
|
|
!(actor->flags4 & MF4_FRIGHTENED)) ||
|
2006-02-24 04:48:15 +00:00
|
|
|
pr_scaredycat() < 43)
|
|
|
|
{
|
|
|
|
// check for melee attack
|
|
|
|
if (meleestate && actor->CheckMeleeRange ())
|
|
|
|
{
|
|
|
|
if (actor->AttackSound)
|
2008-06-15 02:25:09 +00:00
|
|
|
S_Sound (actor, CHAN_WEAPON, actor->AttackSound, 1, ATTN_NORM);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
actor->SetState (meleestate);
|
|
|
|
actor->flags &= ~MF_INCHASE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for missile attack
|
|
|
|
if (missilestate)
|
|
|
|
{
|
2007-10-29 22:15:46 +00:00
|
|
|
if (!actor->isFast() && actor->movecount)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
goto nomissile;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!P_CheckMissileRange (actor))
|
|
|
|
goto nomissile;
|
|
|
|
|
|
|
|
actor->SetState (missilestate);
|
|
|
|
actor->flags |= MF_JUSTATTACKED;
|
|
|
|
actor->flags4 |= MF4_INCOMBAT;
|
|
|
|
actor->flags &= ~MF_INCHASE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nomissile:
|
|
|
|
// possibly choose another target
|
|
|
|
if ((multiplayer || actor->TIDtoHate)
|
|
|
|
&& !actor->threshold
|
|
|
|
&& !P_CheckSight (actor, actor->target, 0) )
|
|
|
|
{
|
|
|
|
bool lookForBetter = false;
|
2006-09-14 00:02:31 +00:00
|
|
|
bool gotNew;
|
2006-02-24 04:48:15 +00:00
|
|
|
if (actor->flags3 & MF3_NOSIGHTCHECK)
|
|
|
|
{
|
|
|
|
actor->flags3 &= ~MF3_NOSIGHTCHECK;
|
|
|
|
lookForBetter = true;
|
|
|
|
}
|
2006-07-01 00:15:06 +00:00
|
|
|
AActor * oldtarget = actor->target;
|
2009-09-16 15:54:04 +00:00
|
|
|
gotNew = P_LookForPlayers (actor, true, NULL);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (lookForBetter)
|
|
|
|
{
|
|
|
|
actor->flags3 |= MF3_NOSIGHTCHECK;
|
|
|
|
}
|
2006-07-01 00:15:06 +00:00
|
|
|
if (gotNew && actor->target != oldtarget)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
actor->flags &= ~MF_INCHASE;
|
|
|
|
return; // got a new target
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// chase towards player
|
|
|
|
//
|
|
|
|
|
2009-09-16 21:03:09 +00:00
|
|
|
if (actor->strafecount)
|
|
|
|
actor->strafecount--;
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
// class bosses don't do this when strafing
|
2007-11-28 13:53:55 +00:00
|
|
|
if ((!fastchase || !actor->FastChaseStrafeCount) && !dontmove)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-04-24 14:26:06 +00:00
|
|
|
// CANTLEAVEFLOORPIC handling was completely missing in the non-serpent functions.
|
2006-02-24 04:48:15 +00:00
|
|
|
fixed_t oldX = actor->x;
|
|
|
|
fixed_t oldY = actor->y;
|
2008-06-15 18:36:26 +00:00
|
|
|
FTextureID oldFloor = actor->floorpic;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// chase towards player
|
|
|
|
if (--actor->movecount < 0 || !P_Move (actor))
|
|
|
|
{
|
|
|
|
P_NewChaseDir (actor);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the move was illegal, reset it
|
|
|
|
// (copied from A_SerpentChase - it applies to everything with CANTLEAVEFLOORPIC!)
|
|
|
|
if (actor->flags2&MF2_CANTLEAVEFLOORPIC && actor->floorpic != oldFloor )
|
|
|
|
{
|
|
|
|
if (P_TryMove (actor, oldX, oldY, false))
|
|
|
|
{
|
|
|
|
if (nomonsterinterpolation)
|
|
|
|
{
|
2009-12-30 18:53:14 +00:00
|
|
|
actor->PrevX = oldX;
|
|
|
|
actor->PrevY = oldY;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
P_NewChaseDir (actor);
|
|
|
|
}
|
|
|
|
}
|
2007-11-19 08:13:23 +00:00
|
|
|
else if (dontmove && actor->movecount > 0) actor->movecount--;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// make active sound
|
|
|
|
if (playactive && pr_chase() < 3)
|
|
|
|
{
|
|
|
|
actor->PlayActiveSound ();
|
|
|
|
}
|
|
|
|
|
|
|
|
actor->flags &= ~MF_INCHASE;
|
|
|
|
}
|
|
|
|
|
2007-01-05 22:08:57 +00:00
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// P_CheckForResurrection (formerly part of A_VileChase)
|
|
|
|
// Check for ressurecting a body
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
static bool P_CheckForResurrection(AActor *self, bool usevilestates)
|
|
|
|
{
|
|
|
|
const AActor *info;
|
|
|
|
AActor *temp;
|
|
|
|
|
|
|
|
if (self->movedir != DI_NODIR)
|
|
|
|
{
|
|
|
|
const fixed_t absSpeed = abs (self->Speed);
|
2008-04-07 21:14:28 +00:00
|
|
|
fixed_t viletryx = self->x + FixedMul (absSpeed, xspeed[self->movedir]);
|
|
|
|
fixed_t viletryy = self->y + FixedMul (absSpeed, yspeed[self->movedir]);
|
|
|
|
AActor *corpsehit;
|
|
|
|
FState *raisestate;
|
2007-01-05 22:08:57 +00:00
|
|
|
|
2008-04-07 21:14:28 +00:00
|
|
|
FBlockThingsIterator it(FBoundingBox(viletryx, viletryy, 32*FRACUNIT));
|
|
|
|
while ((corpsehit = it.Next()))
|
|
|
|
{
|
|
|
|
if (!(corpsehit->flags & MF_CORPSE) )
|
|
|
|
continue; // not a monster
|
|
|
|
|
|
|
|
if (corpsehit->tics != -1)
|
|
|
|
continue; // not lying still yet
|
|
|
|
|
|
|
|
raisestate = corpsehit->FindState(NAME_Raise);
|
|
|
|
if (raisestate == NULL)
|
|
|
|
continue; // monster doesn't have a raise state
|
2007-01-05 22:08:57 +00:00
|
|
|
|
2008-06-28 12:24:15 +00:00
|
|
|
if (corpsehit->IsKindOf(RUNTIME_CLASS(APlayerPawn)))
|
|
|
|
continue; // do not resurrect players
|
|
|
|
|
2008-04-07 21:14:28 +00:00
|
|
|
// use the current actor's radius instead of the Arch Vile's default.
|
|
|
|
fixed_t maxdist = corpsehit->GetDefault()->radius + self->radius;
|
2007-01-05 22:08:57 +00:00
|
|
|
|
2008-04-07 21:14:28 +00:00
|
|
|
maxdist = corpsehit-> GetDefault()->radius + self->radius;
|
|
|
|
|
|
|
|
if ( abs(corpsehit-> x - viletryx) > maxdist ||
|
|
|
|
abs(corpsehit-> y - viletryy) > maxdist )
|
|
|
|
continue; // not actually touching
|
2011-01-29 11:09:38 +00:00
|
|
|
#ifdef _3DFLOORS
|
|
|
|
// Let's check if there are floors in between the archvile and its target
|
|
|
|
sector_t *vilesec = self->Sector;
|
|
|
|
sector_t *corpsec = corpsehit->Sector;
|
|
|
|
// We only need to test if at least one of the sectors has a 3D floor.
|
|
|
|
sector_t *testsec = vilesec->e->XFloor.ffloors.Size() ? vilesec :
|
|
|
|
(vilesec != corpsec && corpsec->e->XFloor.ffloors.Size()) ? corpsec : NULL;
|
|
|
|
if (testsec)
|
|
|
|
{
|
|
|
|
fixed_t zdist1, zdist2;
|
|
|
|
if (P_Find3DFloor(testsec, corpsehit->x, corpsehit->y, corpsehit->z, false, true, zdist1)
|
|
|
|
!= P_Find3DFloor(testsec, self->x, self->y, self->z, false, true, zdist2))
|
|
|
|
{
|
|
|
|
// Not on same floor
|
|
|
|
if (vilesec == corpsec || abs(zdist1 - self->z) > self->height)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2008-04-07 21:14:28 +00:00
|
|
|
|
2009-06-30 20:57:51 +00:00
|
|
|
corpsehit->velx = corpsehit->vely = 0;
|
2008-04-07 21:14:28 +00:00
|
|
|
// [RH] Check against real height and radius
|
|
|
|
|
|
|
|
fixed_t oldheight = corpsehit->height;
|
|
|
|
fixed_t oldradius = corpsehit->radius;
|
|
|
|
int oldflags = corpsehit->flags;
|
|
|
|
|
|
|
|
corpsehit->flags |= MF_SOLID;
|
|
|
|
corpsehit->height = corpsehit->GetDefault()->height;
|
|
|
|
bool check = P_CheckPosition (corpsehit, corpsehit->x, corpsehit->y);
|
|
|
|
corpsehit->flags = oldflags;
|
|
|
|
corpsehit->radius = oldradius;
|
|
|
|
corpsehit->height = oldheight;
|
|
|
|
if (!check) continue;
|
|
|
|
|
|
|
|
// got one!
|
|
|
|
temp = self->target;
|
|
|
|
self->target = corpsehit;
|
|
|
|
A_FaceTarget (self);
|
|
|
|
if (self->flags & MF_FRIENDLY)
|
|
|
|
{
|
|
|
|
// If this is a friendly Arch-Vile (which is turning the resurrected monster into its friend)
|
|
|
|
// and the Arch-Vile is currently targetting the resurrected monster the target must be cleared.
|
|
|
|
if (self->lastenemy == temp) self->lastenemy = NULL;
|
|
|
|
if (self->lastenemy == corpsehit) self->lastenemy = NULL;
|
|
|
|
if (temp == self->target) temp = NULL;
|
|
|
|
}
|
|
|
|
self->target = temp;
|
|
|
|
|
|
|
|
// Make the state the monster enters customizable.
|
|
|
|
FState * state = self->FindState(NAME_Heal);
|
|
|
|
if (state != NULL)
|
2007-01-05 22:08:57 +00:00
|
|
|
{
|
2008-04-07 21:14:28 +00:00
|
|
|
self->SetState (state);
|
|
|
|
}
|
|
|
|
else if (usevilestates)
|
|
|
|
{
|
|
|
|
// For Dehacked compatibility this has to use the Arch Vile's
|
|
|
|
// heal state as a default if the actor doesn't define one itself.
|
|
|
|
const PClass *archvile = PClass::FindClass("Archvile");
|
|
|
|
if (archvile != NULL)
|
2007-01-05 22:08:57 +00:00
|
|
|
{
|
2008-04-07 21:14:28 +00:00
|
|
|
self->SetState (archvile->ActorInfo->FindState(NAME_Heal));
|
2007-01-05 22:08:57 +00:00
|
|
|
}
|
|
|
|
}
|
2008-04-07 21:14:28 +00:00
|
|
|
S_Sound (corpsehit, CHAN_BODY, "vile/raise", 1, ATTN_IDLE);
|
|
|
|
info = corpsehit->GetDefault ();
|
|
|
|
|
2009-10-30 00:59:34 +00:00
|
|
|
if (corpsehit->state == corpsehit->FindState(NAME_GenericCrush))
|
|
|
|
{
|
|
|
|
corpsehit->Translation = info->Translation; // Clean up bloodcolor translation from crushed corpses
|
|
|
|
}
|
2009-09-14 20:47:53 +00:00
|
|
|
if (ib_compatflags & BCOMPATF_VILEGHOSTS)
|
|
|
|
{
|
|
|
|
corpsehit->height <<= 2;
|
|
|
|
// [GZ] This was a commented-out feature, so let's make use of it,
|
|
|
|
// but only for ghost monsters so that they are visibly different.
|
|
|
|
if (corpsehit->height == 0)
|
|
|
|
{
|
|
|
|
// Make raised corpses look ghostly
|
|
|
|
if (corpsehit->alpha > TRANSLUC50)
|
|
|
|
{
|
|
|
|
corpsehit->alpha /= 2;
|
|
|
|
}
|
|
|
|
// This will only work if the render style is changed as well.
|
|
|
|
if (corpsehit->RenderStyle == LegacyRenderStyles[STYLE_Normal])
|
|
|
|
{
|
|
|
|
corpsehit->RenderStyle = STYLE_Translucent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
corpsehit->height = info->height; // [RH] Use real mobj height
|
|
|
|
corpsehit->radius = info->radius; // [RH] Use real radius
|
|
|
|
}
|
2008-04-07 21:14:28 +00:00
|
|
|
corpsehit->flags = info->flags;
|
|
|
|
corpsehit->flags2 = info->flags2;
|
|
|
|
corpsehit->flags3 = info->flags3;
|
|
|
|
corpsehit->flags4 = info->flags4;
|
2010-01-30 13:08:52 +00:00
|
|
|
corpsehit->flags5 = info->flags5;
|
|
|
|
corpsehit->flags6 = info->flags6;
|
2008-04-07 21:14:28 +00:00
|
|
|
corpsehit->health = info->health;
|
|
|
|
corpsehit->target = NULL;
|
|
|
|
corpsehit->lastenemy = NULL;
|
|
|
|
|
|
|
|
// [RH] If it's a monster, it gets to count as another kill
|
|
|
|
if (corpsehit->CountsAsKill())
|
|
|
|
{
|
|
|
|
level.total_monsters++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// You are the Archvile's minion now, so hate what it hates
|
|
|
|
corpsehit->CopyFriendliness (self, false);
|
2009-02-04 02:29:59 +00:00
|
|
|
corpsehit->SetState (raisestate);
|
2008-04-07 21:14:28 +00:00
|
|
|
|
|
|
|
return true;
|
2007-01-05 22:08:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// A_Chase and variations
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
enum ChaseFlags
|
|
|
|
{
|
|
|
|
CHF_FASTCHASE = 1,
|
|
|
|
CHF_NOPLAYACTIVE = 2,
|
|
|
|
CHF_NIGHTMAREFAST = 4,
|
2007-10-29 20:27:40 +00:00
|
|
|
CHF_RESURRECT = 8,
|
|
|
|
CHF_DONTMOVE = 16,
|
2007-01-05 22:08:57 +00:00
|
|
|
};
|
|
|
|
|
2008-08-12 14:30:07 +00:00
|
|
|
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_Chase)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-13 22:54:24 +00:00
|
|
|
ACTION_PARAM_START(3);
|
2008-10-25 17:38:00 +00:00
|
|
|
ACTION_PARAM_STATE(melee, 0);
|
|
|
|
ACTION_PARAM_STATE(missile, 1);
|
2008-08-13 22:54:24 +00:00
|
|
|
ACTION_PARAM_INT(flags, 2);
|
2008-08-12 20:19:47 +00:00
|
|
|
|
2008-10-25 17:38:00 +00:00
|
|
|
if (melee != (FState*)-1)
|
2007-01-05 22:08:57 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
if (flags & CHF_RESURRECT && P_CheckForResurrection(self, false)) return;
|
2007-01-05 22:08:57 +00:00
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
A_DoChase(self, !!(flags&CHF_FASTCHASE), melee, missile, !(flags&CHF_NOPLAYACTIVE),
|
2007-10-29 20:27:40 +00:00
|
|
|
!!(flags&CHF_NIGHTMAREFAST), !!(flags&CHF_DONTMOVE));
|
2007-01-05 22:08:57 +00:00
|
|
|
}
|
|
|
|
else // this is the old default A_Chase
|
|
|
|
{
|
2010-09-19 10:39:34 +00:00
|
|
|
A_DoChase (self, false, self->MeleeState, self->MissileState, true, gameinfo.nightmarefast, false);
|
2007-01-05 22:08:57 +00:00
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_FastChase)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
A_DoChase (self, true, self->MeleeState, self->MissileState, true, true, false);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_VileChase)
|
2007-01-05 22:08:57 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
if (!P_CheckForResurrection(self, true))
|
2010-09-19 10:39:34 +00:00
|
|
|
A_DoChase (self, false, self->MeleeState, self->MissileState, true, gameinfo.nightmarefast, false);
|
2007-01-05 22:08:57 +00:00
|
|
|
}
|
|
|
|
|
2008-08-12 14:30:07 +00:00
|
|
|
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_ExtChase)
|
2007-01-05 22:08:57 +00:00
|
|
|
{
|
2008-08-13 22:54:24 +00:00
|
|
|
ACTION_PARAM_START(4);
|
|
|
|
ACTION_PARAM_BOOL(domelee, 0);
|
|
|
|
ACTION_PARAM_BOOL(domissile, 1);
|
|
|
|
ACTION_PARAM_BOOL(playactive, 2);
|
|
|
|
ACTION_PARAM_BOOL(nightmarefast, 3);
|
2007-01-05 22:08:57 +00:00
|
|
|
|
2008-08-13 22:54:24 +00:00
|
|
|
// Now that A_Chase can handle state label parameters, this function has become rather useless...
|
2007-01-05 22:08:57 +00:00
|
|
|
A_DoChase(self, false,
|
2008-08-13 22:54:24 +00:00
|
|
|
domelee ? self->MeleeState:NULL, domissile ? self->MissileState:NULL,
|
|
|
|
playactive, nightmarefast, false);
|
2007-01-05 22:08:57 +00:00
|
|
|
}
|
|
|
|
|
2008-08-10 22:48:37 +00:00
|
|
|
// for internal use
|
|
|
|
void A_Chase(AActor *self)
|
|
|
|
{
|
2010-09-19 10:39:34 +00:00
|
|
|
A_DoChase (self, false, self->MeleeState, self->MissileState, true, gameinfo.nightmarefast, false);
|
2008-08-10 22:48:37 +00:00
|
|
|
}
|
|
|
|
|
2006-04-24 14:26:06 +00:00
|
|
|
//=============================================================================
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
// A_FaceTarget
|
2011-03-06 14:21:44 +00:00
|
|
|
// A_FaceMaster
|
|
|
|
// A_FaceTracer
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
2006-04-24 14:26:06 +00:00
|
|
|
//=============================================================================
|
2011-03-06 14:21:44 +00:00
|
|
|
void A_Face (AActor *self, AActor *other, angle_t max_turn)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2011-03-06 14:21:44 +00:00
|
|
|
if (!other)
|
2006-02-24 04:48:15 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// [RH] Andy Baker's stealth monsters
|
2008-08-10 20:48:55 +00:00
|
|
|
if (self->flags & MF_STEALTH)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
self->visdir = 1;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
self->flags &= ~MF_AMBUSH;
|
2010-05-12 07:02:23 +00:00
|
|
|
|
2011-03-06 14:21:44 +00:00
|
|
|
angle_t other_angle = R_PointToAngle2 (self->x, self->y, other->x, other->y);
|
2010-05-12 07:02:23 +00:00
|
|
|
|
|
|
|
// 0 means no limit. Also, if we turn in a single step anyways, no need to go through the algorithms.
|
2011-03-06 14:21:44 +00:00
|
|
|
// It also means that there is no need to check for going past the other.
|
|
|
|
if (max_turn && (max_turn < (angle_t)abs(self->angle - other_angle)))
|
2010-05-12 07:02:23 +00:00
|
|
|
{
|
2011-03-06 14:21:44 +00:00
|
|
|
if (self->angle > other_angle)
|
2010-05-12 07:02:23 +00:00
|
|
|
{
|
2011-03-06 14:21:44 +00:00
|
|
|
if (self->angle - other_angle < ANGLE_180)
|
2010-05-12 07:02:23 +00:00
|
|
|
{
|
|
|
|
self->angle -= max_turn;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
self->angle += max_turn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-03-06 14:21:44 +00:00
|
|
|
if (other_angle - self->angle < ANGLE_180)
|
2010-05-12 07:02:23 +00:00
|
|
|
{
|
|
|
|
self->angle += max_turn;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
self->angle -= max_turn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-03-06 14:21:44 +00:00
|
|
|
self->angle = other_angle;
|
2010-05-12 07:02:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This will never work well if the turn angle is limited.
|
2011-05-26 23:25:02 +00:00
|
|
|
if (max_turn == 0 && (self->angle == other_angle) && other->flags & MF_SHADOW && !(self->flags6 & MF6_SEEINVISIBLE) )
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
self->angle += pr_facetarget.Random2() << 21;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-06 14:21:44 +00:00
|
|
|
void A_FaceTarget (AActor *self, angle_t max_turn)
|
|
|
|
{
|
|
|
|
A_Face(self, self->target, max_turn);
|
|
|
|
}
|
|
|
|
|
|
|
|
void A_FaceMaster (AActor *self, angle_t max_turn)
|
|
|
|
{
|
|
|
|
A_Face(self, self->master, max_turn);
|
|
|
|
}
|
|
|
|
|
|
|
|
void A_FaceTracer (AActor *self, angle_t max_turn)
|
|
|
|
{
|
|
|
|
A_Face(self, self->tracer, max_turn);
|
|
|
|
}
|
|
|
|
|
2010-05-12 07:02:23 +00:00
|
|
|
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_FaceTarget)
|
2008-08-10 22:48:37 +00:00
|
|
|
{
|
2010-05-12 07:02:23 +00:00
|
|
|
ACTION_PARAM_START(1);
|
|
|
|
ACTION_PARAM_ANGLE(max_turn, 0);
|
|
|
|
|
|
|
|
A_FaceTarget(self, max_turn);
|
2008-08-10 22:48:37 +00:00
|
|
|
}
|
2006-04-24 14:26:06 +00:00
|
|
|
|
2011-03-06 14:21:44 +00:00
|
|
|
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_FaceMaster)
|
|
|
|
{
|
|
|
|
ACTION_PARAM_START(1);
|
|
|
|
ACTION_PARAM_ANGLE(max_turn, 0);
|
|
|
|
|
|
|
|
A_FaceMaster(self, max_turn);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_FaceTracer)
|
|
|
|
{
|
|
|
|
ACTION_PARAM_START(1);
|
|
|
|
ACTION_PARAM_ANGLE(max_turn, 0);
|
|
|
|
|
|
|
|
A_FaceTracer(self, max_turn);
|
|
|
|
}
|
|
|
|
|
2006-04-24 14:26:06 +00:00
|
|
|
//===========================================================================
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
// [RH] A_MonsterRail
|
|
|
|
//
|
|
|
|
// New function to let monsters shoot a railgun
|
|
|
|
//
|
2006-04-24 14:26:06 +00:00
|
|
|
//===========================================================================
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_MonsterRail)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
if (!self->target)
|
2006-02-24 04:48:15 +00:00
|
|
|
return;
|
|
|
|
|
2009-10-27 03:59:29 +00:00
|
|
|
fixed_t saved_pitch = self->pitch;
|
2009-10-27 04:16:55 +00:00
|
|
|
AActor *linetarget;
|
2009-10-27 03:59:29 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
// [RH] Andy Baker's stealth monsters
|
2008-08-10 20:48:55 +00:00
|
|
|
if (self->flags & MF_STEALTH)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
self->visdir = 1;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
self->flags &= ~MF_AMBUSH;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
self->angle = R_PointToAngle2 (self->x,
|
|
|
|
self->y,
|
|
|
|
self->target->x,
|
|
|
|
self->target->y);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2010-03-28 10:51:35 +00:00
|
|
|
self->pitch = P_AimLineAttack (self, self->angle, MISSILERANGE, &linetarget, ANGLE_1*60, 0, self->target);
|
2009-10-27 04:16:55 +00:00
|
|
|
if (linetarget == NULL)
|
|
|
|
{
|
|
|
|
// We probably won't hit the target, but aim at it anyway so we don't look stupid.
|
|
|
|
FVector2 xydiff(self->target->x - self->x, self->target->y - self->y);
|
|
|
|
double zdiff = (self->target->z + (self->target->height>>1)) -
|
|
|
|
(self->z + (self->height>>1) - self->floorclip);
|
|
|
|
self->pitch = int(atan2(zdiff, xydiff.Length()) * ANGLE_180 / -M_PI);
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// Let the aim trail behind the player
|
2008-08-10 20:48:55 +00:00
|
|
|
self->angle = R_PointToAngle2 (self->x,
|
|
|
|
self->y,
|
2009-06-30 20:57:51 +00:00
|
|
|
self->target->x - self->target->velx * 3,
|
|
|
|
self->target->y - self->target->vely * 3);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2011-05-26 23:25:02 +00:00
|
|
|
if (self->target->flags & MF_SHADOW && !(self->flags6 & MF6_SEEINVISIBLE))
|
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
self->angle += pr_railface.Random2() << 21;
|
2011-05-26 23:25:02 +00:00
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
P_RailAttack (self, self->GetMissileDamage (0, 1), 0);
|
2009-10-27 03:59:29 +00:00
|
|
|
self->pitch = saved_pitch;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_Scream)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
if (self->DeathSound)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// Check for bosses.
|
2008-08-10 20:48:55 +00:00
|
|
|
if (self->flags2 & MF2_BOSS)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// full volume
|
2008-08-10 20:48:55 +00:00
|
|
|
S_Sound (self, CHAN_VOICE, self->DeathSound, 1, ATTN_NONE);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
S_Sound (self, CHAN_VOICE, self->DeathSound, 1, ATTN_NORM);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_XScream)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
if (self->player)
|
|
|
|
S_Sound (self, CHAN_VOICE, "*gibbed", 1, ATTN_NORM);
|
2006-02-24 04:48:15 +00:00
|
|
|
else
|
2008-08-10 20:48:55 +00:00
|
|
|
S_Sound (self, CHAN_VOICE, "misc/gibbed", 1, ATTN_NORM);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2008-08-12 14:30:07 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_ScreamAndUnblock
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_ScreamAndUnblock)
|
|
|
|
{
|
|
|
|
CALL_ACTION(A_Scream, self);
|
2010-04-23 08:12:47 +00:00
|
|
|
A_Unblock(self, true);
|
2008-08-12 14:30:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_ActiveSound
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_ActiveSound)
|
|
|
|
{
|
|
|
|
if (self->ActiveSound)
|
|
|
|
{
|
|
|
|
S_Sound (self, CHAN_VOICE, self->ActiveSound, 1, ATTN_NORM);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_ActiveAndUnblock
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_ActiveAndUnblock)
|
|
|
|
{
|
|
|
|
CALL_ACTION(A_ActiveSound, self);
|
2010-04-23 08:12:47 +00:00
|
|
|
A_Unblock(self, true);
|
2008-08-12 14:30:07 +00:00
|
|
|
}
|
|
|
|
|
2008-08-07 08:18:48 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Modifies the drop amount of this item according to the current skill's
|
|
|
|
// settings (also called by ADehackedPickup::TryPickup)
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
void ModifyDropAmount(AInventory *inv, int dropamount)
|
|
|
|
{
|
|
|
|
int flagmask = IF_IGNORESKILL;
|
|
|
|
fixed_t dropammofactor = G_SkillProperty(SKILLP_DropAmmoFactor);
|
|
|
|
// Default drop amount is half of regular amount * regular ammo multiplication
|
|
|
|
if (dropammofactor == -1)
|
|
|
|
{
|
|
|
|
dropammofactor = FRACUNIT/2;
|
|
|
|
flagmask = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dropamount > 0)
|
|
|
|
{
|
|
|
|
if (flagmask != 0 && inv->IsKindOf(RUNTIME_CLASS(AAmmo)))
|
|
|
|
{
|
|
|
|
inv->Amount = FixedMul(dropamount, dropammofactor);
|
|
|
|
inv->ItemFlags |= IF_IGNORESKILL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
inv->Amount = dropamount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (inv->IsKindOf (RUNTIME_CLASS(AAmmo)))
|
|
|
|
{
|
|
|
|
// Half ammo when dropped by bad guys.
|
|
|
|
inv->Amount = inv->GetClass()->Meta.GetMetaInt (AIMETA_DropAmount, MAX(1, FixedMul(inv->Amount, dropammofactor)));
|
|
|
|
inv->ItemFlags|=flagmask;
|
|
|
|
}
|
|
|
|
else if (inv->IsKindOf (RUNTIME_CLASS(AWeapon)))
|
|
|
|
{
|
|
|
|
// The same goes for ammo from a weapon.
|
|
|
|
static_cast<AWeapon *>(inv)->AmmoGive1 = FixedMul(static_cast<AWeapon *>(inv)->AmmoGive1, dropammofactor);
|
|
|
|
static_cast<AWeapon *>(inv)->AmmoGive2 = FixedMul(static_cast<AWeapon *>(inv)->AmmoGive2, dropammofactor);
|
|
|
|
inv->ItemFlags|=flagmask;
|
|
|
|
}
|
|
|
|
else if (inv->IsKindOf (RUNTIME_CLASS(ADehackedPickup)))
|
|
|
|
{
|
|
|
|
// For weapons and ammo modified by Dehacked we need to flag the item.
|
|
|
|
static_cast<ADehackedPickup *>(inv)->droppedbymonster = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// PROC P_DropItem
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
2008-08-07 08:18:48 +00:00
|
|
|
|
2006-04-11 16:27:41 +00:00
|
|
|
CVAR(Int, sv_dropstyle, 0, CVAR_SERVERINFO | CVAR_ARCHIVE);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-08-07 08:18:48 +00:00
|
|
|
AInventory *P_DropItem (AActor *source, const PClass *type, int dropamount, int chance)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
if (type != NULL && pr_dropitem() <= chance)
|
|
|
|
{
|
|
|
|
AActor *mo;
|
|
|
|
fixed_t spawnz;
|
|
|
|
|
|
|
|
spawnz = source->z;
|
2006-06-03 12:30:11 +00:00
|
|
|
if (!(i_compatflags & COMPATF_NOTOSSDROPS))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-04-11 16:27:41 +00:00
|
|
|
int style = sv_dropstyle;
|
|
|
|
if (style==0) style= (gameinfo.gametype == GAME_Strife)? 2:1;
|
|
|
|
|
|
|
|
if (style==2)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
spawnz += 24*FRACUNIT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
spawnz += source->height / 2;
|
|
|
|
}
|
|
|
|
}
|
2006-07-16 09:10:45 +00:00
|
|
|
mo = Spawn (type, source->x, source->y, spawnz, ALLOW_REPLACE);
|
2009-03-24 07:51:15 +00:00
|
|
|
if (mo != NULL)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2009-03-24 07:51:15 +00:00
|
|
|
mo->flags |= MF_DROPPED;
|
|
|
|
mo->flags &= ~MF_NOGRAVITY; // [RH] Make sure it is affected by gravity
|
|
|
|
if (!(i_compatflags & COMPATF_NOTOSSDROPS))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2009-03-24 07:51:15 +00:00
|
|
|
P_TossItem (mo);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2009-03-24 07:51:15 +00:00
|
|
|
if (mo->IsKindOf (RUNTIME_CLASS(AInventory)))
|
|
|
|
{
|
|
|
|
AInventory * inv = static_cast<AInventory *>(mo);
|
|
|
|
ModifyDropAmount(inv, dropamount);
|
|
|
|
if (inv->SpecialDropAction (source))
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return inv;
|
|
|
|
}
|
|
|
|
// we can't really return an AInventory pointer to a non-inventory item here, can we?
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
//
|
|
|
|
// P_TossItem
|
|
|
|
//
|
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
void P_TossItem (AActor *item)
|
|
|
|
{
|
2006-04-11 16:27:41 +00:00
|
|
|
int style = sv_dropstyle;
|
2009-09-08 21:01:24 +00:00
|
|
|
if (style==0) style= gameinfo.defaultdropstyle;
|
2006-04-11 16:27:41 +00:00
|
|
|
|
|
|
|
if (style==2)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2009-06-30 20:57:51 +00:00
|
|
|
item->velx += pr_dropitem.Random2(7) << FRACBITS;
|
|
|
|
item->vely += pr_dropitem.Random2(7) << FRACBITS;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-06-30 20:57:51 +00:00
|
|
|
item->velx = pr_dropitem.Random2() << 8;
|
|
|
|
item->vely = pr_dropitem.Random2() << 8;
|
|
|
|
item->velz = FRACUNIT*5 + (pr_dropitem() << 10);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_Pain)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// [RH] Vary player pain sounds depending on health (ala Quake2)
|
2008-08-10 20:48:55 +00:00
|
|
|
if (self->player && self->player->morphTics == 0)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2007-01-28 04:59:04 +00:00
|
|
|
const char *pain_amount;
|
2008-06-15 02:25:09 +00:00
|
|
|
FSoundID sfx_id;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
if (self->health < 25)
|
2007-01-28 04:59:04 +00:00
|
|
|
pain_amount = "*pain25";
|
2008-08-10 20:48:55 +00:00
|
|
|
else if (self->health < 50)
|
2007-01-28 04:59:04 +00:00
|
|
|
pain_amount = "*pain50";
|
2008-08-10 20:48:55 +00:00
|
|
|
else if (self->health < 75)
|
2007-01-28 04:59:04 +00:00
|
|
|
pain_amount = "*pain75";
|
2006-02-24 04:48:15 +00:00
|
|
|
else
|
2007-01-28 04:59:04 +00:00
|
|
|
pain_amount = "*pain100";
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2007-01-28 04:59:04 +00:00
|
|
|
// Try for damage-specific sounds first.
|
2008-08-10 20:48:55 +00:00
|
|
|
if (self->player->LastDamageType != NAME_None)
|
2007-01-28 04:59:04 +00:00
|
|
|
{
|
|
|
|
FString pain_sound = pain_amount;
|
|
|
|
pain_sound += '-';
|
2008-08-10 20:48:55 +00:00
|
|
|
pain_sound += self->player->LastDamageType;
|
2008-06-15 02:25:09 +00:00
|
|
|
sfx_id = pain_sound;
|
2007-01-28 04:59:04 +00:00
|
|
|
if (sfx_id == 0)
|
|
|
|
{
|
|
|
|
// Try again without a specific pain amount.
|
|
|
|
pain_sound = "*pain-";
|
2008-08-10 20:48:55 +00:00
|
|
|
pain_sound += self->player->LastDamageType;
|
2008-06-15 02:25:09 +00:00
|
|
|
sfx_id = pain_sound;
|
2007-01-28 04:59:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sfx_id == 0)
|
|
|
|
{
|
2008-06-15 02:25:09 +00:00
|
|
|
sfx_id = pain_amount;
|
2007-01-28 04:59:04 +00:00
|
|
|
}
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
S_Sound (self, CHAN_VOICE, sfx_id, 1, ATTN_NORM);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2008-08-10 20:48:55 +00:00
|
|
|
else if (self->PainSound)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
S_Sound (self, CHAN_VOICE, self->PainSound, 1, ATTN_NORM);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// killough 11/98: kill an object
|
2008-08-12 14:30:07 +00:00
|
|
|
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_Die)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-13 22:54:24 +00:00
|
|
|
ACTION_PARAM_START(1);
|
|
|
|
ACTION_PARAM_NAME(damagetype, 0);
|
2008-04-26 08:46:55 +00:00
|
|
|
|
2009-05-23 08:30:36 +00:00
|
|
|
P_DamageMobj (self, NULL, NULL, self->health, damagetype, DMG_FORCED);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// A_Detonate
|
|
|
|
// killough 8/9/98: same as A_Explode, except that the damage is variable
|
|
|
|
//
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_Detonate)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
int damage = self->GetMissileDamage (0, 1);
|
|
|
|
P_RadiusAttack (self, self->target, damage, damage, self->DamageType, true);
|
2009-10-17 11:30:44 +00:00
|
|
|
P_CheckSplash(self, damage<<FRACBITS);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CheckBossDeath (AActor *actor)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
// make sure there is a player alive for victory
|
|
|
|
for (i = 0; i < MAXPLAYERS; i++)
|
|
|
|
if (playeringame[i] && players[i].health > 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (i == MAXPLAYERS)
|
|
|
|
return false; // no one left alive, so do not end game
|
|
|
|
|
|
|
|
// Make sure all bosses are dead
|
|
|
|
TThinkerIterator<AActor> iterator;
|
|
|
|
AActor *other;
|
|
|
|
|
|
|
|
while ( (other = iterator.Next ()) )
|
|
|
|
{
|
|
|
|
if (other != actor &&
|
|
|
|
(other->health > 0 || (other->flags & MF_ICECORPSE))
|
|
|
|
&& other->GetClass() == actor->GetClass())
|
|
|
|
{ // Found a living boss
|
|
|
|
// [RH] Frozen bosses don't count as dead until they shatter
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// The boss death is good
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// A_BossDeath
|
|
|
|
// Possibly trigger special effects if on a boss level
|
|
|
|
//
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_BossDeath)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
FName mytype = self->GetClass()->TypeName;
|
2006-07-16 15:00:10 +00:00
|
|
|
|
|
|
|
// Ugh...
|
2008-08-10 20:48:55 +00:00
|
|
|
FName type = self->GetClass()->ActorInfo->GetReplacee()->Class->TypeName;
|
2006-05-10 15:07:14 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
// Do generic special death actions first
|
|
|
|
bool checked = false;
|
2009-02-03 19:11:43 +00:00
|
|
|
for(unsigned i=0; i<level.info->specialactions.Size(); i++)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2009-02-03 19:11:43 +00:00
|
|
|
FSpecialAction *sa = &level.info->specialactions[i];
|
|
|
|
|
2006-07-16 15:00:10 +00:00
|
|
|
if (type == sa->Type || mytype == sa->Type)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
if (!checked && !CheckBossDeath(self))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
checked = true;
|
|
|
|
|
2011-02-13 10:18:28 +00:00
|
|
|
P_ExecuteSpecial(sa->Action, NULL, self, false,
|
2006-02-24 04:48:15 +00:00
|
|
|
sa->Args[0], sa->Args[1], sa->Args[2], sa->Args[3], sa->Args[4]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// [RH] These all depend on the presence of level flags now
|
|
|
|
// rather than being hard-coded to specific levels/episodes.
|
|
|
|
|
|
|
|
if ((level.flags & (LEVEL_MAP07SPECIAL|
|
|
|
|
LEVEL_BRUISERSPECIAL|
|
|
|
|
LEVEL_CYBORGSPECIAL|
|
|
|
|
LEVEL_SPIDERSPECIAL|
|
|
|
|
LEVEL_HEADSPECIAL|
|
|
|
|
LEVEL_MINOTAURSPECIAL|
|
|
|
|
LEVEL_SORCERER2SPECIAL)) == 0)
|
|
|
|
return;
|
|
|
|
|
2009-05-03 07:19:21 +00:00
|
|
|
if ((i_compatflags & COMPATF_ANYBOSSDEATH) || ( // [GZ] Added for UAC_DEAD
|
2006-05-10 15:07:14 +00:00
|
|
|
((level.flags & LEVEL_MAP07SPECIAL) && (type == NAME_Fatso || type == NAME_Arachnotron)) ||
|
|
|
|
((level.flags & LEVEL_BRUISERSPECIAL) && (type == NAME_BaronOfHell)) ||
|
|
|
|
((level.flags & LEVEL_CYBORGSPECIAL) && (type == NAME_Cyberdemon)) ||
|
|
|
|
((level.flags & LEVEL_SPIDERSPECIAL) && (type == NAME_SpiderMastermind)) ||
|
|
|
|
((level.flags & LEVEL_HEADSPECIAL) && (type == NAME_Ironlich)) ||
|
|
|
|
((level.flags & LEVEL_MINOTAURSPECIAL) && (type == NAME_Minotaur)) ||
|
|
|
|
((level.flags & LEVEL_SORCERER2SPECIAL) && (type == NAME_Sorcerer2))
|
2009-05-03 07:19:21 +00:00
|
|
|
))
|
2006-02-24 04:48:15 +00:00
|
|
|
;
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
if (!CheckBossDeath (self))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// victory!
|
|
|
|
if (level.flags & LEVEL_SPECKILLMONSTERS)
|
|
|
|
{ // Kill any remaining monsters
|
|
|
|
P_Massacre ();
|
|
|
|
}
|
|
|
|
if (level.flags & LEVEL_MAP07SPECIAL)
|
|
|
|
{
|
2006-05-10 15:07:14 +00:00
|
|
|
if (type == NAME_Fatso)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-03-19 22:47:04 +00:00
|
|
|
EV_DoFloor (DFloor::floorLowerToLowest, NULL, 666, FRACUNIT, 0, 0, 0, false);
|
2006-02-24 04:48:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-05-10 15:07:14 +00:00
|
|
|
if (type == NAME_Arachnotron)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-03-19 22:47:04 +00:00
|
|
|
EV_DoFloor (DFloor::floorRaiseByTexture, NULL, 667, FRACUNIT, 0, 0, 0, false);
|
2006-02-24 04:48:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (level.flags & LEVEL_SPECACTIONSMASK)
|
|
|
|
{
|
|
|
|
case LEVEL_SPECLOWERFLOOR:
|
2008-03-19 22:47:04 +00:00
|
|
|
EV_DoFloor (DFloor::floorLowerToLowest, NULL, 666, FRACUNIT, 0, 0, 0, false);
|
2006-02-24 04:48:15 +00:00
|
|
|
return;
|
|
|
|
|
2010-05-28 21:29:28 +00:00
|
|
|
case LEVEL_SPECLOWERFLOORTOHIGHEST:
|
|
|
|
EV_DoFloor (DFloor::floorLowerToHighest, NULL, 666, FRACUNIT, 0, 0, 0, false);
|
|
|
|
return;
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
case LEVEL_SPECOPENDOOR:
|
|
|
|
EV_DoDoor (DDoor::doorOpen, NULL, NULL, 666, 8*FRACUNIT, 0, 0, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// [RH] If noexit, then don't end the level.
|
|
|
|
if ((deathmatch || alwaysapplydmflags) && (dmflags & DF_NO_EXIT))
|
|
|
|
return;
|
|
|
|
|
|
|
|
G_ExitLevel (0, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// PROC P_Massacre
|
|
|
|
//
|
|
|
|
// Kills all monsters.
|
|
|
|
//
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
int P_Massacre ()
|
|
|
|
{
|
|
|
|
// jff 02/01/98 'em' cheat - kill all monsters
|
|
|
|
// partially taken from Chi's .46 port
|
|
|
|
//
|
|
|
|
// killough 2/7/98: cleaned up code and changed to use dprintf;
|
|
|
|
// fixed lost soul bug (LSs left behind when PEs are killed)
|
|
|
|
|
|
|
|
int killcount = 0;
|
|
|
|
AActor *actor;
|
|
|
|
TThinkerIterator<AActor> iterator;
|
|
|
|
|
|
|
|
while ( (actor = iterator.Next ()) )
|
|
|
|
{
|
|
|
|
if (!(actor->flags2 & MF2_DORMANT) && (actor->flags3 & MF3_ISMONSTER))
|
|
|
|
{
|
|
|
|
killcount += actor->Massacre();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return killcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// A_SinkMobj
|
|
|
|
// Sink a mobj incrementally into the floor
|
|
|
|
//
|
|
|
|
|
2008-08-10 11:29:19 +00:00
|
|
|
bool A_SinkMobj (AActor *actor, fixed_t speed)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
if (actor->floorclip < actor->height)
|
|
|
|
{
|
2008-08-10 11:29:19 +00:00
|
|
|
actor->floorclip += speed;
|
2006-02-24 04:48:15 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// A_RaiseMobj
|
|
|
|
// Raise a mobj incrementally from the floor to
|
|
|
|
//
|
|
|
|
|
2008-08-10 11:29:19 +00:00
|
|
|
bool A_RaiseMobj (AActor *actor, fixed_t speed)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
bool done = true;
|
|
|
|
|
|
|
|
// Raise a mobj from the ground
|
|
|
|
if (actor->floorclip > 0)
|
|
|
|
{
|
2008-08-10 11:29:19 +00:00
|
|
|
actor->floorclip -= speed;
|
2006-02-24 04:48:15 +00:00
|
|
|
if (actor->floorclip <= 0)
|
|
|
|
{
|
|
|
|
actor->floorclip = 0;
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
done = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return done; // Reached target height
|
|
|
|
}
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_ClassBossHealth)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
if (multiplayer && !deathmatch) // co-op only
|
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
if (!self->special1)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
self->health *= 5;
|
|
|
|
self->special1 = true; // has been initialized
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|