// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Game.Database; using osu.Game.Graphics; using osu.Game.Graphics.Sprites; using OpenTK; using OpenTK.Graphics; using osu.Framework.Localisation; using osu.Framework.Graphics.Sprites; using System.Collections.Generic; using System.Linq; namespace osu.Game.Overlays.Music { internal class PlaylistItem : Container, IFilterable { private const float fade_duration = 100; private Color4 hoverColour; private Color4 artistColour; private TextAwesome handle; private Paragraph text; private IEnumerable titleSprites; private UnicodeBindableString titleBind; private UnicodeBindableString artistBind; public readonly BeatmapSetInfo BeatmapSetInfo; public Action OnSelect; private bool selected; public bool Selected { get { return selected; } set { if (value == selected) return; selected = value; Flush(true); foreach (SpriteText s in titleSprites) s.FadeColour(Selected ? hoverColour : Color4.White, fade_duration); } } public PlaylistItem(BeatmapSetInfo setInfo) { BeatmapSetInfo = setInfo; RelativeSizeAxes = Axes.X; AutoSizeAxes = Axes.Y; Padding = new MarginPadding { Top = 3, Bottom = 3 }; } [BackgroundDependencyLoader] private void load(OsuColour colours, LocalisationEngine localisation) { hoverColour = colours.Yellow; artistColour = colours.Gray9; var metadata = BeatmapSetInfo.Metadata; FilterTerms = metadata.SearchableTerms; Children = new Drawable[] { handle = new TextAwesome { Anchor = Anchor.TopLeft, Origin = Anchor.TopLeft, TextSize = 12, Colour = colours.Gray5, Icon = FontAwesome.fa_bars, Alpha = 0f, Margin = new MarginPadding { Left = 5 }, Padding = new MarginPadding { Top = 2 }, }, text = new Paragraph { RelativeSizeAxes = Axes.X, AutoSizeAxes = Axes.Y, Padding = new MarginPadding { Left = 20 }, ContentIndent = 10f, }, }; titleBind = localisation.GetUnicodePreference(metadata.TitleUnicode, metadata.Title); artistBind = localisation.GetUnicodePreference(metadata.ArtistUnicode, metadata.Artist); titleBind.ValueChanged += newText => recreateText(); titleBind.TriggerChange(); } private void recreateText() { text.Clear(); var metadata = BeatmapSetInfo.Metadata; var t = new List(); //space after the title to put a space between the title and artist text.AddText(titleBind.Value + @" ", sprite => { sprite.TextSize = 16; sprite.Font = @"Exo2.0-Regular"; t.Add(sprite); }); titleSprites = t; text.AddText(artistBind.Value, sprite => { sprite.TextSize = 14; sprite.Font = @"Exo2.0-Bold"; sprite.Colour = artistColour; sprite.Padding = new MarginPadding { Top = 1 }; }); } protected override bool OnHover(Framework.Input.InputState state) { handle.FadeIn(fade_duration); return base.OnHover(state); } protected override void OnHoverLost(Framework.Input.InputState state) { handle.FadeOut(fade_duration); } protected override bool OnClick(Framework.Input.InputState state) { OnSelect?.Invoke(BeatmapSetInfo); return true; } public string[] FilterTerms { get; private set; } private bool matching = true; public bool MatchingCurrentFilter { set { if (matching == value) return; matching = value; FadeTo(matching ? 1 : 0, 200); } get { return matching; } } } }