Random spontaneous cleanup PR (#25131)
* Use new Subs.CVar helper Removes manual config OnValueChanged calls, removes need to remember to manually unsubscribe. This both reduces boilerplate and fixes many issues where subscriptions weren't removed on entity system shutdown. * Fix a bunch of warnings * More warning fixes * Use new DateTime serializer to get rid of ISerializationHooks in changelog code. * Get rid of some more ISerializationHooks for enums * And a little more * Apply suggestions from code review Co-authored-by: 0x6273 <0x40@keemail.me> --------- Co-authored-by: 0x6273 <0x40@keemail.me>
This commit is contained in:
committed by
GitHub
parent
d0c174388c
commit
68ce53ae17
@@ -5,16 +5,17 @@ using Content.Shared.Ghost;
|
||||
using Content.Shared.Throwing;
|
||||
using Robust.Shared.Map;
|
||||
using Content.Shared.Physics;
|
||||
using Robust.Shared.Map.Components;
|
||||
using Robust.Shared.Physics.Components;
|
||||
|
||||
namespace Content.Shared.Anomaly.Effects;
|
||||
|
||||
public abstract class SharedGravityAnomalySystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly IMapManager _map = default!;
|
||||
[Dependency] private readonly EntityLookupSystem _lookup = default!;
|
||||
[Dependency] private readonly ThrowingSystem _throwing = default!;
|
||||
[Dependency] private readonly SharedTransformSystem _xform = default!;
|
||||
[Dependency] private readonly SharedMapSystem _mapSystem = default!;
|
||||
|
||||
/// <inheritdoc/>
|
||||
public override void Initialize()
|
||||
@@ -47,13 +48,18 @@ public abstract class SharedGravityAnomalySystem : EntitySystem
|
||||
private void OnSupercritical(EntityUid uid, GravityAnomalyComponent component, ref AnomalySupercriticalEvent args)
|
||||
{
|
||||
var xform = Transform(uid);
|
||||
if (!_map.TryGetGrid(xform.GridUid, out var grid))
|
||||
if (!TryComp(xform.GridUid, out MapGridComponent? grid))
|
||||
return;
|
||||
|
||||
var worldPos = _xform.GetWorldPosition(xform);
|
||||
var tileref = grid.GetTilesIntersecting(new Circle(worldPos, component.SpaceRange)).ToArray();
|
||||
var tileref = _mapSystem.GetTilesIntersecting(
|
||||
xform.GridUid.Value,
|
||||
grid,
|
||||
new Circle(worldPos, component.SpaceRange))
|
||||
.ToArray();
|
||||
|
||||
var tiles = tileref.Select(t => (t.GridIndices, Tile.Empty)).ToList();
|
||||
grid.SetTiles(tiles);
|
||||
_mapSystem.SetTiles(xform.GridUid.Value, grid, tiles);
|
||||
|
||||
var range = component.MaxThrowRange * 2;
|
||||
var strength = component.MaxThrowStrength * 2;
|
||||
|
||||
@@ -27,7 +27,7 @@ public abstract class SharedAnomalySystem : EntitySystem
|
||||
[Dependency] protected readonly IGameTiming Timing = default!;
|
||||
[Dependency] private readonly INetManager _net = default!;
|
||||
[Dependency] protected readonly IRobustRandom Random = default!;
|
||||
[Dependency] protected readonly ISharedAdminLogManager Log = default!;
|
||||
[Dependency] protected readonly ISharedAdminLogManager AdminLog = default!;
|
||||
[Dependency] private readonly DamageableSystem _damageable = default!;
|
||||
[Dependency] protected readonly SharedAudioSystem Audio = default!;
|
||||
[Dependency] protected readonly SharedAppearanceSystem Appearance = default!;
|
||||
@@ -92,7 +92,7 @@ public abstract class SharedAnomalySystem : EntitySystem
|
||||
private void OnAnomalyUnpause(EntityUid uid, AnomalyComponent component, ref EntityUnpausedEvent args)
|
||||
{
|
||||
component.NextPulseTime += args.PausedTime;
|
||||
Dirty(component);
|
||||
Dirty(uid, component);
|
||||
}
|
||||
|
||||
private void OnPulsingUnpause(EntityUid uid, AnomalyPulsingComponent component, ref EntityUnpausedEvent args)
|
||||
@@ -103,7 +103,7 @@ public abstract class SharedAnomalySystem : EntitySystem
|
||||
private void OnSupercriticalUnpause(EntityUid uid, AnomalySupercriticalComponent component, ref EntityUnpausedEvent args)
|
||||
{
|
||||
component.EndTime += args.PausedTime;
|
||||
Dirty(component);
|
||||
Dirty(uid, component);
|
||||
}
|
||||
|
||||
public void DoAnomalyPulse(EntityUid uid, AnomalyComponent? component = null)
|
||||
@@ -132,7 +132,7 @@ public abstract class SharedAnomalySystem : EntitySystem
|
||||
var stability = Random.NextFloat(minStability, maxStability);
|
||||
ChangeAnomalyStability(uid, stability, component);
|
||||
|
||||
Log.Add(LogType.Anomaly, LogImpact.Medium, $"Anomaly {ToPrettyString(uid)} pulsed with severity {component.Severity}.");
|
||||
AdminLog.Add(LogType.Anomaly, LogImpact.Medium, $"Anomaly {ToPrettyString(uid)} pulsed with severity {component.Severity}.");
|
||||
if (_net.IsServer)
|
||||
Audio.PlayPvs(component.PulseSound, uid);
|
||||
|
||||
@@ -154,14 +154,14 @@ public abstract class SharedAnomalySystem : EntitySystem
|
||||
if (HasComp<AnomalySupercriticalComponent>(uid))
|
||||
return;
|
||||
|
||||
Log.Add(LogType.Anomaly, LogImpact.High, $"Anomaly {ToPrettyString(uid)} began to go supercritical.");
|
||||
AdminLog.Add(LogType.Anomaly, LogImpact.High, $"Anomaly {ToPrettyString(uid)} began to go supercritical.");
|
||||
if (_net.IsServer)
|
||||
_sawmill.Info($"Anomaly is going supercritical. Entity: {ToPrettyString(uid)}");
|
||||
|
||||
var super = EnsureComp<AnomalySupercriticalComponent>(uid);
|
||||
var super = AddComp<AnomalySupercriticalComponent>(uid);
|
||||
super.EndTime = Timing.CurTime + super.SupercriticalDuration;
|
||||
Appearance.SetData(uid, AnomalyVisuals.Supercritical, true);
|
||||
Dirty(super);
|
||||
Dirty(uid, super);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -201,7 +201,7 @@ public abstract class SharedAnomalySystem : EntitySystem
|
||||
// Logging before resolve, in case the anomaly has deleted itself.
|
||||
if (_net.IsServer)
|
||||
_sawmill.Info($"Ending anomaly. Entity: {ToPrettyString(uid)}");
|
||||
Log.Add(LogType.Anomaly, LogImpact.Extreme, $"Anomaly {ToPrettyString(uid)} went supercritical.");
|
||||
AdminLog.Add(LogType.Anomaly, LogImpact.Extreme, $"Anomaly {ToPrettyString(uid)} went supercritical.");
|
||||
|
||||
if (!Resolve(uid, ref component))
|
||||
return;
|
||||
@@ -231,7 +231,7 @@ public abstract class SharedAnomalySystem : EntitySystem
|
||||
var newVal = component.Stability + change;
|
||||
|
||||
component.Stability = Math.Clamp(newVal, 0, 1);
|
||||
Dirty(component);
|
||||
Dirty(uid, component);
|
||||
|
||||
var ev = new AnomalyStabilityChangedEvent(uid, component.Stability, component.Severity);
|
||||
RaiseLocalEvent(uid, ref ev, true);
|
||||
@@ -254,7 +254,7 @@ public abstract class SharedAnomalySystem : EntitySystem
|
||||
StartSupercriticalEvent(uid);
|
||||
|
||||
component.Severity = Math.Clamp(newVal, 0, 1);
|
||||
Dirty(component);
|
||||
Dirty(uid, component);
|
||||
|
||||
var ev = new AnomalySeverityChangedEvent(uid, component.Stability, component.Severity);
|
||||
RaiseLocalEvent(uid, ref ev, true);
|
||||
@@ -280,7 +280,7 @@ public abstract class SharedAnomalySystem : EntitySystem
|
||||
}
|
||||
|
||||
component.Health = Math.Clamp(newVal, 0, 1);
|
||||
Dirty(component);
|
||||
Dirty(uid, component);
|
||||
|
||||
var ev = new AnomalyHealthChangedEvent(uid, component.Health);
|
||||
RaiseLocalEvent(uid, ref ev, true);
|
||||
|
||||
Reference in New Issue
Block a user