Files
tbd-station-14/Content.Shared/Cargo/CargoOrderData.cs
eoineoineoin 6722adcd83 Cleanup cargo shuttle/telepad order code (#13591)
Co-authored-by: Eoin Mcloughlin <helloworld@eoinrul.es>
2023-03-05 15:27:30 +11:00

61 lines
1.9 KiB
C#

using Robust.Shared.Serialization;
using Content.Shared.Access.Components;
using System.Text;
namespace Content.Shared.Cargo
{
[NetSerializable, Serializable]
public sealed class CargoOrderData
{
/// <summary>
/// A unique (arbitrary) ID which identifies this order.
/// </summary>
public readonly int OrderId;
/// <summary>
/// Prototype id for the item to create
/// </summary>
public readonly string ProductId;
/// <summary>
/// The number of items in the order. Not readonly, as it might change
/// due to caps on the amount of orders that can be placed.
/// </summary>
public int OrderQuantity;
/// <summary>
/// How many instances of this order that we've already dispatched
/// <summary>
public int NumDispatched = 0;
public readonly string Requester;
// public String RequesterRank; // TODO Figure out how to get Character ID card data
// public int RequesterId;
public readonly string Reason;
public bool Approved => Approver is not null;
public string? Approver;
public CargoOrderData(int orderId, string productId, int amount, string requester, string reason)
{
OrderId = orderId;
ProductId = productId;
OrderQuantity = amount;
Requester = requester;
Reason = reason;
}
public void SetApproverData(IdCardComponent? idCard)
{
var sb = new StringBuilder();
if (!string.IsNullOrWhiteSpace(idCard?.FullName))
{
sb.Append($"{idCard.FullName} ");
}
if (!string.IsNullOrWhiteSpace(idCard?.JobTitle))
{
sb.Append($"({idCard.JobTitle})");
}
Approver = sb.ToString();
}
}
}