| 1234567891011121314151617181920212223242526272829303132333435 |
- using Content.Shared.Shuttles.Components;
- using Robust.Shared.Physics;
- using Robust.Shared.Physics.Dynamics;
- using Robust.Shared.Physics.Events;
- namespace Content.Server.Shuttles.Systems;
- /// <summary>
- /// Deletes anything with <see cref="SpaceGarbageComponent"/> that has a cross-grid collision with a static body.
- /// </summary>
- public sealed class SpaceGarbageSystem : EntitySystem
- {
- private EntityQuery<TransformComponent> _xformQuery;
- public override void Initialize()
- {
- base.Initialize();
- _xformQuery = GetEntityQuery<TransformComponent>();
- SubscribeLocalEvent<SpaceGarbageComponent, StartCollideEvent>(OnCollide);
- }
- private void OnCollide(EntityUid uid, SpaceGarbageComponent component, ref StartCollideEvent args)
- {
- if (args.OtherBody.BodyType != BodyType.Static)
- return;
- var ourXform = _xformQuery.GetComponent(uid);
- var otherXform = _xformQuery.GetComponent(args.OtherEntity);
- if (ourXform.GridUid == otherXform.GridUid)
- return;
- QueueDel(uid);
- }
- }
|