Add prediction to Openable (#25477)
* Fix formatting problem with FullOpened * Moved to Shared and networked * Revert "Fix formatting problem with FullOpened" This reverts commit f8353403da830a4402bdd457bcf24a2432a5f566.
This commit is contained in:
@@ -1,72 +0,0 @@
|
||||
using Content.Server.Nutrition.EntitySystems;
|
||||
using Robust.Shared.Audio;
|
||||
|
||||
namespace Content.Server.Nutrition.Components;
|
||||
|
||||
/// <summary>
|
||||
/// A drink or food that can be opened.
|
||||
/// Starts closed, open it with Z or E.
|
||||
/// </summary>
|
||||
[RegisterComponent, Access(typeof(OpenableSystem))]
|
||||
public sealed partial class OpenableComponent : Component
|
||||
{
|
||||
/// <summary>
|
||||
/// Whether this drink or food is opened or not.
|
||||
/// Drinks can only be drunk or poured from/into when open, and food can only be eaten when open.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public bool Opened;
|
||||
|
||||
/// <summary>
|
||||
/// If this is false you cant press Z to open it.
|
||||
/// Requires an OpenBehavior damage threshold or other logic to open.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public bool OpenableByHand = true;
|
||||
|
||||
/// <summary>
|
||||
/// Text shown when examining and its open.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public LocId ExamineText = "drink-component-on-examine-is-opened";
|
||||
|
||||
/// <summary>
|
||||
/// The locale id for the popup shown when IsClosed is called and closed. Needs a "owner" entity argument passed to it.
|
||||
/// Defaults to the popup drink uses since its "correct".
|
||||
/// It's still generic enough that you should change it if you make openable non-drinks, i.e. unwrap it first, peel it first.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public LocId ClosedPopup = "drink-component-try-use-drink-not-open";
|
||||
|
||||
/// <summary>
|
||||
/// Text to show in the verb menu for the "Open" action.
|
||||
/// You may want to change this for non-drinks, i.e. "Peel", "Unwrap"
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public LocId OpenVerbText = "openable-component-verb-open";
|
||||
|
||||
/// <summary>
|
||||
/// Text to show in the verb menu for the "Close" action.
|
||||
/// You may want to change this for non-drinks, i.e. "Wrap"
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public LocId CloseVerbText = "openable-component-verb-close";
|
||||
|
||||
/// <summary>
|
||||
/// Sound played when opening.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public SoundSpecifier Sound = new SoundCollectionSpecifier("canOpenSounds");
|
||||
|
||||
/// <summary>
|
||||
/// Can this item be closed again after opening?
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public bool Closeable;
|
||||
|
||||
/// <summary>
|
||||
/// Sound played when closing.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public SoundSpecifier? CloseSound;
|
||||
}
|
||||
@@ -1,16 +1,6 @@
|
||||
using Content.Server.Chemistry.EntitySystems;
|
||||
using Content.Server.Fluids.EntitySystems;
|
||||
using Content.Shared.Nutrition.EntitySystems;
|
||||
using Content.Server.Nutrition.Components;
|
||||
using Content.Shared.Examine;
|
||||
using Content.Shared.Interaction;
|
||||
using Content.Shared.Interaction.Events;
|
||||
using Content.Shared.Nutrition.Components;
|
||||
using Content.Shared.Popups;
|
||||
using Content.Shared.Verbs;
|
||||
using Content.Shared.Weapons.Melee.Events;
|
||||
using Robust.Shared.Audio.Systems;
|
||||
using Robust.Shared.Utility;
|
||||
|
||||
namespace Content.Server.Nutrition.EntitySystems;
|
||||
|
||||
@@ -19,43 +9,11 @@ namespace Content.Server.Nutrition.EntitySystems;
|
||||
/// </summary>
|
||||
public sealed class OpenableSystem : SharedOpenableSystem
|
||||
{
|
||||
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
|
||||
[Dependency] private readonly SharedAudioSystem _audio = default!;
|
||||
[Dependency] private readonly SharedPopupSystem _popup = default!;
|
||||
|
||||
public override void Initialize()
|
||||
{
|
||||
base.Initialize();
|
||||
|
||||
SubscribeLocalEvent<OpenableComponent, ComponentInit>(OnInit);
|
||||
SubscribeLocalEvent<OpenableComponent, UseInHandEvent>(OnUse);
|
||||
SubscribeLocalEvent<OpenableComponent, ExaminedEvent>(OnExamined, after: new[] { typeof(PuddleSystem) });
|
||||
SubscribeLocalEvent<OpenableComponent, SolutionTransferAttemptEvent>(OnTransferAttempt);
|
||||
SubscribeLocalEvent<OpenableComponent, MeleeHitEvent>(HandleIfClosed);
|
||||
SubscribeLocalEvent<OpenableComponent, AfterInteractEvent>(HandleIfClosed);
|
||||
SubscribeLocalEvent<OpenableComponent, GetVerbsEvent<Verb>>(AddOpenCloseVerbs);
|
||||
}
|
||||
|
||||
private void OnInit(EntityUid uid, OpenableComponent comp, ComponentInit args)
|
||||
{
|
||||
UpdateAppearance(uid, comp);
|
||||
}
|
||||
|
||||
private void OnUse(EntityUid uid, OpenableComponent comp, UseInHandEvent args)
|
||||
{
|
||||
if (args.Handled || !comp.OpenableByHand)
|
||||
return;
|
||||
|
||||
args.Handled = TryOpen(uid, comp);
|
||||
}
|
||||
|
||||
private void OnExamined(EntityUid uid, OpenableComponent comp, ExaminedEvent args)
|
||||
{
|
||||
if (!comp.Opened || !args.IsInDetailsRange)
|
||||
return;
|
||||
|
||||
var text = Loc.GetString(comp.ExamineText);
|
||||
args.PushMarkup(text);
|
||||
}
|
||||
|
||||
private void OnTransferAttempt(EntityUid uid, OpenableComponent comp, SolutionTransferAttemptEvent args)
|
||||
@@ -66,135 +24,4 @@ public sealed class OpenableSystem : SharedOpenableSystem
|
||||
args.Cancel(Loc.GetString("drink-component-try-use-drink-not-open", ("owner", uid)));
|
||||
}
|
||||
}
|
||||
|
||||
private void HandleIfClosed(EntityUid uid, OpenableComponent comp, HandledEntityEventArgs args)
|
||||
{
|
||||
// prevent spilling/pouring/whatever drinks when closed
|
||||
args.Handled = !comp.Opened;
|
||||
}
|
||||
|
||||
private void AddOpenCloseVerbs(EntityUid uid, OpenableComponent comp, GetVerbsEvent<Verb> args)
|
||||
{
|
||||
if (args.Hands == null || !args.CanAccess || !args.CanInteract)
|
||||
return;
|
||||
|
||||
Verb verb;
|
||||
if (comp.Opened)
|
||||
{
|
||||
if (!comp.Closeable)
|
||||
return;
|
||||
|
||||
verb = new()
|
||||
{
|
||||
Text = Loc.GetString(comp.CloseVerbText),
|
||||
Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/close.svg.192dpi.png")),
|
||||
Act = () => TryClose(args.Target, comp)
|
||||
};
|
||||
}
|
||||
else
|
||||
{
|
||||
verb = new()
|
||||
{
|
||||
Text = Loc.GetString(comp.OpenVerbText),
|
||||
Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/open.svg.192dpi.png")),
|
||||
Act = () => TryOpen(args.Target, comp)
|
||||
};
|
||||
}
|
||||
args.Verbs.Add(verb);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if the entity either does not have OpenableComponent or it is opened.
|
||||
/// Drinks that don't have OpenableComponent are automatically open, so it returns true.
|
||||
/// </summary>
|
||||
public bool IsOpen(EntityUid uid, OpenableComponent? comp = null)
|
||||
{
|
||||
if (!Resolve(uid, ref comp, false))
|
||||
return true;
|
||||
|
||||
return comp.Opened;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if the entity both has OpenableComponent and is not opened.
|
||||
/// Drinks that don't have OpenableComponent are automatically open, so it returns false.
|
||||
/// If user is not null a popup will be shown to them.
|
||||
/// </summary>
|
||||
public bool IsClosed(EntityUid uid, EntityUid? user = null, OpenableComponent? comp = null)
|
||||
{
|
||||
if (!Resolve(uid, ref comp, false))
|
||||
return false;
|
||||
|
||||
if (comp.Opened)
|
||||
return false;
|
||||
|
||||
if (user != null)
|
||||
_popup.PopupEntity(Loc.GetString(comp.ClosedPopup, ("owner", uid)), user.Value, user.Value);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Update open visuals to the current value.
|
||||
/// </summary>
|
||||
public void UpdateAppearance(EntityUid uid, OpenableComponent? comp = null, AppearanceComponent? appearance = null)
|
||||
{
|
||||
if (!Resolve(uid, ref comp))
|
||||
return;
|
||||
|
||||
_appearance.SetData(uid, OpenableVisuals.Opened, comp.Opened, appearance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sets the opened field and updates open visuals.
|
||||
/// </summary>
|
||||
public void SetOpen(EntityUid uid, bool opened = true, OpenableComponent? comp = null)
|
||||
{
|
||||
if (!Resolve(uid, ref comp, false) || opened == comp.Opened)
|
||||
return;
|
||||
|
||||
comp.Opened = opened;
|
||||
|
||||
if (opened)
|
||||
{
|
||||
var ev = new OpenableOpenedEvent();
|
||||
RaiseLocalEvent(uid, ref ev);
|
||||
}
|
||||
else
|
||||
{
|
||||
var ev = new OpenableClosedEvent();
|
||||
RaiseLocalEvent(uid, ref ev);
|
||||
}
|
||||
|
||||
UpdateAppearance(uid, comp);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// If closed, opens it and plays the sound.
|
||||
/// </summary>
|
||||
/// <returns>Whether it got opened</returns>
|
||||
public bool TryOpen(EntityUid uid, OpenableComponent? comp = null)
|
||||
{
|
||||
if (!Resolve(uid, ref comp, false) || comp.Opened)
|
||||
return false;
|
||||
|
||||
SetOpen(uid, true, comp);
|
||||
_audio.PlayPvs(comp.Sound, uid);
|
||||
return true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// If opened, closes it and plays the close sound, if one is defined.
|
||||
/// </summary>
|
||||
/// <returns>Whether it got closed</returns>
|
||||
public bool TryClose(EntityUid uid, OpenableComponent? comp = null)
|
||||
{
|
||||
if (!Resolve(uid, ref comp, false) || !comp.Opened || !comp.Closeable)
|
||||
return false;
|
||||
|
||||
SetOpen(uid, false, comp);
|
||||
if (comp.CloseSound != null)
|
||||
_audio.PlayPvs(comp.CloseSound, uid);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user