remove Session from MindComponent (#34753)

* yummy

* fix tests
This commit is contained in:
Milon
2025-04-19 00:23:01 +02:00
committed by GitHub
parent ba6d8f5376
commit 3fc9bcbbbe
25 changed files with 149 additions and 134 deletions

View File

@@ -130,14 +130,14 @@ public sealed partial class MindTests
ActorComponent actor = default!; ActorComponent actor = default!;
Assert.Multiple(() => Assert.Multiple(() =>
{ {
Assert.That(player, Is.EqualTo(mind.Session), "Player session does not match mind session"); Assert.That(player.UserId, Is.EqualTo(mind.UserId), "Player UserId does not match mind UserId");
Assert.That(entMan.System<MindSystem>().GetMind(player.UserId), Is.EqualTo(mindId)); Assert.That(entMan.System<MindSystem>().GetMind(player.UserId), Is.EqualTo(mindId));
Assert.That(player.AttachedEntity, Is.EqualTo(mind.CurrentEntity), "Player is not attached to the mind's current entity."); Assert.That(player.AttachedEntity, Is.EqualTo(mind.CurrentEntity), "Player is not attached to the mind's current entity.");
Assert.That(entMan.EntityExists(mind.OwnedEntity), "The mind's current entity does not exist"); Assert.That(entMan.EntityExists(mind.OwnedEntity), "The mind's current entity does not exist");
Assert.That(mind.VisitingEntity == null || entMan.EntityExists(mind.VisitingEntity), "The minds visited entity does not exist."); Assert.That(mind.VisitingEntity == null || entMan.EntityExists(mind.VisitingEntity), "The minds visited entity does not exist.");
Assert.That(entMan.TryGetComponent(mind.CurrentEntity, out actor)); Assert.That(entMan.TryGetComponent(mind.CurrentEntity, out actor));
}); });
Assert.That(actor.PlayerSession, Is.EqualTo(mind.Session)); Assert.That(actor.PlayerSession.UserId, Is.EqualTo(mind.UserId));
return (mindId, mind); return (mindId, mind);
} }
@@ -161,7 +161,6 @@ public sealed partial class MindTests
{ {
Assert.That(player.Status, Is.EqualTo(SessionStatus.Disconnected)); Assert.That(player.Status, Is.EqualTo(SessionStatus.Disconnected));
Assert.That(mind.UserId, Is.Not.Null); Assert.That(mind.UserId, Is.Not.Null);
Assert.That(mind.Session, Is.Null);
}); });
} }

View File

@@ -67,7 +67,7 @@ public sealed partial class MindTests
Assert.Multiple(() => Assert.Multiple(() =>
{ {
Assert.That(entMan.Deleted(entity)); Assert.That(entMan.Deleted(entity));
Assert.That(mind.Comp.OwnedEntity, Is.Null); Assert.That(mind.Comp.OwnedEntity, Is.Not.EqualTo(entity));
}); });
// Reconnect // Reconnect

View File

@@ -8,6 +8,7 @@ using Content.Shared.Mind;
using Robust.Server.GameObjects; using Robust.Server.GameObjects;
using Robust.Server.Player; using Robust.Server.Player;
using Robust.Shared.Console; using Robust.Shared.Console;
using Robust.Shared.Player;
namespace Content.Server.Administration.Commands; namespace Content.Server.Administration.Commands;
@@ -15,7 +16,7 @@ namespace Content.Server.Administration.Commands;
public sealed class AGhostCommand : LocalizedCommands public sealed class AGhostCommand : LocalizedCommands
{ {
[Dependency] private readonly IEntityManager _entities = default!; [Dependency] private readonly IEntityManager _entities = default!;
[Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly ISharedPlayerManager _playerManager = default!;
public override string Command => "aghost"; public override string Command => "aghost";
public override string Help => "aghost"; public override string Help => "aghost";
@@ -104,8 +105,8 @@ public sealed class AGhostCommand : LocalizedCommands
// TODO: Remove duplication between all this and "GamePreset.OnGhostAttempt()"... // TODO: Remove duplication between all this and "GamePreset.OnGhostAttempt()"...
if (!string.IsNullOrWhiteSpace(mind.CharacterName)) if (!string.IsNullOrWhiteSpace(mind.CharacterName))
metaDataSystem.SetEntityName(ghost, mind.CharacterName); metaDataSystem.SetEntityName(ghost, mind.CharacterName);
else if (!string.IsNullOrWhiteSpace(mind.Session?.Name)) else if (!string.IsNullOrWhiteSpace(player.Name))
metaDataSystem.SetEntityName(ghost, mind.Session.Name); metaDataSystem.SetEntityName(ghost, player.Name);
mindSystem.Visit(mindId, ghost, mind); mindSystem.Visit(mindId, ghost, mind);
} }

View File

@@ -153,9 +153,7 @@ public sealed class AdminSystem : EntitySystem
private void OnRoleEvent(RoleEvent ev) private void OnRoleEvent(RoleEvent ev)
{ {
var session = _minds.GetSession(ev.Mind); if (!ev.RoleTypeUpdate || !_playerManager.TryGetSessionById(ev.Mind.UserId, out var session))
if (!ev.RoleTypeUpdate || session == null)
return; return;
UpdatePlayerList(session); UpdatePlayerList(session);

View File

@@ -15,6 +15,7 @@ using Content.Shared.Popups;
using Content.Shared.Whitelist; using Content.Shared.Whitelist;
using Robust.Shared.Audio.Systems; using Robust.Shared.Audio.Systems;
using Robust.Shared.Physics.Events; using Robust.Shared.Physics.Events;
using Robust.Shared.Player;
using Robust.Shared.Prototypes; using Robust.Shared.Prototypes;
namespace Content.Server.Anomaly.Effects; namespace Content.Server.Anomaly.Effects;
@@ -26,6 +27,7 @@ public sealed class InnerBodyAnomalySystem : SharedInnerBodyAnomalySystem
[Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly BodySystem _body = default!; [Dependency] private readonly BodySystem _body = default!;
[Dependency] private readonly IChatManager _chat = default!; [Dependency] private readonly IChatManager _chat = default!;
[Dependency] private readonly ISharedPlayerManager _player = default!;
[Dependency] private readonly EntityWhitelistSystem _whitelist = default!; [Dependency] private readonly EntityWhitelistSystem _whitelist = default!;
[Dependency] private readonly JitteringSystem _jitter = default!; [Dependency] private readonly JitteringSystem _jitter = default!;
[Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly MindSystem _mind = default!;
@@ -102,7 +104,7 @@ public sealed class InnerBodyAnomalySystem : SharedInnerBodyAnomalySystem
if (ent.Comp.StartMessage is not null && if (ent.Comp.StartMessage is not null &&
_mind.TryGetMind(ent, out _, out var mindComponent) && _mind.TryGetMind(ent, out _, out var mindComponent) &&
mindComponent.Session != null) _player.TryGetSessionById(mindComponent.UserId, out var session))
{ {
var message = Loc.GetString(ent.Comp.StartMessage); var message = Loc.GetString(ent.Comp.StartMessage);
var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", message)); var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", message));
@@ -111,7 +113,7 @@ public sealed class InnerBodyAnomalySystem : SharedInnerBodyAnomalySystem
wrappedMessage, wrappedMessage,
default, default,
false, false,
mindComponent.Session.Channel, session.Channel,
_messageColor); _messageColor);
_popup.PopupEntity(message, ent, ent, PopupType.MediumCaution); _popup.PopupEntity(message, ent, ent, PopupType.MediumCaution);
@@ -137,7 +139,8 @@ public sealed class InnerBodyAnomalySystem : SharedInnerBodyAnomalySystem
private void OnSeverityChanged(Entity<InnerBodyAnomalyComponent> ent, ref AnomalySeverityChangedEvent args) private void OnSeverityChanged(Entity<InnerBodyAnomalyComponent> ent, ref AnomalySeverityChangedEvent args)
{ {
if (!_mind.TryGetMind(ent, out _, out var mindComponent) || mindComponent.Session == null) if (!_mind.TryGetMind(ent, out _, out var mindComponent) ||
!_player.TryGetSessionById(mindComponent.UserId, out var session))
return; return;
var message = string.Empty; var message = string.Empty;
@@ -172,7 +175,7 @@ public sealed class InnerBodyAnomalySystem : SharedInnerBodyAnomalySystem
wrappedMessage, wrappedMessage,
default, default,
false, false,
mindComponent.Session.Channel, session.Channel,
_messageColor); _messageColor);
_popup.PopupEntity(message, ent, ent, PopupType.MediumCaution); _popup.PopupEntity(message, ent, ent, PopupType.MediumCaution);
@@ -214,7 +217,7 @@ public sealed class InnerBodyAnomalySystem : SharedInnerBodyAnomalySystem
if (ent.Comp.EndMessage is not null && if (ent.Comp.EndMessage is not null &&
_mind.TryGetMind(ent, out _, out var mindComponent) && _mind.TryGetMind(ent, out _, out var mindComponent) &&
mindComponent.Session != null) _player.TryGetSessionById(mindComponent.UserId, out var session))
{ {
var message = Loc.GetString(ent.Comp.EndMessage); var message = Loc.GetString(ent.Comp.EndMessage);
var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", message)); var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", message));
@@ -223,7 +226,7 @@ public sealed class InnerBodyAnomalySystem : SharedInnerBodyAnomalySystem
wrappedMessage, wrappedMessage,
default, default,
false, false,
mindComponent.Session.Channel, session.Channel,
_messageColor); _messageColor);

View File

@@ -264,10 +264,10 @@ public sealed partial class AntagSelectionSystem
if (!_mind.TryGetMind(entity, out _, out var mindComponent)) if (!_mind.TryGetMind(entity, out _, out var mindComponent))
return; return;
if (mindComponent.Session == null) if (!_playerManager.TryGetSessionById(mindComponent.UserId, out var session))
return; return;
SendBriefing(mindComponent.Session, briefing, briefingColor, briefingSound); SendBriefing(session, briefing, briefingColor, briefingSound);
} }
/// <summary> /// <summary>

View File

@@ -44,6 +44,7 @@ internal sealed partial class ChatManager : IChatManager
[Dependency] private readonly INetConfigurationManager _netConfigManager = default!; [Dependency] private readonly INetConfigurationManager _netConfigManager = default!;
[Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IEntityManager _entityManager = default!;
[Dependency] private readonly PlayerRateLimitManager _rateLimitManager = default!; [Dependency] private readonly PlayerRateLimitManager _rateLimitManager = default!;
[Dependency] private readonly ISharedPlayerManager _player = default!;
/// <summary> /// <summary>
/// The maximum length a player-sent message can be sent /// The maximum length a player-sent message can be sent
@@ -179,7 +180,12 @@ internal sealed partial class ChatManager : IChatManager
var adminSystem = _entityManager.System<AdminSystem>(); var adminSystem = _entityManager.System<AdminSystem>();
var antag = mind.UserId != null && (adminSystem.GetCachedPlayerInfo(mind.UserId.Value)?.Antag ?? false); var antag = mind.UserId != null && (adminSystem.GetCachedPlayerInfo(mind.UserId.Value)?.Antag ?? false);
SendAdminAlert($"{mind.Session?.Name}{(antag ? " (ANTAG)" : "")} {message}"); // We shouldn't be repeating this but I don't want to touch any more chat code than necessary
var playerName = mind.UserId is { } userId && _player.TryGetSessionById(userId, out var session)
? session.Name
: "Unknown";
SendAdminAlert($"{playerName}{(antag ? " (ANTAG)" : "")} {message}");
} }
public void SendHookOOC(string sender, string message) public void SendHookOOC(string sender, string message)

View File

@@ -165,7 +165,7 @@ namespace Content.Server.Cloning
if (!_mindSystem.TryGetMind(body.Value, out var mindId, out var mind)) if (!_mindSystem.TryGetMind(body.Value, out var mindId, out var mind))
return; return;
if (mind.UserId.HasValue == false || mind.Session == null) if (mind.UserId.HasValue == false || !_playerManager.ValidSessionId(mind.UserId.Value))
return; return;
if (_cloningPodSystem.TryCloning(cloningPodUid, body.Value, (mindId, mind), cloningPod, scannerComp.CloningFailChanceMultiplier)) if (_cloningPodSystem.TryCloning(cloningPodUid, body.Value, (mindId, mind), cloningPod, scannerComp.CloningFailChanceMultiplier))

View File

@@ -32,11 +32,8 @@ namespace Content.Server.GameTicking
{ {
if (args.NewStatus != SessionStatus.Disconnected) if (args.NewStatus != SessionStatus.Disconnected)
{ {
mind.Session = session;
_pvsOverride.AddSessionOverride(mindId.Value, session); _pvsOverride.AddSessionOverride(mindId.Value, session);
} }
DebugTools.Assert(mind.Session == session);
} }
DebugTools.Assert(session.GetMind() == mindId); DebugTools.Assert(session.GetMind() == mindId);
@@ -126,10 +123,9 @@ namespace Content.Server.GameTicking
case SessionStatus.Disconnected: case SessionStatus.Disconnected:
{ {
_chatManager.SendAdminAnnouncement(Loc.GetString("player-leave-message", ("name", args.Session.Name))); _chatManager.SendAdminAnnouncement(Loc.GetString("player-leave-message", ("name", args.Session.Name)));
if (mind != null) if (mindId != null)
{ {
_pvsOverride.ClearOverride(GetNetEntity(mindId!.Value)); _pvsOverride.RemoveSessionOverride(mindId.Value, session);
mind.Session = null;
} }
_userDb.ClientDisconnected(session); _userDb.ClientDisconnected(session);

View File

@@ -28,6 +28,7 @@ using Content.Shared.Zombies;
using Robust.Shared.Prototypes; using Robust.Shared.Prototypes;
using Robust.Shared.Timing; using Robust.Shared.Timing;
using Content.Shared.Cuffs.Components; using Content.Shared.Cuffs.Components;
using Robust.Shared.Player;
namespace Content.Server.GameTicking.Rules; namespace Content.Server.GameTicking.Rules;
@@ -36,19 +37,20 @@ namespace Content.Server.GameTicking.Rules;
/// </summary> /// </summary>
public sealed class RevolutionaryRuleSystem : GameRuleSystem<RevolutionaryRuleComponent> public sealed class RevolutionaryRuleSystem : GameRuleSystem<RevolutionaryRuleComponent>
{ {
[Dependency] private readonly IAdminLogManager _adminLogManager = default!;
[Dependency] private readonly AntagSelectionSystem _antag = default!; [Dependency] private readonly AntagSelectionSystem _antag = default!;
[Dependency] private readonly EmergencyShuttleSystem _emergencyShuttle = default!; [Dependency] private readonly EmergencyShuttleSystem _emergencyShuttle = default!;
[Dependency] private readonly EuiManager _euiMan = default!; [Dependency] private readonly EuiManager _euiMan = default!;
[Dependency] private readonly IAdminLogManager _adminLogManager = default!;
[Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly ISharedPlayerManager _player = default!;
[Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly MindSystem _mind = default!;
[Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly MobStateSystem _mobState = default!;
[Dependency] private readonly NpcFactionSystem _npcFaction = default!; [Dependency] private readonly NpcFactionSystem _npcFaction = default!;
[Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly PopupSystem _popup = default!;
[Dependency] private readonly RoleSystem _role = default!; [Dependency] private readonly RoleSystem _role = default!;
[Dependency] private readonly SharedStunSystem _stun = default!;
[Dependency] private readonly RoundEndSystem _roundEnd = default!; [Dependency] private readonly RoundEndSystem _roundEnd = default!;
[Dependency] private readonly SharedStunSystem _stun = default!;
[Dependency] private readonly StationSystem _stationSystem = default!; [Dependency] private readonly StationSystem _stationSystem = default!;
[Dependency] private readonly IGameTiming _timing = default!;
//Used in OnPostFlash, no reference to the rule component is available //Used in OnPostFlash, no reference to the rule component is available
public readonly ProtoId<NpcFactionPrototype> RevolutionaryNpcFaction = "Revolutionary"; public readonly ProtoId<NpcFactionPrototype> RevolutionaryNpcFaction = "Revolutionary";
@@ -165,8 +167,8 @@ public sealed class RevolutionaryRuleSystem : GameRuleSystem<RevolutionaryRuleCo
_role.MindAddRole(mindId, "MindRoleRevolutionary"); _role.MindAddRole(mindId, "MindRoleRevolutionary");
} }
if (mind?.Session != null) if (mind is { UserId: not null } && _player.TryGetSessionById(mind.UserId, out var session))
_antag.SendBriefing(mind.Session, Loc.GetString("rev-role-greeting"), Color.Red, revComp.RevStartSound); _antag.SendBriefing(session, Loc.GetString("rev-role-greeting"), Color.Red, revComp.RevStartSound);
} }
//TODO: Enemies of the revolution //TODO: Enemies of the revolution
@@ -228,7 +230,7 @@ public sealed class RevolutionaryRuleSystem : GameRuleSystem<RevolutionaryRuleCo
_popup.PopupEntity(Loc.GetString("rev-break-control", ("name", Identity.Entity(uid, EntityManager))), uid); _popup.PopupEntity(Loc.GetString("rev-break-control", ("name", Identity.Entity(uid, EntityManager))), uid);
_adminLogManager.Add(LogType.Mind, LogImpact.Medium, $"{ToPrettyString(uid)} was deconverted due to all Head Revolutionaries dying."); _adminLogManager.Add(LogType.Mind, LogImpact.Medium, $"{ToPrettyString(uid)} was deconverted due to all Head Revolutionaries dying.");
if (!_mind.TryGetMind(uid, out var mindId, out _, mc)) if (!_mind.TryGetMind(uid, out var mindId, out var mind, mc))
continue; continue;
// remove their antag role // remove their antag role
@@ -236,7 +238,7 @@ public sealed class RevolutionaryRuleSystem : GameRuleSystem<RevolutionaryRuleCo
// make it very obvious to the rev they've been deconverted since // make it very obvious to the rev they've been deconverted since
// they may not see the popup due to antag and/or new player tunnel vision // they may not see the popup due to antag and/or new player tunnel vision
if (_mind.TryGetSession(mindId, out var session)) if (_player.TryGetSessionById(mind.UserId, out var session))
_euiMan.OpenEui(new DeconvertedEui(), session); _euiMan.OpenEui(new DeconvertedEui(), session);
} }
return true; return true;

View File

@@ -25,13 +25,14 @@ public sealed class ZombieRuleSystem : GameRuleSystem<ZombieRuleComponent>
{ {
[Dependency] private readonly AntagSelectionSystem _antag = default!; [Dependency] private readonly AntagSelectionSystem _antag = default!;
[Dependency] private readonly ChatSystem _chat = default!; [Dependency] private readonly ChatSystem _chat = default!;
[Dependency] private readonly SharedMindSystem _mindSystem = default!; [Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly ISharedPlayerManager _player = default!;
[Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly MobStateSystem _mobState = default!;
[Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly PopupSystem _popup = default!;
[Dependency] private readonly SharedRoleSystem _roles = default!;
[Dependency] private readonly RoundEndSystem _roundEnd = default!; [Dependency] private readonly RoundEndSystem _roundEnd = default!;
[Dependency] private readonly SharedMindSystem _mindSystem = default!;
[Dependency] private readonly SharedRoleSystem _roles = default!;
[Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly StationSystem _station = default!;
[Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly ZombieSystem _zombie = default!; [Dependency] private readonly ZombieSystem _zombie = default!;
public override void Initialize() public override void Initialize()
@@ -95,9 +96,10 @@ public sealed class ZombieRuleSystem : GameRuleSystem<ZombieRuleComponent>
{ {
var meta = MetaData(survivor); var meta = MetaData(survivor);
var username = string.Empty; var username = string.Empty;
if (_mindSystem.TryGetMind(survivor, out _, out var mind) && mind.Session != null) if (_mindSystem.TryGetMind(survivor, out _, out var mind) &&
_player.TryGetSessionById(mind.UserId, out var session))
{ {
username = mind.Session.Name; username = session.Name;
} }
args.AddLine(Loc.GetString("zombie-round-end-user-was-survivor", args.AddLine(Loc.GetString("zombie-round-end-user-was-survivor",

View File

@@ -53,7 +53,7 @@ namespace Content.Server.Ghost
[Dependency] private readonly MindSystem _minds = default!; [Dependency] private readonly MindSystem _minds = default!;
[Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly MobStateSystem _mobState = default!;
[Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!;
[Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly ISharedPlayerManager _player = default!;
[Dependency] private readonly TransformSystem _transformSystem = default!; [Dependency] private readonly TransformSystem _transformSystem = default!;
[Dependency] private readonly VisibilitySystem _visibilitySystem = default!; [Dependency] private readonly VisibilitySystem _visibilitySystem = default!;
[Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly MetaDataSystem _metaData = default!;
@@ -364,7 +364,7 @@ namespace Content.Server.Ghost
private IEnumerable<GhostWarp> GetPlayerWarps(EntityUid except) private IEnumerable<GhostWarp> GetPlayerWarps(EntityUid except)
{ {
foreach (var player in _playerManager.Sessions) foreach (var player in _player.Sessions)
{ {
if (player.AttachedEntity is not {Valid: true} attached) if (player.AttachedEntity is not {Valid: true} attached)
continue; continue;
@@ -484,8 +484,8 @@ namespace Content.Server.Ghost
// However, that should rarely happen. // However, that should rarely happen.
if (!string.IsNullOrWhiteSpace(mind.Comp.CharacterName)) if (!string.IsNullOrWhiteSpace(mind.Comp.CharacterName))
_metaData.SetEntityName(ghost, mind.Comp.CharacterName); _metaData.SetEntityName(ghost, mind.Comp.CharacterName);
else if (!string.IsNullOrWhiteSpace(mind.Comp.Session?.Name)) else if (mind.Comp.UserId is { } userId && _player.TryGetSessionById(userId, out var session))
_metaData.SetEntityName(ghost, mind.Comp.Session.Name); _metaData.SetEntityName(ghost, session.Name);
if (mind.Comp.TimeOfDeath.HasValue) if (mind.Comp.TimeOfDeath.HasValue)
{ {
@@ -530,9 +530,9 @@ namespace Content.Server.Ghost
if (mind.PreventGhosting && !forced) if (mind.PreventGhosting && !forced)
{ {
if (mind.Session != null) // Logging is suppressed to prevent spam from ghost attempts caused by movement attempts if (_player.TryGetSessionById(mind.UserId, out var session)) // Logging is suppressed to prevent spam from ghost attempts caused by movement attempts
{ {
_chatManager.DispatchServerMessage(mind.Session, Loc.GetString("comp-mind-ghosting-prevented"), _chatManager.DispatchServerMessage(session, Loc.GetString("comp-mind-ghosting-prevented"),
true); true);
} }

View File

@@ -2,19 +2,22 @@ using Content.Server.EUI;
using Content.Shared.Eui; using Content.Shared.Eui;
using Content.Shared.Ghost; using Content.Shared.Ghost;
using Content.Shared.Mind; using Content.Shared.Mind;
using Robust.Shared.Network;
using Robust.Shared.Player;
namespace Content.Server.Ghost; namespace Content.Server.Ghost;
public sealed class ReturnToBodyEui : BaseEui public sealed class ReturnToBodyEui : BaseEui
{ {
private readonly SharedMindSystem _mindSystem; private readonly SharedMindSystem _mindSystem;
private readonly ISharedPlayerManager _player;
private readonly NetUserId? _userId;
private readonly MindComponent _mind; public ReturnToBodyEui(MindComponent mind, SharedMindSystem mindSystem, ISharedPlayerManager player)
public ReturnToBodyEui(MindComponent mind, SharedMindSystem mindSystem)
{ {
_mind = mind;
_mindSystem = mindSystem; _mindSystem = mindSystem;
_player = player;
_userId = mind.UserId;
} }
public override void HandleMessage(EuiMessageBase msg) public override void HandleMessage(EuiMessageBase msg)
@@ -28,7 +31,8 @@ public sealed class ReturnToBodyEui : BaseEui
return; return;
} }
_mindSystem.UnVisit(_mind.Session); if (_userId is { } userId && _player.TryGetSessionById(userId, out var session))
_mindSystem.UnVisit(session);
Close(); Close();
} }

View File

@@ -36,12 +36,13 @@ public sealed class DefibrillatorSystem : EntitySystem
[Dependency] private readonly DoAfterSystem _doAfter = default!; [Dependency] private readonly DoAfterSystem _doAfter = default!;
[Dependency] private readonly ElectrocutionSystem _electrocution = default!; [Dependency] private readonly ElectrocutionSystem _electrocution = default!;
[Dependency] private readonly EuiManager _euiManager = default!; [Dependency] private readonly EuiManager _euiManager = default!;
[Dependency] private readonly ISharedPlayerManager _player = default!;
[Dependency] private readonly ItemToggleSystem _toggle = default!; [Dependency] private readonly ItemToggleSystem _toggle = default!;
[Dependency] private readonly RottingSystem _rotting = default!;
[Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly MobStateSystem _mobState = default!;
[Dependency] private readonly MobThresholdSystem _mobThreshold = default!; [Dependency] private readonly MobThresholdSystem _mobThreshold = default!;
[Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly PopupSystem _popup = default!;
[Dependency] private readonly PowerCellSystem _powerCell = default!; [Dependency] private readonly PowerCellSystem _powerCell = default!;
[Dependency] private readonly RottingSystem _rotting = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly SharedMindSystem _mind = default!; [Dependency] private readonly SharedMindSystem _mind = default!;
[Dependency] private readonly UseDelaySystem _useDelay = default!; [Dependency] private readonly UseDelaySystem _useDelay = default!;
@@ -212,13 +213,13 @@ public sealed class DefibrillatorSystem : EntitySystem
} }
if (_mind.TryGetMind(target, out _, out var mind) && if (_mind.TryGetMind(target, out _, out var mind) &&
mind.Session is { } playerSession) _player.TryGetSessionById(mind.UserId, out var playerSession))
{ {
session = playerSession; session = playerSession;
// notify them they're being revived. // notify them they're being revived.
if (mind.CurrentEntity != target) if (mind.CurrentEntity != target)
{ {
_euiManager.OpenEui(new ReturnToBodyEui(mind, _mind), session); _euiManager.OpenEui(new ReturnToBodyEui(mind, _mind, _player), session);
} }
} }
else else

View File

@@ -69,7 +69,7 @@ public sealed class MindSystem : SharedMindSystem
TransferTo(mindId, null, createGhost: false, mind: mind); TransferTo(mindId, null, createGhost: false, mind: mind);
DebugTools.AssertNull(mind.OwnedEntity); DebugTools.AssertNull(mind.OwnedEntity);
if (!component.GhostOnShutdown || mind.Session == null || _gameTicker.RunLevel == GameRunLevel.PreRoundLobby) if (!component.GhostOnShutdown || _gameTicker.RunLevel == GameRunLevel.PreRoundLobby)
return; return;
var ghost = _ghosts.SpawnGhost((mindId, mind), uid); var ghost = _ghosts.SpawnGhost((mindId, mind), uid);
@@ -93,16 +93,6 @@ public sealed class MindSystem : SharedMindSystem
return false; return false;
} }
public ICommonSession? GetSession(MindComponent mind)
{
return mind.Session;
}
public bool TryGetSession(MindComponent mind, [NotNullWhen(true)] out ICommonSession? session)
{
return (session = GetSession(mind)) != null;
}
public override void WipeAllMinds() public override void WipeAllMinds()
{ {
base.WipeAllMinds(); base.WipeAllMinds();
@@ -144,10 +134,10 @@ public sealed class MindSystem : SharedMindSystem
// Do this AFTER the entity changes above as this will fire off a player-detached event // Do this AFTER the entity changes above as this will fire off a player-detached event
// which will run ghosting twice. // which will run ghosting twice.
if (GetSession(mind) is { } session) if (_players.TryGetSessionById(mind.UserId, out var session))
_players.SetAttachedEntity(session, entity); _players.SetAttachedEntity(session, entity);
Log.Info($"Session {mind.Session?.Name} visiting entity {entity}."); Log.Info($"Session {session?.Name} visiting entity {entity}.");
} }
public override void UnVisit(EntityUid mindId, MindComponent? mind = null) public override void UnVisit(EntityUid mindId, MindComponent? mind = null)
@@ -162,17 +152,19 @@ public sealed class MindSystem : SharedMindSystem
RemoveVisitingEntity(mindId, mind); RemoveVisitingEntity(mindId, mind);
if (mind.Session == null || mind.Session.AttachedEntity == mind.VisitingEntity) if (mind.UserId == null || !_players.TryGetSessionById(mind.UserId.Value, out var session))
return;
if (session.AttachedEntity == mind.VisitingEntity)
return; return;
var owned = mind.OwnedEntity; var owned = mind.OwnedEntity;
if (GetSession(mind) is { } session)
_players.SetAttachedEntity(session, owned); _players.SetAttachedEntity(session, owned);
if (owned.HasValue) if (owned.HasValue)
{ {
_adminLogger.Add(LogType.Mind, LogImpact.Low, _adminLogger.Add(LogType.Mind, LogImpact.Low,
$"{mind.Session.Name} returned to {ToPrettyString(owned.Value)}"); $"{session.Name} returned to {ToPrettyString(owned.Value)}");
} }
} }
@@ -199,7 +191,8 @@ public sealed class MindSystem : SharedMindSystem
if (TryComp<ActorComponent>(entity.Value, out var actor)) if (TryComp<ActorComponent>(entity.Value, out var actor))
{ {
// Happens when transferring to your currently visited entity. // Happens when transferring to your currently visited entity.
if (actor.PlayerSession != mind.Session) if (!_players.TryGetSessionByEntity(entity.Value, out var session) ||
mind.UserId == null || actor.PlayerSession != session )
{ {
throw new ArgumentException("Visit target already has a session.", nameof(entity)); throw new ArgumentException("Visit target already has a session.", nameof(entity));
} }
@@ -253,12 +246,12 @@ public sealed class MindSystem : SharedMindSystem
} }
// Player is CURRENTLY connected. // Player is CURRENTLY connected.
var session = GetSession(mind); if (mind.UserId != null && _players.TryGetSessionById(mind.UserId.Value, out var userSession)
if (session != null && !alreadyAttached && mind.VisitingEntity == null) && !alreadyAttached && mind.VisitingEntity == null)
{ {
_players.SetAttachedEntity(session, entity, true); _players.SetAttachedEntity(userSession, entity, true);
DebugTools.Assert(session.AttachedEntity == entity, $"Failed to attach entity."); DebugTools.Assert(userSession.AttachedEntity == entity, "Failed to attach entity.");
Log.Info($"Session {session.Name} transferred to entity {entity}."); Log.Info($"Session {userSession.Name} transferred to entity {entity}.");
} }
if (entity != null) if (entity != null)
@@ -288,18 +281,18 @@ public sealed class MindSystem : SharedMindSystem
return; return;
Dirty(mindId, mind); Dirty(mindId, mind);
var netMind = GetNetEntity(mindId);
_pvsOverride.ClearOverride(netMind);
if (userId != null && !_players.TryGetPlayerData(userId.Value, out _)) if (userId != null && !_players.TryGetPlayerData(userId.Value, out _))
{ {
Log.Error($"Attempted to set mind user to invalid value {userId}"); Log.Error($"Attempted to set mind user to invalid value {userId}");
return; return;
} }
if (mind.Session != null) // Clear any existing entity attachment
if (_players.TryGetSessionById(mind.UserId, out var oldSession))
{ {
_players.SetAttachedEntity(GetSession(mind), null); _players.SetAttachedEntity(oldSession, null);
mind.Session = null; _pvsOverride.RemoveSessionOverride(mindId, oldSession);
} }
if (mind.UserId != null) if (mind.UserId != null)
@@ -311,10 +304,7 @@ public sealed class MindSystem : SharedMindSystem
} }
if (userId == null) if (userId == null)
{
DebugTools.AssertNull(mind.Session);
return; return;
}
if (UserMinds.TryGetValue(userId.Value, out var oldMindId) && if (UserMinds.TryGetValue(userId.Value, out var oldMindId) &&
TryComp(oldMindId, out MindComponent? oldMind)) TryComp(oldMindId, out MindComponent? oldMind))
@@ -333,11 +323,10 @@ public sealed class MindSystem : SharedMindSystem
if (_players.GetPlayerData(userId.Value).ContentData() is { } data) if (_players.GetPlayerData(userId.Value).ContentData() is { } data)
data.Mind = mindId; data.Mind = mindId;
if (_players.TryGetSessionById(userId.Value, out var ret)) if (_players.TryGetSessionById(userId.Value, out var session))
{ {
mind.Session = ret; _pvsOverride.AddSessionOverride(mindId, session);
_pvsOverride.AddSessionOverride(mindId, ret); _players.SetAttachedEntity(session, mind.CurrentEntity);
_players.SetAttachedEntity(ret, mind.CurrentEntity);
} }
} }

View File

@@ -123,7 +123,7 @@ public sealed class PlayTimeTrackingSystem : EntitySystem
private void OnRoleEvent(RoleEvent ev) private void OnRoleEvent(RoleEvent ev)
{ {
if (_minds.TryGetSession(ev.Mind, out var session)) if (_playerManager.TryGetSessionById(ev.Mind.UserId, out var session))
_tracking.QueueRefreshTrackers(session); _tracking.QueueRefreshTrackers(session);
} }

View File

@@ -4,6 +4,7 @@ using Content.Server.Mind;
using Content.Shared.Mind; using Content.Shared.Mind;
using Content.Shared.Roles; using Content.Shared.Roles;
using Content.Shared.Roles.Jobs; using Content.Shared.Roles.Jobs;
using Robust.Shared.Player;
namespace Content.Server.Roles.Jobs; namespace Content.Server.Roles.Jobs;
@@ -14,6 +15,7 @@ public sealed class JobSystem : SharedJobSystem
{ {
[Dependency] private readonly IChatManager _chat = default!; [Dependency] private readonly IChatManager _chat = default!;
[Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly MindSystem _mind = default!;
[Dependency] private readonly ISharedPlayerManager _player = default!;
[Dependency] private readonly RoleSystem _roles = default!; [Dependency] private readonly RoleSystem _roles = default!;
public override void Initialize() public override void Initialize()
@@ -42,7 +44,7 @@ public sealed class JobSystem : SharedJobSystem
if (args.Silent) if (args.Silent)
return; return;
if (!_mind.TryGetSession(mindId, out var session)) if (!_player.TryGetSessionById(component.UserId, out var session))
return; return;
if (!MindTryGetJob(mindId, out var prototype)) if (!MindTryGetJob(mindId, out var prototype))

View File

@@ -46,7 +46,7 @@ public sealed class RoleSystem : SharedRoleSystem
public void RoleUpdateMessage(MindComponent mind) public void RoleUpdateMessage(MindComponent mind)
{ {
if (mind.Session is null) if (!Player.TryGetSessionById(mind.UserId, out var session))
return; return;
if (!_proto.TryIndex(mind.RoleType, out var proto)) if (!_proto.TryIndex(mind.RoleType, out var proto))
@@ -55,8 +55,6 @@ public sealed class RoleSystem : SharedRoleSystem
var roleText = Loc.GetString(proto.Name); var roleText = Loc.GetString(proto.Name);
var color = proto.Color; var color = proto.Color;
var session = mind.Session;
//TODO add audio? Would need to be optional so it does not play on role changes that already come with their own audio //TODO add audio? Would need to be optional so it does not play on role changes that already come with their own audio
// _audio.PlayGlobal(Sound, session); // _audio.PlayGlobal(Sound, session);

View File

@@ -54,7 +54,7 @@ public sealed partial class BorgSystem : SharedBorgSystem
[Dependency] private readonly UserInterfaceSystem _ui = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!;
[Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly SharedContainerSystem _container = default!;
[Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!;
[Dependency] private readonly ISharedPlayerManager _player = default!;
[ValidatePrototypeId<JobPrototype>] [ValidatePrototypeId<JobPrototype>]
public const string BorgJobId = "Borg"; public const string BorgJobId = "Borg";
@@ -110,9 +110,10 @@ public sealed partial class BorgSystem : SharedBorgSystem
if (component.BrainEntity == null && brain != null && if (component.BrainEntity == null && brain != null &&
_whitelistSystem.IsWhitelistPassOrNull(component.BrainWhitelist, used)) _whitelistSystem.IsWhitelistPassOrNull(component.BrainWhitelist, used))
{ {
if (_mind.TryGetMind(used, out _, out var mind) && mind.Session != null) if (_mind.TryGetMind(used, out _, out var mind) &&
_player.TryGetSessionById(mind.UserId, out var session))
{ {
if (!CanPlayerBeBorged(mind.Session)) if (!CanPlayerBeBorged(session))
{ {
Popup.PopupEntity(Loc.GetString("borg-player-not-allowed"), used, args.User); Popup.PopupEntity(Loc.GetString("borg-player-not-allowed"), used, args.User);
return; return;
@@ -245,10 +246,11 @@ public sealed partial class BorgSystem : SharedBorgSystem
container.ID != chassisComponent.BrainContainerId) container.ID != chassisComponent.BrainContainerId)
return; return;
if (!_mind.TryGetMind(uid, out var mindId, out var mind) || mind.Session == null) if (!_mind.TryGetMind(uid, out var mindId, out var mind) ||
!_player.TryGetSessionById(mind.UserId, out var session))
return; return;
if (!CanPlayerBeBorged(mind.Session)) if (!CanPlayerBeBorged(session))
{ {
Popup.PopupEntity(Loc.GetString("borg-player-not-allowed-eject"), uid); Popup.PopupEntity(Loc.GetString("borg-player-not-allowed-eject"), uid);
Container.RemoveEntity(containerEnt, uid); Container.RemoveEntity(containerEnt, uid);

View File

@@ -1,6 +1,7 @@
using Content.Server.Antag; using Content.Server.Antag;
using Content.Server.Traitor.Components; using Content.Server.Traitor.Components;
using Content.Shared.Mind.Components; using Content.Shared.Mind.Components;
using Robust.Shared.Player;
using Robust.Shared.Prototypes; using Robust.Shared.Prototypes;
namespace Content.Server.Traitor.Systems; namespace Content.Server.Traitor.Systems;
@@ -11,6 +12,7 @@ namespace Content.Server.Traitor.Systems;
public sealed class AutoTraitorSystem : EntitySystem public sealed class AutoTraitorSystem : EntitySystem
{ {
[Dependency] private readonly AntagSelectionSystem _antag = default!; [Dependency] private readonly AntagSelectionSystem _antag = default!;
[Dependency] private readonly ISharedPlayerManager _player = default!;
public override void Initialize() public override void Initialize()
{ {
@@ -21,6 +23,9 @@ public sealed class AutoTraitorSystem : EntitySystem
private void OnMindAdded(EntityUid uid, AutoTraitorComponent comp, MindAddedMessage args) private void OnMindAdded(EntityUid uid, AutoTraitorComponent comp, MindAddedMessage args)
{ {
_antag.ForceMakeAntag<AutoTraitorComponent>(args.Mind.Comp.Session, comp.Profile); if (!_player.TryGetSessionById(args.Mind.Comp.UserId, out var session))
return;
_antag.ForceMakeAntag<AutoTraitorComponent>(session, comp.Profile);
} }
} }

View File

@@ -35,7 +35,9 @@ using Content.Shared.Prying.Components;
using Content.Shared.Traits.Assorted; using Content.Shared.Traits.Assorted;
using Robust.Shared.Audio.Systems; using Robust.Shared.Audio.Systems;
using Content.Shared.Ghost.Roles.Components; using Content.Shared.Ghost.Roles.Components;
using Content.Shared.Roles;
using Content.Shared.Tag; using Content.Shared.Tag;
using Robust.Shared.Player;
using Robust.Shared.Prototypes; using Robust.Shared.Prototypes;
namespace Content.Server.Zombies; namespace Content.Server.Zombies;
@@ -61,6 +63,8 @@ public sealed partial class ZombieSystem
[Dependency] private readonly NPCSystem _npc = default!; [Dependency] private readonly NPCSystem _npc = default!;
[Dependency] private readonly TagSystem _tag = default!; [Dependency] private readonly TagSystem _tag = default!;
[Dependency] private readonly NameModifierSystem _nameMod = default!; [Dependency] private readonly NameModifierSystem _nameMod = default!;
[Dependency] private readonly SharedRoleSystem _roles = default!;
[Dependency] private readonly ISharedPlayerManager _player = default!;
private static readonly ProtoId<TagPrototype> InvalidForGlobalSpawnSpellTag = "InvalidForGlobalSpawnSpell"; private static readonly ProtoId<TagPrototype> InvalidForGlobalSpawnSpellTag = "InvalidForGlobalSpawnSpell";
private static readonly ProtoId<TagPrototype> CannotSuicideTag = "CannotSuicide"; private static readonly ProtoId<TagPrototype> CannotSuicideTag = "CannotSuicide";
@@ -234,8 +238,8 @@ public sealed partial class ZombieSystem
_npc.SleepNPC(target, htn); _npc.SleepNPC(target, htn);
//He's gotta have a mind //He's gotta have a mind
var hasMind = _mind.TryGetMind(target, out var mindId, out _); var hasMind = _mind.TryGetMind(target, out var mindId, out var mind);
if (hasMind && _mind.TryGetSession(mindId, out var session)) if (hasMind && mind != null && _player.TryGetSessionById(mind.UserId, out var session))
{ {
//Zombie role for player manifest //Zombie role for player manifest
_role.MindAddRole(mindId, "MindRoleZombie", mind: null, silent: true); _role.MindAddRole(mindId, "MindRoleZombie", mind: null, silent: true);

View File

@@ -8,6 +8,7 @@ using Content.Shared.Mobs.Systems;
using Robust.Shared.Configuration; using Robust.Shared.Configuration;
using Robust.Shared.Containers; using Robust.Shared.Containers;
using Robust.Shared.Map; using Robust.Shared.Map;
using Robust.Shared.Player;
using Robust.Shared.Timing; using Robust.Shared.Timing;
namespace Content.Shared.Bed.Cryostorage; namespace Content.Shared.Bed.Cryostorage;
@@ -17,13 +18,14 @@ namespace Content.Shared.Bed.Cryostorage;
/// </summary> /// </summary>
public abstract class SharedCryostorageSystem : EntitySystem public abstract class SharedCryostorageSystem : EntitySystem
{ {
[Dependency] protected readonly ISharedAdminLogManager AdminLog = default!;
[Dependency] private readonly IConfigurationManager _configuration = default!; [Dependency] private readonly IConfigurationManager _configuration = default!;
[Dependency] protected readonly IGameTiming Timing = default!;
[Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IMapManager _mapManager = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly ISharedPlayerManager _player = default!;
[Dependency] protected readonly SharedMindSystem Mind = default!;
[Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly MobStateSystem _mobState = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] protected readonly IGameTiming Timing = default!;
[Dependency] protected readonly ISharedAdminLogManager AdminLog = default!;
[Dependency] protected readonly SharedMindSystem Mind = default!;
protected EntityUid? PausedMap { get; private set; } protected EntityUid? PausedMap { get; private set; }
@@ -123,7 +125,8 @@ public abstract class SharedCryostorageSystem : EntitySystem
if (args.Dragged == args.User) if (args.Dragged == args.User)
return; return;
if (!Mind.TryGetMind(args.Dragged, out _, out var mindComp) || mindComp.Session?.AttachedEntity != args.Dragged) if (!_player.TryGetSessionByEntity(args.Dragged, out var session) ||
session.AttachedEntity != args.Dragged)
return; return;
args.CanDrop = false; args.CanDrop = false;

View File

@@ -113,12 +113,4 @@ public sealed partial class MindComponent : Component
/// </summary> /// </summary>
[DataField] [DataField]
public LocId? Subtype; public LocId? Subtype;
/// <summary>
/// The session of the player owning this mind.
/// Can be null, in which case the player is currently not logged in.
/// </summary>
[ViewVariables, Access(typeof(SharedMindSystem), typeof(SharedGameTicker))]
// TODO remove this after moving IPlayerManager functions to shared
public ICommonSession? Session { get; set; }
} }

View File

@@ -26,6 +26,7 @@ public abstract partial class SharedMindSystem : EntitySystem
[Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly MobStateSystem _mobState = default!;
[Dependency] private readonly SharedObjectivesSystem _objectives = default!; [Dependency] private readonly SharedObjectivesSystem _objectives = default!;
[Dependency] private readonly SharedPlayerSystem _player = default!; [Dependency] private readonly SharedPlayerSystem _player = default!;
[Dependency] private readonly ISharedPlayerManager _playerManager = default!;
[Dependency] private readonly MetaDataSystem _metadata = default!; [Dependency] private readonly MetaDataSystem _metadata = default!;
[Dependency] private readonly EntityWhitelistSystem _whitelist = default!; [Dependency] private readonly EntityWhitelistSystem _whitelist = default!;
@@ -153,23 +154,31 @@ public abstract partial class SharedMindSystem : EntitySystem
if (!mindContainer.ShowExamineInfo || !args.IsInDetailsRange) if (!mindContainer.ShowExamineInfo || !args.IsInDetailsRange)
return; return;
// TODO predict we can't right now because session stuff isnt networked // TODO: Move this out of the SharedMindSystem into its own comp and predict it
if (_net.IsClient) if (_net.IsClient)
return; return;
var dead = _mobState.IsDead(uid); var dead = _mobState.IsDead(uid);
var hasUserId = CompOrNull<MindComponent>(mindContainer.Mind)?.UserId; var mind = CompOrNull<MindComponent>(mindContainer.Mind);
var hasSession = CompOrNull<MindComponent>(mindContainer.Mind)?.Session; var hasUserId = mind?.UserId;
var hasActiveSession = hasUserId != null && _playerManager.ValidSessionId(hasUserId.Value);
// Scenarios:
// 1. Dead + No User ID: Entity is permanently dead with no player ever attached
// 2. Dead + Has User ID + No Session: Player died and disconnected
// 3. Dead + Has Session: Player is dead but still connected
// 4. Alive + No User ID: Entity was never controlled by a player
// 5. Alive + No Session: Player disconnected while alive (SSD)
if (dead && hasUserId == null) if (dead && hasUserId == null)
args.PushMarkup($"[color=mediumpurple]{Loc.GetString("comp-mind-examined-dead-and-irrecoverable", ("ent", uid))}[/color]"); args.PushMarkup($"[color=mediumpurple]{Loc.GetString("comp-mind-examined-dead-and-irrecoverable", ("ent", uid))}[/color]");
else if (dead && hasSession == null) else if (dead && !hasActiveSession)
args.PushMarkup($"[color=yellow]{Loc.GetString("comp-mind-examined-dead-and-ssd", ("ent", uid))}[/color]"); args.PushMarkup($"[color=yellow]{Loc.GetString("comp-mind-examined-dead-and-ssd", ("ent", uid))}[/color]");
else if (dead) else if (dead)
args.PushMarkup($"[color=red]{Loc.GetString("comp-mind-examined-dead", ("ent", uid))}[/color]"); args.PushMarkup($"[color=red]{Loc.GetString("comp-mind-examined-dead", ("ent", uid))}[/color]");
else if (hasUserId == null) else if (hasUserId == null)
args.PushMarkup($"[color=mediumpurple]{Loc.GetString("comp-mind-examined-catatonic", ("ent", uid))}[/color]"); args.PushMarkup($"[color=mediumpurple]{Loc.GetString("comp-mind-examined-catatonic", ("ent", uid))}[/color]");
else if (hasSession == null) else if (!hasActiveSession)
args.PushMarkup($"[color=yellow]{Loc.GetString("comp-mind-examined-ssd", ("ent", uid))}[/color]"); args.PushMarkup($"[color=yellow]{Loc.GetString("comp-mind-examined-ssd", ("ent", uid))}[/color]");
} }
@@ -460,12 +469,6 @@ public abstract partial class SharedMindSystem : EntitySystem
return false; return false;
} }
public bool TryGetSession(EntityUid? mindId, [NotNullWhen(true)] out ICommonSession? session)
{
session = null;
return TryComp(mindId, out MindComponent? mind) && (session = mind.Session) != null;
}
/// <summary> /// <summary>
/// Gets a mind from uid and/or MindContainerComponent. Used for null checks. /// Gets a mind from uid and/or MindContainerComponent. Used for null checks.
/// </summary> /// </summary>

View File

@@ -10,6 +10,7 @@ using Robust.Shared.Audio;
using Robust.Shared.Audio.Systems; using Robust.Shared.Audio.Systems;
using Robust.Shared.Configuration; using Robust.Shared.Configuration;
using Robust.Shared.Map; using Robust.Shared.Map;
using Robust.Shared.Player;
using Robust.Shared.Prototypes; using Robust.Shared.Prototypes;
using Robust.Shared.Serialization; using Robust.Shared.Serialization;
using Robust.Shared.Utility; using Robust.Shared.Utility;
@@ -18,12 +19,13 @@ namespace Content.Shared.Roles;
public abstract class SharedRoleSystem : EntitySystem public abstract class SharedRoleSystem : EntitySystem
{ {
[Dependency] private readonly ISharedAdminLogManager _adminLogger = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IConfigurationManager _cfg = default!;
[Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IEntityManager _entityManager = default!;
[Dependency] private readonly SharedMindSystem _minds = default!;
[Dependency] private readonly IPrototypeManager _prototypes = default!; [Dependency] private readonly IPrototypeManager _prototypes = default!;
[Dependency] private readonly ISharedAdminLogManager _adminLogger = default!;
[Dependency] protected readonly ISharedPlayerManager Player = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly SharedMindSystem _minds = default!;
private JobRequirementOverridePrototype? _requirementOverride; private JobRequirementOverridePrototype? _requirementOverride;
@@ -256,7 +258,7 @@ public abstract class SharedRoleSystem : EntitySystem
Dirty(mind, comp); Dirty(mind, comp);
// Update player character window // Update player character window
if (_minds.TryGetSession(mind, out var session)) if (Player.TryGetSessionById(comp.UserId, out var session))
RaiseNetworkEvent(new MindRoleTypeChangedEvent(), session.Channel); RaiseNetworkEvent(new MindRoleTypeChangedEvent(), session.Channel);
else else
{ {
@@ -589,8 +591,11 @@ public abstract class SharedRoleSystem : EntitySystem
/// </summary> /// </summary>
public void MindPlaySound(EntityUid mindId, SoundSpecifier? sound, MindComponent? mind = null) public void MindPlaySound(EntityUid mindId, SoundSpecifier? sound, MindComponent? mind = null)
{ {
if (Resolve(mindId, ref mind) && mind.Session != null) if (!Resolve(mindId, ref mind))
_audio.PlayGlobal(sound, mind.Session); return;
if (Player.TryGetSessionById(mind.UserId, out var session))
_audio.PlayGlobal(sound, session);
} }
// TODO ROLES Change to readonly. // TODO ROLES Change to readonly.