2020-02-04 16:00:36 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 16:43:03 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2018-05-14 16:41:35 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-01-29 11:17:03 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Input.Events;
|
|
|
|
|
using osu.Framework.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2020-01-29 11:17:03 +08:00
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
|
using osuTK;
|
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Music
|
|
|
|
|
{
|
2020-01-30 18:23:53 +08:00
|
|
|
|
public class PlaylistItem : RearrangeableListItem<BeatmapSetInfo>, IFilterable
|
2020-01-28 16:59:14 +08:00
|
|
|
|
{
|
2020-01-29 11:17:03 +08:00
|
|
|
|
private const float fade_duration = 100;
|
|
|
|
|
|
2020-02-06 17:38:00 +08:00
|
|
|
|
public BindableBool PlaylistDragActive = new BindableBool();
|
|
|
|
|
|
2020-01-29 11:17:03 +08:00
|
|
|
|
public readonly Bindable<BeatmapSetInfo> SelectedSet = new Bindable<BeatmapSetInfo>();
|
2020-02-06 17:38:00 +08:00
|
|
|
|
|
2020-01-29 11:17:03 +08:00
|
|
|
|
public Action<BeatmapSetInfo> RequestSelection;
|
|
|
|
|
|
|
|
|
|
private PlaylistItemHandle handle;
|
|
|
|
|
private TextFlowContainer text;
|
|
|
|
|
private IEnumerable<Drawable> titleSprites;
|
|
|
|
|
private ILocalisedBindableString titleBind;
|
|
|
|
|
private ILocalisedBindableString artistBind;
|
|
|
|
|
|
|
|
|
|
private Color4 hoverColour;
|
|
|
|
|
private Color4 artistColour;
|
|
|
|
|
|
2020-01-30 18:23:53 +08:00
|
|
|
|
public PlaylistItem(BeatmapSetInfo item)
|
2020-01-28 16:59:14 +08:00
|
|
|
|
: base(item)
|
|
|
|
|
{
|
2020-01-29 11:17:03 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
|
|
|
|
|
Padding = new MarginPadding { Left = 5 };
|
|
|
|
|
|
2020-01-30 18:00:59 +08:00
|
|
|
|
FilterTerms = item.Metadata.SearchableTerms;
|
2020-01-28 16:59:14 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-01-29 11:17:03 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours, LocalisationManager localisation)
|
|
|
|
|
{
|
|
|
|
|
hoverColour = colours.Yellow;
|
|
|
|
|
artistColour = colours.Gray9;
|
|
|
|
|
|
|
|
|
|
InternalChild = new GridContainer
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Content = new[]
|
|
|
|
|
{
|
|
|
|
|
new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
handle = new PlaylistItemHandle
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
|
Size = new Vector2(12),
|
|
|
|
|
Colour = colours.Gray5,
|
2020-02-04 16:00:36 +08:00
|
|
|
|
AlwaysPresent = true,
|
2020-01-29 11:17:03 +08:00
|
|
|
|
Alpha = 0
|
|
|
|
|
},
|
|
|
|
|
text = new OsuTextFlowContainer
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Padding = new MarginPadding { Left = 5 },
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
ColumnDimensions = new[] { new Dimension(GridSizeMode.AutoSize) },
|
|
|
|
|
RowDimensions = new[] { new Dimension(GridSizeMode.AutoSize) }
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-30 18:00:59 +08:00
|
|
|
|
titleBind = localisation.GetLocalisedString(new LocalisedString((Model.Metadata.TitleUnicode, Model.Metadata.Title)));
|
|
|
|
|
artistBind = localisation.GetLocalisedString(new LocalisedString((Model.Metadata.ArtistUnicode, Model.Metadata.Artist)));
|
2020-01-29 11:17:03 +08:00
|
|
|
|
|
|
|
|
|
artistBind.BindValueChanged(_ => recreateText(), true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
|
|
SelectedSet.BindValueChanged(set =>
|
|
|
|
|
{
|
2020-01-30 18:00:59 +08:00
|
|
|
|
if (set.OldValue != Model && set.NewValue != Model)
|
2020-01-29 11:17:03 +08:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
foreach (Drawable s in titleSprites)
|
2020-01-30 18:00:59 +08:00
|
|
|
|
s.FadeColour(set.NewValue == Model ? hoverColour : Color4.White, fade_duration);
|
2020-01-29 11:17:03 +08:00
|
|
|
|
}, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void recreateText()
|
|
|
|
|
{
|
|
|
|
|
text.Clear();
|
|
|
|
|
|
|
|
|
|
//space after the title to put a space between the title and artist
|
|
|
|
|
titleSprites = text.AddText(titleBind.Value + @" ", sprite => sprite.Font = OsuFont.GetFont(weight: FontWeight.Regular)).OfType<SpriteText>();
|
|
|
|
|
|
|
|
|
|
text.AddText(artistBind.Value, sprite =>
|
|
|
|
|
{
|
|
|
|
|
sprite.Font = OsuFont.GetFont(size: 14, weight: FontWeight.Bold);
|
|
|
|
|
sprite.Colour = artistColour;
|
|
|
|
|
sprite.Padding = new MarginPadding { Top = 1 };
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
|
|
|
|
{
|
2020-01-30 18:00:59 +08:00
|
|
|
|
RequestSelection?.Invoke(Model);
|
2020-01-29 11:17:03 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-06 17:38:00 +08:00
|
|
|
|
protected override bool OnDragStart(DragStartEvent e)
|
|
|
|
|
{
|
|
|
|
|
if (!base.OnDragStart(e))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
PlaylistDragActive.Value = true;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnDragEnd(DragEndEvent e)
|
|
|
|
|
{
|
|
|
|
|
PlaylistDragActive.Value = false;
|
|
|
|
|
base.OnDragEnd(e);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-29 11:17:03 +08:00
|
|
|
|
protected override bool IsDraggableAt(Vector2 screenSpacePos) => handle.HandlingDrag;
|
|
|
|
|
|
|
|
|
|
protected override bool OnHover(HoverEvent e)
|
|
|
|
|
{
|
2020-02-06 17:38:00 +08:00
|
|
|
|
handle.UpdateHoverState(IsDragged || !PlaylistDragActive.Value);
|
2020-01-29 11:17:03 +08:00
|
|
|
|
return base.OnHover(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnHoverLost(HoverLostEvent e) => handle.UpdateHoverState(false);
|
|
|
|
|
|
2020-01-28 16:59:14 +08:00
|
|
|
|
public IEnumerable<string> FilterTerms { get; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-01-28 16:59:14 +08:00
|
|
|
|
private bool matching = true;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-01-28 16:59:14 +08:00
|
|
|
|
public bool MatchingFilter
|
|
|
|
|
{
|
|
|
|
|
get => matching;
|
|
|
|
|
set
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-01-28 16:59:14 +08:00
|
|
|
|
if (matching == value) return;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-01-28 16:59:14 +08:00
|
|
|
|
matching = value;
|
2019-03-28 23:29:07 +08:00
|
|
|
|
|
2020-01-28 16:59:14 +08:00
|
|
|
|
this.FadeTo(matching ? 1 : 0, 200);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-28 16:59:14 +08:00
|
|
|
|
|
|
|
|
|
public bool FilteringActive { get; set; }
|
2020-01-29 11:17:03 +08:00
|
|
|
|
|
|
|
|
|
private class PlaylistItemHandle : SpriteIcon
|
|
|
|
|
{
|
|
|
|
|
public bool HandlingDrag { get; private set; }
|
|
|
|
|
private bool isHovering;
|
|
|
|
|
|
|
|
|
|
public PlaylistItemHandle()
|
|
|
|
|
{
|
|
|
|
|
Icon = FontAwesome.Solid.Bars;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
|
|
|
|
{
|
|
|
|
|
base.OnMouseDown(e);
|
|
|
|
|
|
|
|
|
|
HandlingDrag = true;
|
|
|
|
|
UpdateHoverState(isHovering);
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnMouseUp(MouseUpEvent e)
|
|
|
|
|
{
|
|
|
|
|
base.OnMouseUp(e);
|
|
|
|
|
|
|
|
|
|
HandlingDrag = false;
|
|
|
|
|
UpdateHoverState(isHovering);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void UpdateHoverState(bool hovering)
|
|
|
|
|
{
|
|
|
|
|
isHovering = hovering;
|
|
|
|
|
|
|
|
|
|
if (isHovering || HandlingDrag)
|
|
|
|
|
this.FadeIn(fade_duration);
|
|
|
|
|
else
|
|
|
|
|
this.FadeOut(fade_duration);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|