Co-authored-by: Víctor Aguilera Puerto <6766154+Zumorica@users.noreply.github.com> Co-authored-by: ComicIronic <comicironic@gmail.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
126 lines
3.7 KiB
C#
126 lines
3.7 KiB
C#
using System;
|
|
using Content.Server.GameObjects.EntitySystems.Click;
|
|
using Content.Server.Interfaces.GameObjects.Components.Interaction;
|
|
using Content.Server.Utility;
|
|
using Content.Shared.GameObjects.Components;
|
|
using Content.Shared.Interfaces;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Localization;
|
|
using Robust.Shared.Map;
|
|
using Robust.Shared.Timers;
|
|
using Robust.Shared.Utility;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Content.Server.GameObjects.Components.Stack
|
|
{
|
|
|
|
// TODO: Naming and presentation and such could use some improvement.
|
|
[RegisterComponent]
|
|
public class StackComponent : SharedStackComponent, IInteractUsing, IExamine
|
|
{
|
|
#pragma warning disable 649
|
|
[Dependency] private readonly ISharedNotifyManager _sharedNotifyManager;
|
|
#pragma warning restore 649
|
|
|
|
private bool _throwIndividually = false;
|
|
|
|
public override int Count
|
|
{
|
|
get => base.Count;
|
|
set
|
|
{
|
|
base.Count = value;
|
|
|
|
if (Count <= 0)
|
|
{
|
|
Owner.Delete();
|
|
}
|
|
}
|
|
}
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public bool ThrowIndividually
|
|
{
|
|
get => _throwIndividually;
|
|
private set
|
|
{
|
|
_throwIndividually = value;
|
|
Dirty();
|
|
}
|
|
}
|
|
|
|
public void Add(int amount)
|
|
{
|
|
Count += amount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Try to use an amount of items on this stack.
|
|
/// </summary>
|
|
/// <param name="amount"></param>
|
|
/// <returns>True if there were enough items to remove, false if not in which case nothing was changed.</returns>
|
|
public bool Use(int amount)
|
|
{
|
|
if (Count >= amount)
|
|
{
|
|
Count -= amount;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public bool InteractUsing(InteractUsingEventArgs eventArgs)
|
|
{
|
|
if (eventArgs.Using.TryGetComponent<StackComponent>(out var stack))
|
|
{
|
|
if (!stack.StackType.Equals(StackType))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var toTransfer = Math.Min(Count, stack.AvailableSpace);
|
|
Count -= toTransfer;
|
|
stack.Add(toTransfer);
|
|
|
|
var popupPos = eventArgs.ClickLocation;
|
|
if (popupPos == GridCoordinates.InvalidGrid)
|
|
{
|
|
popupPos = eventArgs.User.Transform.GridPosition;
|
|
}
|
|
|
|
|
|
if (toTransfer > 0)
|
|
{
|
|
_sharedNotifyManager.PopupMessage(popupPos, eventArgs.User, $"+{toTransfer}");
|
|
|
|
if (stack.AvailableSpace == 0)
|
|
{
|
|
|
|
Timer.Spawn(300, () => _sharedNotifyManager.PopupMessage(popupPos, eventArgs.User, "Stack is now full."));
|
|
}
|
|
return true;
|
|
}
|
|
else if (toTransfer == 0 && stack.AvailableSpace == 0)
|
|
{
|
|
_sharedNotifyManager.PopupMessage(popupPos, eventArgs.User, "Stack is already full.");
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void IExamine.Examine(FormattedMessage message, bool inDetailsRange)
|
|
{
|
|
if (inDetailsRange)
|
|
{
|
|
var loc = IoCManager.Resolve<ILocalizationManager>();
|
|
message.AddMarkup(loc.GetPluralString(
|
|
"There is [color=lightgray]1[/color] thing in the stack",
|
|
"There are [color=lightgray]{0}[/color] things in the stack.", Count, Count));
|
|
}
|
|
}
|
|
}
|
|
}
|