2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-11-20 15:51:59 +08:00
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Screens.Edit.Components.Timelines.Summary.Parts;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Components.Timelines.Summary
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The timeline that sits at the bottom of the editor.
|
|
|
|
/// </summary>
|
|
|
|
public class SummaryTimeline : BottomBarContainer
|
|
|
|
{
|
|
|
|
[BackgroundDependencyLoader]
|
2020-05-22 15:37:28 +08:00
|
|
|
private void load(OsuColour colours)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2020-05-22 15:37:28 +08:00
|
|
|
new MarkerPart { RelativeSizeAxes = Axes.Both },
|
2018-05-23 16:37:39 +08:00
|
|
|
new ControlPointPart
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2021-04-15 17:42:30 +08:00
|
|
|
Y = -10,
|
2018-04-13 17:19:50 +08:00
|
|
|
Height = 0.35f
|
|
|
|
},
|
2018-05-23 16:37:39 +08:00
|
|
|
new BookmarkPart
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Height = 0.35f
|
|
|
|
},
|
|
|
|
new Container
|
|
|
|
{
|
2021-04-15 15:33:29 +08:00
|
|
|
Name = "centre line",
|
2018-04-13 17:19:50 +08:00
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = colours.Gray5,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new Circle
|
|
|
|
{
|
|
|
|
Anchor = Anchor.CentreLeft,
|
2021-04-15 15:30:56 +08:00
|
|
|
Origin = Anchor.Centre,
|
2018-04-13 17:19:50 +08:00
|
|
|
Size = new Vector2(5)
|
|
|
|
},
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Height = 1,
|
|
|
|
EdgeSmoothness = new Vector2(0, 1),
|
|
|
|
},
|
|
|
|
new Circle
|
|
|
|
{
|
|
|
|
Anchor = Anchor.CentreRight,
|
2021-04-15 15:30:56 +08:00
|
|
|
Origin = Anchor.Centre,
|
2018-04-13 17:19:50 +08:00
|
|
|
Size = new Vector2(5)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
2018-05-23 16:37:39 +08:00
|
|
|
new BreakPart
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2021-04-15 15:30:20 +08:00
|
|
|
Height = 0.10f
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|