# Conflicts: # Content.Server/Traitor/Uplink/UplinkSystem.cs # Resources/Textures/Objects/Storage/Briefcases/briefcase_brown.rsi/icon.png # Resources/Textures/Objects/Storage/Briefcases/briefcase_brown.rsi/meta.json # Resources/Textures/Objects/Storage/boxes.rsi/beaker.png # Resources/Textures/Objects/Storage/boxes.rsi/bodybags.png # Resources/Textures/Objects/Storage/boxes.rsi/bottle.png # Resources/Textures/Objects/Storage/boxes.rsi/box.png # Resources/Textures/Objects/Storage/boxes.rsi/box_hug.png # Resources/Textures/Objects/Storage/boxes.rsi/box_of_doom.png # Resources/Textures/Objects/Storage/boxes.rsi/box_of_doom_big.png # Resources/Textures/Objects/Storage/boxes.rsi/box_olive.png # Resources/Textures/Objects/Storage/boxes.rsi/box_science.png # Resources/Textures/Objects/Storage/boxes.rsi/box_security.png # Resources/Textures/Objects/Storage/boxes.rsi/boxwide.png # Resources/Textures/Objects/Storage/boxes.rsi/boxwidetoy.png # Resources/Textures/Objects/Storage/boxes.rsi/candle.png # Resources/Textures/Objects/Storage/boxes.rsi/circuit.png # Resources/Textures/Objects/Storage/boxes.rsi/clown.png # Resources/Textures/Objects/Storage/boxes.rsi/darts.png # Resources/Textures/Objects/Storage/boxes.rsi/disk.png # Resources/Textures/Objects/Storage/boxes.rsi/emergencytank.png # Resources/Textures/Objects/Storage/boxes.rsi/encryptokey.png # Resources/Textures/Objects/Storage/boxes.rsi/evidence_markers.png # Resources/Textures/Objects/Storage/boxes.rsi/extendedtank.png # Resources/Textures/Objects/Storage/boxes.rsi/flare.png # Resources/Textures/Objects/Storage/boxes.rsi/flashbang.png # Resources/Textures/Objects/Storage/boxes.rsi/forensic.png # Resources/Textures/Objects/Storage/boxes.rsi/glasses.png # Resources/Textures/Objects/Storage/boxes.rsi/handcuff.png # Resources/Textures/Objects/Storage/boxes.rsi/headset.png # Resources/Textures/Objects/Storage/boxes.rsi/heart.png # Resources/Textures/Objects/Storage/boxes.rsi/holo.png # Resources/Textures/Objects/Storage/boxes.rsi/implant.png # Resources/Textures/Objects/Storage/boxes.rsi/inflatable.png # Resources/Textures/Objects/Storage/boxes.rsi/internals.png # Resources/Textures/Objects/Storage/boxes.rsi/latex.png # Resources/Textures/Objects/Storage/boxes.rsi/light.png # Resources/Textures/Objects/Storage/boxes.rsi/lightmixed.png # Resources/Textures/Objects/Storage/boxes.rsi/lighttube.png # Resources/Textures/Objects/Storage/boxes.rsi/magazine.png # Resources/Textures/Objects/Storage/boxes.rsi/meson.png # Resources/Textures/Objects/Storage/boxes.rsi/meta.json # Resources/Textures/Objects/Storage/boxes.rsi/mousetraps.png # Resources/Textures/Objects/Storage/boxes.rsi/nitrile.png # Resources/Textures/Objects/Storage/boxes.rsi/omegacart.png # Resources/Textures/Objects/Storage/boxes.rsi/pda.png # Resources/Textures/Objects/Storage/boxes.rsi/pillbox.png # Resources/Textures/Objects/Storage/boxes.rsi/sechud.png # Resources/Textures/Objects/Storage/boxes.rsi/shellbeanbag.png # Resources/Textures/Objects/Storage/boxes.rsi/shellflare.png # Resources/Textures/Objects/Storage/boxes.rsi/shellflash.png # Resources/Textures/Objects/Storage/boxes.rsi/shellincendiary.png # Resources/Textures/Objects/Storage/boxes.rsi/shelllethal.png # Resources/Textures/Objects/Storage/boxes.rsi/shellpractice.png # Resources/Textures/Objects/Storage/boxes.rsi/shellslug.png # Resources/Textures/Objects/Storage/boxes.rsi/shelltoy.png # Resources/Textures/Objects/Storage/boxes.rsi/solution_trays.png # Resources/Textures/Objects/Storage/boxes.rsi/sterile.png # Resources/Textures/Objects/Storage/boxes.rsi/swab.png # Resources/Textures/Objects/Storage/boxes.rsi/syringe.png # Resources/Textures/Objects/Storage/boxes.rsi/trashbag.png # Resources/Textures/Objects/Storage/boxes.rsi/vials.png # Resources/Textures/Objects/Storage/boxes.rsi/writing.png # Resources/Textures/Objects/Storage/boxes.rsi/writing_of_doom.png # Resources/Textures/Objects/Storage/boxes.rsi/ziptie.png # Resources/migration.yml
180 lines
6.3 KiB
C#
180 lines
6.3 KiB
C#
using System.Linq;
|
|
using Content.Server.Store.Systems;
|
|
using Content.Server.StoreDiscount.Systems;
|
|
using Content.Shared.FixedPoint;
|
|
using Content.Shared.Hands.EntitySystems;
|
|
using Content.Shared.Implants;
|
|
using Content.Shared.Inventory;
|
|
using Content.Shared.Mind;
|
|
using Content.Shared.PDA;
|
|
using Content.Shared.Store;
|
|
using Content.Shared.Store.Components;
|
|
using Content.Shared.Tag;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.Traitor.Uplink;
|
|
|
|
public sealed class UplinkSystem : EntitySystem
|
|
{
|
|
[Dependency] private readonly InventorySystem _inventorySystem = default!;
|
|
[Dependency] private readonly SharedHandsSystem _handsSystem = default!;
|
|
[Dependency] private readonly IPrototypeManager _proto = default!;
|
|
[Dependency] private readonly StoreSystem _store = default!;
|
|
[Dependency] private readonly SharedSubdermalImplantSystem _subdermalImplant = default!;
|
|
[Dependency] private readonly SharedMindSystem _mind = default!;
|
|
[Dependency] private readonly TagSystem _tagSystem = default!;
|
|
|
|
[ValidatePrototypeId<CurrencyPrototype>]
|
|
public const string TelecrystalCurrencyPrototype = "Telecrystal";
|
|
private const string FallbackUplinkImplant = "UplinkImplant";
|
|
private const string FallbackUplinkCatalog = "UplinkUplinkImplanter";
|
|
|
|
/// <summary>
|
|
/// Adds an uplink to the target
|
|
/// </summary>
|
|
/// <param name="user">The person who is getting the uplink</param>
|
|
/// <param name="balance">The amount of currency on the uplink. If null, will just use the amount specified in the preset.</param>
|
|
/// <param name="uplinkEntity">The entity that will actually have the uplink functionality. Defaults to the PDA if null.</param>
|
|
/// <param name="giveDiscounts">Marker that enables discounts for uplink items.</param>
|
|
/// <returns>Whether or not the uplink was added successfully</returns>
|
|
public bool AddUplink(
|
|
EntityUid user,
|
|
FixedPoint2 balance,
|
|
EntityUid? uplinkEntity = null,
|
|
bool giveDiscounts = false)
|
|
{
|
|
// Try to find target item if none passed
|
|
|
|
uplinkEntity ??= FindUplinkTarget(user);
|
|
|
|
if (uplinkEntity == null)
|
|
return ImplantUplink(user, balance, giveDiscounts);
|
|
|
|
EnsureComp<UplinkComponent>(uplinkEntity.Value);
|
|
|
|
SetUplink(user, uplinkEntity.Value, balance, giveDiscounts);
|
|
|
|
// TODO add BUI. Currently can't be done outside of yaml -_-
|
|
// ^ What does this even mean?
|
|
|
|
return true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Configure TC for the uplink
|
|
/// </summary>
|
|
public void SetUplink(EntityUid user, EntityUid uplink, FixedPoint2 balance, bool giveDiscounts)
|
|
{
|
|
if (!_mind.TryGetMind(user, out var mind, out _))
|
|
return;
|
|
|
|
var store = EnsureComp<StoreComponent>(uplink);
|
|
|
|
store.AccountOwner = mind;
|
|
|
|
store.Balance.Clear();
|
|
_store.TryAddCurrency(new Dictionary<string, FixedPoint2> { { TelecrystalCurrencyPrototype, balance } },
|
|
uplink,
|
|
store);
|
|
|
|
var uplinkInitializedEvent = new StoreInitializedEvent(
|
|
TargetUser: mind,
|
|
Store: uplink,
|
|
UseDiscounts: giveDiscounts,
|
|
Listings: _store.GetAvailableListings(mind, uplink, store)
|
|
.ToArray());
|
|
RaiseLocalEvent(ref uplinkInitializedEvent);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Implant an uplink as a fallback measure if the traitor had no PDA
|
|
/// </summary>
|
|
private bool ImplantUplink(EntityUid user, FixedPoint2 balance, bool giveDiscounts)
|
|
{
|
|
var implantProto = new string(FallbackUplinkImplant);
|
|
|
|
if (!_proto.TryIndex<ListingPrototype>(FallbackUplinkCatalog, out var catalog))
|
|
return false;
|
|
|
|
if (!catalog.Cost.TryGetValue(TelecrystalCurrencyPrototype, out var cost))
|
|
return false;
|
|
|
|
if (balance < cost) // Can't use Math functions on FixedPoint2
|
|
balance = 0;
|
|
else
|
|
balance = balance - cost;
|
|
|
|
var implant = _subdermalImplant.AddImplant(user, implantProto);
|
|
|
|
if (!HasComp<StoreComponent>(implant))
|
|
return false;
|
|
|
|
SetUplink(user, implant.Value, balance, giveDiscounts);
|
|
return true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Finds the entity that can hold an uplink for a user.
|
|
/// Usually this is a pda in their pda slot, but can also be in their hands. (but not pockets or inside bag, etc.)
|
|
/// </summary>
|
|
public EntityUid? FindUplinkTarget(EntityUid user)
|
|
{
|
|
// Try to find PDA in inventory
|
|
if (_inventorySystem.TryGetContainerSlotEnumerator(user, out var containerSlotEnumerator))
|
|
{
|
|
while (containerSlotEnumerator.MoveNext(out var pdaUid))
|
|
{
|
|
if (!pdaUid.ContainedEntity.HasValue)
|
|
continue;
|
|
|
|
// Sunrtise-Start
|
|
if (_tagSystem.HasTag(pdaUid.ContainedEntity.Value, "SunriseUplink"))
|
|
continue;
|
|
// Sunrtise-End
|
|
|
|
if (HasComp<PdaComponent>(pdaUid.ContainedEntity.Value) || HasComp<StoreComponent>(pdaUid.ContainedEntity.Value))
|
|
return pdaUid.ContainedEntity.Value;
|
|
}
|
|
}
|
|
|
|
// Also check hands
|
|
foreach (var item in _handsSystem.EnumerateHeld(user))
|
|
{
|
|
// Sunrtise-Start
|
|
if (_tagSystem.HasTag(item, "SunriseUplink"))
|
|
continue;
|
|
// Sunrtise-End
|
|
|
|
if (HasComp<PdaComponent>(item) || HasComp<StoreComponent>(item))
|
|
return item;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
// Sunrtise-Start
|
|
public EntityUid? FindUplinkByTag(EntityUid user, string tag)
|
|
{
|
|
// Try to find PDA in inventory
|
|
if (_inventorySystem.TryGetContainerSlotEnumerator(user, out var containerSlotEnumerator))
|
|
{
|
|
while (containerSlotEnumerator.MoveNext(out var uplinkUid))
|
|
{
|
|
if (!uplinkUid.ContainedEntity.HasValue) continue;
|
|
|
|
if (_tagSystem.HasTag(uplinkUid.ContainedEntity.Value, tag))
|
|
return uplinkUid.ContainedEntity.Value;
|
|
}
|
|
}
|
|
|
|
// Also check hands
|
|
foreach (var item in _handsSystem.EnumerateHeld(user))
|
|
{
|
|
if (_tagSystem.HasTag(item, tag))
|
|
return item;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
// Sunrtise-End
|
|
}
|