* Adds three new smites, headstand, locker stuff, and reptilian species swap. * Localize all the smites. * save work * More smites... * Final tweaks. * oops * !PLEH * Adds disarm prone and improved hand removal options. * fix chances. * take out the trash. * Add some admin TRICKS instead of more smites. * oop * Implements the admin test arena and associated trick. * Tricks for granting/revoking access. * e * mfw * Implement quick dialogs, for when you don't want to spend 20 minutes writing a simple dialog prompt. * Forgot the rejuv icon. * E * docs * augh * Add rename/redescribe buttons. * Adds objects menu, implements a couple tricks for stations. * 1984 * Adds a trick for effectively infinite power. * fixes some icon uggo. * a * HALT! * Pause/unpause buttons. * Forgor the textures. * they broke every bone in their body. * i added more * more battery actions, touch up battery icon. * Address reviews.
33 lines
887 B
C#
33 lines
887 B
C#
using Content.Shared.Station;
|
|
|
|
namespace Content.Client.Station;
|
|
|
|
/// <summary>
|
|
/// This handles letting the client know stations are a thing. Only really used by an admin menu.
|
|
/// </summary>
|
|
public sealed class StationSystem : EntitySystem
|
|
{
|
|
|
|
private readonly HashSet<EntityUid> _stations = new();
|
|
|
|
/// <summary>
|
|
/// All stations that currently exist.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// I'd have this just invoke an entity query, but we're on the client and the client barely knows about stations.
|
|
/// </remarks>
|
|
public IReadOnlySet<EntityUid> Stations => _stations;
|
|
|
|
/// <inheritdoc/>
|
|
public override void Initialize()
|
|
{
|
|
SubscribeNetworkEvent<StationsUpdatedEvent>(StationsUpdated);
|
|
}
|
|
|
|
private void StationsUpdated(StationsUpdatedEvent ev)
|
|
{
|
|
_stations.Clear();
|
|
_stations.UnionWith(ev.Stations);
|
|
}
|
|
}
|