using Content.Shared.Database; using Content.Shared.Follower.Components; using Content.Shared.Ghost; using Content.Shared.Movement.EntitySystems; using Content.Shared.Verbs; namespace Content.Shared.Follower; public sealed class FollowerSystem : EntitySystem { public override void Initialize() { base.Initialize(); SubscribeLocalEvent>(OnGetAlternativeVerbs); SubscribeLocalEvent(OnFollowerMove); SubscribeLocalEvent(OnFollowedTerminating); } private void OnGetAlternativeVerbs(GetVerbsEvent ev) { if (!HasComp(ev.User)) return; if (ev.User == ev.Target) return; var verb = new AlternativeVerb { Priority = 10, Act = (() => { StartFollowingEntity(ev.User, ev.Target); }), Impact = LogImpact.Low, Text = Loc.GetString("verb-follow-text"), IconTexture = "/Textures/Interface/VerbIcons/open.svg.192dpi.png", }; ev.Verbs.Add(verb); } private void OnFollowerMove(EntityUid uid, FollowerComponent component, RelayMoveInputEvent args) { StopFollowingEntity(uid, component.Following); } // Since we parent our observer to the followed entity, we need to detach // before they get deleted so that we don't get recursively deleted too. private void OnFollowedTerminating(EntityUid uid, FollowedComponent component, ref EntityTerminatingEvent args) { StopAllFollowers(uid, component); } /// /// Makes an entity follow another entity, by parenting to it. /// /// The entity that should follow /// The entity to be followed public void StartFollowingEntity(EntityUid follower, EntityUid entity) { // No recursion for you if (Transform(entity).ParentUid == follower) return; var followerComp = EnsureComp(follower); followerComp.Following = entity; var followedComp = EnsureComp(entity); followedComp.Following.Add(follower); var xform = Transform(follower); xform.AttachParent(entity); xform.LocalPosition = Vector2.Zero; xform.LocalRotation = Angle.Zero; EnsureComp(follower); var followerEv = new StartedFollowingEntityEvent(entity, follower); var entityEv = new EntityStartedFollowingEvent(entity, follower); RaiseLocalEvent(follower, followerEv); RaiseLocalEvent(entity, entityEv, false); } /// /// Forces an entity to stop following another entity, if it is doing so. /// public void StopFollowingEntity(EntityUid uid, EntityUid target, FollowedComponent? followed=null) { if (!Resolve(target, ref followed, false)) return; if (!HasComp(uid)) return; followed.Following.Remove(uid); if (followed.Following.Count == 0) RemComp(target); RemComp(uid); Transform(uid).AttachToGridOrMap(); RemComp(uid); var uidEv = new StoppedFollowingEntityEvent(target, uid); var targetEv = new EntityStoppedFollowingEvent(target, uid); RaiseLocalEvent(uid, uidEv); RaiseLocalEvent(target, targetEv, false); } /// /// Forces all of an entity's followers to stop following it. /// public void StopAllFollowers(EntityUid uid, FollowedComponent? followed=null) { if (!Resolve(uid, ref followed)) return; foreach (var player in followed.Following) { StopFollowingEntity(player, uid, followed); } } } public abstract class FollowEvent : EntityEventArgs { public EntityUid Following; public EntityUid Follower; protected FollowEvent(EntityUid following, EntityUid follower) { Following = following; Follower = follower; } } /// /// Raised on an entity when it start following another entity. /// public sealed class StartedFollowingEntityEvent : FollowEvent { public StartedFollowingEntityEvent(EntityUid following, EntityUid follower) : base(following, follower) { } } /// /// Raised on an entity when it stops following another entity. /// public sealed class StoppedFollowingEntityEvent : FollowEvent { public StoppedFollowingEntityEvent(EntityUid following, EntityUid follower) : base(following, follower) { } } /// /// Raised on an entity when it start following another entity. /// public sealed class EntityStartedFollowingEvent : FollowEvent { public EntityStartedFollowingEvent(EntityUid following, EntityUid follower) : base(following, follower) { } } /// /// Raised on an entity when it starts being followed by another entity. /// public sealed class EntityStoppedFollowingEvent : FollowEvent { public EntityStoppedFollowingEvent(EntityUid following, EntityUid follower) : base(following, follower) { } }