mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
62 lines
1.9 KiB
C#
62 lines
1.9 KiB
C#
using System.ComponentModel;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Robust.Shared.Containers;
|
|
|
|
public abstract class ContainerAttemptEventBase : CancellableEntityEventArgs
|
|
{
|
|
public readonly BaseContainer Container;
|
|
public readonly EntityUid EntityUid;
|
|
|
|
public ContainerAttemptEventBase(BaseContainer container, EntityUid entityUid)
|
|
{
|
|
Container = container;
|
|
EntityUid = entityUid;
|
|
}
|
|
}
|
|
|
|
public sealed class ContainerIsInsertingAttemptEvent : ContainerAttemptEventBase
|
|
{
|
|
/// <summary>
|
|
/// If true, this check should assume that the container is currently empty.
|
|
/// I.e., could the entity be inserted if the container doesn't contain anything else?
|
|
/// </summary>
|
|
public bool AssumeEmpty { get; set; }
|
|
|
|
public ContainerIsInsertingAttemptEvent(BaseContainer container, EntityUid entityUid, bool assumeEmpty)
|
|
: base(container, entityUid)
|
|
{
|
|
AssumeEmpty = assumeEmpty;
|
|
}
|
|
}
|
|
|
|
public sealed class ContainerGettingInsertedAttemptEvent : ContainerAttemptEventBase
|
|
{
|
|
/// <summary>
|
|
/// If true, this check should assume that the container is currently empty.
|
|
/// I.e., could the entity be inserted if the container doesn't contain anything else?
|
|
/// </summary>
|
|
public bool AssumeEmpty { get; set; }
|
|
|
|
public ContainerGettingInsertedAttemptEvent(BaseContainer container, EntityUid entityUid, bool assumeEmpty)
|
|
: base(container, entityUid)
|
|
{
|
|
AssumeEmpty = assumeEmpty;
|
|
}
|
|
}
|
|
|
|
public sealed class ContainerIsRemovingAttemptEvent : ContainerAttemptEventBase
|
|
{
|
|
public ContainerIsRemovingAttemptEvent(BaseContainer container, EntityUid entityUid) : base(container, entityUid)
|
|
{
|
|
}
|
|
}
|
|
|
|
public sealed class ContainerGettingRemovedAttemptEvent : ContainerAttemptEventBase
|
|
{
|
|
public ContainerGettingRemovedAttemptEvent(BaseContainer container, EntityUid entityUid) : base(container, entityUid)
|
|
{
|
|
}
|
|
}
|