2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-12-06 17:56:20 +08:00
|
|
|
|
|
2016-10-07 02:05:26 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2016-10-26 17:45:48 +08:00
|
|
|
|
using osu.Framework.Threading;
|
2016-10-13 01:45:42 +08:00
|
|
|
|
using OpenTK;
|
2016-11-23 19:26:46 +08:00
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
|
using osu.Framework.Allocation;
|
2017-08-22 13:44:13 +08:00
|
|
|
|
using osu.Game.Input.Bindings;
|
2016-10-07 02:05:26 +08:00
|
|
|
|
|
2016-10-26 17:45:48 +08:00
|
|
|
|
namespace osu.Game.Graphics.UserInterface.Volume
|
2016-10-07 02:05:26 +08:00
|
|
|
|
{
|
2016-10-26 17:45:48 +08:00
|
|
|
|
internal class VolumeControl : OverlayContainer
|
2016-10-07 02:05:26 +08:00
|
|
|
|
{
|
2017-03-23 12:41:50 +08:00
|
|
|
|
private readonly VolumeMeter volumeMeterMaster;
|
2016-10-26 17:45:48 +08:00
|
|
|
|
|
2017-09-11 07:27:29 +08:00
|
|
|
|
protected override bool BlockPassThroughMouse => false;
|
2016-10-13 03:17:53 +08:00
|
|
|
|
|
2016-10-22 16:50:42 +08:00
|
|
|
|
public VolumeControl()
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Both;
|
2016-10-26 17:45:48 +08:00
|
|
|
|
Anchor = Anchor.BottomRight;
|
|
|
|
|
Origin = Anchor.BottomRight;
|
2016-11-13 01:34:36 +08:00
|
|
|
|
|
2016-11-23 15:12:21 +08:00
|
|
|
|
Children = new Drawable[]
|
2016-11-13 01:34:36 +08:00
|
|
|
|
{
|
2017-03-02 02:33:01 +08:00
|
|
|
|
new FillFlowContainer
|
2016-11-23 15:12:21 +08:00
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Anchor = Anchor.BottomRight,
|
|
|
|
|
Origin = Anchor.BottomRight,
|
|
|
|
|
Margin = new MarginPadding { Left = 10, Right = 10, Top = 30, Bottom = 30 },
|
2017-03-02 02:33:01 +08:00
|
|
|
|
Spacing = new Vector2(15, 0),
|
2016-11-23 15:12:21 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
volumeMeterMaster = new VolumeMeter("Master"),
|
|
|
|
|
volumeMeterEffect = new VolumeMeter("Effects"),
|
|
|
|
|
volumeMeterMusic = new VolumeMeter("Music")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
2016-10-22 16:50:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-13 01:34:36 +08:00
|
|
|
|
protected override void LoadComplete()
|
2016-10-07 02:05:26 +08:00
|
|
|
|
{
|
2016-11-13 01:34:36 +08:00
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2016-11-29 17:35:40 +08:00
|
|
|
|
volumeMeterMaster.Bindable.ValueChanged += volumeChanged;
|
|
|
|
|
volumeMeterEffect.Bindable.ValueChanged += volumeChanged;
|
|
|
|
|
volumeMeterMusic.Bindable.ValueChanged += volumeChanged;
|
2016-10-07 02:05:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-13 22:52:49 +08:00
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(isDisposing);
|
2016-11-29 17:35:40 +08:00
|
|
|
|
|
|
|
|
|
volumeMeterMaster.Bindable.ValueChanged -= volumeChanged;
|
|
|
|
|
volumeMeterEffect.Bindable.ValueChanged -= volumeChanged;
|
|
|
|
|
volumeMeterMusic.Bindable.ValueChanged -= volumeChanged;
|
2016-10-13 22:52:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-22 13:44:13 +08:00
|
|
|
|
public bool Adjust(GlobalAction action)
|
2016-10-07 02:05:26 +08:00
|
|
|
|
{
|
2017-08-22 13:44:13 +08:00
|
|
|
|
switch (action)
|
2016-11-15 14:22:14 +08:00
|
|
|
|
{
|
2017-08-22 13:44:13 +08:00
|
|
|
|
case GlobalAction.DecreaseVolume:
|
|
|
|
|
if (State == Visibility.Hidden)
|
|
|
|
|
Show();
|
|
|
|
|
else
|
|
|
|
|
volumeMeterMaster.Decrease();
|
|
|
|
|
return true;
|
|
|
|
|
case GlobalAction.IncreaseVolume:
|
|
|
|
|
if (State == Visibility.Hidden)
|
|
|
|
|
Show();
|
|
|
|
|
else
|
|
|
|
|
volumeMeterMaster.Increase();
|
|
|
|
|
return true;
|
2016-11-15 14:22:14 +08:00
|
|
|
|
}
|
2016-10-26 17:45:48 +08:00
|
|
|
|
|
2017-08-22 13:44:13 +08:00
|
|
|
|
return false;
|
2016-10-07 02:05:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-11 07:27:29 +08:00
|
|
|
|
private void volumeChanged(double newVolume)
|
|
|
|
|
{
|
|
|
|
|
Show();
|
|
|
|
|
schedulePopOut();
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-23 19:26:46 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(AudioManager audio)
|
|
|
|
|
{
|
2017-02-27 11:24:50 +08:00
|
|
|
|
volumeMeterMaster.Bindable.BindTo(audio.Volume);
|
|
|
|
|
volumeMeterEffect.Bindable.BindTo(audio.VolumeSample);
|
|
|
|
|
volumeMeterMusic.Bindable.BindTo(audio.VolumeTrack);
|
2016-11-23 19:26:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-07 09:59:19 +08:00
|
|
|
|
private ScheduledDelegate popOutDelegate;
|
2016-10-26 17:45:48 +08:00
|
|
|
|
|
2017-03-23 12:41:50 +08:00
|
|
|
|
private readonly VolumeMeter volumeMeterEffect;
|
|
|
|
|
private readonly VolumeMeter volumeMeterMusic;
|
2016-11-23 15:12:21 +08:00
|
|
|
|
|
2016-10-26 17:45:48 +08:00
|
|
|
|
protected override void PopIn()
|
|
|
|
|
{
|
2017-02-25 20:12:39 +08:00
|
|
|
|
ClearTransforms();
|
2017-07-15 00:18:12 +08:00
|
|
|
|
this.FadeIn(100);
|
2016-10-26 17:45:48 +08:00
|
|
|
|
|
|
|
|
|
schedulePopOut();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopOut()
|
|
|
|
|
{
|
2017-07-15 00:18:12 +08:00
|
|
|
|
this.FadeOut(100);
|
2016-10-26 17:45:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void schedulePopOut()
|
2016-10-07 02:05:26 +08:00
|
|
|
|
{
|
2016-10-26 17:45:48 +08:00
|
|
|
|
popOutDelegate?.Cancel();
|
2017-07-17 21:51:21 +08:00
|
|
|
|
this.Delay(1000).Schedule(Hide, out popOutDelegate);
|
2016-10-07 02:05:26 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|