* 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
45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
using System.Threading.Tasks;
|
|
using Content.Shared.Construction;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Serialization;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Content.Server.Construction.Conditions
|
|
{
|
|
[UsedImplicitly]
|
|
public class EntityAnchored : IEdgeCondition
|
|
{
|
|
public bool Anchored { get; private set; }
|
|
|
|
void IExposeData.ExposeData(ObjectSerializer serializer)
|
|
{
|
|
serializer.DataField(this, x => x.Anchored, "anchored", true);
|
|
}
|
|
|
|
public async Task<bool> Condition(IEntity entity)
|
|
{
|
|
if (!entity.TryGetComponent(out IPhysicsComponent physics)) return false;
|
|
|
|
return physics.Anchored == Anchored;
|
|
}
|
|
|
|
public bool DoExamine(IEntity entity, FormattedMessage message, bool inDetailsRange)
|
|
{
|
|
if (!entity.TryGetComponent(out IPhysicsComponent physics)) return false;
|
|
|
|
switch (Anchored)
|
|
{
|
|
case true when !physics.Anchored:
|
|
message.AddMarkup("First, anchor it.\n");
|
|
return true;
|
|
case false when physics.Anchored:
|
|
message.AddMarkup("First, unanchor it.\n");
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|
|
}
|