65 lines
2.5 KiB
C#
65 lines
2.5 KiB
C#
using System;
|
|
using Content.Server.Administration.Logs;
|
|
using Content.Server.Damage.Components;
|
|
using Content.Server.Stunnable;
|
|
using Content.Server.Stunnable.Components;
|
|
using Content.Shared.Administration.Logs;
|
|
using Content.Shared.Audio;
|
|
using Content.Shared.Damage;
|
|
using Content.Shared.Database;
|
|
using Content.Shared.Stunnable;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.Audio;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Physics.Dynamics;
|
|
using Robust.Shared.Player;
|
|
using Robust.Shared.Random;
|
|
using Robust.Shared.Timing;
|
|
|
|
namespace Content.Server.Damage.Systems
|
|
{
|
|
[UsedImplicitly]
|
|
internal sealed class DamageOnHighSpeedImpactSystem: EntitySystem
|
|
{
|
|
[Dependency] private readonly IRobustRandom _robustRandom = default!;
|
|
[Dependency] private readonly IGameTiming _gameTiming = default!;
|
|
[Dependency] private readonly DamageableSystem _damageableSystem = default!;
|
|
[Dependency] private readonly StunSystem _stunSystem = default!;
|
|
[Dependency] private readonly AdminLogSystem _logSystem = default!;
|
|
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
SubscribeLocalEvent<DamageOnHighSpeedImpactComponent, StartCollideEvent>(HandleCollide);
|
|
}
|
|
|
|
private void HandleCollide(EntityUid uid, DamageOnHighSpeedImpactComponent component, StartCollideEvent args)
|
|
{
|
|
if (!EntityManager.HasComponent<DamageableComponent>(uid)) return;
|
|
|
|
var otherBody = args.OtherFixture.Body.Owner;
|
|
var speed = args.OurFixture.Body.LinearVelocity.Length;
|
|
|
|
if (speed < component.MinimumSpeed) return;
|
|
|
|
SoundSystem.Play(Filter.Pvs(otherBody), component.SoundHit.GetSound(), otherBody, AudioHelpers.WithVariation(0.125f).WithVolume(-0.125f));
|
|
|
|
if ((_gameTiming.CurTime - component.LastHit).TotalSeconds < component.DamageCooldown)
|
|
return;
|
|
|
|
component.LastHit = _gameTiming.CurTime;
|
|
|
|
if (_robustRandom.Prob(component.StunChance))
|
|
_stunSystem.TryStun(uid, TimeSpan.FromSeconds(component.StunSeconds), true);
|
|
|
|
var damageScale = (speed / component.MinimumSpeed) * component.Factor;
|
|
|
|
var dmg = _damageableSystem.TryChangeDamage(uid, component.Damage * damageScale);
|
|
|
|
if (dmg != null)
|
|
_logSystem.Add(LogType.Damaged, $"{ToPrettyString(component.Owner):entity} took {dmg.Total:damage} damage from a high speed collision");
|
|
}
|
|
}
|
|
}
|