* Laws * positronic brain and PAI rewrite * MMI * MMI pt. 2 * borg brain transfer * Roleban support, Borg job (WIP), the end of mind shenaniganry * battery drain, item slot cleanup, alerts * visuals * fix this pt1 * fix this pt2 * Modules, Lingering Stacks, Better borg flashlight * Start on UI, fix battery alerts, expand activation/deactivation, low movement speed on no power. * sprotes * no zombie borgs * oh fuck yeah i love a good relay * charger * fix the tiniest of sprite issues * adjustable names * a functional UI???? * foobar * more modules * this shit for some reason * upstream * genericize selectable borg modules * upstream again * holy fucking shit * i love christ * proper construction * da job * AA borgs * and boom more shit * admin logs * laws redux * ok just do this rq * oh boy that looks like modules * oh shit research * testos passo * so much shit holy fuck * fuckit we SHIP * last minute snags * should've gotten me on a better day
51 lines
1.7 KiB
C#
51 lines
1.7 KiB
C#
using Content.Shared.Access.Systems;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set;
|
|
|
|
namespace Content.Shared.Access.Components
|
|
{
|
|
/// <summary>
|
|
/// Simple mutable access provider found on ID cards and such.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
[Access(typeof(SharedAccessSystem))]
|
|
public sealed class AccessComponent : Component
|
|
{
|
|
[DataField("tags", customTypeSerializer: typeof(PrototypeIdHashSetSerializer<AccessLevelPrototype>))]
|
|
[Access(typeof(SharedAccessSystem), Other = AccessPermissions.ReadExecute)] // FIXME Friends
|
|
public HashSet<string> Tags = new();
|
|
|
|
/// <summary>
|
|
/// Access Groups. These are added to the tags during map init. After map init this will have no effect.
|
|
/// </summary>
|
|
[DataField("groups", readOnly: true, customTypeSerializer: typeof(PrototypeIdHashSetSerializer<AccessGroupPrototype>))]
|
|
public readonly HashSet<string> Groups = new();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Event raised on an entity to find additional entities which provide access.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public struct GetAdditionalAccessEvent
|
|
{
|
|
public HashSet<EntityUid> Entities = new();
|
|
|
|
public GetAdditionalAccessEvent()
|
|
{
|
|
}
|
|
}
|
|
|
|
[ByRefEvent]
|
|
public record struct GetAccessTagsEvent(HashSet<string> Tags, IPrototypeManager PrototypeManager)
|
|
{
|
|
public void AddGroup(string group)
|
|
{
|
|
if (!PrototypeManager.TryIndex<AccessGroupPrototype>(group, out var groupPrototype))
|
|
return;
|
|
|
|
Tags.UnionWith(groupPrototype.Tags);
|
|
}
|
|
}
|
|
}
|