2006-02-24 04:48:15 +00:00
|
|
|
#ifndef __A_HEXENGLOBAL_H__
|
|
|
|
#define __A_HEXENGLOBAL_H__
|
|
|
|
|
|
|
|
#include "d_player.h"
|
|
|
|
|
|
|
|
class ALightning : public AActor
|
|
|
|
{
|
|
|
|
DECLARE_STATELESS_ACTOR (ALightning, AActor)
|
|
|
|
public:
|
|
|
|
int SpecialMissileHit (AActor *victim);
|
|
|
|
};
|
|
|
|
|
|
|
|
class APoisonCloud : public AActor
|
|
|
|
{
|
|
|
|
DECLARE_ACTOR (APoisonCloud, AActor)
|
|
|
|
public:
|
|
|
|
void GetExplodeParms (int &damage, int &distance, bool &hurtSource);
|
|
|
|
int DoSpecialDamage (AActor *target, int damage);
|
|
|
|
void BeginPlay ();
|
|
|
|
};
|
|
|
|
|
|
|
|
class ABishop : public AActor
|
|
|
|
{
|
|
|
|
DECLARE_ACTOR (ABishop, AActor)
|
|
|
|
public:
|
|
|
|
void GetExplodeParms (int &damage, int &distance, bool &hurtSource);
|
|
|
|
};
|
|
|
|
|
|
|
|
class AHeresiarch : public AActor
|
|
|
|
{
|
|
|
|
DECLARE_ACTOR (AHeresiarch, AActor)
|
|
|
|
public:
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass *StopBall;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
void Serialize (FArchive &arc);
|
|
|
|
void Die (AActor *source, AActor *inflictor);
|
|
|
|
};
|
|
|
|
|
|
|
|
class AHolySpirit : public AActor
|
|
|
|
{
|
|
|
|
DECLARE_ACTOR (AHolySpirit, AActor)
|
|
|
|
public:
|
|
|
|
bool Slam (AActor *thing);
|
|
|
|
bool SpecialBlastHandling (AActor *source, fixed_t strength);
|
|
|
|
bool IsOkayToAttack (AActor *link);
|
|
|
|
};
|
|
|
|
|
|
|
|
class AHammerPuff : public AActor
|
|
|
|
{
|
|
|
|
DECLARE_ACTOR (AHammerPuff, AActor)
|
|
|
|
public:
|
|
|
|
void BeginPlay ();
|
|
|
|
};
|
|
|
|
|
|
|
|
class AFourthWeaponPiece : public AInventory
|
|
|
|
{
|
|
|
|
DECLARE_STATELESS_ACTOR (AFourthWeaponPiece, AInventory)
|
|
|
|
HAS_OBJECT_POINTERS
|
|
|
|
public:
|
|
|
|
void Serialize (FArchive &arc);
|
|
|
|
bool TryPickup (AActor *toucher);
|
|
|
|
const char *PickupMessage ();
|
|
|
|
bool ShouldStay ();
|
|
|
|
void PlayPickupSound (AActor *toucher);
|
|
|
|
protected:
|
|
|
|
virtual bool MatchPlayerClass (AActor *toucher);
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass *FourthWeaponClass;
|
2006-02-24 04:48:15 +00:00
|
|
|
int PieceValue;
|
2008-03-12 02:56:11 +00:00
|
|
|
TObjPtr<AInventory> TempFourthWeapon;
|
2006-02-24 04:48:15 +00:00
|
|
|
bool PrivateShouldStay ();
|
|
|
|
};
|
|
|
|
|
|
|
|
class AFighterWeapon : public AWeapon
|
|
|
|
{
|
|
|
|
DECLARE_STATELESS_ACTOR (AFighterWeapon, AWeapon);
|
|
|
|
public:
|
|
|
|
bool TryPickup (AActor *toucher);
|
|
|
|
};
|
|
|
|
|
|
|
|
class AClericWeapon : public AWeapon
|
|
|
|
{
|
|
|
|
DECLARE_STATELESS_ACTOR (AClericWeapon, AWeapon);
|
|
|
|
public:
|
|
|
|
bool TryPickup (AActor *toucher);
|
|
|
|
};
|
|
|
|
|
|
|
|
class AMageWeapon : public AWeapon
|
|
|
|
{
|
|
|
|
DECLARE_STATELESS_ACTOR (AMageWeapon, AWeapon);
|
|
|
|
public:
|
|
|
|
bool TryPickup (AActor *toucher);
|
|
|
|
};
|
|
|
|
|
2006-03-12 22:04:49 +00:00
|
|
|
class ASwitchableDecoration : public AActor
|
|
|
|
{
|
|
|
|
DECLARE_STATELESS_ACTOR (ASwitchableDecoration, AActor)
|
|
|
|
public:
|
|
|
|
void Activate (AActor *activator);
|
|
|
|
void Deactivate (AActor *activator);
|
|
|
|
};
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
#endif //__A_HEXENGLOBAL_H__
|