Some checks failed
Map file schema validator / YAML map schema validator (push) Has been cancelled
RSI Validator / Validate RSIs (push) Has been cancelled
RGA schema validator / YAML RGA schema validator (push) Has been cancelled
Test Packaging / Test Packaging (push) Has been cancelled
Build & Test Debug / build (ubuntu-latest) (push) Has been cancelled
Build & Test Debug / Build & Test Debug (push) Has been cancelled
YAML Linter / YAML Linter (push) Has been cancelled
Build & Test Map Renderer / build (ubuntu-latest) (push) Has been cancelled
Build & Test Map Renderer / Build & Test Debug (push) Has been cancelled
Benchmarks / Run Benchmarks (push) Waiting to run
272 lines
10 KiB
C#
272 lines
10 KiB
C#
using Content.Shared.Damage.Components;
|
|
using Content.Shared.Damage.Prototypes;
|
|
using Content.Shared.FixedPoint;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Damage.Systems;
|
|
|
|
public sealed partial class DamageableSystem
|
|
{
|
|
/// <summary>
|
|
/// Directly sets the damage in a damageable component.
|
|
/// This method keeps the damage types supported by the DamageContainerPrototype in the component.
|
|
/// If a type is given in <paramref name="damage"/>, but not supported then it will not be set.
|
|
/// If a type is supported but not given in <paramref name="damage"/> then it will be set to 0.
|
|
/// </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(Entity<DamageableComponent?> ent, DamageSpecifier damage)
|
|
{
|
|
if (!_damageableQuery.Resolve(ent, ref ent.Comp, false))
|
|
return;
|
|
|
|
foreach (var type in ent.Comp.Damage.DamageDict.Keys)
|
|
{
|
|
if (damage.DamageDict.TryGetValue(type, out var value))
|
|
ent.Comp.Damage.DamageDict[type] = value;
|
|
else
|
|
ent.Comp.Damage.DamageDict[type] = 0;
|
|
}
|
|
|
|
OnEntityDamageChanged((ent, ent.Comp));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Directly sets the damage specifier of a damageable component.
|
|
/// This will overwrite the complete damage dict, meaning it will bulldoze the supported damage types.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This may break persistance as the supported types are reset in case the component is initialized again.
|
|
/// So this only makes sense if you also change the DamageContainerPrototype in the component at the same time.
|
|
/// Only use this method if you know what you are doing.
|
|
/// </remarks>
|
|
public void SetDamageSpecifier(Entity<DamageableComponent?> ent, DamageSpecifier damage)
|
|
{
|
|
if (!_damageableQuery.Resolve(ent, ref ent.Comp, false))
|
|
return;
|
|
|
|
ent.Comp.Damage = damage;
|
|
|
|
OnEntityDamageChanged((ent, ent.Comp));
|
|
}
|
|
|
|
/// <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>
|
|
/// If the attempt was successful or not.
|
|
/// </returns>
|
|
public bool TryChangeDamage(
|
|
Entity<DamageableComponent?> ent,
|
|
DamageSpecifier damage,
|
|
bool ignoreResistances = false,
|
|
bool interruptsDoAfters = true,
|
|
EntityUid? origin = null,
|
|
bool ignoreGlobalModifiers = false,
|
|
bool forceRefresh = false // Offbrand
|
|
)
|
|
{
|
|
//! Empty just checks if the DamageSpecifier is _literally_ empty, as in, is internal dictionary of damage types is empty.
|
|
// If you deal 0.0 of some damage type, Empty will be false!
|
|
return !TryChangeDamage(ent, damage, out _, ignoreResistances, interruptsDoAfters, origin, ignoreGlobalModifiers, forceRefresh); // Offbrand
|
|
}
|
|
|
|
/// <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>
|
|
/// If the attempt was successful or not.
|
|
/// </returns>
|
|
public bool TryChangeDamage(
|
|
Entity<DamageableComponent?> ent,
|
|
DamageSpecifier damage,
|
|
out DamageSpecifier newDamage,
|
|
bool ignoreResistances = false,
|
|
bool interruptsDoAfters = true,
|
|
EntityUid? origin = null,
|
|
bool ignoreGlobalModifiers = false,
|
|
bool forceRefresh = false // Offbrand
|
|
)
|
|
{
|
|
//! Empty just checks if the DamageSpecifier is _literally_ empty, as in, is internal dictionary of damage types is empty.
|
|
// If you deal 0.0 of some damage type, Empty will be false!
|
|
newDamage = ChangeDamage(ent, damage, ignoreResistances, interruptsDoAfters, origin, ignoreGlobalModifiers, forceRefresh); // Offbrand
|
|
return !damage.Empty;
|
|
}
|
|
|
|
/// <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>
|
|
/// The actual amount of damage taken, as a DamageSpecifier.
|
|
/// </returns>
|
|
public DamageSpecifier ChangeDamage(
|
|
Entity<DamageableComponent?> ent,
|
|
DamageSpecifier damage,
|
|
bool ignoreResistances = false,
|
|
bool interruptsDoAfters = true,
|
|
EntityUid? origin = null,
|
|
bool ignoreGlobalModifiers = false,
|
|
bool forceRefresh = false // Offbrand
|
|
)
|
|
{
|
|
var damageDone = new DamageSpecifier();
|
|
|
|
if (!_damageableQuery.Resolve(ent, ref ent.Comp, false))
|
|
return damageDone;
|
|
|
|
if (damage.Empty && !forceRefresh)
|
|
return damageDone;
|
|
|
|
var before = new BeforeDamageChangedEvent(damage, origin);
|
|
RaiseLocalEvent(ent, ref before);
|
|
|
|
if (before.Cancelled)
|
|
return damageDone;
|
|
|
|
// Apply resistances
|
|
if (!ignoreResistances)
|
|
{
|
|
if (
|
|
ent.Comp.DamageModifierSetId != null &&
|
|
_prototypeManager.Resolve(ent.Comp.DamageModifierSetId, out var modifierSet)
|
|
)
|
|
damage = DamageSpecifier.ApplyModifierSet(damage, modifierSet);
|
|
|
|
// TODO DAMAGE
|
|
// byref struct event.
|
|
var ev = new DamageModifyEvent(damage, origin);
|
|
RaiseLocalEvent(ent, ev);
|
|
damage = ev.Damage;
|
|
|
|
if (damage.Empty && !forceRefresh) // Offbrand
|
|
return damageDone;
|
|
}
|
|
|
|
if (!ignoreGlobalModifiers)
|
|
damage = ApplyUniversalAllModifiers(damage);
|
|
|
|
// Begin Offbrand
|
|
var beforeCommit = new Content.Shared._Offbrand.Wounds.BeforeDamageCommitEvent(damage, forceRefresh);
|
|
RaiseLocalEvent(ent.Owner, ref beforeCommit);
|
|
damage = beforeCommit.Damage;
|
|
// End Offbrand
|
|
|
|
damageDone.DamageDict.EnsureCapacity(damage.DamageDict.Count);
|
|
|
|
var dict = ent.Comp.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;
|
|
damageDone.DamageDict[type] = newValue - oldValue;
|
|
}
|
|
|
|
if (!damageDone.Empty)
|
|
OnEntityDamageChanged((ent, ent.Comp), damageDone, interruptsDoAfters, origin, forceRefresh); // Offbrand
|
|
|
|
return damageDone;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Applies the two universal "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 (
|
|
MathHelper.CloseToPercent(UniversalAllDamageModifier, 1f) &&
|
|
MathHelper.CloseToPercent(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;
|
|
}
|
|
|
|
public void ClearAllDamage(Entity<DamageableComponent?> ent)
|
|
{
|
|
SetAllDamage(ent, FixedPoint2.Zero);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets all damage types supported by a <see cref="Components.DamageableComponent"/> to the specified value.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Does nothing If the given damage value is negative.
|
|
/// </remarks>
|
|
public void SetAllDamage(Entity<DamageableComponent?> ent, FixedPoint2 newValue)
|
|
{
|
|
if (!_damageableQuery.Resolve(ent, ref ent.Comp, false))
|
|
return;
|
|
|
|
if (newValue < 0)
|
|
return;
|
|
|
|
foreach (var type in ent.Comp.Damage.DamageDict.Keys)
|
|
{
|
|
ent.Comp.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.
|
|
OnEntityDamageChanged((ent, ent.Comp), new DamageSpecifier());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Set's the damage modifier set prototype for this entity.
|
|
/// </summary>
|
|
/// <param name="ent">The entity we're setting the modifier set of.</param>
|
|
/// <param name="damageModifierSetId">The prototype we're setting.</param>
|
|
public void SetDamageModifierSetId(Entity<DamageableComponent?> ent, ProtoId<DamageModifierSetPrototype>? damageModifierSetId)
|
|
{
|
|
if (!_damageableQuery.Resolve(ent, ref ent.Comp, false))
|
|
return;
|
|
|
|
ent.Comp.DamageModifierSetId = damageModifierSetId;
|
|
|
|
Dirty(ent);
|
|
}
|
|
}
|