79 lines
2.3 KiB
C#
79 lines
2.3 KiB
C#
using System.Collections.Generic;
|
|
using Content.Shared.GameObjects;
|
|
using Content.Shared.GameObjects.Components.Damage;
|
|
using Content.Shared.GameObjects.Components.Mobs;
|
|
using JetBrains.Annotations;
|
|
using Robust.Client.GameObjects;
|
|
using Robust.Client.Interfaces.GameObjects.Components;
|
|
using Robust.Shared.Utility;
|
|
using YamlDotNet.RepresentationModel;
|
|
|
|
namespace Content.Client.GameObjects.Components.Mobs
|
|
{
|
|
[UsedImplicitly]
|
|
public sealed class DamageStateVisualizer : AppearanceVisualizer
|
|
{
|
|
private DamageState _data = DamageState.Alive;
|
|
private readonly Dictionary<DamageState, string> _stateMap = new();
|
|
private int? _originalDrawDepth;
|
|
|
|
public override void LoadData(YamlMappingNode node)
|
|
{
|
|
base.LoadData(node);
|
|
if (node.TryGetNode("normal", out var normal))
|
|
{
|
|
_stateMap.Add(DamageState.Alive, normal.AsString());
|
|
}
|
|
|
|
if (node.TryGetNode("crit", out var crit))
|
|
{
|
|
_stateMap.Add(DamageState.Critical, crit.AsString());
|
|
}
|
|
|
|
if (node.TryGetNode("dead", out var dead))
|
|
{
|
|
_stateMap.Add(DamageState.Dead, dead.AsString());
|
|
}
|
|
}
|
|
|
|
public override void OnChangeData(AppearanceComponent component)
|
|
{
|
|
base.OnChangeData(component);
|
|
var sprite = component.Owner.GetComponent<ISpriteComponent>();
|
|
if (!component.TryGetData(DamageStateVisuals.State, out DamageState data))
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (_data == data)
|
|
{
|
|
return;
|
|
}
|
|
|
|
_data = data;
|
|
|
|
if (_stateMap.TryGetValue(_data, out var state))
|
|
{
|
|
sprite.LayerSetState(DamageStateVisualLayers.Base, state);
|
|
}
|
|
|
|
// So they don't draw over mobs anymore
|
|
if (_data == DamageState.Dead)
|
|
{
|
|
_originalDrawDepth = sprite.DrawDepth;
|
|
sprite.DrawDepth = (int) DrawDepth.FloorObjects;
|
|
}
|
|
else if (_originalDrawDepth != null)
|
|
{
|
|
sprite.DrawDepth = _originalDrawDepth.Value;
|
|
_originalDrawDepth = null;
|
|
}
|
|
}
|
|
}
|
|
|
|
public enum DamageStateVisualLayers : byte
|
|
{
|
|
Base
|
|
}
|
|
}
|