* Engine namespace changes.
* Automated remove redundant using statements.
* Simplified Graphics namespace.
* Apparently the container system stores full type names in the map file.😞 This updates those names.
* API Changes to LocalizationManager.LoadCulture.
* Update submodule to v0.3.2
62 lines
1.8 KiB
C#
62 lines
1.8 KiB
C#
using System;
|
|
using Content.Shared.GameObjects.Components.Conveyor;
|
|
using JetBrains.Annotations;
|
|
using Robust.Client.GameObjects;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Utility;
|
|
using YamlDotNet.RepresentationModel;
|
|
|
|
namespace Content.Client.GameObjects.Components.Conveyor
|
|
{
|
|
[UsedImplicitly]
|
|
public class ConveyorVisualizer : AppearanceVisualizer
|
|
{
|
|
private string _stateRunning;
|
|
private string _stateStopped;
|
|
private string _stateReversed;
|
|
|
|
private void ChangeState(AppearanceComponent appearance)
|
|
{
|
|
if (!appearance.Owner.TryGetComponent(out ISpriteComponent sprite))
|
|
{
|
|
return;
|
|
}
|
|
|
|
appearance.TryGetData(ConveyorVisuals.State, out ConveyorState state);
|
|
|
|
var texture = state switch
|
|
{
|
|
ConveyorState.Off => _stateStopped,
|
|
ConveyorState.Forward => _stateRunning,
|
|
ConveyorState.Reversed => _stateReversed,
|
|
_ => throw new ArgumentOutOfRangeException()
|
|
};
|
|
|
|
sprite.LayerSetState(0, texture);
|
|
}
|
|
|
|
public override void LoadData(YamlMappingNode node)
|
|
{
|
|
base.LoadData(node);
|
|
|
|
_stateRunning = node.GetNode("state_running").AsString();
|
|
_stateStopped = node.GetNode("state_stopped").AsString();
|
|
_stateReversed = node.GetNode("state_reversed").AsString();
|
|
}
|
|
|
|
public override void InitializeEntity(IEntity entity)
|
|
{
|
|
base.InitializeEntity(entity);
|
|
|
|
var appearance = entity.EnsureComponent<AppearanceComponent>();
|
|
ChangeState(appearance);
|
|
}
|
|
|
|
public override void OnChangeData(AppearanceComponent component)
|
|
{
|
|
base.OnChangeData(component);
|
|
ChangeState(component);
|
|
}
|
|
}
|
|
}
|