+using System.IO;
+using System.Threading.Tasks;
using Content.Shared.Fax;
using JetBrains.Annotations;
using Robust.Client.GameObjects;
+using Robust.Client.UserInterface;
namespace Content.Client.Fax.UI;
[UsedImplicitly]
public sealed class FaxBoundUi : BoundUserInterface
{
+ [Dependency] private readonly IFileDialogManager _fileDialogManager = default!;
+
[ViewVariables]
private FaxWindow? _window;
+ private bool _dialogIsOpen = false;
+
public FaxBoundUi(EntityUid owner, Enum uiKey) : base(owner, uiKey)
{
}
_window.OpenCentered();
_window.OnClose += Close;
+ _window.FileButtonPressed += OnFileButtonPressed;
_window.CopyButtonPressed += OnCopyButtonPressed;
_window.SendButtonPressed += OnSendButtonPressed;
_window.RefreshButtonPressed += OnRefreshButtonPressed;
_window.PeerSelected += OnPeerSelected;
}
+ private async void OnFileButtonPressed()
+ {
+ if (_dialogIsOpen)
+ return;
+
+ _dialogIsOpen = true;
+ var filters = new FileDialogFilters(new FileDialogFilters.Group("txt"));
+ await using var file = await _fileDialogManager.OpenFile(filters);
+ _dialogIsOpen = false;
+
+ if (_window == null || _window.Disposed || file == null)
+ {
+ return;
+ }
+
+ using var reader = new StreamReader(file);
+ var content = await reader.ReadToEndAsync();
+ SendMessage(new FaxFileMessage(content[..Math.Min(content.Length, FaxFileMessageValidation.MaxContentSize)], _window.OfficePaper));
+ }
+
private void OnSendButtonPressed()
{
SendMessage(new FaxSendMessage());
<OptionButton Name="PeerSelector" HorizontalExpand="True" />
</BoxContainer>
<Control HorizontalExpand="True" MinHeight="20" />
+ <BoxContainer Orientation="Horizontal" HorizontalExpand="True">
+ <Button Name="FileButton"
+ Text="{Loc 'fax-machine-ui-file-button'}"
+ HorizontalExpand="False"/>
+ <Button Name="PaperButton"
+ Text="{Loc 'fax-machine-ui-paper-button-normal'}"
+ HorizontalExpand="False"/>
+ </BoxContainer>
<BoxContainer Orientation="Horizontal" HorizontalExpand="True">
<Button Name="CopyButton"
Text="{Loc 'fax-machine-ui-copy-button'}"
using Robust.Client.AutoGenerated;
using Robust.Client.UserInterface.CustomControls;
using Robust.Client.UserInterface.XAML;
+using Robust.Client.UserInterface;
namespace Content.Client.Fax.UI;
[GenerateTypedNameReferences]
public sealed partial class FaxWindow : DefaultWindow
{
+ public event Action? FileButtonPressed;
+ public event Action? PaperButtonPressed;
public event Action? CopyButtonPressed;
public event Action? SendButtonPressed;
public event Action? RefreshButtonPressed;
public event Action<string>? PeerSelected;
+ public bool OfficePaper = false;
+
public FaxWindow()
{
RobustXamlLoader.Load(this);
+ PaperButtonPressed += OnPaperButtonPressed;
+
+ FileButton.OnPressed += _ => FileButtonPressed?.Invoke();
+ PaperButton.OnPressed += _ => PaperButtonPressed?.Invoke();
CopyButton.OnPressed += _ => CopyButtonPressed?.Invoke();
SendButton.OnPressed += _ => SendButtonPressed?.Invoke();
RefreshButton.OnPressed += _ => RefreshButtonPressed?.Invoke();
PeerSelector.SetItemMetadata(PeerSelector.ItemCount - 1, address);
return PeerSelector.ItemCount - 1;
}
+
+ private void OnPaperButtonPressed()
+ {
+ OfficePaper = !OfficePaper;
+
+ if(OfficePaper)
+ PaperButton.Text = Loc.GetString("fax-machine-ui-paper-button-office");
+ else
+ PaperButton.Text = Loc.GetString("fax-machine-ui-paper-button-normal");
+ }
}
/// </summary>
[ValidatePrototypeId<EntityPrototype>]
private const string DefaultPaperPrototypeId = "Paper";
+
+ [ValidatePrototypeId<EntityPrototype>]
+ private const string OfficePaperPrototypeId = "PaperOffice";
public override void Initialize()
{
// UI
SubscribeLocalEvent<FaxMachineComponent, AfterActivatableUIOpenEvent>(OnToggleInterface);
+ SubscribeLocalEvent<FaxMachineComponent, FaxFileMessage>(OnFileButtonPressed);
SubscribeLocalEvent<FaxMachineComponent, FaxCopyMessage>(OnCopyButtonPressed);
SubscribeLocalEvent<FaxMachineComponent, FaxSendMessage>(OnSendButtonPressed);
SubscribeLocalEvent<FaxMachineComponent, FaxRefreshMessage>(OnRefreshButtonPressed);
UpdateUserInterface(uid, component);
}
+ private void OnFileButtonPressed(EntityUid uid, FaxMachineComponent component, FaxFileMessage args)
+ {
+ args.Content = args.Content[..Math.Min(args.Content.Length, FaxFileMessageValidation.MaxContentSize)];
+ PrintFile(uid, component, args);
+ }
+
private void OnCopyButtonPressed(EntityUid uid, FaxMachineComponent component, FaxCopyMessage args)
{
Copy(uid, component);
_deviceNetworkSystem.QueuePacket(uid, null, payload);
}
+ /// <summary>
+ /// Makes fax print from a file from the computer. A timeout is set after copying,
+ /// which is shared by the send button.
+ /// </summary>
+ public void PrintFile(EntityUid uid, FaxMachineComponent component, FaxFileMessage args)
+ {
+ string prototype;
+ if (args.OfficePaper)
+ prototype = OfficePaperPrototypeId;
+ else
+ prototype = DefaultPaperPrototypeId;
+
+ var name = Loc.GetString("fax-machine-printed-paper-name");
+
+ var printout = new FaxPrintout(args.Content, name, prototype);
+ component.PrintingQueue.Enqueue(printout);
+ component.SendTimeoutRemaining += component.SendTimeout;
+
+ UpdateUserInterface(uid, component);
+ }
+
/// <summary>
/// Copies the paper in the fax. A timeout is set after copying,
/// which is shared by the send button.
}
}
+[Serializable, NetSerializable]
+public sealed class FaxFileMessage : BoundUserInterfaceMessage
+{
+ public string Content;
+ public bool OfficePaper;
+
+ public FaxFileMessage(string content, bool officePaper)
+ {
+ Content = content;
+ OfficePaper = officePaper;
+ }
+}
+
+public static class FaxFileMessageValidation
+{
+ public const int MaxContentSize = 10000;
+}
+
[Serializable, NetSerializable]
public sealed class FaxCopyMessage : BoundUserInterfaceMessage
{
fax-machine-dialog-field-name = Name
fax-machine-ui-window = Fax Machine
+fax-machine-ui-file-button = Print File
+fax-machine-ui-paper-button-normal = Normal Paper
+fax-machine-ui-paper-button-office = Office Paper
fax-machine-ui-copy-button = Copy
fax-machine-ui-send-button = Send
fax-machine-ui-refresh-button = Refresh
fax-machine-ui-paper-not-inserted = No paper
fax-machine-chat-notify = Received new fax message from "{$fax}" fax
+
+fax-machine-printed-paper-name = printed paper