* Replaces AnchoredChanged C# event with ComponentMessage * Removes unneeded fields Co-authored-by: py01 <pyronetics01@gmail.com>
62 lines
1.6 KiB
C#
62 lines
1.6 KiB
C#
#nullable enable
|
|
using Content.Server.Utility;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.GameObjects.Components;
|
|
using Robust.Shared.GameObjects.Components.Transform;
|
|
using Robust.Shared.Interfaces.GameObjects;
|
|
using Robust.Shared.Log;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Content.Server.GameObjects.Components.PA
|
|
{
|
|
public abstract class ParticleAcceleratorPartComponent : Component
|
|
{
|
|
[ViewVariables] public ParticleAcceleratorControlBoxComponent? Master;
|
|
[ViewVariables] protected SnapGridComponent? SnapGrid;
|
|
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
// FIXME: this has to be an entity system, full stop.
|
|
|
|
if (!Owner.TryGetComponent(out SnapGrid))
|
|
{
|
|
Logger.Error("ParticleAcceleratorControlBox was created without SnapGridComponent");
|
|
}
|
|
}
|
|
|
|
public override void HandleMessage(ComponentMessage message, IComponent? component)
|
|
{
|
|
base.HandleMessage(message, component);
|
|
switch (message)
|
|
{
|
|
case AnchoredChangedMessage:
|
|
OnAnchorChanged();
|
|
break;
|
|
}
|
|
}
|
|
|
|
public void OnAnchorChanged()
|
|
{
|
|
RescanIfPossible();
|
|
}
|
|
|
|
public override void OnRemove()
|
|
{
|
|
base.OnRemove();
|
|
|
|
RescanIfPossible();
|
|
}
|
|
|
|
private void RescanIfPossible()
|
|
{
|
|
Master?.RescanParts();
|
|
}
|
|
|
|
public virtual void Rotated()
|
|
{
|
|
RescanIfPossible();
|
|
}
|
|
}
|
|
}
|