Add the ability to call a GALPOL exfiltration shuttle (#3722)

* Add the ability to call a GALPOL exfiltration shuttle

* feetback

* format
This commit is contained in:
pathetic meowmeow 2025-05-16 15:27:37 -04:00 committed by GitHub
parent 77d508bd99
commit 66205ad772
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
14 changed files with 469 additions and 10 deletions

View File

@ -1,6 +1,7 @@
using Content.Shared.CCVar; using Content.Shared.CCVar;
using Content.Shared.Chat; using Content.Shared.Chat;
using Content.Shared.Communications; using Content.Shared.Communications;
using Content.Shared._DV.Communications; // DeltaV - Exfiltration shuttle
using Robust.Client.UserInterface; using Robust.Client.UserInterface;
using Robust.Shared.Configuration; using Robust.Shared.Configuration;
using Robust.Shared.Timing; using Robust.Shared.Timing;
@ -27,6 +28,7 @@ namespace Content.Client.Communications.UI
_menu.OnBroadcast += BroadcastButtonPressed; _menu.OnBroadcast += BroadcastButtonPressed;
_menu.OnAlertLevel += AlertLevelSelected; _menu.OnAlertLevel += AlertLevelSelected;
_menu.OnEmergencyLevel += EmergencyShuttleButtonPressed; _menu.OnEmergencyLevel += EmergencyShuttleButtonPressed;
_menu.OnExfiltrationLevel += ExfiltrationShuttleButtonPressed; // DeltaV - Exfiltration shuttle
} }
public void AlertLevelSelected(string level) public void AlertLevelSelected(string level)
@ -46,6 +48,13 @@ namespace Content.Client.Communications.UI
CallShuttle(); CallShuttle();
} }
// Begin DeltaV - Exfiltration Shuttle
public void ExfiltrationShuttleButtonPressed()
{
SendMessage(new CommunicationsConsoleExfiltrationShuttleMessage(!_menu!.CountdownStarted));
}
// End DeltaV - Exfiltration Shuttle
public void AnnounceButtonPressed(string message) public void AnnounceButtonPressed(string message)
{ {
var maxLength = _cfg.GetCVar(CCVars.ChatMaxAnnouncementLength); var maxLength = _cfg.GetCVar(CCVars.ChatMaxAnnouncementLength);
@ -85,6 +94,13 @@ namespace Content.Client.Communications.UI
_menu.CurrentLevel = commsState.CurrentAlert; _menu.CurrentLevel = commsState.CurrentAlert;
_menu.CountdownEnd = commsState.ExpectedCountdownEnd; _menu.CountdownEnd = commsState.ExpectedCountdownEnd;
// Begin DeltaV - Exfiltration Shuttle
_menu.CanExfiltrate = commsState.CanCall;
_menu.ExfiltrationCountdownEnd = commsState.ExpectedExfiltrationCountdownEnd;
_menu.ExfiltrationShuttleButton.Disabled = !_menu.CanExfiltrate;
// End DeltaV - Exfiltration Shuttle
_menu.UpdateCountdown(); _menu.UpdateCountdown();
_menu.UpdateAlertLevels(commsState.AlertLevels, _menu.CurrentLevel); _menu.UpdateAlertLevels(commsState.AlertLevels, _menu.CurrentLevel);
_menu.AlertLevelButton.Disabled = !_menu.AlertLevelSelectable; _menu.AlertLevelButton.Disabled = !_menu.AlertLevelSelectable;

View File

@ -52,10 +52,19 @@
<RichTextLabel Name="CountdownLabel"/> <RichTextLabel Name="CountdownLabel"/>
<!-- DeltaV - Exfiltration Shuttle -->
<RichTextLabel Name="ExfiltrationCountdownLabel"/>
<Button Name="EmergencyShuttleButton" <Button Name="EmergencyShuttleButton"
Access="Public" Access="Public"
Text="Placeholder Text" Text="Placeholder Text"
ToolTip="{Loc 'comms-console-menu-emergency-shuttle-button-tooltip'}"/> ToolTip="{Loc 'comms-console-menu-emergency-shuttle-button-tooltip'}"/>
<!-- DeltaV - Exfiltration Shuttle -->
<Button Name="ExfiltrationShuttleButton"
Access="Public"
Text="Placeholder Text"
ToolTip="{Loc 'comms-console-menu-exfiltration-shuttle-button-tooltip'}"/>
</BoxContainer> </BoxContainer>
</BoxContainer> </BoxContainer>
</BoxContainer> </BoxContainer>

View File

@ -29,6 +29,12 @@ namespace Content.Client.Communications.UI
public event Action<string>? OnAnnounce; public event Action<string>? OnAnnounce;
public event Action<string>? OnBroadcast; public event Action<string>? OnBroadcast;
// Begin DeltaV - Exfiltration Shuttle
public bool CanExfiltrate;
public TimeSpan? ExfiltrationCountdownEnd;
public event Action? OnExfiltrationLevel;
// End DeltaV - Exfiltration Shuttle
public CommunicationsConsoleMenu() public CommunicationsConsoleMenu()
{ {
IoCManager.InjectDependencies(this); IoCManager.InjectDependencies(this);
@ -72,12 +78,18 @@ namespace Content.Client.Communications.UI
EmergencyShuttleButton.OnPressed += _ => OnEmergencyLevel?.Invoke(); EmergencyShuttleButton.OnPressed += _ => OnEmergencyLevel?.Invoke();
EmergencyShuttleButton.Disabled = !CanCall; EmergencyShuttleButton.Disabled = !CanCall;
// Begin DeltaV - Exfiltration Shuttle
ExfiltrationShuttleButton.OnPressed += _ => OnExfiltrationLevel?.Invoke();
ExfiltrationShuttleButton.Disabled = !CanExfiltrate;
// End DeltaV - Exfiltration Shuttle
} }
protected override void FrameUpdate(FrameEventArgs args) protected override void FrameUpdate(FrameEventArgs args)
{ {
base.FrameUpdate(args); base.FrameUpdate(args);
UpdateCountdown(); UpdateCountdown();
UpdateExfiltrationCountdown(); // DeltaV - Exfiltration shuttle
} }
// The current alert could make levels unselectable, so we need to ensure that the UI reacts properly. // The current alert could make levels unselectable, so we need to ensure that the UI reacts properly.
@ -117,6 +129,25 @@ namespace Content.Client.Communications.UI
} }
} }
// Begin DeltaV - Exfiltration Shuttle
public void UpdateExfiltrationCountdown()
{
if (ExfiltrationCountdownEnd is null)
{
ExfiltrationCountdownLabel.SetMessage(string.Empty);
ExfiltrationShuttleButton.Text = Loc.GetString("comms-console-menu-call-exfiltration");
return;
}
var exfiltrationDiff = MathHelper.Max((ExfiltrationCountdownEnd - _timing.CurTime) ?? TimeSpan.Zero, TimeSpan.Zero);
ExfiltrationShuttleButton.Text = Loc.GetString("comms-console-menu-recall-exfiltration");
var exfiltrationInfoText = Loc.GetString("comms-console-menu-exfiltration-time-remaining",
("time", exfiltrationDiff.ToString(@"hh\:mm\:ss", CultureInfo.CurrentCulture)));
ExfiltrationCountdownLabel.SetMessage(exfiltrationInfoText);
}
// End DeltaV - Exfiltration Shuttle
public void UpdateCountdown() public void UpdateCountdown()
{ {
if (!CountdownStarted) if (!CountdownStarted)

View File

@ -1,3 +1,4 @@
using Content.Server._DV.Station.Components; // DeltaV - Exfiltration shuttle
using Content.Server.Administration.Logs; using Content.Server.Administration.Logs;
using Content.Server.AlertLevel; using Content.Server.AlertLevel;
using Content.Server.Chat.Systems; using Content.Server.Chat.Systems;
@ -22,7 +23,7 @@ using Robust.Shared.Configuration;
namespace Content.Server.Communications namespace Content.Server.Communications
{ {
public sealed class CommunicationsConsoleSystem : EntitySystem public sealed partial class CommunicationsConsoleSystem : EntitySystem // DeltaV - Partial Class
{ {
[Dependency] private readonly AccessReaderSystem _accessReaderSystem = default!; [Dependency] private readonly AccessReaderSystem _accessReaderSystem = default!;
[Dependency] private readonly AlertLevelSystem _alertLevelSystem = default!; [Dependency] private readonly AlertLevelSystem _alertLevelSystem = default!;
@ -53,6 +54,8 @@ namespace Content.Server.Communications
SubscribeLocalEvent<CommunicationsConsoleComponent, CommunicationsConsoleCallEmergencyShuttleMessage>(OnCallShuttleMessage); SubscribeLocalEvent<CommunicationsConsoleComponent, CommunicationsConsoleCallEmergencyShuttleMessage>(OnCallShuttleMessage);
SubscribeLocalEvent<CommunicationsConsoleComponent, CommunicationsConsoleRecallEmergencyShuttleMessage>(OnRecallShuttleMessage); SubscribeLocalEvent<CommunicationsConsoleComponent, CommunicationsConsoleRecallEmergencyShuttleMessage>(OnRecallShuttleMessage);
InitializeExfiltration(); // DeltaV - Exfiltration shuttle
// On console init, set cooldown // On console init, set cooldown
SubscribeLocalEvent<CommunicationsConsoleComponent, MapInitEvent>(OnCommunicationsConsoleMapInit); SubscribeLocalEvent<CommunicationsConsoleComponent, MapInitEvent>(OnCommunicationsConsoleMapInit);
} }
@ -135,6 +138,7 @@ namespace Content.Server.Communications
List<string>? levels = null; List<string>? levels = null;
string currentLevel = default!; string currentLevel = default!;
float currentDelay = 0; float currentDelay = 0;
TimeSpan? exfiltrationTime = null; // DeltaV - exfiltration shuttle
if (stationUid != null) if (stationUid != null)
{ {
@ -156,6 +160,12 @@ namespace Content.Server.Communications
currentLevel = alertComp.CurrentLevel; currentLevel = alertComp.CurrentLevel;
currentDelay = _alertLevelSystem.GetAlertLevelDelay(stationUid.Value, alertComp); currentDelay = _alertLevelSystem.GetAlertLevelDelay(stationUid.Value, alertComp);
} }
// Begin DeltaV - exfiltration shuttle
if (TryComp<StationExfiltrationComponent>(stationUid, out var exfiltration))
{
exfiltrationTime = exfiltration.ArrivalTime;
}
// End DeltaV - exfiltration shuttle
} }
_uiSystem.SetUiState(uid, CommunicationsConsoleUiKey.Key, new CommunicationsConsoleInterfaceState( _uiSystem.SetUiState(uid, CommunicationsConsoleUiKey.Key, new CommunicationsConsoleInterfaceState(
@ -164,7 +174,8 @@ namespace Content.Server.Communications
levels, levels,
currentLevel, currentLevel,
currentDelay, currentDelay,
_roundEndSystem.ExpectedCountdownEnd _roundEndSystem.ExpectedCountdownEnd,
exfiltrationTime // DeltaV - exfiltration shuttle
)); ));
} }

View File

@ -0,0 +1,32 @@
using Content.Server._DV.Station.Components;
using Content.Server._DV.Station.Systems;
using Content.Shared._DV.Communications;
namespace Content.Server.Communications;
public sealed partial class CommunicationsConsoleSystem : EntitySystem
{
[Dependency] private readonly StationExfiltrationSystem _stationExfiltration = default!;
private void InitializeExfiltration()
{
SubscribeLocalEvent<CommunicationsConsoleComponent, CommunicationsConsoleExfiltrationShuttleMessage>(OnExfiltrationMessage);
}
private void OnExfiltrationMessage(Entity<CommunicationsConsoleComponent> ent, ref CommunicationsConsoleExfiltrationShuttleMessage args)
{
if (_stationSystem.GetOwningStation(ent) is not { } station)
return;
if (!CanUse(args.Actor, ent))
{
_popupSystem.PopupEntity(Loc.GetString("comms-console-permission-denied"), ent, args.Actor);
return;
}
if (args.Call)
_stationExfiltration.Call(station);
else
_stationExfiltration.Recall(station);
}
}

View File

@ -0,0 +1,116 @@
using Content.Server._DV.Station.Systems;
using Content.Shared.Tag;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
using Robust.Shared.Utility;
namespace Content.Server._DV.Station.Components;
[RegisterComponent, AutoGenerateComponentPause, Access(typeof(StationExfiltrationSystem))]
public sealed partial class StationExfiltrationComponent : Component
{
/// <summary>
/// Time at which the shuttle will dock to the station
/// </summary>
[DataField(customTypeSerializer: typeof(TimeOffsetSerializer))]
[AutoPausedField]
public TimeSpan? ArrivalTime;
/// <summary>
/// Time at which the shuttle will announce that it's leaving the station
/// </summary>
[DataField(customTypeSerializer: typeof(TimeOffsetSerializer))]
[AutoPausedField]
public TimeSpan? ImpendingDepartureAnnouncementTime;
/// <summary>
/// Time at which the shuttle leave the station
/// </summary>
[DataField(customTypeSerializer: typeof(TimeOffsetSerializer))]
[AutoPausedField]
public TimeSpan? DepartureTime;
/// <summary>
/// How long it takes for the shuttle to arrive at the station
/// </summary>
[DataField]
public TimeSpan TravelTime = TimeSpan.FromMinutes(3);
/// <summary>
/// How long before leaving to warn
/// </summary>
[DataField]
public TimeSpan DepartureWarningTime = TimeSpan.FromSeconds(10);
/// <summary>
/// How long to wait at the station before leaving
/// </summary>
[DataField]
public TimeSpan LeaveTime = TimeSpan.FromMinutes(3);
/// <summary>
/// The dock tag the shuttle will prefer to dock to
/// </summary>
[DataField]
public ProtoId<TagPrototype> DockTo = "DockArrivals";
/// <summary>
/// The map to spawn for the shuttle
/// </summary>
[DataField]
public ResPath ShuttlePath = new("/Maps/_DV/Shuttles/exfiltration.yml");
/// <summary>
/// The spawned shuttle
/// </summary>
[DataField]
public EntityUid? SpawnedShuttle;
/// <summary>
/// Sender for exfiltration announcements
/// </summary>
[DataField]
public LocId Sender = "exfiltration-shuttle-sender";
/// <summary>
/// The announcement for when an exfiltration shuttle is called
/// </summary>
[DataField]
public LocId CalledAnnouncement = "exfiltration-shuttle-called";
/// <summary>
/// The announcement for when an exfiltration shuttle is recalled
/// </summary>
[DataField]
public LocId RecalledAnnouncement = "exfiltration-shuttle-recalled";
/// <summary>
/// The announcement for when the exfiltration shuttle docks in the vicinity of the station
/// </summary>
[DataField]
public LocId DockedNearbyStationAnnouncement = "exfiltration-shuttle-docked-nearby-station";
/// <summary>
/// The announcement for when the exfiltration shuttle docks at a station port
/// </summary>
[DataField]
public LocId DockedAtStationAnnouncement = "exfiltration-shuttle-docked-at-station";
/// <summary>
/// The announcement for when the exfiltration shuttle is about to leave
/// </summary>
[DataField]
public LocId AboutToLeaveAnnouncement = "exfiltration-shuttle-about-to-leave";
/// <summary>
/// The announcement for when the exfiltration shuttle leaves
/// </summary>
[DataField]
public LocId LeftAnnouncement = "exfiltration-shuttle-left";
/// <summary>
/// The announcement for when the exfiltration cannot be called due to technical issues
/// </summary>
[DataField]
public LocId FailedAnnouncement = "exfiltration-shuttle-failed";
}

View File

@ -0,0 +1,185 @@
using System.Numerics;
using Content.Server._DV.Station.Components;
using Content.Server.Chat.Systems;
using Content.Server.Communications;
using Content.Server.DeviceNetwork.Systems;
using Content.Server.Pinpointer;
using Content.Server.Screens.Components;
using Content.Server.Shuttles.Components;
using Content.Server.Shuttles.Systems;
using Content.Server.Station.Components;
using Content.Server.Station.Systems;
using Content.Shared.DeviceNetwork.Components;
using Content.Shared.DeviceNetwork;
using Content.Shared.Localizations;
using Content.Shared.Shuttles.Components;
using Content.Shared.Tiles;
using Robust.Shared.Audio;
using Robust.Shared.EntitySerialization.Systems;
using Robust.Shared.Map.Components;
using Robust.Shared.Timing;
using Robust.Shared.Utility;
namespace Content.Server._DV.Station.Systems;
public sealed class StationExfiltrationSystem : EntitySystem
{
[Dependency] private readonly ChatSystem _chat = default!;
[Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!;
[Dependency] private readonly DockingSystem _docking = default!;
[Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly MapLoaderSystem _loader = default!;
[Dependency] private readonly ShuttleSystem _shuttle = default!;
[Dependency] private readonly StationSystem _station = default!;
[Dependency] private readonly NavMapSystem _navMap = default!;
[Dependency] private readonly CommunicationsConsoleSystem _communicationsConsole = default!;
public override void Initialize()
{
base.Initialize();
}
public override void Update(float frameTime)
{
base.Update(frameTime);
var query = EntityQueryEnumerator<StationExfiltrationComponent>();
while (query.MoveNext(out var uid, out var comp))
{
if (_timing.CurTime >= comp.ArrivalTime && comp.SpawnedShuttle is not null)
{
DockShuttle((uid, comp));
}
if (_timing.CurTime >= comp.ImpendingDepartureAnnouncementTime)
{
_chat.DispatchGlobalAnnouncement(
Loc.GetString(comp.AboutToLeaveAnnouncement, ("time", comp.DepartureWarningTime.TotalSeconds), ("station", Name(uid))),
sender: Loc.GetString(comp.Sender),
colorOverride: Color.Red);
comp.ImpendingDepartureAnnouncementTime = null;
}
if (_timing.CurTime >= comp.DepartureTime)
{
_chat.DispatchGlobalAnnouncement(
Loc.GetString(comp.LeftAnnouncement, ("station", Name(uid))),
sender: Loc.GetString(comp.Sender),
colorOverride: Color.Gold);
comp.DepartureTime = null;
QueueDel(comp.SpawnedShuttle);
comp.SpawnedShuttle = null;
}
}
}
private bool PrepareShuttle(Entity<StationExfiltrationComponent> ent)
{
if (ent.Comp.SpawnedShuttle is not null)
return true;
if (!TryComp<StationCentcommComponent>(ent, out var centcomm) || !TryComp<MapComponent>(centcomm.MapEntity, out var centcommMap))
return false;
if (!_loader.TryLoadGrid(centcommMap.MapId,
ent.Comp.ShuttlePath,
out var shuttle,
offset: new Vector2(-1000f, 0f)))
{
Log.Error($"Unable to spawn exfiltration shuttle {ent.Comp.ShuttlePath} for {ToPrettyString(ent)}");
return false;
}
ent.Comp.SpawnedShuttle = shuttle.Value;
EnsureComp<ProtectedGridComponent>(shuttle.Value);
EnsureComp<PreventPilotComponent>(shuttle.Value);
return true;
}
private void DockShuttle(Entity<StationExfiltrationComponent> ent)
{
if (ent.Comp.SpawnedShuttle is not { } shuttle)
return;
if (!TryComp<ShuttleComponent>(shuttle, out var shuttleComp))
return;
if (!TryComp<StationDataComponent>(ent, out var stationData))
return;
if (_station.GetLargestGrid(stationData) is not { } grid)
return;
if (!TryComp<StationCentcommComponent>(ent, out var centcomm))
return;
ent.Comp.ArrivalTime = null;
var ok = _shuttle.TryFTLDock(shuttle, shuttleComp, grid, out var config, ent.Comp.DockTo);
var angle = _docking.GetAngle(shuttle, Transform(shuttle), grid, Transform(grid));
var direction = ContentLocalizationManager.FormatDirection(angle.GetDir());
var location = FormattedMessage.RemoveMarkupPermissive(
_navMap.GetNearestBeaconString((shuttle, Transform(shuttle))));
var locKey = ok ? ent.Comp.DockedAtStationAnnouncement : ent.Comp.DockedNearbyStationAnnouncement;
_chat.DispatchStationAnnouncement(
ent,
Loc.GetString(
locKey,
("time", $"{ent.Comp.LeaveTime.TotalSeconds}"),
("direction", direction),
("location", location),
("station", Name(ent))),
sender: Loc.GetString(ent.Comp.Sender),
colorOverride: Color.Gold);
if (TryComp<DeviceNetworkComponent>(shuttle, out var netComp))
{
var payload = new NetworkPayload
{
[ShuttleTimerMasks.ShuttleMap] = shuttle,
[ShuttleTimerMasks.SourceMap] = Transform(grid).MapUid,
[ShuttleTimerMasks.DestMap] = centcomm.MapEntity,
[ShuttleTimerMasks.ShuttleTime] = ent.Comp.LeaveTime,
[ShuttleTimerMasks.SourceTime] = ent.Comp.LeaveTime,
[ShuttleTimerMasks.DestTime] = ent.Comp.LeaveTime,
[ShuttleTimerMasks.Docked] = true,
};
_deviceNetwork.QueuePacket(shuttle, null, payload, netComp.TransmitFrequency);
}
ent.Comp.ImpendingDepartureAnnouncementTime = _timing.CurTime + ent.Comp.LeaveTime - ent.Comp.DepartureWarningTime;
ent.Comp.DepartureTime = _timing.CurTime + ent.Comp.LeaveTime;
}
public void Call(Entity<StationExfiltrationComponent?> ent)
{
if (!Resolve(ent.Owner, ref ent.Comp, false))
return;
if (!PrepareShuttle((ent.Owner, ent.Comp)))
{
_chat.DispatchStationAnnouncement(ent, Loc.GetString(ent.Comp.FailedAnnouncement, ("station", Name(ent))), sender: Loc.GetString(ent.Comp.Sender), colorOverride: Color.Gold);
}
else
{
ent.Comp.ArrivalTime = _timing.CurTime + ent.Comp.TravelTime;
_chat.DispatchStationAnnouncement(ent, Loc.GetString(ent.Comp.CalledAnnouncement, ("time", ent.Comp.TravelTime.TotalSeconds), ("station", Name(ent))), sender: Loc.GetString(ent.Comp.Sender), colorOverride: Color.Gold);
}
_communicationsConsole.UpdateCommsConsoleInterface();
}
public void Recall(Entity<StationExfiltrationComponent?> ent)
{
if (!Resolve(ent.Owner, ref ent.Comp, false))
return;
ent.Comp.ArrivalTime = null;
_chat.DispatchStationAnnouncement(ent, Loc.GetString(ent.Comp.RecalledAnnouncement, ("station", Name(ent))), sender: Loc.GetString(ent.Comp.Sender), colorOverride: Color.Gold);
_communicationsConsole.UpdateCommsConsoleInterface();
}
}

View File

@ -18,8 +18,9 @@ namespace Content.Shared.Communications
public List<string>? AlertLevels; public List<string>? AlertLevels;
public string CurrentAlert; public string CurrentAlert;
public float CurrentAlertDelay; public float CurrentAlertDelay;
public readonly TimeSpan? ExpectedExfiltrationCountdownEnd;
public CommunicationsConsoleInterfaceState(bool canAnnounce, bool canCall, List<string>? alertLevels, string currentAlert, float currentAlertDelay, TimeSpan? expectedCountdownEnd = null) public CommunicationsConsoleInterfaceState(bool canAnnounce, bool canCall, List<string>? alertLevels, string currentAlert, float currentAlertDelay, TimeSpan? expectedCountdownEnd, TimeSpan? expectedExfiltrationCountdownEnd) // DeltaV - Exfiltration Shuttle
{ {
CanAnnounce = canAnnounce; CanAnnounce = canAnnounce;
CanCall = canCall; CanCall = canCall;
@ -28,6 +29,7 @@ namespace Content.Shared.Communications
AlertLevels = alertLevels; AlertLevels = alertLevels;
CurrentAlert = currentAlert; CurrentAlert = currentAlert;
CurrentAlertDelay = currentAlertDelay; CurrentAlertDelay = currentAlertDelay;
ExpectedExfiltrationCountdownEnd = expectedExfiltrationCountdownEnd; // DeltaV - Exfiltration Shuttle
} }
} }

View File

@ -0,0 +1,9 @@
using Robust.Shared.Serialization;
namespace Content.Shared._DV.Communications;
[Serializable, NetSerializable]
public sealed class CommunicationsConsoleExfiltrationShuttleMessage(bool call) : BoundUserInterfaceMessage
{
public readonly bool Call = call;
}

View File

@ -1 +1,5 @@
comms-console-announcement-title-unauthorized = Unauthorized comms-console-announcement-title-unauthorized = Unauthorized
comms-console-menu-call-exfiltration = Call exfiltration shuttle
comms-console-menu-exfiltration-shuttle-button-tooltip = Calls or recalls the exfiltration shuttle.
comms-console-menu-exfiltration-time-remaining = ETA of exfiltration shuttle: {$time}
comms-console-menu-recall-exfiltration = Recall exfiltration shuttle

View File

@ -0,0 +1,8 @@
exfiltration-shuttle-sender = GALPOL
exfiltration-shuttle-failed = Request received. An exfiltration shuttle could not be prepared to be sent to {$station}.
exfiltration-shuttle-called = Request received. An exfiltration has been called for {$station}. Estimate {$time} seconds until arrival.
exfiltration-shuttle-recalled = Request received. The exfiltration shuttle has been recalled for {$station}.
exfiltration-shuttle-docked-nearby-station = The exfiltration shuttle is unable to dock with {$station}. It has warped in {$direction} of the station, {$location}. It will leave in {$time} seconds.
exfiltration-shuttle-docked-at-station = The exfiltration shuttle docked {$direction} of {$station}, {$location}. It will depart in {$time} seconds.
exfiltration-shuttle-about-to-leave = The exfiltration shuttle will depart from {$station} in {$time} seconds.
exfiltration-shuttle-left = The exfiltration shuttle has left {$station}.

View File

@ -1,11 +1,11 @@
meta: meta:
format: 7 format: 7
category: Grid category: Grid
engineVersion: 249.0.0 engineVersion: 255.1.0
forkId: "" forkId: ""
forkVersion: "" forkVersion: ""
time: 04/12/2025 05:47:37 time: 05/12/2025 20:04:45
entityCount: 295 entityCount: 299
maps: [] maps: []
grids: grids:
- 1 - 1
@ -45,6 +45,11 @@ entities:
ind: -1,-1 ind: -1,-1
tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAA tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAA
version: 6 version: 6
- type: DeviceNetwork
configurators: []
deviceLists: []
transmitFrequencyId: ShuttleTimer
deviceNetId: Wireless
- type: Broadphase - type: Broadphase
- type: Physics - type: Physics
bodyStatus: InAir bodyStatus: InAir
@ -1391,6 +1396,28 @@ entities:
rot: 3.141592653589793 rad rot: 3.141592653589793 rad
pos: -1.5,13.5 pos: -1.5,13.5
parent: 1 parent: 1
- proto: Screen
entities:
- uid: 296
components:
- type: Transform
pos: 0.5,11.5
parent: 1
- uid: 297
components:
- type: Transform
pos: 0.5,8.5
parent: 1
- uid: 298
components:
- type: Transform
pos: 0.5,5.5
parent: 1
- uid: 299
components:
- type: Transform
pos: 0.5,2.5
parent: 1
- proto: ShuttleWindow - proto: ShuttleWindow
entities: entities:
- uid: 3 - uid: 3

View File

@ -25,10 +25,13 @@
- BaseStationSiliconLawCrewsimov - BaseStationSiliconLawCrewsimov
- BaseStationAllEventsEligible - BaseStationAllEventsEligible
- BaseStationNanotrasen - BaseStationNanotrasen
- BaseStationMail # Nyano component, required for station mail to function # Begin DeltaV - Station additions
- BaseStationAutomaticSpareId # DeltaV - BaseStationMail
- BaseStationStockMarket # DeltaV - BaseStationAutomaticSpareId
- BaseStationLavaland # DeltaV - BaseStationStockMarket
- BaseStationLavaland
- BaseStationExfiltration
# End DeltaV - Station additions
categories: [ HideSpawnMenu ] categories: [ HideSpawnMenu ]
components: components:
- type: Transform - type: Transform

View File

@ -29,6 +29,12 @@
components: components:
- type: AutomaticSpareId - type: AutomaticSpareId
- type: entity
id: BaseStationExfiltration
abstract: true
components:
- type: StationExfiltration
- type: entity - type: entity
abstract: true abstract: true
id: BaseStationLavaland id: BaseStationLavaland