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
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2021-05-17 15:58:54 +08:00
|
|
|
|
using osu.Game.Overlays;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.Chat
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2018-12-07 18:39:54 +08:00
|
|
|
|
/// An invisible drawable that brings multiple <see cref="Drawable"/> pieces together to form a consumable clickable link.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// </summary>
|
2019-05-19 10:28:24 +08:00
|
|
|
|
public class DrawableLinkCompiler : OsuHoverContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Each word part of a chat link (split for word-wrap support).
|
|
|
|
|
/// </summary>
|
2021-05-17 15:58:54 +08:00
|
|
|
|
public readonly List<Drawable> Parts;
|
|
|
|
|
|
|
|
|
|
[Resolved(CanBeNull = true)]
|
|
|
|
|
private OverlayColourProvider overlayColourProvider { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-09-26 13:01:15 +08:00
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => Parts.Any(d => d.ReceivePositionalInputAt(screenSpacePos));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-07-09 10:16:47 +08:00
|
|
|
|
protected override HoverSounds CreateHoverSounds(HoverSampleSet sampleSet) => new LinkHoverSounds(sampleSet, Parts);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-12-07 18:39:54 +08:00
|
|
|
|
public DrawableLinkCompiler(IEnumerable<Drawable> parts)
|
2021-07-30 20:23:49 +08:00
|
|
|
|
: base(HoverSampleSet.Submit)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Parts = parts.ToList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
2021-05-17 15:58:54 +08:00
|
|
|
|
IdleColour = overlayColourProvider?.Light2 ?? colours.Blue;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override IEnumerable<Drawable> EffectTargets => Parts;
|
|
|
|
|
|
|
|
|
|
private class LinkHoverSounds : HoverClickSounds
|
|
|
|
|
{
|
2018-12-07 18:39:54 +08:00
|
|
|
|
private readonly List<Drawable> parts;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-12-07 18:39:54 +08:00
|
|
|
|
public LinkHoverSounds(HoverSampleSet sampleSet, List<Drawable> parts)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
: base(sampleSet)
|
|
|
|
|
{
|
|
|
|
|
this.parts = parts;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-26 13:01:15 +08:00
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => parts.Any(d => d.ReceivePositionalInputAt(screenSpacePos));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|