2023-07-08 14:08:32 +10:00
|
|
|
using System.Numerics;
|
2022-06-16 15:28:16 +10:00
|
|
|
using Content.Server.Shuttles.Systems;
|
2021-11-21 17:09:49 +11:00
|
|
|
using Content.Shared.Damage;
|
2023-05-07 06:37:28 -07:00
|
|
|
using Robust.Shared.GameStates;
|
2023-04-21 20:04:20 +10:00
|
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
|
2021-11-21 17:09:49 +11:00
|
|
|
|
|
|
|
|
namespace Content.Server.Shuttles.Components
|
|
|
|
|
{
|
2023-05-07 06:37:28 -07:00
|
|
|
[RegisterComponent, NetworkedComponent]
|
2022-06-07 15:26:28 +02:00
|
|
|
[Access(typeof(ThrusterSystem))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class ThrusterComponent : Component
|
2021-11-21 17:09:49 +11:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-12-24 04:59:14 -07:00
|
|
|
/// Whether the thruster has been force to be enabled / disabled (e.g. VV, interaction, etc.)
|
2021-11-21 17:09:49 +11:00
|
|
|
/// </summary>
|
2023-10-19 12:34:31 -07:00
|
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
2023-10-21 14:33:49 -07:00
|
|
|
public bool Enabled { get; set; } = true;
|
2021-11-21 17:09:49 +11:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This determines whether the thruster is actually enabled for the purposes of thrust
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsOn;
|
|
|
|
|
|
2023-04-21 20:04:20 +10:00
|
|
|
// Need to serialize this because RefreshParts isn't called on Init and this will break post-mapinit maps!
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite), DataField("thrust")]
|
2023-04-29 18:17:31 +10:00
|
|
|
public float Thrust = 100f;
|
2022-12-18 23:38:30 -05:00
|
|
|
|
2021-11-21 17:09:49 +11:00
|
|
|
[DataField("thrusterType")]
|
|
|
|
|
public ThrusterType Type = ThrusterType.Linear;
|
|
|
|
|
|
|
|
|
|
[DataField("burnShape")] public List<Vector2> BurnPoly = new()
|
|
|
|
|
{
|
|
|
|
|
new Vector2(-0.4f, 0.5f),
|
|
|
|
|
new Vector2(-0.1f, 1.2f),
|
|
|
|
|
new Vector2(0.1f, 1.2f),
|
|
|
|
|
new Vector2(0.4f, 0.5f)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// How much damage is done per second to anything colliding with our thrust.
|
|
|
|
|
/// </summary>
|
2022-11-16 20:22:11 +01:00
|
|
|
[DataField("damage")] public DamageSpecifier? Damage = new();
|
2021-11-21 17:09:49 +11:00
|
|
|
|
2022-11-16 20:22:11 +01:00
|
|
|
[DataField("requireSpace")]
|
2022-03-07 02:03:53 -03:00
|
|
|
public bool RequireSpace = true;
|
|
|
|
|
|
2021-11-21 17:09:49 +11:00
|
|
|
// Used for burns
|
|
|
|
|
|
|
|
|
|
public List<EntityUid> Colliding = new();
|
|
|
|
|
|
|
|
|
|
public bool Firing = false;
|
2022-12-18 23:38:30 -05:00
|
|
|
|
2023-04-21 20:04:20 +10:00
|
|
|
/// <summary>
|
|
|
|
|
/// Next time we tick damage for anyone colliding.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite), DataField("nextFire", customTypeSerializer:typeof(TimeOffsetSerializer))]
|
|
|
|
|
public TimeSpan NextFire;
|
2021-11-21 17:09:49 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum ThrusterType
|
|
|
|
|
{
|
|
|
|
|
Linear,
|
|
|
|
|
// Angular meaning rotational.
|
|
|
|
|
Angular,
|
|
|
|
|
}
|
|
|
|
|
}
|