mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 04:50:26 +00:00
242 lines
4.5 KiB
Text
242 lines
4.5 KiB
Text
//===========================================================================
|
|
//
|
|
// Revenant
|
|
//
|
|
//===========================================================================
|
|
class Revenant : Actor
|
|
{
|
|
Default
|
|
{
|
|
Health 300;
|
|
Radius 20;
|
|
Height 56;
|
|
Mass 500;
|
|
Speed 10;
|
|
PainChance 100;
|
|
Monster;
|
|
MeleeThreshold 196;
|
|
+MISSILEMORE
|
|
+FLOORCLIP
|
|
SeeSound "skeleton/sight";
|
|
PainSound "skeleton/pain";
|
|
DeathSound "skeleton/death";
|
|
ActiveSound "skeleton/active";
|
|
MeleeSound "skeleton/melee";
|
|
HitObituary "$OB_UNDEADHIT";
|
|
Obituary "$OB_UNDEAD";
|
|
}
|
|
States
|
|
{
|
|
Spawn:
|
|
SKEL AB 10 A_Look;
|
|
Loop;
|
|
See:
|
|
SKEL AABBCCDDEEFF 2 A_Chase;
|
|
Loop;
|
|
Melee:
|
|
SKEL G 0 A_FaceTarget;
|
|
SKEL G 6 A_SkelWhoosh;
|
|
SKEL H 6 A_FaceTarget;
|
|
SKEL I 6 A_SkelFist;
|
|
Goto See;
|
|
Missile:
|
|
SKEL J 0 BRIGHT A_FaceTarget;
|
|
SKEL J 10 BRIGHT A_FaceTarget;
|
|
SKEL K 10 A_SkelMissile;
|
|
SKEL K 10 A_FaceTarget;
|
|
Goto See;
|
|
Pain:
|
|
SKEL L 5;
|
|
SKEL L 5 A_Pain;
|
|
Goto See;
|
|
Death:
|
|
SKEL LM 7;
|
|
SKEL N 7 A_Scream;
|
|
SKEL O 7 A_NoBlocking;
|
|
SKEL P 7;
|
|
SKEL Q -1;
|
|
Stop;
|
|
Raise:
|
|
SKEL Q 5;
|
|
SKEL PONML 5;
|
|
Goto See;
|
|
}
|
|
}
|
|
|
|
|
|
//===========================================================================
|
|
//
|
|
// Revenant Tracer
|
|
//
|
|
//===========================================================================
|
|
class RevenantTracer : Actor
|
|
{
|
|
Default
|
|
{
|
|
Radius 11;
|
|
Height 8;
|
|
Speed 10;
|
|
Damage 10;
|
|
Projectile;
|
|
+SEEKERMISSILE
|
|
+RANDOMIZE
|
|
SeeSound "skeleton/attack";
|
|
DeathSound "skeleton/tracex";
|
|
RenderStyle "Add";
|
|
}
|
|
States
|
|
{
|
|
Spawn:
|
|
FATB AB 2 BRIGHT A_Tracer;
|
|
Loop;
|
|
Death:
|
|
FBXP A 8 BRIGHT;
|
|
FBXP B 6 BRIGHT;
|
|
FBXP C 4 BRIGHT;
|
|
Stop;
|
|
}
|
|
}
|
|
|
|
|
|
//===========================================================================
|
|
//
|
|
// Revenant Tracer Smoke
|
|
//
|
|
//===========================================================================
|
|
class RevenantTracerSmoke : Actor
|
|
{
|
|
Default
|
|
{
|
|
+NOBLOCKMAP
|
|
+NOGRAVITY
|
|
+NOTELEPORT
|
|
RenderStyle "Translucent";
|
|
Alpha 0.5;
|
|
}
|
|
States
|
|
{
|
|
Spawn:
|
|
PUFF ABABC 4;
|
|
Stop;
|
|
}
|
|
}
|
|
|
|
//===========================================================================
|
|
//
|
|
// Code (must be attached to Actor)
|
|
//
|
|
//===========================================================================
|
|
|
|
extend class Actor
|
|
{
|
|
const TRACEANGLE = (16.875);
|
|
|
|
void A_SkelMissile()
|
|
{
|
|
if (target == null) return;
|
|
A_FaceTarget();
|
|
AddZ(16);
|
|
Actor missile = SpawnMissile(target, "RevenantTracer");
|
|
AddZ(-16);
|
|
if (missile != null)
|
|
{
|
|
missile.SetOrigin(missile.Vec3Offset(missile.Vel.X, missile.Vel.Y, 0.), false);
|
|
missile.tracer = target;
|
|
}
|
|
}
|
|
|
|
void A_SkelWhoosh()
|
|
{
|
|
if (target == null) return;
|
|
A_FaceTarget();
|
|
A_PlaySound("skeleton/swing", CHAN_WEAPON);
|
|
}
|
|
|
|
void A_SkelFist()
|
|
{
|
|
if (target == null) return;
|
|
A_FaceTarget();
|
|
|
|
if (CheckMeleeRange ())
|
|
{
|
|
int damage = random[SkelFist](1, 10) * 6;
|
|
A_PlaySound("skeleton/melee", CHAN_WEAPON);
|
|
int newdam = target.DamageMobj (self, self, damage, 'Melee');
|
|
target.TraceBleed (newdam > 0 ? newdam : damage, self);
|
|
}
|
|
}
|
|
|
|
void A_Tracer()
|
|
{
|
|
double dist;
|
|
double slope;
|
|
Actor dest;
|
|
Actor smoke;
|
|
|
|
// killough 1/18/98: this is why some missiles do not have smoke
|
|
// and some do. Also, internal demos start at random gametics, thus
|
|
// the bug in which revenants cause internal demos to go out of sync.
|
|
//
|
|
// killough 3/6/98: fix revenant internal demo bug by subtracting
|
|
// levelstarttic from gametic:
|
|
//
|
|
// [RH] level.time is always 0-based, so nothing special to do here.
|
|
|
|
if (level.time & 3) return;
|
|
|
|
// spawn a puff of smoke behind the rocket
|
|
SpawnPuff ("BulletPuff", pos, angle, angle, 3);
|
|
smoke = Spawn ("RevenantTracerSmoke", Vec3Offset(-Vel.X, -Vel.Y, 0.), ALLOW_REPLACE);
|
|
|
|
smoke.Vel.Z = 1.;
|
|
smoke.tics -= random[Tracer](0, 3);
|
|
if (smoke.tics < 1)
|
|
smoke.tics = 1;
|
|
|
|
// adjust direction
|
|
dest = tracer;
|
|
|
|
if (!dest || dest.health <= 0 || Speed == 0 || !CanSeek(dest))
|
|
return;
|
|
|
|
// change angle
|
|
double exact = AngleTo(dest);
|
|
double diff = deltaangle(angle, exact);
|
|
|
|
if (diff < 0)
|
|
{
|
|
angle -= TRACEANGLE;
|
|
if (deltaangle(angle, exact) > 0)
|
|
angle = exact;
|
|
}
|
|
else if (diff > 0)
|
|
{
|
|
angle += TRACEANGLE;
|
|
if (deltaangle(angle, exact) < 0.)
|
|
angle = exact;
|
|
}
|
|
|
|
VelFromAngle();
|
|
|
|
if (!bFloorHugger && !bCeilingHugger)
|
|
{
|
|
// change slope
|
|
dist = DistanceBySpeed(dest, Speed);
|
|
|
|
if (dest.Height >= 56.)
|
|
{
|
|
slope = (dest.pos.z + 40. - pos.z) / dist;
|
|
}
|
|
else
|
|
{
|
|
slope = (dest.pos.z + Height*(2./3) - pos.z) / dist;
|
|
}
|
|
|
|
if (slope < Vel.Z)
|
|
Vel.Z -= 1. / 8;
|
|
else
|
|
Vel.Z += 1. / 8;
|
|
}
|
|
}
|
|
}
|
|
|