2008-09-15 14:11:05 +00:00
|
|
|
/*
|
2006-02-24 04:48:15 +00:00
|
|
|
#include "templates.h"
|
|
|
|
#include "actor.h"
|
|
|
|
#include "info.h"
|
|
|
|
#include "m_random.h"
|
|
|
|
#include "s_sound.h"
|
|
|
|
#include "p_local.h"
|
|
|
|
#include "p_enemy.h"
|
|
|
|
#include "gi.h"
|
|
|
|
#include "gstrings.h"
|
|
|
|
#include "a_action.h"
|
2008-07-19 12:40:10 +00:00
|
|
|
#include "thingdef/thingdef.h"
|
2008-09-15 14:11:05 +00:00
|
|
|
*/
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
FRandom pr_lost ("LostMissileRange");
|
|
|
|
|
|
|
|
//
|
|
|
|
// SkullAttack
|
|
|
|
// Fly at the player like a missile.
|
|
|
|
//
|
|
|
|
#define SKULLSPEED (20*FRACUNIT)
|
|
|
|
|
2008-08-12 14:30:07 +00:00
|
|
|
void A_SkullAttack(AActor *self, fixed_t speed)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
AActor *dest;
|
|
|
|
angle_t an;
|
|
|
|
int dist;
|
|
|
|
|
|
|
|
if (!self->target)
|
|
|
|
return;
|
|
|
|
|
|
|
|
dest = self->target;
|
|
|
|
self->flags |= MF_SKULLFLY;
|
|
|
|
|
2008-06-15 02:25:09 +00:00
|
|
|
S_Sound (self, CHAN_VOICE, self->AttackSound, 1, ATTN_NORM);
|
2006-02-24 04:48:15 +00:00
|
|
|
A_FaceTarget (self);
|
|
|
|
an = self->angle >> ANGLETOFINESHIFT;
|
2009-06-30 20:57:51 +00:00
|
|
|
self->velx = FixedMul (speed, finecosine[an]);
|
|
|
|
self->vely = FixedMul (speed, finesine[an]);
|
2006-02-24 04:48:15 +00:00
|
|
|
dist = P_AproxDistance (dest->x - self->x, dest->y - self->y);
|
2008-08-12 14:30:07 +00:00
|
|
|
dist = dist / speed;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (dist < 1)
|
|
|
|
dist = 1;
|
2009-06-30 20:57:51 +00:00
|
|
|
self->velz = (dest->z + (dest->height>>1) - self->z) / dist;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2008-08-12 14:30:07 +00:00
|
|
|
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_SkullAttack)
|
|
|
|
{
|
2008-08-13 22:54:24 +00:00
|
|
|
ACTION_PARAM_START(1);
|
|
|
|
ACTION_PARAM_FIXED(n, 0);
|
2008-08-12 14:30:07 +00:00
|
|
|
|
2008-08-13 22:54:24 +00:00
|
|
|
if (n <= 0) n = SKULLSPEED;
|
2008-08-12 14:30:07 +00:00
|
|
|
A_SkullAttack(self, n);
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// CVAR transsouls
|
|
|
|
//
|
|
|
|
// How translucent things drawn with STYLE_SoulTrans are. Normally, only
|
|
|
|
// Lost Souls have this render style, but a dehacked patch could give other
|
|
|
|
// things this style. Values less than 0.25 will automatically be set to
|
|
|
|
// 0.25 to ensure some degree of visibility. Likewise, values above 1.0 will
|
|
|
|
// be set to 1.0, because anything higher doesn't make sense.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
CUSTOM_CVAR (Float, transsouls, 0.75f, CVAR_ARCHIVE)
|
|
|
|
{
|
|
|
|
if (self < 0.25f)
|
|
|
|
{
|
|
|
|
self = 0.25f;
|
|
|
|
}
|
|
|
|
else if (self > 1.f)
|
|
|
|
{
|
|
|
|
self = 1.f;
|
|
|
|
}
|
|
|
|
}
|