Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ppy
GitHub Repository: ppy/osu
Path: blob/master/osu.Game/Overlays/Mods/ModPresetTooltip.cs
2272 views
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
using osu.Game.Rulesets.Mods;
using osuTK;

namespace osu.Game.Overlays.Mods
{
    public partial class ModPresetTooltip : VisibilityContainer, ITooltip<ModPreset>
    {
        [Cached]
        private readonly OverlayColourProvider colourProvider;

        protected override Container<Drawable> Content { get; }

        private const double transition_duration = 200;

        private readonly TextFlowContainer descriptionText;

        public ModPresetTooltip(OverlayColourProvider colourProvider)
        {
            this.colourProvider = colourProvider;

            Width = 250;
            AutoSizeAxes = Axes.Y;

            Masking = true;
            CornerRadius = 7;

            InternalChildren = new Drawable[]
            {
                new Box
                {
                    RelativeSizeAxes = Axes.Both,
                    Colour = colourProvider.Background6
                },
                Content = new FillFlowContainer
                {
                    RelativeSizeAxes = Axes.X,
                    AutoSizeAxes = Axes.Y,
                    Padding = new MarginPadding(10f),
                    Spacing = new Vector2(7),
                    Children = new[]
                    {
                        descriptionText = new TextFlowContainer(f =>
                        {
                            f.Font = OsuFont.GetFont(weight: FontWeight.Regular);
                            f.Colour = colourProvider.Content1;
                        })
                        {
                            RelativeSizeAxes = Axes.X,
                            AutoSizeAxes = Axes.Y,
                            Margin = new MarginPadding { Bottom = 5f },
                        }
                    }
                }
            };
        }

        private ModPreset? lastPreset;

        public void SetContent(ModPreset preset)
        {
            if (ReferenceEquals(preset, lastPreset))
                return;

            if (!string.IsNullOrEmpty(preset.Description))
            {
                descriptionText.Show();
                descriptionText.Text = preset.Description;
            }
            else
                descriptionText.Hide();

            lastPreset = preset;

            Content.RemoveAll(d => d is ModPresetRow, true);
            Content.AddRange(preset.Mods.AsOrdered().Select(mod => new ModPresetRow(mod)));
        }

        protected override void PopIn() => this.FadeIn(transition_duration, Easing.OutQuint);
        protected override void PopOut() => this.FadeOut(transition_duration, Easing.OutQuint);

        public void Move(Vector2 pos) => Position = pos;
    }
}