Re-organize all projects (#4166)
This commit is contained in:
85
Content.Shared/Spawning/EntitySystemExtensions.cs
Normal file
85
Content.Shared/Spawning/EntitySystemExtensions.cs
Normal file
@@ -0,0 +1,85 @@
|
||||
#nullable enable
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using Content.Shared.Physics;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Map;
|
||||
using Robust.Shared.Maths;
|
||||
using Robust.Shared.Physics.Broadphase;
|
||||
|
||||
namespace Content.Shared.Spawning
|
||||
{
|
||||
public static class EntitySystemExtensions
|
||||
{
|
||||
public static IEntity? SpawnIfUnobstructed(
|
||||
this IEntityManager entityManager,
|
||||
string? prototypeName,
|
||||
EntityCoordinates coordinates,
|
||||
CollisionGroup collisionLayer,
|
||||
in Box2? box = null,
|
||||
SharedBroadPhaseSystem? physicsManager = null)
|
||||
{
|
||||
physicsManager ??= EntitySystem.Get<SharedBroadPhaseSystem>();
|
||||
var mapCoordinates = coordinates.ToMap(entityManager);
|
||||
|
||||
return entityManager.SpawnIfUnobstructed(prototypeName, mapCoordinates, collisionLayer, box, physicsManager);
|
||||
}
|
||||
|
||||
public static IEntity? SpawnIfUnobstructed(
|
||||
this IEntityManager entityManager,
|
||||
string? prototypeName,
|
||||
MapCoordinates coordinates,
|
||||
CollisionGroup collisionLayer,
|
||||
in Box2? box = null,
|
||||
SharedBroadPhaseSystem? collision = null)
|
||||
{
|
||||
var boxOrDefault = box.GetValueOrDefault(Box2.UnitCentered);
|
||||
collision ??= EntitySystem.Get<SharedBroadPhaseSystem>();
|
||||
|
||||
foreach (var body in collision.GetCollidingEntities(coordinates.MapId, in boxOrDefault))
|
||||
{
|
||||
if (!body.Hard)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
// TODO: wtf fix this
|
||||
if (collisionLayer == 0 || (body.CollisionMask & (int) collisionLayer) == 0)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
return entityManager.SpawnEntity(prototypeName, coordinates);
|
||||
}
|
||||
|
||||
public static bool TrySpawnIfUnobstructed(
|
||||
this IEntityManager entityManager,
|
||||
string? prototypeName,
|
||||
EntityCoordinates coordinates,
|
||||
CollisionGroup collisionLayer,
|
||||
[NotNullWhen(true)] out IEntity? entity,
|
||||
Box2? box = null,
|
||||
SharedBroadPhaseSystem? physicsManager = null)
|
||||
{
|
||||
entity = entityManager.SpawnIfUnobstructed(prototypeName, coordinates, collisionLayer, box, physicsManager);
|
||||
|
||||
return entity != null;
|
||||
}
|
||||
|
||||
public static bool TrySpawnIfUnobstructed(
|
||||
this IEntityManager entityManager,
|
||||
string? prototypeName,
|
||||
MapCoordinates coordinates,
|
||||
CollisionGroup collisionLayer,
|
||||
[NotNullWhen(true)] out IEntity? entity,
|
||||
in Box2? box = null,
|
||||
SharedBroadPhaseSystem? physicsManager = null)
|
||||
{
|
||||
entity = entityManager.SpawnIfUnobstructed(prototypeName, coordinates, collisionLayer, box, physicsManager);
|
||||
|
||||
return entity != null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user