Files
wwdpublic/Content.Server/Power/Generator/ChemicalFuelGeneratorAdapterComponent.cs
sleepyyapril 4b8b0591d6 v239.0.0 + .NET 9 (#1475)
yeag

---------

Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
Co-authored-by: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com>

(cherry picked from commit 64a389a1158d22fbe7cdbe0a71d223b66dcfd5b6)
2025-01-14 02:18:31 +03:00

42 lines
1.4 KiB
C#

using Content.Shared.Chemistry.Components;
using Content.Shared.Chemistry.Components.SolutionManager;
using Content.Shared.Chemistry.Reagent;
using Content.Shared.FixedPoint;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.Power.Generator;
/// <summary>
/// This is used for chemical fuel input into generators.
/// </summary>
[RegisterComponent, Access(typeof(GeneratorSystem))]
public sealed partial class ChemicalFuelGeneratorAdapterComponent : Component
{
/// <summary>
/// A dictionary relating a reagent to accept as fuel to a value to multiply reagent amount by to get fuel amount.
/// </summary>
[DataField]
public Dictionary<ProtoId<ReagentPrototype>, float> Reagents = new();
/// <summary>
/// The name of <see cref="Solution"/>.
/// </summary>
[DataField("solution")]
[ViewVariables(VVAccess.ReadWrite)]
public string SolutionName = "tank";
/// <summary>
/// The solution on the <see cref="SolutionContainerManagerComponent"/> to use.
/// </summary>
[ViewVariables]
public Entity<SolutionComponent>? Solution = null;
/// <summary>
/// How much reagent (can be fractional) is left in the generator.
/// Stored in units of <see cref="FixedPoint2.Epsilon"/>.
/// </summary>
[DataField]
public Dictionary<ProtoId<ReagentPrototype>, float> FractionalReagents = new();
}