Files
tbd-station-14/Content.Client/Shuttles/ThrusterSystem.cs
Tayrtahn bd6645b021 Cleanup redundant SpriteSystem dependencies in VisualizerSystems (#37758)
Cleanup redundant SpriteSystem dependencies in VisualizerSystems
2025-05-23 14:12:20 -04:00

52 lines
1.7 KiB
C#

using Content.Shared.Shuttles.Components;
using Robust.Client.GameObjects;
namespace Content.Client.Shuttles;
/// <summary>
/// Handles making a thruster visibly turn on/emit an exhaust plume according to its state.
/// </summary>
public sealed class ThrusterSystem : VisualizerSystem<ThrusterComponent>
{
/// <summary>
/// Updates whether or not the thruster is visibly active/thrusting.
/// </summary>
protected override void OnAppearanceChange(EntityUid uid, ThrusterComponent comp, ref AppearanceChangeEvent args)
{
if (args.Sprite == null
|| !AppearanceSystem.TryGetData<bool>(uid, ThrusterVisualState.State, out var state, args.Component))
return;
SpriteSystem.LayerSetVisible((uid, args.Sprite), ThrusterVisualLayers.ThrustOn, state);
SetThrusting(
uid,
state && AppearanceSystem.TryGetData<bool>(uid, ThrusterVisualState.Thrusting, out var thrusting, args.Component) && thrusting,
args.Sprite
);
}
/// <summary>
/// Sets whether or not the exhaust plume of the thruster is visible or not.
/// </summary>
private void SetThrusting(EntityUid uid, bool value, SpriteComponent sprite)
{
if (SpriteSystem.LayerMapTryGet((uid, sprite), ThrusterVisualLayers.Thrusting, out var thrustingLayer, false))
{
SpriteSystem.LayerSetVisible((uid, sprite), thrustingLayer, value);
}
if (SpriteSystem.LayerMapTryGet((uid, sprite), ThrusterVisualLayers.ThrustingUnshaded, out var unshadedLayer, false))
{
SpriteSystem.LayerSetVisible((uid, sprite), unshadedLayer, value);
}
}
}
public enum ThrusterVisualLayers : byte
{
Base,
ThrustOn,
Thrusting,
ThrustingUnshaded,
}