using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; using Content.Shared.Shuttles.BUIStates; using Content.Shared.Shuttles.Components; using Content.Shared.Shuttles.Events; using Content.Shared.Shuttles.UI.MapObjects; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; namespace Content.Server.Shuttles.Systems; public sealed partial class ShuttleConsoleSystem { private void InitializeFTL() { SubscribeLocalEvent(OnBeaconStartup); SubscribeLocalEvent(OnBeaconAnchorChanged); SubscribeLocalEvent(OnExclusionStartup); } private void OnExclusionStartup(Entity ent, ref ComponentStartup args) { RefreshShuttleConsoles(); } private void OnBeaconStartup(Entity ent, ref ComponentStartup args) { RefreshShuttleConsoles(); } private void OnBeaconAnchorChanged(Entity ent, ref AnchorStateChangedEvent args) { RefreshShuttleConsoles(); } private void OnBeaconFTLMessage(Entity ent, ref ShuttleConsoleFTLBeaconMessage args) { var beaconEnt = GetEntity(args.Beacon); if (!_xformQuery.TryGetComponent(beaconEnt, out var targetXform)) { return; } var nCoordinates = new NetCoordinates(GetNetEntity(targetXform.ParentUid), targetXform.LocalPosition); if (targetXform.ParentUid == EntityUid.Invalid) { nCoordinates = new NetCoordinates(GetNetEntity(beaconEnt), targetXform.LocalPosition); } // Check target exists if (!_shuttle.CanFTLBeacon(nCoordinates)) { return; } var angle = args.Angle.Reduced(); var targetCoordinates = new EntityCoordinates(targetXform.MapUid!.Value, _transform.GetWorldPosition(targetXform)); ConsoleFTL(ent, targetCoordinates, angle, targetXform.MapID); } private void OnPositionFTLMessage(Entity entity, ref ShuttleConsoleFTLPositionMessage args) { var mapUid = _mapSystem.GetMap(args.Coordinates.MapId); // If it's beacons only block all position messages. if (!Exists(mapUid) || _shuttle.IsBeaconMap(mapUid)) { return; } var targetCoordinates = new EntityCoordinates(mapUid, args.Coordinates.Position); var angle = args.Angle.Reduced(); ConsoleFTL(entity, targetCoordinates, angle, args.Coordinates.MapId); } private void GetBeacons(ref List? beacons) { var beaconQuery = AllEntityQuery(); while (beaconQuery.MoveNext(out var destUid, out _)) { var meta = _metaQuery.GetComponent(destUid); var name = meta.EntityName; if (string.IsNullOrEmpty(name)) name = Loc.GetString("shuttle-console-unknown"); // Can't travel to same map (yet) var destXform = _xformQuery.GetComponent(destUid); beacons ??= new List(); beacons.Add(new ShuttleBeaconObject(GetNetEntity(destUid), GetNetCoordinates(destXform.Coordinates), name)); } } private void GetExclusions(ref List? exclusions) { var query = AllEntityQuery(); while (query.MoveNext(out var comp, out var xform)) { if (!comp.Enabled) continue; exclusions ??= new List(); exclusions.Add(new ShuttleExclusionObject(GetNetCoordinates(xform.Coordinates), comp.Range, Loc.GetString("shuttle-console-exclusion"))); } } /// /// Handles shuttle console FTLs. /// private void ConsoleFTL(Entity ent, EntityCoordinates targetCoordinates, Angle targetAngle, MapId targetMap) { var consoleUid = GetDroneConsole(ent.Owner); if (consoleUid == null) return; var shuttleUid = _xformQuery.GetComponent(consoleUid.Value).GridUid; if (!TryComp(shuttleUid, out ShuttleComponent? shuttleComp)) return; if (shuttleComp.Enabled == false) return; // Check shuttle can even FTL if (!_shuttle.CanFTL(shuttleUid.Value, out var reason)) { // TODO: Session popup return; } // Check shuttle can FTL to this target. if (!_shuttle.CanFTLTo(shuttleUid.Value, targetMap, ent)) { return; } List? exclusions = null; GetExclusions(ref exclusions); if (!_shuttle.FTLFree(shuttleUid.Value, targetCoordinates, targetAngle, exclusions)) { return; } if (!TryComp(shuttleUid.Value, out PhysicsComponent? shuttlePhysics)) { return; } // Client sends the "adjusted" coordinates and we adjust it back to get the actual transform coordinates. var adjustedCoordinates = targetCoordinates.Offset(targetAngle.RotateVec(-shuttlePhysics.LocalCenter)); var tagEv = new FTLTagEvent(); RaiseLocalEvent(shuttleUid.Value, ref tagEv); var ev = new ShuttleConsoleFTLTravelStartEvent(ent.Owner); RaiseLocalEvent(ref ev); _shuttle.FTLToCoordinates(shuttleUid.Value, shuttleComp, adjustedCoordinates, targetAngle); } }