1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 02:57:51 +08:00
osu-lazer/osu.Game/Rulesets/UI/ModIcon.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

212 lines
7.1 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 17:19:50 +08:00
using System;
2018-11-20 15:51:59 +08:00
using osuTK.Graphics;
2017-05-08 10:33:22 +08:00
using osu.Framework.Allocation;
2017-02-17 04:05:03 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Sprites;
2017-02-17 04:05:03 +08:00
using osu.Game.Graphics;
2020-01-14 21:22:00 +08:00
using osu.Game.Graphics.Sprites;
2017-05-03 14:48:10 +08:00
using osu.Game.Rulesets.Mods;
2018-11-20 15:51:59 +08:00
using osuTK;
2019-08-07 13:42:43 +08:00
using osu.Framework.Bindables;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics.Textures;
using osu.Framework.Localisation;
using osu.Game.Configuration;
2018-04-13 17:19:50 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.UI
2017-02-17 04:05:03 +08:00
{
2021-01-26 18:11:19 +08:00
/// <summary>
/// Display the specified mod at a fixed size.
/// </summary>
public partial class ModIcon : Container, IHasTooltip
2017-02-17 04:05:03 +08:00
{
2019-11-22 01:34:19 +08:00
public readonly BindableBool Selected = new BindableBool();
2019-08-07 13:42:43 +08:00
2023-09-28 15:19:06 +08:00
private SpriteIcon modIcon = null!;
private SpriteText modAcronym = null!;
private SpriteIcon background = null!;
2018-04-13 17:19:50 +08:00
2017-11-15 23:15:27 +08:00
private const float size = 80;
2018-04-13 17:19:50 +08:00
2023-09-28 15:19:06 +08:00
public virtual LocalisableString TooltipText => showTooltip ? ((mod as Mod)?.IconTooltip ?? mod.Name) : string.Empty;
2018-04-13 17:19:50 +08:00
private IMod mod;
2021-01-26 18:11:19 +08:00
private readonly bool showTooltip;
private readonly bool showExtendedInformation;
2020-01-14 20:11:32 +08:00
public IMod Mod
2020-01-14 20:11:32 +08:00
{
get => mod;
2020-01-14 21:22:00 +08:00
set
{
if (mod == value)
return;
2020-01-14 21:22:00 +08:00
mod = value;
if (IsLoaded)
updateMod(value);
2020-01-14 21:22:00 +08:00
}
2020-01-14 20:11:32 +08:00
}
[Resolved]
2023-09-28 15:19:06 +08:00
private OsuColour colours { get; set; } = null!;
private Color4 backgroundColour;
2023-09-28 15:19:06 +08:00
private Sprite extendedBackground = null!;
2023-09-28 15:19:06 +08:00
private OsuSpriteText extendedText = null!;
2023-09-28 15:19:06 +08:00
private Container extendedContent = null!;
2023-09-28 15:19:06 +08:00
private ModSettingChangeTracker? modSettingsChangeTracker;
2021-01-26 18:11:19 +08:00
/// <summary>
/// Construct a new instance.
/// </summary>
/// <param name="mod">The mod to be displayed</param>
/// <param name="showTooltip">Whether a tooltip describing the mod should display on hover.</param>
/// <param name="showExtendedInformation">Whether to display a mod's extended information, if available.</param>
public ModIcon(IMod mod, bool showTooltip = true, bool showExtendedInformation = true)
2017-05-03 14:48:10 +08:00
{
AutoSizeAxes = Axes.X;
Height = size;
2020-01-14 21:22:00 +08:00
this.mod = mod ?? throw new ArgumentNullException(nameof(mod));
2021-01-26 18:11:19 +08:00
this.showTooltip = showTooltip;
this.showExtendedInformation = showExtendedInformation;
}
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load(TextureStore textures)
{
2017-05-03 18:53:45 +08:00
Children = new Drawable[]
2017-02-17 04:05:03 +08:00
{
new Container
2017-05-03 14:48:10 +08:00
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Name = "main content",
2017-11-15 23:15:27 +08:00
Size = new Vector2(size),
Children = new Drawable[]
{
background = new SpriteIcon
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
Size = new Vector2(size),
Icon = OsuIcon.ModBg,
Shadow = true,
},
modAcronym = new OsuSpriteText
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
Colour = OsuColour.Gray(84),
Alpha = 0,
Font = OsuFont.Numeric.With(null, 22f),
UseFullGlyphHeight = false,
Text = mod.Acronym
},
modIcon = new SpriteIcon
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
Colour = OsuColour.Gray(84),
Size = new Vector2(45),
Icon = FontAwesome.Solid.Question
},
}
2017-05-03 18:53:45 +08:00
},
extendedContent = new Container
{
Name = "extended content",
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Size = new Vector2(120, 55),
X = size - 22,
Children = new Drawable[]
{
extendedBackground = new Sprite
{
Texture = textures.Get("Icons/BeatmapDetails/mod-icon-extender"),
Size = new Vector2(120, 55),
},
extendedText = new OsuSpriteText
{
Font = OsuFont.Default.With(size: 34f, weight: FontWeight.Bold),
UseFullGlyphHeight = false,
Text = mod.ExtendedIconInformation,
X = 5,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
}
2017-05-03 18:53:45 +08:00
},
};
}
protected override void LoadComplete()
{
base.LoadComplete();
Selected.BindValueChanged(_ => updateColour());
2020-01-14 21:22:00 +08:00
updateMod(mod);
}
private void updateMod(IMod value)
2020-01-14 21:22:00 +08:00
{
modSettingsChangeTracker?.Dispose();
if (value is Mod actualMod)
{
modSettingsChangeTracker = new ModSettingChangeTracker(new[] { actualMod });
modSettingsChangeTracker.SettingChanged = _ => updateMod(actualMod);
}
2020-01-14 21:22:00 +08:00
modAcronym.Text = value.Acronym;
modIcon.Icon = value.Icon ?? FontAwesome.Solid.Question;
if (value.Icon is null)
{
modIcon.FadeOut();
modAcronym.FadeIn();
}
else
{
modIcon.FadeIn();
modAcronym.FadeOut();
2020-01-14 21:22:00 +08:00
}
backgroundColour = colours.ForModType(value.Type);
updateColour();
bool showExtended = showExtendedInformation && !string.IsNullOrEmpty(mod.ExtendedIconInformation);
extendedContent.Alpha = showExtended ? 1 : 0;
extendedText.Text = mod.ExtendedIconInformation;
2017-02-17 04:05:03 +08:00
}
2018-04-13 17:19:50 +08:00
private void updateColour()
2017-05-08 10:33:22 +08:00
{
extendedText.Colour = background.Colour = Selected.Value ? backgroundColour.Lighten(0.2f) : backgroundColour;
extendedBackground.Colour = Selected.Value ? backgroundColour.Darken(2.4f) : backgroundColour.Darken(2.8f);
2017-05-08 10:33:22 +08:00
}
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
modSettingsChangeTracker?.Dispose();
}
2017-02-17 04:05:03 +08:00
}
}