mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
230 lines
9.0 KiB
C#
230 lines
9.0 KiB
C#
using System.Collections.Generic;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Maths;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
using Robust.Shared.Utility;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Robust.Shared.Containers
|
|
{
|
|
/// <summary>
|
|
/// Base container class that all container inherit from.
|
|
/// </summary>
|
|
public abstract class BaseContainer : IContainer
|
|
{
|
|
/// <inheritdoc />
|
|
[ViewVariables]
|
|
public abstract IReadOnlyList<EntityUid> ContainedEntities { get; }
|
|
|
|
[ViewVariables]
|
|
public abstract List<EntityUid> ExpectedEntities { get; }
|
|
|
|
/// <inheritdoc />
|
|
public abstract string ContainerType { get; }
|
|
|
|
/// <inheritdoc />
|
|
[ViewVariables]
|
|
public bool Deleted { get; private set; }
|
|
|
|
/// <inheritdoc />
|
|
[ViewVariables]
|
|
public string ID { get; internal set; } = default!; // Make sure you set me in init
|
|
|
|
/// <inheritdoc />
|
|
public IContainerManager Manager { get; internal set; } = default!; // Make sure you set me in init
|
|
|
|
/// <inheritdoc />
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[DataField("occludes")]
|
|
public bool OccludesLight { get; set; } = true;
|
|
|
|
/// <inheritdoc />
|
|
[ViewVariables]
|
|
public EntityUid Owner => Manager.Owner;
|
|
|
|
/// <inheritdoc />
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[DataField("showEnts")]
|
|
public bool ShowContents { get; set; }
|
|
|
|
/// <summary>
|
|
/// DO NOT CALL THIS METHOD DIRECTLY!
|
|
/// You want <see cref="IContainerManager.MakeContainer{T}(string)" /> instead.
|
|
/// </summary>
|
|
protected BaseContainer() { }
|
|
|
|
/// <inheritdoc />
|
|
public bool Insert(EntityUid toinsert, IEntityManager? entMan = null, TransformComponent? transform = null, TransformComponent? ownerTransform = null, MetaDataComponent? meta = null)
|
|
{
|
|
DebugTools.Assert(!Deleted);
|
|
DebugTools.Assert(transform == null || transform.Owner == toinsert);
|
|
DebugTools.Assert(ownerTransform == null || ownerTransform.Owner == Owner);
|
|
IoCManager.Resolve(ref entMan);
|
|
|
|
//Verify we can insert into this container
|
|
if (!CanInsert(toinsert, entMan))
|
|
return false;
|
|
|
|
transform ??= entMan.GetComponent<TransformComponent>(toinsert);
|
|
|
|
// CanInsert already checks nullability of Parent (or container forgot to call base that does)
|
|
if (toinsert.TryGetContainerMan(out var containerManager, entMan) && !containerManager.Remove(toinsert))
|
|
return false; // Can't remove from existing container, can't insert.
|
|
|
|
// Attach to parent first so we can check IsInContainer more easily.
|
|
ownerTransform ??= entMan.GetComponent<TransformComponent>(Owner);
|
|
transform.AttachParent(ownerTransform);
|
|
InternalInsert(toinsert, entMan, meta);
|
|
|
|
// This is an edge case where the parent grid is the container being inserted into, so AttachParent would not unanchor.
|
|
if (transform.Anchored)
|
|
transform.Anchored = false;
|
|
|
|
// spatially move the object to the location of the container. If you don't want this functionality, the
|
|
// calling code can save the local position before calling this function, and apply it afterwords.
|
|
transform.LocalPosition = Vector2.Zero;
|
|
transform.LocalRotation = Angle.Zero;
|
|
|
|
return true;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public virtual bool CanInsert(EntityUid toinsert, IEntityManager? entMan = null)
|
|
{
|
|
DebugTools.Assert(!Deleted);
|
|
|
|
// cannot insert into itself.
|
|
if (Owner == toinsert)
|
|
return false;
|
|
|
|
IoCManager.Resolve(ref entMan);
|
|
|
|
// no, you can't put maps or grids into containers
|
|
if (entMan.HasComponent<IMapComponent>(toinsert) || entMan.HasComponent<IMapGridComponent>(toinsert))
|
|
return false;
|
|
|
|
// Crucial, prevent circular insertion.
|
|
if (entMan.GetComponent<TransformComponent>(toinsert)
|
|
.ContainsEntity(entMan.GetComponent<TransformComponent>(Owner)))
|
|
return false;
|
|
|
|
//Improvement: Traverse the entire tree to make sure we are not creating a loop.
|
|
|
|
//raise events
|
|
var insertAttemptEvent = new ContainerIsInsertingAttemptEvent(this, toinsert);
|
|
entMan.EventBus.RaiseLocalEvent(Owner, insertAttemptEvent);
|
|
if (insertAttemptEvent.Cancelled)
|
|
return false;
|
|
|
|
var gettingInsertedAttemptEvent = new ContainerGettingInsertedAttemptEvent(this, toinsert);
|
|
entMan.EventBus.RaiseLocalEvent(toinsert, gettingInsertedAttemptEvent);
|
|
if (gettingInsertedAttemptEvent.Cancelled)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public bool Remove(EntityUid toremove, IEntityManager? entMan = null, TransformComponent? xform = null, MetaDataComponent? meta = null)
|
|
{
|
|
DebugTools.Assert(!Deleted);
|
|
DebugTools.AssertNotNull(Manager);
|
|
DebugTools.AssertNotNull(toremove);
|
|
IoCManager.Resolve(ref entMan);
|
|
DebugTools.Assert(entMan.EntityExists(toremove));
|
|
DebugTools.Assert(xform == null || xform.Owner == toremove);
|
|
|
|
if (!CanRemove(toremove, entMan)) return false;
|
|
InternalRemove(toremove, entMan, meta);
|
|
|
|
xform ??= entMan.GetComponent<TransformComponent>(toremove);
|
|
xform.AttachParentToContainerOrGrid(entMan);
|
|
return true;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void ForceRemove(EntityUid toRemove, IEntityManager? entMan = null, MetaDataComponent? meta = null)
|
|
{
|
|
DebugTools.Assert(!Deleted);
|
|
DebugTools.AssertNotNull(Manager);
|
|
DebugTools.AssertNotNull(toRemove);
|
|
IoCManager.Resolve(ref entMan);
|
|
DebugTools.Assert(entMan.EntityExists(toRemove));
|
|
|
|
InternalRemove(toRemove, entMan, meta);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public virtual bool CanRemove(EntityUid toremove, IEntityManager? entMan = null)
|
|
{
|
|
DebugTools.Assert(!Deleted);
|
|
|
|
if (!Contains(toremove))
|
|
return false;
|
|
|
|
IoCManager.Resolve(ref entMan);
|
|
|
|
//raise events
|
|
var removeAttemptEvent = new ContainerIsRemovingAttemptEvent(this, toremove);
|
|
entMan.EventBus.RaiseLocalEvent(Owner, removeAttemptEvent);
|
|
if (removeAttemptEvent.Cancelled)
|
|
return false;
|
|
|
|
var gettingRemovedAttemptEvent = new ContainerGettingRemovedAttemptEvent(this, toremove);
|
|
entMan.EventBus.RaiseLocalEvent(toremove, gettingRemovedAttemptEvent);
|
|
if (gettingRemovedAttemptEvent.Cancelled)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public abstract bool Contains(EntityUid contained);
|
|
|
|
/// <inheritdoc />
|
|
public virtual void Shutdown()
|
|
{
|
|
Manager.InternalContainerShutdown(this);
|
|
Deleted = true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Implement to store the reference in whatever form you want
|
|
/// </summary>
|
|
/// <param name="toinsert"></param>
|
|
/// <param name="entMan"></param>
|
|
protected virtual void InternalInsert(EntityUid toinsert, IEntityManager entMan, MetaDataComponent? meta = null)
|
|
{
|
|
DebugTools.Assert(!Deleted);
|
|
DebugTools.Assert(meta == null || meta.Owner == toinsert);
|
|
|
|
meta ??= entMan.GetComponent<MetaDataComponent>(toinsert);
|
|
meta.Flags |= MetaDataFlags.InContainer;
|
|
entMan.EventBus.RaiseLocalEvent(Owner, new EntInsertedIntoContainerMessage(toinsert, this));
|
|
entMan.EventBus.RaiseEvent(EventSource.Local, new UpdateContainerOcclusionMessage(toinsert));
|
|
Manager.Dirty(entMan);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Implement to remove the reference you used to store the entity
|
|
/// </summary>
|
|
/// <param name="toremove"></param>
|
|
/// <param name="entMan"></param>
|
|
protected virtual void InternalRemove(EntityUid toremove, IEntityManager entMan, MetaDataComponent? meta = null)
|
|
{
|
|
DebugTools.Assert(!Deleted);
|
|
DebugTools.AssertNotNull(Manager);
|
|
DebugTools.AssertNotNull(toremove);
|
|
DebugTools.Assert(entMan.EntityExists(toremove));
|
|
DebugTools.Assert(meta == null || meta.Owner == toremove);
|
|
|
|
meta ??= entMan.GetComponent<MetaDataComponent>(toremove);
|
|
meta.Flags &= ~MetaDataFlags.InContainer;
|
|
entMan.EventBus.RaiseLocalEvent(Owner, new EntRemovedFromContainerMessage(toremove, this));
|
|
entMan.EventBus.RaiseEvent(EventSource.Local, new UpdateContainerOcclusionMessage(toremove));
|
|
Manager.Dirty(entMan);
|
|
}
|
|
}
|
|
}
|