Add UI for setting solution transfer amount (#4074)
* basic eui and window * finish EUI, update defaults * unnecessary usings * convert to bounduserinterface * merge me up merge me up inside * Fix repeated define for component in prototype * impl swept UI suggestion * apply discord reviews * small changes
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
using Content.Shared.Chemistry;
|
||||
using Content.Shared.Chemistry.Reagent;
|
||||
using JetBrains.Annotations;
|
||||
using Robust.Client.GameObjects;
|
||||
using Robust.Shared.GameObjects;
|
||||
|
||||
namespace Content.Client.Chemistry.UI
|
||||
{
|
||||
[UsedImplicitly]
|
||||
public class TransferAmountBoundUserInterface : BoundUserInterface
|
||||
{
|
||||
private TransferAmountWindow? _window;
|
||||
|
||||
protected override void Open()
|
||||
{
|
||||
base.Open();
|
||||
_window = new TransferAmountWindow();
|
||||
|
||||
_window.applyButton.OnPressed += _ =>
|
||||
{
|
||||
if (int.TryParse(_window.amountLineEdit.Text, out var i))
|
||||
{
|
||||
SendMessage(new TransferAmountSetValueMessage(ReagentUnit.New(i)));
|
||||
_window.Close();
|
||||
}
|
||||
};
|
||||
|
||||
_window.OpenCentered();
|
||||
}
|
||||
|
||||
public TransferAmountBoundUserInterface(ClientUserInterfaceComponent owner, object uiKey) : base(owner, uiKey)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
11
Content.Client/Chemistry/UI/TransferAmountWindow.xaml
Normal file
11
Content.Client/Chemistry/UI/TransferAmountWindow.xaml
Normal file
@@ -0,0 +1,11 @@
|
||||
<SS14Window xmlns="https://spacestation14.io"
|
||||
Title="{Loc 'ui-transfer-amount-title'}"
|
||||
Resizable="False">
|
||||
|
||||
<VBoxContainer SeparationOverride="4" CustomMinimumSize="240 80">
|
||||
<HBoxContainer>
|
||||
<LineEdit Name="AmountLineEdit" HorizontalExpand="True" PlaceHolder="{Loc 'ui-transfer-amount-line-edit-placeholder'}"/>
|
||||
</HBoxContainer>
|
||||
<Button Name="ApplyButton" Text="{Loc 'ui-transfer-amount-apply'}"/>
|
||||
</VBoxContainer>
|
||||
</SS14Window>
|
||||
19
Content.Client/Chemistry/UI/TransferAmountWindow.xaml.cs
Normal file
19
Content.Client/Chemistry/UI/TransferAmountWindow.xaml.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using Robust.Client.AutoGenerated;
|
||||
using Robust.Client.UserInterface.Controls;
|
||||
using Robust.Client.UserInterface.CustomControls;
|
||||
using Robust.Client.UserInterface.XAML;
|
||||
|
||||
namespace Content.Client.Chemistry.UI
|
||||
{
|
||||
[GenerateTypedNameReferences]
|
||||
public partial class TransferAmountWindow : SS14Window
|
||||
{
|
||||
public Button applyButton => ApplyButton;
|
||||
public LineEdit amountLineEdit => AmountLineEdit;
|
||||
|
||||
public TransferAmountWindow()
|
||||
{
|
||||
RobustXamlLoader.Load(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,15 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Content.Server.UserInterface;
|
||||
using Content.Shared.ActionBlocker;
|
||||
using Content.Shared.Chemistry;
|
||||
using Content.Shared.Chemistry.Reagent;
|
||||
using Content.Shared.Chemistry.Solution.Components;
|
||||
using Content.Shared.Interaction;
|
||||
using Content.Shared.Interaction.Helpers;
|
||||
using Content.Shared.Notification.Managers;
|
||||
using Content.Shared.Verbs;
|
||||
using Robust.Server.GameObjects;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Localization;
|
||||
using Robust.Shared.Serialization.Manager.Attributes;
|
||||
@@ -31,6 +37,35 @@ namespace Content.Server.Chemistry.Components
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
public ReagentUnit TransferAmount { get; set; } = ReagentUnit.New(5);
|
||||
|
||||
/// <summary>
|
||||
/// The minimum amount of solution that can be transferred at once from this solution.
|
||||
/// </summary>
|
||||
[DataField("minTransferAmount")]
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
public ReagentUnit MinimumTransferAmount { get; set; } = ReagentUnit.New(5);
|
||||
|
||||
/// <summary>
|
||||
/// The maximum amount of solution that can be transferred at once from this solution.
|
||||
/// </summary>
|
||||
[DataField("maxTransferAmount")]
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
public ReagentUnit MaximumTransferAmount { get; set; } = ReagentUnit.New(50);
|
||||
|
||||
/// <summary>
|
||||
/// Subjectively, which transfer amount would be best for most activities given the maximum
|
||||
/// transfer amount.
|
||||
/// </summary>
|
||||
public ReagentUnit SubjectiveBestTransferAmount() =>
|
||||
MaximumTransferAmount.Int() switch
|
||||
{
|
||||
<= 5 => ReagentUnit.New(1),
|
||||
(> 5) and (<= 25) => ReagentUnit.New(5),
|
||||
(> 25) and (<= 50) => ReagentUnit.New(10),
|
||||
(> 50) and (<= 100) => ReagentUnit.New(20),
|
||||
(> 100) and (<= 500) => ReagentUnit.New(50),
|
||||
(> 500) => ReagentUnit.New(100)
|
||||
};
|
||||
|
||||
/// <summary>
|
||||
/// Can this entity take reagent from reagent tanks?
|
||||
/// </summary>
|
||||
@@ -45,6 +80,46 @@ namespace Content.Server.Chemistry.Components
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
public bool CanSend { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// Whether you're allowed to change the transfer amount.
|
||||
/// </summary>
|
||||
[DataField("canChangeTransferAmount")]
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
public bool CanChangeTransferAmount { get; set; } = false;
|
||||
|
||||
[ViewVariables] private BoundUserInterface? UserInterface => Owner.GetUIOrNull(TransferAmountUiKey.Key);
|
||||
|
||||
protected override void Initialize()
|
||||
{
|
||||
base.Initialize();
|
||||
|
||||
if (UserInterface != null)
|
||||
{
|
||||
UserInterface.OnReceiveMessage += UserInterfaceOnReceiveMessage;
|
||||
}
|
||||
}
|
||||
|
||||
public void UserInterfaceOnReceiveMessage(ServerBoundUserInterfaceMessage serverMsg)
|
||||
{
|
||||
switch (serverMsg.Message)
|
||||
{
|
||||
case TransferAmountSetValueMessage svm:
|
||||
var sval = svm.Value.Float();
|
||||
var amount = Math.Clamp(sval, MinimumTransferAmount.Float(),
|
||||
MaximumTransferAmount.Float());
|
||||
|
||||
serverMsg.Session.AttachedEntity?.PopupMessage(Loc.GetString("comp-solution-transfer-set-amount", ("amount", amount)));
|
||||
SetTransferAmount(ReagentUnit.New(amount));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
public void SetTransferAmount(ReagentUnit amount)
|
||||
{
|
||||
amount = ReagentUnit.New(Math.Clamp(amount.Int(), MinimumTransferAmount.Int(), MaximumTransferAmount.Int()));
|
||||
TransferAmount = amount;
|
||||
}
|
||||
|
||||
async Task<bool> IAfterInteract.AfterInteract(AfterInteractEventArgs eventArgs)
|
||||
{
|
||||
if (!eventArgs.InRangeUnobstructed() || eventArgs.Target == null)
|
||||
@@ -67,8 +142,8 @@ namespace Content.Server.Chemistry.Components
|
||||
{
|
||||
var toTheBrim = ownerSolution.RefillSpaceAvailable == 0;
|
||||
var msg = toTheBrim
|
||||
? "solution-transfer-component-fill-to-brim-message"
|
||||
: "solution-transfer-component-fill--message";
|
||||
? "comp-solution-transfer-fill-fully"
|
||||
: "comp-solution-transfer-fill-normal";
|
||||
|
||||
target.PopupMessage(eventArgs.User, Loc.GetString(msg,("owner", Owner),("amount", transferred),("target", target)));
|
||||
return true;
|
||||
@@ -82,7 +157,7 @@ namespace Content.Server.Chemistry.Components
|
||||
if (transferred > 0)
|
||||
{
|
||||
Owner.PopupMessage(eventArgs.User,
|
||||
Loc.GetString("solution-transfer-component-transfer-success-message",
|
||||
Loc.GetString("comp-solution-transfer-transfer-solution",
|
||||
("amount",transferred),
|
||||
("target",target)));
|
||||
|
||||
@@ -102,13 +177,13 @@ namespace Content.Server.Chemistry.Components
|
||||
{
|
||||
if (source.DrainAvailable == 0)
|
||||
{
|
||||
source.Owner.PopupMessage(user, Loc.GetString("solution-transfer-component-do-transfer-component-is-empty", ("entity",source.Owner)));
|
||||
source.Owner.PopupMessage(user, Loc.GetString("comp-solution-transfer-is-empty", ("target", source.Owner)));
|
||||
return ReagentUnit.Zero;
|
||||
}
|
||||
|
||||
if (target.RefillSpaceAvailable == 0)
|
||||
{
|
||||
target.Owner.PopupMessage(user, Loc.GetString("solution-transfer-component-do-transfer-component-is-full", ("entity", target.Owner)));
|
||||
target.Owner.PopupMessage(user, Loc.GetString("comp-solution-transfer-is-full", ("target", target.Owner)));
|
||||
return ReagentUnit.Zero;
|
||||
}
|
||||
|
||||
@@ -120,5 +195,114 @@ namespace Content.Server.Chemistry.Components
|
||||
|
||||
return actualAmount;
|
||||
}
|
||||
|
||||
// TODO refactor when dynamic verbs are a thing
|
||||
|
||||
[Verb]
|
||||
public sealed class MinimumTransferVerb : Verb<SolutionTransferComponent>
|
||||
{
|
||||
protected override void GetData(IEntity user, SolutionTransferComponent component, VerbData data)
|
||||
{
|
||||
if (!EntitySystem.Get<ActionBlockerSystem>().CanInteract(user) || !component.CanChangeTransferAmount)
|
||||
{
|
||||
data.Visibility = VerbVisibility.Invisible;
|
||||
return;
|
||||
}
|
||||
|
||||
data.Visibility = VerbVisibility.Visible;
|
||||
data.Text = Loc.GetString("comp-solution-transfer-verb-transfer-amount-min",
|
||||
("amount", component.MinimumTransferAmount.Int()));
|
||||
data.CategoryData = VerbCategories.SetTransferAmount;
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, SolutionTransferComponent component)
|
||||
{
|
||||
component.TransferAmount = component.MinimumTransferAmount;
|
||||
user.PopupMessage(Loc.GetString("comp-solution-transfer-set-amount",
|
||||
("amount", component.TransferAmount.Int())));
|
||||
}
|
||||
}
|
||||
|
||||
[Verb]
|
||||
public sealed class DefaultTransferVerb : Verb<SolutionTransferComponent>
|
||||
{
|
||||
protected override void GetData(IEntity user, SolutionTransferComponent component, VerbData data)
|
||||
{
|
||||
if (!EntitySystem.Get<ActionBlockerSystem>().CanInteract(user) || !component.CanChangeTransferAmount)
|
||||
{
|
||||
data.Visibility = VerbVisibility.Invisible;
|
||||
return;
|
||||
}
|
||||
|
||||
var amt = component.SubjectiveBestTransferAmount();
|
||||
if (amt > component.MinimumTransferAmount && amt < component.MaximumTransferAmount)
|
||||
{
|
||||
data.Visibility = VerbVisibility.Visible;
|
||||
data.Text = Loc.GetString("comp-solution-transfer-verb-transfer-amount-ideal",
|
||||
("amount", amt.Int()));
|
||||
data.CategoryData = VerbCategories.SetTransferAmount;
|
||||
}
|
||||
else
|
||||
{
|
||||
data.Visibility = VerbVisibility.Invisible;
|
||||
}
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, SolutionTransferComponent component)
|
||||
{
|
||||
component.TransferAmount = component.SubjectiveBestTransferAmount();
|
||||
user.PopupMessage(Loc.GetString("comp-solution-transfer-set-amount", ("amount", component.TransferAmount.Int())));
|
||||
}
|
||||
}
|
||||
|
||||
[Verb]
|
||||
public sealed class MaximumTransferVerb : Verb<SolutionTransferComponent>
|
||||
{
|
||||
protected override void GetData(IEntity user, SolutionTransferComponent component, VerbData data)
|
||||
{
|
||||
if (!EntitySystem.Get<ActionBlockerSystem>().CanInteract(user) || !component.CanChangeTransferAmount)
|
||||
{
|
||||
data.Visibility = VerbVisibility.Invisible;
|
||||
return;
|
||||
}
|
||||
|
||||
data.Visibility = VerbVisibility.Visible;
|
||||
data.Text = Loc.GetString("comp-solution-transfer-verb-transfer-amount-max",
|
||||
("amount", component.MaximumTransferAmount));
|
||||
data.CategoryData = VerbCategories.SetTransferAmount;
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, SolutionTransferComponent component)
|
||||
{
|
||||
component.TransferAmount = component.MaximumTransferAmount;
|
||||
user.PopupMessage(Loc.GetString("comp-solution-transfer-set-amount", ("amount", component.TransferAmount.Int())));
|
||||
}
|
||||
}
|
||||
|
||||
[Verb]
|
||||
public sealed class CustomTransferVerb : Verb<SolutionTransferComponent>
|
||||
{
|
||||
protected override void GetData(IEntity user, SolutionTransferComponent component, VerbData data)
|
||||
{
|
||||
if (!EntitySystem.Get<ActionBlockerSystem>().CanInteract(user) || !component.CanChangeTransferAmount)
|
||||
{
|
||||
data.Visibility = VerbVisibility.Invisible;
|
||||
return;
|
||||
}
|
||||
|
||||
data.Visibility = VerbVisibility.Visible;
|
||||
data.Text = Loc.GetString("comp-solution-transfer-verb-transfer-amount-custom");
|
||||
data.CategoryData = VerbCategories.SetTransferAmount;
|
||||
}
|
||||
|
||||
protected override void Activate(IEntity user, SolutionTransferComponent component)
|
||||
{
|
||||
if (!user.TryGetComponent<ActorComponent>(out var actor))
|
||||
{
|
||||
return;
|
||||
}
|
||||
component.UserInterface?.Open(actor.PlayerSession);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
37
Content.Shared/Chemistry/SharedTransferAmount.cs
Normal file
37
Content.Shared/Chemistry/SharedTransferAmount.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using Content.Shared.Chemistry.Reagent;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Chemistry
|
||||
{
|
||||
[Serializable, NetSerializable]
|
||||
public class TransferAmountBoundInterfaceState : BoundUserInterfaceState
|
||||
{
|
||||
public ReagentUnit Max;
|
||||
public ReagentUnit Min;
|
||||
|
||||
public TransferAmountBoundInterfaceState(ReagentUnit max, ReagentUnit min)
|
||||
{
|
||||
Max = max;
|
||||
Min = min;
|
||||
}
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public class TransferAmountSetValueMessage : BoundUserInterfaceMessage
|
||||
{
|
||||
public ReagentUnit Value;
|
||||
|
||||
public TransferAmountSetValueMessage(ReagentUnit value)
|
||||
{
|
||||
Value = value;
|
||||
}
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum TransferAmountUiKey
|
||||
{
|
||||
Key,
|
||||
}
|
||||
}
|
||||
@@ -11,5 +11,7 @@ namespace Content.Shared.Verbs
|
||||
|
||||
public static readonly VerbCategoryData Rotate = ("Rotate", null);
|
||||
public static readonly VerbCategoryData Construction = ("Construction", null);
|
||||
public static readonly VerbCategoryData SetTransferAmount =
|
||||
("Set Transfer Amount", "/Textures/Interface/VerbIcons/spill.svg.192dpi.png");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,18 @@
|
||||
solution-transfer-component-fill-to-brim-message = You fill {$owner} to the brim with {$amount}u from {$target}
|
||||
solution-transfer-component-fill--message = You fill {$owner} with {$amount}u from {$target}
|
||||
solution-transfer-component-transfer-success-message = You transfer {$amount}u to {$target}.
|
||||
solution-transfer-component-do-transfer-component-is-empty = {$entity} is empty!
|
||||
solution-transfer-component-do-transfer-component-is-full = {$entity} is full!
|
||||
### Solution transfer component
|
||||
|
||||
comp-solution-transfer-fill-normal = You fill {THE($target)} with {$amount}u from {THE($owner)}.
|
||||
comp-solution-transfer-fill-fully = You fill {THE($target)} to the brim with {$amount}u from {THE($owner)}.
|
||||
comp-solution-transfer-transfer-solution = You transfer {$amount}u to {THE($target)}.
|
||||
|
||||
## Displayed when trying to transfer to a solution, but either the giver is empty or the taker is full
|
||||
comp-solution-transfer-is-empty = {THE($target)} is empty!
|
||||
comp-solution-transfer-is-full = {THE($target)} is full!
|
||||
|
||||
## Displayed in change transfer amount verb's name
|
||||
comp-solution-transfer-verb-transfer-amount-min = {$amount}u
|
||||
comp-solution-transfer-verb-transfer-amount-max = {$amount}u
|
||||
comp-solution-transfer-verb-transfer-amount-ideal = {$amount}u
|
||||
comp-solution-transfer-verb-transfer-amount-custom = Custom
|
||||
|
||||
## Displayed after you successfully change a solution's amount using the BUI
|
||||
comp-solution-transfer-set-amount = Transfer amount set to {$amount}u.
|
||||
|
||||
13
Resources/Locale/en-US/ui/transfer-amount.ftl
Normal file
13
Resources/Locale/en-US/ui/transfer-amount.ftl
Normal file
@@ -0,0 +1,13 @@
|
||||
### Loc for the transfer amount eui window
|
||||
|
||||
## Title
|
||||
|
||||
ui-transfer-amount-title = Change Transfer Amount
|
||||
|
||||
## Text for the button to apply changes
|
||||
|
||||
ui-transfer-amount-apply = Set Amount
|
||||
|
||||
## Placeholder text for the amount line edit
|
||||
|
||||
ui-transfer-amount-line-edit-placeholder = Amount
|
||||
@@ -14,7 +14,7 @@
|
||||
- type: SolutionContainer
|
||||
maxVol: 10
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 5
|
||||
maxTransferAmount: 10
|
||||
- type: Sprite
|
||||
netsync: false
|
||||
sprite: Objects/Consumable/Food/condiments.rsi
|
||||
@@ -313,7 +313,7 @@
|
||||
- type: SolutionContainer
|
||||
maxVol: 30
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 5
|
||||
maxTransferAmount: 30
|
||||
- type: Sprite
|
||||
netsync: false
|
||||
sprite: Objects/Consumable/Food/condiments.rsi
|
||||
@@ -448,7 +448,7 @@
|
||||
- type: SolutionContainer
|
||||
maxVol: 15
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 5
|
||||
maxTransferAmount: 15
|
||||
- type: Sprite
|
||||
netsync: false
|
||||
sprite: Objects/Consumable/Food/condiments.rsi
|
||||
|
||||
@@ -27,7 +27,6 @@
|
||||
- type: SolutionContainer
|
||||
maxVol: 50
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 5
|
||||
- type: Drink
|
||||
openSounds: packetOpenSounds
|
||||
useSound: /Audio/Items/eating_1.ogg
|
||||
|
||||
@@ -9,11 +9,15 @@
|
||||
- type: SolutionContainer
|
||||
maxVol: 50
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 5
|
||||
canChangeTransferAmount: true
|
||||
- type: Drink
|
||||
- type: Sprite
|
||||
state: icon
|
||||
- type: Spillable
|
||||
- type: UserInterface
|
||||
interfaces:
|
||||
- key: enum.TransferAmountUiKey.Key
|
||||
type: TransferAmountBoundUserInterface
|
||||
|
||||
- type: entity
|
||||
parent: DrinkBase
|
||||
@@ -56,8 +60,12 @@
|
||||
- type: SolutionContainer
|
||||
maxVol: 50
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 5
|
||||
canChangeTransferAmount: true
|
||||
- type: TransformableContainer
|
||||
- type: UserInterface
|
||||
interfaces:
|
||||
- key: enum.TransferAmountUiKey.Key
|
||||
type: TransferAmountBoundUserInterface
|
||||
|
||||
- type: entity
|
||||
parent: DrinkGlassBase
|
||||
|
||||
@@ -8,7 +8,11 @@
|
||||
- type: SolutionContainer
|
||||
maxVol: 100
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 5
|
||||
canChangeTransferAmount: true
|
||||
- type: UserInterface
|
||||
interfaces:
|
||||
- key: enum.TransferAmountUiKey.Key
|
||||
type: TransferAmountBoundUserInterface
|
||||
- type: Sprite
|
||||
state: icon
|
||||
- type: DamageOnLand
|
||||
|
||||
@@ -14,7 +14,12 @@
|
||||
- ReagentId: Cola
|
||||
Quantity: 20
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 5
|
||||
canChangeTransferAmount: true
|
||||
maxTransferAmount: 10
|
||||
- type: UserInterface
|
||||
interfaces:
|
||||
- key: enum.TransferAmountUiKey.Key
|
||||
type: TransferAmountBoundUserInterface
|
||||
- type: Sprite
|
||||
state: icon
|
||||
|
||||
|
||||
@@ -8,7 +8,12 @@
|
||||
- type: SolutionContainer
|
||||
maxVol: 20
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 5
|
||||
canChangeTransferAmount: true
|
||||
maxTransferAmount: 10
|
||||
- type: UserInterface
|
||||
interfaces:
|
||||
- key: enum.TransferAmountUiKey.Key
|
||||
type: TransferAmountBoundUserInterface
|
||||
- type: Drink
|
||||
isOpen: true
|
||||
- type: Sprite
|
||||
|
||||
@@ -9,14 +9,19 @@
|
||||
- type: LoopingSound
|
||||
- type: Sprite
|
||||
state: icon
|
||||
|
||||
- type: SolutionContainer
|
||||
maxVol: 10
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 5
|
||||
canChangeTransferAmount: true
|
||||
maxTransferAmount: 5
|
||||
- type: Drink
|
||||
isOpen: true
|
||||
- type: Spillable
|
||||
- type: UserInterface
|
||||
interfaces:
|
||||
- key: enum.TransferAmountUiKey.Key
|
||||
type: TransferAmountBoundUserInterface
|
||||
|
||||
|
||||
|
||||
# Containers
|
||||
|
||||
@@ -18,7 +18,6 @@
|
||||
maxVol: 100
|
||||
caps: Refillable, Drainable
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 5.0
|
||||
- type: Spillable
|
||||
- type: ItemCooldown
|
||||
- type: Spray
|
||||
|
||||
@@ -18,7 +18,12 @@
|
||||
maxVol: 30
|
||||
caps: OpenContainer
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 5
|
||||
maxTransferAmount: 30
|
||||
canChangeTransferAmount: true
|
||||
- type: UserInterface
|
||||
interfaces:
|
||||
- key: enum.TransferAmountUiKey.Key
|
||||
type: TransferAmountBoundUserInterface
|
||||
- type: Item
|
||||
sprite: Objects/Specific/Chemistry/beaker.rsi
|
||||
- type: Spillable
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
netsync: false
|
||||
layers:
|
||||
- state: beaker
|
||||
- state: beaker1
|
||||
- state: beaker1
|
||||
map: ["enum.SolutionContainerLayers.Fill"]
|
||||
visible: false
|
||||
- type: Item
|
||||
@@ -21,7 +21,11 @@
|
||||
maxVol: 50
|
||||
caps: OpenContainer, FitsInDispenser # can add and remove solutions and fits in the chemmaster.
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 5.0
|
||||
canChangeTransferAmount: true
|
||||
- type: UserInterface
|
||||
interfaces:
|
||||
- key: enum.TransferAmountUiKey.Key
|
||||
type: TransferAmountBoundUserInterface
|
||||
- type: Spillable
|
||||
- type: Drink
|
||||
isOpen: true
|
||||
@@ -62,7 +66,7 @@
|
||||
sprite: Objects/Specific/Chemistry/beaker_large.rsi
|
||||
layers:
|
||||
- state: beakerlarge
|
||||
- state: beakerlarge1
|
||||
- state: beakerlarge1
|
||||
map: ["enum.SolutionContainerLayers.Fill"]
|
||||
visible: false
|
||||
- type: Item
|
||||
@@ -120,7 +124,14 @@
|
||||
caps: OpenContainer
|
||||
maxVol: 5
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 5.0
|
||||
minTransferAmount: 1
|
||||
transferAmount: 1
|
||||
maxTransferAmount: 5
|
||||
canChangeTransferAmount: true
|
||||
- type: UserInterface
|
||||
interfaces:
|
||||
- key: enum.TransferAmountUiKey.Key
|
||||
type: TransferAmountBoundUserInterface
|
||||
- type: Spillable
|
||||
- type: Item
|
||||
sprite: Objects/Specific/Chemistry/dropper.rsi
|
||||
@@ -140,7 +151,7 @@
|
||||
sprite: Objects/Specific/Chemistry/syringe.rsi
|
||||
netsync: false
|
||||
layers:
|
||||
- state: syringe1
|
||||
- state: syringe1
|
||||
map: ["enum.SolutionContainerLayers.Fill"]
|
||||
visible: false
|
||||
- state: syringe_base0
|
||||
@@ -155,7 +166,7 @@
|
||||
- type: Appearance
|
||||
visuals:
|
||||
# this visualizer used for reagent inside
|
||||
- type: SolutionContainerVisualizer
|
||||
- type: SolutionContainerVisualizer
|
||||
maxFillLevels: 4
|
||||
fillBaseName: syringe
|
||||
# this one for syrigine itself (plunger)
|
||||
|
||||
@@ -20,6 +20,13 @@
|
||||
maxVol: 500
|
||||
- type: SolutionTransfer
|
||||
transferAmount: 50
|
||||
maxTransferAmount: 100
|
||||
minTransferAmount: 10
|
||||
canChangeTransferAmount: true
|
||||
- type: UserInterface
|
||||
interfaces:
|
||||
- key: enum.TransferAmountUiKey.Key
|
||||
type: TransferAmountBoundUserInterface
|
||||
- type: Physics
|
||||
bodyType: Dynamic
|
||||
fixtures:
|
||||
|
||||
@@ -101,3 +101,4 @@
|
||||
maxVol: 15
|
||||
caps: Refillable, Drainable
|
||||
- type: SolutionTransfer
|
||||
maxTransferAmount: 15
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
caps: Refillable
|
||||
maxVol: 5
|
||||
- type: SolutionTransfer
|
||||
maxTransferAmount: 5
|
||||
|
||||
- type: MeleeWeaponAnimation
|
||||
id: spear
|
||||
|
||||
Reference in New Issue
Block a user