Files
crystall-punk-14/Content.Server/Administration/Commands/AGhost.cs

77 lines
2.9 KiB
C#
Raw Normal View History

using Content.Server.GameTicking;
2021-06-09 22:19:39 +02:00
using Content.Server.Ghost.Components;
2023-06-18 11:33:19 -07:00
using Content.Server.Mind;
2020-04-05 02:29:04 +02:00
using Content.Server.Players;
using Content.Shared.Administration;
2021-08-06 00:02:36 -07:00
using Content.Shared.Ghost;
using Robust.Server.Player;
using Robust.Shared.Console;
2018-09-20 18:19:04 +02:00
namespace Content.Server.Administration.Commands
2018-09-20 18:19:04 +02:00
{
[AdminCommand(AdminFlags.Admin)]
public sealed class AGhost : IConsoleCommand
2018-09-20 18:19:04 +02:00
{
2021-12-05 18:09:01 +01:00
[Dependency] private readonly IEntityManager _entities = default!;
2018-09-20 18:19:04 +02:00
public string Command => "aghost";
public string Description => "Makes you an admin ghost.";
public string Help => "aghost";
public void Execute(IConsoleShell shell, string argStr, string[] args)
2018-09-20 18:19:04 +02:00
{
var player = shell.Player as IPlayerSession;
2018-09-20 18:19:04 +02:00
if (player == null)
{
shell.WriteLine("Nah");
2018-09-20 18:19:04 +02:00
return;
}
var mind = player.ContentData()?.Mind;
if (mind == null)
{
shell.WriteLine("You can't ghost here!");
return;
}
2023-06-18 11:33:19 -07:00
var mindSystem = _entities.System<MindSystem>();
2023-06-18 11:33:19 -07:00
if (mind.VisitingEntity != default && _entities.TryGetComponent<GhostComponent>(mind.VisitingEntity, out var oldGhostComponent))
2018-09-20 18:19:04 +02:00
{
2023-06-18 11:33:19 -07:00
mindSystem.UnVisit(mind);
// If already an admin ghost, then return to body.
if (oldGhostComponent.CanGhostInteract)
return;
2018-09-20 18:19:04 +02:00
}
var canReturn = mind.CurrentEntity != null
&& !_entities.HasComponent<GhostComponent>(mind.CurrentEntity);
2021-12-06 15:34:46 +01:00
var coordinates = player.AttachedEntity != null
? _entities.GetComponent<TransformComponent>(player.AttachedEntity.Value).Coordinates
2021-12-05 18:09:01 +01:00
: EntitySystem.Get<GameTicker>().GetObserverSpawnPoint();
2022-08-29 15:05:53 +10:00
var ghost = _entities.SpawnEntity("AdminObserver", coordinates);
2022-10-16 12:26:24 +13:00
_entities.GetComponent<TransformComponent>(ghost).AttachToGridOrMap();
if (canReturn)
{
// TODO: Remove duplication between all this and "GamePreset.OnGhostAttempt()"...
if(!string.IsNullOrWhiteSpace(mind.CharacterName))
2021-12-05 18:09:01 +01:00
_entities.GetComponent<MetaDataComponent>(ghost).EntityName = mind.CharacterName;
else if (!string.IsNullOrWhiteSpace(mind.Session?.Name))
2021-12-05 18:09:01 +01:00
_entities.GetComponent<MetaDataComponent>(ghost).EntityName = mind.Session.Name;
2023-06-18 11:33:19 -07:00
mindSystem.Visit(mind, ghost);
2018-09-20 18:19:04 +02:00
}
else
{
2021-12-05 18:09:01 +01:00
_entities.GetComponent<MetaDataComponent>(ghost).EntityName = player.Name;
2023-06-18 11:33:19 -07:00
mindSystem.TransferTo(mind, ghost);
}
2021-12-05 18:09:01 +01:00
var comp = _entities.GetComponent<GhostComponent>(ghost);
2021-08-06 00:02:36 -07:00
EntitySystem.Get<SharedGhostSystem>().SetCanReturnToBody(comp, canReturn);
2018-09-20 18:19:04 +02:00
}
}
}