2020-10-01 17:49:48 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
2021-09-14 17:51:22 +08:00
|
|
|
using osu.Framework.Extensions;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
using osu.Framework.Input.Events;
|
2020-10-01 17:49:48 +08:00
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
using osu.Game.Graphics;
|
2021-09-14 17:51:22 +08:00
|
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
|
|
|
using osu.Game.Screens.Edit.Timing;
|
2020-10-01 17:49:48 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Compose.Components.Timeline
|
|
|
|
{
|
2021-09-14 17:51:22 +08:00
|
|
|
public class SamplePointPiece : HitObjectPointPiece, IHasPopover
|
2020-10-01 17:49:48 +08:00
|
|
|
{
|
2020-10-01 18:29:34 +08:00
|
|
|
private readonly SampleControlPoint samplePoint;
|
|
|
|
|
2020-10-01 17:49:48 +08:00
|
|
|
private readonly Bindable<string> bank;
|
|
|
|
private readonly BindableNumber<int> volume;
|
|
|
|
|
|
|
|
public SamplePointPiece(SampleControlPoint samplePoint)
|
2021-09-10 12:44:39 +08:00
|
|
|
: base(samplePoint)
|
2020-10-01 17:49:48 +08:00
|
|
|
{
|
2020-10-01 18:29:34 +08:00
|
|
|
this.samplePoint = samplePoint;
|
2020-10-01 17:49:48 +08:00
|
|
|
volume = samplePoint.SampleVolumeBindable.GetBoundCopy();
|
|
|
|
bank = samplePoint.SampleBankBindable.GetBoundCopy();
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
{
|
2021-09-10 12:44:39 +08:00
|
|
|
volume.BindValueChanged(volume => updateText());
|
|
|
|
bank.BindValueChanged(bank => updateText(), true);
|
|
|
|
}
|
2020-10-01 17:49:48 +08:00
|
|
|
|
2021-09-14 17:51:22 +08:00
|
|
|
protected override bool OnClick(ClickEvent e)
|
|
|
|
{
|
|
|
|
this.ShowPopover();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-09-10 12:44:39 +08:00
|
|
|
private void updateText()
|
|
|
|
{
|
|
|
|
Label.Text = $"{bank.Value} {volume.Value}";
|
2020-10-01 17:49:48 +08:00
|
|
|
}
|
2021-09-14 17:51:22 +08:00
|
|
|
|
|
|
|
public Popover GetPopover() => new SampleEditPopover(samplePoint);
|
|
|
|
|
|
|
|
public class SampleEditPopover : OsuPopover
|
|
|
|
{
|
|
|
|
private readonly SampleControlPoint point;
|
|
|
|
|
|
|
|
private LabelledTextBox bank;
|
|
|
|
private SliderWithTextBoxInput<int> volume;
|
|
|
|
|
|
|
|
[Resolved(canBeNull: true)]
|
|
|
|
protected IEditorChangeHandler ChangeHandler { get; private set; }
|
|
|
|
|
|
|
|
public SampleEditPopover(SampleControlPoint point)
|
|
|
|
{
|
|
|
|
this.point = point;
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new FillFlowContainer
|
|
|
|
{
|
|
|
|
Width = 200,
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
bank = new LabelledTextBox
|
|
|
|
{
|
|
|
|
Label = "Bank Name",
|
|
|
|
},
|
|
|
|
volume = new SliderWithTextBoxInput<int>("Volume")
|
|
|
|
{
|
|
|
|
Current = new SampleControlPoint().SampleVolumeBindable,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
bank.Current = point.SampleBankBindable;
|
|
|
|
bank.Current.BindValueChanged(_ => ChangeHandler?.SaveState());
|
|
|
|
|
|
|
|
volume.Current = point.SampleVolumeBindable;
|
|
|
|
volume.Current.BindValueChanged(_ => ChangeHandler?.SaveState());
|
|
|
|
}
|
|
|
|
}
|
2020-10-01 17:49:48 +08:00
|
|
|
}
|
|
|
|
}
|