47 lines
1.3 KiB
C#
47 lines
1.3 KiB
C#
using System.Collections.Generic;
|
|
using Robust.Server.GameObjects;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Maths;
|
|
using Robust.Shared.Random;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
namespace Content.Server.GameObjects.Components
|
|
{
|
|
[RegisterComponent]
|
|
public class RandomSpriteColorComponent : Component, IMapInit
|
|
{
|
|
public override string Name => "RandomSpriteColor";
|
|
|
|
[DataField("selected")]
|
|
private string? _selectedColor;
|
|
[DataField("state")]
|
|
private string _baseState = "error";
|
|
|
|
[DataField("colors")] private readonly Dictionary<string, Color> _colors = new();
|
|
|
|
void IMapInit.MapInit()
|
|
{
|
|
var random = IoCManager.Resolve<IRobustRandom>();
|
|
_selectedColor = random.Pick(_colors.Keys);
|
|
UpdateColor();
|
|
}
|
|
|
|
protected override void Startup()
|
|
{
|
|
base.Startup();
|
|
|
|
UpdateColor();
|
|
}
|
|
|
|
private void UpdateColor()
|
|
{
|
|
if (Owner.TryGetComponent(out SpriteComponent? spriteComponent) && _selectedColor != null)
|
|
{
|
|
spriteComponent.LayerSetState(0, _baseState);
|
|
spriteComponent.LayerSetColor(0, _colors[_selectedColor]);
|
|
}
|
|
}
|
|
}
|
|
}
|