Files
tbd-station-14/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.FTL.cs
SlamBamActionman bed9e9ac6a Coordinates Disks & Shuttle FTL Travel (#23240)
* Adds the CentComm Disk and configures it to work with direct-use shuttles

* Added functionality for drone shuttles (i.e. cargo shuttle)

* Adds support for pods, and a disk console object for disks to be inserted into. Also sprites.

* Added the disk to HoP's locker

* Removed leftover logs & comments

* Fix for integration test

* Apply suggestions from code review (formatting & proper DataField)

Co-authored-by: 0x6273 <0x40@keemail.me>

* Fix integration test & changes based on code review

* Includes Disk Cases to contain Coordinate Disks, which are now CDs instead of Floppy Disks

* Check pods & non-evac shuttles for CentCom travel, even in FTL

* Import

* Remove CentCom travel restrictions & pod disk consoles

* Major changes that changes the coordinates disk system to work with salvage expeditions

* Missed CC diskcase removal

* Fix build

* Review suggestions and changes

* Major additional changes after merge

* Minor tag miss

* Integration test fix

* review

---------

Co-authored-by: 0x6273 <0x40@keemail.me>
Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
2024-04-01 15:50:00 +11:00

165 lines
5.5 KiB
C#

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<FTLBeaconComponent, ComponentStartup>(OnBeaconStartup);
SubscribeLocalEvent<FTLBeaconComponent, AnchorStateChangedEvent>(OnBeaconAnchorChanged);
SubscribeLocalEvent<FTLExclusionComponent, ComponentStartup>(OnExclusionStartup);
}
private void OnExclusionStartup(Entity<FTLExclusionComponent> ent, ref ComponentStartup args)
{
RefreshShuttleConsoles();
}
private void OnBeaconStartup(Entity<FTLBeaconComponent> ent, ref ComponentStartup args)
{
RefreshShuttleConsoles();
}
private void OnBeaconAnchorChanged(Entity<FTLBeaconComponent> ent, ref AnchorStateChangedEvent args)
{
RefreshShuttleConsoles();
}
private void OnBeaconFTLMessage(Entity<ShuttleConsoleComponent> 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<ShuttleConsoleComponent> entity, ref ShuttleConsoleFTLPositionMessage args)
{
var mapUid = _mapManager.GetMapEntityId(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<ShuttleBeaconObject>? beacons)
{
var beaconQuery = AllEntityQuery<FTLBeaconComponent>();
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<ShuttleBeaconObject>();
beacons.Add(new ShuttleBeaconObject(GetNetEntity(destUid), GetNetCoordinates(destXform.Coordinates), name));
}
}
private void GetExclusions(ref List<ShuttleExclusionObject>? exclusions)
{
var query = AllEntityQuery<FTLExclusionComponent, TransformComponent>();
while (query.MoveNext(out var comp, out var xform))
{
if (!comp.Enabled)
continue;
exclusions ??= new List<ShuttleExclusionObject>();
exclusions.Add(new ShuttleExclusionObject(GetNetCoordinates(xform.Coordinates), comp.Range, Loc.GetString("shuttle-console-exclusion")));
}
}
/// <summary>
/// Handles shuttle console FTLs.
/// </summary>
private void ConsoleFTL(Entity<ShuttleConsoleComponent> 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;
// 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<ShuttleExclusionObject>? 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);
}
}