-
-
Notifications
You must be signed in to change notification settings - Fork 9
LatheAlertLevelRestriction #360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
CrimeMoot
wants to merge
3
commits into
master
Choose a base branch
from
unlock_protolate_tweak
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
38 changes: 38 additions & 0 deletions
38
Content.Client/_Ganimed/Systems/ClientAlertLevelHierarchy.cs
This file contains hidden or 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,38 @@ | ||
| namespace Content.Client._Ganimed.Systems; | ||
|
|
||
| /// <summary> | ||
| /// Проверка уровней угрозы для клиента. | ||
| /// Клиент не имеет доступа к серверным прототипам, поэтому используется фиксированный порядок. | ||
| /// ВАЖНО: При изменении порядка в Resources/Prototypes/AlertLevels/alert_levels.yml | ||
| /// необходимо обновить этот массив! | ||
| /// Порядок: green < blue < violet < yellow < red < gamma < delta < epsilon < amber < altdelta < cascade | ||
| /// </summary> | ||
| public static class ClientAlertLevelHierarchy | ||
| { | ||
| /// <summary> | ||
| /// Порядок уровней угрозы от наименьшего к наибольшему. | ||
| /// ДОЛЖЕН СОВПАДАТЬ с порядком в Resources/Prototypes/AlertLevels/alert_levels.yml | ||
| /// </summary> | ||
| private static readonly string[] LevelOrder = | ||
| { | ||
| "green", "blue", "violet", "yellow", "red", | ||
| "gamma", "delta", "epsilon", "amber", "altdelta", "cascade" | ||
| }; | ||
|
|
||
| public static bool MeetsAlertLevelRequirement(string? currentLevel, string? requiredLevel) | ||
| { | ||
| if (string.IsNullOrEmpty(currentLevel) || string.IsNullOrEmpty(requiredLevel)) | ||
| return false; | ||
|
|
||
| if (currentLevel.Equals(requiredLevel, StringComparison.OrdinalIgnoreCase)) | ||
| return true; | ||
|
|
||
| var currentIdx = Array.IndexOf(LevelOrder, currentLevel.ToLower()); | ||
| var requiredIdx = Array.IndexOf(LevelOrder, requiredLevel.ToLower()); | ||
|
|
||
| if (currentIdx < 0 || requiredIdx < 0) | ||
| return false; | ||
|
|
||
| return currentIdx >= requiredIdx; | ||
| } | ||
| } |
34 changes: 34 additions & 0 deletions
34
Content.Client/_Ganimed/Systems/LatheAlertLevelRestrictionSystem.cs
This file contains hidden or 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,34 @@ | ||
| using Content.Shared.Lathe; | ||
| using Content.Shared.Lathe.Prototypes; | ||
| using Content.Shared.Research.Prototypes; | ||
| using Content.Shared._Ganimed.Components; | ||
| using Content.Client._Ganimed.Systems; | ||
| using Robust.Client.GameObjects; | ||
| using Robust.Shared.Prototypes; | ||
|
|
||
| namespace Content.Client._Ganimed.Systems; | ||
|
|
||
| public sealed class LatheAlertLevelRestrictionSystem : EntitySystem | ||
| { | ||
| [Dependency] private readonly IPrototypeManager _proto = default!; | ||
|
|
||
| public bool IsRecipeAvailable(EntityUid uid, LatheRecipePrototype recipe, LatheAlertLevelRestrictionComponent? restrictionComp = null) | ||
| { | ||
| if (!Resolve(uid, ref restrictionComp)) | ||
| return true; | ||
|
|
||
| if (restrictionComp == null) | ||
| return true; | ||
|
|
||
| if (string.IsNullOrEmpty(recipe.RequiredAlertLevel)) | ||
| return true; | ||
|
|
||
| if (TryComp<ProtolatheEmagComponent>(uid, out var emagComp) && emagComp.IsEmagged) | ||
| return true; | ||
|
|
||
| if (string.IsNullOrEmpty(restrictionComp.CurrentAlertLevel)) | ||
| return false; | ||
|
|
||
| return ClientAlertLevelHierarchy.MeetsAlertLevelRequirement(restrictionComp.CurrentAlertLevel, recipe.RequiredAlertLevel); | ||
| } | ||
| } | ||
This file contains hidden or 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 hidden or 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,37 @@ | ||
| using System.Linq; | ||
| using Robust.Shared.IoC; | ||
| using Robust.Shared.Prototypes; | ||
| using Content.Server.AlertLevel; | ||
|
|
||
| namespace Content.Server._Ganimed.Systems; | ||
| public static class AlertLevelHierarchy | ||
| { | ||
| public static bool MeetsAlertLevelRequirement( | ||
| string? currentLevel, | ||
| string? requiredLevel, | ||
| IPrototypeManager? prototypeManager = null) | ||
| { | ||
| if (string.IsNullOrEmpty(currentLevel) || string.IsNullOrEmpty(requiredLevel)) | ||
| return false; | ||
|
|
||
| if (currentLevel.Equals(requiredLevel, StringComparison.OrdinalIgnoreCase)) | ||
| return true; | ||
|
|
||
| if (prototypeManager == null) | ||
| prototypeManager = IoCManager.Resolve<IPrototypeManager>(); | ||
|
|
||
| if (!prototypeManager.TryIndex<AlertLevelPrototype>("stationAlerts", out var alertPrototype)) | ||
| return false; | ||
|
|
||
| var levels = alertPrototype.Levels.Keys.ToList(); | ||
|
|
||
|
|
||
| var currentIdx = levels.FindIndex(l => l.Equals(currentLevel, StringComparison.OrdinalIgnoreCase)); | ||
| var requiredIdx = levels.FindIndex(l => l.Equals(requiredLevel, StringComparison.OrdinalIgnoreCase)); | ||
|
|
||
| if (currentIdx < 0 || requiredIdx < 0) | ||
| return false; | ||
|
|
||
| return currentIdx >= requiredIdx; | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.