using Content.Server.Administration.Systems;
-using Content.Shared.Climbing.Components;
+using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
namespace Content.Server.Administration.Components;
/// <summary>
/// Component to track the timer for the SuperBonk smite.
/// </summary>
-[RegisterComponent, Access(typeof(SuperBonkSystem))]
-public sealed partial class SuperBonkComponent: Component
+[RegisterComponent, AutoGenerateComponentPause, Access(typeof(SuperBonkSystem))]
+public sealed partial class SuperBonkComponent : Component
{
- /// <summary>
- /// Entity being Super Bonked.
- /// </summary>
- [DataField]
- public EntityUid Target;
-
/// <summary>
/// All of the tables the target will be bonked on.
/// </summary>
[DataField]
- public Dictionary<EntityUid, BonkableComponent>.Enumerator Tables;
+ public List<EntityUid>.Enumerator Tables;
/// <summary>
- /// Value used to reset the timer once it expires.
+ /// How often should we bonk.
/// </summary>
[DataField]
- public float InitialTime = 0.10f;
+ public TimeSpan BonkCooldown = TimeSpan.FromMilliseconds(100);
/// <summary>
- /// Timer till the next bonk.
+ /// Next time when we will bonk.
/// </summary>
- [DataField]
- public float TimeRemaining = 0.10f;
+ [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField]
+ public TimeSpan NextBonk = TimeSpan.Zero;
/// <summary>
/// Whether to remove the clumsy component from the target after SuperBonk is done.
using Content.Shared.Mobs;
using Content.Shared.Mobs.Components;
using Robust.Shared.Audio.Systems;
+using Robust.Shared.Timing;
namespace Content.Server.Administration.Systems;
[Dependency] private readonly SharedTransformSystem _transformSystem = default!;
[Dependency] private readonly ClumsySystem _clumsySystem = default!;
[Dependency] private readonly SharedAudioSystem _audioSystem = default!;
+ [Dependency] private readonly IGameTiming _timing = default!;
public override void Initialize()
{
base.Initialize();
+ SubscribeLocalEvent<SuperBonkComponent, ComponentInit>(OnInit);
SubscribeLocalEvent<SuperBonkComponent, MobStateChangedEvent>(OnMobStateChanged);
- SubscribeLocalEvent<SuperBonkComponent, ComponentShutdown>(OnBonkShutdown);
+ SubscribeLocalEvent<SuperBonkComponent, ComponentShutdown>(OnShutdown);
}
- public void StartSuperBonk(EntityUid target, float delay = 0.1f, bool stopWhenDead = false)
+ private void OnInit(Entity<SuperBonkComponent> ent, ref ComponentInit args)
{
+ var (_, component) = ent;
- //The other check in the code to stop when the target dies does not work if the target is already dead.
- if (stopWhenDead && TryComp<MobStateComponent>(target, out var mState))
- {
- if (mState.CurrentState == MobState.Dead)
- return;
- }
+ component.NextBonk = _timing.CurTime + component.BonkCooldown;
+ }
- var hadClumsy = EnsureComp<ClumsyComponent>(target, out _);
+ private void OnMobStateChanged(Entity<SuperBonkComponent> ent, ref MobStateChangedEvent args)
+ {
+ var (uid, component) = ent;
- var tables = EntityQueryEnumerator<BonkableComponent>();
- var bonks = new Dictionary<EntityUid, BonkableComponent>();
- // This is done so we don't crash if something like a new table is spawned.
- while (tables.MoveNext(out var uid, out var comp))
- {
- bonks.Add(uid, comp);
- }
+ if (component.StopWhenDead && args.NewMobState == MobState.Dead)
+ RemCompDeferred<SuperBonkComponent>(uid);
+ }
- var sComp = new SuperBonkComponent
- {
- Target = target,
- Tables = bonks.GetEnumerator(),
- RemoveClumsy = !hadClumsy,
- StopWhenDead = stopWhenDead,
- };
+ private void OnShutdown(Entity<SuperBonkComponent> ent, ref ComponentShutdown args)
+ {
+ var (uid, component) = ent;
- AddComp(target, sComp);
+ if (component.RemoveClumsy)
+ RemComp<ClumsyComponent>(uid);
}
public override void Update(float frameTime)
while (comps.MoveNext(out var uid, out var comp))
{
- comp.TimeRemaining -= frameTime;
- if (!(comp.TimeRemaining <= 0))
+ if (comp.NextBonk > _timing.CurTime)
continue;
- Bonk(comp);
-
- if (!(comp.Tables.MoveNext()))
+ if (!TryBonk(uid, comp.Tables.Current) || !comp.Tables.MoveNext())
{
- RemComp<SuperBonkComponent>(comp.Target);
+ RemComp<SuperBonkComponent>(uid);
continue;
}
- comp.TimeRemaining = comp.InitialTime;
+ comp.NextBonk += comp.BonkCooldown;
}
}
- private void Bonk(SuperBonkComponent comp)
+ public void StartSuperBonk(EntityUid target, bool stopWhenDead = false)
{
- var uid = comp.Tables.Current.Key;
-
- // It would be very weird for something without a transform component to have a bonk component
- // but just in case because I don't want to crash the server.
- if (!HasComp<TransformComponent>(uid) || !TryComp<ClumsyComponent>(comp.Target, out var clumsyComp))
+ //The other check in the code to stop when the target dies does not work if the target is already dead.
+ if (stopWhenDead && TryComp<MobStateComponent>(target, out var mobState) && mobState.CurrentState == MobState.Dead)
return;
- _transformSystem.SetCoordinates(comp.Target, Transform(uid).Coordinates);
- _clumsySystem.HitHeadClumsy((comp.Target, clumsyComp), uid);
+ if (EnsureComp<SuperBonkComponent>(target, out var component))
+ return;
+
+ var tables = EntityQueryEnumerator<BonkableComponent>();
+ var bonks = new List<EntityUid>();
+ // This is done so we don't crash if something like a new table is spawned.
+ while (tables.MoveNext(out var uid, out var comp))
+ {
+ bonks.Add(uid);
+ }
- _audioSystem.PlayPvs(clumsyComp.TableBonkSound, comp.Target);
+ component.Tables = bonks.GetEnumerator();
+ component.RemoveClumsy = !EnsureComp<ClumsyComponent>(target, out _);
+ component.StopWhenDead = stopWhenDead;
}
- private void OnMobStateChanged(EntityUid uid, SuperBonkComponent comp, MobStateChangedEvent args)
+ private bool TryBonk(EntityUid uid, EntityUid tableUid)
{
- if (comp.StopWhenDead && args.NewMobState == MobState.Dead)
+ if (!TryComp<ClumsyComponent>(uid, out var clumsyComp))
+ return false;
+
+ // It would be very weird for something without a transform component to have a bonk component
+ // but just in case because I don't want to crash the server.
+ if (HasComp<TransformComponent>(tableUid))
{
- RemComp<SuperBonkComponent>(uid);
+ _transformSystem.SetCoordinates(uid, Transform(tableUid).Coordinates);
+
+ _clumsySystem.HitHeadClumsy((uid, clumsyComp), tableUid);
+
+ _audioSystem.PlayPvs(clumsyComp.TableBonkSound, tableUid);
}
- }
- private void OnBonkShutdown(EntityUid uid, SuperBonkComponent comp, ComponentShutdown ev)
- {
- if (comp.RemoveClumsy)
- RemComp<ClumsyComponent>(comp.Target);
+ return true;
}
}