File size: 1,125 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
class CrashBase extends House
{
Particle m_ParticleEfx;
static bool m_Init = Init();
static bool Init()
{
CrashSoundSets.RegisterSoundSet("HeliCrash_Distant_SoundSet");
CrashSoundSets.RegisterSoundSet("SledgeCrash_Distant_SoundSet");
return true;
}
override void EEOnCECreate()
{
super.EEOnCECreate();
RequestSoundEvent();
}
void RequestSoundEvent()
{
Param3<bool, vector, int> playSound = new Param3<bool, vector, int>(true, GetPosition(), GetSoundSet().Hash());
GetGame().RPCSingleParam( null, ERPCs.RPC_SOUND_HELICRASH, playSound, true );
}
// needs to have the soundset registered in CrashBase.Init()
string GetSoundSet()
{
return "HeliCrash_Distant_SoundSet";
}
override void EEInit()
{
super.EEInit();
//Setup for local sound tests
#ifdef DEVELOPER
if ( !GetGame().IsMultiplayer() )
{
EffectSound eff = SEffectManager.PlaySound( GetSoundSet(), GetPosition(), 0.1, 0.1 );
eff.SetAutodestroy(true);
}
#endif
}
override void EEDelete(EntityAI parent)
{
if ( !GetGame().IsDedicatedServer() )
{
if ( m_ParticleEfx )
m_ParticleEfx.Stop();
}
}
}; |