mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2026-09-21 20:15:06 +03:00
51 lines
1.5 KiB
C++
51 lines
1.5 KiB
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================//
|
|
#include "BaseEntity.h"
|
|
#ifndef RAGDOLEGONLBOOGIE_H
|
|
#define RAGDOLLEGONBOOGIE_H
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Set this spawnflag before calling Spawn to get electrical effects
|
|
//-----------------------------------------------------------------------------
|
|
#define SF_RAGDOLL_EGON_BOOGIE_ELECTRICAL 0x10000
|
|
#define SF_RAGDOLL_EGON_BOOGIE_ELECTRICAL_NARROW_BEAM 0x20000
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Makes ragdolls DANCE!
|
|
//-----------------------------------------------------------------------------
|
|
class CRagdollEgonBoogie : public CBaseEntity
|
|
{
|
|
DECLARE_DATADESC();
|
|
DECLARE_CLASS(CRagdollEgonBoogie, CBaseEntity);
|
|
|
|
public:
|
|
static CRagdollEgonBoogie *Create(CBaseEntity *pTarget, float flMagnitude, float flStartTime, float flLengthTime = 0.0f, int nSpawnFlags = 0);
|
|
static void IncrementSuppressionCount(CBaseEntity *pTarget);
|
|
static void DecrementSuppressionCount(CBaseEntity *pTarget);
|
|
|
|
void Spawn();
|
|
|
|
private:
|
|
void AttachToEntity(CBaseEntity *pTarget);
|
|
void SetBoogieTime(float flStartTime, float flLengthTime);
|
|
void SetMagnitude(float flMagnitude);
|
|
void BoogieThink(void);
|
|
void ZapThink();
|
|
|
|
float m_flStartTime;
|
|
float m_flBoogieLength;
|
|
float m_flMagnitude;
|
|
int m_nSuppressionCount;
|
|
};
|
|
|
|
#endif // RAGDOLLEgonBOOGIE_H
|