* Cleanup warnings in DamageMarkerSystem * Cleanup warnings in CuffableSystem * Cleanup warnings in DeployableTurretSystem * Cleanup warnings in StorageContainerVisualsSystem * Cleanup warnings in ItemMapperSystem * Cleanup warnings in ItemCounterSystem * Cleanup warnings in RandomSpriteSystem * Cleanup warnings in PowerCellSystem * Cleanup warnings in ParticleAcceleratorPartVisualizerSystem * Cleanup warnings in PaperVisualizerSystem * Cleanup warnings in PoweredLightVisualizerSystem * Cleanup warnings in LightBulbSystem * Cleanup warnings in EmergencyLightSystem * Cleanup warnings in DoorSystem * Cleanup warnings in ClockSystem * Cleanup warnings in BuckleSystem * Cleanup warnings in JukeboxSystem
147 lines
5.0 KiB
C#
147 lines
5.0 KiB
C#
using Content.Shared.Audio.Jukebox;
|
|
using Robust.Client.Animations;
|
|
using Robust.Client.GameObjects;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Client.Audio.Jukebox;
|
|
|
|
|
|
public sealed class JukeboxSystem : SharedJukeboxSystem
|
|
{
|
|
[Dependency] private readonly IPrototypeManager _protoManager = default!;
|
|
[Dependency] private readonly AnimationPlayerSystem _animationPlayer = default!;
|
|
[Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!;
|
|
[Dependency] private readonly SharedUserInterfaceSystem _uiSystem = default!;
|
|
[Dependency] private readonly SpriteSystem _sprite = default!;
|
|
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
SubscribeLocalEvent<JukeboxComponent, AppearanceChangeEvent>(OnAppearanceChange);
|
|
SubscribeLocalEvent<JukeboxComponent, AnimationCompletedEvent>(OnAnimationCompleted);
|
|
SubscribeLocalEvent<JukeboxComponent, AfterAutoHandleStateEvent>(OnJukeboxAfterState);
|
|
|
|
_protoManager.PrototypesReloaded += OnProtoReload;
|
|
}
|
|
|
|
public override void Shutdown()
|
|
{
|
|
base.Shutdown();
|
|
_protoManager.PrototypesReloaded -= OnProtoReload;
|
|
}
|
|
|
|
private void OnProtoReload(PrototypesReloadedEventArgs obj)
|
|
{
|
|
if (!obj.WasModified<JukeboxPrototype>())
|
|
return;
|
|
|
|
var query = AllEntityQuery<JukeboxComponent, UserInterfaceComponent>();
|
|
|
|
while (query.MoveNext(out var uid, out _, out var ui))
|
|
{
|
|
if (!_uiSystem.TryGetOpenUi<JukeboxBoundUserInterface>((uid, ui), JukeboxUiKey.Key, out var bui))
|
|
continue;
|
|
|
|
bui.PopulateMusic();
|
|
}
|
|
}
|
|
|
|
private void OnJukeboxAfterState(Entity<JukeboxComponent> ent, ref AfterAutoHandleStateEvent args)
|
|
{
|
|
if (!_uiSystem.TryGetOpenUi<JukeboxBoundUserInterface>(ent.Owner, JukeboxUiKey.Key, out var bui))
|
|
return;
|
|
|
|
bui.Reload();
|
|
}
|
|
|
|
private void OnAnimationCompleted(EntityUid uid, JukeboxComponent component, AnimationCompletedEvent args)
|
|
{
|
|
if (!TryComp<SpriteComponent>(uid, out var sprite))
|
|
return;
|
|
|
|
if (!TryComp<AppearanceComponent>(uid, out var appearance) ||
|
|
!_appearanceSystem.TryGetData<JukeboxVisualState>(uid, JukeboxVisuals.VisualState, out var visualState, appearance))
|
|
{
|
|
visualState = JukeboxVisualState.On;
|
|
}
|
|
|
|
UpdateAppearance((uid, sprite), visualState, component);
|
|
}
|
|
|
|
private void OnAppearanceChange(EntityUid uid, JukeboxComponent component, ref AppearanceChangeEvent args)
|
|
{
|
|
if (args.Sprite == null)
|
|
return;
|
|
|
|
if (!args.AppearanceData.TryGetValue(JukeboxVisuals.VisualState, out var visualStateObject) ||
|
|
visualStateObject is not JukeboxVisualState visualState)
|
|
{
|
|
visualState = JukeboxVisualState.On;
|
|
}
|
|
|
|
UpdateAppearance((uid, args.Sprite), visualState, component);
|
|
}
|
|
|
|
private void UpdateAppearance(Entity<SpriteComponent> entity, JukeboxVisualState visualState, JukeboxComponent component)
|
|
{
|
|
SetLayerState(JukeboxVisualLayers.Base, component.OffState, entity);
|
|
|
|
switch (visualState)
|
|
{
|
|
case JukeboxVisualState.On:
|
|
SetLayerState(JukeboxVisualLayers.Base, component.OnState, entity);
|
|
break;
|
|
|
|
case JukeboxVisualState.Off:
|
|
SetLayerState(JukeboxVisualLayers.Base, component.OffState, entity);
|
|
break;
|
|
|
|
case JukeboxVisualState.Select:
|
|
PlayAnimation(entity.Owner, JukeboxVisualLayers.Base, component.SelectState, 1.0f, entity);
|
|
break;
|
|
}
|
|
}
|
|
|
|
private void PlayAnimation(EntityUid uid, JukeboxVisualLayers layer, string? state, float animationTime, SpriteComponent sprite)
|
|
{
|
|
if (string.IsNullOrEmpty(state))
|
|
return;
|
|
|
|
if (!_animationPlayer.HasRunningAnimation(uid, state))
|
|
{
|
|
var animation = GetAnimation(layer, state, animationTime);
|
|
_sprite.LayerSetVisible((uid, sprite), layer, true);
|
|
_animationPlayer.Play(uid, animation, state);
|
|
}
|
|
}
|
|
|
|
private static Animation GetAnimation(JukeboxVisualLayers layer, string state, float animationTime)
|
|
{
|
|
return new Animation
|
|
{
|
|
Length = TimeSpan.FromSeconds(animationTime),
|
|
AnimationTracks =
|
|
{
|
|
new AnimationTrackSpriteFlick
|
|
{
|
|
LayerKey = layer,
|
|
KeyFrames =
|
|
{
|
|
new AnimationTrackSpriteFlick.KeyFrame(state, 0f)
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
private void SetLayerState(JukeboxVisualLayers layer, string? state, Entity<SpriteComponent> sprite)
|
|
{
|
|
if (string.IsNullOrEmpty(state))
|
|
return;
|
|
|
|
_sprite.LayerSetVisible(sprite.AsNullable(), layer, true);
|
|
_sprite.LayerSetAutoAnimated(sprite.AsNullable(), layer, true);
|
|
_sprite.LayerSetRsiState(sprite.AsNullable(), layer, state);
|
|
}
|
|
}
|