Station records patches (#10636)

This commit is contained in:
Flipp Syder
2022-08-16 21:03:23 -07:00
committed by GitHub
parent 04b943f2aa
commit 1b50928d50
6 changed files with 72 additions and 23 deletions

View File

@@ -59,7 +59,7 @@ namespace Content.Client.Access.UI
_window?.UpdateState(castState); _window?.UpdateState(castState);
} }
public void SubmitData(string newFullName, string newJobTitle, List<string> newAccessList) public void SubmitData(string newFullName, string newJobTitle, List<string> newAccessList, string newJobPrototype)
{ {
if (newFullName.Length > MaxFullNameLength) if (newFullName.Length > MaxFullNameLength)
newFullName = newFullName[..MaxFullNameLength]; newFullName = newFullName[..MaxFullNameLength];
@@ -70,7 +70,8 @@ namespace Content.Client.Access.UI
SendMessage(new WriteToTargetIdMessage( SendMessage(new WriteToTargetIdMessage(
newFullName, newFullName,
newJobTitle, newJobTitle,
newAccessList)); newAccessList,
newJobPrototype));
} }
} }
} }

View File

@@ -26,8 +26,10 @@ namespace Content.Client.Access.UI
private string? _lastFullName; private string? _lastFullName;
private string? _lastJobTitle; private string? _lastJobTitle;
private string? _lastJobProto;
public IdCardConsoleWindow(IdCardConsoleBoundUserInterface owner, IPrototypeManager prototypeManager, List<string> accessLevels) public IdCardConsoleWindow(IdCardConsoleBoundUserInterface owner, IPrototypeManager prototypeManager,
List<string> accessLevels)
{ {
RobustXamlLoader.Load(this); RobustXamlLoader.Load(this);
IoCManager.InjectDependencies(this); IoCManager.InjectDependencies(this);
@@ -101,6 +103,7 @@ namespace Content.Client.Access.UI
} }
JobTitleLineEdit.Text = Loc.GetString(job.Name); JobTitleLineEdit.Text = Loc.GetString(job.Name);
args.Button.SelectId(args.Id);
ClearAllAccess(); ClearAllAccess();
@@ -181,17 +184,29 @@ namespace Content.Client.Access.UI
} }
} }
var jobIndex = _jobPrototypeIds.IndexOf(state.TargetIdJobPrototype);
if (jobIndex >= 0)
{
JobPresetOptionButton.SelectId(jobIndex);
}
_lastFullName = state.TargetIdFullName; _lastFullName = state.TargetIdFullName;
_lastJobTitle = state.TargetIdJobTitle; _lastJobTitle = state.TargetIdJobTitle;
_lastJobProto = state.TargetIdJobPrototype;
} }
private void SubmitData() private void SubmitData()
{ {
// Don't send this if it isn't dirty.
var jobProtoDirty = _lastJobProto != null &&
_jobPrototypeIds[JobPresetOptionButton.SelectedId] != _lastJobProto;
_owner.SubmitData( _owner.SubmitData(
FullNameLineEdit.Text, FullNameLineEdit.Text,
JobTitleLineEdit.Text, JobTitleLineEdit.Text,
// Iterate over the buttons dictionary, filter by `Pressed`, only get key from the key/value pair // Iterate over the buttons dictionary, filter by `Pressed`, only get key from the key/value pair
_accessButtons.Where(x => x.Value.Pressed).Select(x => x.Key).ToList()); _accessButtons.Where(x => x.Value.Pressed).Select(x => x.Key).ToList(),
jobProtoDirty ? _jobPrototypeIds[JobPresetOptionButton.SelectedId] : string.Empty);
} }
} }
} }

View File

@@ -131,11 +131,11 @@ public sealed partial class CrewManifestUi : DefaultWindow
foreach (var entry in entries) foreach (var entry in entries)
{ {
var name = new Label() var name = new RichTextLabel()
{ {
HorizontalExpand = true, HorizontalExpand = true,
Text = entry.Name
}; };
name.SetMessage(entry.Name);
var titleContainer = new BoxContainer() var titleContainer = new BoxContainer()
{ {
@@ -143,10 +143,8 @@ public sealed partial class CrewManifestUi : DefaultWindow
HorizontalExpand = true HorizontalExpand = true
}; };
var title = new Label() var title = new RichTextLabel();
{ title.SetMessage(Loc.GetString(entry.JobTitle));
Text = Loc.GetString(entry.JobTitle)
};
if (rsi != null) if (rsi != null)

View File

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

View File

@@ -26,12 +26,14 @@ namespace Content.Shared.Access.Components
public readonly string FullName; public readonly string FullName;
public readonly string JobTitle; public readonly string JobTitle;
public readonly List<string> AccessList; public readonly List<string> AccessList;
public readonly string JobPrototype;
public WriteToTargetIdMessage(string fullName, string jobTitle, List<string> accessList) public WriteToTargetIdMessage(string fullName, string jobTitle, List<string> accessList, string jobPrototype)
{ {
FullName = fullName; FullName = fullName;
JobTitle = jobTitle; JobTitle = jobTitle;
AccessList = accessList; AccessList = accessList;
JobPrototype = jobPrototype;
} }
} }
@@ -82,6 +84,7 @@ namespace Content.Shared.Access.Components
public readonly string? TargetIdFullName; public readonly string? TargetIdFullName;
public readonly string? TargetIdJobTitle; public readonly string? TargetIdJobTitle;
public readonly string[]? TargetIdAccessList; public readonly string[]? TargetIdAccessList;
public readonly string TargetIdJobPrototype;
public IdCardConsoleBoundUserInterfaceState(bool isPrivilegedIdPresent, public IdCardConsoleBoundUserInterfaceState(bool isPrivilegedIdPresent,
bool isPrivilegedIdAuthorized, bool isPrivilegedIdAuthorized,
@@ -89,6 +92,7 @@ namespace Content.Shared.Access.Components
string? targetIdFullName, string? targetIdFullName,
string? targetIdJobTitle, string? targetIdJobTitle,
string[]? targetIdAccessList, string[]? targetIdAccessList,
string targetIdJobPrototype,
string privilegedIdName, string privilegedIdName,
string targetIdName) string targetIdName)
{ {
@@ -98,6 +102,7 @@ namespace Content.Shared.Access.Components
TargetIdFullName = targetIdFullName; TargetIdFullName = targetIdFullName;
TargetIdJobTitle = targetIdJobTitle; TargetIdJobTitle = targetIdJobTitle;
TargetIdAccessList = targetIdAccessList; TargetIdAccessList = targetIdAccessList;
TargetIdJobPrototype = targetIdJobPrototype;
PrivilegedIdName = privilegedIdName; PrivilegedIdName = privilegedIdName;
TargetIdName = targetIdName; TargetIdName = targetIdName;
} }

View File

@@ -5,7 +5,7 @@ id-card-console-window-save-button = Save
id-card-console-window-job-title-label = Job title: id-card-console-window-job-title-label = Job title:
id-card-console-window-eject-button = Eject id-card-console-window-eject-button = Eject
id-card-console-window-insert-button = Insert id-card-console-window-insert-button = Insert
id-card-console-window-job-selection-label = Job presets: id-card-console-window-job-selection-label = Job presets (sets department and job icon):
access-id-card-console-component-no-hands-error = You have no hands. access-id-card-console-component-no-hands-error = You have no hands.
id-card-console-privileged-id = Privileged ID id-card-console-privileged-id = Privileged ID