Update DamageableSystem to modern standards (#39417)
* Update DamageableSystem to modern standards * DamageContainerId -> DamageContainerID with lint flag * Replace strings with protoids * Make CVar subscription declarations all consistently whitespaced * ChangeDamage -> TryChangeDamage, cope with C# jank * Revert event signature changes * Restore a comment * Re-add two queries * Init the queries * Use appearanceQuery in DamageChanged * Use damageableQuery in TryChangeDamage * Use damageableQuery in SetDamageModifierSetId * Final cleanup, fix sandboxing * Rectify ExplosionSystem:::ProcessEntity's call to TryChangeDamage * Re-organize DamageableSystem * first big fuck you breaking change. * THATS A LOT OF DAMAGE!!! * Fix test fails * test fixes 2 * push it --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
cf66dd7b35
commit
cdbe92d37d
@@ -1,469 +1,97 @@
|
||||
using System.Linq;
|
||||
using Content.Shared.CCVar;
|
||||
using Content.Shared.Chemistry;
|
||||
using Content.Shared.Damage.Prototypes;
|
||||
using Content.Shared.Damage.Components;
|
||||
using Content.Shared.Explosion.EntitySystems;
|
||||
using Content.Shared.FixedPoint;
|
||||
using Content.Shared.Inventory;
|
||||
using Content.Shared.Mobs.Components;
|
||||
using Content.Shared.Mobs.Systems;
|
||||
using Content.Shared.Radiation.Events;
|
||||
using Content.Shared.Rejuvenate;
|
||||
using Robust.Shared.Configuration;
|
||||
using Robust.Shared.GameStates;
|
||||
using Robust.Shared.Network;
|
||||
using Robust.Shared.Prototypes;
|
||||
using Robust.Shared.Utility;
|
||||
|
||||
namespace Content.Shared.Damage
|
||||
namespace Content.Shared.Damage.Systems;
|
||||
|
||||
public sealed partial class DamageableSystem : EntitySystem
|
||||
{
|
||||
public sealed partial class DamageableSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
|
||||
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
|
||||
[Dependency] private readonly INetManager _netMan = default!;
|
||||
[Dependency] private readonly MobThresholdSystem _mobThreshold = default!;
|
||||
[Dependency] private readonly IConfigurationManager _config = default!;
|
||||
[Dependency] private readonly SharedChemistryGuideDataSystem _chemistryGuideData = default!;
|
||||
[Dependency] private readonly SharedExplosionSystem _explosion = default!;
|
||||
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
|
||||
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
|
||||
[Dependency] private readonly INetManager _netMan = default!;
|
||||
[Dependency] private readonly MobThresholdSystem _mobThreshold = default!;
|
||||
[Dependency] private readonly IConfigurationManager _config = default!;
|
||||
[Dependency] private readonly SharedChemistryGuideDataSystem _chemistryGuideData = default!;
|
||||
[Dependency] private readonly SharedExplosionSystem _explosion = default!;
|
||||
|
||||
private EntityQuery<AppearanceComponent> _appearanceQuery;
|
||||
private EntityQuery<DamageableComponent> _damageableQuery;
|
||||
private EntityQuery<AppearanceComponent> _appearanceQuery;
|
||||
private EntityQuery<DamageableComponent> _damageableQuery;
|
||||
|
||||
public float UniversalAllDamageModifier { get; private set; } = 1f;
|
||||
public float UniversalAllHealModifier { get; private set; } = 1f;
|
||||
public float UniversalMeleeDamageModifier { get; private set; } = 1f;
|
||||
public float UniversalProjectileDamageModifier { get; private set; } = 1f;
|
||||
public float UniversalHitscanDamageModifier { get; private set; } = 1f;
|
||||
public float UniversalReagentDamageModifier { get; private set; } = 1f;
|
||||
public float UniversalReagentHealModifier { get; private set; } = 1f;
|
||||
public float UniversalExplosionDamageModifier { get; private set; } = 1f;
|
||||
public float UniversalThrownDamageModifier { get; private set; } = 1f;
|
||||
public float UniversalTopicalsHealModifier { get; private set; } = 1f;
|
||||
public float UniversalMobDamageModifier { get; private set; } = 1f;
|
||||
|
||||
public override void Initialize()
|
||||
{
|
||||
SubscribeLocalEvent<DamageableComponent, ComponentInit>(DamageableInit);
|
||||
SubscribeLocalEvent<DamageableComponent, ComponentHandleState>(DamageableHandleState);
|
||||
SubscribeLocalEvent<DamageableComponent, ComponentGetState>(DamageableGetState);
|
||||
SubscribeLocalEvent<DamageableComponent, OnIrradiatedEvent>(OnIrradiated);
|
||||
SubscribeLocalEvent<DamageableComponent, RejuvenateEvent>(OnRejuvenate);
|
||||
|
||||
_appearanceQuery = GetEntityQuery<AppearanceComponent>();
|
||||
_damageableQuery = GetEntityQuery<DamageableComponent>();
|
||||
|
||||
// Damage modifier CVars are updated and stored here to be queried in other systems.
|
||||
// Note that certain modifiers requires reloading the guidebook.
|
||||
Subs.CVar(_config, CCVars.PlaytestAllDamageModifier, value =>
|
||||
{
|
||||
UniversalAllDamageModifier = value;
|
||||
_chemistryGuideData.ReloadAllReagentPrototypes();
|
||||
_explosion.ReloadMap();
|
||||
}, true);
|
||||
Subs.CVar(_config, CCVars.PlaytestAllHealModifier, value =>
|
||||
{
|
||||
UniversalAllHealModifier = value;
|
||||
_chemistryGuideData.ReloadAllReagentPrototypes();
|
||||
}, true);
|
||||
Subs.CVar(_config, CCVars.PlaytestProjectileDamageModifier, value => UniversalProjectileDamageModifier = value, true);
|
||||
Subs.CVar(_config, CCVars.PlaytestMeleeDamageModifier, value => UniversalMeleeDamageModifier = value, true);
|
||||
Subs.CVar(_config, CCVars.PlaytestProjectileDamageModifier, value => UniversalProjectileDamageModifier = value, true);
|
||||
Subs.CVar(_config, CCVars.PlaytestHitscanDamageModifier, value => UniversalHitscanDamageModifier = value, true);
|
||||
Subs.CVar(_config, CCVars.PlaytestReagentDamageModifier, value =>
|
||||
{
|
||||
UniversalReagentDamageModifier = value;
|
||||
_chemistryGuideData.ReloadAllReagentPrototypes();
|
||||
}, true);
|
||||
Subs.CVar(_config, CCVars.PlaytestReagentHealModifier, value =>
|
||||
{
|
||||
UniversalReagentHealModifier = value;
|
||||
_chemistryGuideData.ReloadAllReagentPrototypes();
|
||||
}, true);
|
||||
Subs.CVar(_config, CCVars.PlaytestExplosionDamageModifier, value =>
|
||||
{
|
||||
UniversalExplosionDamageModifier = value;
|
||||
_explosion.ReloadMap();
|
||||
}, true);
|
||||
Subs.CVar(_config, CCVars.PlaytestThrownDamageModifier, value => UniversalThrownDamageModifier = value, true);
|
||||
Subs.CVar(_config, CCVars.PlaytestTopicalsHealModifier, value => UniversalTopicalsHealModifier = value, true);
|
||||
Subs.CVar(_config, CCVars.PlaytestMobDamageModifier, value => UniversalMobDamageModifier = value, true);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initialize a damageable component
|
||||
/// </summary>
|
||||
private void DamageableInit(EntityUid uid, DamageableComponent component, ComponentInit _)
|
||||
{
|
||||
if (component.DamageContainerID != null &&
|
||||
_prototypeManager.Resolve<DamageContainerPrototype>(component.DamageContainerID,
|
||||
out var damageContainerPrototype))
|
||||
{
|
||||
// Initialize damage dictionary, using the types and groups from the damage
|
||||
// container prototype
|
||||
foreach (var type in damageContainerPrototype.SupportedTypes)
|
||||
{
|
||||
component.Damage.DamageDict.TryAdd(type, FixedPoint2.Zero);
|
||||
}
|
||||
|
||||
foreach (var groupId in damageContainerPrototype.SupportedGroups)
|
||||
{
|
||||
var group = _prototypeManager.Index<DamageGroupPrototype>(groupId);
|
||||
foreach (var type in group.DamageTypes)
|
||||
{
|
||||
component.Damage.DamageDict.TryAdd(type, FixedPoint2.Zero);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// No DamageContainerPrototype was given. So we will allow the container to support all damage types
|
||||
foreach (var type in _prototypeManager.EnumeratePrototypes<DamageTypePrototype>())
|
||||
{
|
||||
component.Damage.DamageDict.TryAdd(type.ID, FixedPoint2.Zero);
|
||||
}
|
||||
}
|
||||
|
||||
component.Damage.GetDamagePerGroup(_prototypeManager, component.DamagePerGroup);
|
||||
component.TotalDamage = component.Damage.GetTotal();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Directly sets the damage specifier of a damageable component.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Useful for some unfriendly folk. Also ensures that cached values are updated and that a damage changed
|
||||
/// event is raised.
|
||||
/// </remarks>
|
||||
public void SetDamage(EntityUid uid, DamageableComponent damageable, DamageSpecifier damage)
|
||||
{
|
||||
damageable.Damage = damage;
|
||||
DamageChanged(uid, damageable);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// If the damage in a DamageableComponent was changed, this function should be called.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This updates cached damage information, flags the component as dirty, and raises a damage changed event.
|
||||
/// The damage changed event is used by other systems, such as damage thresholds.
|
||||
/// </remarks>
|
||||
public void DamageChanged(EntityUid uid, DamageableComponent component, DamageSpecifier? damageDelta = null,
|
||||
bool interruptsDoAfters = true, EntityUid? origin = null)
|
||||
{
|
||||
component.Damage.GetDamagePerGroup(_prototypeManager, component.DamagePerGroup);
|
||||
component.TotalDamage = component.Damage.GetTotal();
|
||||
Dirty(uid, component);
|
||||
|
||||
if (_appearanceQuery.TryGetComponent(uid, out var appearance) && damageDelta != null)
|
||||
{
|
||||
var data = new DamageVisualizerGroupData(component.DamagePerGroup.Keys.ToList());
|
||||
_appearance.SetData(uid, DamageVisualizerKeys.DamageUpdateGroups, data, appearance);
|
||||
}
|
||||
|
||||
// TODO DAMAGE
|
||||
// byref struct event.
|
||||
RaiseLocalEvent(uid, new DamageChangedEvent(component, damageDelta, interruptsDoAfters, origin));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Applies damage specified via a <see cref="DamageSpecifier"/>.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// <see cref="DamageSpecifier"/> is effectively just a dictionary of damage types and damage values. This
|
||||
/// function just applies the container's resistances (unless otherwise specified) and then changes the
|
||||
/// stored damage data. Division of group damage into types is managed by <see cref="DamageSpecifier"/>.
|
||||
/// </remarks>
|
||||
/// <returns>
|
||||
/// Returns a <see cref="DamageSpecifier"/> with information about the actual damage changes. This will be
|
||||
/// null if the user had no applicable components that can take damage.
|
||||
/// </returns>
|
||||
/// <param name="ignoreResistances">If true, this will ignore the entity's damage modifier (<see cref="DamageableComponent.DamageModifierSetId"/> and skip raising a <see cref="DamageModifyEvent"/>.</param>
|
||||
/// <param name="interruptsDoAfters">Whether the damage should cancel any damage sensitive do-afters</param>
|
||||
/// <param name="origin">The entity that is causing this damage</param>
|
||||
/// <param name="ignoreGlobalModifiers">If true, this will skip over applying the universal damage modifiers (see <see cref="ApplyUniversalAllModifiers"/>).</param>
|
||||
/// <returns></returns>
|
||||
public DamageSpecifier? TryChangeDamage(
|
||||
EntityUid? uid,
|
||||
DamageSpecifier damage,
|
||||
bool ignoreResistances = false,
|
||||
bool interruptsDoAfters = true,
|
||||
DamageableComponent? damageable = null,
|
||||
EntityUid? origin = null,
|
||||
bool ignoreGlobalModifiers = false)
|
||||
{
|
||||
if (!uid.HasValue || !_damageableQuery.Resolve(uid.Value, ref damageable, false))
|
||||
{
|
||||
// TODO BODY SYSTEM pass damage onto body system
|
||||
// BOBBY WHEN?
|
||||
return null;
|
||||
}
|
||||
|
||||
if (damage.Empty)
|
||||
{
|
||||
return damage;
|
||||
}
|
||||
|
||||
var before = new BeforeDamageChangedEvent(damage, origin);
|
||||
RaiseLocalEvent(uid.Value, ref before);
|
||||
|
||||
if (before.Cancelled)
|
||||
return null;
|
||||
|
||||
// Apply resistances
|
||||
if (!ignoreResistances)
|
||||
{
|
||||
if (damageable.DamageModifierSetId != null &&
|
||||
_prototypeManager.Resolve(damageable.DamageModifierSetId, out var modifierSet))
|
||||
{
|
||||
damage = DamageSpecifier.ApplyModifierSet(damage, modifierSet);
|
||||
}
|
||||
|
||||
// TODO DAMAGE
|
||||
// byref struct event.
|
||||
var ev = new DamageModifyEvent(damage, origin);
|
||||
RaiseLocalEvent(uid.Value, ev);
|
||||
damage = ev.Damage;
|
||||
|
||||
if (damage.Empty)
|
||||
{
|
||||
return damage;
|
||||
}
|
||||
}
|
||||
|
||||
if (!ignoreGlobalModifiers)
|
||||
damage = ApplyUniversalAllModifiers(damage);
|
||||
|
||||
var delta = new DamageSpecifier();
|
||||
delta.DamageDict.EnsureCapacity(damage.DamageDict.Count);
|
||||
|
||||
var dict = damageable.Damage.DamageDict;
|
||||
foreach (var (type, value) in damage.DamageDict)
|
||||
{
|
||||
// CollectionsMarshal my beloved.
|
||||
if (!dict.TryGetValue(type, out var oldValue))
|
||||
continue;
|
||||
|
||||
var newValue = FixedPoint2.Max(FixedPoint2.Zero, oldValue + value);
|
||||
if (newValue == oldValue)
|
||||
continue;
|
||||
|
||||
dict[type] = newValue;
|
||||
delta.DamageDict[type] = newValue - oldValue;
|
||||
}
|
||||
|
||||
if (delta.DamageDict.Count > 0)
|
||||
DamageChanged(uid.Value, damageable, delta, interruptsDoAfters, origin);
|
||||
|
||||
return delta;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Applies the two univeral "All" modifiers, if set.
|
||||
/// Individual damage source modifiers are set in their respective code.
|
||||
/// </summary>
|
||||
/// <param name="damage">The damage to be changed.</param>
|
||||
public DamageSpecifier ApplyUniversalAllModifiers(DamageSpecifier damage)
|
||||
{
|
||||
// Checks for changes first since they're unlikely in normal play.
|
||||
if (UniversalAllDamageModifier == 1f && UniversalAllHealModifier == 1f)
|
||||
return damage;
|
||||
|
||||
foreach (var (key, value) in damage.DamageDict)
|
||||
{
|
||||
if (value == 0)
|
||||
continue;
|
||||
|
||||
if (value > 0)
|
||||
{
|
||||
damage.DamageDict[key] *= UniversalAllDamageModifier;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (value < 0)
|
||||
{
|
||||
damage.DamageDict[key] *= UniversalAllHealModifier;
|
||||
}
|
||||
}
|
||||
|
||||
return damage;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sets all damage types supported by a <see cref="DamageableComponent"/> to the specified value.
|
||||
/// </summary>
|
||||
/// <remakrs>
|
||||
/// Does nothing If the given damage value is negative.
|
||||
/// </remakrs>
|
||||
public void SetAllDamage(EntityUid uid, DamageableComponent component, FixedPoint2 newValue)
|
||||
{
|
||||
if (newValue < 0)
|
||||
{
|
||||
// invalid value
|
||||
return;
|
||||
}
|
||||
|
||||
foreach (var type in component.Damage.DamageDict.Keys)
|
||||
{
|
||||
component.Damage.DamageDict[type] = newValue;
|
||||
}
|
||||
|
||||
// Setting damage does not count as 'dealing' damage, even if it is set to a larger value, so we pass an
|
||||
// empty damage delta.
|
||||
DamageChanged(uid, component, new DamageSpecifier());
|
||||
}
|
||||
|
||||
public void SetDamageModifierSetId(EntityUid uid, string? damageModifierSetId, DamageableComponent? comp = null)
|
||||
{
|
||||
if (!_damageableQuery.Resolve(uid, ref comp))
|
||||
return;
|
||||
|
||||
comp.DamageModifierSetId = damageModifierSetId;
|
||||
Dirty(uid, comp);
|
||||
}
|
||||
|
||||
private void DamageableGetState(EntityUid uid, DamageableComponent component, ref ComponentGetState args)
|
||||
{
|
||||
if (_netMan.IsServer)
|
||||
{
|
||||
args.State = new DamageableComponentState(component.Damage.DamageDict, component.DamageContainerID, component.DamageModifierSetId, component.HealthBarThreshold);
|
||||
}
|
||||
else
|
||||
{
|
||||
// avoid mispredicting damage on newly spawned entities.
|
||||
args.State = new DamageableComponentState(component.Damage.DamageDict.ShallowClone(), component.DamageContainerID, component.DamageModifierSetId, component.HealthBarThreshold);
|
||||
}
|
||||
}
|
||||
|
||||
private void OnIrradiated(EntityUid uid, DamageableComponent component, OnIrradiatedEvent args)
|
||||
{
|
||||
var damageValue = FixedPoint2.New(args.TotalRads);
|
||||
|
||||
// Radiation should really just be a damage group instead of a list of types.
|
||||
DamageSpecifier damage = new();
|
||||
foreach (var typeId in component.RadiationDamageTypeIDs)
|
||||
{
|
||||
damage.DamageDict.Add(typeId, damageValue);
|
||||
}
|
||||
|
||||
TryChangeDamage(uid, damage, interruptsDoAfters: false, origin: args.Origin);
|
||||
}
|
||||
|
||||
private void OnRejuvenate(EntityUid uid, DamageableComponent component, RejuvenateEvent args)
|
||||
{
|
||||
TryComp<MobThresholdsComponent>(uid, out var thresholds);
|
||||
_mobThreshold.SetAllowRevives(uid, true, thresholds); // do this so that the state changes when we set the damage
|
||||
SetAllDamage(uid, component, 0);
|
||||
_mobThreshold.SetAllowRevives(uid, false, thresholds);
|
||||
}
|
||||
|
||||
private void DamageableHandleState(EntityUid uid, DamageableComponent component, ref ComponentHandleState args)
|
||||
{
|
||||
if (args.Current is not DamageableComponentState state)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
component.DamageContainerID = state.DamageContainerId;
|
||||
component.DamageModifierSetId = state.ModifierSetId;
|
||||
component.HealthBarThreshold = state.HealthBarThreshold;
|
||||
|
||||
// Has the damage actually changed?
|
||||
DamageSpecifier newDamage = new() { DamageDict = new(state.DamageDict) };
|
||||
var delta = newDamage - component.Damage;
|
||||
delta.TrimZeros();
|
||||
|
||||
if (!delta.Empty)
|
||||
{
|
||||
component.Damage = newDamage;
|
||||
DamageChanged(uid, component, delta);
|
||||
}
|
||||
}
|
||||
}
|
||||
public float UniversalAllDamageModifier { get; private set; } = 1f;
|
||||
public float UniversalAllHealModifier { get; private set; } = 1f;
|
||||
public float UniversalMeleeDamageModifier { get; private set; } = 1f;
|
||||
public float UniversalProjectileDamageModifier { get; private set; } = 1f;
|
||||
public float UniversalHitscanDamageModifier { get; private set; } = 1f;
|
||||
public float UniversalReagentDamageModifier { get; private set; } = 1f;
|
||||
public float UniversalReagentHealModifier { get; private set; } = 1f;
|
||||
public float UniversalExplosionDamageModifier { get; private set; } = 1f;
|
||||
public float UniversalThrownDamageModifier { get; private set; } = 1f;
|
||||
public float UniversalTopicalsHealModifier { get; private set; } = 1f;
|
||||
public float UniversalMobDamageModifier { get; private set; } = 1f;
|
||||
|
||||
/// <summary>
|
||||
/// Raised before damage is done, so stuff can cancel it if necessary.
|
||||
/// If the damage in a DamageableComponent was changed this function should be called.
|
||||
/// </summary>
|
||||
[ByRefEvent]
|
||||
public record struct BeforeDamageChangedEvent(DamageSpecifier Damage, EntityUid? Origin = null, bool Cancelled = false);
|
||||
|
||||
/// <summary>
|
||||
/// Raised on an entity when damage is about to be dealt,
|
||||
/// in case anything else needs to modify it other than the base
|
||||
/// damageable component.
|
||||
///
|
||||
/// For example, armor.
|
||||
/// </summary>
|
||||
public sealed class DamageModifyEvent : EntityEventArgs, IInventoryRelayEvent
|
||||
/// <remarks>
|
||||
/// This updates cached damage information, flags the component as dirty, and raises a damage changed event.
|
||||
/// The damage changed event is used by other systems, such as damage thresholds.
|
||||
/// </remarks>
|
||||
private void OnEntityDamageChanged(
|
||||
Entity<DamageableComponent> ent,
|
||||
DamageSpecifier? damageDelta = null,
|
||||
bool interruptsDoAfters = true,
|
||||
EntityUid? origin = null
|
||||
)
|
||||
{
|
||||
// Whenever locational damage is a thing, this should just check only that bit of armour.
|
||||
public SlotFlags TargetSlots { get; } = ~SlotFlags.POCKET;
|
||||
ent.Comp.Damage.GetDamagePerGroup(_prototypeManager, ent.Comp.DamagePerGroup);
|
||||
ent.Comp.TotalDamage = ent.Comp.Damage.GetTotal();
|
||||
Dirty(ent);
|
||||
|
||||
public readonly DamageSpecifier OriginalDamage;
|
||||
public DamageSpecifier Damage;
|
||||
public EntityUid? Origin;
|
||||
|
||||
public DamageModifyEvent(DamageSpecifier damage, EntityUid? origin = null)
|
||||
if (damageDelta != null && _appearanceQuery.TryGetComponent(ent, out var appearance))
|
||||
{
|
||||
OriginalDamage = damage;
|
||||
Damage = damage;
|
||||
Origin = origin;
|
||||
_appearance.SetData(
|
||||
ent,
|
||||
DamageVisualizerKeys.DamageUpdateGroups,
|
||||
new DamageVisualizerGroupData(ent.Comp.DamagePerGroup.Keys.ToList()),
|
||||
appearance
|
||||
);
|
||||
}
|
||||
|
||||
// TODO DAMAGE
|
||||
// byref struct event.
|
||||
RaiseLocalEvent(ent, new DamageChangedEvent(ent.Comp, damageDelta, interruptsDoAfters, origin));
|
||||
}
|
||||
|
||||
public sealed class DamageChangedEvent : EntityEventArgs
|
||||
private void DamageableGetState(Entity<DamageableComponent> ent, ref ComponentGetState args)
|
||||
{
|
||||
/// <summary>
|
||||
/// This is the component whose damage was changed.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Given that nearly every component that cares about a change in the damage, needs to know the
|
||||
/// current damage values, directly passing this information prevents a lot of duplicate
|
||||
/// Owner.TryGetComponent() calls.
|
||||
/// </remarks>
|
||||
public readonly DamageableComponent Damageable;
|
||||
|
||||
/// <summary>
|
||||
/// The amount by which the damage has changed. If the damage was set directly to some number, this will be
|
||||
/// null.
|
||||
/// </summary>
|
||||
public readonly DamageSpecifier? DamageDelta;
|
||||
|
||||
/// <summary>
|
||||
/// Was any of the damage change dealing damage, or was it all healing?
|
||||
/// </summary>
|
||||
public readonly bool DamageIncreased;
|
||||
|
||||
/// <summary>
|
||||
/// Does this event interrupt DoAfters?
|
||||
/// Note: As provided in the constructor, this *does not* account for DamageIncreased.
|
||||
/// As written into the event, this *does* account for DamageIncreased.
|
||||
/// </summary>
|
||||
public readonly bool InterruptsDoAfters;
|
||||
|
||||
/// <summary>
|
||||
/// Contains the entity which caused the change in damage, if any was responsible.
|
||||
/// </summary>
|
||||
public readonly EntityUid? Origin;
|
||||
|
||||
public DamageChangedEvent(DamageableComponent damageable, DamageSpecifier? damageDelta, bool interruptsDoAfters, EntityUid? origin)
|
||||
if (_netMan.IsServer)
|
||||
{
|
||||
Damageable = damageable;
|
||||
DamageDelta = damageDelta;
|
||||
Origin = origin;
|
||||
args.State = new DamageableComponentState(
|
||||
ent.Comp.Damage.DamageDict,
|
||||
ent.Comp.DamageContainerID,
|
||||
ent.Comp.DamageModifierSetId,
|
||||
ent.Comp.HealthBarThreshold
|
||||
);
|
||||
// TODO BODY SYSTEM pass damage onto body system
|
||||
// BOBBY WHEN? 😭
|
||||
// BOBBY SOON 🫡
|
||||
|
||||
if (DamageDelta == null)
|
||||
return;
|
||||
|
||||
foreach (var damageChange in DamageDelta.DamageDict.Values)
|
||||
{
|
||||
if (damageChange > 0)
|
||||
{
|
||||
DamageIncreased = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
InterruptsDoAfters = interruptsDoAfters && DamageIncreased;
|
||||
return;
|
||||
}
|
||||
|
||||
// avoid mispredicting damage on newly spawned entities.
|
||||
args.State = new DamageableComponentState(
|
||||
ent.Comp.Damage.DamageDict.ShallowClone(),
|
||||
ent.Comp.DamageContainerID,
|
||||
ent.Comp.DamageModifierSetId,
|
||||
ent.Comp.HealthBarThreshold
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user