* Converted all SnapGridPositionChangedEvent subscriptions to AnchorStateChangedEvent. * Fixes power tests with new anchored requirements. * Moved AnchorableComponent into construction. AnchorableComponent now uses Transform.Anchored. * Fixed bug with nodes, power works again. * Adds lifetime stages to Component. * Update Engine to v0.4.70.
303 lines
9.9 KiB
C#
303 lines
9.9 KiB
C#
#nullable enable
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
using Content.Server.Battery.Components;
|
|
using Content.Server.Hands.Components;
|
|
using Content.Server.Items;
|
|
using Content.Server.Weapon.Ranged.Barrels.Components;
|
|
using Content.Shared.ActionBlocker;
|
|
using Content.Shared.Interaction;
|
|
using Content.Shared.Interaction.Events;
|
|
using Content.Shared.Notification.Managers;
|
|
using Content.Shared.Power;
|
|
using Content.Shared.Verbs;
|
|
using Robust.Server.GameObjects;
|
|
using Robust.Shared.Containers;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Localization;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Content.Server.Power.Components
|
|
{
|
|
[ComponentReference(typeof(IActivate))]
|
|
[ComponentReference(typeof(IInteractUsing))]
|
|
public abstract class BaseCharger : Component, IActivate, IInteractUsing
|
|
{
|
|
[ViewVariables]
|
|
private BatteryComponent? _heldBattery;
|
|
|
|
[ViewVariables]
|
|
private ContainerSlot _container = default!;
|
|
|
|
[ViewVariables]
|
|
private CellChargerStatus _status;
|
|
|
|
[ViewVariables]
|
|
[DataField("chargeRate")]
|
|
private int _chargeRate = 100;
|
|
|
|
[ViewVariables]
|
|
[DataField("transferEfficiency")]
|
|
private float _transferEfficiency = 0.85f;
|
|
|
|
protected override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
|
|
Owner.EnsureComponent<PowerReceiverComponent>();
|
|
_container = ContainerHelpers.EnsureContainer<ContainerSlot>(Owner, $"{Name}-powerCellContainer");
|
|
// Default state in the visualizer is OFF, so when this gets powered on during initialization it will generally show empty
|
|
}
|
|
|
|
public override void HandleMessage(ComponentMessage message, IComponent? component)
|
|
{
|
|
base.HandleMessage(message, component);
|
|
switch (message)
|
|
{
|
|
case PowerChangedMessage powerChanged:
|
|
PowerUpdate(powerChanged);
|
|
break;
|
|
}
|
|
}
|
|
|
|
protected override void OnRemove()
|
|
{
|
|
_heldBattery = null;
|
|
|
|
base.OnRemove();
|
|
}
|
|
|
|
async Task<bool> IInteractUsing.InteractUsing(InteractUsingEventArgs eventArgs)
|
|
{
|
|
var result = TryInsertItem(eventArgs.Using);
|
|
if (!result)
|
|
{
|
|
eventArgs.User.PopupMessage(Owner, Loc.GetString("Unable to insert capacitor"));
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
void IActivate.Activate(ActivateEventArgs eventArgs)
|
|
{
|
|
RemoveItem(eventArgs.User);
|
|
}
|
|
|
|
/// <summary>
|
|
/// This will remove the item directly into the user's hand / floor
|
|
/// </summary>
|
|
/// <param name="user"></param>
|
|
private void RemoveItem(IEntity user)
|
|
{
|
|
var heldItem = _container.ContainedEntity;
|
|
if (heldItem == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
_container.Remove(heldItem);
|
|
_heldBattery = null;
|
|
if (user.TryGetComponent(out HandsComponent? handsComponent))
|
|
{
|
|
handsComponent.PutInHandOrDrop(heldItem.GetComponent<ItemComponent>());
|
|
}
|
|
|
|
if (heldItem.TryGetComponent(out ServerBatteryBarrelComponent? batteryBarrelComponent))
|
|
{
|
|
batteryBarrelComponent.UpdateAppearance();
|
|
}
|
|
|
|
UpdateStatus();
|
|
}
|
|
|
|
private void PowerUpdate(PowerChangedMessage eventArgs)
|
|
{
|
|
UpdateStatus();
|
|
}
|
|
|
|
[Verb]
|
|
private sealed class InsertVerb : Verb<BaseCharger>
|
|
{
|
|
protected override void GetData(IEntity user, BaseCharger component, VerbData data)
|
|
{
|
|
if (!EntitySystem.Get<ActionBlockerSystem>().CanInteract(user))
|
|
{
|
|
data.Visibility = VerbVisibility.Invisible;
|
|
return;
|
|
}
|
|
if (!user.TryGetComponent(out HandsComponent? handsComponent))
|
|
{
|
|
data.Visibility = VerbVisibility.Invisible;
|
|
return;
|
|
}
|
|
|
|
if (component._container.ContainedEntity != null || handsComponent.GetActiveHand == null)
|
|
{
|
|
data.Visibility = VerbVisibility.Invisible;
|
|
return;
|
|
}
|
|
|
|
var heldItemName = Loc.GetString(handsComponent.GetActiveHand.Owner.Name);
|
|
|
|
data.Text = Loc.GetString("Insert {0}", heldItemName);
|
|
data.IconTexture = "/Textures/Interface/VerbIcons/insert.svg.192dpi.png";
|
|
}
|
|
|
|
protected override void Activate(IEntity user, BaseCharger component)
|
|
{
|
|
if (!user.TryGetComponent(out HandsComponent? handsComponent))
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (handsComponent.GetActiveHand == null)
|
|
{
|
|
return;
|
|
}
|
|
var userItem = handsComponent.GetActiveHand.Owner;
|
|
handsComponent.Drop(userItem);
|
|
component.TryInsertItem(userItem);
|
|
}
|
|
}
|
|
|
|
[Verb]
|
|
private sealed class EjectVerb : Verb<BaseCharger>
|
|
{
|
|
protected override void GetData(IEntity user, BaseCharger component, VerbData data)
|
|
{
|
|
if (!EntitySystem.Get<ActionBlockerSystem>().CanInteract(user))
|
|
{
|
|
data.Visibility = VerbVisibility.Invisible;
|
|
return;
|
|
}
|
|
if (component._container.ContainedEntity == null)
|
|
{
|
|
data.Visibility = VerbVisibility.Invisible;
|
|
return;
|
|
}
|
|
|
|
var containerItemName = Loc.GetString(component._container.ContainedEntity.Name);
|
|
|
|
data.Text = Loc.GetString("Eject {0}", containerItemName);
|
|
data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.192dpi.png";
|
|
}
|
|
|
|
protected override void Activate(IEntity user, BaseCharger component)
|
|
{
|
|
component.RemoveItem(user);
|
|
}
|
|
}
|
|
|
|
private CellChargerStatus GetStatus()
|
|
{
|
|
if (Owner.TryGetComponent(out PowerReceiverComponent? receiver) &&
|
|
!receiver.Powered)
|
|
{
|
|
return CellChargerStatus.Off;
|
|
}
|
|
if (_container.ContainedEntity == null)
|
|
{
|
|
return CellChargerStatus.Empty;
|
|
}
|
|
if (_heldBattery != null && Math.Abs(_heldBattery.MaxCharge - _heldBattery.CurrentCharge) < 0.01)
|
|
{
|
|
return CellChargerStatus.Charged;
|
|
}
|
|
return CellChargerStatus.Charging;
|
|
}
|
|
|
|
private bool TryInsertItem(IEntity entity)
|
|
{
|
|
if (!IsEntityCompatible(entity) || _container.ContainedEntity != null)
|
|
{
|
|
return false;
|
|
}
|
|
if (!_container.Insert(entity))
|
|
{
|
|
return false;
|
|
}
|
|
_heldBattery = GetBatteryFrom(entity);
|
|
UpdateStatus();
|
|
return true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// If the supplied entity should fit into the charger.
|
|
/// </summary>
|
|
protected abstract bool IsEntityCompatible(IEntity entity);
|
|
|
|
protected abstract BatteryComponent? GetBatteryFrom(IEntity entity);
|
|
|
|
private void UpdateStatus()
|
|
{
|
|
// Not called UpdateAppearance just because it messes with the load
|
|
var status = GetStatus();
|
|
if (_status == status ||
|
|
!Owner.TryGetComponent(out PowerReceiverComponent? receiver))
|
|
{
|
|
return;
|
|
}
|
|
|
|
_status = status;
|
|
Owner.TryGetComponent(out AppearanceComponent? appearance);
|
|
|
|
switch (_status)
|
|
{
|
|
// Update load just in case
|
|
case CellChargerStatus.Off:
|
|
receiver.Load = 0;
|
|
appearance?.SetData(CellVisual.Light, CellChargerStatus.Off);
|
|
break;
|
|
case CellChargerStatus.Empty:
|
|
receiver.Load = 0;
|
|
appearance?.SetData(CellVisual.Light, CellChargerStatus.Empty);
|
|
break;
|
|
case CellChargerStatus.Charging:
|
|
receiver.Load = (int) (_chargeRate / _transferEfficiency);
|
|
appearance?.SetData(CellVisual.Light, CellChargerStatus.Charging);
|
|
break;
|
|
case CellChargerStatus.Charged:
|
|
receiver.Load = 0;
|
|
appearance?.SetData(CellVisual.Light, CellChargerStatus.Charged);
|
|
break;
|
|
default:
|
|
throw new ArgumentOutOfRangeException();
|
|
}
|
|
|
|
appearance?.SetData(CellVisual.Occupied, _container.ContainedEntity != null);
|
|
}
|
|
|
|
public void OnUpdate(float frameTime) //todo: make single system for this
|
|
{
|
|
if (_status == CellChargerStatus.Empty || _status == CellChargerStatus.Charged || _container.ContainedEntity == null)
|
|
{
|
|
return;
|
|
}
|
|
TransferPower(frameTime);
|
|
}
|
|
|
|
private void TransferPower(float frameTime)
|
|
{
|
|
if (Owner.TryGetComponent(out PowerReceiverComponent? receiver) &&
|
|
!receiver.Powered)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (_heldBattery == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
_heldBattery.CurrentCharge += _chargeRate * frameTime;
|
|
// Just so the sprite won't be set to 99.99999% visibility
|
|
if (_heldBattery.MaxCharge - _heldBattery.CurrentCharge < 0.01)
|
|
{
|
|
_heldBattery.CurrentCharge = _heldBattery.MaxCharge;
|
|
}
|
|
UpdateStatus();
|
|
}
|
|
}
|
|
}
|