-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:/pxc1984/space-sunrise into vox-n…
…o-roles-restriction
- Loading branch information
Showing
302 changed files
with
88,257 additions
and
16,207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
95 changes: 95 additions & 0 deletions
95
Content.Client/Electrocution/ElectrocutionHUDVisualizerSystem.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
using Content.Shared.Electrocution; | ||
using Robust.Client.GameObjects; | ||
using Robust.Client.Player; | ||
using Robust.Shared.Player; | ||
|
||
namespace Content.Client.Electrocution; | ||
|
||
/// <summary> | ||
/// Shows the Electrocution HUD to entities with the ShowElectrocutionHUDComponent. | ||
/// </summary> | ||
public sealed class ElectrocutionHUDVisualizerSystem : VisualizerSystem<ElectrocutionHUDVisualsComponent> | ||
{ | ||
[Dependency] private readonly IPlayerManager _playerMan = default!; | ||
|
||
public override void Initialize() | ||
{ | ||
base.Initialize(); | ||
|
||
SubscribeLocalEvent<ShowElectrocutionHUDComponent, ComponentInit>(OnInit); | ||
SubscribeLocalEvent<ShowElectrocutionHUDComponent, ComponentShutdown>(OnShutdown); | ||
SubscribeLocalEvent<ShowElectrocutionHUDComponent, LocalPlayerAttachedEvent>(OnPlayerAttached); | ||
SubscribeLocalEvent<ShowElectrocutionHUDComponent, LocalPlayerDetachedEvent>(OnPlayerDetached); | ||
} | ||
|
||
private void OnPlayerAttached(Entity<ShowElectrocutionHUDComponent> ent, ref LocalPlayerAttachedEvent args) | ||
{ | ||
ShowHUD(); | ||
} | ||
|
||
private void OnPlayerDetached(Entity<ShowElectrocutionHUDComponent> ent, ref LocalPlayerDetachedEvent args) | ||
{ | ||
RemoveHUD(); | ||
} | ||
|
||
private void OnInit(Entity<ShowElectrocutionHUDComponent> ent, ref ComponentInit args) | ||
{ | ||
if (_playerMan.LocalEntity == ent) | ||
{ | ||
ShowHUD(); | ||
} | ||
} | ||
|
||
private void OnShutdown(Entity<ShowElectrocutionHUDComponent> ent, ref ComponentShutdown args) | ||
{ | ||
if (_playerMan.LocalEntity == ent) | ||
{ | ||
RemoveHUD(); | ||
} | ||
} | ||
|
||
// Show the HUD to the client. | ||
// We have to look for all current entities that can be electrified and toggle the HUD layer on if they are. | ||
private void ShowHUD() | ||
{ | ||
var electrifiedQuery = AllEntityQuery<ElectrocutionHUDVisualsComponent, AppearanceComponent, SpriteComponent>(); | ||
while (electrifiedQuery.MoveNext(out var uid, out var _, out var appearanceComp, out var spriteComp)) | ||
{ | ||
if (!AppearanceSystem.TryGetData<bool>(uid, ElectrifiedVisuals.IsElectrified, out var electrified, appearanceComp)) | ||
continue; | ||
|
||
if (electrified) | ||
spriteComp.LayerSetVisible(ElectrifiedLayers.HUD, true); | ||
else | ||
spriteComp.LayerSetVisible(ElectrifiedLayers.HUD, false); | ||
} | ||
} | ||
|
||
// Remove the HUD from the client. | ||
// Find all current entities that can be electrified and hide the HUD layer. | ||
private void RemoveHUD() | ||
{ | ||
var electrifiedQuery = AllEntityQuery<ElectrocutionHUDVisualsComponent, AppearanceComponent, SpriteComponent>(); | ||
while (electrifiedQuery.MoveNext(out var uid, out var _, out var appearanceComp, out var spriteComp)) | ||
{ | ||
|
||
spriteComp.LayerSetVisible(ElectrifiedLayers.HUD, false); | ||
} | ||
} | ||
|
||
// Toggle the HUD layer if an entity becomes (de-)electrified | ||
protected override void OnAppearanceChange(EntityUid uid, ElectrocutionHUDVisualsComponent comp, ref AppearanceChangeEvent args) | ||
{ | ||
if (args.Sprite == null) | ||
return; | ||
|
||
if (!AppearanceSystem.TryGetData<bool>(uid, ElectrifiedVisuals.IsElectrified, out var electrified, args.Component)) | ||
return; | ||
|
||
var player = _playerMan.LocalEntity; | ||
if (electrified && HasComp<ShowElectrocutionHUDComponent>(player)) | ||
args.Sprite.LayerSetVisible(ElectrifiedLayers.HUD, true); | ||
else | ||
args.Sprite.LayerSetVisible(ElectrifiedLayers.HUD, false); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.