using System.Linq;
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;
public sealed class SpiderSystem : SharedSpiderSystem
{
[Dependency] private readonly PopupSystem _popup = default!;
[Dependency] private readonly TurfSystem _turf = default!;
[Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly MobStateSystem _mobState = default!;
///
/// A recycled hashset used to check turfs for spiderwebs.
///
private readonly HashSet _webs = [];
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent(OnSpawnNet);
}
public override void Update(float frameTime)
{
base.Update(frameTime);
var query = EntityQueryEnumerator();
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(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 transform = Transform(uid);
if (transform.GridUid == null)
{
_popup.PopupEntity(Loc.GetString("spider-web-action-nogrid"), args.Performer, args.Performer);
return;
}
var result = SpawnWeb((uid, component), transform.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 ent, EntityCoordinates coords)
{
var result = false;
// Spawn web in center
if (!IsTileBlockedByWeb(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);
var outerSpawnCoordinates = coords.Offset(direction.AsDir().ToVec());
if (IsTileBlockedByWeb(outerSpawnCoordinates))
continue;
Spawn(ent.Comp.WebPrototype, outerSpawnCoordinates);
result = true;
}
return result;
}
private bool IsTileBlockedByWeb(EntityCoordinates coords)
{
_webs.Clear();
_turf.GetEntitiesInTile(coords, _webs);
foreach (var entity in _webs)
{
if (HasComp(entity))
return true;
}
return false;
}
}