Files
space-station-14/Content.Shared/Body/SharedVisualBodySystem.Modifiers.cs

201 lines
7.8 KiB
C#

using System.Diagnostics.CodeAnalysis;
using System.Linq;
using Content.Shared.Administration.Managers;
using Content.Shared.Administration;
using Content.Shared.Humanoid;
using Content.Shared.Humanoid.Markings;
using Content.Shared.Preferences;
using Content.Shared.Verbs;
using JetBrains.Annotations;
using Robust.Shared.Containers;
using Robust.Shared.Prototypes;
using Robust.Shared.Utility;
namespace Content.Shared.Body;
public abstract partial class SharedVisualBodySystem
{
[Dependency] private readonly ISharedAdminManager _admin = default!;
[Dependency] private readonly SharedUserInterfaceSystem _userInterface = default!;
private void InitializeModifiers()
{
SubscribeLocalEvent<VisualBodyComponent, GetVerbsEvent<Verb>>(OnGetVerbs);
Subs.BuiEvents<VisualBodyComponent>(HumanoidMarkingModifierKey.Key,
subs =>
{
subs.Event<BoundUIOpenedEvent>(OnModifiersOpened);
subs.Event<HumanoidMarkingModifierMarkingSetMessage>(OnSetModifiers);
});
}
private void OnGetVerbs(Entity<VisualBodyComponent> ent, ref GetVerbsEvent<Verb> args)
{
if (!_admin.HasAdminFlag(args.User, AdminFlags.Fun))
return;
var user = args.User;
args.Verbs.Add(new Verb
{
Text = "Modify markings",
Category = VerbCategory.Tricks,
Icon = new SpriteSpecifier.Rsi(new("/Textures/Mobs/Customization/reptilian_parts.rsi"), "tail_smooth"),
Act = () =>
{
_userInterface.OpenUi(ent.Owner, HumanoidMarkingModifierKey.Key, user);
}
});
}
/// <summary>
/// Copies the appearance of organs from one body to another
/// </summary>
/// <param name="source">The body whose organs to copy the appearance from</param>
/// <param name="target">The body whose organs to copy the appearance to</param>
[PublicAPI]
public void CopyAppearanceFrom(Entity<BodyComponent?> source, Entity<BodyComponent?> target)
{
if (!Resolve(source, ref source.Comp) || !Resolve(target, ref target.Comp))
return;
var sourceOrgans = _container.EnsureContainer<Container>(source, BodyComponent.ContainerID);
foreach (var sourceOrgan in sourceOrgans.ContainedEntities)
{
var evt = new OrganCopyAppearanceEvent(sourceOrgan);
RaiseLocalEvent(target, ref evt);
}
}
/// <summary>
/// Gathers all the markings-relevant data from this entity
/// </summary>
/// <param name="ent">The entity to sample</param>
/// <param name="filter">If set, only returns data concerning the given layers</param>
/// <param name="profiles">The profiles for the various organs</param>
/// <param name="markings">The marking parameters for the various organs</param>
/// <param name="applied">The markings that are applied to the entity</param>
public bool TryGatherMarkingsData(Entity<VisualBodyComponent?> ent,
HashSet<HumanoidVisualLayers>? filter,
[NotNullWhen(true)] out Dictionary<ProtoId<OrganCategoryPrototype>, OrganProfileData>? profiles,
[NotNullWhen(true)] out Dictionary<ProtoId<OrganCategoryPrototype>, OrganMarkingData>? markings,
[NotNullWhen(true)] out Dictionary<ProtoId<OrganCategoryPrototype>, Dictionary<HumanoidVisualLayers, List<Marking>>>? applied)
{
if (!Resolve(ent, ref ent.Comp))
{
profiles = null;
markings = null;
applied = null;
return false;
}
profiles = new();
markings = new();
applied = new();
var organContainer = _container.EnsureContainer<Container>(ent, BodyComponent.ContainerID);
foreach (var organ in organContainer.ContainedEntities)
{
if (!TryComp<OrganComponent>(organ, out var organComp) || organComp.Category is not { } category)
continue;
if (TryComp<VisualOrganComponent>(organ, out var visualOrgan))
{
profiles.TryAdd(category, visualOrgan.Profile);
}
if (TryComp<VisualOrganMarkingsComponent>(organ, out var visualOrganMarkings))
{
markings.TryAdd(category, visualOrganMarkings.MarkingData);
if (filter is not null)
applied.TryAdd(category, visualOrganMarkings.Markings.Where(kvp => filter.Contains(kvp.Key)).ToDictionary());
else
applied.TryAdd(category, visualOrganMarkings.Markings);
}
}
return true;
}
private void OnModifiersOpened(Entity<VisualBodyComponent> ent, ref BoundUIOpenedEvent args)
{
TryGatherMarkingsData(ent.AsNullable(), null, out var profiles, out var markings, out var applied);
_userInterface.SetUiState(ent.Owner, HumanoidMarkingModifierKey.Key, new HumanoidMarkingModifierState(applied!, markings!, profiles!));
}
private void OnSetModifiers(Entity<VisualBodyComponent> ent, ref HumanoidMarkingModifierMarkingSetMessage args)
{
var markingsEvt = new ApplyOrganMarkingsEvent(args.Markings);
RaiseLocalEvent(ent, ref markingsEvt);
}
/// <summary>
/// Applies the given set of markings to the body.
/// </summary>
/// <param name="ent">The body whose organs to apply markings to.</param>
/// <param name="markings">A dictionary of organ categories to markings information. Organs not included in this dictionary will remain unaffected.</param>
[PublicAPI]
public void ApplyMarkings(EntityUid ent, Dictionary<ProtoId<OrganCategoryPrototype>, Dictionary<HumanoidVisualLayers, List<Marking>>> markings)
{
var markingsEvt = new ApplyOrganMarkingsEvent(markings);
RaiseLocalEvent(ent, ref markingsEvt);
}
private void ApplyAppearanceTo(Entity<VisualBodyComponent?> ent, HumanoidCharacterAppearance appearance, Sex sex)
{
if (!Resolve(ent, ref ent.Comp))
return;
ApplyProfile(ent,
new()
{
Sex = sex,
SkinColor = appearance.SkinColor,
EyeColor = appearance.EyeColor,
});
var markingsEvt = new ApplyOrganMarkingsEvent(appearance.Markings);
RaiseLocalEvent(ent, ref markingsEvt);
}
/// <summary>
/// Applies the information contained with a <see cref="HumanoidCharacterProfile"/> to a visual body's appearance.
/// This sets the profile data and markings of all organs contained within the profile.
/// </summary>
/// <param name="ent">The body to apply the profile to</param>
/// <param name="profile">The profile to apply</param>
[PublicAPI]
public void ApplyProfileTo(Entity<VisualBodyComponent?> ent, HumanoidCharacterProfile profile)
{
ApplyAppearanceTo(ent, profile.Appearance, profile.Sex);
}
/// <summary>
/// Applies profile data to all visual organs within the body.
/// </summary>
/// <param name="ent">The body to apply the organ profile to</param>
/// <param name="profile">The profile to apply</param>
[PublicAPI]
public void ApplyProfile(EntityUid ent, OrganProfileData profile)
{
var profileEvt = new ApplyOrganProfileDataEvent(profile, null);
RaiseLocalEvent(ent, ref profileEvt);
}
/// <summary>
/// Applies profile data to the specified visual organs within the body.
/// Organs not specified are left unchanged.
/// </summary>
/// <param name="ent">The body to apply the organ profiles to.</param>
/// <param name="profiles">The profiles to apply.</param>
[PublicAPI]
public void ApplyProfiles(EntityUid ent, Dictionary<ProtoId<OrganCategoryPrototype>, OrganProfileData> profiles)
{
var profileEvt = new ApplyOrganProfileDataEvent(null, profiles);
RaiseLocalEvent(ent, ref profileEvt);
}
}