1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 16:47:26 +08:00
osu-lazer/osu.Game/Screens/Edit/Timing/TimingScreen.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

177 lines
6.1 KiB
C#
Raw Normal View History

// 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;
using System.Linq;
2019-10-09 15:06:16 +08:00
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
2019-10-11 17:46:05 +08:00
using osu.Game.Beatmaps.ControlPoints;
2019-10-09 15:06:16 +08:00
using osu.Game.Graphics.Containers;
2019-10-22 20:50:21 +08:00
using osu.Game.Graphics.UserInterface;
using osu.Game.Graphics.UserInterfaceV2;
using osu.Game.Overlays;
2019-10-22 20:50:21 +08:00
using osuTK;
2019-10-09 15:06:16 +08:00
namespace osu.Game.Screens.Edit.Timing
{
public class TimingScreen : EditorScreenWithTimeline
{
2019-10-11 17:46:05 +08:00
[Cached]
2019-11-06 11:32:12 +08:00
private Bindable<ControlPointGroup> selectedGroup = new Bindable<ControlPointGroup>();
2019-10-11 17:46:05 +08:00
public TimingScreen()
: base(EditorScreenMode.Timing)
{
}
protected override Drawable CreateMainContent() => new GridContainer
2019-10-09 15:06:16 +08:00
{
RelativeSizeAxes = Axes.Both,
ColumnDimensions = new[]
2019-10-09 15:06:16 +08:00
{
new Dimension(),
new Dimension(GridSizeMode.Absolute, 350),
},
Content = new[]
{
new Drawable[]
2019-10-09 15:06:16 +08:00
{
new ControlPointList(),
new ControlPointSettings(),
2019-10-09 15:06:16 +08:00
},
}
};
2019-10-09 15:06:16 +08:00
public class ControlPointList : CompositeDrawable
{
2019-10-22 20:50:21 +08:00
private OsuButton deleteButton;
2019-10-27 15:13:24 +08:00
private ControlPointTable table;
private readonly IBindableList<ControlPointGroup> controlPointGroups = new BindableList<ControlPointGroup>();
2019-10-27 15:13:24 +08:00
[Resolved]
2020-05-22 18:49:49 +08:00
private EditorClock clock { get; set; }
2019-10-22 20:50:21 +08:00
2019-10-09 15:06:16 +08:00
[Resolved]
protected EditorBeatmap Beatmap { get; private set; }
2019-10-09 15:06:16 +08:00
2019-10-22 20:50:21 +08:00
[Resolved]
2019-10-27 15:13:24 +08:00
private Bindable<ControlPointGroup> selectedGroup { get; set; }
2019-10-22 20:50:21 +08:00
[Resolved(canBeNull: true)]
private IEditorChangeHandler changeHandler { get; set; }
2019-10-09 15:06:16 +08:00
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colours)
2019-10-09 15:06:16 +08:00
{
RelativeSizeAxes = Axes.Both;
const float margins = 10;
2019-10-09 15:06:16 +08:00
InternalChildren = new Drawable[]
{
new Box
{
Colour = colours.Background4,
2019-10-09 15:06:16 +08:00
RelativeSizeAxes = Axes.Both,
},
new Box
{
Colour = colours.Background3,
RelativeSizeAxes = Axes.Y,
Width = ControlPointTable.TIMING_COLUMN_WIDTH + margins,
},
2019-10-09 15:06:16 +08:00
new OsuScrollContainer
{
RelativeSizeAxes = Axes.Both,
2019-10-27 15:13:24 +08:00
Child = table = new ControlPointTable(),
2019-10-22 20:50:21 +08:00
},
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Anchor = Anchor.BottomRight,
Origin = Anchor.BottomRight,
Direction = FillDirection.Horizontal,
Margin = new MarginPadding(margins),
2019-10-22 20:50:21 +08:00
Spacing = new Vector2(5),
Children = new Drawable[]
{
deleteButton = new RoundedButton
2019-10-22 20:50:21 +08:00
{
Text = "-",
Size = new Vector2(30, 30),
Action = delete,
Anchor = Anchor.BottomRight,
Origin = Anchor.BottomRight,
},
new RoundedButton
2019-10-22 20:50:21 +08:00
{
2021-04-19 12:15:24 +08:00
Text = "+ Add at current time",
2019-10-22 20:50:21 +08:00
Action = addNew,
2021-04-19 12:15:24 +08:00
Size = new Vector2(160, 30),
2019-10-22 20:50:21 +08:00
Anchor = Anchor.BottomRight,
Origin = Anchor.BottomRight,
},
}
},
2019-10-09 15:06:16 +08:00
};
}
2019-10-22 20:50:21 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
2019-10-27 15:13:24 +08:00
selectedGroup.BindValueChanged(selected => { deleteButton.Enabled.Value = selected.NewValue != null; }, true);
controlPointGroups.BindTo(Beatmap.ControlPointInfo.Groups);
controlPointGroups.BindCollectionChanged((sender, args) =>
{
table.ControlGroups = controlPointGroups;
changeHandler?.SaveState();
}, true);
}
2019-10-27 15:13:24 +08:00
2019-10-22 20:50:21 +08:00
private void delete()
{
2019-10-27 15:13:24 +08:00
if (selectedGroup.Value == null)
return;
Beatmap.ControlPointInfo.RemoveGroup(selectedGroup.Value);
selectedGroup.Value = Beatmap.ControlPointInfo.Groups.FirstOrDefault(g => g.Time >= clock.CurrentTime);
2019-10-22 20:50:21 +08:00
}
private void addNew()
{
bool isFirstControlPoint = !Beatmap.ControlPointInfo.TimingPoints.Any();
var group = Beatmap.ControlPointInfo.GroupAt(clock.CurrentTime, true);
if (isFirstControlPoint)
group.Add(new TimingControlPoint());
else
{
// Try and create matching types from the currently selected control point.
var selected = selectedGroup.Value;
if (selected != null)
{
foreach (var controlPoint in selected.ControlPoints)
{
if (Activator.CreateInstance(controlPoint.GetType()) is ControlPoint copy)
{
copy.CopyFrom(controlPoint);
group.Add(copy);
}
}
}
}
selectedGroup.Value = group;
2019-10-22 20:50:21 +08:00
}
2019-10-09 15:06:16 +08:00
}
}
}