mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 21:11:26 +00:00
37067753fc
This is more to clarify intent than to fix things, none of the changes here should change behavior.
68 lines
1.3 KiB
Text
68 lines
1.3 KiB
Text
class DukeFrameEffect : DukeActor
|
|
{
|
|
default
|
|
{
|
|
statnum STAT_MISC;
|
|
Pic "SMALLSMOKE";
|
|
}
|
|
|
|
|
|
override void Initialize()
|
|
{
|
|
if (!self.mapSpawned && self.ownerActor)
|
|
{
|
|
self.scale = self.ownerActor.scale;
|
|
}
|
|
else
|
|
{
|
|
self.Scale = (0, 0);
|
|
}
|
|
}
|
|
|
|
override void Tick()
|
|
{
|
|
let Owner = self.ownerActor;
|
|
if (Owner)
|
|
{
|
|
self.temp_data[0]++;
|
|
|
|
if (self.temp_data[0] > 7)
|
|
{
|
|
self.Destroy();
|
|
return;
|
|
}
|
|
else if (self.temp_data[0] > 4) self.cstat |= CSTAT_SPRITE_TRANS_FLIP | CSTAT_SPRITE_TRANSLUCENT;
|
|
else if (self.temp_data[0] > 2) self.cstat |= CSTAT_SPRITE_TRANSLUCENT;
|
|
self.xoffset = Owner.xoffset;
|
|
self.yoffset = Owner.yoffset;
|
|
}
|
|
}
|
|
|
|
override bool animate(tspritetype t)
|
|
{
|
|
let OwnerAc = self.ownerActor;
|
|
if (OwnerAc)
|
|
{
|
|
if (OwnerAc.isPlayer())
|
|
if (ud.cameraactor == nullptr)
|
|
if (Duke.GetViewPlayer() == OwnerAc.GetPlayer() && display_mirror == 0)
|
|
{
|
|
t.ownerActor = nullptr;
|
|
t.scale = (0, 0);
|
|
return true;
|
|
}
|
|
if ((OwnerAc.cstat & CSTAT_SPRITE_INVISIBLE) == 0)
|
|
{
|
|
if (!OwnerAc.isPlayer() || !Raze.isRR()) t.SetSpritePic(OwnerAc, -1);
|
|
else t.SetSpritePic(OwnerAc, 0);
|
|
t.pal = OwnerAc.pal;
|
|
t.shade = OwnerAc.shade;
|
|
t.angle = OwnerAc.angle;
|
|
t.cstat = CSTAT_SPRITE_TRANSLUCENT | OwnerAc.cstat;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|