forked from SpaceCowboyServer/Pirate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request SpaceCowboyServer#60 from v0idRift/patch-box_and_p…
…risoners Update for maps from Nazar_m
Showing
1,492 changed files
with
186,572 additions
and
33,900 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<GridContainer xmlns="https://spacestation14.io" | ||
Columns="5" | ||
HorizontalAlignment="Center"> | ||
</GridContainer> |
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,52 @@ | ||
using System.Linq; | ||
using Robust.Client.AutoGenerated; | ||
using Robust.Client.UserInterface; | ||
using Robust.Client.UserInterface.Controls; | ||
using Robust.Client.UserInterface.XAML; | ||
using Robust.Shared.Prototypes; | ||
using Content.Shared.Access; | ||
using Content.Shared.Access.Systems; | ||
|
||
namespace Content.Client.Access.UI; | ||
|
||
[GenerateTypedNameReferences] | ||
public sealed partial class AccessLevelControl : GridContainer | ||
{ | ||
public readonly Dictionary<ProtoId<AccessLevelPrototype>, Button> ButtonsList = new(); | ||
|
||
public AccessLevelControl() | ||
{ | ||
RobustXamlLoader.Load(this); | ||
} | ||
|
||
public void Populate(List<ProtoId<AccessLevelPrototype>> accessLevels, IPrototypeManager prototypeManager) | ||
{ | ||
foreach (var access in accessLevels) | ||
{ | ||
if (!prototypeManager.TryIndex(access, out var accessLevel)) | ||
{ | ||
Logger.Error($"Unable to find accesslevel for {access}"); | ||
continue; | ||
} | ||
|
||
var newButton = new Button | ||
{ | ||
Text = accessLevel.GetAccessLevelName(), | ||
ToggleMode = true, | ||
}; | ||
AddChild(newButton); | ||
ButtonsList.Add(accessLevel.ID, newButton); | ||
} | ||
} | ||
|
||
public void UpdateState( | ||
List<ProtoId<AccessLevelPrototype>> pressedList, | ||
List<ProtoId<AccessLevelPrototype>>? enabledList = null) | ||
{ | ||
foreach (var (accessName, button) in ButtonsList) | ||
{ | ||
button.Pressed = pressedList.Contains(accessName); | ||
button.Disabled = !(enabledList?.Contains(accessName) ?? true); | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using Content.Shared.Alert; | ||
using Robust.Client.GameObjects; | ||
|
||
namespace Content.Client.Alerts; | ||
|
||
/// <summary> | ||
/// Event raised on an entity with alerts in order to allow it to update visuals for the alert sprite entity. | ||
/// </summary> | ||
[ByRefEvent] | ||
public record struct UpdateAlertSpriteEvent | ||
{ | ||
public Entity<SpriteComponent> SpriteViewEnt; | ||
|
||
public AlertPrototype Alert; | ||
|
||
public UpdateAlertSpriteEvent(Entity<SpriteComponent> spriteViewEnt, AlertPrototype alert) | ||
{ | ||
SpriteViewEnt = spriteViewEnt; | ||
Alert = alert; | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
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,15 @@ | ||
using Content.Client.Chemistry.UI; | ||
using Content.Client.Items; | ||
using Content.Shared.Chemistry.Components; | ||
using Content.Shared.Chemistry.EntitySystems; | ||
|
||
namespace Content.Client.Chemistry.EntitySystems; | ||
|
||
public sealed class HypospraySystem : SharedHypospraySystem | ||
{ | ||
public override void Initialize() | ||
{ | ||
base.Initialize(); | ||
Subs.ItemStatus<HyposprayComponent>(ent => new HyposprayStatusControl(ent, _solutionContainers)); | ||
} | ||
} |
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.