mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-23 20:43:15 +00:00
760f70d3f1
so that all files are included by a central one instead of compiling each one separately. This speeds up the compilation process by 25% when doing a complete rebuild in Visual C. - Cleaned up more header dependencies. SVN r1226 (trunk)
35 lines
704 B
C++
35 lines
704 B
C++
/*
|
|
#include "templates.h"
|
|
#include "actor.h"
|
|
#include "m_random.h"
|
|
#include "s_sound.h"
|
|
#include "p_local.h"
|
|
#include "p_enemy.h"
|
|
#include "a_action.h"
|
|
#include "thingdef/thingdef.h"
|
|
*/
|
|
|
|
static FRandom pr_spidrefire ("SpidRefire");
|
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_SpidRefire)
|
|
{
|
|
// keep firing unless target got out of sight
|
|
A_FaceTarget (self);
|
|
|
|
if (pr_spidrefire() < 10)
|
|
return;
|
|
|
|
if (!self->target
|
|
|| P_HitFriend (self)
|
|
|| self->target->health <= 0
|
|
|| !P_CheckSight (self, self->target, 0) )
|
|
{
|
|
self->SetState (self->SeeState);
|
|
}
|
|
}
|
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_Metal)
|
|
{
|
|
S_Sound (self, CHAN_BODY, "spider/walk", 1, ATTN_IDLE);
|
|
A_Chase (self);
|
|
}
|