Station records patches (#10636)
This commit is contained in:
@@ -8,7 +8,9 @@ using Content.Shared.Access.Systems;
|
||||
using Content.Shared.StationRecords;
|
||||
using Content.Server.Administration.Logs;
|
||||
using Content.Shared.Database;
|
||||
using Content.Shared.Roles;
|
||||
using Robust.Server.GameObjects;
|
||||
using Robust.Shared.Prototypes;
|
||||
|
||||
namespace Content.Server.Access.Components
|
||||
{
|
||||
@@ -18,9 +20,13 @@ namespace Content.Server.Access.Components
|
||||
{
|
||||
[Dependency] private readonly IEntityManager _entities = default!;
|
||||
[Dependency] private readonly IAdminLogManager _adminLogger = default!;
|
||||
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
|
||||
|
||||
[ViewVariables] private BoundUserInterface? UserInterface => Owner.GetUIOrNull(IdCardConsoleUiKey.Key);
|
||||
|
||||
private StationRecordsSystem? _recordSystem;
|
||||
private StationSystem? _stationSystem;
|
||||
|
||||
protected override void Initialize()
|
||||
{
|
||||
base.Initialize();
|
||||
@@ -28,6 +34,9 @@ namespace Content.Server.Access.Components
|
||||
Owner.EnsureComponentWarn<AccessReaderComponent>();
|
||||
Owner.EnsureComponentWarn<ServerUserInterfaceComponent>();
|
||||
|
||||
_stationSystem = _entities.EntitySysManager.GetEntitySystem<StationSystem>();
|
||||
_recordSystem = _entities.EntitySysManager.GetEntitySystem<StationRecordsSystem>();
|
||||
|
||||
if (UserInterface != null)
|
||||
{
|
||||
UserInterface.OnReceiveMessage += OnUiReceiveMessage;
|
||||
@@ -45,7 +54,7 @@ namespace Content.Server.Access.Components
|
||||
switch (obj.Message)
|
||||
{
|
||||
case WriteToTargetIdMessage msg:
|
||||
TryWriteToTargetId(msg.FullName, msg.JobTitle, msg.AccessList, player);
|
||||
TryWriteToTargetId(msg.FullName, msg.JobTitle, msg.AccessList, msg.JobPrototype, player);
|
||||
UpdateUserInterface();
|
||||
break;
|
||||
}
|
||||
@@ -62,7 +71,7 @@ namespace Content.Server.Access.Components
|
||||
}
|
||||
|
||||
var privilegedIdEntity = PrivilegedIdSlot.Item;
|
||||
var accessSystem = EntitySystem.Get<AccessReaderSystem>();
|
||||
var accessSystem = _entities.EntitySysManager.GetEntitySystem<AccessReaderSystem>();
|
||||
return privilegedIdEntity != null && accessSystem.IsAllowed(privilegedIdEntity.Value, reader);
|
||||
}
|
||||
|
||||
@@ -70,12 +79,12 @@ namespace Content.Server.Access.Components
|
||||
/// Called whenever an access button is pressed, adding or removing that access from the target ID card.
|
||||
/// Writes data passed from the UI into the ID stored in <see cref="TargetIdSlot"/>, if present.
|
||||
/// </summary>
|
||||
private void TryWriteToTargetId(string newFullName, string newJobTitle, List<string> newAccessList, EntityUid player)
|
||||
private void TryWriteToTargetId(string newFullName, string newJobTitle, List<string> newAccessList, string newJobProto, EntityUid player)
|
||||
{
|
||||
if (TargetIdSlot.Item is not {Valid: true} targetIdEntity || !PrivilegedIdIsAuthorized())
|
||||
return;
|
||||
|
||||
var cardSystem = EntitySystem.Get<IdCardSystem>();
|
||||
var cardSystem = _entities.EntitySysManager.GetEntitySystem<IdCardSystem>();
|
||||
cardSystem.TryChangeFullName(targetIdEntity, newFullName, player: player);
|
||||
cardSystem.TryChangeJobTitle(targetIdEntity, newJobTitle, player: player);
|
||||
|
||||
@@ -85,7 +94,7 @@ namespace Content.Server.Access.Components
|
||||
return;
|
||||
}
|
||||
|
||||
var accessSystem = EntitySystem.Get<AccessSystem>();
|
||||
var accessSystem = _entities.EntitySysManager.GetEntitySystem<AccessSystem>();
|
||||
accessSystem.TrySetTags(targetIdEntity, newAccessList);
|
||||
|
||||
/*TODO: ECS IdCardConsoleComponent and then log on card ejection, together with the save.
|
||||
@@ -93,17 +102,17 @@ namespace Content.Server.Access.Components
|
||||
_adminLogger.Add(LogType.Action, LogImpact.Medium,
|
||||
$"{_entities.ToPrettyString(player):player} has modified {_entities.ToPrettyString(targetIdEntity):entity} with the following accesses: [{string.Join(", ", newAccessList)}]");
|
||||
|
||||
UpdateStationRecord(targetIdEntity, newFullName, newJobTitle);
|
||||
UpdateStationRecord(targetIdEntity, newFullName, newJobTitle, newJobProto);
|
||||
}
|
||||
|
||||
private void UpdateStationRecord(EntityUid idCard, string newFullName, string newJobTitle)
|
||||
private void UpdateStationRecord(EntityUid idCard, string newFullName, string newJobTitle, string newJobProto)
|
||||
{
|
||||
var station = EntitySystem.Get<StationSystem>().GetOwningStation(Owner);
|
||||
var recordSystem = EntitySystem.Get<StationRecordsSystem>();
|
||||
var station = _stationSystem?.GetOwningStation(Owner);
|
||||
if (station == null
|
||||
|| _recordSystem == null
|
||||
|| !_entities.TryGetComponent(idCard, out StationRecordKeyStorageComponent? keyStorage)
|
||||
|| keyStorage.Key == null
|
||||
|| !recordSystem.TryGetRecord(station.Value, keyStorage.Key.Value, out GeneralStationRecord? record))
|
||||
|| !_recordSystem.TryGetRecord(station.Value, keyStorage.Key.Value, out GeneralStationRecord? record))
|
||||
{
|
||||
return;
|
||||
}
|
||||
@@ -111,7 +120,13 @@ namespace Content.Server.Access.Components
|
||||
record.Name = newFullName;
|
||||
record.JobTitle = newJobTitle;
|
||||
|
||||
recordSystem.Synchronize(station.Value);
|
||||
if (_prototypeManager.TryIndex(newJobProto, out JobPrototype? job))
|
||||
{
|
||||
record.JobPrototype = newJobProto;
|
||||
record.JobIcon = job.Icon;
|
||||
}
|
||||
|
||||
_recordSystem.Synchronize(station.Value);
|
||||
}
|
||||
|
||||
public void UpdateUserInterface()
|
||||
@@ -137,6 +152,7 @@ namespace Content.Server.Access.Components
|
||||
null,
|
||||
null,
|
||||
privilegedIdName,
|
||||
string.Empty,
|
||||
string.Empty);
|
||||
}
|
||||
else
|
||||
@@ -146,6 +162,19 @@ namespace Content.Server.Access.Components
|
||||
var name = string.Empty;
|
||||
if (PrivilegedIdSlot.Item is {Valid: true} item)
|
||||
name = _entities.GetComponent<MetaDataComponent>(item).EntityName;
|
||||
|
||||
var station = _stationSystem?.GetOwningStation(Owner);
|
||||
var jobProto = string.Empty;
|
||||
if (_recordSystem != null
|
||||
&& station != null
|
||||
&& _entities.TryGetComponent(targetIdEntity, out StationRecordKeyStorageComponent? keyStorage)
|
||||
&& keyStorage.Key != null
|
||||
&& _recordSystem.TryGetRecord(station.Value, keyStorage.Key.Value,
|
||||
out GeneralStationRecord? record))
|
||||
{
|
||||
jobProto = record.JobPrototype;
|
||||
}
|
||||
|
||||
newState = new IdCardConsoleBoundUserInterfaceState(
|
||||
PrivilegedIdSlot.HasItem,
|
||||
PrivilegedIdIsAuthorized(),
|
||||
@@ -153,6 +182,7 @@ namespace Content.Server.Access.Components
|
||||
targetIdComponent.FullName,
|
||||
targetIdComponent.JobTitle,
|
||||
targetAccessComponent.Tags.ToArray(),
|
||||
jobProto,
|
||||
name,
|
||||
_entities.GetComponent<MetaDataComponent>(targetIdEntity).EntityName);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user