UI was being updated every tick even when not necessary. Ideally you'd just update the UI based on events but this is fine for now. Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
112 lines
3.0 KiB
C#
112 lines
3.0 KiB
C#
using System;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.GameObjects.Components.UserInterface;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Disposal
|
|
{
|
|
public abstract class SharedDisposalUnitComponent : Component
|
|
{
|
|
public override string Name => "DisposalUnit";
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum Visuals
|
|
{
|
|
VisualState,
|
|
Handle,
|
|
Light
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum VisualState
|
|
{
|
|
UnAnchored,
|
|
Anchored,
|
|
Flushing,
|
|
Charging
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum HandleState
|
|
{
|
|
Normal,
|
|
Engaged
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum LightState
|
|
{
|
|
Off,
|
|
Charging,
|
|
Full,
|
|
Ready
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum UiButton
|
|
{
|
|
Eject,
|
|
Engage,
|
|
Power
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum PressureState
|
|
{
|
|
Ready,
|
|
Pressurizing
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public class DisposalUnitBoundUserInterfaceState : BoundUserInterfaceState, IEquatable<DisposalUnitBoundUserInterfaceState>
|
|
{
|
|
public readonly string UnitName;
|
|
public readonly string UnitState;
|
|
public readonly float Pressure;
|
|
public readonly bool Powered;
|
|
public readonly bool Engaged;
|
|
|
|
public DisposalUnitBoundUserInterfaceState(string unitName, string unitState, float pressure, bool powered,
|
|
bool engaged)
|
|
{
|
|
UnitName = unitName;
|
|
UnitState = unitState;
|
|
Pressure = pressure;
|
|
Powered = powered;
|
|
Engaged = engaged;
|
|
}
|
|
|
|
public bool Equals(DisposalUnitBoundUserInterfaceState other)
|
|
{
|
|
if (ReferenceEquals(null, other)) return false;
|
|
if (ReferenceEquals(this, other)) return true;
|
|
return UnitName == other.UnitName &&
|
|
UnitState == other.UnitState &&
|
|
Powered == other.Powered &&
|
|
Engaged == other.Engaged &&
|
|
Pressure.Equals(other.Pressure);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Message data sent from client to server when a disposal unit ui button is pressed.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public class UiButtonPressedMessage : BoundUserInterfaceMessage
|
|
{
|
|
public readonly UiButton Button;
|
|
|
|
public UiButtonPressedMessage(UiButton button)
|
|
{
|
|
Button = button;
|
|
}
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum DisposalUnitUiKey
|
|
{
|
|
Key
|
|
}
|
|
}
|
|
}
|