mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 22:07:40 +08:00
152 lines
5.1 KiB
C#
152 lines
5.1 KiB
C#
// 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 System.Linq;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Timing;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Screens.Edit.Timing
|
|
{
|
|
public class TimingScreen : EditorScreenWithTimeline
|
|
{
|
|
[Cached]
|
|
private Bindable<ControlPointGroup> selectedGroup = new Bindable<ControlPointGroup>();
|
|
|
|
[Resolved]
|
|
private IAdjustableClock clock { get; set; }
|
|
|
|
protected override Drawable CreateMainContent() => new GridContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
ColumnDimensions = new[]
|
|
{
|
|
new Dimension(),
|
|
new Dimension(GridSizeMode.Absolute, 200),
|
|
},
|
|
Content = new[]
|
|
{
|
|
new Drawable[]
|
|
{
|
|
new ControlPointList(),
|
|
new ControlPointSettings(),
|
|
},
|
|
}
|
|
};
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
selectedGroup.BindValueChanged(selected =>
|
|
{
|
|
if (selected.NewValue != null)
|
|
clock.Seek(selected.NewValue.Time);
|
|
});
|
|
}
|
|
|
|
public class ControlPointList : CompositeDrawable
|
|
{
|
|
private OsuButton deleteButton;
|
|
private ControlPointTable table;
|
|
|
|
private IBindableList<ControlPointGroup> controlGroups;
|
|
|
|
[Resolved]
|
|
private IFrameBasedClock clock { get; set; }
|
|
|
|
[Resolved]
|
|
protected IBindable<WorkingBeatmap> Beatmap { get; private set; }
|
|
|
|
[Resolved]
|
|
private Bindable<ControlPointGroup> selectedGroup { get; set; }
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
Colour = colours.Gray0,
|
|
RelativeSizeAxes = Axes.Both,
|
|
},
|
|
new OsuScrollContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Child = table = new ControlPointTable(),
|
|
},
|
|
new FillFlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Anchor = Anchor.BottomRight,
|
|
Origin = Anchor.BottomRight,
|
|
Direction = FillDirection.Horizontal,
|
|
Margin = new MarginPadding(10),
|
|
Spacing = new Vector2(5),
|
|
Children = new Drawable[]
|
|
{
|
|
deleteButton = new OsuButton
|
|
{
|
|
Text = "-",
|
|
Size = new Vector2(30, 30),
|
|
Action = delete,
|
|
Anchor = Anchor.BottomRight,
|
|
Origin = Anchor.BottomRight,
|
|
},
|
|
new OsuButton
|
|
{
|
|
Text = "+",
|
|
Action = addNew,
|
|
Size = new Vector2(30, 30),
|
|
Anchor = Anchor.BottomRight,
|
|
Origin = Anchor.BottomRight,
|
|
},
|
|
}
|
|
},
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
selectedGroup.BindValueChanged(selected => { deleteButton.Enabled.Value = selected.NewValue != null; }, true);
|
|
|
|
controlGroups = Beatmap.Value.Beatmap.ControlPointInfo.Groups.GetBoundCopy();
|
|
controlGroups.ItemsAdded += _ => createContent();
|
|
controlGroups.ItemsRemoved += _ => createContent();
|
|
createContent();
|
|
}
|
|
|
|
private void createContent() => table.ControlGroups = controlGroups;
|
|
|
|
private void delete()
|
|
{
|
|
if (selectedGroup.Value == null)
|
|
return;
|
|
|
|
Beatmap.Value.Beatmap.ControlPointInfo.RemoveGroup(selectedGroup.Value);
|
|
|
|
selectedGroup.Value = Beatmap.Value.Beatmap.ControlPointInfo.Groups.FirstOrDefault(g => g.Time >= clock.CurrentTime);
|
|
}
|
|
|
|
private void addNew()
|
|
{
|
|
selectedGroup.Value = Beatmap.Value.Beatmap.ControlPointInfo.GroupAt(clock.CurrentTime, true);
|
|
}
|
|
}
|
|
}
|
|
}
|