mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 02:27:08 +02:00
215 lines
6.4 KiB
C#
215 lines
6.4 KiB
C#
using Robust.Client.GameObjects.EntitySystems;
|
|
using Robust.Client.Graphics;
|
|
using Robust.Client.Interfaces.ResourceManagement;
|
|
using Robust.Client.ResourceManagement;
|
|
using Robust.Shared.Animations;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Interfaces.GameObjects;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Map;
|
|
using Robust.Shared.Maths;
|
|
using Robust.Shared.Serialization;
|
|
using Robust.Shared.ViewVariables;
|
|
using System;
|
|
|
|
namespace Robust.Client.GameObjects
|
|
{
|
|
public class PointLightComponent : Component
|
|
{
|
|
public override string Name => "PointLight";
|
|
public override uint? NetID => NetIDs.POINT_LIGHT;
|
|
|
|
internal bool TreeUpdateQueued { get; set; }
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[Animatable]
|
|
public Color Color
|
|
{
|
|
get => _color;
|
|
set => _color = value;
|
|
}
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public Vector2 Offset
|
|
{
|
|
get => _offset;
|
|
set => _offset = value;
|
|
}
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[Animatable]
|
|
public bool Enabled
|
|
{
|
|
get => _enabled;
|
|
set => _enabled = value;
|
|
}
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public bool ContainerOccluded { get; set; }
|
|
|
|
/// <summary>
|
|
/// Determines if the light mask should automatically rotate with the entity. (like a flashlight)
|
|
/// </summary>
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public bool MaskAutoRotate
|
|
{
|
|
get => _maskAutoRotate;
|
|
set => _maskAutoRotate = value;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Local rotation of the light mask around the center origin
|
|
/// </summary>
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[Animatable]
|
|
public Angle Rotation
|
|
{
|
|
get => _rotation;
|
|
set => _rotation = value;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Set a mask texture that will be applied to the light while rendering.
|
|
/// The mask's red channel will be linearly multiplied.p
|
|
/// </summary>
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public Texture? Mask { get; set; }
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[Animatable]
|
|
public float Energy
|
|
{
|
|
get => _energy;
|
|
set => _energy = value;
|
|
}
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public bool VisibleNested
|
|
{
|
|
get => _visibleNested;
|
|
set
|
|
{
|
|
if (_visibleNested == value) return;
|
|
_visibleNested = value;
|
|
if (value)
|
|
{
|
|
if (Owner.Transform.Parent == null) return;
|
|
|
|
_lightOnParent = true;
|
|
}
|
|
else
|
|
{
|
|
if (!_lightOnParent) return;
|
|
|
|
_lightOnParent = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
private float _radius = 5;
|
|
private bool _visibleNested = true;
|
|
private bool _lightOnParent = false;
|
|
private Color _color = Color.White;
|
|
private Vector2 _offset;
|
|
private bool _enabled = true;
|
|
private bool _maskAutoRotate;
|
|
private Angle _rotation;
|
|
private float _energy;
|
|
|
|
/// <summary>
|
|
/// Radius, in meters.
|
|
/// </summary>
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[Animatable]
|
|
public float Radius
|
|
{
|
|
get => _radius;
|
|
set
|
|
{
|
|
_radius = MathF.Max(value, 0.01f); // setting radius to 0 causes exceptions, so just use a value close enough to zero that it's unnoticeable.
|
|
Owner.EntityManager.EventBus.RaiseEvent(EventSource.Local, new PointLightRadiusChangedMessage(this));
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void HandleMessage(ComponentMessage message, IComponent? component)
|
|
{
|
|
base.HandleMessage(message, component);
|
|
|
|
if ((message is ParentChangedMessage msg))
|
|
{
|
|
HandleTransformParentChanged(msg);
|
|
}
|
|
}
|
|
|
|
private void HandleTransformParentChanged(ParentChangedMessage obj)
|
|
{
|
|
// TODO: this does not work for things nested multiply layers deep.
|
|
if (!VisibleNested)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (obj.NewParent != null && obj.NewParent.IsValid())
|
|
{
|
|
_lightOnParent = true;
|
|
}
|
|
else
|
|
{
|
|
_lightOnParent = false;
|
|
}
|
|
}
|
|
|
|
public override void ExposeData(ObjectSerializer serializer)
|
|
{
|
|
serializer.DataFieldCached(ref _offset, "offset", Vector2.Zero);
|
|
serializer.DataFieldCached(ref _radius, "radius", 5f);
|
|
serializer.DataFieldCached(ref _color, "color", Color.White);
|
|
serializer.DataFieldCached(ref _enabled, "enabled", true);
|
|
serializer.DataFieldCached(ref _energy, "energy", 1f);
|
|
serializer.DataFieldCached(ref _maskAutoRotate, "autoRot", false);
|
|
serializer.DataFieldCached(ref _visibleNested, "nestedvisible", true);
|
|
|
|
if (serializer.Reading && serializer.TryReadDataField<string>("mask", out var value))
|
|
{
|
|
Mask = IoCManager.Resolve<IResourceCache>().GetResource<TextureResource>(value);
|
|
}
|
|
}
|
|
|
|
public override void OnRemove()
|
|
{
|
|
base.OnRemove();
|
|
|
|
var map = Owner.Transform.MapID;
|
|
if (map != MapId.Nullspace)
|
|
{
|
|
Owner.EntityManager.EventBus.RaiseEvent(EventSource.Local,
|
|
new RenderTreeRemoveLightMessage(this, map));
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void HandleComponentState(ComponentState? curState, ComponentState? nextState)
|
|
{
|
|
if (curState == null)
|
|
return;
|
|
|
|
var newState = (PointLightComponentState) curState;
|
|
Enabled = newState.Enabled;
|
|
Radius = newState.Radius;
|
|
Offset = newState.Offset;
|
|
Color = newState.Color;
|
|
}
|
|
}
|
|
|
|
public struct PointLightRadiusChangedMessage
|
|
{
|
|
public PointLightComponent PointLightComponent { get; }
|
|
|
|
public PointLightRadiusChangedMessage(PointLightComponent pointLightComponent)
|
|
{
|
|
PointLightComponent = pointLightComponent;
|
|
}
|
|
}
|
|
}
|