mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 06:47:25 +08:00
103 lines
2.9 KiB
C#
103 lines
2.9 KiB
C#
using System;
|
|
using osu.Framework;
|
|
using osu.Framework.Configuration;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Input;
|
|
using osu.Framework.Threading;
|
|
using OpenTK;
|
|
using osu.Framework.Allocation;
|
|
|
|
namespace osu.Game.Graphics.UserInterface.Volume
|
|
{
|
|
internal class VolumeControl : OverlayContainer
|
|
{
|
|
public BindableDouble VolumeGlobal { get; set; }
|
|
public BindableDouble VolumeSample { get; set; }
|
|
public BindableDouble VolumeTrack { get; set; }
|
|
|
|
private VolumeMeter volumeMeterMaster;
|
|
|
|
private FlowContainer content;
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
public override bool Contains(Vector2 screenSpacePos) => true;
|
|
|
|
private void volumeChanged(object sender, EventArgs e)
|
|
{
|
|
Show();
|
|
schedulePopOut();
|
|
}
|
|
|
|
public VolumeControl()
|
|
{
|
|
AutoSizeAxes = Axes.Both;
|
|
Anchor = Anchor.BottomRight;
|
|
Origin = Anchor.BottomRight;
|
|
|
|
AddInternal(content = new FlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Anchor = Anchor.BottomRight,
|
|
Origin = Anchor.BottomRight,
|
|
Position = new Vector2(10, 30),
|
|
Spacing = new Vector2(15, 0),
|
|
});
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
VolumeGlobal.ValueChanged += volumeChanged;
|
|
VolumeSample.ValueChanged += volumeChanged;
|
|
VolumeTrack.ValueChanged += volumeChanged;
|
|
|
|
Add(new[]
|
|
{
|
|
volumeMeterMaster = new VolumeMeter("Master", VolumeGlobal),
|
|
new VolumeMeter("Effects", VolumeSample),
|
|
new VolumeMeter("Music", VolumeTrack)
|
|
});
|
|
}
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
{
|
|
VolumeGlobal.ValueChanged -= volumeChanged;
|
|
VolumeSample.ValueChanged -= volumeChanged;
|
|
VolumeTrack.ValueChanged -= volumeChanged;
|
|
base.Dispose(isDisposing);
|
|
}
|
|
|
|
protected override bool OnWheel(InputState state)
|
|
{
|
|
if (!IsVisible)
|
|
return false;
|
|
|
|
volumeMeterMaster.TriggerWheel(state);
|
|
return true;
|
|
}
|
|
|
|
ScheduledDelegate popOutDelegate;
|
|
|
|
protected override void PopIn()
|
|
{
|
|
ClearTransformations();
|
|
FadeIn(100);
|
|
|
|
schedulePopOut();
|
|
}
|
|
|
|
protected override void PopOut()
|
|
{
|
|
FadeOut(100);
|
|
}
|
|
|
|
private void schedulePopOut()
|
|
{
|
|
popOutDelegate?.Cancel();
|
|
Delay(1000);
|
|
popOutDelegate = Schedule(Hide);
|
|
}
|
|
}
|
|
} |