2021-06-09 22:19:39 +02:00
|
|
|
|
using Content.Server.GameTicking;
|
|
|
|
|
|
using Content.Server.Ghost.Components;
|
2020-04-05 02:29:04 +02:00
|
|
|
|
using Content.Server.Players;
|
2020-10-30 16:06:48 +01:00
|
|
|
|
using Content.Shared.Administration;
|
2021-08-06 00:02:36 -07:00
|
|
|
|
using Content.Shared.Ghost;
|
2021-02-11 01:13:03 -08:00
|
|
|
|
using Robust.Server.Player;
|
2021-02-01 16:49:43 -08:00
|
|
|
|
using Robust.Shared.Console;
|
2021-02-11 01:13:03 -08:00
|
|
|
|
using Robust.Shared.GameObjects;
|
2019-04-15 21:11:38 -06:00
|
|
|
|
using Robust.Shared.IoC;
|
2018-09-20 18:19:04 +02:00
|
|
|
|
|
2020-10-30 16:06:48 +01:00
|
|
|
|
namespace Content.Server.Administration.Commands
|
2018-09-20 18:19:04 +02:00
|
|
|
|
{
|
2020-10-30 16:06:48 +01:00
|
|
|
|
[AdminCommand(AdminFlags.Admin)]
|
2021-02-01 16:49:43 -08:00
|
|
|
|
public class AGhost : IConsoleCommand
|
2018-09-20 18:19:04 +02:00
|
|
|
|
{
|
|
|
|
|
|
public string Command => "aghost";
|
|
|
|
|
|
public string Description => "Makes you an admin ghost.";
|
|
|
|
|
|
public string Help => "aghost";
|
|
|
|
|
|
|
2021-02-01 16:49:43 -08:00
|
|
|
|
public void Execute(IConsoleShell shell, string argStr, string[] args)
|
2018-09-20 18:19:04 +02:00
|
|
|
|
{
|
2021-02-01 16:49:43 -08:00
|
|
|
|
var player = shell.Player as IPlayerSession;
|
2018-09-20 18:19:04 +02:00
|
|
|
|
if (player == null)
|
|
|
|
|
|
{
|
2021-02-01 16:49:43 -08:00
|
|
|
|
shell.WriteLine("Nah");
|
2018-09-20 18:19:04 +02:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-01-02 22:11:39 +01:00
|
|
|
|
var mind = player.ContentData()?.Mind;
|
|
|
|
|
|
|
2020-08-25 05:37:54 -06:00
|
|
|
|
if (mind == null)
|
|
|
|
|
|
{
|
2021-02-01 16:49:43 -08:00
|
|
|
|
shell.WriteLine("You can't ghost here!");
|
2020-08-25 05:37:54 -06:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-02-25 06:14:16 +05:00
|
|
|
|
if (mind.VisitingEntity != null && mind.VisitingEntity.HasComponent<GhostComponent>())
|
2018-09-20 18:19:04 +02:00
|
|
|
|
{
|
2021-09-20 10:15:01 +02:00
|
|
|
|
player.ContentData()!.Mind?.UnVisit();
|
2021-02-25 06:14:16 +05:00
|
|
|
|
return;
|
2018-09-20 18:19:04 +02:00
|
|
|
|
}
|
2021-01-02 22:11:39 +01:00
|
|
|
|
|
2021-02-25 06:14:16 +05:00
|
|
|
|
var canReturn = mind.CurrentEntity != null;
|
|
|
|
|
|
var ghost = IoCManager.Resolve<IEntityManager>()
|
|
|
|
|
|
.SpawnEntity("AdminObserver", player.AttachedEntity?.Transform.Coordinates
|
2021-06-20 10:09:24 +02:00
|
|
|
|
?? EntitySystem.Get<GameTicker>().GetObserverSpawnPoint());
|
2021-01-02 22:11:39 +01:00
|
|
|
|
|
2021-02-25 06:14:16 +05:00
|
|
|
|
if (canReturn)
|
|
|
|
|
|
{
|
2021-03-16 15:50:20 +01:00
|
|
|
|
ghost.Name = mind.CharacterName ?? string.Empty;
|
2021-02-25 06:14:16 +05:00
|
|
|
|
mind.Visit(ghost);
|
2018-09-20 18:19:04 +02:00
|
|
|
|
}
|
2021-02-25 06:14:16 +05:00
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
ghost.Name = player.Name;
|
|
|
|
|
|
mind.TransferTo(ghost);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-08-06 00:02:36 -07:00
|
|
|
|
var comp = ghost.GetComponent<GhostComponent>();
|
|
|
|
|
|
EntitySystem.Get<SharedGhostSystem>().SetCanReturnToBody(comp, canReturn);
|
2018-09-20 18:19:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|