Re-organize all projects (#4166)
This commit is contained in:
197
Content.Client/EscapeMenu/UI/OptionsMenu.Audio.cs
Normal file
197
Content.Client/EscapeMenu/UI/OptionsMenu.Audio.cs
Normal file
@@ -0,0 +1,197 @@
|
||||
using Content.Client.HUD.UI;
|
||||
using Content.Client.Stylesheets;
|
||||
using Content.Shared;
|
||||
using Robust.Client.Graphics;
|
||||
using Robust.Client.UserInterface;
|
||||
using Robust.Client.UserInterface.Controls;
|
||||
using Robust.Shared;
|
||||
using Robust.Shared.Configuration;
|
||||
using Robust.Shared.Localization;
|
||||
using Robust.Shared.Maths;
|
||||
|
||||
namespace Content.Client.EscapeMenu.UI
|
||||
{
|
||||
public sealed partial class OptionsMenu
|
||||
{
|
||||
private sealed class AudioControl : Control
|
||||
{
|
||||
private readonly IConfigurationManager _cfg;
|
||||
private readonly IClydeAudio _clydeAudio;
|
||||
|
||||
private readonly Button ApplyButton;
|
||||
private readonly Label MasterVolumeLabel;
|
||||
private readonly Slider MasterVolumeSlider;
|
||||
private readonly CheckBox AmbienceCheckBox;
|
||||
private readonly CheckBox LobbyMusicCheckBox;
|
||||
private readonly Button ResetButton;
|
||||
|
||||
public AudioControl(IConfigurationManager cfg, IClydeAudio clydeAudio)
|
||||
{
|
||||
_cfg = cfg;
|
||||
_clydeAudio = clydeAudio;
|
||||
|
||||
var vBox = new VBoxContainer();
|
||||
|
||||
var contents = new VBoxContainer
|
||||
{
|
||||
Margin = new Thickness(2, 2, 2, 0),
|
||||
VerticalExpand = true,
|
||||
};
|
||||
|
||||
MasterVolumeSlider = new Slider
|
||||
{
|
||||
MinValue = 0.0f,
|
||||
MaxValue = 100.0f,
|
||||
HorizontalExpand = true,
|
||||
MinSize = (80, 8),
|
||||
Rounded = true
|
||||
};
|
||||
|
||||
MasterVolumeLabel = new Label
|
||||
{
|
||||
MinSize = (48, 0),
|
||||
Align = Label.AlignMode.Right
|
||||
};
|
||||
|
||||
contents.AddChild(new HBoxContainer
|
||||
{
|
||||
Children =
|
||||
{
|
||||
new Control {MinSize = (4, 0)},
|
||||
new Label {Text = Loc.GetString("ui-options-master-volume")},
|
||||
new Control {MinSize = (8, 0)},
|
||||
MasterVolumeSlider,
|
||||
new Control {MinSize = (8, 0)},
|
||||
MasterVolumeLabel,
|
||||
new Control {MinSize = (4, 0)},
|
||||
}
|
||||
});
|
||||
|
||||
// sets up ambience checkbox. i am sorry for not fixing the rest of this code.
|
||||
AmbienceCheckBox = new CheckBox {Text = Loc.GetString("ui-options-ambient-hum")};
|
||||
contents.AddChild(AmbienceCheckBox);
|
||||
AmbienceCheckBox.Pressed = _cfg.GetCVar(CCVars.AmbienceBasicEnabled);
|
||||
|
||||
LobbyMusicCheckBox = new CheckBox {Text = Loc.GetString("ui-options-lobby-music")};
|
||||
contents.AddChild(LobbyMusicCheckBox);
|
||||
LobbyMusicCheckBox.Pressed = _cfg.GetCVar(CCVars.LobbyMusicEnabled);
|
||||
|
||||
ApplyButton = new Button
|
||||
{
|
||||
Text = Loc.GetString("ui-options-apply"), TextAlign = Label.AlignMode.Center,
|
||||
HorizontalAlignment = HAlignment.Right
|
||||
};
|
||||
|
||||
vBox.AddChild(new Label
|
||||
{
|
||||
Text = Loc.GetString("ui-options-volume-sliders"),
|
||||
FontColorOverride = StyleNano.NanoGold,
|
||||
StyleClasses = {StyleNano.StyleClassLabelKeyText}
|
||||
});
|
||||
|
||||
vBox.AddChild(contents);
|
||||
|
||||
ResetButton = new Button
|
||||
{
|
||||
Text = Loc.GetString("ui-options-reset-all"),
|
||||
StyleClasses = {StyleBase.ButtonCaution},
|
||||
HorizontalExpand = true,
|
||||
HorizontalAlignment = HAlignment.Right
|
||||
};
|
||||
|
||||
vBox.AddChild(new StripeBack
|
||||
{
|
||||
HasBottomEdge = false,
|
||||
HasMargins = false,
|
||||
Children =
|
||||
{
|
||||
new HBoxContainer
|
||||
{
|
||||
Align = BoxContainer.AlignMode.End,
|
||||
HorizontalExpand = true,
|
||||
VerticalExpand = true,
|
||||
Children =
|
||||
{
|
||||
ResetButton,
|
||||
new Control {MinSize = (2, 0)},
|
||||
ApplyButton
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
ApplyButton.OnPressed += OnApplyButtonPressed;
|
||||
ResetButton.OnPressed += OnResetButtonPressed;
|
||||
MasterVolumeSlider.OnValueChanged += OnMasterVolumeSliderChanged;
|
||||
AmbienceCheckBox.OnToggled += OnAmbienceCheckToggled;
|
||||
LobbyMusicCheckBox.OnToggled += OnLobbyMusicCheckToggled;
|
||||
|
||||
AddChild(vBox);
|
||||
|
||||
Reset();
|
||||
}
|
||||
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
ApplyButton.OnPressed -= OnApplyButtonPressed;
|
||||
ResetButton.OnPressed -= OnResetButtonPressed;
|
||||
MasterVolumeSlider.OnValueChanged -= OnMasterVolumeSliderChanged;
|
||||
AmbienceCheckBox.OnToggled -= OnAmbienceCheckToggled;
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
private void OnMasterVolumeSliderChanged(Range range)
|
||||
{
|
||||
MasterVolumeLabel.Text =
|
||||
Loc.GetString("ui-options-volume-percent", ("volume", MasterVolumeSlider.Value / 100));
|
||||
_clydeAudio.SetMasterVolume(MasterVolumeSlider.Value / 100);
|
||||
UpdateChanges();
|
||||
}
|
||||
|
||||
private void OnAmbienceCheckToggled(BaseButton.ButtonEventArgs args)
|
||||
{
|
||||
UpdateChanges();
|
||||
}
|
||||
|
||||
private void OnLobbyMusicCheckToggled(BaseButton.ButtonEventArgs args)
|
||||
{
|
||||
UpdateChanges();
|
||||
}
|
||||
|
||||
private void OnApplyButtonPressed(BaseButton.ButtonEventArgs args)
|
||||
{
|
||||
_cfg.SetCVar(CVars.AudioMasterVolume, MasterVolumeSlider.Value / 100);
|
||||
_cfg.SetCVar(CCVars.AmbienceBasicEnabled, AmbienceCheckBox.Pressed);
|
||||
_cfg.SetCVar(CCVars.LobbyMusicEnabled, LobbyMusicCheckBox.Pressed);
|
||||
_cfg.SaveToFile();
|
||||
UpdateChanges();
|
||||
}
|
||||
|
||||
private void OnResetButtonPressed(BaseButton.ButtonEventArgs args)
|
||||
{
|
||||
Reset();
|
||||
}
|
||||
|
||||
private void Reset()
|
||||
{
|
||||
MasterVolumeSlider.Value = _cfg.GetCVar(CVars.AudioMasterVolume) * 100;
|
||||
MasterVolumeLabel.Text =
|
||||
Loc.GetString("ui-options-volume-percent", ("volume", MasterVolumeSlider.Value / 100));
|
||||
AmbienceCheckBox.Pressed = _cfg.GetCVar(CCVars.AmbienceBasicEnabled);
|
||||
LobbyMusicCheckBox.Pressed = _cfg.GetCVar(CCVars.LobbyMusicEnabled);
|
||||
UpdateChanges();
|
||||
}
|
||||
|
||||
private void UpdateChanges()
|
||||
{
|
||||
var isMasterVolumeSame =
|
||||
System.Math.Abs(MasterVolumeSlider.Value - _cfg.GetCVar(CVars.AudioMasterVolume) * 100) < 0.01f;
|
||||
var isAmbienceSame = AmbienceCheckBox.Pressed == _cfg.GetCVar(CCVars.AmbienceBasicEnabled);
|
||||
var isLobbySame = LobbyMusicCheckBox.Pressed == _cfg.GetCVar(CCVars.LobbyMusicEnabled);
|
||||
var isEverythingSame = isMasterVolumeSame && isAmbienceSame && isLobbySame;
|
||||
ApplyButton.Disabled = isEverythingSame;
|
||||
ResetButton.Disabled = isEverythingSame;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user