Move GasMixture to shared (#27480)
* Moved GasMixture to shared * Temp Fix for sandbox violation, idk why Array.Resize isn't working properly. It's already sandboxed. * The most powerful webedit in history
This commit is contained in:
298
Content.Shared/Atmos/GasMixture.cs
Normal file
298
Content.Shared/Atmos/GasMixture.cs
Normal file
@@ -0,0 +1,298 @@
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Linq;
|
||||
using System.Runtime.CompilerServices;
|
||||
using Content.Shared.Atmos.EntitySystems;
|
||||
using Content.Shared.Atmos.Reactions;
|
||||
using Robust.Shared.Serialization;
|
||||
using Robust.Shared.Utility;
|
||||
|
||||
namespace Content.Shared.Atmos
|
||||
{
|
||||
/// <summary>
|
||||
/// A general-purpose, variable volume gas mixture.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
[DataDefinition]
|
||||
public sealed partial class GasMixture : IEquatable<GasMixture>, ISerializationHooks
|
||||
{
|
||||
public static GasMixture SpaceGas => new() {Volume = Atmospherics.CellVolume, Temperature = Atmospherics.TCMB, Immutable = true};
|
||||
|
||||
// No access, to ensure immutable mixtures are never accidentally mutated.
|
||||
[Access(typeof(SharedAtmosphereSystem), typeof(SharedAtmosDebugOverlaySystem), Other = AccessPermissions.None)]
|
||||
[DataField]
|
||||
public float[] Moles = new float[Atmospherics.AdjustedNumberOfGases];
|
||||
|
||||
public float this[int gas] => Moles[gas];
|
||||
|
||||
[DataField("temperature")]
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
private float _temperature = Atmospherics.TCMB;
|
||||
|
||||
[DataField("immutable")]
|
||||
public bool Immutable { get; private set; }
|
||||
|
||||
[ViewVariables]
|
||||
public readonly Dictionary<GasReaction, float> ReactionResults = new()
|
||||
{
|
||||
// We initialize the dictionary here.
|
||||
{ GasReaction.Fire, 0f }
|
||||
};
|
||||
|
||||
[ViewVariables]
|
||||
public float TotalMoles
|
||||
{
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
get => NumericsHelpers.HorizontalAdd(Moles);
|
||||
}
|
||||
|
||||
[ViewVariables]
|
||||
public float Pressure
|
||||
{
|
||||
get
|
||||
{
|
||||
if (Volume <= 0) return 0f;
|
||||
return TotalMoles * Atmospherics.R * Temperature / Volume;
|
||||
}
|
||||
}
|
||||
|
||||
[ViewVariables]
|
||||
public float Temperature
|
||||
{
|
||||
get => _temperature;
|
||||
set
|
||||
{
|
||||
DebugTools.Assert(!float.IsNaN(value));
|
||||
if (!Immutable)
|
||||
_temperature = MathF.Min(MathF.Max(value, Atmospherics.TCMB), Atmospherics.Tmax);
|
||||
}
|
||||
}
|
||||
|
||||
[DataField("volume")]
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
public float Volume { get; set; }
|
||||
|
||||
public GasMixture()
|
||||
{
|
||||
}
|
||||
|
||||
public GasMixture(float volume = 0f)
|
||||
{
|
||||
if (volume < 0)
|
||||
volume = 0;
|
||||
Volume = volume;
|
||||
}
|
||||
|
||||
public GasMixture(float[] moles, float temp, float volume = Atmospherics.CellVolume)
|
||||
{
|
||||
if (moles.Length != Atmospherics.AdjustedNumberOfGases)
|
||||
throw new InvalidOperationException($"Invalid mole array length");
|
||||
|
||||
if (volume < 0)
|
||||
volume = 0;
|
||||
|
||||
DebugTools.Assert(!float.IsNaN(temp));
|
||||
_temperature = temp;
|
||||
Moles = moles;
|
||||
Volume = volume;
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public void MarkImmutable()
|
||||
{
|
||||
Immutable = true;
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public float GetMoles(int gasId)
|
||||
{
|
||||
return Moles[gasId];
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public float GetMoles(Gas gas)
|
||||
{
|
||||
return GetMoles((int)gas);
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public void SetMoles(int gasId, float quantity)
|
||||
{
|
||||
if (!float.IsFinite(quantity) || float.IsNegative(quantity))
|
||||
throw new ArgumentException($"Invalid quantity \"{quantity}\" specified!", nameof(quantity));
|
||||
|
||||
if (!Immutable)
|
||||
Moles[gasId] = quantity;
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public void SetMoles(Gas gas, float quantity)
|
||||
{
|
||||
SetMoles((int)gas, quantity);
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public void AdjustMoles(int gasId, float quantity)
|
||||
{
|
||||
if (Immutable)
|
||||
return;
|
||||
|
||||
if (!float.IsFinite(quantity))
|
||||
throw new ArgumentException($"Invalid quantity \"{quantity}\" specified!", nameof(quantity));
|
||||
|
||||
// Clamping is needed because x - x can be negative with floating point numbers. If we don't
|
||||
// clamp here, the caller always has to call GetMoles(), clamp, then SetMoles().
|
||||
ref var moles = ref Moles[gasId];
|
||||
moles = MathF.Max(moles + quantity, 0);
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public void AdjustMoles(Gas gas, float moles)
|
||||
{
|
||||
AdjustMoles((int)gas, moles);
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public GasMixture Remove(float amount)
|
||||
{
|
||||
return RemoveRatio(amount / TotalMoles);
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public GasMixture RemoveRatio(float ratio)
|
||||
{
|
||||
switch (ratio)
|
||||
{
|
||||
case <= 0:
|
||||
return new GasMixture(Volume){Temperature = Temperature};
|
||||
case > 1:
|
||||
ratio = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
var removed = new GasMixture(Volume) { Temperature = Temperature };
|
||||
|
||||
Moles.CopyTo(removed.Moles.AsSpan());
|
||||
NumericsHelpers.Multiply(removed.Moles, ratio);
|
||||
if (!Immutable)
|
||||
NumericsHelpers.Sub(Moles, removed.Moles);
|
||||
|
||||
for (var i = 0; i < Moles.Length; i++)
|
||||
{
|
||||
var moles = Moles[i];
|
||||
var otherMoles = removed.Moles[i];
|
||||
|
||||
if ((moles < Atmospherics.GasMinMoles || float.IsNaN(moles)) && !Immutable)
|
||||
Moles[i] = 0;
|
||||
|
||||
if (otherMoles < Atmospherics.GasMinMoles || float.IsNaN(otherMoles))
|
||||
removed.Moles[i] = 0;
|
||||
}
|
||||
|
||||
return removed;
|
||||
}
|
||||
|
||||
public GasMixture RemoveVolume(float vol)
|
||||
{
|
||||
return RemoveRatio(vol / Volume);
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public void CopyFromMutable(GasMixture sample)
|
||||
{
|
||||
if (Immutable) return;
|
||||
sample.Moles.CopyTo(Moles, 0);
|
||||
Temperature = sample.Temperature;
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public void Clear()
|
||||
{
|
||||
if (Immutable) return;
|
||||
Array.Clear(Moles, 0, Atmospherics.TotalNumberOfGases);
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public void Multiply(float multiplier)
|
||||
{
|
||||
if (Immutable) return;
|
||||
NumericsHelpers.Multiply(Moles, multiplier);
|
||||
}
|
||||
|
||||
void ISerializationHooks.AfterDeserialization()
|
||||
{
|
||||
// ISerializationHooks is obsolete.
|
||||
// TODO add fixed-length-array serializer
|
||||
|
||||
// The arrays MUST have a specific length.
|
||||
Array.Resize(ref Moles, Atmospherics.AdjustedNumberOfGases);
|
||||
}
|
||||
|
||||
public GasMixtureStringRepresentation ToPrettyString()
|
||||
{
|
||||
var molesPerGas = new Dictionary<string, float>();
|
||||
for (int i = 0; i < Moles.Length; i++)
|
||||
{
|
||||
if (Moles[i] == 0)
|
||||
continue;
|
||||
|
||||
molesPerGas.Add(((Gas) i).ToString(), Moles[i]);
|
||||
}
|
||||
|
||||
return new GasMixtureStringRepresentation(TotalMoles, Temperature, Pressure, molesPerGas);
|
||||
}
|
||||
|
||||
public override bool Equals(object? obj)
|
||||
{
|
||||
if (obj is GasMixture mix)
|
||||
return Equals(mix);
|
||||
return false;
|
||||
}
|
||||
|
||||
public bool Equals(GasMixture? other)
|
||||
{
|
||||
if (ReferenceEquals(this, other))
|
||||
return true;
|
||||
|
||||
if (ReferenceEquals(null, other))
|
||||
return false;
|
||||
|
||||
return Moles.SequenceEqual(other.Moles)
|
||||
&& _temperature.Equals(other._temperature)
|
||||
&& ReactionResults.SequenceEqual(other.ReactionResults)
|
||||
&& Immutable == other.Immutable
|
||||
&& Volume.Equals(other.Volume);
|
||||
}
|
||||
|
||||
[SuppressMessage("ReSharper", "NonReadonlyMemberInGetHashCode")]
|
||||
public override int GetHashCode()
|
||||
{
|
||||
var hashCode = new HashCode();
|
||||
|
||||
for (var i = 0; i < Atmospherics.TotalNumberOfGases; i++)
|
||||
{
|
||||
var moles = Moles[i];
|
||||
hashCode.Add(moles);
|
||||
}
|
||||
|
||||
hashCode.Add(_temperature);
|
||||
hashCode.Add(Immutable);
|
||||
hashCode.Add(Volume);
|
||||
|
||||
return hashCode.ToHashCode();
|
||||
}
|
||||
|
||||
public GasMixture Clone()
|
||||
{
|
||||
if (Immutable)
|
||||
return this;
|
||||
|
||||
var newMixture = new GasMixture()
|
||||
{
|
||||
Moles = (float[])Moles.Clone(),
|
||||
_temperature = _temperature,
|
||||
Volume = Volume,
|
||||
};
|
||||
return newMixture;
|
||||
}
|
||||
}
|
||||
}
|
||||
16
Content.Shared/Atmos/GasMixtureStringRepresentation.cs
Normal file
16
Content.Shared/Atmos/GasMixtureStringRepresentation.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Content.Shared.Atmos;
|
||||
|
||||
public readonly record struct GasMixtureStringRepresentation(float TotalMoles, float Temperature, float Pressure, Dictionary<string, float> MolesPerGas) : IFormattable
|
||||
{
|
||||
public override string ToString()
|
||||
{
|
||||
return $"{Temperature}K {Pressure} kPa";
|
||||
}
|
||||
|
||||
public string ToString(string? format, IFormatProvider? formatProvider)
|
||||
{
|
||||
return ToString();
|
||||
}
|
||||
|
||||
public static implicit operator string(GasMixtureStringRepresentation rep) => rep.ToString();
|
||||
}
|
||||
14
Content.Shared/Atmos/Reactions/GasReactionEnums.cs
Normal file
14
Content.Shared/Atmos/Reactions/GasReactionEnums.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace Content.Shared.Atmos.Reactions;
|
||||
|
||||
[Flags]
|
||||
public enum ReactionResult : byte
|
||||
{
|
||||
NoReaction = 0,
|
||||
Reacting = 1,
|
||||
StopReactions = 2,
|
||||
}
|
||||
|
||||
public enum GasReaction : byte
|
||||
{
|
||||
Fire = 0,
|
||||
}
|
||||
Reference in New Issue
Block a user