using Content.Server.Popups;
using Content.Shared.Spider;
using Content.Shared.Maps;
+using Content.Shared.Mobs.Systems;
using Robust.Server.GameObjects;
using Robust.Shared.Map;
+using Robust.Shared.Player;
+using Robust.Shared.Timing;
namespace Content.Server.Spider;
{
[Dependency] private readonly PopupSystem _popup = default!;
[Dependency] private readonly TurfSystem _turf = default!;
+ [Dependency] private readonly IGameTiming _timing = default!;
+ [Dependency] private readonly MobStateSystem _mobState = default!;
/// <summary>
/// A recycled hashset used to check turfs for spiderwebs.
SubscribeLocalEvent<SpiderComponent, SpiderWebActionEvent>(OnSpawnNet);
}
+ public override void Update(float frameTime)
+ {
+ base.Update(frameTime);
+
+ var query = EntityQueryEnumerator<SpiderComponent>();
+ while (query.MoveNext(out var uid, out var spider))
+ {
+ spider.NextWebSpawn ??= _timing.CurTime + spider.WebSpawnCooldown;
+
+ if (_timing.CurTime < spider.NextWebSpawn)
+ continue;
+
+ spider.NextWebSpawn += spider.WebSpawnCooldown;
+
+ if (HasComp<ActorComponent>(uid)
+ || _mobState.IsDead(uid)
+ || !spider.SpawnsWebsAsNonPlayer)
+ continue;
+
+ var transform = Transform(uid);
+ SpawnWeb((uid, spider), transform.Coordinates);
+ }
+ }
+
private void OnSpawnNet(EntityUid uid, SpiderComponent component, SpiderWebActionEvent args)
{
if (args.Handled)
return;
}
- var coords = transform.Coordinates;
+ var result = SpawnWeb((uid, component), transform.Coordinates);
- // TODO generic way to get certain coordinates
+ if (result)
+ {
+ _popup.PopupEntity(Loc.GetString("spider-web-action-success"), args.Performer, args.Performer);
+ args.Handled = true;
+ }
+ else
+ _popup.PopupEntity(Loc.GetString("spider-web-action-fail"), args.Performer, args.Performer);
+ }
+ private bool SpawnWeb(Entity<SpiderComponent> ent, EntityCoordinates coords)
+ {
var result = false;
+
// Spawn web in center
if (!IsTileBlockedByWeb(coords))
{
- Spawn(component.WebPrototype, coords);
+ Spawn(ent.Comp.WebPrototype, coords);
result = true;
}
// Spawn web in other directions
for (var i = 0; i < 4; i++)
{
- var direction = (DirectionFlag) (1 << i);
- coords = transform.Coordinates.Offset(direction.AsDir().ToVec());
-
- if (!IsTileBlockedByWeb(coords))
- {
- Spawn(component.WebPrototype, coords);
- result = true;
- }
- }
+ var direction = (DirectionFlag)(1 << i);
+ var outerSpawnCoordinates = coords.Offset(direction.AsDir().ToVec());
- if (result)
- {
- _popup.PopupEntity(Loc.GetString("spider-web-action-success"), args.Performer, args.Performer);
- args.Handled = true;
+ if (IsTileBlockedByWeb(outerSpawnCoordinates))
+ continue;
+
+ Spawn(ent.Comp.WebPrototype, outerSpawnCoordinates);
+ result = true;
}
- else
- _popup.PopupEntity(Loc.GetString("spider-web-action-fail"), args.Performer, args.Performer);
+
+ return result;
}
private bool IsTileBlockedByWeb(EntityCoordinates coords)
return false;
}
}
-