Мягкий свет для всякого (#316)
* add: add small soft light to laser weapon + fix the bluest blue energy shield * git commit * boltlights done * add: HuetaSystem * add: Doorlights finally done * add: small light to lockers * add: small light to multitool * fix: fix naming * hui pizde * fix: fix parasha * add: small light to powercells * zabil * add: code light to welders * tweak: better energy and radius * add: better color parameters * add: less radius and energy for guns * add: better lights for vending machines * add: better light to consoles * add: better light for apc * shut up * fix: thank you neuro colleague
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using Robust.Shared.GameStates;
|
||||
|
||||
namespace Content.Shared._White.Lighting.PointLight.Airlock;
|
||||
|
||||
[RegisterComponent, NetworkedComponent]
|
||||
public sealed partial class PointLightAirlockComponent : Component
|
||||
{
|
||||
[ViewVariables]
|
||||
public string RedColor = "#D56C6C";
|
||||
|
||||
[ViewVariables]
|
||||
public string BlueColor = "#7F93C0";
|
||||
|
||||
[ViewVariables]
|
||||
public string YellowColor = "#BDC07F";
|
||||
|
||||
[ViewVariables]
|
||||
public string GreenColor = "#7FC080";
|
||||
}
|
||||
@@ -0,0 +1,83 @@
|
||||
using Content.Shared.Doors.Components;
|
||||
|
||||
namespace Content.Shared._White.Lighting.PointLight.Airlock;
|
||||
|
||||
//TODO: Когда-нибудь починить эту хуйню: Когда дверь открыта на аварийный доступ и ее болтируют, то свет будет желтым, хотя должен быть красным из-за болтов.
|
||||
|
||||
public sealed class SharedPointLightAirlockSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly SharedPointLightSystem _pointLightSystem = default!;
|
||||
public override void Initialize()
|
||||
{
|
||||
base.Initialize();
|
||||
SubscribeLocalEvent<PointLightAirlockComponent, DoorlightsChangedEvent>(OnDoorLightChanged);
|
||||
}
|
||||
|
||||
public void ToggleLight(EntityUid uid, string hex, bool enable = true)
|
||||
{
|
||||
if (!_pointLightSystem.TryGetLight(uid, out var pointLightComponent))
|
||||
return;
|
||||
|
||||
if (enable)
|
||||
{
|
||||
var color = Color.FromHex(hex);
|
||||
_pointLightSystem.SetColor(uid, color, pointLightComponent);
|
||||
}
|
||||
|
||||
_pointLightSystem.SetEnabled(uid, enable, pointLightComponent);
|
||||
|
||||
RaiseLocalEvent(uid, new PointLightToggleEvent(enable), true);
|
||||
}
|
||||
|
||||
public void OnDoorLightChanged(EntityUid uid, PointLightAirlockComponent component, DoorlightsChangedEvent args)
|
||||
{
|
||||
if (!TryComp<DoorComponent>(uid, out var door))
|
||||
return;
|
||||
|
||||
if (TryComp<AirlockComponent>(uid, out var airlockComponent) && airlockComponent.EmergencyAccess && args.Value && args.State is not DoorVisuals.EmergencyLights && args.State != null)
|
||||
return; // While emergency access lights must be yellow no matter what
|
||||
|
||||
switch (args.State)
|
||||
{
|
||||
case DoorVisuals.BoltLights:
|
||||
if (args.Value)
|
||||
ToggleLight(uid, component.RedColor);
|
||||
else
|
||||
RaiseLocalEvent(uid, new DoorlightsChangedEvent(door.State, true));
|
||||
break;
|
||||
|
||||
case DoorState.Denying:
|
||||
ToggleLight(uid, component.RedColor);
|
||||
break;
|
||||
|
||||
case DoorState.Closed:
|
||||
ToggleLight(uid, component.BlueColor);
|
||||
break;
|
||||
|
||||
case DoorVisuals.EmergencyLights:
|
||||
if (args.Value)
|
||||
ToggleLight(uid, component.YellowColor);
|
||||
else
|
||||
RaiseLocalEvent(uid, new DoorlightsChangedEvent(door.State, true));
|
||||
break;
|
||||
|
||||
case DoorState.Open:
|
||||
ToggleLight(uid, component.BlueColor);
|
||||
break;
|
||||
|
||||
case DoorState.Opening:
|
||||
ToggleLight(uid, component.GreenColor);
|
||||
break;
|
||||
|
||||
case DoorState.Closing:
|
||||
ToggleLight(uid, component.GreenColor);
|
||||
break;
|
||||
|
||||
default:
|
||||
ToggleLight(uid, "", false);
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user