* Refactor all audio to use the new SoundSystem. * Update submodule Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
64 lines
1.9 KiB
C#
64 lines
1.9 KiB
C#
using Content.Server.GameObjects.Components.Items.Storage;
|
|
using Content.Server.GameObjects.Components.Weapon;
|
|
using Content.Server.GameObjects.EntitySystems;
|
|
using Content.Shared.GameObjects.EntitySystems;
|
|
using Robust.Server.GameObjects;
|
|
using Robust.Shared.Audio;
|
|
using Robust.Shared.Containers;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Player;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
namespace Content.Server.GameObjects.Components.Explosion
|
|
{
|
|
/// <summary>
|
|
/// When triggered will flash in an area around the object and destroy itself
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public class FlashExplosiveComponent : Component, ITimerTrigger, IDestroyAct
|
|
{
|
|
public override string Name => "FlashExplosive";
|
|
|
|
[DataField("range")]
|
|
private float _range = 7.0f;
|
|
[DataField("duration")]
|
|
private float _duration = 8.0f;
|
|
[DataField("sound")]
|
|
private string _sound = "/Audio/Effects/flash_bang.ogg";
|
|
[DataField("deleteOnFlash")]
|
|
private bool _deleteOnFlash = true;
|
|
|
|
public bool Explode()
|
|
{
|
|
// If we're in a locker or whatever then can't flash anything
|
|
Owner.TryGetContainer(out var container);
|
|
if (container == null || !container.Owner.HasComponent<EntityStorageComponent>())
|
|
{
|
|
FlashableComponent.FlashAreaHelper(Owner, _range, _duration);
|
|
}
|
|
|
|
if (_sound != null)
|
|
{
|
|
SoundSystem.Play(Filter.Pvs(Owner), _sound, Owner.Transform.Coordinates);
|
|
}
|
|
|
|
if (_deleteOnFlash && !Owner.Deleted)
|
|
{
|
|
Owner.Delete();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool ITimerTrigger.Trigger(TimerTriggerEventArgs eventArgs)
|
|
{
|
|
return Explode();
|
|
}
|
|
|
|
void IDestroyAct.OnDestroy(DestructionEventArgs eventArgs)
|
|
{
|
|
Explode();
|
|
}
|
|
}
|
|
}
|