Revert "Purge uses of TransformComponent.Anchored.set. Also adds parentheses." (#35332)

This commit is contained in:
metalgearsloth
2025-02-21 00:12:12 +11:00
committed by GitHub
parent a4001fba1b
commit fa35c9623d
22 changed files with 34 additions and 35 deletions

View File

@@ -421,7 +421,7 @@ public sealed partial class AdminVerbSystem
{
var xform = Transform(args.Target);
var fixtures = Comp<FixturesComponent>(args.Target);
_transformSystem.Unanchor((args.Target, xform)); // Just in case.
xform.Anchored = false; // Just in case.
_physics.SetBodyType(args.Target, BodyType.Dynamic, manager: fixtures, body: physics);
_physics.SetBodyStatus(args.Target, physics, BodyStatus.InAir);
_physics.WakeBody(args.Target, manager: fixtures, body: physics);
@@ -456,7 +456,7 @@ public sealed partial class AdminVerbSystem
{
var xform = Transform(args.Target);
var fixtures = Comp<FixturesComponent>(args.Target);
_transformSystem.Unanchor((args.Target, xform));
xform.Anchored = false; // Just in case.
_physics.SetBodyType(args.Target, BodyType.Dynamic, body: physics);
_physics.SetBodyStatus(args.Target, physics, BodyStatus.InAir);

View File

@@ -40,7 +40,7 @@ public sealed class PipeRestrictOverlapSystem : EntitySystem
if (HasComp<AnchorableComponent>(ent) && CheckOverlap(ent))
{
_popup.PopupEntity(Loc.GetString("pipe-restrict-overlap-popup-blocked", ("pipe", ent.Owner)), ent);
_xform.Unanchor((ent, Transform(ent)));
_xform.Unanchor(ent, Transform(ent));
}
}

View File

@@ -522,7 +522,7 @@ namespace Content.Server.Cargo.Systems
var item = Spawn(order.ProductId, spawn);
// Ensure the item doesn't start anchored
_transformSystem.Unanchor((item, Transform(item)));
_transformSystem.Unanchor(item, Transform(item));
// Create a sheet of paper to write the order details on
var printed = EntityManager.SpawnEntity(paperProto, spawn);

View File

@@ -11,8 +11,8 @@ namespace Content.Server.Construction.Completions
public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager)
{
var transformSystem = entityManager.System<SharedTransformSystem>();
transformSystem.TrySetAnchor(uid, Value);
var transform = entityManager.GetComponent<TransformComponent>(uid);
transform.Anchored = Value;
}
}
}

View File

@@ -364,7 +364,7 @@ namespace Content.Server.Construction
var newTransform = Transform(newUid);
TransformSystem.AttachToGridOrMap(newUid, newTransform); // in case in hands or a container
newTransform.LocalRotation = transform.LocalRotation;
TransformSystem.SetAnchor((newUid, newTransform), transform.Anchored);
newTransform.Anchored = transform.Anchored;
// Container transferring.
if (containerManager != null)

View File

@@ -133,7 +133,7 @@ public sealed class DefusableSystem : SharedDefusableSystem
var xform = Transform(uid);
if (!xform.Anchored)
_transform.AnchorEntity((uid, xform));
_transform.AnchorEntity(uid, xform);
SetBolt(comp, true);
SetActivated(comp, true);
@@ -203,7 +203,7 @@ public sealed class DefusableSystem : SharedDefusableSystem
comp.Bolted = false;
if (xform.Anchored)
_transform.Unanchor((uid, xform));
_transform.Unanchor(uid, xform);
_appearance.SetData(uid, DefusableVisuals.Active, comp.Activated);
}

View File

@@ -149,7 +149,7 @@ namespace Content.Server.Explosion.EntitySystems
if (xform.Anchored)
return;
_transformSystem.AnchorEntity((uid, xform));
_transformSystem.AnchorEntity(uid, xform);
if (component.RemoveOnTrigger)
RemCompDeferred<AnchorOnTriggerComponent>(uid);

View File

@@ -54,7 +54,7 @@ public sealed class HolosignSystem : EntitySystem
var holoUid = EntityManager.SpawnEntity(component.SignProto, args.ClickLocation.SnapToGrid(EntityManager));
var xform = Transform(holoUid);
if (!xform.Anchored)
_transform.AnchorEntity((holoUid, xform)); // anchor to prevent any tempering with (don't know what could even interact with it)
_transform.AnchorEntity(holoUid, xform); // anchor to prevent any tempering with (don't know what could even interact with it)
args.Handled = true;
}

View File

@@ -181,7 +181,7 @@ public sealed class NukeSystem : EntitySystem
var xform = Transform(uid);
if (xform.Anchored)
{
_transform.Unanchor((uid, xform));
_transform.Unanchor(uid, xform);
_itemSlots.SetLock(uid, component.DiskSlot, true);
}
else
@@ -203,7 +203,7 @@ public sealed class NukeSystem : EntitySystem
}
_transform.SetCoordinates(uid, xform, xform.Coordinates.SnapToGrid());
_transform.AnchorEntity((uid, xform));
_transform.AnchorEntity(uid, xform);
_itemSlots.SetLock(uid, component.DiskSlot, false);
}
@@ -490,7 +490,7 @@ public sealed class NukeSystem : EntitySystem
if (!nukeXform.Anchored)
{
// Admin command shenanigans, just make sure.
_transform.AnchorEntity((uid, nukeXform));
_transform.AnchorEntity(uid, nukeXform);
}
component.Status = NukeStatus.ARMED;

View File

@@ -31,7 +31,7 @@ public sealed partial class DungeonJob
if (reservedTiles.Contains(node))
continue;
if (dunGen.TileMask is not null)
{
if (!dunGen.TileMask.Contains(((ContentTileDefinition) _tileDefManager[tileRef.Value.Tile.TypeId]).ID))
@@ -59,7 +59,7 @@ public sealed partial class DungeonJob
if (!xform.Comp.Anchored)
{
_transform.AnchorEntity((ent, xform));
_transform.AnchorEntity(ent, xform);
}
// TODO: Engine bug with SpawnAtPosition

View File

@@ -94,7 +94,7 @@ public sealed partial class DungeonJob
var xform = xformQuery.Get(ent);
if (!xform.Comp.Anchored)
_transform.AnchorEntity((ent, xform));
_transform.AnchorEntity(ent, xform);
await SuspendDungeon();
if (!ValidateResume())

View File

@@ -195,7 +195,7 @@ public sealed partial class DungeonSystem
if (anchored && !childXform.Anchored)
_transform.AnchorEntity((ent, childXform), (gridUid, grid));
else if (!anchored && childXform.Anchored)
_transform.Unanchor((ent, childXform));
_transform.Unanchor(ent, childXform);
}
// Load decals

View File

@@ -21,7 +21,6 @@ namespace Content.Server.Rotatable
[Dependency] private readonly PopupSystem _popup = default!;
[Dependency] private readonly ActionBlockerSystem _actionBlocker = default!;
[Dependency] private readonly SharedInteractionSystem _interaction = default!;
[Dependency] private readonly SharedTransformSystem _transform = default!;
public override void Initialize()
{
@@ -113,7 +112,7 @@ namespace Content.Server.Rotatable
var entity = EntityManager.SpawnEntity(component.MirrorEntity, oldTransform.Coordinates);
var newTransform = EntityManager.GetComponent<TransformComponent>(entity);
newTransform.LocalRotation = oldTransform.LocalRotation;
_transform.Unanchor((entity, newTransform));
newTransform.Anchored = false;
EntityManager.DeleteEntity(uid);
}