1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:07:25 +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.

170 lines
5.0 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
2022-06-17 15:37:17 +08:00
#nullable disable
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.Localisation;
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 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
private readonly SpriteIcon modIcon;
2020-01-14 21:22:00 +08:00
private readonly SpriteText modAcronym;
private readonly SpriteIcon background;
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
public virtual LocalisableString TooltipText => showTooltip ? ((mod as Mod)?.IconTooltip ?? mod.Name) : null;
2018-04-13 17:19:50 +08:00
private IMod mod;
2021-01-26 18:11:19 +08:00
private readonly bool showTooltip;
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
{
mod = value;
if (IsLoaded)
updateMod(value);
2020-01-14 21:22:00 +08:00
}
2020-01-14 20:11:32 +08:00
}
[Resolved]
private OsuColour colours { get; set; }
private Color4 backgroundColour;
private Color4 highlightedColour;
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>
public ModIcon(IMod mod, bool showTooltip = true)
2017-05-03 14:48:10 +08:00
{
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;
2018-04-13 17:19:50 +08:00
2017-11-15 23:15:27 +08:00
Size = new Vector2(size);
2018-04-13 17:19:50 +08:00
2017-05-03 18:53:45 +08:00
Children = new Drawable[]
2017-02-17 04:05:03 +08:00
{
background = new SpriteIcon
2017-05-03 14:48:10 +08:00
{
2017-05-03 18:53:45 +08:00
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
2017-11-15 23:15:27 +08:00
Size = new Vector2(size),
Icon = OsuIcon.ModBg,
2017-05-03 18:53:45 +08:00
Shadow = true,
},
2020-01-14 21:22:00 +08:00
modAcronym = new OsuSpriteText
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
Colour = OsuColour.Gray(84),
Alpha = 0,
2020-01-16 17:58:47 +08:00
Font = OsuFont.Numeric.With(null, 22f),
2020-01-14 21:22:00 +08:00
UseFullGlyphHeight = false,
Text = mod.Acronym
},
modIcon = new SpriteIcon
2017-05-03 18:53:45 +08:00
{
2017-11-15 23:15:27 +08:00
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
2017-05-03 18:53:45 +08:00
Colour = OsuColour.Gray(84),
2020-01-16 17:58:47 +08:00
Size = new Vector2(45),
2020-01-14 21:22:00 +08:00
Icon = FontAwesome.Solid.Question
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
{
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
}
switch (value.Type)
2017-02-17 04:05:03 +08:00
{
2017-05-08 10:33:22 +08:00
default:
2017-05-03 14:48:10 +08:00
case ModType.DifficultyIncrease:
2017-05-08 10:33:22 +08:00
backgroundColour = colours.Yellow;
highlightedColour = colours.YellowLight;
break;
2019-04-01 11:44:46 +08:00
2017-05-03 14:48:10 +08:00
case ModType.DifficultyReduction:
2017-05-08 10:33:22 +08:00
backgroundColour = colours.Green;
highlightedColour = colours.GreenLight;
break;
2019-04-01 11:44:46 +08:00
case ModType.Automation:
2017-05-08 10:33:22 +08:00
backgroundColour = colours.Blue;
highlightedColour = colours.BlueLight;
break;
2019-04-01 11:44:46 +08:00
case ModType.Conversion:
backgroundColour = colours.Purple;
highlightedColour = colours.PurpleLight;
break;
2019-04-01 11:44:46 +08:00
case ModType.Fun:
backgroundColour = colours.Pink;
highlightedColour = colours.PinkLight;
break;
2018-04-13 17:19:50 +08:00
2019-09-21 04:47:21 +08:00
case ModType.System:
2019-08-07 13:42:43 +08:00
backgroundColour = colours.Gray6;
highlightedColour = colours.Gray7;
modIcon.Colour = colours.Yellow;
break;
2017-05-03 14:48:10 +08:00
}
updateColour();
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
{
background.Colour = Selected.Value ? highlightedColour : backgroundColour;
2017-05-08 10:33:22 +08:00
}
2017-02-17 04:05:03 +08:00
}
}