1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 01:07:20 +08:00
osu-lazer/osu.Game/Online/Chat/DrawableLinkCompiler.cs

87 lines
2.7 KiB
C#
Raw Normal View History

// 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 18:19:50 +09:00
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
2024-02-17 00:45:30 +03:00
using osu.Framework.Extensions.ListExtensions;
2018-04-13 18:19:50 +09:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
2024-02-17 00:45:30 +03:00
using osu.Framework.Lists;
2018-04-13 18:19:50 +09:00
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.UserInterface;
2021-05-17 16:58:54 +09:00
using osu.Game.Overlays;
2018-11-20 16:51:59 +09:00
using osuTK;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Online.Chat
{
/// <summary>
/// An invisible drawable that brings multiple <see cref="Drawable"/> pieces together to form a consumable clickable link.
2018-04-13 18:19:50 +09:00
/// </summary>
2022-11-24 14:32:20 +09:00
public partial class DrawableLinkCompiler : OsuHoverContainer
2018-04-13 18:19:50 +09:00
{
/// <summary>
/// Each word part of a chat link (split for word-wrap support).
/// </summary>
2024-02-17 00:45:30 +03:00
public readonly SlimReadOnlyListWrapper<Drawable> Parts;
2021-05-17 16:58:54 +09:00
2023-06-23 01:37:25 +09:00
[Resolved]
private OverlayColourProvider? overlayColourProvider { get; set; }
2018-04-13 18:19:50 +09:00
2024-02-17 00:45:30 +03:00
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos)
{
foreach (var part in Parts)
{
if (part.ReceivePositionalInputAt(screenSpacePos))
return true;
}
return false;
}
2018-04-13 18:19:50 +09:00
2021-07-09 11:16:47 +09:00
protected override HoverSounds CreateHoverSounds(HoverSampleSet sampleSet) => new LinkHoverSounds(sampleSet, Parts);
2018-04-13 18:19:50 +09:00
public DrawableLinkCompiler(ITextPart part)
: this(part.Drawables.OfType<SpriteText>())
{
}
public DrawableLinkCompiler(IEnumerable<Drawable> parts)
2018-04-13 18:19:50 +09:00
{
2024-02-17 00:45:30 +03:00
Parts = parts.ToList().AsSlimReadOnly();
2018-04-13 18:19:50 +09:00
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
2021-05-17 16:58:54 +09:00
IdleColour = overlayColourProvider?.Light2 ?? colours.Blue;
2018-04-13 18:19:50 +09:00
}
protected override IEnumerable<Drawable> EffectTargets => Parts;
2022-11-24 14:32:20 +09:00
private partial class LinkHoverSounds : HoverClickSounds
2018-04-13 18:19:50 +09:00
{
2024-02-17 00:45:30 +03:00
private readonly SlimReadOnlyListWrapper<Drawable> parts;
2018-04-13 18:19:50 +09:00
2024-02-17 00:45:30 +03:00
public LinkHoverSounds(HoverSampleSet sampleSet, SlimReadOnlyListWrapper<Drawable> parts)
2018-04-13 18:19:50 +09:00
: base(sampleSet)
{
this.parts = parts;
}
2024-02-17 00:45:30 +03:00
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos)
{
foreach (var part in parts)
{
if (part.ReceivePositionalInputAt(screenSpacePos))
return true;
}
return false;
}
2018-04-13 18:19:50 +09:00
}
}
}