129 lines
3.4 KiB
C#
129 lines
3.4 KiB
C#
using Robust.Shared.Audio;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Light.Components;
|
|
|
|
/// <summary>
|
|
/// Component that represents a light bulb. Can be broken, or burned, which turns them mostly useless.
|
|
/// TODO: Breaking and burning should probably be moved to another component eventually.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class LightBulbComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The color of the lightbulb and the light it produces.
|
|
/// </summary>
|
|
[DataField("color")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public Color Color = Color.White;
|
|
|
|
/// <summary>
|
|
/// The type of lightbulb. Tube/bulb/etc...
|
|
/// </summary>
|
|
[DataField("bulb")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public LightBulbType Type = LightBulbType.Tube;
|
|
|
|
/// <summary>
|
|
/// The initial state of the lightbulb.
|
|
/// </summary>
|
|
[DataField("startingState")]
|
|
public LightBulbState State = LightBulbState.Normal;
|
|
|
|
/// <summary>
|
|
/// The temperature the air around the lightbulb is exposed to when the lightbulb burns out.
|
|
/// </summary>
|
|
[DataField("BurningTemperature")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public int BurningTemperature = 1400;
|
|
|
|
/// <summary>
|
|
/// Relates to how bright the light produced by the lightbulb is.
|
|
/// </summary>
|
|
[DataField("lightEnergy")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float LightEnergy = 0.8f;
|
|
|
|
/// <summary>
|
|
/// The maximum radius of the point light source this light produces.
|
|
/// </summary>
|
|
[DataField("lightRadius")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float LightRadius = 10;
|
|
|
|
/// <summary>
|
|
/// Relates to the falloff constant of the light produced by the lightbulb.
|
|
/// </summary>
|
|
[DataField("lightSoftness")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float LightSoftness = 1;
|
|
|
|
/// <summary>
|
|
/// The amount of power used by the lightbulb when it's active.
|
|
/// </summary>
|
|
[DataField("PowerUse")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public int PowerUse = 60;
|
|
|
|
/// <summary>
|
|
/// The sound produced when the lightbulb breaks.
|
|
/// </summary>
|
|
[DataField("breakSound")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public SoundSpecifier BreakSound = new SoundCollectionSpecifier("GlassBreak");
|
|
|
|
#region Appearance
|
|
|
|
/// <summary>
|
|
/// The sprite state used when the lightbulb is intact.
|
|
/// </summary>
|
|
[DataField("normalSpriteState")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public string NormalSpriteState = "normal";
|
|
|
|
/// <summary>
|
|
/// The sprite state used when the lightbulb is broken.
|
|
/// </summary>
|
|
[DataField("brokenSpriteState")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public string BrokenSpriteState = "broken";
|
|
|
|
/// <summary>
|
|
/// The sprite state used when the lightbulb is burned.
|
|
/// </summary>
|
|
[DataField("burnedSpriteState")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public string BurnedSpriteState = "burned";
|
|
|
|
#endregion Appearance
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum LightBulbState : byte
|
|
{
|
|
Normal,
|
|
Broken,
|
|
Burned,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum LightBulbVisuals : byte
|
|
{
|
|
State,
|
|
Color
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum LightBulbType : byte
|
|
{
|
|
Bulb,
|
|
Tube,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum LightBulbVisualLayers : byte
|
|
{
|
|
Base,
|
|
}
|