2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-12-06 17:56:20 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
2016-10-08 11:53:46 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using OpenTK;
|
2016-11-30 13:38:45 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2016-10-08 11:53:46 +08:00
|
|
|
|
|
2016-11-14 16:23:33 +08:00
|
|
|
|
namespace osu.Game.Screens.Menu
|
2016-10-08 11:53:46 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A flow container with an origin based on one of its contained drawables.
|
|
|
|
|
/// </summary>
|
2017-03-02 02:33:01 +08:00
|
|
|
|
public class FlowContainerWithOrigin : FillFlowContainer
|
2016-10-08 11:53:46 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A target drawable which this flowcontainer should be centered around.
|
2016-10-12 14:28:28 +08:00
|
|
|
|
/// This target should be a direct child of this FlowContainer.
|
2016-10-08 11:53:46 +08:00
|
|
|
|
/// </summary>
|
2016-10-12 14:28:28 +08:00
|
|
|
|
public Drawable CentreTarget;
|
2016-10-08 11:53:46 +08:00
|
|
|
|
|
2017-07-12 02:21:58 +08:00
|
|
|
|
protected override int Compare(Drawable x, Drawable y) => CompareReverseChildID(x, y);
|
2016-11-30 13:38:45 +08:00
|
|
|
|
|
2017-03-02 02:33:01 +08:00
|
|
|
|
protected override IEnumerable<Drawable> FlowingChildren => base.FlowingChildren.Reverse();
|
2016-11-30 13:38:45 +08:00
|
|
|
|
|
2016-10-08 11:53:46 +08:00
|
|
|
|
public override Anchor Origin => Anchor.Custom;
|
|
|
|
|
|
|
|
|
|
public override Vector2 OriginPosition
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (CentreTarget == null)
|
|
|
|
|
return base.OriginPosition;
|
|
|
|
|
|
2016-10-19 00:53:31 +08:00
|
|
|
|
return CentreTarget.DrawPosition + CentreTarget.DrawSize / 2;
|
2016-10-08 11:53:46 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|