* Graft from https://github.com/space-wizards/space-station-14/pull/3049
* 'openahelp' command
* Add AHelp into escape menu
* Add a way to ahelp a player from the kick window
* bwoink: XAMLify, bugfix, etc.
* Rename the kick/bwoink window the Player Actions Panel
* Add the bwoink sound y'all know and love
adminhelp.ogg taken from d775e1ac80/sound/effects/adminhelp.ogg
(available in master, therefore see master license: "All assets including icons and sound are under a Creative Commons 3.0 BY-SA license unless otherwise indicated.")
"Changed the adminhelpsound to some creative commons sound I pinched. Until somebody can get a better one. I'm sick of MAAAAAAAAOOOOOOW."
Actual source is https://freesound.org/people/martian/sounds/19261/ (CC0)
The sound had been reversed and the volume altered.
* Actually play the bwoink sound on receiving an ahelp that you didn't send
50 lines
1.7 KiB
C#
50 lines
1.7 KiB
C#
using JetBrains.Annotations;
|
|
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.Console;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Client.UserInterface.CustomControls;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Players;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Content.Client.Administration.UI.Tabs.AdminTab
|
|
{
|
|
[GenerateTypedNameReferences]
|
|
[UsedImplicitly]
|
|
public partial class KickWindow : SS14Window
|
|
{
|
|
private ICommonSession? _selectedSession;
|
|
|
|
protected override void EnteredTree()
|
|
{
|
|
SubmitButton.OnPressed += SubmitButtonOnOnPressed;
|
|
SubmitAHButton.OnPressed += SubmitAHButtonOnOnPressed;
|
|
PlayerList.OnSelectionChanged += OnListOnOnSelectionChanged;
|
|
}
|
|
|
|
private void OnListOnOnSelectionChanged(ICommonSession? obj)
|
|
{
|
|
_selectedSession = obj;
|
|
var disableButtons = _selectedSession == null;
|
|
SubmitButton.Disabled = disableButtons;
|
|
SubmitAHButton.Disabled = disableButtons;
|
|
}
|
|
|
|
private void SubmitButtonOnOnPressed(BaseButton.ButtonEventArgs obj)
|
|
{
|
|
if (_selectedSession == null)
|
|
return;
|
|
IoCManager.Resolve<IClientConsoleHost>().ExecuteCommand(
|
|
$"kick \"{_selectedSession.Name}\" \"{CommandParsing.Escape(ReasonLine.Text)}\"");
|
|
}
|
|
|
|
private void SubmitAHButtonOnOnPressed(BaseButton.ButtonEventArgs obj)
|
|
{
|
|
if (_selectedSession == null)
|
|
return;
|
|
IoCManager.Resolve<IClientConsoleHost>().ExecuteCommand(
|
|
$"openahelp \"{_selectedSession.UserId}\"");
|
|
}
|
|
}
|
|
}
|