Files
crystall-punk-14/Content.Server/Atmos/EntitySystems/GasTankSystem.cs

425 lines
16 KiB
C#
Raw Normal View History

using Content.Server.Atmos.Components;
2022-07-25 14:42:25 +10:00
using Content.Server.Body.Components;
using Content.Server.Body.Systems;
2022-09-17 00:04:25 +10:00
using Content.Server.Cargo.Systems;
2022-07-25 14:42:25 +10:00
using Content.Server.Explosion.EntitySystems;
using Content.Shared.UserInterface;
using Content.Shared.Actions;
2022-07-25 14:42:25 +10:00
using Content.Shared.Atmos;
using Content.Shared.Atmos.Components;
2022-04-08 17:17:25 -04:00
using Content.Shared.Examine;
using Content.Shared.Throwing;
using Content.Shared.Toggleable;
using Content.Shared.Verbs;
using JetBrains.Annotations;
2022-07-25 14:42:25 +10:00
using Robust.Server.GameObjects;
using Robust.Shared.Audio;
using Robust.Shared.Audio.Systems;
2022-07-25 14:42:25 +10:00
using Robust.Shared.Containers;
2023-09-05 20:20:05 +03:00
using Robust.Shared.Random;
using Robust.Shared.Configuration;
using Content.Shared.CCVar;
namespace Content.Server.Atmos.EntitySystems
{
[UsedImplicitly]
public sealed class GasTankSystem : EntitySystem
{
[Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!;
2022-07-25 14:42:25 +10:00
[Dependency] private readonly ExplosionSystem _explosions = default!;
[Dependency] private readonly InternalsSystem _internals = default!;
2022-10-03 21:01:20 -04:00
[Dependency] private readonly SharedAudioSystem _audioSys = default!;
2022-07-25 14:42:25 +10:00
[Dependency] private readonly SharedContainerSystem _containers = default!;
[Dependency] private readonly SharedActionsSystem _actions = default!;
[Dependency] private readonly UserInterfaceSystem _ui = default!;
2023-09-05 20:20:05 +03:00
[Dependency] private readonly IRobustRandom _random = default!;
[Dependency] private readonly ThrowingSystem _throwing = default!;
[Dependency] private readonly IConfigurationManager _cfg = default!;
private const float TimerDelay = 0.5f;
private float _timer = 0f;
private const float MinimumSoundValvePressure = 10.0f;
private float _maxExplosionRange;
ECS verbs and update context menu (#4594) * Functioning ECS verbs Currently only ID card console works. * Changed verb types and allow ID card insertions * Verb GUI sorting and verb networking * More networking, and shared components * Clientside verbs work now. * Verb enums changed to bitmask flags * Verb Categories redo * Fix range check * GasTank Verb * Remove unnecessary bodypart verb * Buckle Verb * buckle & unbuckle verbs * Updated range checks * Item cabinet verbs * Add range user override * construction verb * Chemistry machine verbs * Climb Verb * Generalise pulled entity verbs * ViewVariables Verb * rejuvenate, delete, sentient, control verbs * Outfit verb * inrangeunoccluded and tubedirection verbs * attach-to verbs * remove unused verbs and move VV * Rename DebugVerbSystem * Ghost role and pointing verbs * Remove global verbs * Allow verbs to raise events * Changing categories and simplifying debug verbs * Add rotate and flip verbs * fix rejuvenate test * redo context menu * new Add Gas debug verb * Add Set Temperature debug verb * Uncuff verb * Disposal unit verbs * Add pickup verb * lock/unlock verb * Remove verb type, add specific verb events * rename verb messages -> events * Context menu displays verbs by interaction type * Updated context menu HandleMove previously, checked if entities moved 1 tile from click location. Now checks if entities moved out of view. Now you can actually right-click interact with yourself while walking! * Misc Verb menu GUI changes * Fix non-human/ghost verbs * Update types and categories * Allow non-ghost/human to open context menu * configuration verb * tagger verb * Morgue Verbs * Medical Scanner Verbs * Fix solution refactor merge issues * Fix context menu in-view check * Remove prepare GUI * Redo verb restrictions * Fix context menu UI * Disposal Verbs * Spill verb * Light verb * Hand Held light verb * power cell verbs * storage verbs and adding names to insert/eject * Pulling verb * Close context menu on verb execution * Strip verb * AmmoBox verb * fix pull verb * gun barrel verbs revolver verb energy weapon verbs Bolt action verb * Magazine gun barrel verbs * Add charger verbs * PDA verbs * Transfer amount verb * Add reagent verb * make alt-click use ECS verbs * Delete old verb files * Magboot verb * finalising tweaks * context menu visibility changes * code cleanup * Update AdminAddReagentUI.cs * Remove HasFlag * Consistent verb keys * Remove Linq, add comment * Fix in-inventory check * Update GUI text alignment and padding * Added close-menu option * Changed some "interaction" verbs to "activation" * Remove verb keys, use sorted sets * fix master merge * update some verb text * Undo Changes Remove some new verbs that can be added later undid some .ftl bugfixes, can and should be done separately * fix merge * Undo file rename * fix merge * Misc Cleanup * remove contraction * Fix keybinding issue * fix comment * merge fix * fix merge * fix merge * fix merge * fix merge * fix open-close verbs * adjust uncuff verb * fix merge and undo the renaming of SharedPullableComponent to PullableComponent. I'm tired of all of those merge conflicts
2021-10-05 14:29:03 +11:00
public override void Initialize()
{
base.Initialize();
2022-07-25 14:42:25 +10:00
SubscribeLocalEvent<GasTankComponent, ComponentShutdown>(OnGasShutdown);
2022-03-17 10:30:40 +13:00
SubscribeLocalEvent<GasTankComponent, BeforeActivatableUIOpenEvent>(BeforeUiOpen);
SubscribeLocalEvent<GasTankComponent, GetItemActionsEvent>(OnGetActions);
2022-04-08 17:17:25 -04:00
SubscribeLocalEvent<GasTankComponent, ExaminedEvent>(OnExamined);
SubscribeLocalEvent<GasTankComponent, ToggleActionEvent>(OnActionToggle);
SubscribeLocalEvent<GasTankComponent, EntParentChangedMessage>(OnParentChange);
2022-07-25 14:42:25 +10:00
SubscribeLocalEvent<GasTankComponent, GasTankSetPressureMessage>(OnGasTankSetPressure);
SubscribeLocalEvent<GasTankComponent, GasTankToggleInternalsMessage>(OnGasTankToggleInternals);
SubscribeLocalEvent<GasTankComponent, GasAnalyzerScanEvent>(OnAnalyzed);
2022-09-17 00:04:25 +10:00
SubscribeLocalEvent<GasTankComponent, PriceCalculationEvent>(OnGasTankPrice);
2023-09-05 20:20:05 +03:00
SubscribeLocalEvent<GasTankComponent, GetVerbsEvent<AlternativeVerb>>(OnGetAlternativeVerb);
Subs.CVar(_cfg, CCVars.AtmosTankFragment, UpdateMaxRange, true);
}
private void UpdateMaxRange(float value)
{
_maxExplosionRange = value;
2022-07-25 14:42:25 +10:00
}
private void OnGasShutdown(Entity<GasTankComponent> gasTank, ref ComponentShutdown args)
2022-07-25 14:42:25 +10:00
{
DisconnectFromInternals(gasTank);
2022-07-25 14:42:25 +10:00
}
private void OnGasTankToggleInternals(Entity<GasTankComponent> ent, ref GasTankToggleInternalsMessage args)
2022-07-25 14:42:25 +10:00
{
ToggleInternals(ent);
2022-07-25 14:42:25 +10:00
}
private void OnGasTankSetPressure(Entity<GasTankComponent> ent, ref GasTankSetPressureMessage args)
2022-07-25 14:42:25 +10:00
{
2023-11-02 22:14:56 -04:00
var pressure = Math.Clamp(args.Pressure, 0f, ent.Comp.MaxOutputPressure);
ent.Comp.OutputPressure = pressure;
UpdateUserInterface(ent, true);
2022-07-25 14:42:25 +10:00
}
public void UpdateUserInterface(Entity<GasTankComponent> ent, bool initialUpdate = false)
2022-07-25 14:42:25 +10:00
{
var (owner, component) = ent;
_ui.SetUiState(owner, SharedGasTankUiKey.Key,
2022-07-25 14:42:25 +10:00
new GasTankBoundUserInterfaceState
{
TankPressure = component.Air?.Pressure ?? 0,
OutputPressure = initialUpdate ? component.OutputPressure : null,
InternalsConnected = component.IsConnected,
CanConnectInternals = CanConnectToInternals(ent)
2022-07-25 14:42:25 +10:00
});
2022-03-13 21:47:28 +13:00
}
private void BeforeUiOpen(Entity<GasTankComponent> ent, ref BeforeActivatableUIOpenEvent args)
2022-03-17 10:30:40 +13:00
{
// Only initial update includes output pressure information, to avoid overwriting client-input as the updates come in.
UpdateUserInterface(ent, true);
2022-03-17 10:30:40 +13:00
}
private void OnParentChange(EntityUid uid, GasTankComponent component, ref EntParentChangedMessage args)
2022-03-13 21:47:28 +13:00
{
// When an item is moved from hands -> pockets, the container removal briefly dumps the item on the floor.
// So this is a shitty fix, where the parent check is just delayed. But this really needs to get fixed
// properly at some point.
component.CheckUser = true;
}
private void OnGetActions(EntityUid uid, GasTankComponent component, GetItemActionsEvent args)
{
args.AddAction(ref component.ToggleActionEntity, component.ToggleAction);
}
2022-04-08 17:17:25 -04:00
private void OnExamined(EntityUid uid, GasTankComponent component, ExaminedEvent args)
{
using var _ = args.PushGroup(nameof(GasTankComponent));
2022-04-08 17:17:25 -04:00
if (args.IsInDetailsRange)
args.PushMarkup(Loc.GetString("comp-gas-tank-examine", ("pressure", Math.Round(component.Air?.Pressure ?? 0))));
if (component.IsConnected)
args.PushMarkup(Loc.GetString("comp-gas-tank-connected"));
2023-09-05 20:20:05 +03:00
args.PushMarkup(Loc.GetString(component.IsValveOpen ? "comp-gas-tank-examine-open-valve" : "comp-gas-tank-examine-closed-valve"));
2022-04-08 17:17:25 -04:00
}
private void OnActionToggle(Entity<GasTankComponent> gasTank, ref ToggleActionEvent args)
{
if (args.Handled)
return;
ToggleInternals(gasTank);
args.Handled = true;
ECS verbs and update context menu (#4594) * Functioning ECS verbs Currently only ID card console works. * Changed verb types and allow ID card insertions * Verb GUI sorting and verb networking * More networking, and shared components * Clientside verbs work now. * Verb enums changed to bitmask flags * Verb Categories redo * Fix range check * GasTank Verb * Remove unnecessary bodypart verb * Buckle Verb * buckle & unbuckle verbs * Updated range checks * Item cabinet verbs * Add range user override * construction verb * Chemistry machine verbs * Climb Verb * Generalise pulled entity verbs * ViewVariables Verb * rejuvenate, delete, sentient, control verbs * Outfit verb * inrangeunoccluded and tubedirection verbs * attach-to verbs * remove unused verbs and move VV * Rename DebugVerbSystem * Ghost role and pointing verbs * Remove global verbs * Allow verbs to raise events * Changing categories and simplifying debug verbs * Add rotate and flip verbs * fix rejuvenate test * redo context menu * new Add Gas debug verb * Add Set Temperature debug verb * Uncuff verb * Disposal unit verbs * Add pickup verb * lock/unlock verb * Remove verb type, add specific verb events * rename verb messages -> events * Context menu displays verbs by interaction type * Updated context menu HandleMove previously, checked if entities moved 1 tile from click location. Now checks if entities moved out of view. Now you can actually right-click interact with yourself while walking! * Misc Verb menu GUI changes * Fix non-human/ghost verbs * Update types and categories * Allow non-ghost/human to open context menu * configuration verb * tagger verb * Morgue Verbs * Medical Scanner Verbs * Fix solution refactor merge issues * Fix context menu in-view check * Remove prepare GUI * Redo verb restrictions * Fix context menu UI * Disposal Verbs * Spill verb * Light verb * Hand Held light verb * power cell verbs * storage verbs and adding names to insert/eject * Pulling verb * Close context menu on verb execution * Strip verb * AmmoBox verb * fix pull verb * gun barrel verbs revolver verb energy weapon verbs Bolt action verb * Magazine gun barrel verbs * Add charger verbs * PDA verbs * Transfer amount verb * Add reagent verb * make alt-click use ECS verbs * Delete old verb files * Magboot verb * finalising tweaks * context menu visibility changes * code cleanup * Update AdminAddReagentUI.cs * Remove HasFlag * Consistent verb keys * Remove Linq, add comment * Fix in-inventory check * Update GUI text alignment and padding * Added close-menu option * Changed some "interaction" verbs to "activation" * Remove verb keys, use sorted sets * fix master merge * update some verb text * Undo Changes Remove some new verbs that can be added later undid some .ftl bugfixes, can and should be done separately * fix merge * Undo file rename * fix merge * Misc Cleanup * remove contraction * Fix keybinding issue * fix comment * merge fix * fix merge * fix merge * fix merge * fix merge * fix open-close verbs * adjust uncuff verb * fix merge and undo the renaming of SharedPullableComponent to PullableComponent. I'm tired of all of those merge conflicts
2021-10-05 14:29:03 +11:00
}
public override void Update(float frameTime)
{
base.Update(frameTime);
_timer += frameTime;
if (_timer < TimerDelay)
return;
_timer -= TimerDelay;
2023-09-05 20:20:05 +03:00
var query = EntityQueryEnumerator<GasTankComponent>();
while (query.MoveNext(out var uid, out var comp))
{
var gasTank = (uid, comp);
2023-11-02 22:14:56 -04:00
if (comp.IsValveOpen && !comp.IsLowPressure && comp.OutputPressure > 0)
2023-09-05 20:20:05 +03:00
{
ReleaseGas(gasTank);
2023-09-05 20:20:05 +03:00
}
if (comp.CheckUser)
{
comp.CheckUser = false;
if (Transform(uid).ParentUid != comp.User)
{
DisconnectFromInternals(gasTank);
continue;
}
}
if (comp.Air != null)
2023-09-05 20:20:05 +03:00
{
_atmosphereSystem.React(comp.Air, comp);
2023-09-05 20:20:05 +03:00
}
2022-07-25 14:42:25 +10:00
CheckStatus(gasTank);
2023-09-05 20:20:05 +03:00
if (_ui.IsUiOpen(uid, SharedGasTankUiKey.Key))
2022-07-25 14:42:25 +10:00
{
UpdateUserInterface(gasTank);
}
}
}
private void ReleaseGas(Entity<GasTankComponent> gasTank)
2023-09-05 20:20:05 +03:00
{
var removed = RemoveAirVolume(gasTank, gasTank.Comp.ValveOutputRate * TimerDelay);
var environment = _atmosphereSystem.GetContainingMixture(gasTank.Owner, false, true);
2023-09-05 20:20:05 +03:00
if (environment != null)
{
_atmosphereSystem.Merge(environment, removed);
}
var strength = removed.TotalMoles * MathF.Sqrt(removed.Temperature);
var dir = _random.NextAngle().ToWorldVec();
_throwing.TryThrow(gasTank, dir * strength, strength);
if (gasTank.Comp.OutputPressure >= MinimumSoundValvePressure)
_audioSys.PlayPvs(gasTank.Comp.RuptureSound, gasTank);
2023-09-05 20:20:05 +03:00
}
private void ToggleInternals(Entity<GasTankComponent> ent)
2022-07-25 14:42:25 +10:00
{
if (ent.Comp.IsConnected)
2022-07-25 14:42:25 +10:00
{
DisconnectFromInternals(ent);
2022-07-25 14:42:25 +10:00
}
else
{
ConnectToInternals(ent);
2022-07-25 14:42:25 +10:00
}
}
public GasMixture? RemoveAir(Entity<GasTankComponent> gasTank, float amount)
2022-07-25 14:42:25 +10:00
{
var gas = gasTank.Comp.Air?.Remove(amount);
CheckStatus(gasTank);
2022-07-25 14:42:25 +10:00
return gas;
}
public GasMixture RemoveAirVolume(Entity<GasTankComponent> gasTank, float volume)
2022-07-25 14:42:25 +10:00
{
var component = gasTank.Comp;
2022-07-25 14:42:25 +10:00
if (component.Air == null)
return new GasMixture(volume);
var molesNeeded = component.OutputPressure * volume / (Atmospherics.R * component.Air.Temperature);
var air = RemoveAir(gasTank, molesNeeded);
2022-07-25 14:42:25 +10:00
if (air != null)
air.Volume = volume;
else
return new GasMixture(volume);
return air;
}
public bool CanConnectToInternals(Entity<GasTankComponent> ent)
2022-07-25 14:42:25 +10:00
{
TryGetInternalsComp(ent, out _, out var internalsComp, ent.Comp.User);
return internalsComp != null && internalsComp.BreathTools.Count != 0 && !ent.Comp.IsValveOpen;
2022-07-25 14:42:25 +10:00
}
public void ConnectToInternals(Entity<GasTankComponent> ent)
2022-07-25 14:42:25 +10:00
{
var (owner, component) = ent;
if (component.IsConnected || !CanConnectToInternals(ent))
return;
TryGetInternalsComp(ent, out var internalsUid, out var internalsComp, ent.Comp.User);
if (internalsUid == null || internalsComp == null)
return;
if (_internals.TryConnectTank((internalsUid.Value, internalsComp), owner))
component.User = internalsUid.Value;
_actions.SetToggled(component.ToggleActionEntity, component.IsConnected);
2022-07-25 14:42:25 +10:00
// Couldn't toggle!
if (!component.IsConnected)
return;
2022-07-25 14:42:25 +10:00
component.ConnectStream = _audioSys.Stop(component.ConnectStream);
component.ConnectStream = _audioSys.PlayPvs(component.ConnectSound, owner)?.Entity;
2022-04-04 22:08:41 -07:00
UpdateUserInterface(ent);
2022-07-25 14:42:25 +10:00
}
public void DisconnectFromInternals(Entity<GasTankComponent> ent)
2022-07-25 14:42:25 +10:00
{
var (owner, component) = ent;
if (component.User == null)
return;
TryGetInternalsComp(ent, out var internalsUid, out var internalsComp, component.User);
component.User = null;
_actions.SetToggled(component.ToggleActionEntity, false);
2022-07-25 14:42:25 +10:00
if (internalsUid != null && internalsComp != null)
_internals.DisconnectTank((internalsUid.Value, internalsComp));
component.DisconnectStream = _audioSys.Stop(component.DisconnectStream);
component.DisconnectStream = _audioSys.PlayPvs(component.DisconnectSound, owner)?.Entity;
2022-07-25 14:42:25 +10:00
UpdateUserInterface(ent);
2022-07-25 14:42:25 +10:00
}
/// <summary>
/// Tries to retrieve the internals component of either the gas tank's user,
/// or the gas tank's... containing container
/// </summary>
/// <param name="user">The user of the gas tank</param>
/// <returns>True if internals comp isn't null, false if it is null</returns>
private bool TryGetInternalsComp(Entity<GasTankComponent> ent, out EntityUid? internalsUid, out InternalsComponent? internalsComp, EntityUid? user = null)
2022-07-25 14:42:25 +10:00
{
internalsUid = default;
internalsComp = default;
// If the gas tank doesn't exist for whatever reason, don't even bother
if (TerminatingOrDeleted(ent.Owner))
return false;
user ??= ent.Comp.User;
// Check if the gas tank's user actually has the component that allows them to use a gas tank and mask
if (TryComp<InternalsComponent>(user, out var userInternalsComp) && userInternalsComp != null)
{
internalsUid = user;
internalsComp = userInternalsComp;
return true;
}
// Yeah I have no clue what this actually does, I appreciate the lack of comments on the original function
if (_containers.TryGetContainingContainer((ent.Owner, Transform(ent.Owner)), out var container) && container != null)
{
if (TryComp<InternalsComponent>(container.Owner, out var containerInternalsComp) && containerInternalsComp != null)
{
internalsUid = container.Owner;
internalsComp = containerInternalsComp;
return true;
}
}
return false;
2022-07-25 14:42:25 +10:00
}
public void AssumeAir(Entity<GasTankComponent> ent, GasMixture giver)
2022-07-25 14:42:25 +10:00
{
_atmosphereSystem.Merge(ent.Comp.Air, giver);
CheckStatus(ent);
2022-07-25 14:42:25 +10:00
}
public void CheckStatus(Entity<GasTankComponent> ent)
2022-07-25 14:42:25 +10:00
{
var (owner, component) = ent;
2022-07-25 14:42:25 +10:00
if (component.Air == null)
return;
var pressure = component.Air.Pressure;
if (pressure > component.TankFragmentPressure && _maxExplosionRange > 0)
2022-07-25 14:42:25 +10:00
{
// Give the gas a chance to build up more pressure.
for (var i = 0; i < 3; i++)
2022-04-04 22:08:41 -07:00
{
2022-07-25 14:42:25 +10:00
_atmosphereSystem.React(component.Air, component);
2022-04-04 22:08:41 -07:00
}
2022-07-25 14:42:25 +10:00
pressure = component.Air.Pressure;
var range = MathF.Sqrt((pressure - component.TankFragmentPressure) / component.TankFragmentScale);
2022-07-25 14:42:25 +10:00
// Let's cap the explosion, yeah?
// !1984
range = Math.Min(Math.Min(range, GasTankComponent.MaxExplosionRange), _maxExplosionRange);
2022-07-25 14:42:25 +10:00
_explosions.TriggerExplosive(owner, radius: range);
2022-07-25 14:42:25 +10:00
return;
}
if (pressure > component.TankRupturePressure)
{
if (component.Integrity <= 0)
{
var environment = _atmosphereSystem.GetContainingMixture(owner, false, true);
if (environment != null)
2022-07-25 14:42:25 +10:00
_atmosphereSystem.Merge(environment, component.Air);
_audioSys.PlayPvs(component.RuptureSound, Transform(owner).Coordinates, AudioParams.Default.WithVariation(0.125f));
2022-07-25 14:42:25 +10:00
QueueDel(owner);
2022-07-25 14:42:25 +10:00
return;
}
component.Integrity--;
return;
}
if (pressure > component.TankLeakPressure)
{
if (component.Integrity <= 0)
{
var environment = _atmosphereSystem.GetContainingMixture(owner, false, true);
2022-07-25 14:42:25 +10:00
if (environment == null)
return;
var leakedGas = component.Air.RemoveRatio(0.25f);
_atmosphereSystem.Merge(environment, leakedGas);
}
else
{
component.Integrity--;
}
return;
}
2022-07-25 14:42:25 +10:00
if (component.Integrity < 3)
component.Integrity++;
}
/// <summary>
/// Returns the gas mixture for the gas analyzer
/// </summary>
private void OnAnalyzed(EntityUid uid, GasTankComponent component, GasAnalyzerScanEvent args)
{
args.GasMixtures ??= new List<(string, GasMixture?)>();
args.GasMixtures.Add((Name(uid), component.Air));
}
2022-09-17 00:04:25 +10:00
private void OnGasTankPrice(EntityUid uid, GasTankComponent component, ref PriceCalculationEvent args)
{
args.Price += _atmosphereSystem.GetPrice(component.Air);
}
2023-09-05 20:20:05 +03:00
private void OnGetAlternativeVerb(EntityUid uid, GasTankComponent component, GetVerbsEvent<AlternativeVerb> args)
{
if (!args.CanAccess || !args.CanInteract || args.Hands == null)
return;
args.Verbs.Add(new AlternativeVerb()
{
Text = component.IsValveOpen ? Loc.GetString("comp-gas-tank-close-valve") : Loc.GetString("comp-gas-tank-open-valve"),
Act = () =>
{
component.IsValveOpen = !component.IsValveOpen;
_audioSys.PlayPvs(component.ValveSound, uid);
},
Disabled = component.IsConnected,
});
}
}
}