* Mind Role Entities wip * headrev count fix * silicon stuff, cleanup * exclusive antag config, cleanup * jobroleadd overwerite * logging stuff * MindHasRole cleanup, admin log stuff * last second cleanup * ocd * minor cleanup * remove createdTime datafield * now actually using the event replacement I made for role time tracking * weh
46 lines
1.6 KiB
C#
46 lines
1.6 KiB
C#
using System.Linq;
|
|
using Content.Shared.EntityEffects;
|
|
using Content.Shared.Localizations;
|
|
using Content.Shared.Mind;
|
|
using Content.Shared.Mind.Components;
|
|
using Content.Shared.Roles;
|
|
using Content.Shared.Roles.Jobs;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.EntityEffects.EffectConditions;
|
|
|
|
public sealed partial class JobCondition : EntityEffectCondition
|
|
{
|
|
[DataField(required: true)] public List<ProtoId<JobPrototype>> Job;
|
|
|
|
public override bool Condition(EntityEffectBaseArgs args)
|
|
{
|
|
args.EntityManager.TryGetComponent<MindContainerComponent>(args.TargetEntity, out var mindContainer);
|
|
|
|
if ( mindContainer is null
|
|
|| !args.EntityManager.TryGetComponent<MindComponent>(mindContainer.Mind, out var mind))
|
|
return false;
|
|
|
|
foreach (var roleId in mind.MindRoles)
|
|
{
|
|
if(!args.EntityManager.HasComponent<JobRoleComponent>(roleId))
|
|
continue;
|
|
|
|
if(!args.EntityManager.TryGetComponent<MindRoleComponent>(roleId, out var mindRole)
|
|
|| mindRole.JobPrototype is null)
|
|
continue;
|
|
|
|
if (Job.Contains(mindRole.JobPrototype.Value))
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public override string GuidebookExplanation(IPrototypeManager prototype)
|
|
{
|
|
var localizedNames = Job.Select(jobId => prototype.Index(jobId).LocalizedName).ToList();
|
|
return Loc.GetString("reagent-effect-condition-guidebook-job-condition", ("job", ContentLocalizationManager.FormatListToOr(localizedNames)));
|
|
}
|
|
}
|