mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- Replaced the ActorInfo definitions of several internal classes with DECORATE definitions
SVN r1133 (trunk)
This commit is contained in:
parent
ef2c9243c5
commit
14e94b86e2
38 changed files with 456 additions and 336 deletions
|
@ -1,4 +1,5 @@
|
||||||
August 8, 2008 (Changes by Graf Zahl)
|
August 8, 2008 (Changes by Graf Zahl)
|
||||||
|
- Replaced the ActorInfo definitions of several internal classes with DECORATE definitions
|
||||||
- Converted teleport fog and destinations to DECORATE.
|
- Converted teleport fog and destinations to DECORATE.
|
||||||
- AActor::PreExplode is gone now that the last item that was using it has been converted.
|
- AActor::PreExplode is gone now that the last item that was using it has been converted.
|
||||||
- Converted the Sigil and the remaining things in a_strifeitems.cpp to DECORATE.
|
- Converted the Sigil and the remaining things in a_strifeitems.cpp to DECORATE.
|
||||||
|
|
|
@ -301,6 +301,7 @@ ACTOR(ClassBossHealth)
|
||||||
ACTOR(ClericAttack)
|
ACTOR(ClericAttack)
|
||||||
ACTOR(FighterAttack)
|
ACTOR(FighterAttack)
|
||||||
ACTOR(MageAttack)
|
ACTOR(MageAttack)
|
||||||
|
ACTOR(IceSetTics)
|
||||||
|
|
||||||
ACTOR(TemplarAttack)
|
ACTOR(TemplarAttack)
|
||||||
ACTOR(SentinelAttack)
|
ACTOR(SentinelAttack)
|
||||||
|
|
|
@ -21,13 +21,13 @@ static FRandom pr_freeze ("FreezeDeathChunks");
|
||||||
|
|
||||||
class ASwitchableDecoration : public AActor
|
class ASwitchableDecoration : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASwitchableDecoration, AActor)
|
DECLARE_CLASS (ASwitchableDecoration, AActor)
|
||||||
public:
|
public:
|
||||||
void Activate (AActor *activator);
|
void Activate (AActor *activator);
|
||||||
void Deactivate (AActor *activator);
|
void Deactivate (AActor *activator);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_ABSTRACT_ACTOR (ASwitchableDecoration)
|
IMPLEMENT_CLASS (ASwitchableDecoration)
|
||||||
|
|
||||||
void ASwitchableDecoration::Activate (AActor *activator)
|
void ASwitchableDecoration::Activate (AActor *activator)
|
||||||
{
|
{
|
||||||
|
@ -43,65 +43,12 @@ void ASwitchableDecoration::Deactivate (AActor *activator)
|
||||||
|
|
||||||
class ASwitchingDecoration : public ASwitchableDecoration
|
class ASwitchingDecoration : public ASwitchableDecoration
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASwitchingDecoration, ASwitchableDecoration)
|
DECLARE_CLASS (ASwitchingDecoration, ASwitchableDecoration)
|
||||||
public:
|
public:
|
||||||
void Deactivate (AActor *activator) {}
|
void Deactivate (AActor *activator) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_ABSTRACT_ACTOR (ASwitchingDecoration)
|
IMPLEMENT_CLASS (ASwitchingDecoration)
|
||||||
|
|
||||||
/***************************** IceChunk ************************************/
|
|
||||||
|
|
||||||
class AIceChunk : public AActor
|
|
||||||
{
|
|
||||||
DECLARE_ACTOR (AIceChunk, AActor)
|
|
||||||
};
|
|
||||||
|
|
||||||
FState AIceChunk::States[] =
|
|
||||||
{
|
|
||||||
S_NORMAL (ICEC, 'A', 10, NULL , &States[1]),
|
|
||||||
S_NORMAL (ICEC, 'B', 10, A_IceSetTics , &States[2]),
|
|
||||||
S_NORMAL (ICEC, 'C', 10, A_IceSetTics , &States[3]),
|
|
||||||
S_NORMAL (ICEC, 'D', 10, A_IceSetTics , NULL),
|
|
||||||
};
|
|
||||||
|
|
||||||
IMPLEMENT_ACTOR (AIceChunk, Any, -1, 0)
|
|
||||||
PROP_RadiusFixed (3)
|
|
||||||
PROP_HeightFixed (4)
|
|
||||||
PROP_Mass(5)
|
|
||||||
PROP_Gravity (FRACUNIT/8)
|
|
||||||
PROP_Flags (MF_DROPOFF)
|
|
||||||
PROP_Flags2 (MF2_CANNOTPUSH|MF2_FLOORCLIP|MF2_NOTELEPORT)
|
|
||||||
|
|
||||||
PROP_SpawnState (0)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
/***************************************************************************/
|
|
||||||
|
|
||||||
// A chunk of ice that is also a player -------------------------------------
|
|
||||||
|
|
||||||
class AIceChunkHead : public APlayerChunk
|
|
||||||
{
|
|
||||||
DECLARE_ACTOR (AIceChunkHead, APlayerChunk)
|
|
||||||
};
|
|
||||||
|
|
||||||
FState AIceChunkHead::States[] =
|
|
||||||
{
|
|
||||||
S_NORMAL (PLAY, 'A', 0, NULL , &States[1]),
|
|
||||||
S_NORMAL (ICEC, 'A', 10, A_IceCheckHeadDone , &States[1])
|
|
||||||
};
|
|
||||||
|
|
||||||
IMPLEMENT_ACTOR (AIceChunkHead, Any, -1, 0)
|
|
||||||
PROP_RadiusFixed (3)
|
|
||||||
PROP_HeightFixed (4)
|
|
||||||
PROP_Mass(5)
|
|
||||||
PROP_DamageType (NAME_Ice)
|
|
||||||
PROP_Gravity (FRACUNIT/8)
|
|
||||||
PROP_Flags (MF_DROPOFF)
|
|
||||||
PROP_Flags2 (MF2_CANNOTPUSH)
|
|
||||||
|
|
||||||
PROP_SpawnState (0)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
|
@ -255,20 +202,6 @@ void A_IceSetTics (AActor *actor)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//============================================================================
|
|
||||||
//
|
|
||||||
// A_IceCheckHeadDone
|
|
||||||
//
|
|
||||||
//============================================================================
|
|
||||||
|
|
||||||
void A_IceCheckHeadDone (AActor *actor)
|
|
||||||
{
|
|
||||||
if (actor->player == NULL)
|
|
||||||
{
|
|
||||||
actor->Destroy ();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//============================================================================
|
//============================================================================
|
||||||
//
|
//
|
||||||
// A_FreezeDeathChunks
|
// A_FreezeDeathChunks
|
||||||
|
@ -298,7 +231,7 @@ void A_FreezeDeathChunks (AActor *actor)
|
||||||
i = (pr_freeze.Random2()) % (numChunks/4);
|
i = (pr_freeze.Random2()) % (numChunks/4);
|
||||||
for (i = MAX (24, numChunks + i); i >= 0; i--)
|
for (i = MAX (24, numChunks + i); i >= 0; i--)
|
||||||
{
|
{
|
||||||
mo = Spawn<AIceChunk> (
|
mo = Spawn("IceChunk",
|
||||||
actor->x + (((pr_freeze()-128)*actor->radius)>>7),
|
actor->x + (((pr_freeze()-128)*actor->radius)>>7),
|
||||||
actor->y + (((pr_freeze()-128)*actor->radius)>>7),
|
actor->y + (((pr_freeze()-128)*actor->radius)>>7),
|
||||||
actor->z + (pr_freeze()*actor->height/255), ALLOW_REPLACE);
|
actor->z + (pr_freeze()*actor->height/255), ALLOW_REPLACE);
|
||||||
|
@ -315,17 +248,20 @@ void A_FreezeDeathChunks (AActor *actor)
|
||||||
}
|
}
|
||||||
if (actor->player)
|
if (actor->player)
|
||||||
{ // attach the player's view to a chunk of ice
|
{ // attach the player's view to a chunk of ice
|
||||||
AIceChunkHead *head = Spawn<AIceChunkHead> (actor->x, actor->y,
|
AActor *head = Spawn("IceChunkHead", actor->x, actor->y,
|
||||||
actor->z + actor->player->mo->ViewHeight, ALLOW_REPLACE);
|
actor->z + actor->player->mo->ViewHeight, ALLOW_REPLACE);
|
||||||
head->momz = FixedDiv(head->z-actor->z, actor->height)<<2;
|
head->momz = FixedDiv(head->z-actor->z, actor->height)<<2;
|
||||||
head->momx = pr_freeze.Random2 () << (FRACBITS-7);
|
head->momx = pr_freeze.Random2 () << (FRACBITS-7);
|
||||||
head->momy = pr_freeze.Random2 () << (FRACBITS-7);
|
head->momy = pr_freeze.Random2 () << (FRACBITS-7);
|
||||||
|
head->health = actor->health;
|
||||||
|
head->angle = actor->angle;
|
||||||
|
if (head->IsKindOf(RUNTIME_CLASS(APlayerPawn)))
|
||||||
|
{
|
||||||
|
head->player->mo = static_cast<APlayerPawn*>(head);
|
||||||
head->player = actor->player;
|
head->player = actor->player;
|
||||||
actor->player = NULL;
|
actor->player = NULL;
|
||||||
head->ObtainInventory (actor);
|
head->ObtainInventory (actor);
|
||||||
head->health = actor->health;
|
}
|
||||||
head->angle = actor->angle;
|
|
||||||
head->player->mo = head;
|
|
||||||
head->pitch = 0;
|
head->pitch = 0;
|
||||||
head->RenderStyle = actor->RenderStyle;
|
head->RenderStyle = actor->RenderStyle;
|
||||||
head->alpha = actor->alpha;
|
head->alpha = actor->alpha;
|
||||||
|
|
|
@ -38,21 +38,6 @@
|
||||||
#include "r_main.h"
|
#include "r_main.h"
|
||||||
#include "p_local.h"
|
#include "p_local.h"
|
||||||
|
|
||||||
class ADoomBuilderCamera : public AActor
|
|
||||||
{
|
|
||||||
DECLARE_STATELESS_ACTOR (ADoomBuilderCamera, AActor)
|
|
||||||
public:
|
|
||||||
void PostBeginPlay ();
|
|
||||||
};
|
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ADoomBuilderCamera, Any, 32000, 0)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void ADoomBuilderCamera::PostBeginPlay ()
|
|
||||||
{
|
|
||||||
Destroy ();
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
== SecurityCamera
|
== SecurityCamera
|
||||||
==
|
==
|
||||||
|
@ -64,7 +49,7 @@ void ADoomBuilderCamera::PostBeginPlay ()
|
||||||
|
|
||||||
class ASecurityCamera : public AActor
|
class ASecurityCamera : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASecurityCamera, AActor)
|
DECLARE_CLASS (ASecurityCamera, AActor)
|
||||||
public:
|
public:
|
||||||
void PostBeginPlay ();
|
void PostBeginPlay ();
|
||||||
void Tick ();
|
void Tick ();
|
||||||
|
@ -78,11 +63,7 @@ protected:
|
||||||
angle_t Range;
|
angle_t Range;
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASecurityCamera, Any, 9025, 0)
|
IMPLEMENT_CLASS (ASecurityCamera)
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOGRAVITY)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
PROP_RenderStyle (STYLE_None)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void ASecurityCamera::Serialize (FArchive &arc)
|
void ASecurityCamera::Serialize (FArchive &arc)
|
||||||
{
|
{
|
||||||
|
@ -137,7 +118,7 @@ void ASecurityCamera::Tick ()
|
||||||
|
|
||||||
class AAimingCamera : public ASecurityCamera
|
class AAimingCamera : public ASecurityCamera
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (AAimingCamera, ASecurityCamera)
|
DECLARE_CLASS (AAimingCamera, ASecurityCamera)
|
||||||
public:
|
public:
|
||||||
void PostBeginPlay ();
|
void PostBeginPlay ();
|
||||||
void Tick ();
|
void Tick ();
|
||||||
|
@ -147,8 +128,7 @@ protected:
|
||||||
int MaxPitchChange;
|
int MaxPitchChange;
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (AAimingCamera, Any, 9073, 0)
|
IMPLEMENT_CLASS (AAimingCamera)
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void AAimingCamera::Serialize (FArchive &arc)
|
void AAimingCamera::Serialize (FArchive &arc)
|
||||||
{
|
{
|
||||||
|
|
|
@ -8,7 +8,7 @@ static FRandom pr_dirt ("SpawnDirt");
|
||||||
|
|
||||||
class AGlassShard : public AActor
|
class AGlassShard : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (AGlassShard, AActor)
|
DECLARE_CLASS (AGlassShard, AActor)
|
||||||
public:
|
public:
|
||||||
bool FloorBounceMissile (secplane_t &plane)
|
bool FloorBounceMissile (secplane_t &plane)
|
||||||
{
|
{
|
||||||
|
@ -24,7 +24,7 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_ABSTRACT_ACTOR(AGlassShard)
|
IMPLEMENT_CLASS(AGlassShard)
|
||||||
|
|
||||||
// Dirt stuff
|
// Dirt stuff
|
||||||
|
|
||||||
|
|
|
@ -708,13 +708,12 @@ CCMD (spray)
|
||||||
|
|
||||||
class ADecal : public AActor
|
class ADecal : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ADecal, AActor);
|
DECLARE_CLASS (ADecal, AActor);
|
||||||
public:
|
public:
|
||||||
void BeginPlay ();
|
void BeginPlay ();
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ADecal, Any, 9200, 0)
|
IMPLEMENT_CLASS (ADecal)
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void ADecal::BeginPlay ()
|
void ADecal::BeginPlay ()
|
||||||
{
|
{
|
||||||
|
|
|
@ -38,19 +38,14 @@
|
||||||
|
|
||||||
class AParticleFountain : public AActor
|
class AParticleFountain : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (AParticleFountain, AActor)
|
DECLARE_CLASS (AParticleFountain, AActor)
|
||||||
public:
|
public:
|
||||||
void PostBeginPlay ();
|
void PostBeginPlay ();
|
||||||
void Activate (AActor *activator);
|
void Activate (AActor *activator);
|
||||||
void Deactivate (AActor *activator);
|
void Deactivate (AActor *activator);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (AParticleFountain, Any, -1, 0)
|
IMPLEMENT_CLASS (AParticleFountain)
|
||||||
PROP_HeightFixed (0)
|
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOGRAVITY)
|
|
||||||
PROP_RenderFlags (RF_INVISIBLE)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
|
|
||||||
void AParticleFountain::PostBeginPlay ()
|
void AParticleFountain::PostBeginPlay ()
|
||||||
{
|
{
|
||||||
|
|
|
@ -39,26 +39,14 @@
|
||||||
|
|
||||||
class AHateTarget : public AActor
|
class AHateTarget : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_ACTOR (AHateTarget, AActor)
|
DECLARE_CLASS (AHateTarget, AActor)
|
||||||
public:
|
public:
|
||||||
void BeginPlay ();
|
void BeginPlay ();
|
||||||
angle_t AngleIncrements (void);
|
angle_t AngleIncrements (void);
|
||||||
int TakeSpecialDamage (AActor *inflictor, AActor *source, int damage, FName damagetype);
|
int TakeSpecialDamage (AActor *inflictor, AActor *source, int damage, FName damagetype);
|
||||||
};
|
};
|
||||||
|
|
||||||
FState AHateTarget::States[] =
|
IMPLEMENT_CLASS (AHateTarget)
|
||||||
{
|
|
||||||
S_NORMAL (TNT1, 'A', -1, NULL , NULL)
|
|
||||||
};
|
|
||||||
|
|
||||||
IMPLEMENT_ACTOR (AHateTarget, Any, 9076, 0)
|
|
||||||
PROP_RadiusFixed (20)
|
|
||||||
PROP_HeightFixed (56)
|
|
||||||
PROP_Flags (MF_SHOOTABLE|MF_NOGRAVITY|MF_NOBLOOD)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
PROP_SpawnState (0)
|
|
||||||
PROP_MassLong (INT_MAX)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void AHateTarget::BeginPlay ()
|
void AHateTarget::BeginPlay ()
|
||||||
{
|
{
|
||||||
|
|
|
@ -51,18 +51,7 @@
|
||||||
//
|
//
|
||||||
//--------------------------------------------------------------------------
|
//--------------------------------------------------------------------------
|
||||||
|
|
||||||
FState AMapMarker::States[] =
|
IMPLEMENT_CLASS(AMapMarker)
|
||||||
{
|
|
||||||
S_NORMAL (AMRK, 'A', -1, NULL, NULL)
|
|
||||||
};
|
|
||||||
|
|
||||||
IMPLEMENT_ACTOR(AMapMarker, Any, 9040, 0)
|
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOGRAVITY)
|
|
||||||
PROP_RenderFlags (RF_INVISIBLE)
|
|
||||||
PROP_SpawnState (0)
|
|
||||||
PROP_XScale (FRACUNIT/2)
|
|
||||||
PROP_YScale (FRACUNIT/2)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void AMapMarker::BeginPlay ()
|
void AMapMarker::BeginPlay ()
|
||||||
{
|
{
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
|
|
||||||
class AInterpolationPoint : public AActor
|
class AInterpolationPoint : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (AInterpolationPoint, AActor)
|
DECLARE_CLASS (AInterpolationPoint, AActor)
|
||||||
HAS_OBJECT_POINTERS
|
HAS_OBJECT_POINTERS
|
||||||
public:
|
public:
|
||||||
void BeginPlay ();
|
void BeginPlay ();
|
||||||
|
@ -67,12 +67,6 @@ IMPLEMENT_POINTY_CLASS (AInterpolationPoint)
|
||||||
DECLARE_POINTER (Next)
|
DECLARE_POINTER (Next)
|
||||||
END_POINTERS
|
END_POINTERS
|
||||||
|
|
||||||
BEGIN_STATELESS_DEFAULTS (AInterpolationPoint, Any, 9070, 0)
|
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOGRAVITY)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
PROP_RenderStyle (STYLE_None)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void AInterpolationPoint::Serialize (FArchive &arc)
|
void AInterpolationPoint::Serialize (FArchive &arc)
|
||||||
{
|
{
|
||||||
Super::Serialize (arc);
|
Super::Serialize (arc);
|
||||||
|
@ -135,15 +129,12 @@ AInterpolationPoint *AInterpolationPoint::ScanForLoop ()
|
||||||
|
|
||||||
class AInterpolationSpecial : public AActor
|
class AInterpolationSpecial : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (AInterpolationSpecial, AActor)
|
DECLARE_CLASS (AInterpolationSpecial, AActor)
|
||||||
public:
|
public:
|
||||||
void Tick () {} // Does absolutely nothing itself
|
void Tick () {} // Does absolutely nothing itself
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (AInterpolationSpecial, Any, 9075, 0)
|
IMPLEMENT_CLASS (AInterpolationSpecial, Any, 9075, 0)
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOSECTOR)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
== PathFollower: something that follows a camera path
|
== PathFollower: something that follows a camera path
|
||||||
|
@ -163,7 +154,7 @@ END_DEFAULTS
|
||||||
|
|
||||||
class APathFollower : public AActor
|
class APathFollower : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (APathFollower, AActor)
|
DECLARE_CLASS (APathFollower, AActor)
|
||||||
HAS_OBJECT_POINTERS
|
HAS_OBJECT_POINTERS
|
||||||
public:
|
public:
|
||||||
void BeginPlay ();
|
void BeginPlay ();
|
||||||
|
@ -190,11 +181,6 @@ IMPLEMENT_POINTY_CLASS (APathFollower)
|
||||||
DECLARE_POINTER (CurrNode)
|
DECLARE_POINTER (CurrNode)
|
||||||
END_POINTERS
|
END_POINTERS
|
||||||
|
|
||||||
BEGIN_STATELESS_DEFAULTS (APathFollower, Any, 9071, 0)
|
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOSECTOR|MF_NOGRAVITY)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void APathFollower::Serialize (FArchive &arc)
|
void APathFollower::Serialize (FArchive &arc)
|
||||||
{
|
{
|
||||||
Super::Serialize (arc);
|
Super::Serialize (arc);
|
||||||
|
@ -518,7 +504,7 @@ bool APathFollower::Interpolate ()
|
||||||
|
|
||||||
class AActorMover : public APathFollower
|
class AActorMover : public APathFollower
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (AActorMover, APathFollower)
|
DECLARE_CLASS (AActorMover, APathFollower)
|
||||||
public:
|
public:
|
||||||
void PostBeginPlay ();
|
void PostBeginPlay ();
|
||||||
void Activate (AActor *activator);
|
void Activate (AActor *activator);
|
||||||
|
@ -527,8 +513,7 @@ protected:
|
||||||
bool Interpolate ();
|
bool Interpolate ();
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (AActorMover, Any, 9074, 0)
|
IMPLEMENT_CLASS (AActorMover)
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void AActorMover::PostBeginPlay ()
|
void AActorMover::PostBeginPlay ()
|
||||||
{
|
{
|
||||||
|
@ -628,7 +613,7 @@ void AActorMover::Deactivate (AActor *activator)
|
||||||
|
|
||||||
class AMovingCamera : public APathFollower
|
class AMovingCamera : public APathFollower
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (AMovingCamera, APathFollower)
|
DECLARE_CLASS (AMovingCamera, APathFollower)
|
||||||
HAS_OBJECT_POINTERS
|
HAS_OBJECT_POINTERS
|
||||||
public:
|
public:
|
||||||
void PostBeginPlay ();
|
void PostBeginPlay ();
|
||||||
|
@ -644,9 +629,6 @@ IMPLEMENT_POINTY_CLASS (AMovingCamera)
|
||||||
DECLARE_POINTER (Activator)
|
DECLARE_POINTER (Activator)
|
||||||
END_POINTERS
|
END_POINTERS
|
||||||
|
|
||||||
BEGIN_STATELESS_DEFAULTS (AMovingCamera, Any, 9072, 0)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void AMovingCamera::Serialize (FArchive &arc)
|
void AMovingCamera::Serialize (FArchive &arc)
|
||||||
{
|
{
|
||||||
Super::Serialize (arc);
|
Super::Serialize (arc);
|
||||||
|
|
|
@ -43,16 +43,13 @@ EXTERN_CVAR(String, secretmessage)
|
||||||
|
|
||||||
class ASecretTrigger : public AActor
|
class ASecretTrigger : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASecretTrigger, AActor)
|
DECLARE_CLASS (ASecretTrigger, AActor)
|
||||||
public:
|
public:
|
||||||
void PostBeginPlay ();
|
void PostBeginPlay ();
|
||||||
void Activate (AActor *activator);
|
void Activate (AActor *activator);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASecretTrigger, Any, 9046, 0)
|
IMPLEMENT_CLASS (ASecretTrigger)
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOSECTOR|MF_NOGRAVITY)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void ASecretTrigger::PostBeginPlay ()
|
void ASecretTrigger::PostBeginPlay ()
|
||||||
{
|
{
|
||||||
|
|
|
@ -37,10 +37,7 @@
|
||||||
|
|
||||||
// The base class for sector actions ----------------------------------------
|
// The base class for sector actions ----------------------------------------
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASectorAction, Any, -1, 0)
|
IMPLEMENT_CLASS (ASectorAction)
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOSECTOR|MF_NOGRAVITY)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void ASectorAction::Destroy ()
|
void ASectorAction::Destroy ()
|
||||||
{
|
{
|
||||||
|
@ -111,13 +108,13 @@ bool ASectorAction::CheckTrigger (AActor *triggerer) const
|
||||||
|
|
||||||
class ASecActEnter : public ASectorAction
|
class ASecActEnter : public ASectorAction
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASecActEnter, ASectorAction)
|
DECLARE_CLASS (ASecActEnter, ASectorAction)
|
||||||
public:
|
public:
|
||||||
bool TriggerAction (AActor *triggerer, int activationType);
|
bool TriggerAction (AActor *triggerer, int activationType);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASecActEnter, Any, 9998, 0)
|
IMPLEMENT_CLASS (ASecActEnter)
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
bool ASecActEnter::TriggerAction (AActor *triggerer, int activationType)
|
bool ASecActEnter::TriggerAction (AActor *triggerer, int activationType)
|
||||||
{
|
{
|
||||||
|
@ -129,13 +126,13 @@ bool ASecActEnter::TriggerAction (AActor *triggerer, int activationType)
|
||||||
|
|
||||||
class ASecActExit : public ASectorAction
|
class ASecActExit : public ASectorAction
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASecActExit, ASectorAction)
|
DECLARE_CLASS (ASecActExit, ASectorAction)
|
||||||
public:
|
public:
|
||||||
bool TriggerAction (AActor *triggerer, int activationType);
|
bool TriggerAction (AActor *triggerer, int activationType);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASecActExit, Any, 9997, 0)
|
IMPLEMENT_CLASS (ASecActExit)
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
bool ASecActExit::TriggerAction (AActor *triggerer, int activationType)
|
bool ASecActExit::TriggerAction (AActor *triggerer, int activationType)
|
||||||
{
|
{
|
||||||
|
@ -147,15 +144,15 @@ bool ASecActExit::TriggerAction (AActor *triggerer, int activationType)
|
||||||
|
|
||||||
class ASecActHitFloor : public ASectorAction
|
class ASecActHitFloor : public ASectorAction
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASecActHitFloor, ASectorAction)
|
DECLARE_CLASS (ASecActHitFloor, ASectorAction)
|
||||||
public:
|
public:
|
||||||
bool TriggerAction (AActor *triggerer, int activationType);
|
bool TriggerAction (AActor *triggerer, int activationType);
|
||||||
};
|
};
|
||||||
|
|
||||||
// Skull Tag uses 9999 for a special that is triggered whenever
|
// Skull Tag uses 9999 for a special that is triggered whenever
|
||||||
// the player is on the sector's floor. I think this is more useful.
|
// the player is on the sector's floor. I think this is more useful.
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASecActHitFloor, Any, 9999, 0)
|
IMPLEMENT_CLASS (ASecActHitFloor)
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
bool ASecActHitFloor::TriggerAction (AActor *triggerer, int activationType)
|
bool ASecActHitFloor::TriggerAction (AActor *triggerer, int activationType)
|
||||||
{
|
{
|
||||||
|
@ -167,13 +164,13 @@ bool ASecActHitFloor::TriggerAction (AActor *triggerer, int activationType)
|
||||||
|
|
||||||
class ASecActHitCeil : public ASectorAction
|
class ASecActHitCeil : public ASectorAction
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASecActHitCeil, ASectorAction)
|
DECLARE_CLASS (ASecActHitCeil, ASectorAction)
|
||||||
public:
|
public:
|
||||||
bool TriggerAction (AActor *triggerer, int activationType);
|
bool TriggerAction (AActor *triggerer, int activationType);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASecActHitCeil, Any, 9996, 0)
|
IMPLEMENT_CLASS (ASecActHitCeil)
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
bool ASecActHitCeil::TriggerAction (AActor *triggerer, int activationType)
|
bool ASecActHitCeil::TriggerAction (AActor *triggerer, int activationType)
|
||||||
{
|
{
|
||||||
|
@ -185,13 +182,13 @@ bool ASecActHitCeil::TriggerAction (AActor *triggerer, int activationType)
|
||||||
|
|
||||||
class ASecActUse : public ASectorAction
|
class ASecActUse : public ASectorAction
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASecActUse, ASectorAction)
|
DECLARE_CLASS (ASecActUse, ASectorAction)
|
||||||
public:
|
public:
|
||||||
bool TriggerAction (AActor *triggerer, int activationType);
|
bool TriggerAction (AActor *triggerer, int activationType);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASecActUse, Any, 9995, 0)
|
IMPLEMENT_CLASS (ASecActUse)
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
bool ASecActUse::TriggerAction (AActor *triggerer, int activationType)
|
bool ASecActUse::TriggerAction (AActor *triggerer, int activationType)
|
||||||
{
|
{
|
||||||
|
@ -203,13 +200,13 @@ bool ASecActUse::TriggerAction (AActor *triggerer, int activationType)
|
||||||
|
|
||||||
class ASecActUseWall : public ASectorAction
|
class ASecActUseWall : public ASectorAction
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASecActUseWall, ASectorAction)
|
DECLARE_CLASS (ASecActUseWall, ASectorAction)
|
||||||
public:
|
public:
|
||||||
bool TriggerAction (AActor *triggerer, int activationType);
|
bool TriggerAction (AActor *triggerer, int activationType);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASecActUseWall, Any, 9994, 0)
|
IMPLEMENT_CLASS (ASecActUseWall)
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
bool ASecActUseWall::TriggerAction (AActor *triggerer, int activationType)
|
bool ASecActUseWall::TriggerAction (AActor *triggerer, int activationType)
|
||||||
{
|
{
|
||||||
|
@ -221,13 +218,13 @@ bool ASecActUseWall::TriggerAction (AActor *triggerer, int activationType)
|
||||||
|
|
||||||
class ASecActEyesDive : public ASectorAction
|
class ASecActEyesDive : public ASectorAction
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASecActEyesDive, ASectorAction)
|
DECLARE_CLASS (ASecActEyesDive, ASectorAction)
|
||||||
public:
|
public:
|
||||||
bool TriggerAction (AActor *triggerer, int activationType);
|
bool TriggerAction (AActor *triggerer, int activationType);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASecActEyesDive, Any, 9993, 0)
|
IMPLEMENT_CLASS (ASecActEyesDive)
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
bool ASecActEyesDive::TriggerAction (AActor *triggerer, int activationType)
|
bool ASecActEyesDive::TriggerAction (AActor *triggerer, int activationType)
|
||||||
{
|
{
|
||||||
|
@ -239,13 +236,13 @@ bool ASecActEyesDive::TriggerAction (AActor *triggerer, int activationType)
|
||||||
|
|
||||||
class ASecActEyesSurface : public ASectorAction
|
class ASecActEyesSurface : public ASectorAction
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASecActEyesSurface, ASectorAction)
|
DECLARE_CLASS (ASecActEyesSurface, ASectorAction)
|
||||||
public:
|
public:
|
||||||
bool TriggerAction (AActor *triggerer, int activationType);
|
bool TriggerAction (AActor *triggerer, int activationType);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASecActEyesSurface, Any, 9992, 0)
|
IMPLEMENT_CLASS (ASecActEyesSurface)
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
bool ASecActEyesSurface::TriggerAction (AActor *triggerer, int activationType)
|
bool ASecActEyesSurface::TriggerAction (AActor *triggerer, int activationType)
|
||||||
{
|
{
|
||||||
|
@ -257,13 +254,13 @@ bool ASecActEyesSurface::TriggerAction (AActor *triggerer, int activationType)
|
||||||
|
|
||||||
class ASecActEyesBelowC : public ASectorAction
|
class ASecActEyesBelowC : public ASectorAction
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASecActEyesBelowC, ASectorAction)
|
DECLARE_CLASS (ASecActEyesBelowC, ASectorAction)
|
||||||
public:
|
public:
|
||||||
bool TriggerAction (AActor *triggerer, int activationType);
|
bool TriggerAction (AActor *triggerer, int activationType);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASecActEyesBelowC, Any, 9983, 0)
|
IMPLEMENT_CLASS (ASecActEyesBelowC)
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
bool ASecActEyesBelowC::TriggerAction (AActor *triggerer, int activationType)
|
bool ASecActEyesBelowC::TriggerAction (AActor *triggerer, int activationType)
|
||||||
{
|
{
|
||||||
|
@ -275,13 +272,13 @@ bool ASecActEyesBelowC::TriggerAction (AActor *triggerer, int activationType)
|
||||||
|
|
||||||
class ASecActEyesAboveC : public ASectorAction
|
class ASecActEyesAboveC : public ASectorAction
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASecActEyesAboveC, ASectorAction)
|
DECLARE_CLASS (ASecActEyesAboveC, ASectorAction)
|
||||||
public:
|
public:
|
||||||
bool TriggerAction (AActor *triggerer, int activationType);
|
bool TriggerAction (AActor *triggerer, int activationType);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASecActEyesAboveC, Any, 9982, 0)
|
IMPLEMENT_CLASS (ASecActEyesAboveC)
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
bool ASecActEyesAboveC::TriggerAction (AActor *triggerer, int activationType)
|
bool ASecActEyesAboveC::TriggerAction (AActor *triggerer, int activationType)
|
||||||
{
|
{
|
||||||
|
@ -293,13 +290,13 @@ bool ASecActEyesAboveC::TriggerAction (AActor *triggerer, int activationType)
|
||||||
|
|
||||||
class ASecActHitFakeFloor : public ASectorAction
|
class ASecActHitFakeFloor : public ASectorAction
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASecActHitFakeFloor, ASectorAction)
|
DECLARE_CLASS (ASecActHitFakeFloor, ASectorAction)
|
||||||
public:
|
public:
|
||||||
bool TriggerAction (AActor *triggerer, int activationType);
|
bool TriggerAction (AActor *triggerer, int activationType);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASecActHitFakeFloor, Any, 9989, 0)
|
IMPLEMENT_CLASS (ASecActHitFakeFloor)
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
bool ASecActHitFakeFloor::TriggerAction (AActor *triggerer, int activationType)
|
bool ASecActHitFakeFloor::TriggerAction (AActor *triggerer, int activationType)
|
||||||
{
|
{
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
class AColorSetter : public AActor
|
class AColorSetter : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR(AColorSetter, AActor)
|
DECLARE_CLASS(AColorSetter, AActor)
|
||||||
|
|
||||||
void PostBeginPlay()
|
void PostBeginPlay()
|
||||||
{
|
{
|
||||||
|
@ -15,16 +15,11 @@ class AColorSetter : public AActor
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR(AColorSetter, Any, 9038, 0)
|
IMPLEMENT_CLASS(AColorSetter)
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOGRAVITY)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
PROP_RenderStyle (STYLE_None)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
|
|
||||||
class AFadeSetter : public AActor
|
class AFadeSetter : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR(AFadeSetter, AActor)
|
DECLARE_CLASS(AFadeSetter, AActor)
|
||||||
|
|
||||||
void PostBeginPlay()
|
void PostBeginPlay()
|
||||||
{
|
{
|
||||||
|
@ -35,8 +30,4 @@ class AFadeSetter : public AActor
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR(AFadeSetter, Any, 9039, 0)
|
IMPLEMENT_CLASS(AFadeSetter)
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOGRAVITY)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
PROP_RenderStyle (STYLE_None)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
|
@ -87,7 +87,7 @@ public:
|
||||||
|
|
||||||
class ASkyViewpoint : public AActor
|
class ASkyViewpoint : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASkyViewpoint, AActor)
|
DECLARE_CLASS (ASkyViewpoint, AActor)
|
||||||
public:
|
public:
|
||||||
void Serialize (FArchive &arc);
|
void Serialize (FArchive &arc);
|
||||||
void BeginPlay ();
|
void BeginPlay ();
|
||||||
|
@ -173,7 +173,7 @@ public:
|
||||||
|
|
||||||
class AMapMarker : public AActor
|
class AMapMarker : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_ACTOR(AMapMarker, AActor)
|
DECLARE_CLASS(AMapMarker, AActor)
|
||||||
public:
|
public:
|
||||||
void BeginPlay ();
|
void BeginPlay ();
|
||||||
void Activate (AActor *activator);
|
void Activate (AActor *activator);
|
||||||
|
|
|
@ -38,10 +38,7 @@
|
||||||
|
|
||||||
// arg0 = Visibility*4 for this skybox
|
// arg0 = Visibility*4 for this skybox
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASkyViewpoint, Any, 9080, 0)
|
IMPLEMENT_CLASS (ASkyViewpoint)
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOSECTOR|MF_NOGRAVITY)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
// If this actor has no TID, make it the default sky box
|
// If this actor has no TID, make it the default sky box
|
||||||
void ASkyViewpoint::BeginPlay ()
|
void ASkyViewpoint::BeginPlay ()
|
||||||
|
@ -101,15 +98,12 @@ void ASkyViewpoint::Destroy ()
|
||||||
|
|
||||||
class ASkyPicker : public AActor
|
class ASkyPicker : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASkyPicker, AActor)
|
DECLARE_CLASS (ASkyPicker, AActor)
|
||||||
public:
|
public:
|
||||||
void PostBeginPlay ();
|
void PostBeginPlay ();
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASkyPicker, Any, 9081, 0)
|
IMPLEMENT_CLASS (ASkyPicker)
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOSECTOR|MF_NOGRAVITY)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void ASkyPicker::PostBeginPlay ()
|
void ASkyPicker::PostBeginPlay ()
|
||||||
{
|
{
|
||||||
|
@ -152,12 +146,12 @@ void ASkyPicker::PostBeginPlay ()
|
||||||
|
|
||||||
class AStackPoint : public ASkyViewpoint
|
class AStackPoint : public ASkyViewpoint
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (AStackPoint, ASkyViewpoint)
|
DECLARE_CLASS (AStackPoint, ASkyViewpoint)
|
||||||
public:
|
public:
|
||||||
void BeginPlay ();
|
void BeginPlay ();
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_ABSTRACT_ACTOR (AStackPoint)
|
IMPLEMENT_CLASS (AStackPoint)
|
||||||
|
|
||||||
void AStackPoint::BeginPlay ()
|
void AStackPoint::BeginPlay ()
|
||||||
{
|
{
|
||||||
|
@ -172,23 +166,20 @@ void AStackPoint::BeginPlay ()
|
||||||
|
|
||||||
class AUpperStackLookOnly : public AStackPoint
|
class AUpperStackLookOnly : public AStackPoint
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (AUpperStackLookOnly, AStackPoint)
|
DECLARE_CLASS (AUpperStackLookOnly, AStackPoint)
|
||||||
public:
|
public:
|
||||||
void PostBeginPlay ();
|
void PostBeginPlay ();
|
||||||
};
|
};
|
||||||
|
|
||||||
class ALowerStackLookOnly : public AStackPoint
|
class ALowerStackLookOnly : public AStackPoint
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ALowerStackLookOnly, AStackPoint)
|
DECLARE_CLASS (ALowerStackLookOnly, AStackPoint)
|
||||||
public:
|
public:
|
||||||
void PostBeginPlay ();
|
void PostBeginPlay ();
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (AUpperStackLookOnly, Any, 9077, 0)
|
IMPLEMENT_CLASS (AUpperStackLookOnly)
|
||||||
END_DEFAULTS
|
IMPLEMENT_CLASS (ALowerStackLookOnly)
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ALowerStackLookOnly, Any, 9078, 0)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void AUpperStackLookOnly::PostBeginPlay ()
|
void AUpperStackLookOnly::PostBeginPlay ()
|
||||||
{
|
{
|
||||||
|
@ -218,16 +209,13 @@ void ALowerStackLookOnly::PostBeginPlay ()
|
||||||
|
|
||||||
class ASectorSilencer : public AActor
|
class ASectorSilencer : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASectorSilencer, AActor)
|
DECLARE_CLASS (ASectorSilencer, AActor)
|
||||||
public:
|
public:
|
||||||
void BeginPlay ();
|
void BeginPlay ();
|
||||||
void Destroy ();
|
void Destroy ();
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASectorSilencer, Any, 9082, 0)
|
IMPLEMENT_CLASS (ASectorSilencer)
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOGRAVITY)
|
|
||||||
PROP_RenderStyle (STYLE_None)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void ASectorSilencer::BeginPlay ()
|
void ASectorSilencer::BeginPlay ()
|
||||||
{
|
{
|
||||||
|
|
|
@ -39,17 +39,14 @@
|
||||||
|
|
||||||
class ASoundEnvironment : public AActor
|
class ASoundEnvironment : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASoundEnvironment, AActor)
|
DECLARE_CLASS (ASoundEnvironment, AActor)
|
||||||
public:
|
public:
|
||||||
void PostBeginPlay ();
|
void PostBeginPlay ();
|
||||||
void Deactivate (AActor *activator);
|
void Deactivate (AActor *activator);
|
||||||
void Activate (AActor *deactivator);
|
void Activate (AActor *deactivator);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASoundEnvironment, Any, 9048, 0)
|
IMPLEMENT_CLASS (ASoundEnvironment)
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOSECTOR|MF_NOGRAVITY)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void ASoundEnvironment::PostBeginPlay ()
|
void ASoundEnvironment::PostBeginPlay ()
|
||||||
{
|
{
|
||||||
|
|
|
@ -70,7 +70,7 @@
|
||||||
|
|
||||||
class ASoundSequenceSlot : public AActor
|
class ASoundSequenceSlot : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASoundSequenceSlot, AActor)
|
DECLARE_CLASS (ASoundSequenceSlot, AActor)
|
||||||
HAS_OBJECT_POINTERS
|
HAS_OBJECT_POINTERS
|
||||||
public:
|
public:
|
||||||
void Serialize (FArchive &arc);
|
void Serialize (FArchive &arc);
|
||||||
|
@ -82,11 +82,6 @@ IMPLEMENT_POINTY_CLASS(ASoundSequenceSlot)
|
||||||
DECLARE_POINTER(Sequence)
|
DECLARE_POINTER(Sequence)
|
||||||
END_POINTERS
|
END_POINTERS
|
||||||
|
|
||||||
BEGIN_STATELESS_DEFAULTS (ASoundSequenceSlot, Any, -1, 0)
|
|
||||||
PROP_Flags (MF_NOSECTOR|MF_NOBLOCKMAP)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
//
|
//
|
||||||
// ASoundSequenceSlot :: Serialize
|
// ASoundSequenceSlot :: Serialize
|
||||||
|
@ -103,7 +98,7 @@ void ASoundSequenceSlot::Serialize (FArchive &arc)
|
||||||
|
|
||||||
class ASoundSequence : public AActor
|
class ASoundSequence : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASoundSequence, AActor)
|
DECLARE_CLASS (ASoundSequence, AActor)
|
||||||
public:
|
public:
|
||||||
void Destroy ();
|
void Destroy ();
|
||||||
void PostBeginPlay ();
|
void PostBeginPlay ();
|
||||||
|
@ -111,10 +106,7 @@ public:
|
||||||
void Deactivate (AActor *activator);
|
void Deactivate (AActor *activator);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASoundSequence, Any, 14066, 0)
|
IMPLEMENT_CLASS (ASoundSequence)
|
||||||
PROP_Flags (MF_NOSECTOR|MF_NOBLOCKMAP)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
//
|
//
|
||||||
|
|
|
@ -40,15 +40,13 @@
|
||||||
|
|
||||||
class ASpark : public AActor
|
class ASpark : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (ASpark, AActor)
|
DECLARE_CLASS (ASpark, AActor)
|
||||||
public:
|
public:
|
||||||
angle_t AngleIncrements ();
|
angle_t AngleIncrements ();
|
||||||
void Activate (AActor *activator);
|
void Activate (AActor *activator);
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (ASpark, Any, 9026, 0)
|
IMPLEMENT_CLASS (ASpark)
|
||||||
PROP_Flags (MF_NOSECTOR|MF_NOBLOCKMAP|MF_NOGRAVITY)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
angle_t ASpark::AngleIncrements ()
|
angle_t ASpark::AngleIncrements ()
|
||||||
{
|
{
|
||||||
|
|
|
@ -37,15 +37,12 @@
|
||||||
|
|
||||||
class AWaterZone : public AActor
|
class AWaterZone : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_STATELESS_ACTOR (AWaterZone, AActor)
|
DECLARE_CLASS (AWaterZone, AActor)
|
||||||
public:
|
public:
|
||||||
void PostBeginPlay ();
|
void PostBeginPlay ();
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_STATELESS_ACTOR (AWaterZone, Any, 9045, 0)
|
IMPLEMENT_CLASS (AWaterZone)
|
||||||
PROP_Flags (MF_NOBLOCKMAP|MF_NOSECTOR|MF_NOGRAVITY)
|
|
||||||
PROP_Flags3 (MF3_DONTSPLASH)
|
|
||||||
END_DEFAULTS
|
|
||||||
|
|
||||||
void AWaterZone::PostBeginPlay ()
|
void AWaterZone::PostBeginPlay ()
|
||||||
{
|
{
|
||||||
|
|
|
@ -109,7 +109,7 @@ enum
|
||||||
|
|
||||||
class ASectorAction : public AActor
|
class ASectorAction : public AActor
|
||||||
{
|
{
|
||||||
DECLARE_ACTOR (ASectorAction, AActor)
|
DECLARE_CLASS (ASectorAction, AActor)
|
||||||
public:
|
public:
|
||||||
void Destroy ();
|
void Destroy ();
|
||||||
void BeginPlay ();
|
void BeginPlay ();
|
||||||
|
|
54
wadsrc/static/actors/shared/action.txt
Normal file
54
wadsrc/static/actors/shared/action.txt
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
|
||||||
|
|
||||||
|
//==========================================================================
|
||||||
|
//
|
||||||
|
// Ice chunk
|
||||||
|
//
|
||||||
|
//==========================================================================
|
||||||
|
|
||||||
|
ACTOR IceChunk
|
||||||
|
{
|
||||||
|
Radius 3
|
||||||
|
Height 4
|
||||||
|
Mass 5
|
||||||
|
Gravity 0.125
|
||||||
|
+DROPOFF
|
||||||
|
+CANNOTPUSH
|
||||||
|
+FLOORCLIP
|
||||||
|
+NOTELEPORT
|
||||||
|
|
||||||
|
action native A_IceSetTics ();
|
||||||
|
|
||||||
|
States
|
||||||
|
{
|
||||||
|
Spawn:
|
||||||
|
ICEC A 1
|
||||||
|
ICEC ABCD 10 A_IceSetTics
|
||||||
|
Stop
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//==========================================================================
|
||||||
|
//
|
||||||
|
// A chunk of ice that is also a player
|
||||||
|
//
|
||||||
|
//==========================================================================
|
||||||
|
|
||||||
|
ACTOR IceChunkHead : PlayerChunk
|
||||||
|
{
|
||||||
|
Radius 3
|
||||||
|
Height 4
|
||||||
|
Mass 5
|
||||||
|
Gravity 0.125
|
||||||
|
DamageType Ice
|
||||||
|
+DROPOFF
|
||||||
|
+CANNOTPUSH
|
||||||
|
States
|
||||||
|
{
|
||||||
|
Spawn:
|
||||||
|
ICEC A 0
|
||||||
|
ICEC A 10 A_CheckPlayerDone
|
||||||
|
wait
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
22
wadsrc/static/actors/shared/camera.txt
Normal file
22
wadsrc/static/actors/shared/camera.txt
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
ACTOR DoomBuilderCamera 32000
|
||||||
|
{
|
||||||
|
States
|
||||||
|
{
|
||||||
|
Spawn:
|
||||||
|
TNT1 A 1
|
||||||
|
Stop
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ACTOR SecurityCamera 9025 native
|
||||||
|
{
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
RenderStyle None
|
||||||
|
}
|
||||||
|
|
||||||
|
ACTOR AimingCamera : SecurityCamera 9073 native
|
||||||
|
{
|
||||||
|
}
|
|
@ -169,10 +169,8 @@ ACTOR Dirt6
|
||||||
|
|
||||||
// Stained glass ------------------------------------------------------------
|
// Stained glass ------------------------------------------------------------
|
||||||
|
|
||||||
|
ACTOR GlassShard native
|
||||||
ACTOR SGShard1 : GlassShard
|
|
||||||
{
|
{
|
||||||
SpawnID 54
|
|
||||||
Radius 5
|
Radius 5
|
||||||
Mass 5
|
Mass 5
|
||||||
Projectile
|
Projectile
|
||||||
|
@ -180,6 +178,11 @@ ACTOR SGShard1 : GlassShard
|
||||||
-ACTIVATEIMPACT
|
-ACTIVATEIMPACT
|
||||||
+HEXENBOUNCE
|
+HEXENBOUNCE
|
||||||
BounceFactor 0.3
|
BounceFactor 0.3
|
||||||
|
}
|
||||||
|
|
||||||
|
ACTOR SGShard1 : GlassShard
|
||||||
|
{
|
||||||
|
SpawnID 54
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
Spawn:
|
Spawn:
|
||||||
|
@ -194,13 +197,6 @@ ACTOR SGShard1 : GlassShard
|
||||||
ACTOR SGShard2 : GlassShard
|
ACTOR SGShard2 : GlassShard
|
||||||
{
|
{
|
||||||
SpawnID 55
|
SpawnID 55
|
||||||
Radius 5
|
|
||||||
Mass 5
|
|
||||||
Projectile
|
|
||||||
-ACTIVATEMCROSS
|
|
||||||
-ACTIVATEIMPACT
|
|
||||||
+HEXENBOUNCE
|
|
||||||
BounceFactor 0.3
|
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
Spawn:
|
Spawn:
|
||||||
|
@ -215,13 +211,6 @@ ACTOR SGShard2 : GlassShard
|
||||||
ACTOR SGShard3 : GlassShard
|
ACTOR SGShard3 : GlassShard
|
||||||
{
|
{
|
||||||
SpawnID 56
|
SpawnID 56
|
||||||
Radius 5
|
|
||||||
Mass 5
|
|
||||||
Projectile
|
|
||||||
-ACTIVATEMCROSS
|
|
||||||
-ACTIVATEIMPACT
|
|
||||||
+HEXENBOUNCE
|
|
||||||
BounceFactor 0.3
|
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
Spawn:
|
Spawn:
|
||||||
|
@ -236,13 +225,6 @@ ACTOR SGShard3 : GlassShard
|
||||||
ACTOR SGShard4 : GlassShard
|
ACTOR SGShard4 : GlassShard
|
||||||
{
|
{
|
||||||
SpawnID 57
|
SpawnID 57
|
||||||
Radius 5
|
|
||||||
Mass 5
|
|
||||||
Projectile
|
|
||||||
-ACTIVATEMCROSS
|
|
||||||
-ACTIVATEIMPACT
|
|
||||||
+HEXENBOUNCE
|
|
||||||
BounceFactor 0.3
|
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
Spawn:
|
Spawn:
|
||||||
|
@ -257,13 +239,6 @@ ACTOR SGShard4 : GlassShard
|
||||||
ACTOR SGShard5 : GlassShard
|
ACTOR SGShard5 : GlassShard
|
||||||
{
|
{
|
||||||
SpawnID 58
|
SpawnID 58
|
||||||
Radius 5
|
|
||||||
Mass 5
|
|
||||||
Projectile
|
|
||||||
-ACTIVATEMCROSS
|
|
||||||
-ACTIVATEIMPACT
|
|
||||||
+HEXENBOUNCE
|
|
||||||
BounceFactor 0.3
|
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
Spawn:
|
Spawn:
|
||||||
|
@ -278,13 +253,6 @@ ACTOR SGShard5 : GlassShard
|
||||||
ACTOR SGShard6 : GlassShard
|
ACTOR SGShard6 : GlassShard
|
||||||
{
|
{
|
||||||
SpawnID 59
|
SpawnID 59
|
||||||
Radius 5
|
|
||||||
Mass 5
|
|
||||||
Projectile
|
|
||||||
-ACTIVATEMCROSS
|
|
||||||
-ACTIVATEIMPACT
|
|
||||||
+HEXENBOUNCE
|
|
||||||
BounceFactor 0.3
|
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
Spawn:
|
Spawn:
|
||||||
|
@ -299,13 +267,6 @@ ACTOR SGShard6 : GlassShard
|
||||||
ACTOR SGShard7 : GlassShard
|
ACTOR SGShard7 : GlassShard
|
||||||
{
|
{
|
||||||
SpawnID 60
|
SpawnID 60
|
||||||
Radius 5
|
|
||||||
Mass 5
|
|
||||||
Projectile
|
|
||||||
-ACTIVATEMCROSS
|
|
||||||
-ACTIVATEIMPACT
|
|
||||||
+HEXENBOUNCE
|
|
||||||
BounceFactor 0.3
|
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
Spawn:
|
Spawn:
|
||||||
|
@ -320,13 +281,6 @@ ACTOR SGShard7 : GlassShard
|
||||||
ACTOR SGShard8 : GlassShard
|
ACTOR SGShard8 : GlassShard
|
||||||
{
|
{
|
||||||
SpawnID 61
|
SpawnID 61
|
||||||
Radius 5
|
|
||||||
Mass 5
|
|
||||||
Projectile
|
|
||||||
-ACTIVATEMCROSS
|
|
||||||
-ACTIVATEIMPACT
|
|
||||||
+HEXENBOUNCE
|
|
||||||
BounceFactor 0.3
|
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
Spawn:
|
Spawn:
|
||||||
|
@ -341,13 +295,6 @@ ACTOR SGShard8 : GlassShard
|
||||||
ACTOR SGShard9 : GlassShard
|
ACTOR SGShard9 : GlassShard
|
||||||
{
|
{
|
||||||
SpawnID 62
|
SpawnID 62
|
||||||
Radius 5
|
|
||||||
Mass 5
|
|
||||||
Projectile
|
|
||||||
-ACTIVATEMCROSS
|
|
||||||
-ACTIVATEIMPACT
|
|
||||||
+HEXENBOUNCE
|
|
||||||
BounceFactor 0.3
|
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
Spawn:
|
Spawn:
|
||||||
|
@ -362,13 +309,6 @@ ACTOR SGShard9 : GlassShard
|
||||||
ACTOR SGShard0 : GlassShard
|
ACTOR SGShard0 : GlassShard
|
||||||
{
|
{
|
||||||
SpawnID 63
|
SpawnID 63
|
||||||
Radius 5
|
|
||||||
Mass 5
|
|
||||||
Projectile
|
|
||||||
-ACTIVATEMCROSS
|
|
||||||
-ACTIVATEIMPACT
|
|
||||||
+HEXENBOUNCE
|
|
||||||
BounceFactor 0.3
|
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
Spawn:
|
Spawn:
|
||||||
|
|
3
wadsrc/static/actors/shared/decal.txt
Normal file
3
wadsrc/static/actors/shared/decal.txt
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
ACTOR Decal 9200 native
|
||||||
|
{
|
||||||
|
}
|
|
@ -1,3 +1,10 @@
|
||||||
|
ACTOR ParticleFountain native
|
||||||
|
{
|
||||||
|
Height 0
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOGRAVITY
|
||||||
|
+INVISIBLE
|
||||||
|
}
|
||||||
|
|
||||||
ACTOR RedParticleFountain : ParticleFountain 9027
|
ACTOR RedParticleFountain : ParticleFountain 9027
|
||||||
{
|
{
|
||||||
|
|
19
wadsrc/static/actors/shared/hatetarget.txt
Normal file
19
wadsrc/static/actors/shared/hatetarget.txt
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
|
||||||
|
|
||||||
|
// Hate Target --------------------------------------------------------------
|
||||||
|
|
||||||
|
ACTOR HateTarget 9076 native
|
||||||
|
{
|
||||||
|
Radius 20
|
||||||
|
Height 56
|
||||||
|
+SHOOTABLE
|
||||||
|
+NOGRAVITY
|
||||||
|
+NOBLOOD
|
||||||
|
+DONTSPLASH
|
||||||
|
Mass 0x7fffffff
|
||||||
|
States
|
||||||
|
{
|
||||||
|
Spawn:
|
||||||
|
TNT1 A -1
|
||||||
|
}
|
||||||
|
}
|
15
wadsrc/static/actors/shared/mapmarker.txt
Normal file
15
wadsrc/static/actors/shared/mapmarker.txt
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
|
||||||
|
ACTOR MapMarker 9040 native
|
||||||
|
{
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
+INVISIBLE
|
||||||
|
Scale 0.5
|
||||||
|
States
|
||||||
|
{
|
||||||
|
Spawn:
|
||||||
|
AMRK A -1
|
||||||
|
Stop
|
||||||
|
}
|
||||||
|
}
|
33
wadsrc/static/actors/shared/movingcamera.txt
Normal file
33
wadsrc/static/actors/shared/movingcamera.txt
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
ACTOR InterpolationPoint 9070 native
|
||||||
|
{
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
RenderStyle None
|
||||||
|
}
|
||||||
|
|
||||||
|
ACTOR InterpolationSpecial 9075 native
|
||||||
|
{
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOSECTOR
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
}
|
||||||
|
|
||||||
|
ACTOR PathFollower 9071 native
|
||||||
|
{
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOSECTOR
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
}
|
||||||
|
|
||||||
|
ACTOR ActorMover : PathFollower 9074 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
ACTOR MovingCamera : PathFollower 9072 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
9
wadsrc/static/actors/shared/secrettrigger.txt
Normal file
9
wadsrc/static/actors/shared/secrettrigger.txt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
ACTOR SecretTrigger 9046 native
|
||||||
|
{
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOSECTOR
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
}
|
||||||
|
|
75
wadsrc/static/actors/shared/sectoraction.txt
Normal file
75
wadsrc/static/actors/shared/sectoraction.txt
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
|
||||||
|
ACTOR SectorAction native
|
||||||
|
{
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOSECTOR
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
}
|
||||||
|
|
||||||
|
// Triggered when entering sector -------------------------------------------
|
||||||
|
|
||||||
|
ACTOR SecActEnter : SectorAction 9998 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
// Triggered when leaving sector --------------------------------------------
|
||||||
|
|
||||||
|
ACTOR SecActExit : SectorAction 9997 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
// Triggered when hitting sector's floor ------------------------------------
|
||||||
|
|
||||||
|
ACTOR SecActHitFloor : SectorAction 9999 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
// Triggered when hitting sector's ceiling ----------------------------------
|
||||||
|
|
||||||
|
ACTOR SecActHitCeil : SectorAction 9996 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
// Triggered when using inside sector ---------------------------------------
|
||||||
|
|
||||||
|
ACTOR SecActUse : SectorAction 9995 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
// Triggered when using a sector's wall -------------------------------------
|
||||||
|
|
||||||
|
ACTOR SecActUseWall : SectorAction 9994 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
// Triggered when eyes go below fake floor ----------------------------------
|
||||||
|
|
||||||
|
ACTOR SecActEyesDive : SectorAction 9993 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
// Triggered when eyes go above fake floor ----------------------------------
|
||||||
|
|
||||||
|
ACTOR SecActEyesSurface : SectorAction 9992 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
// Triggered when eyes go below fake floor ----------------------------------
|
||||||
|
|
||||||
|
ACTOR SecActEyesBelowC : SectorAction 9983 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
// Triggered when eyes go above fake floor ----------------------------------
|
||||||
|
|
||||||
|
ACTOR SecActEyesAboveC : SectorAction 9982 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
// Triggered when eyes go below fake floor ----------------------------------
|
||||||
|
|
||||||
|
ACTOR SecActHitFakeFloor : SectorAction 9989 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
16
wadsrc/static/actors/shared/setcolor.txt
Normal file
16
wadsrc/static/actors/shared/setcolor.txt
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
ACTOR ColorSetter 9038 native
|
||||||
|
{
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
RenderStyle None
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ACTOR FadeSetter 9039 native
|
||||||
|
{
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
RenderStyle None
|
||||||
|
}
|
|
@ -118,3 +118,15 @@ ACTOR CustomSprite 9988 native
|
||||||
Stop
|
Stop
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SwitchableDecoration: Activate and Deactivate change state ---------------
|
||||||
|
|
||||||
|
ACTOR SwitchableDecoration native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ACTOR SwitchingDecoration : SwitchableDecoration native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
37
wadsrc/static/actors/shared/skies.txt
Normal file
37
wadsrc/static/actors/shared/skies.txt
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
ACTOR SkyViewpoint 9080 native
|
||||||
|
{
|
||||||
|
+NOSECTOR
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
}
|
||||||
|
|
||||||
|
ACTOR SkyPicker 9081 native
|
||||||
|
{
|
||||||
|
+NOSECTOR
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ACTOR StackPoint : SkyViewpoint native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
ACTOR UpperStackLookOnly : StackPoint 9077 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
ACTOR LowerStackLookOnly : StackPoint 9078 native
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ACTOR SectorSilencer 9082 native
|
||||||
|
{
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
RenderStyle None
|
||||||
|
}
|
9
wadsrc/static/actors/shared/soundenvironment.txt
Normal file
9
wadsrc/static/actors/shared/soundenvironment.txt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
ACTOR SoundEnvironment 9048 native
|
||||||
|
{
|
||||||
|
+NOSECTOR
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
}
|
||||||
|
|
|
@ -6,6 +6,19 @@ ACTOR AmbientSound 14065 native
|
||||||
+DONTSPLASH
|
+DONTSPLASH
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ACTOR SoundSequenceSlot native
|
||||||
|
{
|
||||||
|
+NOSECTOR
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+DONTSPLASH
|
||||||
|
}
|
||||||
|
|
||||||
|
ACTOR SoundSequence 14066 native
|
||||||
|
{
|
||||||
|
+NOSECTOR
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+DONTSPLASH
|
||||||
|
}
|
||||||
|
|
||||||
// Heretic Sound sequences -----------------------------------------------------------
|
// Heretic Sound sequences -----------------------------------------------------------
|
||||||
|
|
||||||
|
|
8
wadsrc/static/actors/shared/spark.txt
Normal file
8
wadsrc/static/actors/shared/spark.txt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
|
||||||
|
ACTOR Spark 9026 native
|
||||||
|
{
|
||||||
|
+NOSECTOR
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
}
|
7
wadsrc/static/actors/shared/waterzone.txt
Normal file
7
wadsrc/static/actors/shared/waterzone.txt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
ACTOR WaterZone 9045 native
|
||||||
|
{
|
||||||
|
+NOSECTOR
|
||||||
|
+NOBLOCKMAP
|
||||||
|
+NOGRAVITY
|
||||||
|
+DONTSPLASH
|
||||||
|
}
|
|
@ -5,13 +5,26 @@
|
||||||
#include "actors/shared/sharedmisc.txt"
|
#include "actors/shared/sharedmisc.txt"
|
||||||
#include "actors/shared/blood.txt"
|
#include "actors/shared/blood.txt"
|
||||||
#include "actors/shared/debris.txt"
|
#include "actors/shared/debris.txt"
|
||||||
|
#include "actors/shared/decal.txt"
|
||||||
#include "actors/shared/splashes.txt"
|
#include "actors/shared/splashes.txt"
|
||||||
#include "actors/shared/pickups.txt"
|
#include "actors/shared/pickups.txt"
|
||||||
#include "actors/shared/fountain.txt"
|
#include "actors/shared/fountain.txt"
|
||||||
|
#include "actors/shared/spark.txt"
|
||||||
#include "actors/shared/soundsequence.txt"
|
#include "actors/shared/soundsequence.txt"
|
||||||
|
#include "actors/shared/soundenvironment.txt"
|
||||||
#include "actors/shared/bridge.txt"
|
#include "actors/shared/bridge.txt"
|
||||||
#include "actors/shared/specialspot.txt"
|
#include "actors/shared/specialspot.txt"
|
||||||
#include "actors/shared/teleport.txt"
|
#include "actors/shared/teleport.txt"
|
||||||
|
#include "actors/shared/camera.txt"
|
||||||
|
#include "actors/shared/movingcamera.txt"
|
||||||
|
#include "actors/shared/mapmarker.txt"
|
||||||
|
#include "actors/shared/waterzone.txt"
|
||||||
|
#include "actors/shared/skies.txt"
|
||||||
|
#include "actors/shared/hatetarget.txt"
|
||||||
|
#include "actors/shared/secrettrigger.txt"
|
||||||
|
#include "actors/shared/setcolor.txt"
|
||||||
|
#include "actors/shared/sectoraction.txt"
|
||||||
|
#include "actors/shared/action.txt"
|
||||||
|
|
||||||
#include "actors/doom/doomplayer.txt"
|
#include "actors/doom/doomplayer.txt"
|
||||||
#include "actors/doom/possessed.txt"
|
#include "actors/doom/possessed.txt"
|
||||||
|
|
Loading…
Reference in a new issue