mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-02-14 19:29:57 +01:00
* the fard * oomba * The woke swarm... * Review * review * Apply suggestions from code review --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using Content.Shared.Damage;
|
|
|
|
namespace Content.Server.Destructible;
|
|
|
|
public sealed partial class DestructibleSystem
|
|
{
|
|
/// <summary>
|
|
/// Tests all triggers in a DestructibleComponent to see how expensive it is to query them.
|
|
/// </summary>
|
|
public void TestAllTriggers(List<Entity<DamageableComponent, DestructibleComponent>> destructibles)
|
|
{
|
|
foreach (var (uid, damageable, destructible) in destructibles)
|
|
{
|
|
foreach (var threshold in destructible.Thresholds)
|
|
{
|
|
// Chances are, none of these triggers will pass!
|
|
Triggered(threshold, (uid, damageable));
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests all behaviours in a DestructibleComponent to see how expensive it is to query them.
|
|
/// </summary>
|
|
public void TestAllBehaviors(List<Entity<DamageableComponent, DestructibleComponent>> destructibles)
|
|
{
|
|
foreach (var (uid, damageable, destructible) in destructibles)
|
|
{
|
|
foreach (var threshold in destructible.Thresholds)
|
|
{
|
|
Execute(threshold, uid);
|
|
}
|
|
}
|
|
}
|
|
}
|