mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-17 07:41:40 +00:00
a8c283dacd
- Converted all of Heretic's actors except the weapons to DECORATE. - Added the option to define the ActorInfos for native classes in DECORATE. SVN r1078 (trunk)
64 lines
1.6 KiB
C++
64 lines
1.6 KiB
C++
#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 "gstrings.h"
|
|
|
|
static FRandom pr_imp ("ImpExplode");
|
|
|
|
//----------------------------------------------------------------------------
|
|
//
|
|
// PROC A_ImpExplode
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
void A_ImpExplode (AActor *self)
|
|
{
|
|
AActor *chunk;
|
|
|
|
self->flags &= ~MF_NOGRAVITY;
|
|
|
|
chunk = Spawn("HereticImpChunk1", self->x, self->y, self->z, ALLOW_REPLACE);
|
|
chunk->momx = pr_imp.Random2 () << 10;
|
|
chunk->momy = pr_imp.Random2 () << 10;
|
|
chunk->momz = 9*FRACUNIT;
|
|
|
|
chunk = Spawn("HereticImpChunk2", self->x, self->y, self->z, ALLOW_REPLACE);
|
|
chunk->momx = pr_imp.Random2 () << 10;
|
|
chunk->momy = pr_imp.Random2 () << 10;
|
|
chunk->momz = 9*FRACUNIT;
|
|
if (self->special1 == 666)
|
|
{ // Extreme death crash
|
|
self->SetState (self->FindState("XCrash"));
|
|
}
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
//
|
|
// PROC A_ImpDeath
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
void A_ImpDeath (AActor *self)
|
|
{
|
|
self->flags &= ~MF_SOLID;
|
|
self->flags2 |= MF2_FLOORCLIP;
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
//
|
|
// PROC A_ImpXDeath1
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
void A_ImpXDeath1 (AActor *self)
|
|
{
|
|
self->flags &= ~MF_SOLID;
|
|
self->flags |= MF_NOGRAVITY;
|
|
self->flags2 |= MF2_FLOORCLIP;
|
|
self->special1 = 666; // Flag the crash routine
|
|
}
|
|
|