2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
#include "a_sharedglobal.h"
|
|
|
|
#include "p_local.h"
|
|
|
|
#include "g_level.h"
|
|
|
|
#include "r_sky.h"
|
|
|
|
#include "p_lnspec.h"
|
|
|
|
#include "b_bot.h"
|
|
|
|
#include "p_checkposition.h"
|
|
|
|
|
|
|
|
|
|
|
|
IMPLEMENT_CLASS(AFastProjectile)
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// AFastProjectile :: Tick
|
|
|
|
//
|
|
|
|
// Thinker for the ultra-fast projectiles used by Heretic and Hexen
|
|
|
|
//
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void AFastProjectile::Tick ()
|
|
|
|
{
|
|
|
|
int i;
|
2016-03-22 23:53:09 +00:00
|
|
|
DVector3 frac;
|
2016-03-01 15:47:10 +00:00
|
|
|
int changexy;
|
|
|
|
|
|
|
|
ClearInterpolation();
|
2016-03-22 23:53:09 +00:00
|
|
|
double oldz = Z();
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
if (!(flags5 & MF5_NOTIMEFREEZE))
|
|
|
|
{
|
|
|
|
//Added by MC: Freeze mode.
|
|
|
|
if (bglobal.freeze || level.flags2 & LEVEL2_FROZEN)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// [RH] Ripping is a little different than it was in Hexen
|
|
|
|
FCheckPosition tm(!!(flags2 & MF2_RIP));
|
|
|
|
|
|
|
|
int count = 8;
|
2016-03-22 23:53:09 +00:00
|
|
|
if (radius > 0)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-03-22 23:53:09 +00:00
|
|
|
while ( fabs(Vel.X) > radius * count || fabs(Vel.Y) > radius * count)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
// we need to take smaller steps.
|
2016-03-22 23:53:09 +00:00
|
|
|
count += count;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle movement
|
2016-03-20 18:52:35 +00:00
|
|
|
if (!Vel.isZero() || (Z() != floorz))
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-03-22 23:53:09 +00:00
|
|
|
frac = Vel / count;
|
|
|
|
changexy = frac.X != 0 || frac.Y != 0;
|
|
|
|
int ripcount = count / 8;
|
2016-03-01 15:47:10 +00:00
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
if (changexy)
|
|
|
|
{
|
|
|
|
if (--ripcount <= 0)
|
|
|
|
{
|
|
|
|
tm.LastRipped.Clear(); // [RH] Do rip damage each step, like Hexen
|
|
|
|
}
|
|
|
|
|
2016-03-23 09:42:41 +00:00
|
|
|
if (!P_TryMove (this, Pos() + frac, true, NULL, tm))
|
2016-03-01 15:47:10 +00:00
|
|
|
{ // Blocked move
|
|
|
|
if (!(flags3 & MF3_SKYEXPLODE))
|
|
|
|
{
|
|
|
|
if (tm.ceilingline &&
|
|
|
|
tm.ceilingline->backsector &&
|
|
|
|
tm.ceilingline->backsector->GetTexture(sector_t::ceiling) == skyflatnum &&
|
2016-03-25 17:19:54 +00:00
|
|
|
Z() >= tm.ceilingline->backsector->ceilingplane.ZatPoint(PosRelative(tm.ceilingline)))
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
// Hack to prevent missiles exploding against the sky.
|
|
|
|
// Does not handle sky floors.
|
|
|
|
Destroy ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// [RH] Don't explode on horizon lines.
|
|
|
|
if (BlockingLine != NULL && BlockingLine->special == Line_Horizon)
|
|
|
|
{
|
|
|
|
Destroy ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
P_ExplodeMissile (this, BlockingLine, BlockingMobj);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2016-03-22 23:53:09 +00:00
|
|
|
AddZ(frac.Z);
|
2016-03-01 15:47:10 +00:00
|
|
|
UpdateWaterLevel (oldz);
|
2016-03-22 23:53:09 +00:00
|
|
|
oldz = Z();
|
|
|
|
if (oldz <= floorz)
|
2016-03-01 15:47:10 +00:00
|
|
|
{ // Hit the floor
|
|
|
|
|
|
|
|
if (floorpic == skyflatnum && !(flags3 & MF3_SKYEXPLODE))
|
|
|
|
{
|
|
|
|
// [RH] Just remove the missile without exploding it
|
|
|
|
// if this is a sky floor.
|
|
|
|
Destroy ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-20 18:52:35 +00:00
|
|
|
SetZ(floorz);
|
2016-03-01 15:47:10 +00:00
|
|
|
P_HitFloor (this);
|
|
|
|
P_ExplodeMissile (this, NULL, NULL);
|
|
|
|
return;
|
|
|
|
}
|
2016-03-20 12:32:53 +00:00
|
|
|
if (Top() > ceilingz)
|
2016-03-01 15:47:10 +00:00
|
|
|
{ // Hit the ceiling
|
|
|
|
|
|
|
|
if (ceilingpic == skyflatnum && !(flags3 & MF3_SKYEXPLODE))
|
|
|
|
{
|
|
|
|
Destroy ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-20 19:55:06 +00:00
|
|
|
SetZ(ceilingz - Height);
|
2016-03-01 15:47:10 +00:00
|
|
|
P_ExplodeMissile (this, NULL, NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (changexy && ripcount <= 0)
|
|
|
|
{
|
|
|
|
ripcount = count >> 3;
|
|
|
|
Effect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!CheckNoDelay())
|
|
|
|
return; // freed itself
|
|
|
|
// Advance the state
|
|
|
|
if (tics != -1)
|
|
|
|
{
|
|
|
|
if (tics > 0) tics--;
|
|
|
|
while (!tics)
|
|
|
|
{
|
|
|
|
if (!SetState (state->GetNextState ()))
|
|
|
|
{ // mobj was removed
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AFastProjectile::Effect()
|
|
|
|
{
|
2016-03-20 18:52:35 +00:00
|
|
|
FName name = GetClass()->MissileName;
|
|
|
|
if (name != NAME_None)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-03-20 18:52:35 +00:00
|
|
|
double hitz = Z()-8;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2016-03-20 18:52:35 +00:00
|
|
|
if (hitz < floorz)
|
|
|
|
{
|
|
|
|
hitz = floorz;
|
|
|
|
}
|
|
|
|
// Do not clip this offset to the floor.
|
|
|
|
hitz += GetClass()->MissileHeight;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2016-03-20 18:52:35 +00:00
|
|
|
PClassActor *trail = PClass::FindActor(name);
|
|
|
|
if (trail != NULL)
|
|
|
|
{
|
|
|
|
AActor *act = Spawn (trail, PosAtZ(hitz), ALLOW_REPLACE);
|
|
|
|
if (act != NULL)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-03-20 18:52:35 +00:00
|
|
|
act->Angles.Yaw = Angles.Yaw;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|