* Remove most IEntity usages from Destructible and Explosions * Perform a minute amount of cleanup * Fix build
59 lines
2.3 KiB
C#
59 lines
2.3 KiB
C#
using System;
|
|
using Content.Server.Chemistry.Components.SolutionManager;
|
|
using Content.Server.Explosion.EntitySystems;
|
|
using Content.Shared.Chemistry.Components;
|
|
using Content.Shared.Chemistry.Reaction;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
namespace Content.Server.Chemistry.ReactionEffects
|
|
{
|
|
[DataDefinition]
|
|
public class ExplosionReactionEffect : IReactionEffect
|
|
{
|
|
[DataField("devastationRange")] private float _devastationRange = 1;
|
|
[DataField("heavyImpactRange")] private float _heavyImpactRange = 2;
|
|
[DataField("lightImpactRange")] private float _lightImpactRange = 3;
|
|
[DataField("flashRange")] private float _flashRange;
|
|
|
|
/// <summary>
|
|
/// If true, then scale ranges by intensity. If not, the ranges are the same regardless of reactant amount.
|
|
/// </summary>
|
|
[DataField("scaled")] private bool _scaled;
|
|
|
|
/// <summary>
|
|
/// Maximum scaling on ranges. For example, if it equals 5, then it won't scaled anywhere past
|
|
/// 5 times the minimum reactant amount.
|
|
/// </summary>
|
|
[DataField("maxScale")] private float _maxScale = 1;
|
|
|
|
public void React(Solution solution, EntityUid solutionEntity, double intensity, IEntityManager entityManager)
|
|
{
|
|
var floatIntensity = (float) intensity;
|
|
|
|
if (!entityManager.HasComponent<SolutionContainerManagerComponent>(solutionEntity))
|
|
return;
|
|
|
|
//Handle scaling
|
|
if (_scaled)
|
|
{
|
|
floatIntensity = MathF.Min(floatIntensity, _maxScale);
|
|
}
|
|
else
|
|
{
|
|
floatIntensity = 1;
|
|
}
|
|
|
|
//Calculate intensities
|
|
var finalDevastationRange = (int)MathF.Round(_devastationRange * floatIntensity);
|
|
var finalHeavyImpactRange = (int)MathF.Round(_heavyImpactRange * floatIntensity);
|
|
var finalLightImpactRange = (int)MathF.Round(_lightImpactRange * floatIntensity);
|
|
var finalFlashRange = (int)MathF.Round(_flashRange * floatIntensity);
|
|
EntitySystem.Get<ExplosionSystem>().SpawnExplosion(solutionEntity, finalDevastationRange,
|
|
finalHeavyImpactRange, finalLightImpactRange, finalFlashRange);
|
|
}
|
|
}
|
|
}
|
|
|
|
|